[{"data":1,"prerenderedAt":7953},["ShallowReactive",2],{"nav:computer-architecture":3,"lesson:\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":304,"course-wordcounts":2503,"ref-card-index":3415,"tikz:939c42a163129fd2c093bd6a90d388904f9502b25ed68c6d95f091ac54d7b109":7948,"tikz:4be298bb6d21662a0e28723d33dcd5ea7f46ca60230f760e273144314b103471":7949,"tikz:9e0827dc1acd9d5e0b9ca694096908b0943923b38b186f4a7d9f3cf9b53aa95c":7950,"tikz:b5e57533b1c717df79de5497e4036b0dc6c3988a1796d580c1b9d1ffa83cb0f9":7951,"tikz:b0d418ddf49ae52a86b7371d214d8d5e5310b02901198f41bca89e91df553eff":7952},[4,38,79,108,137,166,195,224,244,259,289],{"module":5,"moduleNumber":6,"slug":7,"lessons":8},"Foundations",1,"foundations",[9,14,20,26,32],{"title":10,"path":11,"lessonNumber":6,"topics":12,"summary":13},"Bits, Bytes, and Words","\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words",[5],"Everything a machine stores is a string of bits grouped into bytes. We set out binary and hexadecimal, the byte as the unit of addressing, the word as the machine's natural integer size, and byte ordering — why the same four bytes read as 0x01234567 on one machine and 0x67452301 on another.\n",{"title":15,"path":16,"lessonNumber":17,"topics":18,"summary":19},"Integer Representation","\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation",2,[5],"A fixed-width byte string is just a pattern; what makes it a number is the rule we read it by. We define unsigned encoding and two's complement — where the top bit carries a negative weight — derive the ranges UMax, TMin, and TMax, and show how the same bits reinterpret between signed and unsigned, how widening sign-extends, and what truncation throws away.\n",{"title":21,"path":22,"lessonNumber":23,"topics":24,"summary":25},"Integer Arithmetic","\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic",3,[5],"Fixed-width integer arithmetic is arithmetic modulo a power of two: add past the top and the result wraps. We work out unsigned and two's-complement addition and the rules that detect their overflow, why negation is a complement-plus-one, how multiplication truncates to the low-order bits and how compilers turn constant multiplies into shifts and adds, why C declares signed overflow undefined, and the bias fix that keeps shift-based signed division rounding toward zero.\n",{"title":27,"path":28,"lessonNumber":29,"topics":30,"summary":31},"Floating Point","\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point",4,[5],"IEEE-754 trades the exactness of integers for enormous range by storing numbers as sign, exponent, and fraction — scientific notation in binary. We lay out the single and double formats, the bias that encodes the exponent, the three regimes (normalized, denormalized, special), a worked encode\u002Fdecode, the four rounding modes and round-to-even at the bit level, why addition is not associative, the pitfalls of float-int conversion, and why 0.1 has no exact binary representation.\n",{"title":33,"path":34,"lessonNumber":35,"topics":36,"summary":37},"Boolean Algebra and Bit Manipulation","\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation",5,[5],"Treat a word as a vector of independent bits and the bitwise operators become an algebra. We define AND, OR, NOT, and XOR as bit vectors, build the masking idioms that set, clear, toggle, and test individual bits, extract fields with zero- and sign-extension, count set bits three ways, derive the classic x & (x - 1) family of tricks, and distinguish bitwise operators from C's short-circuiting logical operators.\n",{"module":39,"moduleNumber":17,"slug":40,"lessons":41},"Machine-Level Programming","machine-level-x86-64",[42,47,52,57,62,67,73],{"title":43,"path":44,"lessonNumber":6,"topics":45,"summary":46},"The Machine's View","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view",[39],"The instruction set architecture is the contract a compiler writes against: the program counter, sixteen integer registers with their sub-register widths, and the condition codes. We follow one C function down through gcc to assembly, learn to read an instruction as operation plus operands, and fix the vocabulary the rest of the module uses.\n",{"title":48,"path":49,"lessonNumber":17,"topics":50,"summary":51},"Data Movement","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement",[39],"Most instructions a program runs simply move data. We cover the mov family and its size suffixes, the three operand forms, the full memory addressing mode D(Rb,Ri,S) and its special cases, lea for address arithmetic, and how push and pop manipulate the stack pointer %rsp on a stack that grows toward lower addresses.\n",{"title":53,"path":54,"lessonNumber":23,"topics":55,"summary":56},"Arithmetic and Logic","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic",[39],"The ALU instructions that compute on register and memory values: add, sub, and imul; the unary inc\u002Fdec\u002Fneg\u002Fnot; the shifts sal\u002Fshr\u002Fsar; the bitwise and\u002For\u002Fxor; and lea reused as a fast arithmetic trick. Each binary operation also sets the condition-code flags CF, ZF, SF, and OF, which cmp and test compute without keeping a result.\n",{"title":58,"path":59,"lessonNumber":29,"topics":60,"summary":61},"Control Flow","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow",[39],"How a flat instruction stream realizes branches and loops. The conditional jumps read the condition-code flags; set instructions turn flags into a 0\u002F1 byte. We translate if\u002Felse into the standard compare-and-branch pattern, while\u002Ffor loops into the guarded-do form, and dense switches into jump tables that index a target directly.\n",{"title":63,"path":64,"lessonNumber":35,"topics":65,"summary":66},"Procedures","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures",[39],"How a function call works at the machine level: the run-time stack, call and ret passing control through a saved return address, the System V convention that routes the first six arguments through %rdi..%r9 and the result through %rax, the caller-saved versus callee-saved split, the stack frame, and a recursive factorial traced through its frames.\n",{"title":68,"path":69,"lessonNumber":70,"topics":71,"summary":72},"Arrays, Structs, and Alignment","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment",6,[39],"How aggregate data lays out in memory. Arrays as base-plus-scaled-index, the row-major ordering of multidimensional arrays, pointer arithmetic in units of the pointed-to type, struct fields at fixed byte offsets, the overlapping storage of unions, and the alignment rules that force padding into a struct.\n",{"title":74,"path":75,"lessonNumber":76,"topics":77,"summary":78},"Memory Layout and Buffer Overflows","\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows",7,[39],"The process address space — text, data, heap, and stack — and the classic vulnerability it enables. A stack buffer that is written past its end can overwrite the saved return address and redirect ret, so we sketch the mechanism defensively and then the three standard protections: stack canaries, a non-executable stack, and address-space layout randomization.\n",{"module":80,"moduleNumber":23,"slug":81,"lessons":82},"Instruction Set Architecture","instruction-set-architecture",[83,88,93,98,103],{"title":84,"path":85,"lessonNumber":6,"topics":86,"summary":87},"What an ISA Is","\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is",[80],"The instruction set architecture is the contract that lets a compiler and a chip be written by people who never meet: the stable interface software targets and hardware implements. We separate architecture from microarchitecture, read RISC and CISC as opposite answers to where complexity should live, price out what each choice costs in decode hardware, code density, and pipeline friendliness, and see how x86-64 endures by translating its instructions into RISC-like operations on the fly.\n",{"title":89,"path":90,"lessonNumber":17,"topics":91,"summary":92},"Instruction Formats and Operands","\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands",[80],"An instruction is an opcode plus a way to name its operands. We count operands — 3-address, 2-address, 1-address accumulator, and 0-address stack machines — by writing the same C = A + B four ways, weigh register operands against memory operands, then lay out the same add byte by byte in x86-64 (REX prefix, opcode, ModRM) and in Y86-64, and what fixed versus variable length costs at fetch time.\n",{"title":94,"path":95,"lessonNumber":23,"topics":96,"summary":97},"Addressing Modes","\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes",[80],"Once an operand field exists, it needs a rule for turning its bits into the data it names. That rule is the addressing mode. We walk the standard set — immediate, register, direct, register-indirect, displacement, scaled-indexed, and PC-relative — fixing the effective-address computation for each, run every mode against one concrete machine state, and price out what Y86-64 loses by keeping only base plus displacement.\n",{"title":99,"path":100,"lessonNumber":29,"topics":101,"summary":102},"The Y86-64 Instruction Set","\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set",[80],"Y86-64 is a teaching ISA — a stripped-down x86-64 simple enough to implement by hand yet real enough to compile to. We fix its programmer-visible state (fifteen registers, three condition codes, the PC, memory, and a status code), give the instruction set with exact byte encodings, spell out how the condition codes decide every jXX and cmovXX, and run the encoding both directions: assembly to bytes and raw bytes back to meaning.\n",{"title":104,"path":105,"lessonNumber":35,"topics":106,"summary":107},"Y86-64 Programming","\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming",[80],"With the encodings fixed, we write real Y86-64 assembly: the .pos, .align, and .quad directives, the calling convention borrowed from x86-64, a stack set up by hand, and complete programs — an array sum and a branch-free max. We watch the assembler turn the listing into the exact byte image the processor will execute, and trace the stack across the call.\n",{"module":109,"moduleNumber":29,"slug":110,"lessons":111},"Digital Logic","digital-logic",[112,117,122,127,132],{"title":113,"path":114,"lessonNumber":6,"topics":115,"summary":116},"Transistors, Gates, and Boolean Functions","\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions",[109],"A processor is built from millions of transistor switches. We start at the MOS transistor as a voltage-controlled switch, build the CMOS inverter and NAND transistor by transistor, meet the seven standard gates with their truth tables, show that NAND alone is functionally complete, price each gate in transistors and in time, and turn any truth table into a sum-of-products circuit.\n",{"title":118,"path":119,"lessonNumber":17,"topics":120,"summary":121},"Combinational Logic and HCL","\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl",[109],"A combinational circuit is a pure Boolean function of its current inputs — no memory, no clock. We draw the line between combinational and sequential logic, do the gate-delay accounting that finds a circuit's critical path and bounds the clock, meet don't-cares, then introduce CS:APP's Hardware Control Language: bit-level operators, word-level signals, equality nets, and the case expression that compiles to a multiplexer tree.\n",{"title":123,"path":124,"lessonNumber":23,"topics":125,"summary":126},"Multiplexers, Decoders, and the ALU","\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu",[109],"The combinational building blocks that make a datapath. We build the 2:1 and 4:1 multiplexer and tie it back to HCL's case expression, the n-to-2^n decoder, a one-bit full adder (sum is XOR, carry is majority), the ripple-carry adder that chains them, and finally the ALU — a function unit that selects among add, sub, and, and xor under a control input and exposes condition flags.\n",{"title":128,"path":129,"lessonNumber":29,"topics":130,"summary":131},"Memory Elements: Latches, Flip-Flops, and Clocking","\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking",[109],"A combinational circuit holds no state; feeding a circuit's output back to its input creates memory. We build the SR latch from cross-coupled gates, the level-sensitive D latch, and the master\u002Fslave edge-triggered D flip-flop, then introduce the clock and the synchronous design discipline, the setup\u002Fhold timing window, clock skew, metastability, and the register as n flip-flops sharing one clock.\n",{"title":133,"path":134,"lessonNumber":35,"topics":135,"summary":136},"Register Files and Random-Access Memory","\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory",[109],"Storage organized for access by address. We build the register file (a small bank of registers with addressed read ports and clocked write ports, the exact structure Y86-64's decode and write-back stages use), then descend to the SRAM and DRAM cells of main memory, why one is fast and dear and the other dense and slow, and how a row decoder picks a word out of a memory array.\n",{"module":138,"moduleNumber":35,"slug":139,"lessons":140},"Processor Design","processor-design",[141,146,151,156,161],{"title":142,"path":143,"lessonNumber":6,"topics":144,"summary":145},"The Fetch-Decode-Execute Cycle","\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle",[138],"A processor is a machine that repeats one loop forever: read the next instruction from memory, figure out what it asks for, do it, and advance. We fix the stored-program idea, lay out the datapath at a high level — PC, instruction memory, register file, ALU, data memory — and the control unit that sequences them, break the work into the six stages the rest of the module builds in hardware, and work out exactly how fetch parses variable-length instructions and computes the next PC.\n",{"title":147,"path":148,"lessonNumber":17,"topics":149,"summary":150},"The SEQ Stages","\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages",[138],"The six SEQ stages, made exact. For every Y86-64 instruction — halt, nop, the moves, OPq, the jumps, call and ret, pushq and popq — we write down what Fetch, Decode, Execute, Memory, Write-back, and PC update each compute, as per-instruction stage tables with every row justified. Once the tables are filled in, the processor is fully specified; the remaining lessons turn them into wires.\n",{"title":152,"path":153,"lessonNumber":23,"topics":154,"summary":155},"Control Logic and Sequencing","\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing",[138],"The stage tables say what each instruction needs; the control logic computes it from icode. We write the HCL for the register-port selections (srcA, srcB, dstE, dstM), the ALU function and input selection, the memory read\u002Fwrite and address, the branch condition, and the next-PC mux — each a case expression on icode that compiles to a mux — and see how one blob of combinational logic serves every instruction at once. We close by contrasting hardwired control with the microprogrammed alternative.\n",{"title":157,"path":158,"lessonNumber":29,"topics":159,"summary":160},"Assembling SEQ","\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq",[138],"We wire the whole thing together. The functional units from digital logic and the control signals from the last lesson assemble into the complete SEQ datapath, laid out the way CS:APP draws it — six stages stacked bottom to top, Fetch at the floor and PC update at the ceiling, signals flowing up the margins. Then the timing analysis: why everything must settle in one cycle, the no-reading-back principle that makes single-cycle execution consistent, and the critical path that sets the clock. We close by walking an OPq and a ret through the assembled machine.\n",{"title":162,"path":163,"lessonNumber":35,"topics":164,"summary":165},"Tracing a Program","\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program",[138],"To close the module, we take a complete Y86-64 program — a loop that sums 1 through 3 — and run it through SEQ one cycle at a time, recording the PC, the fetched instruction, every stage computation, and the registers, condition codes, and memory after each cycle. Then we examine single cycles in detail: every named signal of an OPq in concrete hex, and a second program whose call and ret we trace through the stack. The traces confirm that the assembled datapath and control logic behave as a processor.\n",{"module":167,"moduleNumber":70,"slug":168,"lessons":169},"Pipelining","pipelining",[170,175,180,185,190],{"title":171,"path":172,"lessonNumber":6,"topics":173,"summary":174},"Pipelining Principles","\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles",[167],"A processor that runs one instruction to completion before starting the next wastes most of its hardware most of the time. Pipelining splits the work into stages separated by registers so several instructions are in flight at once. We separate throughput from latency, work the 300 ps example through one, two, and three stages, and derive the three ceilings on the gain: uneven stages, register overhead, and the dependencies between instructions.\n",{"title":176,"path":177,"lessonNumber":17,"topics":178,"summary":179},"From SEQ to PIPE","\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe",[167],"We turn the sequential Y86-64 processor into a pipelined one by inserting pipeline registers between its stages so each cycle holds one instruction per stage. Doing it correctly forces a rearrangement: the next-PC computation must move into Fetch as a prediction, because the later stages that used to compute it are now busy with other instructions. We walk SEQ to SEQ+ to PIPE, spell out exactly what each pipeline register carries, and fix the naming discipline (D_stat versus d_stat) that keeps five in-flight instructions straight.\n",{"title":181,"path":182,"lessonNumber":23,"topics":183,"summary":184},"Data Hazards: Stalling and Forwarding","\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding",[167],"Overlapping instructions collide when a later one needs a value an earlier one has not finished computing: a read-after-write data hazard. We map exactly which instruction distances are dangerous, fix hazards the slow way by stalling (three bubbles), then the fast way by forwarding from five distinct sources into Decode, in a priority order that sequential semantics forces. Forwarding handles almost everything; the load-use hazard still needs exactly one stall.\n",{"title":186,"path":187,"lessonNumber":29,"topics":188,"summary":189},"Control Hazards and Branch Prediction","\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction",[167],"A pipeline must fetch an instruction every cycle, but after a conditional jump or a ret the next address is not yet known: a control hazard. We measure the branch penalty, weigh predict-taken against its alternatives with real loop arithmetic, watch PIPE detect a misprediction in Execute and squash the two wrong-path instructions, and meet the ret hazard, which has nothing to predict and stalls three cycles. A 2-bit counter gives a taste of dynamic prediction.\n",{"title":191,"path":192,"lessonNumber":35,"topics":193,"summary":194},"The Complete PIPE Processor","\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor",[167],"We assemble the full pipelined Y86-64: five stages, five pipeline registers, forwarding paths, and a small control unit that decides, each cycle, whether to stall or bubble each register. The subtle part is when hazards combine: one pairing hides a genuine bug. A fourth control case reads stat and keeps exceptions precise. Performance reduces to CPI = 1 + lp + mp + rp, worked out to 1.27 with realistic frequencies, and PIPE beats SEQ by several times despite every penalty.\n",{"module":196,"moduleNumber":76,"slug":197,"lessons":198},"The Memory Hierarchy","memory-hierarchy",[199,204,209,214,219],{"title":200,"path":201,"lessonNumber":6,"topics":202,"summary":203},"Storage Technologies and the Latency Gap","\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap",[196],"No single memory is both fast and large and cheap. We survey the technologies a machine can store bits in — SRAM, DRAM, flash, and rotating disk — open up a DRAM chip to find the row buffer, work a disk access down to the millisecond, and rank everything by speed, density, and cost per bit. Then we watch the processor outrun memory decade after decade. That widening gap is the whole reason a machine stacks fast small storage on top of slow large storage into a hierarchy.\n",{"title":205,"path":206,"lessonNumber":17,"topics":207,"summary":208},"Locality","\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality",[196],"A hierarchy only pays off because programs do not touch memory at random. They reuse recently-used data (temporal locality) and touch nearby data soon after (spatial locality). We make both precise and then quantitative: miss rates for stride-1 and stride-k traversals against a concrete block size, and the loop-order pair on a 2-D array where the same sum misses 16 times one way and 64 times the other — why row-major versus column-major order can change a program's speed by an order of magnitude.\n",{"title":210,"path":211,"lessonNumber":23,"topics":212,"summary":213},"Cache Memories and Direct Mapping","\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped",[196],"A cache is fast SRAM that holds copies of recently-used blocks of main memory. We fix its organization — S sets, E lines per set, B bytes per block — and the way it dissects an address into tag, set index, and block offset, worked bit by bit on a concrete 16-byte cache. Then we run the direct-mapped (E=1) access algorithm end to end on a seven-access trace: index to a set, compare the tag, hit or miss, evict. Cold and conflict misses fall out of the structure, and a two-array ping-pong shows conflict thrashing and its padding fix.\n",{"title":215,"path":216,"lessonNumber":29,"topics":217,"summary":218},"Set-Associative Caches and Write Policies","\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies",[196],"Give each set several lines and a block has a choice of homes — fewer conflict misses, at the cost of comparing E tags in parallel and choosing a victim to evict. We re-run the direct-mapped ping-pong trace on a 2-way cache and watch the conflicts vanish, weigh LRU against random replacement, then turn to writes: write-through versus write-back with a dirty bit on a hit, write-allocate versus no-write-allocate on a miss, and a worked traffic count showing when each pairing wins.\n",{"title":220,"path":221,"lessonNumber":35,"topics":222,"summary":223},"Cache Performance and Cache-Friendly Code","\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code",[196],"Turn the cache mechanism into a number. Hit time, miss rate, and miss penalty combine into the average memory access time; we compute AMAT for a two-level hierarchy with real numbers, weigh the design knobs against each other, and read the memory mountain. Then we write cache-friendly code — the matrix-multiply loop-order case study (ijk versus kij, misses counted per iteration) and loop blocking, where cache-sized tiles turn evicted reuse back into hits.\n",{"module":225,"moduleNumber":226,"slug":227,"lessons":228},"Virtual Memory",8,"virtual-memory",[229,234,239],{"title":230,"path":231,"lessonNumber":6,"topics":232,"summary":233},"Address Spaces and Translation","\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation",[225],"Every process runs as if it owns a private, contiguous span of memory — its virtual address space — while the hardware maps those addresses onto a single shared physical memory. We fix virtual memory's three jobs (a cache for disk, a memory manager, a protection boundary), the page as the unit of mapping, and the MMU replacing the virtual page number while the offset passes through untouched — then run one translation end to end at the bit level and trace the control flow of a page hit against a page fault.\n",{"title":235,"path":236,"lessonNumber":17,"topics":237,"summary":238},"Page Tables and Page Faults","\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults",[225],"The page table is an array of page-table entries indexed by virtual page number; each entry's valid bit says whether the page is in DRAM, on disk, or unallocated, and its permission, reference, and dirty bits drive protection and replacement. We walk translation as a table lookup, the page fault and demand paging, the clock algorithm the OS uses to approximate LRU, memory mapping and copy-on-write (why fork is cheap), the taxonomy of bad references, and thrashing.\n",{"title":240,"path":241,"lessonNumber":23,"topics":242,"summary":243},"The TLB and Multi-Level Page Tables","\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables",[225],"A page-table read on every access would double memory traffic; a flat table for a 48-bit space would occupy 512 GB per process. The TLB fixes the first: a small set-associative cache of PTEs inside the MMU whose tag and index come from the VPN. Multi-level page tables fix the second, allocating only the sub-tables a process uses; x86-64 walks four levels with a 9+9+9+9+12 split. We trace one reference end to end through TLB, walk, and cache, and close with the overlap trick that lets the L1 cache start before translation ends.\n",{"module":245,"moduleNumber":246,"slug":247,"lessons":248},"Exceptions & I\u002FO",9,"exceptions-and-io",[249,254],{"title":250,"path":251,"lessonNumber":6,"topics":252,"summary":253},"Exceptional Control Flow","\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow",[245],"Beyond the sequential, branch, and call flow a program controls itself, the hardware can divert the processor in response to events. We sort these into four classes — interrupts (asynchronous, from devices), traps (intentional syscalls), faults (recoverable, like a page fault), and aborts (unrecoverable) — then take the mechanism apart: exception numbers and the table dispatch, what the hardware pushes and why it differs from a procedure call, the divide-error \u002F page-fault \u002F general-protection trio on x86-64, the full syscall round trip with a worked write in assembly, and processes and signals as the abstractions ECF makes possible.\n",{"title":255,"path":256,"lessonNumber":17,"topics":257,"summary":258},"Interrupts and the Kernel","\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel",[245],"An I\u002FO device signals completion by raising an interrupt, crossing the privilege boundary from user mode into the kernel. We fix that boundary, follow an interrupt from device through the interrupt controller to its vectored handler, and use the timer interrupt to drive preemptive scheduling and the context switch. Then the I\u002FO mechanics: polling versus interrupt-driven I\u002FO with a cycle count, device registers and memory-mapped I\u002FO versus port I\u002FO, DMA's full transfer walkthrough and its cache hazard, and a disk read traced end to end, from the read syscall to the completion interrupt.\n",{"module":260,"moduleNumber":261,"slug":262,"lessons":263},"Multithreading & Multicore",10,"multithreading-and-multicore",[264,269,274,279,284],{"title":265,"path":266,"lessonNumber":6,"topics":267,"summary":268},"Processes, Threads, and Parallelism","\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism",[260],"Around 2004 the single core stopped getting faster, and the industry's answer was to hand programmers more cores instead. This lesson builds the vocabulary that shift demands: process versus thread and exactly which hardware state each one owns, concurrency versus parallelism, the three kinds of parallelism a machine can exploit, why Dennard scaling ended and forced the multicore turn, and Amdahl's law — the arithmetic that bounds the speedup those cores can deliver.\n",{"title":270,"path":271,"lessonNumber":17,"topics":272,"summary":273},"Hardware Multithreading","\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading",[260],"A pipeline spends much of its life waiting — on cache misses, on dependences, on branches. Hardware multithreading fills the dead cycles with instructions from another thread. We compare coarse-grained switching (change threads on a long stall), fine-grained interleaving (change every cycle), and simultaneous multithreading (mix threads inside a single cycle), work out exactly which hardware a second thread context duplicates and which it shares, and weigh when SMT pays off and when two threads just fight over one cache.\n",{"title":275,"path":276,"lessonNumber":23,"topics":277,"summary":278},"Cache Coherence","\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence",[260],"Give each core its own cache and the same address can live in two places at once, with copies that disagree. We reproduce the stale-copy bug with a two-core trace, then fix it the way hardware does: snooping caches that watch a shared bus and keep every line in a protocol state. We build MSI in full, upgrade it to MESI, contrast invalidation with updating, add coherence misses as the fourth C, and end with false sharing: the performance bug where cores fight over a line while never touching the same byte.\n",{"title":280,"path":281,"lessonNumber":29,"topics":282,"summary":283},"Memory Consistency and Synchronization","\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization",[260],"Coherence keeps cores agreeing about one location; consistency is the contract about many. We define sequential consistency, then watch real hardware break it: the store buffer lets a load slip ahead of an older store, and the classic two-thread litmus test ends with both sides reading zero. We state x86-TSO precisely, restore order with mfence, build atomic read-modify-write from the lock prefix, xchg, and cmpxchg, and write a spinlock twice — once naively, once bus-friendly — closing with what lock-free progress actually guarantees.\n",{"title":285,"path":286,"lessonNumber":35,"topics":287,"summary":288},"Multicore Organization","\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization",[260],"Where everything sits on the die. A modern die gives each core private L1 and L2 caches, spreads a shared last-level cache across slices, and wires it all together with a ring or mesh; multi-socket servers add NUMA, where memory is local to one socket and every remote access pays a latency penalty. We walk the floorplan, put numbers on local versus remote latency, meet thread affinity, and account for the two shared resources — coherence traffic and LLC capacity — that decide how far a parallel program scales.\n",{"module":290,"moduleNumber":291,"slug":292,"lessons":293},"Capstone",11,"capstone",[294,299],{"title":295,"path":296,"lessonNumber":6,"topics":297,"summary":298},"The Whole Machine","\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine",[290],"We take one line of C down the whole tower the course built — compiler to assembly, assembly to machine-code bytes, the bytes into the fetch–decode–execute datapath — then trace one load and one add through the pipelined, cached, translated, interruptible machine, each step cross-linked to the lesson that built it. We close with the map of the course as a stack of layers and an accounting of what we simplified: out-of-order execution, superscalar issue, and speculation past the branch predictor.\n",{"title":300,"path":301,"lessonNumber":17,"topics":302,"summary":303},"Assembling a Complete CPU","\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu",[290],"We bolt the parts the course built — PC, instruction memory and its fetch logic, register file, ALU, condition codes, data memory, and the control unit — into one complete CPU, name the lesson that built each, wire them in a deliberate order, and power the machine on from reset. Then we assemble a real test program (sum a four-element array through a call\u002Fret procedure), give its exact bytes and memory layout, and trace it cycle by cycle to the answer 0xabcdabcdabcd. We close with how to validate such a machine, and what it takes to put two of them on one die.\n",{"id":305,"title":157,"blurb":306,"body":307,"brief":2476,"category":2477,"description":2478,"draft":2479,"extension":2480,"meta":2481,"module":138,"navigation":2483,"path":158,"practice":2484,"rawbody":2485,"readingTime":2486,"seo":2491,"sources":2492,"status":2499,"stem":2500,"summary":160,"topics":2501,"__hash__":2502},"course\u002F03.computer-architecture\u002F04.processor-design\u002F04.assembling-seq.md","",{"type":308,"value":309,"toc":2468},"minimark",[310,336,341,356,360,400,425,429,448,552,555,562,577,630,634,799,1332,1351,1354,1377,1935,1939,2046,2203,2217,2220,2224,2234,2361,2390,2394,2420,2423,2447,2461],[311,312,313,314,318,319,322,323,326,327,331,332,335],"p",{},"We have the parts and we have the wiring diagram in words. The\n",[315,316,317],"a",{"href":148},"stage tables"," gave the\ncomputations; the ",[315,320,321],{"href":153},"control logic","\ngave the signals; the ",[315,324,325],{"href":124},"digital-logic module","\ngave the units. This lesson bolts them together into ",[328,329,330],"strong",{},"SEQ",", the complete sequential\nY86-64 processor, and draws it the canonical way: the six stages as horizontal bands,\n",[328,333,334],{},"Fetch at the bottom and PC update at the top",", so that signals flow generally\nupward and the next-PC value loops back down to the PC register. Then we work out the\ntiming (what one cycle must accomplish and what sets its length) and trace two\ninstructions through the assembled datapath to prove the wiring is right.",[337,338,340],"h2",{"id":339},"the-layout-stages-as-bands-bottom-to-top","The layout: stages as bands, bottom to top",[311,342,343,344,348,349,352,353,355],{},"CS:APP draws SEQ upside-down relative to the stage list: the work starts at the floor\nand rises. The reason is the data flow. Fetch reads the PC and produces the fields;\nthose feed Decode just above; the register values rise into Execute; the ALU result\nrises into Memory; the loaded or computed values rise toward Write-back; and at the\nvery top, PC update computes ",[345,346,347],"code",{},"newPC"," and sends it back ",[328,350,351],{},"down"," the left margin to\nthe PC register, ready for the next cycle. Drawing it this way keeps every hand-off\nvertical, and it puts the two long feedback paths — write-back into the register\nfile, ",[345,354,347],{}," into the PC — in the margins where they cross nothing they should not.",[357,358],"tikz-figure",{"hash":359},"939c42a163129fd2c093bd6a90d388904f9502b25ed68c6d95f091ac54d7b109",[311,361,362,363,366,367,370,371,374,375,378,379,381,382,385,386,370,389,392,393,395,396,399],{},"The figure is busy because the machine is, but the discipline is simple. Functional\nunits sit in their band, and data rises through the center column. Values that skip\nstages ride ",[328,364,365],{},"bypass lanes"," in the margins: ",[345,368,369],{},"valC"," and ",[345,372,373],{},"valP"," climb the right side\nfrom Fetch straight to the New-PC mux, ",[345,376,377],{},"valA"," rides across to the data-memory write\nport, and ",[345,380,369],{}," cuts up the left into the ",[345,383,384],{},"aluA"," mux. The two write-back values,\n",[345,387,388],{},"valE",[345,390,391],{},"valM",", tee off their rising wires and descend the left margin into the\nregister file's E and M write ports. The one wire that travels the whole height is\n",[345,394,347],{},", looping from the top back down into the PC. Every wire in the figure is one\nrow of some stage table made physical; if a wire seems unmotivated, some instruction\nin ",[315,397,398],{"href":148},"lesson 2"," is its reason.",[311,401,402,403,405,406,370,409,412,413,417,418,420,421,424],{},"Two wires reward a second look. The ",[345,404,377],{}," lane into data memory exists because\n",[345,407,408],{},"rmmovq",[345,410,411],{},"pushq"," store a register value the ALU never touches; the ALU is busy\ncomputing the ",[414,415,416],"em",{},"address",". And ",[345,419,391],{}," rises all the way into the New-PC mux because of\none instruction, ",[345,422,423],{},"ret","; for every other instruction that input is ignored.",[337,426,428],{"id":427},"timing-one-cycle-one-instruction","Timing: one cycle, one instruction",[311,430,431,432,435,436,439,440,443,444,447],{},"SEQ has exactly four clocked state elements: the ",[328,433,434],{},"PC",", the ",[328,437,438],{},"condition codes",",\nthe ",[328,441,442],{},"register file",", and ",[328,445,446],{},"data memory",". Everything else — every mux, the ALU,\nthe control logic, the wires above — is combinational: outputs follow inputs after a\ngate delay, with no memory of their own. The processor's operation is then a strict\ntwo-beat rhythm:",[449,450,451,461],"ol",{},[452,453,454,457,458,460],"li",{},[328,455,456],{},"During the cycle",", the state elements hold still and the combinational logic\nsettles. The PC's current value ripples up the figure: fetch produces the fields,\ndecode reads registers, the ALU computes, memory reads, and the New-PC mux\nproduces ",[345,459,347],{},". Late in the cycle every wire holds its final value.",[452,462,463,466,467,548,551],{},[328,464,465],{},"At the rising clock edge",", all four state elements load at once, each with its\ncommit condition:",[468,469,470,486],"table",{},[471,472,473],"thead",{},[474,475,476,480,483],"tr",{},[477,478,479],"th",{},"State element",[477,481,482],{},"Loads",[477,484,485],{},"Commit condition",[487,488,489,501,514,533],"tbody",{},[474,490,491,494,498],{},[492,493,434],"td",{},[492,495,496],{},[345,497,347],{},[492,499,500],{},"always",[474,502,503,506,509],{},[492,504,505],{},"Condition codes",[492,507,508],{},"ALU flags",[492,510,511],{},[345,512,513],{},"set_cc",[474,515,516,519,528],{},[492,517,518],{},"Register file",[492,520,521,524,525],{},[345,522,523],{},"valE→dstE",", ",[345,526,527],{},"valM→dstM",[492,529,530],{},[345,531,532],{},"dst ≠ RNONE",[474,534,535,538,543],{},[492,536,537],{},"Data memory",[492,539,540],{},[345,541,542],{},"valA→mem_addr",[492,544,545],{},[345,546,547],{},"mem_write",[549,550],"br",{},"The instant after the edge, the next instruction's cycle begins from the new state.",[357,553],{"hash":554},"4be298bb6d21662a0e28723d33dcd5ea7f46ca60230f760e273144314b103471",[311,556,557,558,561],{},"The design works only if a consistency condition holds: nothing computed during the\ncycle may depend on state the ",[414,559,560],{},"same"," instruction is about to write. Otherwise the\ncombinational logic would chase its own tail: the write would change a value that\nfed the write.",[563,564,566],"callout",{"type":565},"note",[311,567,568,571,572,524,574,576],{},[328,569,570],{},"Principle (No reading back)."," The processor never needs to read back state\nupdated by an instruction in order to complete that instruction's own processing.\nEvery value an instruction uses is either prior state (held steady all cycle) or a\nnamed intermediate signal (",[345,573,377],{},[345,575,388],{},", ...) carried on wires.",[311,578,579,580,583,584,587,588,590,591,594,595,597,598,601,602,605,606,608,609,524,611,613,614,617,618,621,622,625,626,629],{},"The stage tables were written to respect this. ",[345,581,582],{},"pushq %rsp"," stores the\n",[414,585,586],{},"old"," stack pointer because Memory stores ",[345,589,377],{},", a wire that captured the register\n",[414,592,593],{},"before"," any update; the decremented ",[345,596,388],{}," lands in ",[345,599,600],{},"%rsp"," only at the edge, after\nthe store's data is already decided. ",[345,603,604],{},"popq %rsp"," never re-reads ",[345,607,600],{}," after its\nincrement; both candidate values (",[345,610,388],{},[345,612,391],{},") are wires, and a mux picks which\none the register file commits. Even the condition codes obey it: an ",[345,615,616],{},"OPq"," ",[414,619,620],{},"sets"," CC\nat the edge, and the ",[345,623,624],{},"jXX"," that ",[414,627,628],{},"reads"," CC is a later instruction, reading the\ncommitted value in its own cycle. State is read at the top of the cycle and written\nat the bottom, never both.",[337,631,633],{"id":632},"the-critical-path","The critical path",[311,635,636,637,640,641,720,721,737,738,798],{},"The clock cannot tick until the slowest signal has settled, so the cycle time is set\nby the ",[328,638,639],{},"critical path",": the longest chain of combinational delay between one\nrising edge and the next. Writing ",[642,643,646],"span",{"className":644},[645],"katex",[642,647,651],{"className":648,"ariaHidden":650},[649],"katex-html","true",[642,652,655,660],{"className":653},[654],"base",[642,656],{"className":657,"style":659},[658],"strut","height:0.7651em;vertical-align:-0.15em;",[642,661,664,669],{"className":662},[663],"mord",[642,665,668],{"className":666},[663,667],"mathnormal","t",[642,670,673],{"className":671},[672],"msupsub",[642,674,678,711],{"className":675},[676,677],"vlist-t","vlist-t2",[642,679,682,706],{"className":680},[681],"vlist-r",[642,683,687],{"className":684,"style":686},[685],"vlist","height:0.3117em;",[642,688,690,695],{"style":689},"top:-2.55em;margin-left:0em;margin-right:0.05em;",[642,691],{"className":692,"style":694},[693],"pstrut","height:2.7em;",[642,696,702],{"className":697},[698,699,700,701],"sizing","reset-size6","size3","mtight",[642,703,705],{"className":704},[663,667,701],"i",[642,707,710],{"className":708},[709],"vlist-s","​",[642,712,714],{"className":713},[681],[642,715,718],{"className":716,"style":717},[685],"height:0.15em;",[642,719],{}," for the propagation delay of unit ",[642,722,724],{"className":723},[645],[642,725,727],{"className":726,"ariaHidden":650},[649],[642,728,730,734],{"className":729},[654],[642,731],{"className":732,"style":733},[658],"height:0.6595em;",[642,735,705],{"className":736},[663,667]," and\n",[642,739,741],{"className":740},[645],[642,742,744],{"className":743,"ariaHidden":650},[649],[642,745,747,751],{"className":746},[654],[642,748],{"className":749,"style":750},[658],"height:0.9012em;vertical-align:-0.2861em;",[642,752,754,757],{"className":753},[663],[642,755,668],{"className":756},[663,667],[642,758,760],{"className":759},[672],[642,761,763,789],{"className":762},[676,677],[642,764,766,786],{"className":765},[681],[642,767,770],{"className":768,"style":769},[685],"height:0.2806em;",[642,771,772,775],{"style":689},[642,773],{"className":774,"style":694},[693],[642,776,778],{"className":777},[698,699,700,701],[642,779,782],{"className":780},[663,781,701],"text",[642,783,785],{"className":784},[663,701],"setup",[642,787,710],{"className":788},[709],[642,790,792],{"className":791},[681],[642,793,796],{"className":794,"style":795},[685],"height:0.2861em;",[642,797],{}," for the register setup time, the minimum clock period is",[642,800,803],{"className":801},[802],"katex-display",[642,804,806],{"className":805},[645],[642,807,809,883,1088,1207],{"className":808,"ariaHidden":650},[649],[642,810,812,816,864,869,872,877,880],{"className":811},[654],[642,813],{"className":814,"style":815},[658],"height:0.8333em;vertical-align:-0.15em;",[642,817,819,824],{"className":818},[663],[642,820,823],{"className":821,"style":822},[663,667],"margin-right:0.1389em;","T",[642,825,827],{"className":826},[672],[642,828,830,856],{"className":829},[676,677],[642,831,833,853],{"className":832},[681],[642,834,837],{"className":835,"style":836},[685],"height:0.3361em;",[642,838,840,843],{"style":839},"top:-2.55em;margin-left:-0.1389em;margin-right:0.05em;",[642,841],{"className":842,"style":694},[693],[642,844,846],{"className":845},[698,699,700,701],[642,847,849],{"className":848},[663,781,701],[642,850,852],{"className":851},[663,701],"clk",[642,854,710],{"className":855},[709],[642,857,859],{"className":858},[681],[642,860,862],{"className":861,"style":717},[685],[642,863],{},[642,865],{"className":866,"style":868},[867],"mspace","margin-right:0.2778em;",[642,870],{"className":871,"style":868},[867],[642,873,876],{"className":874},[875],"mrel","≥",[642,878],{"className":879,"style":868},[867],[642,881],{"className":882,"style":868},[867],[642,884,886,890,953,957,961,1027,1030,1070,1073,1077,1082,1085],{"className":885},[654],[642,887],{"className":888,"style":889},[658],"height:2.4882em;vertical-align:-1.4382em;",[642,891,895],{"className":892},[893,894],"mop","op-limits",[642,896,898,944],{"className":897},[676,677],[642,899,901,941],{"className":900},[681],[642,902,905,925],{"className":903,"style":904},[685],"height:0.4306em;",[642,906,908,912],{"style":907},"top:-2.3665em;margin-left:0em;",[642,909],{"className":910,"style":911},[693],"height:3em;",[642,913,915],{"className":914},[698,699,700,701],[642,916,918],{"className":917},[663,701],[642,919,921],{"className":920},[663,781,701],[642,922,924],{"className":923},[663,701],"instr",[642,926,928,931],{"style":927},"top:-3em;",[642,929],{"className":930,"style":911},[693],[642,932,933],{},[642,934,936],{"className":935},[893],[642,937,940],{"className":938},[663,939],"mathrm","max",[642,942,710],{"className":943},[709],[642,945,947],{"className":946},[681],[642,948,951],{"className":949,"style":950},[685],"height:0.7335em;",[642,952],{},[642,954],{"className":955,"style":956},[867],"margin-right:-0.1667em;",[642,958],{"className":959,"style":960},[867],"margin-right:0.1667em;",[642,962,964],{"className":963},[893,894],[642,965,967,1018],{"className":966},[676,677],[642,968,970,1015],{"className":969},[681],[642,971,974,1001],{"className":972,"style":973},[685],"height:1.05em;",[642,975,977,981],{"style":976},"top:-1.8479em;margin-left:0em;",[642,978],{"className":979,"style":980},[693],"height:3.05em;",[642,982,984],{"className":983},[698,699,700,701],[642,985,987,990,994],{"className":986},[663,701],[642,988,705],{"className":989},[663,667,701],[642,991,993],{"className":992},[875,701],"∈",[642,995,997],{"className":996},[663,781,701],[642,998,1000],{"className":999},[663,701],"path",[642,1002,1004,1007],{"style":1003},"top:-3.05em;",[642,1005],{"className":1006,"style":980},[693],[642,1008,1009],{},[642,1010,1014],{"className":1011},[893,1012,1013],"op-symbol","large-op","∑",[642,1016,710],{"className":1017},[709],[642,1019,1021],{"className":1020},[681],[642,1022,1025],{"className":1023,"style":1024},[685],"height:1.4382em;",[642,1026],{},[642,1028],{"className":1029,"style":960},[867],[642,1031,1033,1036],{"className":1032},[663],[642,1034,668],{"className":1035},[663,667],[642,1037,1039],{"className":1038},[672],[642,1040,1042,1062],{"className":1041},[676,677],[642,1043,1045,1059],{"className":1044},[681],[642,1046,1048],{"className":1047,"style":686},[685],[642,1049,1050,1053],{"style":689},[642,1051],{"className":1052,"style":694},[693],[642,1054,1056],{"className":1055},[698,699,700,701],[642,1057,705],{"className":1058},[663,667,701],[642,1060,710],{"className":1061},[709],[642,1063,1065],{"className":1064},[681],[642,1066,1068],{"className":1067,"style":717},[685],[642,1069],{},[642,1071],{"className":1072,"style":868},[867],[642,1074],{"className":1075,"style":1076},[867],"margin-right:0.2222em;",[642,1078,1081],{"className":1079},[1080],"mbin","+",[642,1083],{"className":1084,"style":868},[867],[642,1086],{"className":1087,"style":1076},[867],[642,1089,1091,1095,1138,1143,1147,1150,1197,1200,1204],{"className":1090},[654],[642,1092],{"className":1093,"style":1094},[658],"height:0.9805em;vertical-align:-0.2861em;",[642,1096,1098,1101],{"className":1097},[663],[642,1099,668],{"className":1100},[663,667],[642,1102,1104],{"className":1103},[672],[642,1105,1107,1130],{"className":1106},[676,677],[642,1108,1110,1127],{"className":1109},[681],[642,1111,1113],{"className":1112,"style":769},[685],[642,1114,1115,1118],{"style":689},[642,1116],{"className":1117,"style":694},[693],[642,1119,1121],{"className":1120},[698,699,700,701],[642,1122,1124],{"className":1123},[663,781,701],[642,1125,785],{"className":1126},[663,701],[642,1128,710],{"className":1129},[709],[642,1131,1133],{"className":1132},[681],[642,1134,1136],{"className":1135,"style":795},[685],[642,1137],{},[642,1139,1142],{"className":1140},[1141],"mpunct",",",[642,1144],{"className":1145,"style":1146},[867],"margin-right:2em;",[642,1148],{"className":1149,"style":960},[867],[642,1151,1153,1158],{"className":1152},[663],[642,1154,1157],{"className":1155,"style":1156},[663,667],"margin-right:0.1076em;","f",[642,1159,1161],{"className":1160},[672],[642,1162,1164,1189],{"className":1163},[676,677],[642,1165,1167,1186],{"className":1166},[681],[642,1168,1171],{"className":1169,"style":1170},[685],"height:0.1514em;",[642,1172,1174,1177],{"style":1173},"top:-2.55em;margin-left:-0.1076em;margin-right:0.05em;",[642,1175],{"className":1176,"style":694},[693],[642,1178,1180],{"className":1179},[698,699,700,701],[642,1181,1183],{"className":1182},[663,781,701],[642,1184,940],{"className":1185},[663,701],[642,1187,710],{"className":1188},[709],[642,1190,1192],{"className":1191},[681],[642,1193,1195],{"className":1194,"style":717},[685],[642,1196],{},[642,1198],{"className":1199,"style":868},[867],[642,1201,1203],{"className":1202},[875],"=",[642,1205],{"className":1206,"style":868},[867],[642,1208,1210,1214,1328],{"className":1209},[654],[642,1211],{"className":1212,"style":1213},[658],"height:2.1574em;vertical-align:-0.836em;",[642,1215,1217,1222,1324],{"className":1216},[663],[642,1218],{"className":1219},[1220,1221],"mopen","nulldelimiter",[642,1223,1226],{"className":1224},[1225],"mfrac",[642,1227,1229,1315],{"className":1228},[676,677],[642,1230,1232,1312],{"className":1231},[681],[642,1233,1236,1288,1299],{"className":1234,"style":1235},[685],"height:1.3214em;",[642,1237,1239,1242],{"style":1238},"top:-2.314em;",[642,1240],{"className":1241,"style":911},[693],[642,1243,1245],{"className":1244},[663],[642,1246,1248,1251],{"className":1247},[663],[642,1249,823],{"className":1250,"style":822},[663,667],[642,1252,1254],{"className":1253},[672],[642,1255,1257,1280],{"className":1256},[676,677],[642,1258,1260,1277],{"className":1259},[681],[642,1261,1263],{"className":1262,"style":836},[685],[642,1264,1265,1268],{"style":839},[642,1266],{"className":1267,"style":694},[693],[642,1269,1271],{"className":1270},[698,699,700,701],[642,1272,1274],{"className":1273},[663,781,701],[642,1275,852],{"className":1276},[663,701],[642,1278,710],{"className":1279},[709],[642,1281,1283],{"className":1282},[681],[642,1284,1286],{"className":1285,"style":717},[685],[642,1287],{},[642,1289,1291,1294],{"style":1290},"top:-3.23em;",[642,1292],{"className":1293,"style":911},[693],[642,1295],{"className":1296,"style":1298},[1297],"frac-line","border-bottom-width:0.04em;",[642,1300,1302,1305],{"style":1301},"top:-3.677em;",[642,1303],{"className":1304,"style":911},[693],[642,1306,1308],{"className":1307},[663],[642,1309,1311],{"className":1310},[663],"1",[642,1313,710],{"className":1314},[709],[642,1316,1318],{"className":1317},[681],[642,1319,1322],{"className":1320,"style":1321},[685],"height:0.836em;",[642,1323],{},[642,1325],{"className":1326},[1327,1221],"mclose",[642,1329,1331],{"className":1330},[663],".",[311,1333,1334,1335,1337,1338,1341,1342,1344,1345,1347,1348,1350],{},"In SEQ that maximizing chain belongs to the instructions that use\nmemory late and need its answer for state: think of ",[345,1336,423],{},", where the PC's value must\ntraverse instruction memory (fetch the ",[345,1339,1340],{},"icode","), the register file (read ",[345,1343,600],{},"),\nthe ALU path, then ",[328,1346,446],{}," (read the return address), and finally the New-PC\nmux — all before ",[345,1349,347],{}," is stable enough to clock in.",[357,1352],{"hash":1353},"9e0827dc1acd9d5e0b9ca694096908b0943923b38b186f4a7d9f3cf9b53aa95c",[311,1355,1356,1357,1360,1361,1364,1365,1369,1370,1373,1374,1376],{},"The numbers are illustrative; the structure is not. Two consequences matter. First,\n",[328,1358,1359],{},"every instruction pays the worst-case time",": a ",[345,1362,1363],{},"nop"," finishes its ",[1366,1367,1368],"q",{},"work"," almost\ninstantly and then idles for the rest of the cycle, because the clock serves the\nslowest customer. Second, the path runs through ",[328,1371,1372],{},"two memory accesses in series","\n(instruction fetch, then data access) plus the register file and ALU between them —\nwhich is most of the reason SEQ's clock must be slow. Cutting this chain into pieces\nthat run concurrently is the job of\n",[315,1375,168],{"href":177},", and the\nsix-band drawing above is already the blueprint for those pipeline stages.",[311,1378,1379,1380,1382,1383,1496,1497,1570,1571,1645,1646,1722,1723,1726,1727,1873,1874,1876,1877,1930,1931,1934],{},"Put numbers to it to see what the single-cycle rule costs. With the illustrative\ndelays above — 90, 60, 80, 120, 20 ps — a ",[345,1381,423],{}," needs\n",[642,1384,1386],{"className":1385},[645],[642,1387,1389,1409,1428,1447,1466,1486],{"className":1388,"ariaHidden":650},[649],[642,1390,1392,1396,1400,1403,1406],{"className":1391},[654],[642,1393],{"className":1394,"style":1395},[658],"height:0.7278em;vertical-align:-0.0833em;",[642,1397,1399],{"className":1398},[663],"90",[642,1401],{"className":1402,"style":1076},[867],[642,1404,1081],{"className":1405},[1080],[642,1407],{"className":1408,"style":1076},[867],[642,1410,1412,1415,1419,1422,1425],{"className":1411},[654],[642,1413],{"className":1414,"style":1395},[658],[642,1416,1418],{"className":1417},[663],"60",[642,1420],{"className":1421,"style":1076},[867],[642,1423,1081],{"className":1424},[1080],[642,1426],{"className":1427,"style":1076},[867],[642,1429,1431,1434,1438,1441,1444],{"className":1430},[654],[642,1432],{"className":1433,"style":1395},[658],[642,1435,1437],{"className":1436},[663],"80",[642,1439],{"className":1440,"style":1076},[867],[642,1442,1081],{"className":1443},[1080],[642,1445],{"className":1446,"style":1076},[867],[642,1448,1450,1453,1457,1460,1463],{"className":1449},[654],[642,1451],{"className":1452,"style":1395},[658],[642,1454,1456],{"className":1455},[663],"120",[642,1458],{"className":1459,"style":1076},[867],[642,1461,1081],{"className":1462},[1080],[642,1464],{"className":1465,"style":1076},[867],[642,1467,1469,1473,1477,1480,1483],{"className":1468},[654],[642,1470],{"className":1471,"style":1472},[658],"height:0.6444em;",[642,1474,1476],{"className":1475},[663],"20",[642,1478],{"className":1479,"style":868},[867],[642,1481,1203],{"className":1482},[875],[642,1484],{"className":1485,"style":868},[867],[642,1487,1489,1492],{"className":1488},[654],[642,1490],{"className":1491,"style":1472},[658],[642,1493,1495],{"className":1494},[663],"370"," ps of settling; add ",[642,1498,1500],{"className":1499},[645],[642,1501,1503,1561],{"className":1502,"ariaHidden":650},[649],[642,1504,1506,1509,1552,1555,1558],{"className":1505},[654],[642,1507],{"className":1508,"style":750},[658],[642,1510,1512,1515],{"className":1511},[663],[642,1513,668],{"className":1514},[663,667],[642,1516,1518],{"className":1517},[672],[642,1519,1521,1544],{"className":1520},[676,677],[642,1522,1524,1541],{"className":1523},[681],[642,1525,1527],{"className":1526,"style":769},[685],[642,1528,1529,1532],{"style":689},[642,1530],{"className":1531,"style":694},[693],[642,1533,1535],{"className":1534},[698,699,700,701],[642,1536,1538],{"className":1537},[663,781,701],[642,1539,785],{"className":1540},[663,701],[642,1542,710],{"className":1543},[709],[642,1545,1547],{"className":1546},[681],[642,1548,1550],{"className":1549,"style":795},[685],[642,1551],{},[642,1553],{"className":1554,"style":868},[867],[642,1556,1203],{"className":1557},[875],[642,1559],{"className":1560,"style":868},[867],[642,1562,1564,1567],{"className":1563},[654],[642,1565],{"className":1566,"style":1472},[658],[642,1568,1476],{"className":1569},[663]," ps and\n",[642,1572,1574],{"className":1573},[645],[642,1575,1577,1635],{"className":1576,"ariaHidden":650},[649],[642,1578,1580,1583,1626,1629,1632],{"className":1579},[654],[642,1581],{"className":1582,"style":815},[658],[642,1584,1586,1589],{"className":1585},[663],[642,1587,823],{"className":1588,"style":822},[663,667],[642,1590,1592],{"className":1591},[672],[642,1593,1595,1618],{"className":1594},[676,677],[642,1596,1598,1615],{"className":1597},[681],[642,1599,1601],{"className":1600,"style":836},[685],[642,1602,1603,1606],{"style":839},[642,1604],{"className":1605,"style":694},[693],[642,1607,1609],{"className":1608},[698,699,700,701],[642,1610,1612],{"className":1611},[663,781,701],[642,1613,852],{"className":1614},[663,701],[642,1616,710],{"className":1617},[709],[642,1619,1621],{"className":1620},[681],[642,1622,1624],{"className":1623,"style":717},[685],[642,1625],{},[642,1627],{"className":1628,"style":868},[867],[642,1630,876],{"className":1631},[875],[642,1633],{"className":1634,"style":868},[867],[642,1636,1638,1641],{"className":1637},[654],[642,1639],{"className":1640,"style":1472},[658],[642,1642,1644],{"className":1643},[663],"390"," ps, an ",[642,1647,1649],{"className":1648},[645],[642,1650,1652,1712],{"className":1651,"ariaHidden":650},[649],[642,1653,1655,1659,1702,1705,1709],{"className":1654},[654],[642,1656],{"className":1657,"style":1658},[658],"height:0.8889em;vertical-align:-0.1944em;",[642,1660,1662,1665],{"className":1661},[663],[642,1663,1157],{"className":1664,"style":1156},[663,667],[642,1666,1668],{"className":1667},[672],[642,1669,1671,1694],{"className":1670},[676,677],[642,1672,1674,1691],{"className":1673},[681],[642,1675,1677],{"className":1676,"style":1170},[685],[642,1678,1679,1682],{"style":1173},[642,1680],{"className":1681,"style":694},[693],[642,1683,1685],{"className":1684},[698,699,700,701],[642,1686,1688],{"className":1687},[663,781,701],[642,1689,940],{"className":1690},[663,701],[642,1692,710],{"className":1693},[709],[642,1695,1697],{"className":1696},[681],[642,1698,1700],{"className":1699,"style":717},[685],[642,1701],{},[642,1703],{"className":1704,"style":868},[867],[642,1706,1708],{"className":1707},[875],"≈",[642,1710],{"className":1711,"style":868},[867],[642,1713,1715,1718],{"className":1714},[654],[642,1716],{"className":1717,"style":1472},[658],[642,1719,1721],{"className":1720},[663],"2.56"," GHz ceiling. But ",[345,1724,1725],{},"addq","\nstops at the ALU: its longest path skips data memory, giving\n",[642,1728,1730],{"className":1729},[645],[642,1731,1733,1791,1809,1827,1845,1863],{"className":1732,"ariaHidden":650},[649],[642,1734,1736,1739,1782,1785,1788],{"className":1735},[654],[642,1737],{"className":1738,"style":750},[658],[642,1740,1742,1745],{"className":1741},[663],[642,1743,668],{"className":1744},[663,667],[642,1746,1748],{"className":1747},[672],[642,1749,1751,1774],{"className":1750},[676,677],[642,1752,1754,1771],{"className":1753},[681],[642,1755,1757],{"className":1756,"style":836},[685],[642,1758,1759,1762],{"style":689},[642,1760],{"className":1761,"style":694},[693],[642,1763,1765],{"className":1764},[698,699,700,701],[642,1766,1768],{"className":1767},[663,781,701],[642,1769,1725],{"className":1770},[663,701],[642,1772,710],{"className":1773},[709],[642,1775,1777],{"className":1776},[681],[642,1778,1780],{"className":1779,"style":795},[685],[642,1781],{},[642,1783],{"className":1784,"style":868},[867],[642,1786,1203],{"className":1787},[875],[642,1789],{"className":1790,"style":868},[867],[642,1792,1794,1797,1800,1803,1806],{"className":1793},[654],[642,1795],{"className":1796,"style":1395},[658],[642,1798,1399],{"className":1799},[663],[642,1801],{"className":1802,"style":1076},[867],[642,1804,1081],{"className":1805},[1080],[642,1807],{"className":1808,"style":1076},[867],[642,1810,1812,1815,1818,1821,1824],{"className":1811},[654],[642,1813],{"className":1814,"style":1395},[658],[642,1816,1418],{"className":1817},[663],[642,1819],{"className":1820,"style":1076},[867],[642,1822,1081],{"className":1823},[1080],[642,1825],{"className":1826,"style":1076},[867],[642,1828,1830,1833,1836,1839,1842],{"className":1829},[654],[642,1831],{"className":1832,"style":1395},[658],[642,1834,1437],{"className":1835},[663],[642,1837],{"className":1838,"style":1076},[867],[642,1840,1081],{"className":1841},[1080],[642,1843],{"className":1844,"style":1076},[867],[642,1846,1848,1851,1854,1857,1860],{"className":1847},[654],[642,1849],{"className":1850,"style":1472},[658],[642,1852,1476],{"className":1853},[663],[642,1855],{"className":1856,"style":868},[867],[642,1858,1203],{"className":1859},[875],[642,1861],{"className":1862,"style":868},[867],[642,1864,1866,1869],{"className":1865},[654],[642,1867],{"className":1868,"style":1472},[658],[642,1870,1872],{"className":1871},[663],"250"," ps, a would-be 4 GHz. SEQ does not allow\nit: one clock serves every instruction, so ",[345,1875,1725],{}," runs at 390 ps and idles the slack\n",[642,1878,1880],{"className":1879},[645],[642,1881,1883,1902,1920],{"className":1882,"ariaHidden":650},[649],[642,1884,1886,1889,1892,1895,1899],{"className":1885},[654],[642,1887],{"className":1888,"style":1395},[658],[642,1890,1644],{"className":1891},[663],[642,1893],{"className":1894,"style":1076},[867],[642,1896,1898],{"className":1897},[1080],"−",[642,1900],{"className":1901,"style":1076},[867],[642,1903,1905,1908,1911,1914,1917],{"className":1904},[654],[642,1906],{"className":1907,"style":1472},[658],[642,1909,1872],{"className":1910},[663],[642,1912],{"className":1913,"style":868},[867],[642,1915,1203],{"className":1916},[875],[642,1918],{"className":1919,"style":868},[867],[642,1921,1923,1926],{"className":1922},[654],[642,1924],{"className":1925,"style":1472},[658],[642,1927,1929],{"className":1928},[663],"140"," ps every cycle. A program that is mostly arithmetic pays the memory\ninstructions' worst-case time on every single cycle. This is the concrete, measurable\ncost of ",[1366,1932,1933],{},"one cycle per instruction, sized for the worst instruction,"," and it is the\nmotivation for everything that comes after SEQ.",[337,1936,1938],{"id":1937},"walking-an-opq-through-seq","Walking an OPq through SEQ",[311,1940,1941,1942,1944,1945,1948,1949,2045],{},"Take a concrete ",[345,1943,616],{},": ",[345,1946,1947],{},"subq %rdx, %rbx",", computing ",[642,1950,1952],{"className":1951},[645],[642,1953,1955,1993,2023],{"className":1954,"ariaHidden":650},[649],[642,1956,1958,1962,1967,1971,1979,1983,1986,1990],{"className":1957},[654],[642,1959],{"className":1960,"style":1961},[658],"height:1em;vertical-align:-0.25em;",[642,1963,1966],{"className":1964,"style":1965},[663,667],"margin-right:0.0077em;","R",[642,1968,1970],{"className":1969},[1220],"[",[642,1972,1974],{"className":1973},[663,781],[642,1975,1978],{"className":1976},[663,1977],"texttt","%rbx",[642,1980,1982],{"className":1981},[1327],"]",[642,1984],{"className":1985,"style":868},[867],[642,1987,1989],{"className":1988},[875],"←",[642,1991],{"className":1992,"style":868},[867],[642,1994,1996,1999,2002,2005,2011,2014,2017,2020],{"className":1995},[654],[642,1997],{"className":1998,"style":1961},[658],[642,2000,1966],{"className":2001,"style":1965},[663,667],[642,2003,1970],{"className":2004},[1220],[642,2006,2008],{"className":2007},[663,781],[642,2009,1978],{"className":2010},[663,1977],[642,2012,1982],{"className":2013},[1327],[642,2015],{"className":2016,"style":1076},[867],[642,2018,1898],{"className":2019},[1080],[642,2021],{"className":2022,"style":1076},[867],[642,2024,2026,2029,2032,2035,2042],{"className":2025},[654],[642,2027],{"className":2028,"style":1961},[658],[642,2030,1966],{"className":2031,"style":1965},[663,667],[642,2033,1970],{"className":2034},[1220],[642,2036,2038],{"className":2037},[663,781],[642,2039,2041],{"className":2040},[663,1977],"%rdx",[642,2043,1982],{"className":2044},[1327],". Follow it up the bands.",[2047,2048,2049,2081,2107,2150,2164,2188],"ul",{},[452,2050,2051,2054,2055,2058,2059,2062,2063,524,2065,2068,2069,2062,2072,2074,2075,2077,2078,1331],{},[328,2052,2053],{},"Fetch"," reads two bytes at the PC: ",[345,2056,2057],{},"61 23",". ",[345,2060,2061],{},"icode:ifun = 6:1"," (",[345,2064,616],{},[345,2066,2067],{},"subq",");\nthe register byte is ",[345,2070,2071],{},"rA:rB = 2:3",[345,2073,2041],{},":",[345,2076,1978],{},"). ",[345,2079,2080],{},"valP = PC + 2",[452,2082,2083,2086,2087,370,2090,2093,2094,370,2097,2058,2100,2103,2104,1331],{},[328,2084,2085],{},"Decode"," sets ",[345,2088,2089],{},"srcA = rA = %rdx",[345,2091,2092],{},"srcB = rB = %rbx",", reading\n",[345,2095,2096],{},"valA = R[%rdx]",[345,2098,2099],{},"valB = R[%rbx]",[345,2101,2102],{},"dstE = rB = %rbx","; ",[345,2105,2106],{},"dstM = RNONE",[452,2108,2109,2112,2113,2115,2116,370,2118,2115,2121,2124,2125,2128,2129,2132,2133,524,2136,2138,2139,2142,2143,2142,2146,2149],{},[328,2110,2111],{},"Execute"," sends ",[345,2114,377],{}," to ",[345,2117,384],{},[345,2119,2120],{},"valB",[345,2122,2123],{},"aluB",", with ",[345,2126,2127],{},"alufun = ifun = subq",", so ",[345,2130,2131],{},"valE = valB - valA",". Because ",[345,2134,2135],{},"icode == IOPQ",[345,2137,513],{}," is true and the\nALU flags will latch into ",[345,2140,2141],{},"ZF","\u002F",[345,2144,2145],{},"SF",[345,2147,2148],{},"OF"," at the edge.",[452,2151,2152,2155,2156,370,2159,2161,2162,1331],{},[328,2153,2154],{},"Memory"," does nothing: ",[345,2157,2158],{},"mem_read",[345,2160,547],{}," are both false for ",[345,2163,616],{},[452,2165,2166,2169,2170,2172,2173,2176,2177,2180,2181,2184,2185,2187],{},[328,2167,2168],{},"Write-back"," commits ",[345,2171,388],{}," into ",[345,2174,2175],{},"dstE = %rbx"," through the ",[345,2178,2179],{},"E"," port; the ",[345,2182,2183],{},"M","\nport is idle (",[345,2186,2106],{},").",[452,2189,2190,2193,2194,2196,2197,443,2200,2202],{},[328,2191,2192],{},"PC update"," finds ",[345,2195,1340],{}," is not call, jump, or ret, so ",[345,2198,2199],{},"newPC = valP",[345,2201,434],{},"\nadvances to the next instruction.",[311,2204,2205,2206,2142,2208,2210,2211,2214,2215,2187],{},"Every band did exactly what its row in the OPq stage table promised, and the only\nmuxes that mattered were ",[345,2207,384],{},[345,2209,2123],{}," (picking the register values) and ",[345,2212,2213],{},"New PC","\n(picking ",[345,2216,373],{},[357,2218],{"hash":2219},"b5e57533b1c717df79de5497e4036b0dc6c3988a1796d580c1b9d1ffa83cb0f9",[337,2221,2223],{"id":2222},"walking-a-ret-through-seq","Walking a ret through SEQ",[311,2225,2226,2228,2229,2231,2232,1331],{},[345,2227,423],{}," exercises the parts ",[345,2230,616],{}," left idle: the stack, the memory read port, and the\ninteresting input to the New-PC mux. Its one byte is ",[345,2233,1399],{},[2047,2235,2236,2250,2283,2304,2323,2347],{},[452,2237,2238,2240,2241,1944,2243,2246,2247,1331],{},[328,2239,2053],{}," reads ",[345,2242,1399],{},[345,2244,2245],{},"icode:ifun = 9:0",". There is no register byte and no constant,\nso ",[345,2248,2249],{},"valP = PC + 1",[452,2251,2252,2254,2255,2142,2258,2261,2262,370,2265,2268,2269,2271,2272,370,2274,2276,2277,2280,2281,1331],{},[328,2253,2085],{}," has no ",[345,2256,2257],{},"rA",[345,2259,2260],{},"rB",", but the control logic sets ",[345,2263,2264],{},"srcA = %rsp",[345,2266,2267],{},"srcB = %rsp"," for ",[345,2270,423],{},", so both ",[345,2273,377],{},[345,2275,2120],{}," read the stack pointer. ",[345,2278,2279],{},"dstE = %rsp",";\n",[345,2282,2106],{},[452,2284,2285,2287,2288,370,2291,2124,2294,2128,2297,2300,2301,2303],{},[328,2286,2111],{}," picks ",[345,2289,2290],{},"aluA = +8",[345,2292,2293],{},"aluB = valB",[345,2295,2296],{},"alufun = ADD",[345,2298,2299],{},"valE = R[%rsp] + 8",", the incremented stack pointer. ",[345,2302,513],{}," is false; the flags are\nuntouched.",[452,2305,2306,2308,2309,2311,2312,2315,2316,2318,2319,2322],{},[328,2307,2154],{}," has ",[345,2310,2158],{}," true with ",[345,2313,2314],{},"mem_addr = valA = R[%rsp]"," — the ",[328,2317,586],{}," stack\ntop — so ",[345,2320,2321],{},"valM = M[R[%rsp]]",", the return address.",[452,2324,2325,2169,2327,2329,2330,2058,2332,2335,2336,2339,2340,2342,2343,2346],{},[328,2326,2168],{},[345,2328,388],{}," (the incremented pointer) into ",[345,2331,2279],{},[345,2333,2334],{},"dstM","\nis ",[345,2337,2338],{},"RNONE",", so the loaded ",[345,2341,391],{}," is ",[328,2344,2345],{},"not"," written to any register; it is bound\nfor the PC instead.",[452,2348,2349,2193,2351,2128,2354,2357,2358,2360],{},[328,2350,2192],{},[345,2352,2353],{},"icode == IRET",[345,2355,2356],{},"newPC = valM",". The processor jumps to the\nreturn address, and ",[345,2359,600],{}," has moved up by 8.",[311,2362,2363,2364,2366,2367,2369,2370,2372,2373,2376,2377,2379,2380,2383,2384,2386,2387,2389],{},"The decisive wire is the one carrying ",[345,2365,391],{}," past Write-back and into the New-PC mux:\nthat single connection, selected only when ",[345,2368,2353],{},", is what makes ",[345,2371,423],{}," a\ncontrol transfer rather than a load. Contrast ",[345,2374,2375],{},"popq",", which routes the very same\n",[345,2378,391],{}," into a register (",[345,2381,2382],{},"dstM = rA",") and lets ",[345,2385,347],{}," fall through to ",[345,2388,373],{},". Same\nmemory read, different destination — and the difference is one mux input.",[337,2391,2393],{"id":2392},"seq-and-the-road-to-the-pipeline","SEQ+ and the road to the pipeline",[311,2395,2396,2397,2399,2400,2403,2404,2407,2408,2411,2412,2415,2416,2419],{},"The SEQ we just assembled computes ",[345,2398,347],{}," at the very ",[414,2401,2402],{},"end"," of the cycle, at the top\nof the drawing, and loops it all the way back down to the PC register. That long\nfeedback wire is harmless in a single-cycle machine, but it is precisely the wrong\nshape for pipelining, where each stage must begin and end at a clean register\nboundary. CS:APP's next step, ",[328,2405,2406],{},"SEQ+"," (Bryant & O'Hallaron, ",[414,2409,2410],{},"CS:APP"," §4.5.1), fixes\nthis with a small rearrangement: move the PC computation to the ",[414,2413,2414],{},"start"," of the cycle,\nso the machine computes the address of the instruction it is ",[414,2417,2418],{},"about to run"," from\nsignals it saved on the previous cycle.",[357,2421],{"hash":2422},"b0d418ddf49ae52a86b7371d214d8d5e5310b02901198f41bca89e91df553eff",[311,2424,2425,2426,2428,2429,524,2432,524,2435,2438,2439,2442,2443,2446],{},"What SEQ+ does ",[414,2427,2345],{}," have is a program-counter register. The PC is\nreconstructed each cycle from the saved control signals ",[345,2430,2431],{},"pIcode",[345,2433,2434],{},"pValC",[345,2436,2437],{},"pValM",", and\nso on. CS:APP names this move ",[328,2440,2441],{},"circuit retiming"," (Leiserson & Saxe, 1991) — a\ntransformation that relocates state across combinational logic without changing what\nthe circuit computes, used here to balance stage delays. It rests on a principle\nworth stating plainly: a processor may represent its state in any form, as long\nas it produces the correct programmer-visible values for any program. SEQ+ exploits\nthis in a small way (no PC register); the pipelined PIPE design exploits it heavily,\nand out-of-order cores take it to the extreme of running instructions in an order\nentirely unlike the program's (CS:APP §5.7). SEQ+ is the single, cheap step that turns\nSEQ's stage bands into pipeline stages: insert a register between each band and several\ninstructions can occupy the machine at once, which is where the\n",[315,2444,2445],{"href":177},"pipelining module"," begins.",[563,2448,2449],{"type":565},[311,2450,2451,2454,2455,2457,2458,2460],{},[328,2452,2453],{},"Takeaway."," SEQ is the functional units of digital logic plus the control signals\nof the last lesson, wired as six bands from Fetch at the bottom to PC update at the\ntop, with bypass lanes up the right margin and write-back and ",[345,2456,347],{}," looping down\nthe left. Its timing is a two-beat rhythm — combinational logic settles during the\ncycle, then PC, CC, registers, and memory commit together at the rising edge — made\nconsistent by the no-reading-back principle. The clock period is the critical\npath: for a ",[345,2459,423],{},", instruction memory, register file, ALU, data memory, and the\nNew-PC mux in series, and every instruction pays that worst-case time.",[311,2462,2463,2464,2467],{},"The datapath is assembled, timed, and demonstrably correct on two instructions. The\n",[315,2465,2466],{"href":163},"final lesson"," runs whole\nprograms through it, cycle by cycle, and watches real machine state evolve.",{"title":306,"searchDepth":17,"depth":17,"links":2469},[2470,2471,2472,2473,2474,2475],{"id":339,"depth":17,"text":340},{"id":427,"depth":17,"text":428},{"id":632,"depth":17,"text":633},{"id":1937,"depth":17,"text":1938},{"id":2222,"depth":17,"text":2223},{"id":2392,"depth":17,"text":2393},[],"computer-science","We have the parts and we have the wiring diagram in words. The\nstage tables gave the\ncomputations; the control logic\ngave the signals; the digital-logic module\ngave the units. This lesson bolts them together into SEQ, the complete sequential\nY86-64 processor, and draws it the canonical way: the six stages as horizontal bands,\nFetch at the bottom and PC update at the top, so that signals flow generally\nupward and the next-PC value loops back down to the PC register. Then we work out the\ntiming (what one cycle must accomplish and what sets its length) and trace two\ninstructions through the assembled datapath to prove the wiring is right.",false,"md",{"moduleNumber":29,"lessonNumber":29,"order":2482},404,true,[],"---\ntitle: Assembling SEQ\nmodule: Processor Design\nmoduleNumber: 4\nlessonNumber: 4\norder: 404\nsummary: >\n  We wire the whole thing together. The functional units from digital logic and the\n  control signals from the last lesson assemble into the complete SEQ datapath, laid\n  out the way CS:APP draws it — six stages stacked bottom to top, Fetch at the floor\n  and PC update at the ceiling, signals flowing up the margins. Then the timing\n  analysis: why everything must settle in one cycle, the no-reading-back principle\n  that makes single-cycle execution consistent, and the critical path that sets the\n  clock. We close by walking an OPq and a ret through the assembled machine.\ntopics: [Processor Design]\nsources:\n  - book: Bryant & O'Hallaron\n    ref: \"CS:APP — §4.3 Sequential Y86-64 Implementations\"\n  - book: Bistriceanu\n    ref: \"Computer Architecture Notes — §5 CPU Implementation (Executing an instruction; Hardwired control)\"\n---\n\nWe have the parts and we have the wiring diagram in words. The\n[stage tables](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages) gave the\ncomputations; the [control logic](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing)\ngave the signals; the [digital-logic module](\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu)\ngave the units. This lesson bolts them together into **SEQ**, the complete sequential\nY86-64 processor, and draws it the canonical way: the six stages as horizontal bands,\n**Fetch at the bottom and PC update at the top**, so that signals flow generally\nupward and the next-PC value loops back down to the PC register. Then we work out the\ntiming (what one cycle must accomplish and what sets its length) and trace two\ninstructions through the assembled datapath to prove the wiring is right.\n\n## The layout: stages as bands, bottom to top\n\nCS:APP draws SEQ upside-down relative to the stage list: the work starts at the floor\nand rises. The reason is the data flow. Fetch reads the PC and produces the fields;\nthose feed Decode just above; the register values rise into Execute; the ALU result\nrises into Memory; the loaded or computed values rise toward Write-back; and at the\nvery top, PC update computes `newPC` and sends it back **down** the left margin to\nthe PC register, ready for the next cycle. Drawing it this way keeps every hand-off\nvertical, and it puts the two long feedback paths — write-back into the register\nfile, `newPC` into the PC — in the margins where they cross nothing they should not.\n\n$$\n% caption: The complete SEQ datapath, Fetch (bottom) to PC update (top). The center\n% caption: column rises from the PC through instruction memory, the register file,\n% caption: the ALU muxes and ALU, data memory, and the New-PC mux. Bypass lanes carry\n% caption: valC and valP up the right margin and valC into aluA on the left; valE and\n% caption: valM return down the left margin to the write ports (dstE, dstM), and\n% caption: newPC loops down the far left into the PC register. The aluA mux also\n% caption: takes the constants +8\u002F-8, and aluB the constant 0 (not drawn).\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  u\u002F.style={draw, fill=acc!8, align=center, inner sep=2pt, minimum height=11mm},\n  mux\u002F.style={draw, fill=acc!8, align=center, inner sep=1pt,\n              minimum width=8mm, minimum height=9mm, font=\\scriptsize},\n  band\u002F.style={anchor=west, text=acc, font=\\scriptsize\\itshape},\n  wl\u002F.style={font=\\scriptsize}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % ===== units, bottom to top =====\n  \\node[u, minimum width=16mm, minimum height=9mm] (pc) at (0.6,-1.4) {PC};\n  \\node[u, minimum width=26mm] (imem) at (0.6,0) {Instruction\\\\memory};\n  \\node[u, minimum width=30mm] (rf) at (0.6,2.4) {Register f\\\u002File};\n  \\node[mux] (aluA) at (0,4.2) {aluA};\n  \\node[mux] (aluB) at (1.2,4.2) {aluB};\n  \\node[u, minimum width=18mm, minimum height=9mm] (alu) at (0.6,5.6) {ALU};\n  \\node[u, minimum width=10mm, minimum height=9mm] (cc) at (3.2,5.6) {CC};\n  \\node[u, minimum width=28mm, minimum height=12mm] (dmem) at (0.6,7.6) {Data memory};\n  \\node[u, minimum width=16mm, minimum height=12mm] (npc) at (0.6,10.3) {New\\\\PC};\n  % ===== center column =====\n  \\draw[->] (pc.north) -- (imem.south) node[wl,midway,right]{addr};\n  \\draw[->] (imem.north) -- (rf.south) node[wl,midway,right]{rA, rB};\n  \\draw[->] ([xshift=-6mm]rf.north) -- (aluA.south) node[wl,midway,left]{valA};\n  \\draw[->] ([xshift=6mm]rf.north) -- (aluB.south) node[wl,midway,right]{valB};\n  \\draw[->] (aluA.north) -- ([xshift=-6mm]alu.south);\n  \\draw[->] (aluB.north) -- ([xshift=6mm]alu.south);\n  \\draw[->] (alu.north) -- (dmem.south) node[wl,midway,right]{valE (addr)};\n  \\draw[->] (alu.east) -- (cc.west) node[wl,midway,above]{set CC};\n  \\draw[->, acc] (cc.north) -- ++(0,0.4) node[wl,anchor=south,text=acc]{Cnd};\n  \\draw[->] (dmem.north) -- (npc.south) node[wl,pos=0.25,right]{valM};\n  % ===== right margin: valA store data, valC, valP bypass lanes =====\n  \\draw[->] (rf.east) -- (4.6,2.4) -- (4.6,7.6) -- (dmem.east);\n  \\node[wl, anchor=south] at (3.2,2.4) {valA (data in)};\n  \\draw[->] ([yshift=3mm]imem.east) -- (5.4,0.3) -- (5.4,10.0) -- (1.4,10.0);\n  \\node[wl, anchor=south] at (3.2,10.0) {valC};\n  \\node[wl, anchor=south] at (3.2,0.3) {valC};\n  \\draw[->] ([yshift=-3mm]imem.east) -- (6.2,-0.3) -- (6.2,10.6) -- (1.4,10.6);\n  \\node[wl, anchor=south] at (3.2,10.6) {valP};\n  \\node[wl, anchor=north] at (3.2,-0.35) {valP};\n  % ===== left margin: valC into aluA; write-back lanes; newPC loop =====\n  \\draw[->] ([yshift=3mm]imem.west) -- (-3.0,0.3) -- (-3.0,4.2) -- (aluA.west);\n  \\node[wl, anchor=south] at (-1.9,0.3) {valC};\n  \\draw[->] (0.6,6.5) -- (-3.8,6.5) -- (-3.8,2.6) -- ([yshift=2mm]rf.west);\n  \\node[wl, anchor=south] at (-1.6,6.5) {valE};\n  \\node[wl, anchor=south] at (-2.0,2.62) {dstE};\n  \\draw[->] (0.6,9.0) -- (-4.6,9.0) -- (-4.6,2.2) -- ([yshift=-2mm]rf.west);\n  \\node[wl, anchor=south] at (-2.0,9.0) {valM};\n  \\node[wl, anchor=north] at (-2.0,2.15) {dstM};\n  \\draw[->, acc] (npc.west) -- (-5.6,10.3) -- (-5.6,-1.4) -- (pc.west);\n  \\node[text=acc, anchor=south, rotate=90, font=\\scriptsize] at (-5.85,4.4) {newPC};\n  % ===== control-point annotations =====\n  \\draw[->, acc] (-1.35,5.6) -- (alu.west);\n  \\node[wl, anchor=east, text=acc] at (-1.4,5.6) {alufun};\n  \\draw[->, acc] (0.6,11.5) -- (npc.north);\n  \\node[wl, anchor=south] at (0.6,11.55) {icode, Cnd (select)};\n  \\node[wl, anchor=east, text=acc] at (-1.0,7.9) {read \u002F write};\n  % ===== band labels on the far right =====\n  \\node[band] at (7.0,0)    {Fetch};\n  \\node[band] at (7.0,2.4)  {Decode};\n  \\node[band] at (7.0,5.0)  {Execute};\n  \\node[band] at (7.0,7.6)  {Memory};\n  \\node[band] at (7.0,9.0)  {Write-back};\n  \\node[band] at (7.0,10.3) {PC update};\n\\end{tikzpicture}\n$$\n\nThe figure is busy because the machine is, but the discipline is simple. Functional\nunits sit in their band, and data rises through the center column. Values that skip\nstages ride **bypass lanes** in the margins: `valC` and `valP` climb the right side\nfrom Fetch straight to the New-PC mux, `valA` rides across to the data-memory write\nport, and `valC` cuts up the left into the `aluA` mux. The two write-back values,\n`valE` and `valM`, tee off their rising wires and descend the left margin into the\nregister file's E and M write ports. The one wire that travels the whole height is\n`newPC`, looping from the top back down into the PC. Every wire in the figure is one\nrow of some stage table made physical; if a wire seems unmotivated, some instruction\nin [lesson 2](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages) is its reason.\n\nTwo wires reward a second look. The `valA` lane into data memory exists because\n`rmmovq` and `pushq` store a register value the ALU never touches; the ALU is busy\ncomputing the _address_. And `valM` rises all the way into the New-PC mux because of\none instruction, `ret`; for every other instruction that input is ignored.\n\n## Timing: one cycle, one instruction\n\nSEQ has exactly four clocked state elements: the **PC**, the **condition codes**,\nthe **register file**, and **data memory**. Everything else — every mux, the ALU,\nthe control logic, the wires above — is combinational: outputs follow inputs after a\ngate delay, with no memory of their own. The processor's operation is then a strict\ntwo-beat rhythm:\n\n1. **During the cycle**, the state elements hold still and the combinational logic\n   settles. The PC's current value ripples up the figure: fetch produces the fields,\n   decode reads registers, the ALU computes, memory reads, and the New-PC mux\n   produces `newPC`. Late in the cycle every wire holds its final value.\n2. **At the rising clock edge**, all four state elements load at once, each with its\n   commit condition:\n\n   | State element | Loads | Commit condition |\n   | --- | --- | --- |\n   | PC | `newPC` | always |\n   | Condition codes | ALU flags | `set_cc` |\n   | Register file | `valE→dstE`, `valM→dstM` | `dst ≠ RNONE` |\n   | Data memory | `valA→mem_addr` | `mem_write` |\n\n   The instant after the edge, the next instruction's cycle begins from the new state.\n\n$$\n% caption: One SEQ cycle. Between rising clock edges the combinational logic settles\n% caption: stage by stage — fetch, decode, execute, memory, PC selection — and the\n% caption: state elements hold still. At the edge, PC, CC, register file, and data\n% caption: memory all commit their new values simultaneously, and the next cycle\n% caption: begins from that state.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  bar\u002F.style={draw, fill=acc!8, minimum height=6mm, inner sep=1pt, font=\\scriptsize}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % clock waveform\n  \\draw[thick] (0,2.7) -- (1,2.7) -- (1,3.3) -- (4.6,3.3) -- (4.6,2.7)\n               -- (9,2.7) -- (9,3.3) -- (10.2,3.3);\n  \\node[anchor=west, font=\\scriptsize] at (10.4,3.0) {clock};\n  % rising edges\n  \\draw[acc, dashed] (1,-1.3) -- (1,3.6);\n  \\draw[acc, dashed] (9,-1.3) -- (9,3.6);\n  \\node[text=acc, anchor=south, font=\\scriptsize] at (1,3.65) {rising edge};\n  \\node[text=acc, anchor=south, font=\\scriptsize] at (9,3.65) {rising edge};\n  % settling bars\n  \\node[bar, minimum width=16mm, anchor=west] at (1.1,1.9)  {Fetch};\n  \\node[bar, minimum width=13mm, anchor=west] at (2.8,1.9)  {Decode};\n  \\node[bar, minimum width=15mm, anchor=west] at (4.2,1.9)  {Execute};\n  \\node[bar, minimum width=17mm, anchor=west] at (5.8,1.9)  {Memory};\n  \\node[bar, minimum width=13mm, anchor=west] at (7.6,1.9)  {newPC};\n  \\node[anchor=west, font=\\scriptsize] at (1.1,1.1) {combinational logic settles; state elements hold};\n  % commits at the edge\n  \\node[anchor=west, font=\\scriptsize, text=acc] at (4.7,0.35)\n        {at the edge: PC, CC, registers,};\n  \\node[anchor=west, font=\\scriptsize, text=acc] at (4.7,-0.1)\n        {memory commit together};\n  \\draw[->, acc] (4.7,-0.55) -- (8.85,-0.55);\n  % cycle span\n  \\draw[\u003C->] (1,-0.9) -- (9,-0.9) node[midway, below, font=\\scriptsize]{one cycle = one instruction};\n\\end{tikzpicture}\n$$\n\nThe design works only if a consistency condition holds: nothing computed during the\ncycle may depend on state the _same_ instruction is about to write. Otherwise the\ncombinational logic would chase its own tail: the write would change a value that\nfed the write.\n\n> **Principle (No reading back).** The processor never needs to read back state\n> updated by an instruction in order to complete that instruction's own processing.\n> Every value an instruction uses is either prior state (held steady all cycle) or a\n> named intermediate signal (`valA`, `valE`, ...) carried on wires.\n\nThe stage tables were written to respect this. `pushq %rsp` stores the\n_old_ stack pointer because Memory stores `valA`, a wire that captured the register\n_before_ any update; the decremented `valE` lands in `%rsp` only at the edge, after\nthe store's data is already decided. `popq %rsp` never re-reads `%rsp` after its\nincrement; both candidate values (`valE`, `valM`) are wires, and a mux picks which\none the register file commits. Even the condition codes obey it: an `OPq` _sets_ CC\nat the edge, and the `jXX` that _reads_ CC is a later instruction, reading the\ncommitted value in its own cycle. State is read at the top of the cycle and written\nat the bottom, never both.\n\n## The critical path\n\nThe clock cannot tick until the slowest signal has settled, so the cycle time is set\nby the **critical path**: the longest chain of combinational delay between one\nrising edge and the next. Writing $t_i$ for the propagation delay of unit $i$ and\n$t_\\text{setup}$ for the register setup time, the minimum clock period is\n\n$$\nT_\\text{clk} \\;\\ge\\; \\max_{\\text{instr}} \\!\\sum_{i \\in \\text{path}} t_i \\;+\\; t_\\text{setup},\n\\qquad\nf_\\text{max} = \\frac{1}{T_\\text{clk}}.\n$$\n\nIn SEQ that maximizing chain belongs to the instructions that use\nmemory late and need its answer for state: think of `ret`, where the PC's value must\ntraverse instruction memory (fetch the `icode`), the register file (read `%rsp`),\nthe ALU path, then **data memory** (read the return address), and finally the New-PC\nmux — all before `newPC` is stable enough to clock in.\n\n$$\n% caption: The critical path through SEQ, with illustrative delays. A ret must ripple\n% caption: through instruction memory, the register file, the ALU, data memory, and\n% caption: the New-PC mux before newPC may clock into the PC; the sum, plus register\n% caption: setup time, is the minimum clock period. Faster instructions (an OPq stops\n% caption: at the ALU) still wait out the full cycle.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  u\u002F.style={draw, fill=acc!8, align=center, inner sep=2pt,\n            minimum width=20mm, minimum height=10mm}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[u] (im) at (0,0)    {Instruction\\\\memory};\n  \\node[u] (rf) at (2.9,0)  {Register\\\\f\\\u002File};\n  \\node[u] (al) at (5.8,0)  {ALU};\n  \\node[u] (dm) at (8.7,0)  {Data\\\\memory};\n  \\node[u] (np) at (11.6,0) {New-PC\\\\mux};\n  \\draw[->, acc, thick] (im.east) -- (rf.west);\n  \\draw[->, acc, thick] (rf.east) -- (al.west);\n  \\draw[->, acc, thick] (al.east) -- (dm.west);\n  \\draw[->, acc, thick] (dm.east) -- (np.west);\n  \\draw[->, acc, thick] (np.east) -- ++(1.2,0) node[anchor=west]{newPC};\n  \\node[anchor=north, font=\\scriptsize] at (0,-0.75)    {90 ps};\n  \\node[anchor=north, font=\\scriptsize] at (2.9,-0.75)  {60 ps};\n  \\node[anchor=north, font=\\scriptsize] at (5.8,-0.75)  {80 ps};\n  \\node[anchor=north, font=\\scriptsize] at (8.7,-0.75)  {120 ps};\n  \\node[anchor=north, font=\\scriptsize] at (11.6,-0.75) {20 ps};\n  \\node[anchor=west, text=acc, font=\\scriptsize] at (0,-1.5)\n        {clock period at least 370 ps + setup; every instruction gets the same cycle};\n\\end{tikzpicture}\n$$\n\nThe numbers are illustrative; the structure is not. Two consequences matter. First,\n**every instruction pays the worst-case time**: a `nop` finishes its \"work\" almost\ninstantly and then idles for the rest of the cycle, because the clock serves the\nslowest customer. Second, the path runs through **two memory accesses in series**\n(instruction fetch, then data access) plus the register file and ALU between them —\nwhich is most of the reason SEQ's clock must be slow. Cutting this chain into pieces\nthat run concurrently is the job of\n[pipelining](\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe), and the\nsix-band drawing above is already the blueprint for those pipeline stages.\n\nPut numbers to it to see what the single-cycle rule costs. With the illustrative\ndelays above — 90, 60, 80, 120, 20 ps — a `ret` needs\n$90 + 60 + 80 + 120 + 20 = 370$ ps of settling; add $t_\\text{setup} = 20$ ps and\n$T_\\text{clk} \\ge 390$ ps, an $f_\\text{max} \\approx 2.56$ GHz ceiling. But `addq`\nstops at the ALU: its longest path skips data memory, giving\n$t_\\text{addq} = 90 + 60 + 80 + 20 = 250$ ps, a would-be 4 GHz. SEQ does not allow\nit: one clock serves every instruction, so `addq` runs at 390 ps and idles the slack\n$390 - 250 = 140$ ps every cycle. A program that is mostly arithmetic pays the memory\ninstructions' worst-case time on every single cycle. This is the concrete, measurable\ncost of \"one cycle per instruction, sized for the worst instruction,\" and it is the\nmotivation for everything that comes after SEQ.\n\n## Walking an OPq through SEQ\n\nTake a concrete `OPq`: `subq %rdx, %rbx`, computing $R[\\texttt{\\%rbx}] \\leftarrow\nR[\\texttt{\\%rbx}] - R[\\texttt{\\%rdx}]$. Follow it up the bands.\n\n- **Fetch** reads two bytes at the PC: `61 23`. `icode:ifun = 6:1` (`OPq`, `subq`);\n  the register byte is `rA:rB = 2:3` (`%rdx`:`%rbx`). `valP = PC + 2`.\n- **Decode** sets `srcA = rA = %rdx` and `srcB = rB = %rbx`, reading\n  `valA = R[%rdx]` and `valB = R[%rbx]`. `dstE = rB = %rbx`; `dstM = RNONE`.\n- **Execute** sends `valA` to `aluA` and `valB` to `aluB`, with `alufun = ifun =\n  subq`, so `valE = valB - valA`. Because `icode == IOPQ`, `set_cc` is true and the\n  ALU flags will latch into `ZF`\u002F`SF`\u002F`OF` at the edge.\n- **Memory** does nothing: `mem_read` and `mem_write` are both false for `OPq`.\n- **Write-back** commits `valE` into `dstE = %rbx` through the `E` port; the `M`\n  port is idle (`dstM = RNONE`).\n- **PC update** finds `icode` is not call, jump, or ret, so `newPC = valP`, and `PC`\n  advances to the next instruction.\n\nEvery band did exactly what its row in the OPq stage table promised, and the only\nmuxes that mattered were `aluA`\u002F`aluB` (picking the register values) and `New PC`\n(picking `valP`).\n\n$$\n% caption: Signal flow for subq %rdx,%rbx through SEQ. The live values on the key\n% caption: wires: Fetch yields icode 6:1 and rA:rB 2:3; Decode reads valA,valB; the\n% caption: ALU subtracts and sets CC; Write-back stores valE into %rbx; PC takes valP.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  s\u002F.style={draw, fill=acc!8, minimum width=40mm, minimum height=9mm, align=center}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[s] (f) at (0,0)    {Fetch};\n  \\node[s] (d) at (0,-1.5) {Decode};\n  \\node[s] (e) at (0,-3.0) {Execute};\n  \\node[s] (w) at (0,-4.5) {Write-back};\n  \\node[s] (p) at (0,-6.0) {PC update};\n  \\foreach \\a\u002F\\b in {f\u002Fd, d\u002Fe, e\u002Fw, w\u002Fp} \\draw[->] (\\a.south) -- (\\b.north);\n  \\node[anchor=west, text=acc] at (2.6,0)    {$\\mathtt{icode{:}ifun}=6{:}1$, $\\mathtt{rA{:}rB}=2{:}3$};\n  \\node[anchor=west, text=acc] at (2.6,-1.5) {$\\mathtt{valA}=R[\\mathtt{\\%rdx}]$, $\\mathtt{valB}=R[\\mathtt{\\%rbx}]$};\n  \\node[anchor=west, text=acc] at (2.6,-3.0) {$\\mathtt{valE}=\\mathtt{valB}$ - $\\mathtt{valA}$; set CC};\n  \\node[anchor=west, text=acc] at (2.6,-4.5) {$R[\\mathtt{\\%rbx}] = \\mathtt{valE}$};\n  \\node[anchor=west, text=acc] at (2.6,-6.0) {$\\mathtt{PC} = \\mathtt{valP}$};\n\\end{tikzpicture}\n$$\n\n## Walking a ret through SEQ\n\n`ret` exercises the parts `OPq` left idle: the stack, the memory read port, and the\ninteresting input to the New-PC mux. Its one byte is `90`.\n\n- **Fetch** reads `90`: `icode:ifun = 9:0`. There is no register byte and no constant,\n  so `valP = PC + 1`.\n- **Decode** has no `rA`\u002F`rB`, but the control logic sets `srcA = %rsp` and `srcB =\n  %rsp` for `ret`, so both `valA` and `valB` read the stack pointer. `dstE = %rsp`;\n  `dstM = RNONE`.\n- **Execute** picks `aluA = +8` and `aluB = valB`, with `alufun = ADD`, so `valE =\n  R[%rsp] + 8`, the incremented stack pointer. `set_cc` is false; the flags are\n  untouched.\n- **Memory** has `mem_read` true with `mem_addr = valA = R[%rsp]` — the **old** stack\n  top — so `valM = M[R[%rsp]]`, the return address.\n- **Write-back** commits `valE` (the incremented pointer) into `dstE = %rsp`. `dstM`\n  is `RNONE`, so the loaded `valM` is **not** written to any register; it is bound\n  for the PC instead.\n- **PC update** finds `icode == IRET`, so `newPC = valM`. The processor jumps to the\n  return address, and `%rsp` has moved up by 8.\n\nThe decisive wire is the one carrying `valM` past Write-back and into the New-PC mux:\nthat single connection, selected only when `icode == IRET`, is what makes `ret` a\ncontrol transfer rather than a load. Contrast `popq`, which routes the very same\n`valM` into a register (`dstM = rA`) and lets `newPC` fall through to `valP`. Same\nmemory read, different destination — and the difference is one mux input.\n\n## SEQ+ and the road to the pipeline\n\nThe SEQ we just assembled computes `newPC` at the very _end_ of the cycle, at the top\nof the drawing, and loops it all the way back down to the PC register. That long\nfeedback wire is harmless in a single-cycle machine, but it is precisely the wrong\nshape for pipelining, where each stage must begin and end at a clean register\nboundary. CS:APP's next step, **SEQ+** (Bryant & O'Hallaron, _CS:APP_ §4.5.1), fixes\nthis with a small rearrangement: move the PC computation to the _start_ of the cycle,\nso the machine computes the address of the instruction it is _about to run_ from\nsignals it saved on the previous cycle.\n\n$$\n% caption: SEQ computes newPC at the end of the cycle from this instruction's signals\n% caption: (top). SEQ+ saves those signals in small registers (pIcode, pValC, ...) and\n% caption: computes the current PC at the start of the next cycle from them (bottom) --\n% caption: the same logic, relocated. This is circuit retiming.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  u\u002F.style={draw, fill=acc!8, align=center, inner sep=2pt, minimum height=8mm},\n  wl\u002F.style={font=\\scriptsize}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % SEQ row\n  \\node[wl, anchor=east, text=acc] at (-0.4,0) {SEQ};\n  \\node[u, minimum width=22mm] (s1) at (1.6,0) {this instr:\\\\icode, valC, valM};\n  \\node[u, minimum width=18mm] (s2) at (5.2,0) {new-PC\\\\logic};\n  \\node[u, minimum width=14mm] (s3) at (8.2,0) {PC\\\\register};\n  \\draw[->] (s1.east) -- (s2.west);\n  \\draw[->] (s2.east) -- (s3.west) node[wl,midway,above]{newPC};\n  \\node[wl, anchor=west] at (9.2,0) {(end of cycle)};\n  % SEQ+ row\n  \\node[wl, anchor=east, text=acc] at (-0.4,-2.2) {SEQ$+$};\n  \\node[u, minimum width=22mm] (p1) at (1.6,-2.2) {saved regs:\\\\pIcode, pValC, ...};\n  \\node[u, minimum width=18mm] (p2) at (5.2,-2.2) {PC-select\\\\logic};\n  \\node[u, minimum width=14mm] (p3) at (8.2,-2.2) {PC\\\\(current)};\n  \\draw[->] (p1.east) -- (p2.west);\n  \\draw[->] (p2.east) -- (p3.west) node[wl,midway,above]{PC};\n  \\node[wl, anchor=west] at (9.2,-2.2) {(start of cycle)};\n\\end{tikzpicture}\n$$\n\nWhat SEQ+ does _not_ have is a program-counter register. The PC is\nreconstructed each cycle from the saved control signals `pIcode`, `pValC`, `pValM`, and\nso on. CS:APP names this move **circuit retiming** (Leiserson & Saxe, 1991) — a\ntransformation that relocates state across combinational logic without changing what\nthe circuit computes, used here to balance stage delays. It rests on a principle\nworth stating plainly: a processor may represent its state in any form, as long\nas it produces the correct programmer-visible values for any program. SEQ+ exploits\nthis in a small way (no PC register); the pipelined PIPE design exploits it heavily,\nand out-of-order cores take it to the extreme of running instructions in an order\nentirely unlike the program's (CS:APP §5.7). SEQ+ is the single, cheap step that turns\nSEQ's stage bands into pipeline stages: insert a register between each band and several\ninstructions can occupy the machine at once, which is where the\n[pipelining module](\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe) begins.\n\n> **Takeaway.** SEQ is the functional units of digital logic plus the control signals\n> of the last lesson, wired as six bands from Fetch at the bottom to PC update at the\n> top, with bypass lanes up the right margin and write-back and `newPC` looping down\n> the left. Its timing is a two-beat rhythm — combinational logic settles during the\n> cycle, then PC, CC, registers, and memory commit together at the rising edge — made\n> consistent by the no-reading-back principle. The clock period is the critical\n> path: for a `ret`, instruction memory, register file, ALU, data memory, and the\n> New-PC mux in series, and every instruction pays that worst-case time.\n\nThe datapath is assembled, timed, and demonstrably correct on two instructions. The\n[final lesson](\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program) runs whole\nprograms through it, cycle by cycle, and watches real machine state evolve.\n",{"text":2487,"minutes":2488,"time":2489,"words":2490},"10 min read",9.05,543000,1810,{"title":157,"description":2478},[2493,2496],{"book":2494,"ref":2495},"Bryant & O'Hallaron","CS:APP — §4.3 Sequential Y86-64 Implementations",{"book":2497,"ref":2498},"Bistriceanu","Computer Architecture Notes — §5 CPU Implementation (Executing an instruction; Hardwired control)","available","03.computer-architecture\u002F04.processor-design\u002F04.assembling-seq",[138],"_HRerQ5Y3pVxLwu19vwyaTrodtwBva7LoEsJB01w54Y",{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":2504,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":2505,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":2506,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":2507,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":2508,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":2509,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":2510,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":2511,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":2512,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":2513,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":2514,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":2515,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":2516,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":2517,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":2518,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":2519,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":2520,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":2521,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":2522,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":2523,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":2524,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":2525,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":2526,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":2527,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":2528,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":2529,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":2530,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":2531,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":2532,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":2533,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":2534,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":2535,"\u002Falgorithms\u002Fsequences\u002Ftries":2536,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":2537,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":2538,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":2539,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":2540,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":2541,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":2542,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":2543,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":2544,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":2545,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":2546,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":2547,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":2548,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":2549,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":2550,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":2551,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":2552,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":2553,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":2554,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":2555,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":2556,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":2557,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":2558,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":2559,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":2560,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":2561,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":2562,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":2563,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":2564,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":2565,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":2566,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":2567,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":2568,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":2569,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":2570,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":2571,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":2572,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":2573,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":2574,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":2575,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":2576,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":2577,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":2578,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":2579,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":2580,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":2581,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":2582,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":2583,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":2584,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":2585,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":2586,"\u002Falgorithms":2587,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":2588,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":2589,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":2590,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":2591,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":2592,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":2593,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":2594,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":2595,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":2596,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":2597,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":2598,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":2599,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":2600,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":2601,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":2602,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":2603,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":2604,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":2605,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":2606,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":2607,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":2608,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":2609,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":2610,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":2611,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":2612,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":2613,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":2614,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":2615,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":2616,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":2617,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":2618,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":2619,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":2620,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":2621,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":2602,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":2622,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":2623,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":2624,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":2592,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":2625,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":2626,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":2627,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":2628,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":2629,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":2630,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":2631,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":2632,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":2633,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":2634,"\u002Fcalculus":2635,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":2636,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":2637,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":2638,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":2639,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":2640,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":2641,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":2642,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":2643,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":2644,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":2645,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":2646,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":2647,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":2648,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":2649,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":2650,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":2651,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":2652,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":2653,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":2654,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":2655,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":2656,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":2657,"\u002Fmechanics\u002Frotation\u002Frolling-motion":2658,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":2659,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":2660,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":2661,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":2662,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":2663,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":2664,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":2665,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":2666,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":2667,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":2668,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":2669,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":2670,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":2671,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":2672,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":2673,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":2674,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":2675,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":2676,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":2677,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":2678,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":2679,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":2680,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":2681,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":2682,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":2683,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":2684,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":2685,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":2686,"\u002Fmechanics":2687,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":2688,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":2689,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":2690,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":2691,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":2692,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":2693,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":2694,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":2695,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":2696,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":2697,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":2698,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":2699,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":2676,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":2700,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":2701,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":2702,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":2672,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":2537,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":2703,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":2663,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":2704,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":2705,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":2706,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":2707,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":2708,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":2709,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":2710,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":2711,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":2712,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":2637,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":2713,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":2714,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":2715,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":2716,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":2717,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":2718,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":2719,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":2720,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":2655,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":2654,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":2721,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":2722,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":2723,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":2724,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":2725,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":2726,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":2727,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":2728,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":2729,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":2681,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":2679,"\u002Felectricity-and-magnetism":2730,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":2731,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":2732,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":2733,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":2734,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":2735,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":2736,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":2737,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":2738,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":2739,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":2589,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":2740,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":2741,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":2593,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":2742,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":2743,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":2744,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":2745,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":2746,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":2747,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":2748,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":2749,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":2750,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":2751,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":2752,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":2753,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":2754,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":2755,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":2756,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":2757,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":2758,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":2759,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":2760,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":2761,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":2628,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":2762,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":2763,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":2764,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":2765,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":2766,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":2767,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":2768,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":2769,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":2770,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":2771,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":2772,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":2773,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":2774,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":2775,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":2776,"\u002Flinear-algebra":2777,"\u002Ftheory-of-computation":2778,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":2779,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":2780,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":2781,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":2782,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":2783,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":2784,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":2785,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":2786,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":2787,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":2788,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":2789,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":2790,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":2791,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":2792,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":2793,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":2794,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":2795,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":2796,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":2797,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":2798,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":2799,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":2800,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":2801,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":2802,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":2803,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":2490,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":2804,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":2805,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":2806,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":2807,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":2808,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":2809,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":2810,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":2811,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":2812,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":2813,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":2814,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":2815,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":2816,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":2817,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":2818,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":2819,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":2820,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":2821,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":2822,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":2823,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":2824,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":2825,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":2826,"\u002Fcomputer-architecture":2778,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":2827,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":2828,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":2829,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":2593,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":2830,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":2592,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":2599,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":2831,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":2832,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":2633,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":2833,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":2834,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":2835,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":2836,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":2837,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":2838,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":2839,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":2840,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":2841,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":2842,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":2843,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":2844,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":2839,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":2845,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":2846,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":2847,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":2848,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":2849,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":2850,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":2851,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":2852,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":2853,"\u002Fdifferential-equations":2854,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":2855,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":2856,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":2857,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":2858,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":2738,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":2859,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":2860,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":2861,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":2862,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":2863,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":2864,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":2608,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":2865,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":2866,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":2867,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":2868,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":2869,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":2870,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":2871,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":2872,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":2873,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":2874,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":2829,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":2875,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":2876,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":2877,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":2878,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":2879,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":2759,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":2880,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":2881,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":2769,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":2882,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":2883,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":2884,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":2885,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":2886,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":2887,"\u002Frelativity":2888,"\u002Fphysical-computing":2778,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":2889,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":2868,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":2890,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":2891,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":2892,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":2893,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":2894,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":2895,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":2896,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":2844,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":2769,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":2897,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":2898,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":2899,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":2900,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":2896,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":2901,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":2876,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":2630,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":2902,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":2903,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":2610,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":2904,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":2905,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":2906,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":2907,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":2908,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":2909,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":2910,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":2911,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":2912,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":2868,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":2913,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":2914,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":2915,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":2902,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":2591,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":2916,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":2917,"\u002Fquantum-mechanics":2918,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":2852,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":2919,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":2920,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":2742,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":2921,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":2628,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":2922,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":2923,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":2765,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":2874,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":2924,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":2925,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":2926,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":2927,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":2928,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":2901,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":2929,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":2735,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":2930,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":2931,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":2589,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":2932,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":2933,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":2890,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":2618,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":2769,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":2934,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":2935,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":2754,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":2878,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":2936,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":2937,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":2938,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":2774,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":2939,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":2940,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":2941,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":2941,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":2942,"\u002Freal-analysis":2943,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":2944,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":2945,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":2946,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":2947,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":2948,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":2949,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":2950,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":2951,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":2952,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":2953,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":2917,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":2954,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":2946,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":2863,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":2955,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":2956,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":2957,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":2958,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":2959,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":2960,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":2961,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":2962,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":2956,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":2963,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":2932,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":2964,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":2965,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":2966,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":2967,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":2968,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":2969,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":2970,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":2971,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":2972,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":2973,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":2607,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":2974,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":2975,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":2848,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":2976,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":2977,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":2905,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":2977,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":2978,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":2979,"\u002Fabstract-algebra":2980,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":2981,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":2982,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":2983,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":2984,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":2985,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":2897,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":2986,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":2987,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":2988,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":2989,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":2990,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":2991,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":2992,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":2732,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":2860,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":2607,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":2993,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":2591,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":2994,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":2995,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":2629,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":2922,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":2996,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":2997,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":2998,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":2999,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":3000,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":3001,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":3002,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":3003,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":3004,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":3005,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":3006,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":3007,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":3008,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":3009,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":2953,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":3010,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":3011,"\u002Fatomic-physics":3012,"\u002Fdatabases":2778,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":3013,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":3014,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":3015,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":2944,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":3016,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":3017,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":3018,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":3019,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":3020,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":3021,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":3022,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":3023,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":3024,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":3025,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":3026,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":3027,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":3028,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":3029,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":3030,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":3031,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":3032,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":3033,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":3034,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":3035,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":3026,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":3036,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":3037,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":3038,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":3039,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":3040,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":2985,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":3041,"\u002Fcategory-theory":3042,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":3043,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":3044,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":3045,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":3046,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":3047,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":3048,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":3007,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":3049,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":3050,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":3051,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":3052,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":3053,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":3054,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":3055,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":3056,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":3057,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":3058,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":3059,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":3060,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":3061,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":3062,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":3063,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":3064,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":3065,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":3066,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":3067,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":3068,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":3069,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":3070,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":3071,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":3072,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":3073,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":3074,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":3075,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":3019,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":3076,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":3077,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":3078,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":3079,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":3080,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":3081,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":3082,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":2572,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":3083,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":3084,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":2807,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":3085,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":3086,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":3087,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":3088,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":3089,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":3090,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":3091,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":3092,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":3093,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":3094,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":3095,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":3096,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":2781,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":3097,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":3098,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":3099,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":3100,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":2817,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":3101,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":3102,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":3103,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":3104,"\u002Fdeep-learning":2778,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":3105,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":2902,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":3106,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":3107,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":3108,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":3109,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":3110,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":3111,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":3112,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":3113,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":2949,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":3114,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":3115,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":3116,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":2836,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":2630,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":3117,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":3118,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":3119,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":2764,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":3120,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":3121,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":2841,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":2769,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":3122,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":2738,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":2608,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":2624,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":3123,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":3124,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":3125,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":2756,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":3126,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":2618,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":3127,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":3128,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":3129,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":3130,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":2951,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":3131,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":3132,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":3133,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":3134,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":2897,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":3135,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":2875,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":3136,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":2737,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":3137,"\u002Fstatistical-mechanics":3138,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":3139,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":2603,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":2862,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":3140,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":3141,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":3142,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":3143,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":3144,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":3145,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":2736,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":3146,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":3147,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":3148,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":3149,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":2878,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":3150,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":3151,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":3152,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":3153,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":3154,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":2933,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":2877,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":3155,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":3156,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":3157,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":3158,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":2868,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":3159,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":3160,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":3105,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":3005,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":2733,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":3161,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":2599,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":3162,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":3163,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":2744,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":3164,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":2998,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":3165,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":2591,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":3166,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":2602,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":3167,"\u002Fcondensed-matter":2918,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":3168,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":3169,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":3170,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":3171,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":2616,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":3172,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":3173,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":2616,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":3174,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":3028,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":3175,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":3176,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":3177,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":3175,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":3178,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":3179,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":3180,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":3181,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":3182,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":3183,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":3184,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":3185,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":3106,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":3186,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":3179,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":3187,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":3188,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":2821,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":3189,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":3006,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":3190,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":3191,"\u002Flogic":3192,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":3193,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":3194,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":2807,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":3195,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":3196,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":3197,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":3198,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":3188,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":3199,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":3200,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":3201,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":3099,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":3202,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":3203,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":3204,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":3205,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":3206,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":2824,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":3207,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":3208,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":3209,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":3210,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":3015,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":3211,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":3187,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":3212,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":3213,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":3214,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":2835,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":3215,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":2965,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":3216,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":3217,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":2798,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":3218,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":3219,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":3220,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":3221,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":3222,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":3075,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":3223,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":3224,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":3225,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":3110,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":3226,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":3227,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":3228,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":2824,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":2891,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":3229,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":3230,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":3231,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":3232,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":3233,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":3234,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":3235,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":3236,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":3237,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":3238,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":3239,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":3240,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":3241,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":3242,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":3243,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":3244,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":3245,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":3246,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":3247,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":3248,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":3249,"\u002Freinforcement-learning":2778,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":3250,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":3251,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":3252,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":3253,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":3254,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":3255,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":3256,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":3257,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":3258,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":3259,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":3260,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":3261,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":3262,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":3104,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":2959,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":3263,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":3264,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":3265,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":3266,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":3267,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":3268,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":3086,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":3269,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":3270,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":3271,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":3272,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":3273,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":3274,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":3275,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":3276,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":3277,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":3278,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":3279,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":3280,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":3018,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":3270,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":3281,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":2559,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":3282,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":3283,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":3284,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":3285,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":3286,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":3067,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":3287,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":3288,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":3289,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":3290,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":3291,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":3292,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":3293,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":3294,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":3295,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":3296,"\u002Fartificial-intelligence":2778,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":3034,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":3297,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":2595,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":2593,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":3128,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":3298,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":2621,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":2930,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":3299,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":3300,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":3301,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":2990,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":3302,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":3303,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":3304,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":3189,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":3305,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":3306,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":2605,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":2833,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":3307,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":2934,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":3308,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":3309,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":2829,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":2917,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":3310,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":3311,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":3312,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":2600,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":2974,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":2836,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":3313,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":2884,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":2948,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":3314,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":3315,"\u002Fnuclear-physics":3316,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":3317,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":3318,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":2955,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":3319,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":3320,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":3321,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":2490,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":3322,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":3323,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":3100,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":3324,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":3269,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":3325,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":3326,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":3327,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":3328,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":3329,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":3330,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":3331,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":2782,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":3332,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":3333,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":3275,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":3334,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":3335,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":3336,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":3337,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":3338,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":3339,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":3340,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":3341,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":3199,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":3342,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":3343,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":3344,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":3345,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":3346,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":3347,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":3348,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":3349,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":3350,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":3351,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":3352,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":3353,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":3053,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":3220,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":2809,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":3354,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":3355,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":3356,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":3357,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":3067,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":3358,"\u002Fnatural-language-processing":2778,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":3359,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":2975,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":3360,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":3120,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":3361,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":3362,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":3310,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":3363,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":3364,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":2925,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":2628,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":3365,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":2879,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":3366,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":2912,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":3367,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":3166,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":3368,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":3369,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":3135,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":3370,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":2599,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":3371,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":3372,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":3373,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":2916,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":3132,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":3374,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":3375,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":2991,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":3376,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":3036,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":3377,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":3378,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":2925,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":2958,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":3379,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":3380,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":3381,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":3014,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":3382,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":2756,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":3383,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":2858,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":3384,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":3385,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":3182,"\u002Fparticle-physics":3386,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":2976,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":3130,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":3387,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":2915,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":3388,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":2975,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":2887,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":3389,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":3390,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":3391,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":3392,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":3393,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":3181,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":3112,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":3394,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":3395,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":3396,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":3397,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":3309,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":3398,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":2871,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":2934,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":2916,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":3399,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":3000,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":2617,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":3400,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":3401,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":3131,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":3402,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":3403,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":3404,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":3405,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":2598,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":3406,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":3407,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":2858,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":3408,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":3409,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":3124,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":2780,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":3410,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":3411,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":3036,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":3022,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":3034,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":3131,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":3412,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":2597,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":2789,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":3413,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":2875,"\u002Fastrophysics-cosmology":2980,"\u002Fcolophon":3414,"\u002F":2778},4250,4808,3626,2682,4109,4786,3878,3875,3751,3415,4067,3153,3000,4042,5461,5808,3961,3749,4327,5067,4246,4655,4154,5436,2640,4003,3601,2158,4331,4189,2273,3252,4633,4964,4172,3131,5524,3160,4031,2309,4207,3226,2648,4842,5340,3307,5701,4977,4039,2615,3472,4460,3848,4075,4400,3382,3010,3602,3737,3740,3707,3922,5191,4043,3804,4542,4214,5062,2850,4361,3443,3627,4044,3766,4140,3860,4006,5199,4334,5234,3651,5509,5680,153,1375,1073,1093,1125,1146,1014,1132,876,1541,1189,1173,984,1402,1301,950,1268,1063,1107,1408,1161,925,1012,866,964,1090,1142,1085,1020,1207,973,980,728,764,1225,1329,796,929,801,878,774,1044,1488,1175,1130,890,814,870,154,4073,5140,4961,5127,4870,5382,5195,4955,5369,4501,5576,3824,4132,4289,4307,4570,3403,5084,5105,5201,5116,5341,5175,5368,5188,5211,5499,5155,4981,5125,5415,5255,5304,5130,5167,5552,5164,5094,5239,5036,5190,5004,5099,5035,5159,5088,5026,4937,5023,5264,5244,133,5114,5078,5043,5312,5170,5342,5139,5151,5049,5212,5013,5068,5079,5102,5121,5081,5029,5379,5854,5110,2139,3798,5055,5364,4984,4935,4895,4972,5289,5112,5156,4987,5031,5025,5149,5302,5042,5002,4979,4922,4960,5279,126,1877,1180,1129,907,958,1112,1300,1053,1250,1181,1241,1234,966,1050,734,1190,484,1082,926,733,761,571,607,798,804,952,977,731,784,645,771,1017,742,1004,1000,1562,1254,1288,1101,1011,1486,1061,856,992,1169,988,137,0,2037,1782,2384,2254,2123,2332,1643,1714,2089,1751,1367,1660,2511,1998,1892,1854,1791,2438,2487,1917,2375,2525,2266,1845,2275,1631,2310,2166,2233,2113,2505,2347,2672,2112,2473,2592,2380,3013,2513,3256,3218,2194,2173,2205,2326,2081,3342,3152,1799,1670,1027,960,1095,1291,986,897,1209,1055,1817,1801,1593,1465,1196,1464,1201,1230,1435,1684,1461,1926,1500,1409,1284,1774,1869,162,1487,1122,1188,1001,1351,982,1005,979,1325,1046,943,1279,824,1008,989,1798,1277,1025,987,1043,1211,1074,981,939,1002,739,1139,1108,1013,1070,978,1458,1317,157,1357,1077,2355,1116,1037,1178,1637,1314,1109,1056,1702,1474,1071,1158,832,993,1404,1024,1068,1339,1106,1264,1248,913,1848,1328,1633,1224,1143,135,1378,959,1028,998,911,1527,1203,1266,1483,1165,990,938,965,1257,1418,1099,942,1352,956,1035,1398,1003,1094,1292,138,1721,1827,1449,1354,1148,1184,1285,1281,1213,1290,1271,1252,1274,1778,1591,1503,1437,1571,1584,1957,1117,1781,1648,1342,1667,1510,1965,1607,1365,1849,1259,1303,1356,1238,2208,1564,173,1671,1286,1227,1638,1529,668,1078,918,709,865,880,940,1534,1015,874,922,841,794,1194,822,1105,1658,1359,1296,1438,1921,1844,1570,1429,1324,1400,140,1787,1558,1654,1492,1747,2224,2002,2009,1323,1349,1785,1573,1722,1829,1353,1548,1552,1583,1624,1585,1245,1364,1514,1343,1397,1355,2211,1481,1770,160,2388,2293,2256,2552,2569,2478,2039,2496,2578,2814,2519,2461,2587,2492,2714,3278,2654,3050,2447,2849,2238,2369,2061,2214,2602,2563,2186,2985,2749,3364,2038,2282,2409,2126,2573,2206,2176,2268,2182,2402,2705,2633,2414,2213,2801,3313,3410,3195,1952,2017,1509,2537,2645,2027,2415,2838,2356,1906,3184,2950,2807,2954,1683,1316,1034,1138,1763,1822,1705,1246,1701,1097,1104,1187,1032,1083,1228,916,1489,1033,1652,997,692,837,1023,888,864,1089,1231,1214,1675,1156,1075,1520,1309,139,1205,1051,735,1123,1072,915,567,768,825,1253,983,1007,762,1058,861,862,971,1208,1149,1145,1029,1084,927,810,838,857,807,936,949,2321,1622,1069,1113,1057,854,1958,1528,1618,2049,1432,1679,1796,1685,1346,1275,1476,1505,1610,2018,1599,1215,1838,1909,132,3902,2215,2240,3266,3208,3073,2454,2969,2451,1875,2728,1884,2371,2516,2842,1690,1904,2346,3146,1386,2607,1966,2668,1665,2885,1606,2577,3074,2869,2403,2433,2082,1939,1587,2460,2747,2032,2642,1619,3123,1993,2090,2339,3829,1737,2622,2340,2322,3828,4409,2305,3411,2510,4527,3030,3569,3043,2457,1946,2277,2044,2909,1693,1945,2093,2399,2115,2898,2742,2242,3895,3378,3376,2769,2223,3062,3262,2651,2949,2768,3128,2423,1977,2087,2866,3388,2830,2210,2489,2884,3945,2099,2713,3402,1692,2931,4195,3989,3206,4391,3004,3704,3494,2902,999,881,901,919,748,869,1018,1045,1049,1333,954,1092,1019,976,1771,1480,1396,953,1026,161,3533,2495,1818,3007,2595,3427,3537,2216,1895,2304,3396,1739,2073,1962,2203,1767,2666,2264,2276,2852,1807,3735,1560,4144,1669,1676,1972,2418,3291,1525,2040,2766,2337,2220,2800,3001,2078,1759,2836,1896,2026,1758,1543,1047,896,946,1060,1384,1482,815,1414,1322,1440,1240,1468,1098,1133,847,1009,1381,1052,1191,1258,1370,1712,1441,1199,957,1079,150,1262,1417,1368,1219,1136,1064,1463,1636,1059,931,1115,1736,1174,1376,1363,1411,1247,1746,1313,1299,1617,1102,1076,1495,1265,1193,1263,80,{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":3416,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":3420,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":3424,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":3428,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":3432,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":3436,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":3440,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":3445,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":3449,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":3453,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":3457,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":3462,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":3466,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":3470,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":3474,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":3479,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":3483,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":3487,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":3491,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":3495,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":3499,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":3503,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":3507,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":3511,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":3515,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":3519,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":3523,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":3528,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":3532,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":3536,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":3540,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":3544,"\u002Falgorithms\u002Fsequences\u002Ftries":3548,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":3552,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":3556,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":3561,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":3565,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":3569,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":3573,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":3577,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":3581,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":3585,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":3589,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":3593,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":3597,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":3601,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":3605,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":3609,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":3613,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":3618,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":3622,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":3626,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":3630,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":3634,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":3639,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":3643,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":3647,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":3651,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":3655,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":3659,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":3663,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":3667,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":3671,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":3675,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":3679,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":3684,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":3688,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":3692,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":3696,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":3701,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":3705,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":3709,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":3713,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":3717,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":3721,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":3725,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":3730,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":3734,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":3738,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":3742,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":3747,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":3751,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":3755,"\u002Falgorithms":3759,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":3762,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":3767,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":3771,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":3775,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":3779,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":3784,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":3788,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":3792,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":3796,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":3801,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":3805,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":3809,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":3813,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":3818,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":3822,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":3826,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":3831,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":3835,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":3839,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":3844,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":3848,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":3852,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":3857,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":3861,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":3865,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":3869,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":3874,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":3878,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":3882,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":3887,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":3891,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":3895,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":3899,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":3903,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":3908,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":3912,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":3916,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":3920,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":3924,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":3929,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":3932,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":3936,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":3940,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":3944,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":3949,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":3953,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":3957,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":3961,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":3965,"\u002Fcalculus":3969,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":3972,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":3976,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":3980,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":3985,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":3989,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":3993,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":3997,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":4001,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":4006,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":4010,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":4014,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":4018,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":4022,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":4027,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":4031,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":4035,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":4039,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":4043,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":4048,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":4052,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":4056,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":4061,"\u002Fmechanics\u002Frotation\u002Frolling-motion":4065,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":4069,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":4073,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":4077,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":4081,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":4086,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":4090,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":4094,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":4098,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":4102,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":4106,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":4110,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":4115,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":4119,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":4123,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":4127,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":4131,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":4135,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":4139,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":4143,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":4147,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":4151,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":4155,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":4159,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":4164,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":4168,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":4172,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":4176,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":4180,"\u002Fmechanics":4184,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":4187,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":4192,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":4196,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":4200,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":4204,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":4208,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":4213,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":4217,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":4222,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":4226,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":4230,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":4234,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":4238,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":4243,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":4247,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":4251,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":4255,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":4260,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":4264,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":4268,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":4273,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":4277,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":4281,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":4285,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":4289,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":4294,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":4298,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":4302,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":4306,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":4310,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":4314,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":4319,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":4323,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":4327,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":4331,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":4335,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":4339,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":4343,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":4347,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":4352,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":4356,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":4360,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":4364,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":4368,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":4373,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":4377,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":4381,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":4385,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":4389,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":4394,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":4398,"\u002Felectricity-and-magnetism":4402,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":4405,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":4410,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":4414,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":4418,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":4422,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":4426,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":4431,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":4435,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":4439,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":4443,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":4447,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":4452,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":4456,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":4460,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":4465,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":4469,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":4473,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":4477,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":4481,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":4485,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":4489,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":4494,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":4498,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":4502,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":4506,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":4510,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":4514,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":4518,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":4523,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":4527,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":4531,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":4535,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":4539,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":4543,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":4548,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":4552,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":4556,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":4560,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":4564,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":4569,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":4573,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":4577,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":4581,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":4585,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":4589,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":4594,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":4598,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":4602,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":4606,"\u002Flinear-algebra":4610,"\u002Ftheory-of-computation":4613,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":4616,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":4617,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":4618,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":4619,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":4620,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":4621,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":4622,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":4623,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":4624,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":4625,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":4626,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":4627,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":4628,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":4629,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":4630,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":4631,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":4632,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":4633,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":4634,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":4635,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":4636,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":4637,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":4638,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":4639,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":4640,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":4641,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":4642,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":4643,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":4644,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":4645,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":4646,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":4647,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":4648,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":4649,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":4650,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":4651,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":4652,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":4653,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":4654,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":4655,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":4656,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":4657,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":4658,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":4659,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":4660,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":4661,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":4662,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":4663,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":4664,"\u002Fcomputer-architecture":4665,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":4668,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":4672,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":4676,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":4681,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":4685,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":4689,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":4693,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":4697,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":4701,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":4706,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":4710,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":4714,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":4718,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":4722,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":4726,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":4731,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":4735,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":4739,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":4744,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":4748,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":4753,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":4757,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":4761,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":4766,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":4770,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":4775,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":4779,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":4783,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":4788,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":4792,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":4796,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":4801,"\u002Fdifferential-equations":4805,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":4808,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":4813,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":4817,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":4821,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":4825,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":4829,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":4834,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":4838,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":4842,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":4846,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":4851,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":4855,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":4859,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":4863,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":4868,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":4872,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":4876,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":4880,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":4885,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":4889,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":4893,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":4897,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":4901,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":4905,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":4910,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":4914,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":4918,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":4923,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":4927,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":4931,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":4935,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":4940,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":4944,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":4948,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":4953,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":4957,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":4961,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":4966,"\u002Frelativity":4970,"\u002Fphysical-computing":4973,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":4976,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":4981,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":4985,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":4989,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":4993,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":4998,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":5002,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":5006,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":5011,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":5015,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":5019,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":5023,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":5027,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":5031,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":5036,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":5040,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":5044,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":5048,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":5052,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":5056,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":5061,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":5065,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":5069,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":5073,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":5077,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":5081,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":5085,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":5090,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":5094,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":5098,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":5103,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":5107,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":5111,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":5116,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":5120,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":5125,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":5129,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":5133,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":5137,"\u002Fquantum-mechanics":5141,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":5144,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":5149,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":5153,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":5157,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":5161,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":5166,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":5170,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":5174,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":5178,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":5182,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":5186,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":5191,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":5195,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":5199,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":5203,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":5207,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":5211,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":5215,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":5219,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":5223,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":5227,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":5231,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":5236,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":5240,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":5244,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":5248,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":5253,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":5257,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":5261,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":5264,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":5268,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":5273,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":5277,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":5281,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":5285,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":5290,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":5294,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":5298,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":5302,"\u002Freal-analysis":5306,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":5309,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":5313,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":5317,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":5322,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":5326,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":5330,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":5334,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":5339,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":5343,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":5347,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":5351,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":5355,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":5359,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":5364,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":5368,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":5372,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":5376,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":5381,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":5385,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":5389,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":5393,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":5398,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":5402,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":5406,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":5411,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":5415,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":5419,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":5423,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":5428,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":5432,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":5436,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":5440,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":5445,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":5449,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":5453,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":5458,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":5462,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":5466,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":5470,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":5475,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":5479,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":5483,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":5487,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":5491,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":5496,"\u002Fabstract-algebra":5500,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":5503,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":5508,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":5512,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":5516,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":5520,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":5524,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":5529,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":5533,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":5537,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":5541,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":5545,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":5549,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":5553,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":5558,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":5562,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":5566,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":5570,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":5575,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":5579,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":5583,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":5588,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":5592,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":5596,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":5600,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":5604,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":5608,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":5613,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":5617,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":5621,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":5626,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":5630,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":5634,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":5638,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":5643,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":5647,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":5651,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":5656,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":5660,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":5664,"\u002Fatomic-physics":5668,"\u002Fdatabases":5671,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":5674,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":5678,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":5682,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":5686,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":5690,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":5694,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":5698,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":5703,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":5707,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":5711,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":5716,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":5720,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":5724,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":5729,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":5733,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":5737,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":5741,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":5745,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":5750,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":5754,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":5758,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":5762,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":5767,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":5771,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":5775,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":5779,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":5784,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":5788,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":5792,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":5796,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":5801,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":5805,"\u002Fcategory-theory":5809,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":5812,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":5816,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":5820,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":5824,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":5827,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":5831,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":5835,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":5839,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":5844,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":5848,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":5852,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":5856,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":5860,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":5865,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":5869,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":5873,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":5877,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":5881,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":5886,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":5890,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":5894,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":5898,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":5903,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":5907,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":5911,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":5915,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":5919,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":5923,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":5927,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":5931,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":5935,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":5940,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":5944,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":5948,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":5952,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":5956,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":5961,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":5965,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":5969,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":5973,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":5977,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":5981,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":5985,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":5990,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":5994,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":5998,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":6003,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":6007,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":6011,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":6015,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":6019,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":6023,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":6027,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":6032,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":6036,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":6040,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":6044,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":6048,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":6052,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":6056,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":6060,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":6064,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":6068,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":6072,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":6077,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":6081,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":6085,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":6089,"\u002Fdeep-learning":6093,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":6096,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":6100,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":6104,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":6108,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":6112,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":6116,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":6121,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":6125,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":6129,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":6133,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":6138,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":6142,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":6146,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":6150,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":6155,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":6159,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":6163,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":6167,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":6171,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":6176,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":6180,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":6184,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":6189,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":6193,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":6197,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":6202,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":6206,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":6210,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":6214,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":6219,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":6223,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":6227,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":6231,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":6235,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":6239,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":6244,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":6248,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":6252,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":6256,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":6261,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":6265,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":6269,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":6274,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":6278,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":6282,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":6286,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":6290,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":6295,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":6299,"\u002Fstatistical-mechanics":6303,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":6306,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":6311,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":6315,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":6319,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":6323,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":6328,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":6332,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":6336,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":6340,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":6345,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":6349,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":6353,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":6357,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":6362,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":6366,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":6370,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":6374,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":6379,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":6383,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":6387,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":6391,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":6396,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":6400,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":6404,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":6408,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":6413,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":6417,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":6421,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":6425,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":6429,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":6434,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":6438,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":6443,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":6447,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":6451,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":6455,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":6460,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":6464,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":6468,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":6472,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":6476,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":6481,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":6485,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":6489,"\u002Fcondensed-matter":6493,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":6496,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":6500,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":6505,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":6509,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":6513,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":6517,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":6521,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":6525,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":6529,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":6534,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":6538,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":6542,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":6546,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":6551,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":6555,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":6559,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":6563,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":6568,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":6572,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":6576,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":6580,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":6585,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":6589,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":6593,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":6597,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":6602,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":6606,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":6610,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":6615,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":6619,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":6624,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":6628,"\u002Flogic":6632,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":6635,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":6639,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":6643,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":6647,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":6651,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":6655,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":6659,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":6663,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":6667,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":6671,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":6675,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":6679,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":6683,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":6687,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":6691,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":6695,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":6699,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":6703,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":6707,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":6712,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":6716,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":6720,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":6724,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":6728,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":6732,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":6736,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":6740,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":6744,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":6748,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":6752,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":6756,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":6760,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":6764,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":6768,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":6772,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":6776,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":6780,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":6784,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":6788,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":6792,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":6796,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":6801,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":6805,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":6809,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":6813,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":6817,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":6821,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":6825,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":6829,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":6833,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":6837,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":6841,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":6845,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":6849,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":6853,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":6857,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":6861,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":6865,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":6869,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":6873,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":6877,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":6881,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":6885,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":6890,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":6894,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":6898,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":6902,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":6906,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":6910,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":6914,"\u002Freinforcement-learning":6918,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":6920,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":6924,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":6928,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":6932,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":6936,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":6941,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":6945,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":6949,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":6953,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":6957,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":6961,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":6965,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":6969,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":6973,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":6977,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":6981,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":6985,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":6990,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":6994,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":6998,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":7002,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":7006,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":7010,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":7014,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":7018,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":7022,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":7026,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":7030,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":7034,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":7039,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":7043,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":7047,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":7051,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":7055,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":7059,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":7063,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":7066,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":7070,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":7074,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":7079,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":7083,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":7087,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":7091,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":7094,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":7098,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":7102,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":7106,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":7111,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":7115,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":7119,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":7123,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":7127,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":7131,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":7135,"\u002Fartificial-intelligence":7139,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":7142,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":7147,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":7151,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":7155,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":7159,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":7163,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":7168,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":7172,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":7176,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":7180,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":7185,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":7189,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":7193,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":7197,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":7202,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":7206,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":7211,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":7215,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":7220,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":7224,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":7228,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":7232,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":7237,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":7241,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":7245,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":7250,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":7254,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":7258,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":7263,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":7267,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":7272,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":7276,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":7280,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":7285,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":7289,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":7293,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":7297,"\u002Fnuclear-physics":7301,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":7304,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":7308,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":7312,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":7316,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":7320,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":7324,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":7329,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":7333,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":7337,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":7341,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":7346,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":7350,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":7354,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":7358,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":7362,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":7366,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":7370,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":7373,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":7376,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":7380,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":7384,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":7388,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":7393,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":7397,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":7401,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":7405,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":7409,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":7413,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":7417,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":7421,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":7425,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":7429,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":7433,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":7437,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":7441,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":7445,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":7449,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":7453,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":7457,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":7461,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":7465,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":7469,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":7473,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":7477,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":7481,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":7485,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":7489,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":7493,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":7497,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":7501,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":7506,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":7510,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":7514,"\u002Fnatural-language-processing":7518,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":7521,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":7525,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":7529,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":7533,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":7538,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":7542,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":7546,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":7550,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":7555,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":7559,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":7563,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":7567,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":7572,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":7576,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":7580,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":7584,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":7589,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":7593,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":7597,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":7602,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":7606,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":7610,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":7614,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":7619,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":7623,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":7627,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":7631,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":7636,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":7640,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":7644,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":7648,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":7653,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":7657,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":7661,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":7665,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":7669,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":7674,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":7678,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":7682,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":7687,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":7691,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":7695,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":7699,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":7703,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":7707,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":7711,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":7715,"\u002Fparticle-physics":7719,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":7722,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":7727,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":7731,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":7735,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":7740,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":7744,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":7748,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":7752,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":7757,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":7761,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":7765,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":7769,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":7774,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":7778,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":7782,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":7786,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":7791,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":7795,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":7799,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":7803,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":7808,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":7812,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":7816,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":7821,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":7825,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":7829,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":7833,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":7837,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":7841,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":7845,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":7849,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":7853,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":7858,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":7862,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":7866,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":7870,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":7875,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":7879,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":7883,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":7887,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":7891,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":7896,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":7900,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":7903,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":7907,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":7911,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":7916,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":7920,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":7924,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":7928,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":7932,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":7936,"\u002Fastrophysics-cosmology":7940,"\u002Fcolophon":7943,"\u002F":7946},{"path":3417,"title":3418,"module":5,"summary":3419},"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm","What Is an Algorithm?","An algorithm is a finite, mechanical recipe that transforms inputs into outputs. We define what counts as an algorithm, how we write one down, and the three things we always ask of it: is it correct, is it fast, and can we prove it.\n",{"path":3421,"title":3422,"module":5,"summary":3423},"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques","Proof Techniques","An algorithm without a proof is a conjecture. This lesson collects the handful\nof arguments that certify the algorithms in this course — direct proof,\ncontrapositive, contradiction, ordinary and strong induction, construction, and\ndisproof by counterexample — each with a small worked\nexample and a picture. Loop invariants are a form of induction,\nrecursive correctness falls to strong induction, and the classic broken proofs\n(all horses are the same color) show where inductions go wrong.\n",{"path":3425,"title":3426,"module":5,"summary":3427},"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis","Asymptotic Analysis","We measure an algorithm's running time as a function of its input size, then strip away machine-specific constants and lower-order terms to compare algorithms cleanly. This lesson defines the RAM model and the $O$, $\\Omega$, $\\Theta$, $o$, and $\\omega$ notations, proves the polynomial theorem, and shows how to rank growth rates with the limit test, L'Hôpital, base substitution, and the logarithm identities the arguments lean on.\n",{"path":3429,"title":3430,"module":5,"summary":3431},"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis","Growth Rates and Loop Analysis","With the asymptotic notations in hand, we rank the functions that actually arise in running times — from constant to factorial — proving the orderings between rungs, then read the running time of a loop nest straight off the page. Sequential blocks add, nested loops multiply, index scaling gives logarithms; a worked trace and a tour of cache-aware and galactic algorithms close the lesson.\n",{"path":3433,"title":3434,"module":5,"summary":3435},"\u002Falgorithms\u002Ffoundations\u002Frecurrences","Recurrences and the Master Theorem","Recursive and divide-and-conquer algorithms describe their own running time with a recurrence: $T(n)$ in terms of $T$ on smaller inputs. We solve recurrences three ways — drawing the recursion tree, guessing-and-verifying by induction, and applying the Master Theorem — using merge sort as the running example, then handle unequal splits with Akra–Bazzi.\n",{"path":3437,"title":3438,"module":5,"summary":3439},"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis","Amortized Analysis","Some operations are occasionally expensive but cheap on average across any\nsequence. Amortized analysis bounds the average cost per operation over a\nworst-case sequence — not an expectation — so a rare costly step is paid for by\nthe many cheap ones around it. This lesson develops the aggregate, accounting,\nand potential methods on dynamic-array doubling, the binary counter, and a\nstack with multipop.\n",{"path":3441,"title":3442,"module":3443,"summary":3444},"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort","Divide and Conquer & Mergesort","Divide & Conquer","Divide and conquer breaks a problem into smaller copies of itself, solves\nthem recursively, and stitches the answers together. We meet the paradigm\nthrough mergesort — its merge step, its loop-invariant proof, and the\nrecursion tree that pins its cost at $\\Theta(n\\log n)$ — then count inversions\nwith the same machinery and distill the whole pattern into the master theorem.\n",{"path":3446,"title":3447,"module":3443,"summary":3448},"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort","Quicksort","Quicksort sorts in place by partitioning around a pivot and recursing on\neach side. We give Lomuto and Hoare partitioning with a correctness\ninvariant, see why a bad pivot costs $\\Theta(n^2)$ while a balanced one gives\n$\\Theta(n\\log n)$, and prove that randomizing the pivot makes the expected\ncost $\\Theta(n\\log n)$ on every input.\n",{"path":3450,"title":3451,"module":3443,"summary":3452},"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection","Linear-Time Selection","Finding the $k$-th smallest element looks like it should require sorting, but\nit does not. Quickselect adapts quicksort's partition to recurse on just one\nside, achieving expected $O(n)$. The median-of-medians algorithm guarantees a\ngood pivot with the groups-of-five trick, pushing the worst case down to a\nprovable $O(n)$.\n",{"path":3454,"title":3455,"module":3443,"summary":3456},"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication","Fast Multiplication","Grade-school multiplication is $\\Theta(n^2)$, yet divide and conquer beats it.\nKaratsuba multiplies $n$-bit integers with three half-size products instead of\nfour, giving $\\Theta(n^{\\log_2 3})$, and Strassen multiplies matrices with\nseven block products instead of eight, giving $\\Theta(n^{\\log_2 7})$. Both\nspend cheap additions to save an expensive multiplication, and the master\ntheorem quantifies the savings.\n",{"path":3458,"title":3459,"module":3460,"summary":3461},"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort","Heaps and Heapsort","Sorting & Order Statistics","A binary heap is a tree we store flat in an array, with index arithmetic\nstanding in for pointers. We build the max-heap property bottom-up in $O(n)$\ntime, sort in place in $\\Theta(n\\log n)$ by repeatedly extracting the maximum,\nand reuse the same structure to implement a priority queue.\n",{"path":3463,"title":3464,"module":3460,"summary":3465},"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds","Lower Bounds for Comparison Sorting","Every sort we have seen runs in $\\Omega(n\\log n)$, and that is no accident.\nModeling a sort as a decision tree of comparisons, we show any such tree must\nhave $n!$ leaves, forcing height $\\ge \\log_2(n!) = \\Omega(n\\log n)$ — a bound\nno comparison sort beats in the worst case, on average, or with randomness.\n",{"path":3467,"title":3468,"module":3460,"summary":3469},"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting","Sorting in Linear Time","The $\\Omega(n\\log n)$ barrier only binds algorithms that compare. By instead\nusing keys as array indices we slip past it: counting sort runs in\n$\\Theta(n+k)$ and is stable, radix sort layers it digit by digit, and bucket\nsort averages $\\Theta(n)$ on uniform data. We see exactly when each applies.\n",{"path":3471,"title":3472,"module":3460,"summary":3473},"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting","External Sorting","When the data dwarfs main memory, the cost that matters is no longer\ncomparisons but block transfers to and from disk. External merge sort sorts\nmemory-sized runs, then folds them together with a heap-driven $k$-way merge in\n$\\Theta(\\log_k(N\u002FM))$ passes. Larger fan-out cuts passes; replacement selection\nbuilds longer runs to cut them further.\n",{"path":3475,"title":3476,"module":3477,"summary":3478},"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures","Elementary Data Structures","Data Structures","Every container is built one of two ways: **contiguous** in an array, or\n**linked** through pointers. We trade cache-friendly random access against\n$O(1)$ splicing, derive the **amortized $O(1)$** append of a doubling dynamic\narray, and assemble the two ordered access disciplines — the LIFO **stack** and\nthe FIFO **queue** (with its generalization, the **deque**) — on top of both.\n",{"path":3480,"title":3481,"module":3477,"summary":3482},"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables","Hash Tables","A hash table implements the dictionary — insert, search, delete — in expected\n$O(1)$ time by scattering keys across an array with a hash function. We build\nup from direct addressing, handle collisions by chaining and by open\naddressing, analyze the load factor $\\alpha$, and see how universal hashing\nachieves its expected-time guarantee against every input.\n",{"path":3484,"title":3485,"module":3477,"summary":3486},"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees","Binary Search Trees","A binary search tree keeps keys ordered so that every operation follows a\nsingle root-to-leaf path. We state the BST property, trace search, insert,\nsuccessor, and all three delete cases on concrete trees, prove the inorder\nwalk sorts, and note the drawback — every operation costs $O(h)$, and a\ncarelessly built tree degrades to height $h = \\Theta(n)$, motivating balance.\n",{"path":3488,"title":3489,"module":3477,"summary":3490},"\u002Falgorithms\u002Fdata-structures\u002Favl-trees","AVL Trees","An AVL tree is the first balanced BST: at every node the two subtrees' heights\ndiffer by at most $1$. A Fibonacci-style minimal-node argument forces height\n$h \\le 1.44\\log_2 n = O(\\log n)$, so search, insert, and delete are all\n$O(\\log n)$. Insertion rebalances with at most one of four rotation cases\n(LL, RR, LR, RL); deletion may rotate all the way to the root.\n",{"path":3492,"title":3493,"module":3477,"summary":3494},"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees","Balanced Search Trees","An ordinary BST can degrade to height $\\Theta(n)$; balanced search trees\nguarantee $h = O(\\log n)$ by maintaining invariants and repairing them after\nevery update. We meet rotations, the local restructuring primitive, then\nred-black trees, whose color invariants force logarithmic height, and finally\nB-trees, which trade tall-and-thin for short-and-wide to win on disk.\n",{"path":3496,"title":3497,"module":3477,"summary":3498},"\u002Falgorithms\u002Fdata-structures\u002Funion-find","Disjoint Sets (Union-Find)","The disjoint-set data structure tracks a partition of elements into groups,\nanswering \"are these two in the same group?\" and merging groups on demand. A\nforest of parent pointers, sped up by union by rank and path compression,\ndrives every operation to near-constant $O(\\alpha(n))$ amortized time — the\nstructure behind connectivity queries and Kruskal's minimum spanning tree.\n",{"path":3500,"title":3501,"module":3477,"summary":3502},"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees","Fenwick & Segment Trees","A prefix-sum array answers a range sum in $O(1)$ but pays $O(n)$ per update;\na plain array updates in $O(1)$ but pays $O(n)$ per range sum. Fenwick and\nsegment trees give us _both_ in $O(\\log n)$. The Fenwick (binary indexed) tree\nis a tiny array keyed by the low bit; the segment tree is a general balanced\ntree over canonical ranges that handles any associative aggregate and, with\nlazy propagation, range updates too.\n",{"path":3504,"title":3505,"module":3477,"summary":3506},"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures","Spatial Data Structures","A balanced BST orders keys on a line, but points in the plane have no single\nnatural order. Quadtrees subdivide space recursively into quadrants; k-d trees\nsplit on alternating coordinates at the median. Both make range and\nnearest-neighbour queries fast by carving the plane into boxes a query can\nprune away. Range trees nest a y-tree in an x-tree for fast orthogonal range\nreporting; interval trees index intervals to answer stabbing queries.\n",{"path":3508,"title":3509,"module":3477,"summary":3510},"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures","Skip Lists & Probabilistic Structures","Balanced trees achieve $O(\\log n)$ with rotations and invariants; randomization\ngives the same bound far more simply. A skip list is a layered linked list whose\nexpress lanes are chosen by coin flips, giving expected $O(\\log n)$ search and\ninsert with no rebalancing. A Bloom filter trades exactness for space: a bit\narray and a few hashes answer set membership with no false negatives and a\ntunable false-positive rate, but cannot delete.\n",{"path":3512,"title":3513,"module":3477,"summary":3514},"\u002Falgorithms\u002Fdata-structures\u002Fb-trees","B-Trees","When data lives on disk, the cost that dominates is block transfers, not\ncomparisons — and a binary tree of a billion keys is thirty reads deep. A\nB-tree of minimum degree $t$ is short and wide: $t-1$ to $2t-1$ keys per node,\nall leaves at one depth, height $O(\\log_t n)$. Insertion splits a full node on\nthe way down and pushes its median up; deletion borrows or merges to keep nodes\nfull enough. High fan-out is what minimizes disk I\u002FO.\n",{"path":3516,"title":3517,"module":3477,"summary":3518},"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms","Data-Stream Algorithms","Most of this course assumes data sits in fast memory, addressable at will.\nExternal sorting relaxed that to a re-readable disk. The streaming model goes\nfurther: items arrive one at a time, are seen once, and must be discarded, with\nonly sublinear, often polylogarithmic, memory. In exchange, the answers are\napproximate and probabilistic. We set up the model, then meet reservoir\nsampling for a uniform sample of an unknown-length stream and Morris counting\nfor an approximate tally in doubly-logarithmic space.\n",{"path":3520,"title":3521,"module":3477,"summary":3522},"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches","Streaming Sketches","Sampling and counting kept a random subset or a single approximate tally.\nSketches go further: fixed, tiny summaries that answer questions about a\nstream's frequencies. We meet the Count–Min sketch for point frequency\nestimation, Misra–Gries for heavy hitters, and HyperLogLog for distinct\ncounts, each trading a controlled error for space that never grows with the\nstream.\n",{"path":3524,"title":3525,"module":3526,"summary":3527},"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows","Two Pointers & Sliding Windows","Sequences & Strings","A family of array idioms that collapse an obvious $O(n^2)$ scan into a single\n$O(n)$ pass by maintaining an invariant as indices move. We meet two pointers\n(converging on a sorted array, and a fast\u002Fslow pair for in-place rewriting)\nand the sliding window (fixed and variable size, amortized $O(n)$). The\ncompanion lesson on prefix sums picks up where the window's positivity\nassumption fails.\n",{"path":3529,"title":3530,"module":3526,"summary":3531},"\u002Falgorithms\u002Fsequences\u002Fprefix-sums","Prefix Sums & Difference Arrays","Prefix sums precompute the running total once so that any range-sum query is a\nsingle subtraction, $P[r{+}1]-P[l]$, in $O(1)$. A hash map of prefix\nfrequencies then counts subarrays summing to $k$ in $O(n)$ — even with negative\nentries, where the sliding window fails. The difference-array dual turns $m$\nrange-adds into $O(m+n)$, and the whole idea lifts to 2-D rectangle sums by\ninclusion–exclusion.\n",{"path":3533,"title":3534,"module":3526,"summary":3535},"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks","Monotonic Stacks & Queues","A **monotonic stack** keeps its contents sorted by popping every element that\nwould break the order before each push — turning a family of \"previous\u002Fnext\ngreater (or smaller) element\" questions into a single $O(n)$ scan. We trace\nthe next-greater-element routine push by push and prove its amortized bound,\nfuse two such scans to measure the **largest rectangle in a histogram** in\nlinear time, extend the idea to a **monotonic deque** that streams the\n**sliding-window maximum** in $O(n)$, and use asymmetric tie-breaking to\ncount **subarray minimums** without double-counting duplicates.\n",{"path":3537,"title":3538,"module":3526,"summary":3539},"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer","Binary Search on the Answer","Binary search locates the boundary of a **monotone predicate** $p(x)$ in\n$O(\\log(\\text{range}))$ probes; sorted arrays are only one instance. We first\nestablish the half-open `while (lo \u003C hi)` template for $\\textsc{lower\\_bound}$\nand $\\textsc{upper\\_bound}$, then generalize to \"binary search on the answer\":\nwhenever feasibility is monotone in a numeric parameter, we binary search the\nparameter itself, calling a feasibility check at each step.\n",{"path":3541,"title":3542,"module":3526,"summary":3543},"\u002Falgorithms\u002Fsequences\u002Fstring-matching","String Matching: Naive & Rabin–Karp","Given a text $T$ of length $n$ and a pattern $P$ of length $m$, find every\noccurrence of $P$ in $T$. The naive scan costs $O(nm)$ and re-reads text it has\nalready seen. Rabin–Karp fixes the first inefficiency with a **rolling hash**:\neach length-$m$ window is summarized by one number, updated in $O(1)$ per slide,\nverified on a hash match to kill collisions, for expected $O(n+m)$. A companion\nlesson removes the re-reading entirely with KMP and the Z-function.\n",{"path":3545,"title":3546,"module":3526,"summary":3547},"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function","String Matching: KMP & the Z-Function","Two linear-time matchers that beat Rabin–Karp's expected bound with a\nworst-case guarantee and no randomness. KMP precomputes a **failure function**\n$\\pi$ so a mismatch slides the pattern by $q-\\pi[q-1]$ and the text pointer\nnever backs up, for $O(n+m)$. The **Z-function** computes the longest\nprefix-match at every position via the Z-box, giving the same bound from a\ndifferent angle; the two encodings of a string's self-overlap convert freely.\n",{"path":3549,"title":3550,"module":3526,"summary":3551},"\u002Falgorithms\u002Fsequences\u002Ftries","Tries & Prefix Trees","A **trie** stores a set of strings in a tree keyed by _characters_, so that\ninsert, search, delete, and prefix-test all run in $O(L)$ time — the length\nof the key, _independent of how many keys are stored_. Shared prefixes are\nstored once, which makes tries the natural structure for autocomplete,\nwildcard dictionaries, board word-search, and — over the alphabet $\\{0,1\\}$\n— the maximum-XOR-pair problem. Radix (Patricia) trees compress the chains.\n",{"path":3553,"title":3554,"module":3526,"summary":3555},"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick","Suffix Arrays, LCP & Aho–Corasick","A **suffix array** sorts all $n$ suffixes of a string, indexing every substring\nat once; built in $O(n\\log n)$, it locates a pattern by binary search in\n$O(m\\log n)$. Its companion **LCP array** (Kasai's $O(n)$ algorithm) counts\ndistinct substrings and finds the longest repeated substring. **Aho–Corasick**\ngeneralises KMP to a whole dictionary: a trie of patterns plus failure links\nscans the text once in $O(\\text{text} + \\text{matches})$ to report every\noccurrence of every pattern. Manacher's algorithm finds all palindromic\nsubstrings in $O(n)$.\n",{"path":3557,"title":3558,"module":3559,"summary":3560},"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal","Graph Representations and Traversal","Graphs","A graph captures _relationships_ — who connects to whom. We fix the\nvocabulary, weigh the two standard representations (adjacency list versus\nmatrix), then meet the single search skeleton behind everything that follows:\nWhatever-First-Search, and its breadth-first reading, which finds shortest\npaths by number of edges in $O(V + E)$.\n",{"path":3562,"title":3563,"module":3559,"summary":3564},"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search","Depth-First Search","Swap BFS's queue for a stack and the search plunges instead of fanning out.\nDepth-first search stamps every vertex with discovery and finish times that\nnest like parentheses, classifies each edge as tree, back, forward, or cross,\nand — through the back edge — decides in one pass whether a graph has a cycle.\nThese timestamps underpin topological sort, strong\nconnectivity, and the rest of this module.\n",{"path":3566,"title":3567,"module":3559,"summary":3568},"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc","Topological Sort and Strong Connectivity","Directed acyclic graphs model dependencies: tasks that must precede other\ntasks. A _topological order_ lays such a graph out in a line so every edge\npoints forward, and depth-first finish times yield one almost for free.\nWe then ask the harder question for graphs _with_ cycles: which vertices can\nreach each other? The answer is the strongly connected components, found by a\ntwo-pass DFS.\n",{"path":3570,"title":3571,"module":3559,"summary":3572},"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees","Minimum Spanning Trees","Given a weighted network, how do we connect everything as cheaply as possible?\nThe answer is a minimum spanning tree, and one lemma — the cut property —\njustifies _every_ correct MST algorithm. We prove the cut and cycle\nproperties by exchange arguments, use them to settle uniqueness, and meet the\noldest MST algorithm, Borůvka's, whose parallel component-merging rounds fall\nstraight out of the cut rule.\n",{"path":3574,"title":3575,"module":3559,"summary":3576},"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim","Kruskal and Prim","The two minimum-spanning-tree algorithms you will actually implement.\nKruskal grows a forest edge by edge, cheapest first, using a union-find\nstructure to reject cycle-closing edges; Prim grows one tree outward from a\nroot with a priority queue, exactly Dijkstra rekeyed by attachment cost. Both\ntraced in full on a nine-town graph, with the edge cases, the bottleneck\nproperty, and where each one wins.\n",{"path":3578,"title":3579,"module":3559,"summary":3580},"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths","Shortest Paths","Finding the cheapest route through a weighted network is one of the most-used\nalgorithms in computing, and a single operation — _relaxation_ — underlies\nevery method. We build the primitive, prove the triangle inequality and\noptimal substructure that make it work, then meet Dijkstra's algorithm: the\ngreedy solution for non-negative weights, traced vertex by vertex, with the\ncut argument that proves each extraction is final.\n",{"path":3582,"title":3583,"module":3559,"summary":3584},"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights","All-Pairs and Negative Weights","Dijkstra's greedy schedule breaks the moment an edge goes negative. We give it\nup for dynamic programming: Bellman-Ford derived as a DP over edge budgets,\nwith its negative-cycle detector, and Floyd-Warshall computing the distance\nbetween _every_ pair of vertices via a DP over which vertices a path may pass\nthrough. We close with Johnson's algorithm and the arbitrage problems that\nnegative cycles encode.\n",{"path":3586,"title":3587,"module":3559,"summary":3588},"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow","Network Flow","How much can flow through a network from source to sink? We build flow\nnetworks with capacity and conservation constraints, increase a flow by\npushing along augmenting paths in the residual graph, and see how reverse\nedges let the algorithm undo earlier routing. Ford-Fulkerson and its BFS refinement\nEdmonds-Karp find a maximum flow, traced end to end on a worked network.\n",{"path":3590,"title":3591,"module":3559,"summary":3592},"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut","Max-Flow Min-Cut and Applications","Why is the flow found when no augmenting path remains actually optimal? The\nanswer is a duality theorem: the maximum flow equals the minimum cut. We prove\nit, read the minimum cut off the final residual graph, then derive bipartite\nmatching and a catalog of modeling reductions from the flow\nabstraction — before touching the modern algorithms that supersede\nEdmonds-Karp.\n",{"path":3594,"title":3595,"module":3559,"summary":3596},"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points","Bridges & Articulation Points","A **bridge** is an edge whose removal disconnects the graph; an **articulation\npoint** is a vertex whose removal does. Both are single points of failure in a\nnetwork. A single depth-first search computes discovery times and **low-links**,\nand two local criteria — $low[v] > disc[u]$ for bridges, $low[v] \\ge disc[u]$\nfor cut vertices — find them all in $O(V+E)$.\n",{"path":3598,"title":3599,"module":3559,"summary":3600},"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor","Lowest Common Ancestor & Binary Lifting","Given a rooted tree, the lowest common ancestor of $u$ and $v$ is the deepest\nnode that is an ancestor of both. A naive walk answers one query in $O(h)$;\n**binary lifting** precomputes the $2^k$-th ancestor of every node in\n$O(n\\log n)$, then answers $k$-th-ancestor and LCA queries in $O(\\log n)$ each.\nWe derive both jumps, apply them to tree distance, and compare against the\nEuler-tour + RMQ and Tarjan offline alternatives.\n",{"path":3602,"title":3603,"module":3559,"summary":3604},"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat","2-SAT via Implication Graphs","A boolean formula whose every clause has exactly two literals can be solved in\n_linear_ time — even though its three-literal cousin is NP-complete. The idea\nis to read each clause as a pair of implications, build a directed graph on the\n$2n$ literals, and ask a question we already know how to answer: which literals\nshare a strongly connected component? The formula is satisfiable iff no variable\nlands in the same SCC as its own negation, and the SCCs' topological order\nyields a satisfying assignment for free.\n",{"path":3606,"title":3607,"module":3559,"summary":3608},"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours","Eulerian Tours","An **Eulerian tour** uses every _edge_ of a graph exactly once. We give the\nexact parity and balance conditions under which one exists (even degree\nfor undirected graphs, in-degree equal to out-degree for directed) and Hierholzer's\n$O(E)$ algorithm that constructs one by splicing closed sub-tours. We contrast\nthis sharply with the **Hamiltonian** problem (visit every _vertex_ once),\nwhich is NP-complete: visiting edges is easy, visiting vertices is hard.\n",{"path":3610,"title":3611,"module":3559,"summary":3612},"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching","Bipartite Matching","Pairing applicants to jobs, students to slots, files to disks: all are\n**maximum bipartite matching**. We solve it combinatorially with **augmenting\npaths** (Kuhn's algorithm, $O(VE)$), speed it up to $O(E\\sqrt V)$ with\n**Hopcroft–Karp**, and uncover the structure behind it — **König's theorem**\n(max matching equals min vertex cover) and **Hall's marriage theorem** (a\nperfect matching exists iff every set has enough neighbors).\n",{"path":3614,"title":3615,"module":3616,"summary":3617},"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method","The Greedy Method","Greedy Algorithms","A greedy algorithm builds a solution one locally-best choice at a time and\nnever looks back. We isolate the two properties that make this work — the\ngreedy-choice property and optimal substructure — prove the canonical\nactivity-selection algorithm correct with an exchange argument, watch greedy\nfail on the 0\u002F1 knapsack, and glimpse matroids as the theory\nthat says exactly when the greedy method is optimal.\n",{"path":3619,"title":3620,"module":3616,"summary":3621},"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals","Scheduling & Interval Partitioning","Three classic scheduling problems all yield to greedy algorithms — and all\nthree turn on a single design decision: which key to sort by. Interval\nscheduling sorts by **finish** time to pack the most compatible jobs;\ninterval partitioning sorts by **start** time and proves the rooms needed\nequal the maximum overlap **depth**; minimizing maximum lateness sorts by\n**deadline** and is justified by an adjacent-swap exchange argument.\n",{"path":3623,"title":3624,"module":3616,"summary":3625},"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes","Huffman Codes","Huffman coding builds a\nprovably optimal prefix-free binary code by repeatedly merging the two least\nfrequent symbols. We develop prefix-free codes as binary trees, give the\nalgorithm with a priority queue, build a Huffman tree from example\nfrequencies, prove optimality with the same greedy-choice-plus-substructure\nargument, and pin the running time at $O(n\\log n)$.\n",{"path":3627,"title":3628,"module":3616,"summary":3629},"\u002Falgorithms\u002Fgreedy\u002Fmatroids","Matroids & Exchange Arguments","The capstone of the greedy module: _why_ and _when_ a greedy algorithm is\nprovably optimal. We recap the two correctness templates — **greedy-stays-ahead**\nand the **exchange argument** — then meet the **matroid** $M=(S,\\mathcal{I})$, an\nabstraction whose **exchange property** is the structure greedy needs.\nThe matroid–greedy theorem says sorting by weight and taking what stays\nindependent yields a maximum-weight basis _if and only if_ the structure is a\nmatroid. Kruskal's MST is the canonical instance; 0\u002F1 knapsack and TSP are the\ncanonical failures.\n",{"path":3631,"title":3632,"module":3616,"summary":3633},"\u002Falgorithms\u002Fgreedy\u002Fstable-matching","Stable Matching (Gale–Shapley)","Two sides each rank the other; we want a matching with no **blocking pair** — no\ntwo participants who both prefer each other to their assigned partners. The\n**Gale–Shapley deferred-acceptance** algorithm has proposers propose in\npreference order while receivers tentatively hold the best offer so far. We prove\nit terminates in $\\O(n^2)$ proposals, returns a **perfect** matching, and that\nthe matching is **stable**. A sharper asymmetry follows: deferred acceptance is\n**proposer-optimal** and **receiver-pessimal**, the structural fact behind the\nresidency match and school-choice systems.\n",{"path":3635,"title":3636,"module":3637,"summary":3638},"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples","Principles of Dynamic Programming","Dynamic Programming","Dynamic programming is recursion with memory: when a recursive solution\nre-solves the same subproblems again and again, we solve each one once and\nstore the answer. We identify the two structural conditions that make this\nwork — overlapping subproblems and optimal substructure — contrast top-down\nmemoization with bottom-up tabulation, and distil the whole method into a\nfive-step recipe.\n",{"path":3640,"title":3641,"module":3637,"summary":3642},"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp","Sequence Alignment & LCS","Two strings can be compared by how much of one appears inside the\nother. The longest common subsequence (LCS) and edit distance are the two\nclassic measures, and they are the _same_ dynamic program with different\ncosts. We derive the LCS recurrence by examining the last characters, fill a\nworked DP table, reconstruct the subsequence, and then show edit distance as\nthe identical $\\Theta(mn)$ pattern.\n",{"path":3644,"title":3645,"module":3637,"summary":3646},"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence","Longest Increasing Subsequence","Given a sequence of numbers, how long is its longest strictly increasing\nsubsequence? A first dynamic program indexes subproblems by the element each\nsubsequence _ends at_, giving an $O(n^2)$ solution with parent-pointer\nreconstruction. A sharper idea, the patience-sorting _tails_ array searched by\nbinary search, drops the time to $O(n\\log n)$. We then fold in the\nvariants: non-decreasing, counting, Russian-doll envelopes, and bitonic.\n",{"path":3648,"title":3649,"module":3637,"summary":3650},"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack","Knapsack & Subset Problems","We start from $\\textsc{Subset-sum}$ — does some sublist hit a target $t$? — and its\ninclude\u002Fexclude recurrence over a boolean table $A(i, u)$, then bolt on values\nto get 0\u002F1 knapsack as the same machine with $\\lor$ promoted to $\\max$. We fill\nboth tables, recover the chosen items, and confront the surprise that the\n$\\Theta(nt)$ running time is only _pseudo-polynomial_ — exponential in the bit\nlength $b$, and unimprovable unless $\\mathrm{P}=\\mathrm{NP}$ since subset-sum is\n$\\textsc{NP-complete}$. The fractional variant reveals the sharp line between greedy\nand dynamic programming.\n",{"path":3652,"title":3653,"module":3637,"summary":3654},"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded","Coin Change & Unbounded Knapsack","The previous lesson let each item be taken at most once. Drop that cap — items\nmay be reused _any number of times_ — and the 0\u002F1 knapsack collapses from a\ntwo-dimensional table to a one-dimensional one, because there is no longer a\nprefix of \"already-used\" items to track. We meet **unbounded knapsack**, then\nits most famous instance, **coin change**: the minimum-coins recurrence\n$C[a] = 1 + \\min_c C[a-c]$, and the counting variant where the _order of the\nloops_ decides whether you count unordered combinations or ordered sequences —\nthe classic bug. Greed fails in general but works for canonical coin systems.\n",{"path":3656,"title":3657,"module":3637,"summary":3658},"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp","Interval DP","Many problems ask for the best way to combine a contiguous range of items, and\nthe answer is a dynamic program over subintervals $[i,j]$ that chooses a split\npoint $k$. We derive the pattern from matrix-chain multiplication —\nparenthesising a product to minimize scalar multiplications in $O(n^3)$ — distil\nit into a reusable template filled by increasing interval length, and then meet\nits sharpest variant: the \"last operation\" trick behind Burst Balloons and\ncutting a stick, where fixing the _last_ move (not the first) makes the two\nsides independent.\n",{"path":3660,"title":3661,"module":3637,"summary":3662},"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp","Dynamic Programming on Trees","When the subproblems of a dynamic program are _rooted subtrees_, a single\npost-order DFS solves the whole thing in $O(n)$: each node combines the\nalready-computed answers of its children. We meet the archetype — maximum-weight\nindependent set on a tree — then the \"path through a node\" pattern behind tree\ndiameter and maximum path sum, and finally **rerooting**, which computes a\nper-node answer for _every_ node as root in $O(n)$ with two passes.\n",{"path":3664,"title":3665,"module":3637,"summary":3666},"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp","Bitmask DP","When a subproblem depends not on an index or a prefix but on _which subset_ of\na small ground set has been used, we can encode that subset as the bits of an\ninteger and index a DP table by it. With $n \\le \\sim 20$ the $2^n$ subsets fit\nin a table, turning $\\Theta(n!)$ brute force into $O(2^n \\cdot \\text{poly}(n))$.\nWe meet the bit tricks, the Held–Karp TSP archetype, assignment by mask,\nsubset-sum partitioning, and submask enumeration with its $3^n$ bound.\n",{"path":3668,"title":3669,"module":3637,"summary":3670},"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations","DP Optimizations","A correct DP recurrence is only half the battle; its naive evaluation is often\na factor of $n$ slower than necessary. This capstone surveys five techniques,\nmonotonic-queue, the convex hull trick, divide-and-conquer optimization,\nKnuth's optimization, and SOS DP, that each exploit _structure in the\ntransition_ (a sliding window, linear costs, monotone optimal splits, the\nquadrangle inequality, or subset lattices) to shave an $O(n)$, $O(\\log n)$, or\nworse factor off the running time.\n",{"path":3672,"title":3673,"module":3637,"summary":3674},"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs","Dynamic Programming on Graphs","Many graph algorithms are dynamic programs: the subproblem is the\n_best value reachable under a restricted resource_ — intermediate vertices\nallowed, edges allowed, or a topological prefix — and edge _relaxation_ is the\nDP transition. We frame Floyd–Warshall as the archetype ($O(V^3)$ all-pairs\nshortest paths), Bellman–Ford as a DP over path length (the at-most-$K$-stops\nvariant), DAG-DP in topological order ($O(V+E)$), and Warshall's transitive\nclosure as the boolean analog.\n",{"path":3676,"title":3677,"module":3637,"summary":3678},"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp","Digit & Probability DP","Two DP patterns with unusual state. _Digit DP_ counts the\nintegers in a range $[L, R]$ that satisfy a digit constraint by walking the\ndecimal places of the bound, carrying a _tight_ flag that marks when the prefix\nstill equals the bound's. _Probability\u002FExpectation DP_ replaces \"best value\" with\n\"expected value,\" using linearity of expectation to make each state an\naverage over its weighted transitions — the natural tool for expected step\ncounts and absorbing Markov chains.\n",{"path":3680,"title":3681,"module":3682,"summary":3683},"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals","Backtracking: Subsets, Permutations & Combinations","Backtracking & Search","Backtracking builds a solution one choice at a time and abandons a partial\nsolution the moment it cannot be completed, exploring a state-space tree by\ndepth-first search. We meet the universal choose\u002Fexplore\u002Fun-choose template,\nderive the canonical enumerations — subsets ($2^n$), permutations ($n!$), and\ncombinations ($\\binom{n}{k}$) — handle duplicate elements by skipping equal\nsiblings, and see how pruning turns an exponential search into a tractable one.\n",{"path":3685,"title":3686,"module":3682,"summary":3687},"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search","Constraint Search: N-Queens & Sudoku","Many hard puzzles are **constraint satisfaction problems**: assign each\nvariable a value from its domain so that every constraint holds. Backtracking\nsolves them by assigning variables one at a time and rejecting a partial\nassignment the instant a constraint breaks. We make the rejection cheap — $O(1)$\nconflict checks for N-Queens via column and diagonal sets — and prune harder\nwith **forward checking**, **MRV** ordering, and **constraint propagation**,\nwhich is what lets an exponential search actually finish.\n",{"path":3689,"title":3690,"module":3682,"summary":3691},"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound","Branch & Bound and Meet in the Middle","Plain backtracking prunes a search tree by _feasibility_; for _optimization_\nproblems we can prune far more aggressively by _value_. **Branch and bound**\nkeeps the best complete solution found so far and discards any partial solution\nwhose optimistic bound cannot beat it. **Meet in the middle** splits the\ninstance in two, enumerates each half, and recombines by binary search — turning\n$2^n$ into $O(2^{n\u002F2}\\,n)$ and pushing exact search out to $n \\approx 40$.\n",{"path":3693,"title":3694,"module":3682,"summary":3695},"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking","Graph Backtracking: m-Coloring & Hamiltonian Paths","Two famous graph problems have no known efficient algorithm, yet yield cleanly\nto backtracking with the right pruning. **Graph $m$-coloring** assigns one of\n$m$ colors to each vertex so no edge is monochromatic; we color vertices in turn\nand reject a color the instant a neighbor already has it. **Hamiltonian\npath\u002Fcycle** asks for a walk visiting every vertex exactly once; we extend a path\ngreedily and backtrack on dead ends. Both are NP-complete, so the worst case is\nexponential — but feasibility pruning and good vertex ordering make real\ninstances tractable, and the contrast with the easy Eulerian condition shows why.\n",{"path":3697,"title":3698,"module":3699,"summary":3700},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics","Number Theory: GCD & Modular Arithmetic","Mathematical Algorithms","This lesson opens the mathematical-algorithms module with the bedrock of\ncomputational number theory. We prove Euclid's recurrence\n$\\gcd(a,b)=\\gcd(b,\\,a\\bmod b)$ and its $O(\\log\\min(a,b))$ running time, extend\nit to recover Bézout coefficients $x,y$ with $ax+by=\\gcd(a,b)$, and build\nmodular arithmetic on residue classes — including when a modular inverse\n$a^{-1}\\bmod m$ exists and how to compute it.\n",{"path":3702,"title":3703,"module":3699,"summary":3704},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality","Modular Exponentiation & Primality","Computing $a^n \\bmod m$ naively costs $n$ multiplications; **repeated squaring**\ndoes it in $O(\\log n)$ by reading the bits of the exponent. We use this routine\nto state **Fermat's little theorem** (and the modular inverse it gives), then to\ntest primality — trial division, the probabilistic **Fermat** and **Miller–Rabin**\ntests, and the deterministic witness set that settles primality for every 64-bit\nnumber.\n",{"path":3706,"title":3707,"module":3699,"summary":3708},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization","Sieves & Factorization","The previous lesson tested one number for primality; here we ask for _all_\nprimes up to $n$ at once. The **sieve of Eratosthenes** cross-cuts composites\nin $O(n\\log\\log n)$, and a **linear sieve** does it in $O(n)$ while recording\neach number's **smallest prime factor**, which then factors any $x \\le n$ in\n$O(\\log x)$. From a factorization $x = \\prod p_i^{e_i}$ the multiplicative\nfunctions $\\tau$, $\\sigma$, and Euler's totient $\\varphi$ fall out immediately.\n",{"path":3710,"title":3711,"module":3699,"summary":3712},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics","Combinatorics & Counting","Counting is the arithmetic of finite sets. We build up from permutations\n$n!$ and combinations $\\binom{n}{k}$, prove Pascal's rule by a bijection,\nand count multisets with stars and bars. The practical core is computing\n$\\binom{n}{k}\\bmod p$ in $O(1)$ from precomputed factorials and inverse\nfactorials. We close with inclusion–exclusion and the Chinese Remainder\nTheorem, both of which lean on the modular inverse from the previous lesson.\n",{"path":3714,"title":3715,"module":3699,"summary":3716},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation","Matrix Exponentiation","A linear recurrence advances by a fixed linear rule, so one step is a\n**matrix–vector** product and $n$ steps are a **matrix power**. Packaging\nFibonacci, and any $k$-term recurrence, into a transition matrix lets us jump\nto the $n$-th term in $O(k^3 \\log n)$ by **exponentiation by squaring** — the\nsame doubling trick from modular exponentiation, now over matrices.\n",{"path":3718,"title":3719,"module":3699,"summary":3720},"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform","Fast Fourier Transform","Multiplying two degree-$n$ polynomials by the schoolbook method costs\n$\\Theta(n^2)$. Evaluating them at the **$n$-th roots of unity** turns\nmultiplication into pointwise products, and the **Cooley–Tukey FFT** computes\nall those evaluations in $\\Theta(n\\log n)$ by splitting even and odd\ncoefficients. The inverse FFT interpolates back, giving $\\Theta(n\\log n)$\npolynomial and big-integer multiplication.\n",{"path":3722,"title":3723,"module":3699,"summary":3724},"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent","Numerical Optimization and Gradient Descent","Most of this course chases **discrete** optima over finite structures; here the\nsearch space is **continuous** and the objective $f$ is differentiable. The\n**gradient** points uphill, so stepping against it —\n$x_{t+1} = x_t - \\eta\\,\\nabla f(x_t)$ — walks downhill. **Convexity** makes every\nlocal minimum global; for convex $L$-smooth $f$ gradient descent converges at\n$O(1\u002Ft)$, and **geometrically** under strong convexity. **Newton's method** uses\nthe Hessian for local quadratic convergence, and **bisection** is the robust\nbracketing fallback for roots.\n",{"path":3726,"title":3727,"module":3728,"summary":3729},"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives","Geometric Primitives & Orientation","Computational Geometry","Computational geometry is built on a single reliable primitive — the\n**orientation test**, a sign of a cross product that tells whether three points\nturn left, right, or lie collinear. From points-as-vectors and the dot and\ncross products we derive orientation, segment intersection, the shoelace area\nformula, and point-in-polygon tests, keeping all arithmetic **exact and\ninteger** so that no floating-point rounding can corrupt a sign.\n",{"path":3731,"title":3732,"module":3728,"summary":3733},"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull","Convex Hull","The convex hull is the smallest convex polygon enclosing a point set — the\nrubber band snapped around the nails. We build it with Andrew's monotone chain,\nsorting by $(x,y)$ and sweeping a lower and upper hull while popping any\nnon-left turn via the orientation primitive, in $O(n\\log n)$. A reduction from\nsorting shows that bound is optimal, and the hull yields diameter, smallest\nenclosing rectangle, and more through rotating calipers.\n",{"path":3735,"title":3736,"module":3728,"summary":3737},"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line","Sweep-Line Algorithms","The plane-sweep paradigm turns a static $2$-D geometry problem into a dynamic\n$1$-D ordered-set problem: a vertical line sweeps left to right, stopping at an\n$x$-sorted **event queue** while a balanced-BST **status structure** tracks the\nobjects it currently crosses, ordered by $y$. We derive Bentley–Ottmann segment\nintersection in $O((n+k)\\log n)$, recover closest-pair in $O(n\\log n)$, and\nreduce skyline, rectangle-area, and overlap problems to $\\pm1$ event sweeps.\n",{"path":3739,"title":3740,"module":3728,"summary":3741},"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity","Polygons & Proximity","Four classics that live on top of the orientation primitive and the convex\nhull. **Closest pair** falls to divide-and-conquer in $\\Theta(n\\log n)$, where a\npacking argument caps the cross-boundary combine at seven neighbours per point.\n**Point-in-polygon** is the ray-casting parity test or the winding-number count\nthat also handles self-intersecting boundaries, both with their edge caveats. The **shoelace formula**\ngives signed area as a sum of cross products, and **rotating calipers** walk the\nhull to read off diameter and width in $O(n)$.\n",{"path":3743,"title":3744,"module":3745,"summary":3746},"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions","P, NP, and Reductions","Intractability","Most problems we have met so far have fast algorithms. A vast and important\nfamily seemingly does not. This lesson builds the vocabulary for that\ndivide: decision problems, the class $\\mathsf{P}$ of problems we can solve\nquickly, the class $\\mathsf{NP}$ of problems whose solutions we can _check_\nquickly, and polynomial-time reductions, the tool that lets us compare the\ndifficulty of two problems without solving either.\n",{"path":3748,"title":3749,"module":3745,"summary":3750},"\u002Falgorithms\u002Fintractability\u002Fnp-completeness","NP-Completeness","Some problems in $\\mathsf{NP}$ are universally hardest: every other problem\nin $\\mathsf{NP}$ reduces to them. This lesson defines $\\mathsf{NP}$-hard and\n$\\mathsf{NP}$-complete, states the Cook–Levin theorem that anchors the\ntheory on **SAT**, walks the web of reductions that grows from it, and gives\nthe four-step recipe for proving a brand-new problem $\\mathsf{NP}$-complete.\n",{"path":3752,"title":3753,"module":3745,"summary":3754},"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness","Coping with NP-Hardness","An $\\mathsf{NP}$-hardness proof rules out an exact polynomial-time algorithm,\nnot the need for answers. This lesson surveys four practical responses to\nhardness: approximation algorithms with a provable ratio (worked through a\n2-approximation for vertex cover), heuristics and local search, exact\nexponential methods like branch and bound, and exploiting special structure\nin the instances you actually face.\n",{"path":3756,"title":3757,"module":3745,"summary":3758},"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms","Approximation Algorithms","When a problem is $\\mathsf{NP}$-hard we can still ask for a solution\nprovably close to optimal. This lesson makes the approximation ratio\n$\\rho$ precise, separates absolute from relative guarantees, and proves the\nratios of four classic algorithms: greedy set cover ($H_n \\approx \\ln n$),\nthe MST-doubling $2$-approximation for metric TSP, load balancing, and the\nknapsack FPTAS. It closes with the hierarchy PTAS \u002F FPTAS and the limits of\ninapproximability.\n",{"path":3760,"title":3761,"module":306,"summary":306},"\u002Falgorithms","Algorithms",{"path":3763,"title":3764,"module":3765,"summary":3766},"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models","Functions and Mathematical Models","Limits and Continuity","A function assigns exactly one output to each input and can be presented four ways: verbally, numerically, graphically, or by a formula. The elementary families — linear, polynomial, power, rational, trigonometric, exponential — model most elementary phenomena, and transformation, combination, and composition build every other function from them.\n",{"path":3768,"title":3769,"module":3765,"summary":3770},"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function","The Limit of a Function","The tangent and velocity problems both ask for a value a ratio approaches but never reaches — the limit. Its intuitive two-sided form splits into one-sided limits that must agree; a limit fails to exist when they disagree or when the function grows without bound, the latter producing a vertical asymptote.\n",{"path":3772,"title":3773,"module":3765,"summary":3774},"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition","Limit Laws and the ε–δ Definition","The Limit Laws reduce a limit to arithmetic on simpler limits, and direct substitution settles polynomials and rational functions outright. The 0\u002F0 forms that resist substitution yield to algebra or the Squeeze Theorem, and the ε–δ definition makes \"arbitrarily close\" precise as a pair of quantified inequalities.\n",{"path":3776,"title":3777,"module":3765,"summary":3778},"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity","Continuity","A function is continuous at a point when its limit there equals its value, so the graph has no break. Continuity fails in three geometric ways; it is closed under arithmetic and composition, so the elementary families and their combinations are continuous; and on a closed interval it forces the Intermediate Value Theorem, which locates roots.\n",{"path":3780,"title":3781,"module":3782,"summary":3783},"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change","The Derivative and Rates of Change","Derivatives","A single limit with three readings: the slope of the tangent line, the instantaneous velocity of a moving object, and the rate of change of one quantity with respect to another. Built from the difference quotient, extended from a value at one point to a function of x, and undefined exactly where a corner, jump, or vertical tangent appears.\n",{"path":3785,"title":3786,"module":3782,"summary":3787},"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule","Differentiation Rules and the Chain Rule","Computing every derivative from the limit definition is tedious. A short list of rules — power, constant multiple, sum, product, quotient — differentiates any polynomial or rational function by inspection. The trigonometric derivatives follow from one limit, and the chain rule extends everything to composite functions by multiplying rates along the composition.\n",{"path":3789,"title":3790,"module":3782,"summary":3791},"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates","Implicit Differentiation and Related Rates","Not every curve is the graph of y = f(x). Implicit differentiation finds a slope from an equation in x and y directly, treating y as an unknown function and differentiating both sides. The same chain-rule idea drives related rates, where one measured rate of change forces another through a geometric constraint, and interprets the derivative as a rate across the sciences.\n",{"path":3793,"title":3794,"module":3782,"summary":3795},"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials","Linear Approximations and Differentials","A differentiable curve looks like its tangent line under enough magnification, so the tangent is a usable stand-in for the function near the point of contact. The linear approximation and its linearization, written in the language of differentials dy and dx, estimate both function values and the measurement error propagated into a computed quantity.\n",{"path":3797,"title":3798,"module":3799,"summary":3800},"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem","Extrema and the Mean Value Theorem","Applications of Derivatives","Absolute and local extrema, the Extreme Value Theorem that guarantees them, and Fermat's Theorem pinning candidates to critical numbers. The Closed Interval Method turns the search for extrema into a finite checklist. Rolle's Theorem and the Mean Value Theorem then connect a function's values to its derivative, giving the tool that most of differential calculus rests on.\n",{"path":3802,"title":3803,"module":3799,"summary":3804},"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph","How Derivatives Shape a Graph","The sign of the first derivative fixes where a function rises and falls, and a sign change identifies each local extremum through the First Derivative Test. The second derivative sets concavity and inflection points and gives a faster Second Derivative Test. Limits at infinity describe end behavior and the horizontal asymptotes a curve settles toward.\n",{"path":3806,"title":3807,"module":3799,"summary":3808},"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization","Curve Sketching and Optimization","A checklist that synthesizes domain, symmetry, asymptotes, monotonicity, extrema, and concavity into a hand sketch of any function, plus the slant asymptote for rational functions whose degree exceeds the denominator's. The same extremum machinery, applied to a word problem, becomes the optimization template: model one quantity, reduce it to a function of a single variable, and find its absolute extremum.\n",{"path":3810,"title":3811,"module":3799,"summary":3812},"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives","Newton's Method and Antiderivatives","Newton's method solves $f(x) = 0$ by repeatedly replacing the curve with its tangent line and jumping to the tangent's root, converging fast when it works and diverging when the derivative is small. Antiderivatives reverse differentiation: every antiderivative of a function differs from another by a constant, so the general antiderivative is a family of parallel curves, pinned to one by an initial condition.\n",{"path":3814,"title":3815,"module":3816,"summary":3817},"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral","Area and the Definite Integral","Integrals","The area under a curve is defined as a limit of sums of rectangle areas. The same limit — a Riemann sum taken as the mesh shrinks to zero — defines the definite integral, a single number measuring signed area, total distance, and every accumulated quantity built the same way. Its properties, comparison bounds, and reading as net area follow directly from the limit.\n",{"path":3819,"title":3820,"module":3816,"summary":3821},"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus","The Fundamental Theorem of Calculus","Differentiation and integration are inverse operations. Part 1 says the derivative of an area-accumulation function is the integrand; Part 2 says a definite integral equals the change in any antiderivative across the interval. Together they replace limits of Riemann sums with antiderivative lookups, define the indefinite integral, and give the Net Change Theorem for rates.\n",{"path":3823,"title":3824,"module":3816,"summary":3825},"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule","The Substitution Rule","Substitution runs the Chain Rule backward: spotting an inner function whose derivative also appears in the integrand lets the variable change to $u$ and collapse a composite integral to a simple one. The rule applies to indefinite and definite integrals, with two ways to handle the limits, and it yields the symmetry shortcuts that double even integrands and vanish odd ones.\n",{"path":3827,"title":3828,"module":3829,"summary":3830},"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes","Areas Between Curves and Volumes","Applications of Integration","A definite integral computes any quantity that a limit of Riemann sums approximates. Applied to geometry it gives the area between two curves and the volume of a solid: by cross-sections, by disks and washers when the region is revolved, and by cylindrical shells when inverting the boundary is awkward.\n",{"path":3832,"title":3833,"module":3829,"summary":3834},"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length","Work, Average Value, Arc Length, and Surface Area","The work done by a force that varies with position, the average value of a function and the Mean Value Theorem it satisfies, the length of a curve, and the area of a surface swept out by revolving that curve. Each is a limit of Riemann sums, hence a definite integral.\n",{"path":3836,"title":3837,"module":3829,"summary":3838},"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability","Applications to Physics, Economics, and Probability","Definite integrals in physics, economics, and statistics: the force a fluid exerts on a submerged plate, the balance point of a plane region, the money consumers save at a market price, and the probability that a continuous random variable lands in an interval, together with its mean.\n",{"path":3840,"title":3841,"module":3842,"summary":3843},"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials","Inverse Functions, Logarithms, and Exponentials","Exponential, Logarithmic, and Inverse Functions","A one-to-one function has an inverse that reverses it, with a graph mirrored across y = x and a derivative given by the reciprocal-slope rule. The exponential e^x is its own derivative and the natural logarithm has derivative 1\u002Fx; logarithmic differentiation turns products, quotients, and variable powers into sums.\n",{"path":3845,"title":3846,"module":3842,"summary":3847},"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions","Growth, Decay, Inverse Trigonometric, and Hyperbolic Functions","Any quantity whose rate of change is proportional to its size grows or decays exponentially, the single equation y' = ky behind populations, radioactive decay, cooling, and continuously compounded interest. The inverse trigonometric functions have algebraic derivatives, and the hyperbolic functions, built from e^x and e^{-x}, describe the hanging cable.\n",{"path":3849,"title":3850,"module":3842,"summary":3851},"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule","Indeterminate Forms and l'Hospital's Rule","When a limit produces 0\u002F0 or infinity over infinity, the value is undetermined by the forms alone. l'Hospital's Rule resolves both by replacing the ratio of functions with the ratio of their derivatives. Products, differences, and powers reduce to a quotient the rule can handle, and repeated use ranks the growth of logarithms, powers, and exponentials.\n",{"path":3853,"title":3854,"module":3855,"summary":3856},"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts","Integration by Parts","Techniques of Integration","The product rule for derivatives reverses into integration by parts, trading the integral of $u\\,\\d v$ for the integral of $v\\,\\d u$ whenever the second is easier. The LIATE ordering fixes which factor to differentiate. Standard cases: a polynomial against a transcendental factor, repeated parts, cyclic integrals that solve for themselves, and reduction formulas that peel an exponent down by recursion.\n",{"path":3858,"title":3859,"module":3855,"summary":3860},"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution","Trigonometric Integrals and Substitution","Two related techniques. Trigonometric integrals evaluate powers and products of sine, cosine, tangent, and secant by splitting off one factor and converting the rest with a Pythagorean identity, or by dropping even powers with half-angle formulas. Trigonometric substitution runs the idea in reverse: replace x by a sine, tangent, or secant to clear a radical, integrate, then read the answer back off a reference triangle.\n",{"path":3862,"title":3863,"module":3855,"summary":3864},"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy","Partial Fractions and Integration Strategy","Any rational function integrates in closed form: factor the denominator, split the fraction into simple pieces by partial fractions, and integrate each piece as a logarithm or an arctangent. Four denominator cases exhaust the possibilities. A four-step strategy then sorts an arbitrary integrand by its shape to the technique that fits it, and a short catalog records elementary functions whose antiderivatives are not elementary.\n",{"path":3866,"title":3867,"module":3855,"summary":3868},"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals","Approximate and Improper Integrals","Two definite integrals the Fundamental Theorem cannot reach. With no antiderivative available, the Midpoint, Trapezoidal, and Simpson rules approximate the integral from sample values, each carrying a provable error bound. With an infinite interval or an integrand that blows up, the improper integral is defined as a limit that either converges or diverges; the Comparison Test settles which without evaluating it.\n",{"path":3870,"title":3871,"module":3872,"summary":3873},"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus","Parametric Curves and Their Calculus","Parametric Equations and Polar Coordinates","A parametric curve gives x and y separately as functions of a third variable, recording not only a path but the direction and timing with which it is traced. Eliminating the parameter recovers a Cartesian equation; the slope, area, arc-length, and surface-area formulas run directly on the parameter, with the cycloid and astroid as worked examples.\n",{"path":3875,"title":3876,"module":3872,"summary":3877},"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates","Polar Coordinates","Polar coordinates locate a point by a distance from the pole and an angle from the polar axis, giving circles, spirals, and flower-shaped curves short equations. Conversion between the two systems is right-triangle trigonometry, and treating a polar curve as a parametric curve in the angle yields the tangent, area, and arc-length formulas.\n",{"path":3879,"title":3880,"module":3872,"summary":3881},"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections","Conic Sections","Parabolas, ellipses, and hyperbolas are the plane curves cut from a double cone. Each has a focus-based geometric definition and a standard Cartesian equation. A single number, the eccentricity, ties the three together, and placing a focus at the pole gives all of them one polar equation that describes planetary orbits.\n",{"path":3883,"title":3884,"module":3885,"summary":3886},"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences","Sequences","Infinite Sequences and Series","A sequence is a function on the positive integers, and its limit is defined almost exactly like a limit at infinity. The Limit Laws and Squeeze Theorem carry over from functions, monotonic and bounded sequences give a convergence criterion, and the Monotonic Sequence Theorem guarantees a limit exists without naming it.\n",{"path":3888,"title":3889,"module":3885,"summary":3890},"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test","Series and the Integral Test","Adding infinitely many terms is made precise as the limit of partial sums. The two series with closed-form partial sums are geometric and telescoping; the harmonic series diverges even as its terms shrink to zero. The Integral Test compares a positive series to an improper integral, settling the p-series and supplying a remainder bound for estimating sums.\n",{"path":3892,"title":3893,"module":3885,"summary":3894},"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests","The Convergence Tests","The comparison, alternating-series, ratio, and root tests decide convergence without a closed-form partial sum. Absolute convergence is stronger than conditional convergence and is preserved under rearrangement; an alternating series errs by less than its first omitted term. A test is chosen from the shape of the general term.\n",{"path":3896,"title":3897,"module":3885,"summary":3898},"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series","Power Series","A power series is a polynomial of infinite degree whose convergence set is an interval centered at $a$, with a radius the Ratio Test finds and endpoints that must be tested by hand. Inside that interval the series represents a function that can be differentiated and integrated term by term, generating new representations from the geometric series.\n",{"path":3900,"title":3901,"module":3885,"summary":3902},"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series","Taylor and Maclaurin Series","If a function equals a power series, its coefficients are forced: the nth is the nth derivative at the center over n factorial. We derive that formula, use Taylor's Inequality to prove the standard series for the exponential, sine, and cosine, record the binomial series and a reference table, and bound the error when a Taylor polynomial replaces a function.\n",{"path":3904,"title":3905,"module":3906,"summary":3907},"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product","Three-Dimensional Coordinates, Vectors, and the Dot Product","Vectors and the Geometry of Space","Space needs three coordinates, so we set up the rectangular system, the distance formula, and the equation of a sphere. Vectors then package magnitude and direction into a single algebraic object with its own arithmetic. The dot product turns two vectors into a number that measures the angle between them, gives a clean test for orthogonality, and produces the projection of one vector onto another.\n",{"path":3909,"title":3910,"module":3906,"summary":3911},"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes","The Cross Product, Lines, and Planes","The cross product multiplies two vectors into a third perpendicular to both, with length equal to the area of the parallelogram they span. That one construction supplies the direction of a line, the normal of a plane, and, through the scalar triple product, the volume of a parallelepiped. Lines carry a point and a direction vector; planes carry a point and a normal, which fixes the angle between planes and the distance from a point to a plane.\n",{"path":3913,"title":3914,"module":3906,"summary":3915},"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces","Cylinders and Quadric Surfaces","A surface whose equation omits one variable is a cylinder: the graph of a plane curve swept along the missing axis. A second-degree equation in three variables is a quadric, and translation and rotation reduce every one to a short standard list. Traces — the curves cut by planes parallel to the coordinate planes — sort the six quadrics into ellipsoid, the two paraboloids, the cone, and the two hyperboloids.\n",{"path":3917,"title":3918,"module":3906,"summary":3919},"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves","Vector Functions and Space Curves","A vector function assigns a vector to each value of a parameter, and as the parameter runs its tip traces a space curve. Taking limits, derivatives, and integrals component by component carries all of single-variable calculus into three dimensions. The derivative of a vector function is the tangent vector to its curve, and normalizing it gives the unit tangent that points the way along the path.\n",{"path":3921,"title":3922,"module":3906,"summary":3923},"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion","Arc Length, Curvature, and Motion in Space","Integrating the speed of a vector function gives the length of its curve and a natural parameter, arc length, that depends only on the curve's shape. Curvature measures how fast the unit tangent turns, and together with the normal and binormal it builds the moving TNB frame. Reading the same vector function as a trajectory, its first two derivatives are velocity and acceleration, and acceleration splits cleanly into tangential and normal parts.\n",{"path":3925,"title":3926,"module":3927,"summary":3928},"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables","Functions of Several Variables, Limits, and Continuity","Partial Derivatives","A function of several variables assigns one number to each point of a region in the plane or in space. Domain, graph, level curve, and level surface describe it; limits and continuity extend to two variables, where a limit must agree along every path of approach, not just from the left and the right.\n",{"path":3930,"title":3927,"module":3927,"summary":3931},"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives","A partial derivative holds every variable but one fixed and differentiates in the ordinary sense. Geometrically it is the slope of a trace curve cut from the surface by a coordinate plane. The freeze-and-differentiate rule computes the two first partials; the four second partials follow, and the two mixed ones agree under Clairaut's Theorem when they are continuous.\n",{"path":3933,"title":3934,"module":3927,"summary":3935},"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule","Tangent Planes, Linear Approximation, and the Chain Rule","Near a point, a smooth surface looks like its tangent plane, and the plane's equation is built from the two partial derivatives. That linearization defines the total differential and the meaning of differentiability in two variables. The chain rule then propagates derivatives through composed functions, tracked by a tree diagram, and yields clean formulas for implicit differentiation.\n",{"path":3937,"title":3938,"module":3927,"summary":3939},"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient","Directional Derivatives and the Gradient","The partial derivatives measure slope along the two axes; the directional derivative measures slope along any chosen direction, and equals the gradient dotted with a unit vector. The gradient points in the direction of steepest increase, its length is the greatest rate, and it stands perpendicular to level curves and surfaces, which fixes the tangent plane to a level surface.\n",{"path":3941,"title":3942,"module":3927,"summary":3943},"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers","Optimization and Lagrange Multipliers","Extrema of a two-variable function sit at critical points where the gradient vanishes; the Second Derivatives Test sorts them into peaks, valleys, and saddles by the sign of a discriminant. Absolute extrema on a closed region also need the boundary. When the domain is itself a constraint curve, Lagrange multipliers set the two gradients parallel and solve the constrained problem.\n",{"path":3945,"title":3946,"module":3947,"summary":3948},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals","Double Integrals","Multiple Integrals and Vector Calculus","The double integral extends the definite integral to functions of two variables: a limit of Riemann sums that measures signed volume under a surface. Fubini's Theorem turns it into two ordinary integrations done one after the other, general regions of type I and type II fix the inner limits, polar coordinates absorb circular symmetry through the factor r, and the same machine computes mass, center of mass, and moments of a lamina.\n",{"path":3950,"title":3951,"module":3947,"summary":3952},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems","Triple Integrals and Coordinate Systems","The triple integral integrates a function of three variables over a solid, as a limit of Riemann sums evaluated by three nested single integrations. Cylindrical coordinates add the factor r to handle axial symmetry, spherical coordinates add rho-squared sine-phi for radial symmetry, and the general change of variables shows both volume elements are Jacobian determinants of the coordinate map. Surface area for a graph completes the measurement toolkit.\n",{"path":3954,"title":3955,"module":3947,"summary":3956},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals","Vector Fields and Line Integrals","A vector field assigns a vector to every point of space; the line integral of a field along a curve accumulates its tangential component, measuring work. Conservative fields are gradients of a potential, and for them the Fundamental Theorem for Line Integrals makes the integral depend only on the endpoints. Path independence, closed-loop integrals of zero, and the component test for a potential are three faces of the same property.\n",{"path":3958,"title":3959,"module":3947,"summary":3960},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence","Green's Theorem, Curl, and Divergence","Green's Theorem equates the line integral of a field around a positively oriented closed curve with a double integral over the enclosed region, turning a boundary computation into an area computation and vice versa. Curl measures local circulation and divergence measures local outflow; the two vector forms of Green's Theorem express the boundary integral as the integrated curl or divergence, the planar case of Stokes' and the Divergence Theorem.\n",{"path":3962,"title":3963,"module":3947,"summary":3964},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals","Parametric Surfaces and Surface Integrals","A parametric surface is the image of a two-variable vector function; its area element is the magnitude of the cross product of the two tangent vectors. The surface integral of a scalar function sums it over that area, and the flux integral of a vector field sums the field's normal component, measuring flow through the surface. Orientation by a choice of unit normal makes flux well-defined, the integral Stokes' and the Divergence Theorem operate on.\n",{"path":3966,"title":3967,"module":3947,"summary":3968},"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem","Stokes' Theorem and the Divergence Theorem","Stokes' Theorem lifts Green's Theorem into space: the line integral of a field around the boundary of a surface equals the flux of its curl through the surface. The Divergence Theorem relates the outward flux across a closed surface to the triple integral of divergence over the solid it encloses. Together with the Fundamental Theorem of Calculus and its line-integral and Green counterparts, they are one theorem: the integral of a derivative over a region equals the integral of the field over its oriented boundary.\n",{"path":3970,"title":3971,"module":306,"summary":306},"\u002Fcalculus","Calculus",{"path":3973,"title":3974,"module":5,"summary":3975},"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions","Measurement and Dimensions","Every physical quantity is a number attached to a unit, and that pairing is what lets you check an equation before computing anything, since terms that add together must carry the same dimensions. We build the SI base units and the notion of dimension, then use dimensional analysis to test a proposed relation and form scaling groups — a method that fixes a formula's shape but never its numerical constants. The lesson also sets how precisely a result may be stated, through significant figures, propagated uncertainty, and order-of-magnitude checks that catch errors a raw calculator answer hides.\n",{"path":3977,"title":3978,"module":5,"summary":3979},"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra","Vector Algebra","Force, velocity, and displacement all carry a direction, so mechanics needs an arithmetic that respects it; adding magnitudes alone gives the wrong answer the moment two arrows point different ways. We set up vectors and their components in a chosen basis, then build the two products that carry most of the physics — the dot product, which extracts the part of one vector along another and yields work and power, and the cross product, which measures oriented area and yields torque and angular momentum. Rotating the axes changes the components while leaving the vector itself untouched, and the same component method resolves a force along whatever directions a constraint picks out.\n",{"path":3981,"title":3982,"module":3983,"summary":3984},"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion","One-Dimensional Motion","Kinematics","Motion along a line already forces the two questions the whole of kinematics repeats: how fast is the object moving now, and where will it be next? Velocity and acceleration answer the first as derivatives of position; integrating them back — the signed area under a graph — answers the second. We derive the constant-acceleration equations, mark exactly where the \"constant\" assumption is load-bearing, and see why sign, not magnitude, is what carries direction.\n",{"path":3986,"title":3987,"module":3983,"summary":3988},"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs","Motion Graphs","Draw a motion as a graph and its two most useful facts turn geometric: the slope of the position curve is the velocity, and the area under the velocity curve is the displacement. We read motion in both directions — differentiating a graph for the next rate, integrating it back to recover position — and handle the curved, piecewise, and noisy graphs that real measurements produce. Along the way we see why a velocity estimated from two positions belongs to the midpoint of their interval, not its end.\n",{"path":3990,"title":3991,"module":3983,"summary":3992},"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion","Projectile Motion","Throw an object and it seems to trace one curved path, but the motion is really two independent one-dimensional motions running at once: constant velocity across the ground and free fall in the vertical. Splitting it that way turns every projectile question — how long it stays up, how far it lands, how high it climbs, whether it clears an obstacle — into a pair of equations you already know. We derive the parabolic trajectory, work both the forward and the inverse problems, and show why the familiar $45^\\circ$ range-maximizing angle holds only when launch and landing heights match.\n",{"path":3994,"title":3995,"module":3983,"summary":3996},"\u002Fmechanics\u002Fkinematics\u002Frelative-motion","Relative Motion","A velocity is only ever measured relative to some observer, so a boat's speed through the water, over the ground, and as seen from another boat are three different vectors. Choosing the right frame — and subtracting one motion from another — collapses river crossings, crosswind headings, pursuit, and closest-approach problems into a single vector equation. We build the relative-velocity and relative-position relations for uniformly moving frames, show why acceleration is the one quantity all such observers agree on, and note where rotating frames break the simple subtraction.\n",{"path":3998,"title":3999,"module":3983,"summary":4000},"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion","Circular Motion","An object going around a circle at a steady speed is still accelerating, because its velocity is forever changing direction — the fact that governs everything from a car on a curve to a satellite in orbit. We tie the angular description (angle, angular velocity, angular acceleration) to the linear one through $v=r\\omega$, split the acceleration into an inward part that turns the velocity and a tangential part that changes its speed, and extend the inward $v^2\u002Fr$ result to any curved path through its local radius of curvature. Constant angular acceleration then mirrors straight-line motion equation for equation.\n",{"path":4002,"title":4003,"module":4004,"summary":4005},"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws","Newton's Laws","Dynamics","What makes a body change its motion, and in which frames does the answer take its simplest form? Newton's three laws settle both: inertial frames are the ones where a force-free body coasts, force is whatever changes momentum, and every interaction pushes back on its source. We write the second law as $\\sum\\vec F=\\d\\vec p\u002F\\d t$, reduce it to $m\\vec a$ at constant mass, and separate what a scale actually reads — the support force — from the weight $m\\vec g$ it is so often mistaken for.\n",{"path":4007,"title":4008,"module":4004,"summary":4009},"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams","Free-Body Diagrams","Once several forces act on a body at once, the reliable way to predict its motion is to isolate that one body and draw every external push and pull on it — nothing more, nothing less. The free-body diagram is that discipline. We fix a system boundary, resolve $\\sum\\vec F=m\\vec a$ into components along axes chosen to fit the geometry, and solve for the unknowns a problem hands us — normal forces, tensions, friction, and the acceleration a constraint permits — seeing why internal forces drop out only when the boundary encloses both bodies that share them.\n",{"path":4011,"title":4012,"module":4004,"summary":4013},"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion","Friction and Curved Motion","Real surfaces grip before they slip, fluids push back harder the faster you move through them, and anything rounding a bend must be pulled toward the inside of the curve by something. This lesson supplies the force laws for those three cases. We bound static friction by $|f_s|\\leq\\mu_sN$ and switch to kinetic friction $\\mu_kN$ once sliding starts, model drag as a speed-dependent resistance that levels off at a terminal speed, and show that circular motion demands an inward net force $mv^2\u002Fr$ furnished by real interactions — friction, a banked normal force, tension — never by an invented outward one.\n",{"path":4015,"title":4016,"module":4004,"summary":4017},"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics","Numerical Dynamics","Most force laws — quadratic drag, coupled oscillators, anything nonlinear — admit no closed-form trajectory, so we advance the motion one small time step at a time and let arithmetic do what algebra cannot. This lesson turns $\\d\\vec y\u002F\\d t=f(t,\\vec y)$ into a marching rule. We derive the Euler, Euler--Cromer, midpoint, and Verlet updates, weigh their accuracy and stability, watch a drifting energy expose a bad scheme, and use step-halving and conserved quantities to separate the error of the method from the error of the model.\n",{"path":4019,"title":4020,"module":4004,"summary":4021},"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems","Center-of-Mass Systems","A firework bursts into a dozen fragments, yet one point keeps gliding along the original parabola as though nothing had happened. That point is the centre of mass, and following it collapses a many-body tangle into a single equation of motion. We define $\\vec R=\\frac1M\\sum_i m_i\\vec r_i$ and its continuous form, show that internal forces cancel so that only external ones move it, $M\\vec A_{\\rm cm}=\\sum\\vec F_{\\rm ext}$, and put the result to work on recoil, collisions viewed from the centre-of-mass frame, and rocket propulsion, where mass leaving the boundary carries momentum with it.\n",{"path":4023,"title":4024,"module":4025,"summary":4026},"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy","Work and Kinetic Energy","Energy","A constant push along a straight path is trivial to score, but real forces vary and bend along curved trajectories, and only the component along the motion transfers any energy. Work captures exactly that transfer as the line integral $W=\\int\\vec F\\cdot\\d\\vec r$, and the work-kinetic-energy theorem turns it into a statement about speed: the net work on a particle equals the change in its $\\tfrac12 mv^2$. We build work up from the dot product to the signed area under a force curve, derive the theorem from Newton's second law, and read power as its instantaneous rate $P=\\vec F\\cdot\\vec v$.\n",{"path":4028,"title":4029,"module":4025,"summary":4030},"\u002Fmechanics\u002Fenergy\u002Fpotential-energy","Potential Energy","When a force does the same work no matter which path a particle takes, that work can be stored as a function of position alone, and solving for the motion becomes bookkeeping instead of integration. We single out the forces that qualify — the conservative ones, for which $\\oint\\vec F\\cdot\\d\\vec r=0$ — define their potential energy through $\\vec F=-\\nabla U$, and use conservation of mechanical energy to read speeds, turning points, and equilibria straight off a potential curve. Friction breaks the shortcut, so we also track where mechanical energy leaks away as heat.\n",{"path":4032,"title":4033,"module":4025,"summary":4034},"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work","Multiparticle Work","A single particle has one velocity and one kinetic energy; a system of many can spin, deform, explode, and warm up while its centre of mass glides along as if nothing happened. Splitting the motion into a centre-of-mass part and an internal part separates the energy that momentum already fixes from the energy left free for relative motion, $K=\\tfrac12MV_{\\rm cm}^2+K'$. We derive the centre-of-mass work theorem, see why an explosion or a released spring can raise total kinetic energy with no external work at all, and use the reduced-mass and centre-of-mass frames to make collisions and internal transfers clean.\n",{"path":4036,"title":4037,"module":4025,"summary":4038},"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding","Mass-Energy and Binding","Relativity puts rest itself on the energy ledger: a mass $m$ carries energy $mc^2$ even when it sits still, so weighing a system's separated pieces and weighing the assembled whole give different answers, and the gap is binding energy. We convert freely between mass units and MeV, compute the energy that holds a nucleus together, and read the binding-energy-per-nucleon curve that explains why fusing light nuclei and splitting heavy ones both release energy. Reaction $Q$ values, thresholds, and recoil then follow from the same mass-difference accounting, once the frame and mass convention are fixed.\n",{"path":4040,"title":4041,"module":4025,"summary":4042},"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization","Photons and Quantization","Light delivers its energy in indivisible lumps: a photon of frequency $f$ carries exactly $hf$, and this one fact explains why a dim blue lamp ejects electrons that an intense red one cannot. We fix a photon's energy and momentum from its wavelength, follow the quanta through emission, absorption, and the photoelectric threshold $K_{\\rm max}=hf-\\phi$, and watch energy and momentum conservation together produce the Compton wavelength shift when a photon scatters from an electron. The recurring discipline is unit and frame care, where a stray factor of $10^9$ or a forgotten rest energy quietly ruins an answer.\n",{"path":4044,"title":4045,"module":4046,"summary":4047},"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions","Momentum and Collisions","Momentum","When two objects collide, the forces between them are too brief and too tangled to integrate directly, yet the result is fixed by one conserved quantity. Linear momentum $\\vec p=m\\vec v$ turns Newton's second law into the impulse-momentum theorem $\\vec J=\\Delta\\vec p$, and for an isolated system into a conservation law that holds through any internal collision, however dissipative. We use it to separate elastic from inelastic collisions, follow the centre of mass, and read impulse as the signed area under a force-time curve — always tracking which external impulses the chosen system and interval let us drop.\n",{"path":4049,"title":4050,"module":4046,"summary":4051},"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions","Center-of-Mass Collisions","A two-body collision that looks asymmetric in the laboratory becomes almost trivial in the frame that rides along with the centre of mass, where the total momentum is zero and the two momenta stay equal and opposite. We build that frame, reduce the pair to a single relative coordinate carrying the reduced mass $\\mu$, and show that an elastic collision there only rotates one momentum vector while its length holds fixed. Transforming back to the laboratory then handles elastic and inelastic collisions, scattering angles, and reaction thresholds with the same construction — and shows why relative speed, not laboratory kinetic energy, measures what a collision can convert.\n",{"path":4053,"title":4054,"module":4046,"summary":4055},"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion","Rocket Propulsion","A rocket speeds up by throwing mass backward, so its own mass drops as it flies and $\\vec F=m\\vec a$ no longer applies to a fixed body. Tracking the momentum the exhaust carries across the vehicle boundary gives thrust $T=Ru_e$ and, for a force-free burn, the rocket equation $\\Delta v=u_e\\ln(m_i\u002Fm_f)$ — a logarithm that makes large velocity changes expensive in propellant and forces staging. We then add the forces a real ascent cannot ignore, gravity, drag, and steering, and show how thrust and mass-flow records are cross-checked to infer the exhaust speed.\n",{"path":4057,"title":4058,"module":4059,"summary":4060},"\u002Fmechanics\u002Frotation\u002Frotational-inertia","Rotational Inertia","Rotation","Push a wheel and a merry-go-round with the same force and they speed up at wildly different rates: the same mass resists rotation differently depending on where it sits relative to the axis. That single fact is the moment of inertia, $I=\\int r_\\perp^2\\,\\d m$, and this lesson builds it from the ground up. We tie angular motion to linear through $s=r\\theta$, $v=r\\omega$, and $a_t=r\\alpha$, derive $I$ for rods, disks, and spheres, and use the parallel- and perpendicular-axis theorems to move between axes — always naming the axis, because the same body has as many moments of inertia as it has lines to spin about.\n",{"path":4062,"title":4063,"module":4059,"summary":4064},"\u002Fmechanics\u002Frotation\u002Frotational-dynamics","Rotational Dynamics","A force applied to a wheel does nothing unless it acts off the axis: what turns a rigid body is torque, force times lever arm. This lesson makes that precise and turns it into the rotational Newton's second law, $\\sum\\tau=I\\alpha$ about a fixed axis, the exact analogue of $\\sum F=ma$. From there we get rotational work $W=\\int\\tau\\,\\d\\theta$ and power $P=\\tau\\omega$, size a motor to a load, and solve pulleys and Atwood machines where the pulley's own inertia can no longer be ignored — always insisting that every torque be measured about the same axis.\n",{"path":4066,"title":4067,"module":4059,"summary":4068},"\u002Fmechanics\u002Frotation\u002Frolling-motion","Rolling Motion","A rolling wheel is doing two things at once — translating and spinning — but the no-slip condition $v_{cm}=R\\omega$ locks them together, and that single constraint is what makes rolling tractable. We use it to split the kinetic energy into $\\tfrac12Mv_{cm}^2+\\tfrac12I\\omega^2$, find how fast a cylinder reaches the bottom of an incline, and show why the contact point is instantaneously at rest. The static friction that enforces rolling does no work; we track its direction from the tendency to slip, and mark exactly where the model breaks once the required friction exceeds $\\mu_sN$.\n",{"path":4070,"title":4071,"module":4059,"summary":4072},"\u002Fmechanics\u002Frotation\u002Fangular-momentum","Angular Momentum","A skater pulls in her arms and spins faster, with no torque acting: that is angular momentum conservation, and it lets us answer questions that would be hopeless force by force. We build $\\vec L=\\vec r\\times\\vec p$, show it obeys $\\vec\\tau_{ext}=\\d\\vec L\u002F\\d t$, and use its conservation under zero external torque to link before and after in collisions, reconfigurations, and coupled rotors without ever resolving the internal forces. The catch is bookkeeping: the origin, the system boundary, and the frame must be fixed first, and a change in total $\\vec L$ always points to an external impulse someone forgot.\n",{"path":4074,"title":4075,"module":4059,"summary":4076},"\u002Fmechanics\u002Frotation\u002Frolling-resistance","Rolling Resistance","Ideal rolling should coast forever, yet every real wheel slows down. The reason is that a deformable tire and road do not press through a single point: the contact patch spreads, the normal-force resultant shifts ahead of the axle, and that offset is a resisting moment even with no gross sliding. We package it as an equivalent force $F_{rr}=C_{rr}N$, tie the coefficient to load, surface, speed, and temperature, and use coast-down, towing, and traction tests to separate this contact loss from aerodynamic drag, bearing friction, and the adhesion limit where rolling gives way to skidding.\n",{"path":4078,"title":4079,"module":4059,"summary":4080},"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession","Gyroscopic Precession","A spinning top leans over but does not fall — it swings its axis in a slow horizontal circle instead. The paradox dissolves once torque is read as the rate of change of a vector: gravity's torque is perpendicular to the spin angular momentum, so it turns $\\vec L$ rather than toppling it. We derive the steady precession rate $\\Omega\\simeq Mgr\u002F(I_s\\omega_s)$ in the fast-top limit, state the assumptions it leans on — dominant spin, slow tilt, negligible bearing torque — and read nutation, support motion, and a decaying spin as the ways real gyroscopes depart from it.\n",{"path":4082,"title":4083,"module":4084,"summary":4085},"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits","Keplerian Orbits","Gravitation and Matter","Why do the planets trace ellipses rather than any other curve? Newton's inverse-square law collapses the two-body problem onto a single conic section, and the answer falls out of two conserved quantities: a central force can exert no torque, so angular momentum is fixed, and gravity is conservative, so energy is fixed. We read an orbit's size and shape straight off those invariants, recover all three of Kepler's laws, and derive escape speed, the vis-viva relation, and the timing of a pass. We also mark where the ideal ellipse breaks down — drag, oblateness, and a third body slowly move a real orbit.\n",{"path":4087,"title":4088,"module":4084,"summary":4089},"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields","Gravitational Fields","Instead of tracking the force between every pair of masses, we attach a field to the source and ask a test mass to read it off locally. That move pays off because gravity is conservative: the field is the gradient of a single scalar potential, and potentials from many sources simply add. We build the field-potential picture, use spherical symmetry and the shell theorem to get the point-mass exterior field and the zero interior field of a shell, and read tides straight out of the field's gradient. Along the way we mark exactly when the constant-$g$ and point-mass shortcuts hold and when a shape correction is needed.\n",{"path":4091,"title":4092,"module":4084,"summary":4093},"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium","Static Equilibrium","What does it take for a loaded structure to stay put? A body at rest needs its forces to cancel and its turning effects to cancel — $\\sum\\vec F=0$ and $\\sum\\vec\\tau=0$ about any point — and almost all of statics is the craft of turning a physical setup into those equations. We build free-body diagrams, replace supports, cables, friction, couples, and distributed loads with their idealized reactions, and locate the centre of gravity that decides whether a body tips. We also count equations against unknowns to separate a determinate problem from one that needs the material's deformation to resolve, and read every negative or inconsistent reaction as a sign that a contact or a boundary was chosen wrong.\n",{"path":4095,"title":4096,"module":4084,"summary":4097},"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics","Fluid Statics","A fluid at rest cannot support a shear, so the only stress it carries is a pressure that must grow with depth to hold up the fluid above it. That single balance, $\\d p\u002F\\d z=-\\rho g$, runs the whole subject: it sets manometer readings, the force on a dam, and — integrated over a submerged boundary — Archimedes' buoyant force $F_B=\\rho g V_{\\rm disp}$. We derive these, use them to decide when a body floats and whether it floats upright, and mark where acceleration, rotation, compressibility, or capillarity forces a richer pressure model.\n",{"path":4099,"title":4100,"module":4084,"summary":4101},"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow","Fluid Flow","Two accounting rules carry most of steady flow: mass cannot pile up, so the same volume crosses every section each second, and mechanical energy is conserved along a streamline when the fluid is ideal. From those we get continuity, Bernoulli's relation between pressure, speed, and height, and the results that follow — Torricelli's efflux speed, the Venturi meter, the Pitot tube. We then let go of the ideal assumptions one at a time: viscosity adds wall shear and head loss, Reynolds number decides laminar versus turbulent, and Mach number marks where a gas stops behaving as incompressible.\n",{"path":4103,"title":4104,"module":4084,"summary":4105},"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion","Orbital Motion","A circular orbit is nothing but free fall with enough sideways speed to keep missing the ground, and setting gravity equal to the centripetal requirement fixes that speed and the period once and for all. From the same energy bookkeeping we read off escape speed, sort orbits into bound, parabolic, and hyperbolic by the sign of their specific energy, and see why a tangential burn is the efficient way to change an orbit. We build the Hohmann transfer and its launch window, work the numbers for a geostationary orbit and an escape burn, and mark where finite thrust, perturbations, and an uncertain initial state pull a real trajectory off the ideal.\n",{"path":4107,"title":4108,"module":4084,"summary":4109},"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity","Stress and Elasticity","Rigid bodies are a fiction; every real material stretches, shears, or squeezes under load, and the useful question is how much. We define stress as force per area and strain as fractional deformation, then find that for small deformations the two are simply proportional — Hooke's law — with Young's, shear, and bulk moduli as the constants for stretch, twist, and volume change. From these we compute extensions, torsional twist, and stored elastic energy, and read a tensile curve for the yield, ultimate, and fracture points where linear elasticity ends. We also mark the practical limits: stress concentrations, fatigue, and the multiaxial states a single uniaxial modulus cannot capture.\n",{"path":4111,"title":4112,"module":4113,"summary":4114},"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators","Damped Oscillators","Oscillations and Waves","Every real oscillator eventually stops: friction, drag, and internal loss drain its energy, so free motion is a decay rather than a permanent swing. Adding a velocity-proportional resistance to the spring-mass equation produces one dimensionless number, $b\u002F(2\\sqrt{mk})$, that decides whether the mass rings down through many cycles, returns once without overshoot, or crawls back slowly. We solve the three regimes, tie the observed decay to the power balance $b\\dot x^2$, and turn a measured ring-down into the decay rate and quality factor of the apparatus — reading damping off the data instead of assuming it.\n",{"path":4116,"title":4117,"module":4113,"summary":4118},"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves","Travelling Waves","A wave carries a shape, not the material: each element of a rope or air column oscillates in place while the disturbance travels through it. Writing that shape as $f(x\\mp vt)$ turns \"the pattern moves\" into a statement about the cosine's argument, and a local force balance on one string segment fixes the speed at $v=\\sqrt{T\u002F\\mu}$ — restoring stiffness over inertia, with amplitude nowhere in it. We build the sinusoidal wave and its phase, derive the wave equation from Newton's second law, and follow the energy a travelling wave transports, then check speed and power against those predictions.\n",{"path":4120,"title":4121,"module":4113,"summary":4122},"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition","Wave Superposition","When two waves cross the same point, what does a probe read? In a linear medium the answer is arithmetic: the displacements add, $y=y_1+y_2$, and the pulses pass through each other unchanged. That one rule produces interference — reinforcement where the signs agree, cancellation where they oppose — and it guards against a common mistake, since displacement can vanish at an instant while the energy sits in transverse motion instead. We work out the signed sum, the phase bookkeeping for equal-frequency components, and why a null in the record is not a null in the wave.\n",{"path":4124,"title":4125,"module":4113,"summary":4126},"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves","Standing Waves","Clamp a string at both ends and only certain frequencies survive: the ends must be nodes, and that single geometric demand quantizes the wave into a discrete set of modes $f_n=nv\u002F(2L)$. The travelling wave becomes a fixed pattern of nodes and antinodes — standing, not moving — because equal waves running in opposite directions superpose. We build the standing wave from its counter-propagating pieces, read the harmonic sequence off the boundary conditions (half-wavelengths for a fixed-fixed string, odd quarter-wavelengths for a closed pipe), and test the ideal model against node scans and resonance peaks.\n",{"path":4128,"title":4129,"module":4113,"summary":4130},"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves","Sound Waves","Sound is a pressure wave so small that a loud tone displaces air molecules by less than the width of an atom, yet a microphone reads it easily — because pressure, not displacement, is what the ear and the instrument sense. The acoustic impedance $Z=\\rho c$ ties pressure, density, and particle velocity together, fixes the intensity a wave carries, and sets the reference for the decibel, a logarithm that tames a $10^{12}$ range in power. We derive the sound speed from the gas's stiffness, convert between pressure and intensity levels, and treat the measurement itself — calibration, geometry, background, averaging — as part of the physics.\n",{"path":4132,"title":4133,"module":4113,"summary":4134},"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect","Doppler Effect","A passing siren drops in pitch not because the source changes but because motion repacks the wavefronts: an approaching source crowds its crests, a receding one stretches them, and a moving listener samples them at a different rate. For mechanical waves every velocity is measured against the medium, and one signed ratio $f_r=f_s(v-u_r)\u002F(v-u_s)$ captures both effects at once. We separate source motion, which sets crest spacing, from receiver motion, which sets arrival rate, invert the shift to recover radial velocity, and mark where the model breaks — supersonic sources, moving air, and reflected paths that carry two shifts, not one.\n",{"path":4136,"title":4137,"module":4113,"summary":4138},"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets","Wave Packets","No real signal is a single frequency: a disturbance that starts and stops is built from a band of wave numbers, and the width of that band is what makes it local. We ask how such a packet moves — carrier crests at the phase velocity $v_\\mathrm p=\\omega\u002Fk$, the envelope at the group velocity $v_\\mathrm g=\\d\\omega\u002F\\d k$ — and why the two differ once a medium is dispersive. Curvature $\\d^2\\omega\u002F\\d k^2$ spreads and chirps the packet as it travels, and the Fourier reciprocity that ties bandwidth to duration explains why a finite record, aliasing, or a coarse probe can imitate that spreading unless the sampling limits are respected.\n",{"path":4140,"title":4141,"module":4113,"summary":4142},"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling","Beats and Coupling","Add two tones a few hertz apart and the sum swells and fades at their difference frequency — a beat — though neither source is changing. We work out that envelope, then ask the mechanical version of the same question: join two oscillators and a single resonance splits into normal modes, with energy sloshing between the coordinates at their frequency difference. The lesson identifies when a slow amplitude envelope signals genuine coupling rather than two independent sources, drift, or deliberate modulation, reading it from envelope timing, spectral sidebands, and the mode shapes.\n",{"path":4144,"title":4145,"module":4113,"summary":4146},"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion","Simple Harmonic Motion","Any system pushed back toward equilibrium by a force proportional to its displacement obeys one equation, $\\ddot x+\\omega_0^2x=0$, and so moves sinusoidally at $\\omega_0=\\sqrt{k\u002Fm}$ whatever the amplitude. We derive that motion, follow its energy $E=mv^2\u002F2+kx^2\u002F2$ trading between kinetic and potential form at constant total, and read the elliptical phase-space orbit Hooke's law implies. Period, amplitude, velocity, and acceleration then supply redundant checks: an amplitude-dependent period or a curved force residual is the signature that the linear model has failed, and mass-loading and offset tests separate a calibration error from a real frequency shift.\n",{"path":4148,"title":4149,"module":4113,"summary":4150},"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion","Pendulum Motion","A pendulum keeps time only because, for small swings, gravity supplies a restoring torque proportional to the angle — and $T=2\\pi\\sqrt{L\u002Fg}$ then follows without the mass appearing at all. We derive that result, mark exactly which assumptions carry it (small angle, negligible pivot loss, a rigid support), then relax them: finite amplitude lengthens the period through an elliptic integral, and an extended body replaces $L$ with the ratio of its moment of inertia to its center-of-mass distance. How the period drifts with amplitude or pivot position is what diagnoses the geometric, damping, and distributed-mass corrections.\n",{"path":4152,"title":4153,"module":4113,"summary":4154},"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators","Driven Oscillators","Drive a damped oscillator at a frequency you control and it eventually forgets its own: $m\\ddot x+b\\dot x+kx=F_0\\cos\\omega t$ settles into a steady response whose amplitude and phase depend sharply on how close the drive sits to resonance. We solve for that response, show how damping alone fixes the resonance width, the peak power, and the settling time, and treat base excitation as the same problem with a different input. The steady-state formulas hold only for constant $m$, $b$, and $k$; level-dependent peaks or hysteresis between up- and down-sweeps are how nonlinearity or an extra mode announces itself.\n",{"path":4156,"title":4157,"module":4113,"summary":4158},"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries","Wave Boundaries","A pulse traveling along a string does something abrupt where the string's properties change: part reflects, part transmits, and which is which is set by the impedance mismatch alone. We impose continuity of displacement and transverse force at the join to get the reflection and transmission coefficients in terms of $Z=\\sqrt{T\\mu}$, fix their signs and the polarity flip, and balance the energy. The clean result assumes linear, nondispersive segments meeting at a localized join; pulse polarity, return timing, and energy ratios are the measurements that expose a real connector's mass, loss, or distributed transition.\n",{"path":4160,"title":4161,"module":4162,"summary":4163},"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases","Kinetic Theory of Ideal Gases","Thermodynamics","A gas has no springs and no gears, yet it pushes on its container with a definite pressure and stores energy in a lawful way. Kinetic theory explains both from the motion of the molecules alone: pressure is the accumulated recoil of countless elastic impacts, and temperature is the average translational kinetic energy each molecule carries. We derive $pV=\\tfrac13Nm\\overline{v^2}$ from momentum transfer, read off $\\overline{K}_{\\rm tr}=\\tfrac32kT$, and use the Maxwell–Boltzmann distribution to separate the most probable, mean, and rms speeds — each the right average for a different question — while marking where the dilute, classical assumptions stop holding.\n",{"path":4165,"title":4166,"module":4162,"summary":4167},"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics","First Law of Thermodynamics","Heat a gas and it may warm, expand, or both; compress it and the same energy can reappear as a temperature rise. The first law settles the bookkeeping: internal energy is a state property whose change equals the heat added plus the work done on the system, $\\Delta E_{\\rm int}=Q_{\\rm in}+W_{\\rm on}$. We fix a system boundary and one sign convention, compute boundary work as $\\int p\\,\\d V$ along a path, and use calorimetry to measure heat and heat capacities. The recurring point is that heat and work are path-dependent transfers while their sum is not, so an energy ledger closes only once every boundary crossing is named.\n",{"path":4169,"title":4170,"module":4162,"summary":4171},"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law","Entropy and the Second Law","The first law lets energy flow either way; it never says which way heat actually goes. The second law supplies the missing arrow. Entropy, defined through the reversible transfer $\\d S=\\delta Q_{\\rm rev}\u002FT$, can only increase in an isolated system, and that single inequality fixes the direction of heat flow and caps every engine, refrigerator, and heat pump at its Carnot value. We build entropy ledgers for reservoirs and working substances, separate the entropy carried by heat from the entropy generated by irreversibility, and read the sign of the total as a hard check on any proposed thermal machine.\n",{"path":4173,"title":4174,"module":4162,"summary":4175},"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes","Thermal Processes","Heat rarely sits still: it stretches solids, pushes real gases off their ideal isotherms, and leaks across walls by conduction, convection, and radiation. Each behavior becomes a number a designer can use. Thermal expansion sets the gaps in a bridge and the stress in a clamped rod; the van der Waals equation and a phase diagram fix when $pV=nRT$ or a latent-heat term applies; Fourier's law, Newton cooling, and Stefan–Boltzmann radiation give the rate of heat flow. We assemble these into thermal-resistance networks and transient time constants, then mark where contact resistance, phase change, or a hidden thermal bridge breaks the simple model.\n",{"path":4177,"title":4178,"module":4162,"summary":4179},"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes","Phase Changes","Add heat to ice and its temperature climbs — until it reaches $0\\ ^\\circ\\mathrm C$, where the thermometer stalls while the ice melts. That plateau is the whole subject: at a phase boundary the energy rearranges molecules, $Q=mL$, instead of raising temperature, which resumes only once one phase is gone. We stage a heating path into sensible-heat legs ($Q=mc\\Delta T$) and latent plateaus, use the Clausius–Clapeyron relation to track how a boiling point moves with pressure, and solve calorimetry by testing each coexistence endpoint — so a melt fraction that lands outside $[0,1]$ flags a wrong final-state guess rather than a real state.\n",{"path":4181,"title":4182,"module":4162,"summary":4183},"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines","Thermal Machines","An engine, a refrigerator, and a heat pump are one machine read three ways: each shuttles heat between a hot and a cold reservoir while trading work at the boundary, and only the flow you call useful separates them. A heat engine turns part of $Q_h$ into work, $W=Q_h-Q_c$; a refrigerator spends work to pull $Q_c$ from the cold side; a heat pump counts the warm-side delivery instead. We measure each with its own ratio — efficiency or coefficient of performance — bound them all by the Carnot limit that reservoir temperatures alone set, and track how finite temperature differences, throttling, and friction generate entropy and pull real machines below that bound.\n",{"path":4185,"title":4186,"module":306,"summary":306},"\u002Fmechanics","Mechanics & Dynamics",{"path":4188,"title":4189,"module":4190,"summary":4191},"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors","Charge and Conductors","Electric Fields","Rub two objects together and one pulls electrons from the other; nothing is created, only moved. We define what electric charge is — conserved, additive, and quantized in units of $e$ — and why a conductor's mobile carriers rearrange until its interior field vanishes and its surface sits at one potential. We follow charge through contact, induction, and grounding, treat the field-free cavity that turns a conductor into a shield, and mark where finite conductivity and leakage set the limits of the electrostatic picture.\n",{"path":4193,"title":4194,"module":4190,"summary":4195},"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law","Coulomb's Law","Two charges at rest push or pull along the line joining them, and the whole of electrostatics is assembled by adding up such pairs. We measure that force — its inverse-square falloff, its linear dependence on each charge, the sign that says attract or repel — and write it as a vector so direction survives superposition. We work the magnitude and component forms on real numbers, check them against limiting cases and dimensions, and fix the point-charge approximation to source sizes small against every separation.\n",{"path":4197,"title":4198,"module":4190,"summary":4199},"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force","Electric Field and Force","Rather than ask how one charge reaches across empty space to another, we credit the source with a field that fills the space and let a second charge respond to whatever field sits at its own location. Electric field is force per unit positive test charge, $\\vec E=kq\\hat r\u002Fr^2$ for a point source, and source fields add before any receiving charge is placed. We compute those fields and the force $\\vec F=q\\vec E$ they exert, then follow a charge along its parabolic path through a uniform field and into nonuniform fields where the dynamics turn position-dependent.\n",{"path":4201,"title":4202,"module":4190,"summary":4203},"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps","Electric Field Maps","A field is a vector at every point of space, and the quickest way to grasp one is to draw it. We build the two standard pictures — continuous field lines tangent to $\\vec E$, and scaled vector arrows — and read direction, magnitude, and the location of nulls straight off them. We fix what a line drawing can and cannot say: density encodes magnitude only under a stated seeding rule, and integral curves never cross at a regular point. From there we work the topology near sources, sinks, and conductor surfaces, and state the step-size and interpolation checks a numerical map must pass.\n",{"path":4205,"title":4206,"module":4190,"summary":4207},"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles","Electric Dipoles","Most neutral matter carries no net charge yet still responds to an electric field, because its positive and negative charge sit slightly apart. That separation is a dipole, moment $\\vec p=q\\vec d$ pointing from the negative to the positive charge, and it is the leading term in how any neutral distribution looks from far away. We derive the torque $\\vec p\\times\\vec E$ and energy $-\\vec p\\cdot\\vec E$ a uniform field imposes, the net force a field gradient adds, and the axial and equatorial $1\u002Fr^3$ fields the pair produces, then measure how far out the point-dipole approximation still holds.\n",{"path":4209,"title":4210,"module":4211,"summary":4212},"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields","Continuous Charge Fields","Continuous Charge Distributions","A charged rod, ring, or disk is not a point, yet its field is still nothing but Coulomb's law added up over the charge it carries. We replace the discrete sum by an integral, with $\\d q=\\lambda\\d\\ell$, $\\sigma\\d A$, or $\\rho\\d V$, so the real work becomes geometry: writing the vector from each source element to the field point, and letting symmetry cancel the components that must cancel before any integral is attempted. We carry the line, ring, and disk fields through in full, then check each result against its near field, its far field, and its dimensions.\n",{"path":4214,"title":4215,"module":4211,"summary":4216},"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors","Gauss's Law and Conductors","Adding up Coulomb's law over a whole distribution is laborious; Gauss's law trades that sum for a single statement, that the flux of $\\vec E$ out of any closed surface counts the charge inside, $\\oint\\vec E\\cdot\\d\\vec A=Q_{\\rm enc}\u002F\\varepsilon_0$. The law is always true, but it hands over the field only when the source is symmetric enough to pull $E$ outside the integral. We apply it to spheres, lines, and sheets, then turn it on conductors, where the zero interior field drives every excess charge to the surface and fixes the normal-field jump $\\sigma\u002F\\varepsilon_0$, the charge induced on a cavity wall, and electrostatic shielding.\n",{"path":4218,"title":4219,"module":4220,"summary":4221},"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential","Point-Charge Potential","Electric Potential","The electrostatic force is conservative, so the work it does between two points\ndepends only on the endpoints. That lets us trade the vector field for a single\nscalar attached to each point, the electric potential, the potential energy a unit\ncharge would have there. We build potential from the work integral, fix the usual\nreference at infinity, and add point sources as scalars, $V=k\\sum_i q_i\u002Fr_i$,\navoiding the vector bookkeeping the field demands. Signed charges, the reference\nchoice, equipotential motion, and far-field expansions each give an independent\ncheck on a result.\n",{"path":4223,"title":4224,"module":4220,"summary":4225},"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials","Potential Gradients and Equipotentials","Given the potential everywhere, how do we recover the field? The field is the\nnegative gradient, $\\vec E=-\\nabla V$: it points down the steepest local drop in\npotential, and its magnitude is set by how fast $V$ changes, not by the shape of a\ncontour. We read off components with directional derivatives, reconstruct fields\nfrom measured potential grids using centered differences, and use closed-loop\nintegrals and grid refinement to test whether a reconstructed field is physically\nconsistent.\n",{"path":4227,"title":4228,"module":4220,"summary":4229},"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure","Electrostatic Energy and Pressure","Assembling a charge configuration takes work, and that work is stored, but where\nis it kept and how much is there? We total it two ways: as a sum over the charges,\n$U=\\tfrac12\\sum_i q_iV_i$, and as an integral over the field itself,\n$u_E=\\tfrac12\\varepsilon_0E^2$, energy the field carries in every region it fills.\nDifferentiating the stored energy at fixed charge or at fixed voltage recovers the\nmechanical force on a conductor, and at a charged surface the same field scale\nappears as an outward electrostatic pressure. We work the parallel-plate case in\nfull and mark where curvature and fringing make the pressure nonuniform.\n",{"path":4231,"title":4232,"module":4220,"summary":4233},"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems","Laplace Boundary Problems","Often the charges are not given, only the conductors and the voltages held on\nthem, and the potential in the empty space between has to be found. There $V$ obeys\nLaplace's equation $\\nabla^2V=0$, and the boundary data alone determine a unique solution.\nWe solve it two ways: separation of variables into boundary-matched modes, whose\nhigher spatial frequencies die away with depth into the domain, and finite-difference\nrelaxation for boundaries no analytic mode fits. Residual norms, boundary error, and\nflux balance tell us when the computed potential and its field can be trusted.\n",{"path":4235,"title":4236,"module":4220,"summary":4237},"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials","Continuous Charge Potentials","When charge is spread over a line, a surface, or a volume, the sum over point\nsources becomes an integral, $V(\\vec r)=k\\int \\d q\u002F|\\vec r-\\vec r'|$. Because\npotential is a scalar, this integral sidesteps the component algebra the field\nwould force, until the field is actually wanted through $\\vec E=-\\nabla V$. We set\nup the right density element for each geometry, choose a workable reference, handle\nthe integrable singularities that arise when the observation point sits on the\ncharge, and check every result against symmetry, dimensions, and the far-field\nmultipole limit.\n",{"path":4239,"title":4240,"module":4241,"summary":4242},"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals","Capacitance Fundamentals","Capacitance","How much charge must you separate onto two conductors to hold a given voltage between\nthem? That ratio, $C=Q\u002F\\Delta V$, is fixed by the conductor geometry and the medium,\nnot by how much charge is presently stored. We compute it from the field for the\nparallel-plate, isolated-sphere, concentric-sphere, and coaxial geometries, trace how\nsurface charge and boundary conditions set each result, and see where fringing,\nguarding, and stray coupling separate the ideal formula from what a bridge measures.\n",{"path":4244,"title":4245,"module":4241,"summary":4246},"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks","Capacitor Networks","Wire several capacitors together and the source sees one equivalent capacitance — but\nwhich? The answer comes not from how the symbols are drawn but from which conductors\nshare a node: parallel branches hold a common voltage and add, $C_{\\rm eq}=\\sum_iC_i$,\nwhile series branches share a common charge and add reciprocally. We derive both rules\nfrom charge conservation on the floating internal node, then extend the node-charge\nmethod to unequal, precharged, and stray-coupled branches and carry a worked reduction\nthrough to the charge and voltage on every element.\n",{"path":4248,"title":4249,"module":4241,"summary":4250},"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force","Capacitor Energy and Force","Charging a capacitor takes work, because every increment of charge is pushed through\nthe voltage the earlier charge already established. We total that work three\nequivalent ways, $U=Q^2\u002F(2C)=Q\\Delta V\u002F2=C(\\Delta V)^2\u002F2$, locate it in the field as\na density $u=\\tfrac12\\epsilon_0E^2$, then let the plates move. Differentiating the\nstored energy at fixed charge, or the coenergy at fixed voltage, gives the mechanical\nforce; the two boundaries differ only by the work the source supplies. We work the\nparallel-plate attraction and its electrostatic pressure in full, and follow the same\ngradient into pull-in, tilt, comb drives, and traceable force calibration.\n",{"path":4252,"title":4253,"module":4241,"summary":4254},"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown","Dielectric Polarization and Breakdown","Slide a dielectric between the plates and the capacitance rises — but why, and how\nhard can you drive it before the insulator fails? Bound charge answers the first:\npolarization $\\vec P$ sets up surface and volume charge that partly cancels the\napplied field, so $\\vec D=\\varepsilon_0\\vec E+\\vec P$ separates what the circuit\ncontrols from what the material contributes. We follow the field across layered\ndielectrics and interfaces, tie permittivity and loss to their frequency dependence,\nand treat dielectric strength as a measured, geometry-dependent limit rather than one\nmaterial number.\n",{"path":4256,"title":4257,"module":4258,"summary":4259},"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance","Current and Resistance","Direct-Current Circuits","What does it mean, physically, for charge to flow, and what sets how hard a wire resists that flow? Current counts charge crossing a surface, $I=\\int\\vec J\\cdot\\d\\vec A$, and traces back to a slow drift of many carriers, $\\vec J=nq\\vec v_d$. We establish when the linear law $V=IR$ actually holds, how resistivity and geometry combine into bulk resistance, why real sources sag under load through their internal resistance, and how the three power forms $P=IV=I^2R=V^2\u002FR$ tie electrical work to heating and component ratings.\n",{"path":4261,"title":4262,"module":4258,"summary":4263},"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis","Kirchhoff Network Analysis","Once a circuit has more than one loop, no amount of series-parallel folding will reduce it — you need the two conservation laws written as equations. Kirchhoff's junction law is charge conservation at a node; his loop law is energy conservation around a closed path. We turn a labelled network into a linear system in node voltages or mesh currents, fix the sign conventions so a negative answer just means a reversed arrow, and use power balance as an independent check that the algebra describes the circuit that was actually built.\n",{"path":4265,"title":4266,"module":4258,"summary":4267},"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients","RC Transients","How does a circuit get from one steady state to the next when a capacitor refuses to change its voltage all at once? Because a jump would demand infinite current, an RC circuit slides between states exponentially, with a single time constant $\\tau=RC$ that sets the whole schedule: charging fills as $1-e^{-t\u002F\\tau}$, discharge empties as $e^{-t\u002F\\tau}$. We solve the first-order loop equation, read the response off three numbers — the switch-instant voltage, the final dc voltage, and the Thevenin resistance the capacitor sees — and mark where source and probe resistance shift $\\tau$ or where a second storage element hides a mode a one-$\\tau$ fit misses.\n",{"path":4269,"title":4270,"module":4271,"summary":4272},"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories","Magnetic Trajectories","Magnetic Field","A charged particle in a magnetic field never speeds up or slows down, yet its path curves relentlessly. We work out why: the magnetic force is always perpendicular to velocity, so it does no work and bends the transverse motion into a circle of radius $r=mv_\\perp\u002F(|q|B)$ while leaving the parallel motion untouched, producing a helix. We derive the cyclotron frequency, show why it is independent of speed until relativity intervenes, and turn the geometry around: a measured curvature reads back a particle's momentum, which is how tracking detectors weigh what they cannot see.\n",{"path":4274,"title":4275,"module":4271,"summary":4276},"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect","Hall Effect","Current tells you charge is moving, but not whether the movers are positive or negative, nor how many there are. A magnetic field settles both questions. Push current through a strip in a transverse field and the carriers pile up on one edge until a transverse electric field just balances the magnetic deflection; the sign of the resulting Hall voltage names the carrier's charge and its size counts the carriers per volume. We derive the balance $q\\vec E+q\\vec v_d\\times\\vec B=0$, read off $V_H=IB\u002F(nqt)$, and see why field-and-current reversal is what separates the real Hall signal from the offsets that mimic it.\n",{"path":4278,"title":4279,"module":4271,"summary":4280},"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors","Magnetic Force on Conductors","A magnet pushes on a current-carrying wire even though the wire is electrically neutral. The reason is that each moving carrier feels the Lorentz force, and those microscopic pushes add up to a force the wire's supports must hold. We sum them into $\\d\\vec F=I\\,\\d\\vec\\ell\\times\\vec B$, collapse it to $\\vec F=I\\vec L\\times\\vec B$ for a straight segment in a uniform field, and see exactly when that shortcut fails and the full path integral is needed. The same law runs backward as a measurement: a force-versus-current slope weighs a magnetic field against a known length.\n",{"path":4282,"title":4283,"module":4271,"summary":4284},"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles","Magnetic Dipoles","A compass needle turns to point north; a current loop in a field does the same thing, and for the same reason. Both are magnetic dipoles, and a uniform field cannot push a dipole anywhere, only twist it. We package a loop's response into one vector, the magnetic moment $\\vec\\mu=IA\\hat n$, from which torque $\\vec\\tau=\\vec\\mu\\times\\vec B$ and orientation energy $U=-\\vec\\mu\\cdot\\vec B$ both follow. Stable alignment sits at the energy minimum, a field gradient is what it takes to produce a net force $\\vec F=\\nabla(\\vec\\mu\\cdot\\vec B)$, and the same moment reappears whenever anything from an electron to a planet acts magnetic.\n",{"path":4286,"title":4287,"module":4271,"summary":4288},"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry","Mass Spectrometry","To weigh a single atom you cannot use a scale, so you use a magnetic field instead. A charged ion of unknown mass bends in a field by an amount that depends on its momentum and charge, so if every ion enters with the same velocity, its landing position reads off its mass-to-charge ratio directly. We build the instrument in two stages: crossed electric and magnetic fields that pass only ions with $v=E\u002FB$, and a magnetic sector that bends the survivors along $r=mv\u002F(|q|B)$. Then we ask what blurs a spectral line and how reference ions turn a position into a calibrated mass.\n",{"path":4290,"title":4291,"module":4292,"summary":4293},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields","Moving-Charge Fields","Magnetic Sources","Every magnetic field comes from charge in motion, and the simplest source is a single point charge drifting past. We work out the field it produces — normal to both the velocity and the line of sight, falling off as the inverse square — and read off why it vanishes straight ahead of the charge and peaks broadside. Summing many such charges is the bridge to steady currents, valid while speeds stay far below $c$ and the motion changes little during the time its field takes to propagate outward.\n",{"path":4295,"title":4296,"module":4292,"summary":4297},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law","Biot–Savart Law","A steady current is a continuous stream of current elements, and the Biot–Savart law hands each one a magnetic contribution — a right-hand cross product that falls off as the inverse square of distance. Summing the contributions along a conductor is a vector line integral, which we carry out for the straight wire to get the endpoint-angle formula. The infinite-wire field $B=\\mu_0 I\u002F2\\pi s$ falls out as the limit where both ends recede, and we mark how fast a finite wire departs from it and when a thin-filament model is safe.\n",{"path":4299,"title":4300,"module":4292,"summary":4301},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops","Circular Current Loops","A ring of current is the simplest source with a well-defined magnetic axis, and it is the building block of every coil and electromagnet. Symmetry kills the transverse Biot–Savart contributions along that axis and leaves a single clean integral; we evaluate it to get $B_z=\\mu_0 I R^2\u002F[2(R^2+z^2)^{3\u002F2}]$, read off the centre field $\\mu_0 I\u002F2R$, and watch it fall into the $1\u002Fz^3$ tail of a magnetic dipole far away. Stacking turns just adds their axial contributions, which is what makes a solenoid out of a pile of loops.\n",{"path":4303,"title":4304,"module":4292,"summary":4305},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law","Ampère’s Law","When a current arrangement is symmetric enough, the Biot–Savart integral is overkill: Ampère's law, $\\oint_C\\vec B\\cdot\\d\\vec\\ell=\\mu_0 I_{\\rm enc}$, gets the field from a single line of reasoning about how much current a loop encloses. We see why the law holds for any steady current, then use cylindrical, planar, and toroidal symmetry to turn the circulation into simple algebra — the field inside and outside a wire, an infinite sheet, a solenoid, and a toroid. We also mark the catch: without symmetry the law still holds but no longer hands you the field pointwise.\n",{"path":4307,"title":4308,"module":4292,"summary":4309},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism","Gauss’s Law for Magnetism","Electric field lines start and end on charges; magnetic field lines do neither, because no one has ever found an isolated magnetic pole. That single experimental fact is Gauss's law for magnetism: the flux of $\\vec B$ through any closed surface is zero, $\\oint\\vec B\\cdot\\d\\vec A=0$, or in differential form $\\nabla\\cdot\\vec B=0$. We work through what it says — every field line that enters a closed surface must leave it, so field lines close on themselves — and, just as important, what it does not say, since flux through an open surface is generally nonzero.\n",{"path":4311,"title":4312,"module":4292,"summary":4313},"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials","Magnetic Materials","Put matter in a magnetic field and its atoms respond, each acting as a tiny current loop; the aligned moments per unit volume are the magnetization $\\vec M$, whose bound currents add to the field. Separating what we control (the free current) from what the material supplies leads to $\\vec H$ and the relation $\\vec B=\\mu_0(\\vec H+\\vec M)$. We sort materials into diamagnets, paramagnets, and ferromagnets by how $\\vec M$ answers, follow a ferromagnet around its hysteresis loop, and see why the loop's area is the energy dissipated per cycle and why a sample's shape changes the field it actually feels.\n",{"path":4315,"title":4316,"module":4317,"summary":4318},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux","Magnetic Flux","Electromagnetic Induction","A magnetic field threading a loop collapses to one signed number, the flux, and every induced voltage in this module turns out to be a rate of change of that number — so defining the flux and its sign comes first. We define it as the surface integral of $\\vec B$ over an oriented surface, reduce it to $BA\\cos\\theta$ for a uniform field on a flat loop, and carry the flux linkage $N\\Phi_B$ of a coil. The chosen normal fixes the sign; reversing it flips the sign without touching the field. Nonuniform fields and curved surfaces force the integral, so we also build the numerical estimate and the checks that separate a reliable value from a nominal field-times-area product.\n",{"path":4320,"title":4321,"module":4317,"summary":4322},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law","Faraday's Law","Move a magnet toward a coil, or ramp the current in a nearby circuit, and a voltage appears with no battery in sight. Faraday's law names the cause: the emf around a loop equals minus the rate of change of the magnetic flux through it, so any change of field, area, orientation, or position that alters the flux drives an emf. We separate the emf, which lives around the boundary whether or not current can flow, from the current that follows only when the path is closed; fix the single sign convention that ties flux to loop orientation; and read the emf off rotating coils and off flux sampled at discrete times.\n",{"path":4324,"title":4325,"module":4317,"summary":4326},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law","Lenz's Law","The minus sign in Faraday's law is not decoration: it decides which way the induced current flows, and it always chooses the direction that fights the change that produced it. Lenz's law reads that sign off energy conservation — a current that aided the change would be free energy — and turns it into a repeatable procedure. We fix a surface normal and a positive loop direction so the sign is calculable, then work through approaching magnets, expanding loops, coupled coils, and rotating generators, using mechanical work and Joule heating as an independent check on every direction we draw.\n",{"path":4328,"title":4329,"module":4317,"summary":4330},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf","Motional EMF","Push a wire through a magnetic field and its free charges feel a sideways magnetic force that piles them up at the ends — a battery made of motion. Motional emf is that effect: the work per unit charge a moving conductor supplies is the line integral of $\\vec v\\times\\vec B$ along it, which for a rod moving perpendicular to both its length and the field collapses to $B\\ell v$. We chase where the energy comes from — the hand or motor fighting the magnetic drag, never the magnetic force itself — solve the sliding-rail circuit from both flux and carrier forces, and carry the idea into rotating rods, homopolar disks, generators, and the back emf of a motor.\n",{"path":4332,"title":4333,"module":4317,"summary":4334},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents","Eddy Currents","A wire carries current along one path; a solid block of metal offers a continuum of them, and any changing flux threading that block sets charge circulating in closed loops it chooses for itself. We ask what those eddy currents do — where they heat, where they drag, and how Lenz's law fixes their direction — and why the same circulation is a feature in an induction furnace and a loss to be suppressed in a transformer core. From a representative-loop estimate we get the scaling (heating grows with the square of frequency and flux rate) and the two design levers, lamination and resistivity, that break the paths a solid conductor would otherwise hand the current.\n",{"path":4336,"title":4337,"module":4317,"summary":4338},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance","Self-Inductance","A coil resists changes to its own current. Drive current through it and the flux it produces threads its own turns; change that current and Faraday's law turns the coil against the source with a back emf $\\mathcal E_L=-L\\,\\d I\u002F\\d t$. We define self-inductance as the flux linkage per ampere fixed by winding and core geometry, derive the long-solenoid value $L=\\mu_0 N^2A\u002F\\ell$, and follow the consequence that dominates circuits: because a finite voltage can only sustain a finite $\\d I\u002F\\d t$, an inductor's current cannot jump — which is why opening a switch on a live coil throws a spark.\n",{"path":4340,"title":4341,"module":4317,"summary":4342},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy","Magnetic Energy","Building current in a coil means working against its back emf, and that work does not vanish — it sits in the magnetic field as recoverable energy $U_B=\\tfrac12LI^2$, spread through space at density $u_B=B^2\u002F(2\\mu_0)$. We derive both forms, show they agree for a solenoid, and read a force out of the same energy: an armature is pulled toward higher inductance, and $B^2\u002F(2\\mu_0)$ doubles as a magnetic pressure. The lesson closes on the accounting a real switching event demands, where recoverable energy, copper heating, core loss, and clamp dissipation must balance a single ledger.\n",{"path":4344,"title":4345,"module":4317,"summary":4346},"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits","RL Circuits","Put a resistor and an inductor in series and the current cannot switch on or off at will: it climbs to $V_0\u002FR$ and falls away exponentially on a single time scale $\\tau=L\u002FR$ set by how much flux the coil hoards against how fast the resistor bleeds it. We solve the turn-on and turn-off, then confront the practical sting — because the coil's current refuses to stop instantly, breaking its path throws up a large voltage, which is why real inductive circuits carry freewheel diodes and clamps that trade voltage stress against how quickly the current dies.\n",{"path":4348,"title":4349,"module":4350,"summary":4351},"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals","AC Fundamentals","Alternating Current","A wall socket delivers a voltage that averages to zero over each cycle, yet it still heats a filament and runs a motor. The resolution is that dissipation follows the mean of the square, not the mean, so we define the root-mean-square value that makes an alternating source the equal of a DC one for resistive heating. We show a sinusoid's RMS is its peak divided by $\\sqrt2$, work out the average power an ideal resistor draws when its current stays in phase with the applied voltage, and separate the peak, average, and RMS descriptions that a single number cannot combine.\n",{"path":4353,"title":4354,"module":4350,"summary":4355},"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance","Reactance","A resistor obeys Ohm's law instant by instant, but a capacitor responds to how fast its voltage changes and an inductor to how fast its current changes. Under a steady sinusoid that rate-dependence collapses to a fixed quarter-cycle phase shift and a frequency-dependent amplitude ratio, the reactance. We derive $X_C=1\u002F(\\omega C)$ and $X_L=\\omega L$, adopt phasors to turn the defining derivatives into multiplication by $j\\omega$ so a single complex impedance carries amplitude and phase together, and track the energy an ideal reactance stores and returns without dissipating it. Real windings and dielectrics add loss, leakage, and self-resonance that bound where the ideal formulas hold.\n",{"path":4357,"title":4358,"module":4350,"summary":4359},"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance","RLC Resonance","Put a resistor, inductor, and capacitor in one loop and their reactances work against each other: inductive reactance grows with frequency while capacitive reactance shrinks, and at one frequency they cancel exactly. There the branch looks purely resistive, the current peaks, and the inductor and capacitor voltages can swing far above the source. We locate that resonance at $\\omega_0=1\u002F\\sqrt{LC}$, measure how sharp the peak is with the quality factor $Q=\\omega_0L\u002FR$, tie its half-power bandwidth $R\u002FL$ to the ringdown of the unforced circuit, and read the same poles off as bandpass and peaked filters at the R, L, or C terminals.\n",{"path":4361,"title":4362,"module":4350,"summary":4363},"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power","AC Power","Multiply an AC load's RMS voltage by its RMS current and you get an answer in volt-amperes that the wiring must carry, but not in general the watts the load consumes. The phase between voltage and current splits that product into a part that does net work and a part that merely sloshes energy back and forth. We derive the average power $P=V_{\\rm rms}I_{\\rm rms}\\cos\\phi$, package amplitude and phase into complex power $S=P+jQ$ so that real, reactive, and apparent power form one right triangle, and see why a harmonic-rich current forces the time-domain definition $P=\\langle vi\\rangle$ in place of a single phase angle.\n",{"path":4365,"title":4366,"module":4350,"summary":4367},"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers","Transformers","Two coils sharing an iron core exchange no charge, yet a changing current in one drives a voltage in the other, and the ratio of their turns sets how voltage and current trade off between the windings. That lets a transformer step a voltage up or down, isolate two circuits, and make a load look larger or smaller to the source by the square of the turns ratio. We build the ideal ratio element from Faraday's law and the dot convention, derive the reflected-impedance rule, then add the winding resistance, leakage, magnetizing current, and core loss that turn the ideal ratios into real regulation, efficiency, and a bounded voltage-frequency range.\n",{"path":4369,"title":4370,"module":4371,"summary":4372},"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current","Displacement Current","Maxwell’s Equations and Electromagnetic Waves","Ampère's law asks for the current through a surface bounded by a loop, but a charging capacitor breaks it: slide the surface off the wire and into the gap and the enclosed conduction current drops to zero, while the magnetic field around the loop plainly does not. Maxwell's repair is to count a changing electric flux as itself a source of magnetic circulation. We derive the displacement-current term $\\varepsilon_0\\,\\d\\Phi_E\u002F\\d t$, show that charge continuity demands it, compute the magnetic field it produces inside a charging capacitor, and see how it closes the Ampère–Maxwell law so that electric and magnetic fields can sustain one another as a wave.\n",{"path":4374,"title":4375,"module":4371,"summary":4376},"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves","Electromagnetic Waves","Once a changing electric flux can drive a magnetic field, the two curl laws feed each other: a disturbance in one regenerates the other, and the pair walks off through empty space with no medium holding it up. We take the curl of Faraday's law, land on a wave equation whose speed is fixed entirely by $\\mu_0$ and $\\varepsilon_0$, and find that $c=1\u002F\\sqrt{\\mu_0\\varepsilon_0}$ falls out of purely electric and magnetic constants. The plane-wave solution then fixes the geometry — $\\vec E$, $\\vec B$, and the propagation direction mutually perpendicular, oscillating in phase, with amplitudes locked at $E=cB$ — a set of independent predictions any real measurement must meet at once.\n",{"path":4378,"title":4379,"module":4371,"summary":4380},"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum","Electromagnetic Momentum","A light beam carries no mass, yet it pushes: shine it on a surface and the surface feels a force. We trace that force back to the fields, which store energy with density $\\varepsilon_0E^2$ and carry it along the Poynting vector $\\vec S=\\vec E\\times\\vec B\u002F\\mu_0$. Because that energy also carries momentum $U\u002Fc$, an absorbed beam presses with $I\u002Fc$ and a mirror with $2I\u002Fc$. We derive the Poynting theorem as local energy conservation, tie intensity to field amplitude, and work the momentum balance carefully enough that oblique incidence, partial reflection, and finite beams all drop out of one accounting.\n",{"path":4382,"title":4383,"module":4371,"summary":4384},"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation","Dipole Radiation","Only accelerating charge radiates, and the simplest accelerator is a charge sloshing back and forth: an oscillating electric dipole. We work out the field it throws off, keeping the part that survives to large distance — the $1\u002Fr$ radiation field whose intensity goes as $\\sin^2\\theta\u002Fr^2$, zero along the dipole axis and strongest broadside. From it follow the $\\omega^4$ scaling of total radiated power, radiation resistance as the feed's view of that escaping power, and, through reciprocity, the fact that a good transmitter receives well in the same directions. The near-zone terms that fall off faster carry no net power, and we mark carefully where each description is allowed to be used.\n",{"path":4386,"title":4387,"module":4371,"summary":4388},"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization","Polarization","A plane wave still leaves one thing free: which way its electric field points as it oscillates. That freedom is polarization, set entirely by the relative amplitude and phase of the two transverse field components — in phase gives a line, equal amplitudes a quarter cycle apart give a circle, everything else an ellipse. We work out how a linear analyzer reads a state through Malus's law $I=I_0\\cos^2\\theta$, why that scan alone cannot tell circular light from unpolarized, and how a quarter-wave plate plus a few analyzer settings recover the full Stokes vector and the degree of polarization.\n",{"path":4390,"title":4391,"module":4392,"summary":4393},"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction","Reflection and Refraction","Geometrical Optics","Light meeting a boundary between two transparent media splits into a reflected ray and a bent transmitted one, and predicting where those rays go is the whole starting point of geometrical optics. Fixing one convention — every angle measured from the surface normal — we get reflection's equal angles and derive Snell's law $n_1\\sin\\theta_1=n_2\\sin\\theta_2$ from wavefront timing. That single relation, applied once or twice, yields the critical angle and total internal reflection, prism deviation, the lateral shift through a window, apparent depth, and a fiber's acceptance cone; a wavelength-dependent index then adds dispersion. We mark throughout where the ray picture is trustworthy: feature sizes large against the wavelength and clean interface geometry.\n",{"path":4395,"title":4396,"module":4392,"summary":4397},"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses","Thin Lenses","A lens gathers the light spreading from one point back onto another, and a single paraxial relation $1\u002Fs+1\u002Fs'=1\u002Ff$ predicts where that image lands and how large it is. We collapse two refractions into one bending plane, read image position and orientation off the three principal rays, and trace focal length back to glass and curvature through the lensmaker equation. Sign conventions carry the physics here — they separate real from virtual images and upright from inverted — so we drill them before chaining lenses in sequence and in contact. The lesson ends on how focal length is actually measured on a bench, and where finite thickness, aperture, and dispersion break the thin-lens picture.\n",{"path":4399,"title":4400,"module":4392,"summary":4401},"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors","Spherical Mirrors","Curve a mirror and it stops merely reflecting an image and starts forming one: the same $1\u002Fs+1\u002Fs'=1\u002Ff$ that governs lenses reappears, now with $f=R\u002F2$ and reflected rays and object sharing one side of the glass. We derive the mirror equation from the reflection geometry of a single paraxial ray, then let signed distances do the sorting — real inverted images on the near branch, virtual upright ones behind the surface — and check the concave, convex, and plane-mirror limits against each other. The second half turns to how focal length is actually measured on a bench, by finite conjugates, distant targets, return imaging, and sagitta, and to the aperture and off-axis aberrations the single paraxial focus cannot capture.\n",{"path":4403,"title":4404,"module":306,"summary":306},"\u002Felectricity-and-magnetism","Electricity & Magnetism",{"path":4406,"title":4407,"module":4408,"summary":4409},"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms","Systems of Linear Equations and Row Reduction","Linear Equations in Linear Algebra","A linear system is a finite set of linear equations in shared variables. Elementary row operations rewrite it without changing its solution set, and reducing the augmented matrix to echelon form decides both existence and uniqueness. Pivot positions say whether the solution set is empty, a single point, or infinite.\n",{"path":4411,"title":4412,"module":4408,"summary":4413},"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations","Vector Equations and the Matrix Equation Ax = b","The same linear system reads three equivalent ways: a system of equations, a vector equation asking whether b is a linear combination of fixed vectors, and a matrix equation Ax = b. Ax is the linear combination of A's columns weighted by x, so consistency for a given b means b lies in the span of the columns, and consistency for every b means the columns span all of R^m.\n",{"path":4415,"title":4416,"module":4408,"summary":4417},"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications","Solution Sets and Applied Linear Systems","A homogeneous system Ax = 0 has a solution set that is a span through the origin; a consistent Ax = b has that same span translated by any one particular solution. Parametric vector form writes both explicitly. The structure shows up in applied systems with many solutions: equilibrium prices, balanced chemical reactions, network flows, weight-loss diets, and migration models.\n",{"path":4419,"title":4420,"module":4408,"summary":4421},"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence","Linear Independence","A set of vectors is linearly independent when the only linear combination equal to zero is the trivial one; otherwise a dependence relation writes one vector in terms of the others. For the columns of A the question becomes whether Ax = 0 has only the trivial solution — a pivot in every column. Counting pivots settles independence, and any set with more vectors than entries is automatically dependent.\n",{"path":4423,"title":4424,"module":4408,"summary":4425},"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations","Linear Transformations and Their Matrices","Reading A as an action rather than an array, x maps to Ax is a transformation from R^n to R^m. The ones that preserve addition and scalar multiplication are the linear transformations, and every one is x maps to Ax for a unique standard matrix whose columns are the images of the standard basis vectors. Onto and one-to-one translate into the span and independence of those columns.\n",{"path":4427,"title":4428,"module":4429,"summary":4430},"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations","Matrix Operations","Matrix Algebra","Matrices add and scale entrywise, but their product is defined so that multiplication corresponds to composition of linear maps: the columns of AB are A applied to the columns of B. From that requirement follow the row-column rule, the algebra of products (associative and distributive but not commutative), powers, and the transpose.\n",{"path":4432,"title":4433,"module":4429,"summary":4434},"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility","The Inverse and the Invertible Matrix Theorem","The inverse of a square matrix is the matrix analogue of a reciprocal, defined by AA⁻¹ = I. A closed form settles the 2×2 case; the Gauss–Jordan algorithm row reduces [A | I] to [I | A⁻¹] in general; and elementary matrices record single row operations. The Invertible Matrix Theorem collects a dozen equivalent conditions for invertibility into one statement.\n",{"path":4436,"title":4437,"module":4429,"summary":4438},"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu","Block Matrices and the LU Factorization","Partitioning a matrix into blocks lets sums, products, and inverses be computed block by block, as if the submatrices were scalars. Block structure also underlies the LU factorization A = LU, which splits solving Ax = b into two fast triangular solves and repays the cost whenever many systems share one coefficient matrix.\n",{"path":4440,"title":4441,"module":4429,"summary":4442},"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank","Subspaces of Rⁿ, Dimension, and Rank","A subspace is a set closed under addition and scalar multiplication. Every matrix carries two: the column space of all attainable outputs Ax, and the null space of all solutions of Ax = 0. A basis measures each with a minimal spanning set, dimension counts it, and the Rank Theorem ties pivots and free variables together as rank + nullity = n.\n",{"path":4444,"title":4445,"module":4429,"summary":4446},"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics","Applications: Leontief Economics and Computer Graphics","The Leontief input–output model balances an economy through (I − C)x = d and expands the inverse as a geometric series in the consumption matrix. Computer graphics moves figures with matrix products, using homogeneous coordinates so that translation and perspective projection become matrix multiplications too.\n",{"path":4448,"title":4449,"module":4450,"summary":4451},"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors","Introduction to Determinants","Determinants","The determinant of a square matrix is defined recursively by cofactor expansion: an n-by-n determinant is a signed sum of (n-1)-by-(n-1) determinants built from the first row. The expansion can equally run along any row or down any column, and a triangular matrix has determinant equal to the product of its diagonal.\n",{"path":4453,"title":4454,"module":4450,"summary":4455},"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants","Properties of Determinants","Row operations act on the determinant in three predictable ways, and this turns row reduction into a fast algorithm: the determinant is the product of the pivots times a sign for the interchanges. The same properties yield the invertibility test det A is nonzero, the transpose identity, and the multiplicative law det(AB) equals det A times det B.\n",{"path":4457,"title":4458,"module":4450,"summary":4459},"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area","Cramer's Rule, Volume, and Linear Transformations","Cramer's rule writes each unknown of an invertible system as a ratio of determinants, and the same idea gives a closed formula for the inverse through the adjugate. Geometrically the absolute determinant is the area of the parallelogram or the volume of the parallelepiped spanned by the columns, so a linear map scales every region's measure by that factor.\n",{"path":4461,"title":4462,"module":4463,"summary":4464},"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces","Vector Spaces and Subspaces","Vector Spaces","A vector space is any set closed under addition and scalar multiplication that obeys ten algebraic axioms. The same axioms that govern arrows in the plane govern polynomials, functions, matrices, and infinite signals, so one theory covers them all. A subspace is a subset that is a vector space in its own right, tested by three conditions, and the span of any set of vectors is the smallest subspace containing them.\n",{"path":4466,"title":4467,"module":4463,"summary":4468},"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces","Null Spaces, Column Spaces, and Linear Transformations","Two subspaces sit inside every matrix. The null space collects all solutions of $Ax = 0$ and lives in the domain; the column space collects every attainable $Ax$ and lives in the codomain. One is defined implicitly by a condition, the other explicitly by a spanning set, and the same pair appears for an abstract linear transformation as its kernel and range.\n",{"path":4470,"title":4471,"module":4463,"summary":4472},"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets","Linearly Independent Sets and Bases","A basis is a spanning set with no redundancy: linearly independent and still large enough to reach every vector. The spanning-set theorem shows any spanning set can be trimmed to a basis by discarding dependent vectors, and the pivot columns of a matrix give a basis for its column space. Independence and spanning are defined for abstract spaces exactly as in $\\mathbb{R}^n$.\n",{"path":4474,"title":4475,"module":4463,"summary":4476},"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems","Coordinate Systems","Fixing a basis assigns every vector a unique list of coordinates, turning an abstract space into $\\mathbb{R}^n$. The coordinate mapping is a one-to-one linear transformation onto $\\mathbb{R}^n$ — an isomorphism — so any $n$-dimensional space is indistinguishable from $\\mathbb{R}^n$ as far as vector-space computations go. In $\\mathbb{R}^n$ the change-of-coordinates matrix $P_B$ and its inverse convert between basis coordinates and standard coordinates.\n",{"path":4478,"title":4479,"module":4463,"summary":4480},"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank","The Dimension of a Vector Space and Rank","Every basis of a space has the same number of vectors, and that number is the dimension. Rank is the dimension of the column space, equal to the dimension of the row space and to the number of pivots. The Rank Theorem, rank plus nullity equals the number of columns, ties the four fundamental subspaces of a matrix together and adds six lines to the Invertible Matrix Theorem.\n",{"path":4482,"title":4483,"module":4463,"summary":4484},"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis","Change of Basis","Two bases give the same vector two different coordinate vectors, and a single invertible matrix converts between them. Its columns are the coordinate vectors of the old basis expressed in the new one, and its inverse reverses the conversion. In $\\mathbb{R}^n$ the change-of-coordinates matrix between two bases is found by one row reduction.\n",{"path":4486,"title":4487,"module":4463,"summary":4488},"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov","Applications: Difference Equations and Markov Chains","The solutions of an nth-order linear difference equation form an $n$-dimensional vector space, so finding $n$ independent solutions gives them all. A Markov chain evolves a probability distribution by repeated multiplication by a stochastic matrix, and a regular chain converges to a unique steady-state vector fixed by that matrix. Both applications turn a dynamic process into a subspace or a fixed-point question.\n",{"path":4490,"title":4491,"module":4492,"summary":4493},"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues","Eigenvectors and Eigenvalues","Eigenvalues and Eigenvectors","An eigenvector of a square matrix is a nonzero vector the matrix only stretches; its eigenvalue is the stretch factor. The eigenspace of an eigenvalue is the null space of A minus lambda times the identity, the eigenvalues of a triangular matrix are its diagonal entries, and eigenvectors for distinct eigenvalues are linearly independent.\n",{"path":4495,"title":4496,"module":4492,"summary":4497},"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation","The Characteristic Equation","The eigenvalues of a matrix are the roots of its characteristic polynomial det(A minus lambda I). This degree-n polynomial carries an algebraic multiplicity at each repeated root, a nonzero determinant is equivalent to zero not being an eigenvalue, and similar matrices share a characteristic polynomial and hence the same eigenvalues.\n",{"path":4499,"title":4500,"module":4492,"summary":4501},"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization","Diagonalization","A matrix is diagonalizable when it factors as A equals P D P inverse with D diagonal, which happens exactly when it has n linearly independent eigenvectors. The factorization computes matrix powers cheaply, distinct eigenvalues guarantee it, and a repeated eigenvalue permits it only when its eigenspace dimension equals its multiplicity.\n",{"path":4503,"title":4504,"module":4492,"summary":4505},"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations","Eigenvectors and Linear Transformations","Every linear transformation between finite-dimensional spaces has a matrix relative to chosen bases, built from the coordinate vectors of the images of the basis vectors. For a map from a space to itself, an eigenvector basis makes that matrix diagonal, and that change of basis is diagonalization; the matrices similar to A are the representations of the map in every basis.\n",{"path":4507,"title":4508,"module":4492,"summary":4509},"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues","Complex Eigenvalues","A real matrix with no real eigenvalues still has complex ones, occurring in conjugate pairs. A real 2-by-2 matrix with eigenvalue a plus b i is similar to a rotation-scaling matrix, whose rotation angle is the argument of the eigenvalue and whose scale factor is its modulus; the modulus decides whether the trajectories close up, spiral in, or spiral out.\n",{"path":4511,"title":4512,"module":4492,"summary":4513},"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems","Discrete and Continuous Dynamical Systems","Eigenvalues govern the long-term behavior of a system that evolves by x becomes A x or by x prime equals A x. An eigenvector basis decouples both kinds of system into independent scalar equations; the eigenvalues then classify the origin as attractor, repeller, saddle, or spiral, and the dominant eigenpair fixes the growth rate and limiting direction.\n",{"path":4515,"title":4516,"module":4492,"summary":4517},"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method","Iterative Estimates for Eigenvalues","When only a numerical eigenvalue is needed, iteration is preferred over the characteristic polynomial. The power method repeatedly multiplies by A to converge on the dominant eigenvalue and its eigenvector; the Rayleigh quotient sharpens the estimate for symmetric matrices; and the inverse power method targets any eigenvalue near a known guess.\n",{"path":4519,"title":4520,"module":4521,"summary":4522},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality","Inner Product, Length, and Orthogonality","Orthogonality and Least Squares","The dot product turns the algebra of vectors in R^n into geometry: length, distance, and perpendicularity. The inner product yields the norm, the Pythagorean theorem, and the orthogonal complement, and the null space of a matrix is the orthogonal complement of its row space.\n",{"path":4524,"title":4525,"module":4521,"summary":4526},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections","Orthogonal Sets and Orthogonal Projections","An orthogonal basis makes coordinates trivial: each weight is a single dot product, no linear system required. Orthogonal and orthonormal bases give a direct projection formula onto a line and onto a subspace, the orthogonal decomposition and best-approximation theorems, and the matrix form U U-transpose of a projection.\n",{"path":4528,"title":4529,"module":4521,"summary":4530},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr","The Gram-Schmidt Process and QR Factorization","Gram-Schmidt turns any basis into an orthogonal one by repeatedly subtracting off projections onto the span already built. Normalizing the result and recording the coefficients factors the matrix as A = QR, with Q orthonormal and R upper triangular, the factorization behind stable least-squares and eigenvalue algorithms.\n",{"path":4532,"title":4533,"module":4521,"summary":4534},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems","Least-Squares Problems","When Ax = b has no solution, the least-squares solution makes Ax as close to b as possible. The closest Ax is the projection of b onto the column space, and the vector that produces it solves the normal equations A-transpose A x = A-transpose b. Uniqueness, the residual error, and the stabler QR route follow.\n",{"path":4536,"title":4537,"module":4521,"summary":4538},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications","Applications to Linear Models","Curve fitting is a least-squares problem in statistical notation. The least-squares line, polynomial fits, and multiple regression all reduce to X beta = y with a design matrix X built from the data, solved by the same normal equations.\n",{"path":4540,"title":4541,"module":4521,"summary":4542},"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces","Inner Product Spaces","Promoting the four properties of the dot product to axioms defines an inner product on any vector space, including spaces of functions. Length, distance, orthogonality, Gram-Schmidt, and best approximation all carry over, along with the Cauchy-Schwarz and triangle inequalities and the integral inner product behind Fourier approximation.\n",{"path":4544,"title":4545,"module":4546,"summary":4547},"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices","Diagonalization of Symmetric Matrices","Symmetric Matrices, Quadratic Forms, and the SVD","A symmetric matrix is one that equals its own transpose. Every such matrix can be diagonalized by an orthogonal change of basis, A = PDPᵀ, with real eigenvalues and perpendicular eigenvectors. This is the Spectral Theorem, and it rewrites A as a weighted sum of rank-one projections onto its eigenvectors.\n",{"path":4549,"title":4550,"module":4546,"summary":4551},"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms","Quadratic Forms","A quadratic form xᵀAx is the second-degree analogue of a linear map, attached to a symmetric matrix A. Orthogonal diagonalization changes variables to the eigenbasis, removing all cross-terms and rotating the form into standard position. The signs of the eigenvalues then classify it as definite or indefinite.\n",{"path":4553,"title":4554,"module":4546,"summary":4555},"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization","Constrained Optimization","Maximizing a quadratic form xᵀAx over the unit sphere has an exact answer: the maximum is the largest eigenvalue of A, attained at its eigenvector, and the minimum is the smallest eigenvalue. Adding orthogonality constraints peels off the eigenvalues in order, characterizing the whole spectrum by optimization.\n",{"path":4557,"title":4558,"module":4546,"summary":4559},"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition","The Singular Value Decomposition","The singular value decomposition factors any m×n matrix as A = UΣVᵀ, with orthogonal U and V and a nonnegative diagonal Σ of singular values. The singular values are the square roots of the eigenvalues of AᵀA, and they describe the matrix geometrically as a rotation, an axiswise stretch, and another rotation, exposing rank, the four fundamental subspaces, and a best low-rank approximation.\n",{"path":4561,"title":4562,"module":4546,"summary":4563},"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging","Applications: Image Processing and Statistics","Principal component analysis diagonalizes the covariance matrix of a data set, producing uncorrelated variables ordered by variance. The leading components capture most of the variation, which reduces dimension, compresses images through low-rank SVD approximation, and connects directly to the singular values of the data matrix.\n",{"path":4565,"title":4566,"module":4567,"summary":4568},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation","Numerical Thinking and Matrix Computation","Numerical Linear Algebra","Numerical analysis builds efficient discrete algorithms for continuous problems, and its cost is dominated as much by memory traffic as by arithmetic. Block matrix calculus, flop counts, and the BLAS efficiency ratio fix the cost model; triangular and unitary matrices are the two computational building blocks every factorization rests on.\n",{"path":4570,"title":4571,"module":4567,"summary":4572},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky","LU and Cholesky Factorization in Practice","Gaussian elimination, read as a factorization A = LU, turns a linear system into two triangular solves. A single near-zero pivot wrecks it, so partial pivoting reorders rows to pick the largest available pivot and makes the method work for every invertible matrix. For symmetric positive-definite systems, Cholesky halves the cost and needs no pivoting.\n",{"path":4574,"title":4575,"module":4567,"summary":4576},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point","Conditioning and Floating-Point Arithmetic","A problem's condition number measures how much its answer moves when its data is perturbed, independent of any algorithm. Subtraction is ill-conditioned under cancellation, and for a linear system the amplifier is the matrix condition number κ(A). Floating-point arithmetic supplies the perturbation: every real number is rounded to within a relative machine precision, so even perfect computation inherits an error of order κ times the unit roundoff.\n",{"path":4578,"title":4579,"module":4567,"summary":4580},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis","Numerical Stability and Backward Error Analysis","An algorithm is backward stable when its computed answer is the exact answer to a slightly perturbed problem. Combined with the condition number this gives the governing rule of thumb: forward error is at most condition times stability. Three cancellation case studies make the point, then the residual-based backward error applies it to Ax = b and shows why partial pivoting keeps Gaussian elimination stable.\n",{"path":4582,"title":4583,"module":4567,"summary":4584},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares","QR, Householder, and Numerical Least Squares","The least-squares problem reduces to the normal equations, but forming AᵀA squares the condition number and can wreck accuracy. The stable route computes a QR factorization directly on A and solves Rx = Qᵀb. Householder reflectors build that QR one column at a time using length-preserving reflections, the unconditionally backward-stable building block behind every serious least-squares solver.\n",{"path":4586,"title":4587,"module":4567,"summary":4588},"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd","Numerical Eigenvalue Problems and the SVD","Eigenvalues cannot be found by a formula for large matrices, so they are found by iteration. Power and inverse iteration converge to one eigenvector at a rate set by the eigenvalue gap; the QR algorithm sweeps a matrix to Schur form and, with a good shift and a Hessenberg reduction, computes the whole spectrum in cubic time. Singular values follow from the same machinery applied without ever forming AᵀA.\n",{"path":4590,"title":4591,"module":4592,"summary":4593},"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations","Affine Combinations","Geometry of Vector Spaces","An affine combination is a linear combination whose weights sum to one. The affine hull of a set is the smallest flat containing it: a point, a line, a plane, or a translated subspace. Homogeneous coordinates turn every affine combination into an ordinary linear combination one dimension up.\n",{"path":4595,"title":4596,"module":4592,"summary":4597},"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates","Affine Independence and Barycentric Coordinates","Affine independence is linear independence for the translated or lifted points, and it guarantees each point of an affine hull a unique weight vector. Those weights are barycentric coordinates: centers of mass, ratios of triangle areas, and the interpolation rule behind smooth shading in computer graphics.\n",{"path":4599,"title":4600,"module":4592,"summary":4601},"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets","Convex Combinations and Convex Sets","A convex combination is an affine combination with nonnegative weights, and the convex hull of a set is the smallest convex set containing it. Convex sets are closed under intersection, and Carathéodory's theorem bounds how many points a convex combination in $\\mathbb{R}^n$ ever needs: at most $n+1$.\n",{"path":4603,"title":4604,"module":4592,"summary":4605},"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes","Hyperplanes and Polytopes","A hyperplane is a level set of a linear functional, the set where an inner product equals a constant. Hyperplanes separate disjoint convex sets and support them at their boundaries. Polytopes are convex hulls of finite point sets; their vertices are the extreme points, and a linear functional attains its extremes there.\n",{"path":4607,"title":4608,"module":4592,"summary":4609},"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces","Curves and Surfaces","Bézier curves are affine combinations of control points with polynomial weights, so they lie in the convex hull of those points and bend toward them. The de Casteljau algorithm evaluates them by repeated interpolation, a matrix form factors them for computation, and matching endpoints and tangents joins segments into smooth curves and surfaces.\n",{"path":4611,"title":4612,"module":306,"summary":306},"\u002Flinear-algebra","Linear Algebra",{"path":4614,"title":4615,"module":306,"summary":306},"\u002Ftheory-of-computation","Theory of Computation",{"path":11,"title":10,"module":5,"summary":13},{"path":16,"title":15,"module":5,"summary":19},{"path":22,"title":21,"module":5,"summary":25},{"path":28,"title":27,"module":5,"summary":31},{"path":34,"title":33,"module":5,"summary":37},{"path":44,"title":43,"module":39,"summary":46},{"path":49,"title":48,"module":39,"summary":51},{"path":54,"title":53,"module":39,"summary":56},{"path":59,"title":58,"module":39,"summary":61},{"path":64,"title":63,"module":39,"summary":66},{"path":69,"title":68,"module":39,"summary":72},{"path":75,"title":74,"module":39,"summary":78},{"path":85,"title":84,"module":80,"summary":87},{"path":90,"title":89,"module":80,"summary":92},{"path":95,"title":94,"module":80,"summary":97},{"path":100,"title":99,"module":80,"summary":102},{"path":105,"title":104,"module":80,"summary":107},{"path":114,"title":113,"module":109,"summary":116},{"path":119,"title":118,"module":109,"summary":121},{"path":124,"title":123,"module":109,"summary":126},{"path":129,"title":128,"module":109,"summary":131},{"path":134,"title":133,"module":109,"summary":136},{"path":143,"title":142,"module":138,"summary":145},{"path":148,"title":147,"module":138,"summary":150},{"path":153,"title":152,"module":138,"summary":155},{"path":158,"title":157,"module":138,"summary":160},{"path":163,"title":162,"module":138,"summary":165},{"path":172,"title":171,"module":167,"summary":174},{"path":177,"title":176,"module":167,"summary":179},{"path":182,"title":181,"module":167,"summary":184},{"path":187,"title":186,"module":167,"summary":189},{"path":192,"title":191,"module":167,"summary":194},{"path":201,"title":200,"module":196,"summary":203},{"path":206,"title":205,"module":196,"summary":208},{"path":211,"title":210,"module":196,"summary":213},{"path":216,"title":215,"module":196,"summary":218},{"path":221,"title":220,"module":196,"summary":223},{"path":231,"title":230,"module":225,"summary":233},{"path":236,"title":235,"module":225,"summary":238},{"path":241,"title":240,"module":225,"summary":243},{"path":251,"title":250,"module":245,"summary":253},{"path":256,"title":255,"module":245,"summary":258},{"path":266,"title":265,"module":260,"summary":268},{"path":271,"title":270,"module":260,"summary":273},{"path":276,"title":275,"module":260,"summary":278},{"path":281,"title":280,"module":260,"summary":283},{"path":286,"title":285,"module":260,"summary":288},{"path":296,"title":295,"module":290,"summary":298},{"path":301,"title":300,"module":290,"summary":303},{"path":4666,"title":4667,"module":306,"summary":306},"\u002Fcomputer-architecture","Computer Architecture",{"path":4669,"title":4670,"module":5,"summary":4671},"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields","Models, Direction Fields, and Solution Curves","A differential equation relates an unknown function to its own rates of change. Three first-order models — a falling body, a cooling object, a population under predation — share the form dy\u002Fdt = ay - b; the slope field fixes their equilibria and long-run behavior before any formula is found. Solving the linear case gives the general solution, its integral curves, and the particular solution selected by an initial condition.\n",{"path":4673,"title":4674,"module":5,"summary":4675},"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology","Classifying Equations: Order, Linearity, ODE vs. PDE","Every solution method targets a specific class of equation, so the first question about any differential equation is which classes it belongs to. Four independent axes sort them: ordinary versus partial, order, linear versus nonlinear, and homogeneous versus nonhomogeneous. Systems, verification of a solution by substitution, and the split between initial and boundary value problems complete the vocabulary.\n",{"path":4677,"title":4678,"module":4679,"summary":4680},"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors","Linear Equations and Integrating Factors","First-Order Equations","A first-order linear equation has the unknown and its derivative to the first power only. Multiplying by an integrating factor collapses the left side into a single derivative, and one integration gives the general solution in closed form. The solution exists wherever the coefficients are continuous, and for a constant coefficient it splits into a decaying transient and a steady state set by the forcing.\n",{"path":4682,"title":4683,"module":4679,"summary":4684},"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact","Separable and Exact Equations","Two nonlinear first-order classes solve by direct integration. A separable equation splits so that each variable can be integrated on its own side, giving an implicit relation. An exact equation is the total differential of a hidden potential function, recognized by a symmetry test on its coefficients; when the test fails, an integrating factor can sometimes restore exactness. A change of variable brings homogeneous equations into the separable class.\n",{"path":4686,"title":4687,"module":4679,"summary":4688},"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order","Modeling with First-Order Equations","A rate law is a differential equation. Each first-order model starts from one governing principle: conservation of mass for a mixing tank, proportional change for interest and radioactive decay, Newton's law of cooling, a force balance for a body falling against drag, and Kirchhoff's law for a series circuit. Setting the derivative to zero recovers the steady state, and the transient records how the initial condition relaxes toward it.\n",{"path":4690,"title":4691,"module":4679,"summary":4692},"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics","Autonomous Equations, Phase Lines, and Population Dynamics","An autonomous equation y' = f(y) can be analyzed qualitatively without being solved. Its constant solutions are the zeros of f, and the sign of f between them fixes whether nearby solutions rise or fall, which the phase line records as a column of arrows. The logistic and threshold models, constant- and effort-proportional harvesting, and the properties nonlinear equations lose all follow from this reading.\n",{"path":4694,"title":4695,"module":4679,"summary":4696},"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler","Existence, Uniqueness, and Euler's Method","Existence and uniqueness can be settled before any attempt to solve. The existence-uniqueness theorem gives sufficient conditions on f, and a standard example shows what fails when they do not hold. Picard's successive approximations build the solution as the limit of an iteration, and Euler's method turns the same tangent-line idea into a numerical procedure for the equations no formula reaches.\n",{"path":4698,"title":4699,"module":4679,"summary":4700},"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations","First-Order Difference Equations","A difference equation advances a sequence one index at a time by a rule y_{n+1} = f(y_n). The linear case y_{n+1} = rho*y_n + b solves in closed form and converges to its equilibrium exactly when the ratio has magnitude below one, which underlies compound-interest and loan calculations. The logistic difference equation shows the nonlinear counterpart: an exchange of stability, a cascade of period doublings, and the onset of chaos.\n",{"path":4702,"title":4703,"module":4704,"summary":4705},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients","Homogeneous Equations, the Wronskian, and Real Roots","Second-Order Linear Equations","A second-order linear homogeneous equation with constant coefficients is solved by guessing an exponential and reducing to the quadratic characteristic equation. Two solutions span every solution exactly when their Wronskian is nonzero; that condition, superposition, and Abel's formula give the full structure of the general solution for the case of two distinct real roots.\n",{"path":4707,"title":4708,"module":4704,"summary":4709},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots","Complex Roots, Repeated Roots, and Reduction of Order","When the characteristic equation has complex conjugate roots, Euler's formula converts the complex exponentials into a real fundamental set of decaying or growing oscillations. When it has a repeated root, one exponential is lost and reduction of order recovers the missing second solution as $t\\,e^{rt}$. The same substitution $y = v(t)y_1(t)$ finds a second solution from any known one.\n",{"path":4711,"title":4712,"module":4704,"summary":4713},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients","Nonhomogeneous Equations: Undetermined Coefficients","The general solution of a nonhomogeneous linear equation is a complementary solution plus any one particular solution. When the forcing term is a polynomial, exponential, sine, or cosine, a particular solution can be found by assuming a trial form of the same shape with unknown coefficients and solving for them. The one complication is resonance, handled by multiplying the trial by a power of $t$.\n",{"path":4715,"title":4716,"module":4704,"summary":4717},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters","Variation of Parameters","Variation of parameters finds a particular solution of any nonhomogeneous linear equation from a fundamental set of the homogeneous one. Replacing the constants in the complementary solution by functions and imposing one convenient constraint reduces the problem to a two-by-two linear system whose solution is expressed through the Wronskian, giving an integral formula that works for forcing terms undetermined coefficients cannot touch.\n",{"path":4719,"title":4720,"module":4704,"summary":4721},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations","Mechanical and Electrical Vibrations","A spring-mass-damper obeys a second-order linear equation, and so does a series RLC circuit, with the same mathematics governing both. Free undamped motion is a pure sinusoid; damping adds a decaying envelope with three regimes; periodic forcing produces a transient that dies out and a steady-state oscillation whose amplitude peaks sharply near the natural frequency, the phenomenon of resonance.\n",{"path":4723,"title":4724,"module":4704,"summary":4725},"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear","Higher-Order Linear Equations","The second-order theory extends directly to order $n$: the solution space is $n$-dimensional, spanned by any $n$ solutions with nonzero Wronskian. For constant coefficients the characteristic polynomial has degree $n$, and its roots (counted with multiplicity, real and complex) build the basis by the same rules as before. Coupled oscillators are the natural application that raises the order.\n",{"path":4727,"title":4728,"module":4729,"summary":4730},"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points","Power Series Solutions Near Ordinary Points","Series Solutions and Special Functions","A linear equation with variable coefficients has no characteristic equation. A power series substituted into the equation matches coefficients to a recurrence relation, which near an ordinary point yields two independent analytic solutions. The radius of convergence is at least the distance from the expansion point to the nearest singular point in the complex plane.\n",{"path":4732,"title":4733,"module":4729,"summary":4734},"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius","Euler Equations, Regular Singular Points, and Frobenius","The Euler equation x^2 y'' + a x y' + b y = 0 is solved outright by y = x^r, and its three root cases fix the behavior at any regular singular point. The Frobenius method multiplies x^r by a power series; the indicial equation chooses the exponents, and equal or integer-separated roots force a logarithm in the second solution. Gauss's hypergeometric equation is the archetype containing most classical functions as special cases.\n",{"path":4736,"title":4737,"module":4729,"summary":4738},"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions","Bessel's Equation, Legendre Polynomials, and Special Functions","Bessel's equation puts the Frobenius machinery through all three of its cases and produces the functions J and Y that govern anything vibrating or diffusing with circular symmetry. The gamma function extends the factorial so that Bessel functions of every order make sense; Legendre's equation, run through the hypergeometric form, yields the polynomials that play the same role in spherical geometry. Orthogonality ties both families to the eigenfunction expansions of Sturm–Liouville theory.\n",{"path":4740,"title":4741,"module":4742,"summary":4743},"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps","The Laplace Transform: Definition, Properties, and Solving IVPs","The Laplace Transform","The Laplace transform sends a function of time to a function of a complex frequency by integrating it against the kernel e^{-st}. Differentiation in t becomes multiplication by s, so a linear constant-coefficient initial value problem turns into an algebraic equation. Existence rests on piecewise continuity and exponential order; the derivative rule folds in the initial data; and inversion runs through a transform table and partial fractions.\n",{"path":4745,"title":4746,"module":4742,"summary":4747},"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution","Step Functions, Discontinuous Forcing, Impulses, and Convolution","The Heaviside step function and the second shifting theorem transform switches and discontinuous forcing into exponential factors on the transform. The Dirac delta idealizes an instantaneous impulse and transforms to a pure exponential. The convolution theorem inverts a product of transforms, writes the forced response as the impulse response convolved with the input, and solves Abel's tautochrone by transform.\n",{"path":4749,"title":4750,"module":4751,"summary":4752},"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review","Matrices, Linear Systems, and the Eigenvalue Toolkit","Systems of First-Order Linear Equations","Any nth-order linear equation, and any coupled collection of them, rewrites as a single first-order system x' = P(t)x + g(t). The matrix and vector algebra behind that form, the eigenvalue problem det(A - λI) = 0 that drives every solution method, and the fundamental theory — superposition, the Wronskian, Abel's theorem — together establish that n independent solutions span all solutions.\n",{"path":4754,"title":4755,"module":4751,"summary":4756},"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits","Homogeneous Constant-Coefficient Systems and Phase Portraits","For x' = Ax with A constant, the trial x = ξe^{rt} turns the differential equation into the eigenvalue problem Aξ = rξ. The eigenvalues fix the geometry of the phase plane: real opposite signs give a saddle, real same sign a node, complex a spiral, purely imaginary a center. Worked in the plane, these cases form the eigenvalue-type classification of equilibria.\n",{"path":4758,"title":4759,"module":4751,"summary":4760},"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices","Repeated Eigenvalues, Fundamental Matrices, and Nonhomogeneous Systems","When a repeated eigenvalue supplies too few eigenvectors, a generalized eigenvector supplies the missing solution as ξte^{ρt} + ηe^{ρt}, giving an improper node. A fundamental set packaged as a matrix Φ(t) yields the matrix exponential e^{At}, the propagator mapping initial states to later ones. Variation of parameters solves the nonhomogeneous system x' = Ax + g(t).\n",{"path":4762,"title":4763,"module":4764,"summary":4765},"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta","Euler, Improved Euler, and Runge–Kutta","Numerical Methods","Most initial value problems have no closed-form solution, so the solution is approximated on a grid. Euler's method steps along the tangent line, the improved Euler method averages two slopes, and the classical Runge–Kutta method averages four. Each added stage raises the order of accuracy at the cost of more evaluations per step, measured by how the local and global truncation errors scale with the step size.\n",{"path":4767,"title":4768,"module":4764,"summary":4769},"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability","Multistep Methods, Systems, and Stability","One-step methods discard everything but the last point. Multistep methods fit a polynomial to several past values and integrate it forward: the explicit Adams–Bashforth formulas, the implicit and more accurate Adams–Moulton formulas, and predictor–corrector pairs that combine them. The same rules extend verbatim to systems in vector form. A separate concern is stability: round-off can dominate truncation, and stiff equations force a tiny step for stability even when accuracy would allow a large one.\n",{"path":4771,"title":4772,"module":4773,"summary":4774},"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability","The Phase Plane, Critical Points, and Stability","Nonlinear Systems and Stability","Most nonlinear systems cannot be solved in closed form, so they are studied geometrically. The phase plane turns an autonomous planar system into a family of trajectories; the five archetypes of critical point follow from the eigenvalues of the coefficient matrix; the trace-determinant plane reads off type and stability directly; and epsilon-delta definitions make stability, asymptotic stability, and instability precise.\n",{"path":4776,"title":4777,"module":4773,"summary":4778},"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov","Locally Linear Systems and Liapunov's Method","Near a critical point a nonlinear system looks linear, and the linear part is the Jacobian. The linearization fixes the type and stability of the nonlinear critical point in every case except a center or a repeated eigenvalue. Liapunov's direct method settles those cases and bounds the basin of attraction by constructing an energy-like function, without solving the system.\n",{"path":4780,"title":4781,"module":4773,"summary":4782},"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles","Population Models, Limit Cycles, and Chaos","The phase-plane methods apply directly to interacting-population models. Competing species either coexist or drive one another to extinction, decided by a single inequality among the interaction constants; the Lotka-Volterra predator-prey system produces closed population cycles. Limit cycles and the Poincaré-Bendixson theorem, the van der Pol oscillator, and the Lorenz equations with their strange attractor carry the theory into chaos.\n",{"path":4784,"title":4785,"module":4786,"summary":4787},"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series","Fourier Series and Convergence","PDEs, Fourier Series, and Boundary Value Problems","A two-point boundary value problem has nontrivial solutions only at a discrete set of eigenvalues, the same trichotomy that governs a singular linear system. For y'' + lambda y = 0 with zero endpoints the eigenfunctions are sines and cosines, and their orthogonality gives the Euler-Fourier coefficient formulas. The convergence theorem fixes when the series returns the function, the Gibbs phenomenon measures the overshoot at a jump, and even\u002Fodd symmetry produces half-range sine and cosine series.\n",{"path":4789,"title":4790,"module":4786,"summary":4791},"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations","Separation of Variables: Heat, Wave, and Laplace Equations","Separation of variables replaces a partial differential equation by a pair of ordinary ones joined through a shared separation constant. Applied to the heat equation it produces the eigenvalue problem X'' + lambda X = 0, and the solution assembles as a Fourier series in the eigenfunctions. The same steps solve the wave equation, whose modes are standing waves, and Laplace's equation, the steady-state limit posed on a region rather than an interval.\n",{"path":4793,"title":4794,"module":4786,"summary":4795},"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville","Sturm-Liouville Theory","The eigenvalue problem behind separation of variables generalizes to the self-adjoint Sturm-Liouville form. Lagrange's identity makes the operator symmetric, and from that one fact follow real eigenvalues, orthogonal eigenfunctions, and eigenfunction expansions that behave like Fourier series. Singular problems admit Bessel and Legendre functions, and Sturm's separation and comparison theorems describe how the eigenfunctions oscillate.\n",{"path":4797,"title":4798,"module":4799,"summary":4800},"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations","The Calculus of Variations","Historical Notes and the Calculus of Variations","Ordinary calculus finds the point where a function is stationary; the calculus of variations finds the whole curve where an integral is stationary. Euler's differential equation is the necessary condition for an extremal, and it becomes integrable in three cases, solving the shortest-path, minimal-surface, and brachistochrone problems. Lagrange multipliers extend the method to isoperimetric constraints, and Hamilton's principle recovers Newton's law from a single stationary integral.\n",{"path":4802,"title":4803,"module":4799,"summary":4804},"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes","Great Problems and the People Who Solved Them","Differential equations grew out of specific problems, not a plan: the invention of calculus by Newton and Leibniz, the Bernoulli brachistochrone challenge, Euler's flood of methods, Lagrange's analytical mechanics, Gauss and Riemann's rigor, Laplace's celestial mechanics, and Poincaré's qualitative theory. Each method descends from a named problem, and reading the subject forward from those problems explains why its parts fit together.\n",{"path":4806,"title":4807,"module":306,"summary":306},"\u002Fdifferential-equations","Differential Equations",{"path":4809,"title":4810,"module":4811,"summary":4812},"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates","The Postulates of Special Relativity","Foundations of Relativity","Newton's laws are the same in every inertial frame, but Maxwell's are not: the equations of electromagnetism single out one speed, c, and the nineteenth century read that as the speed of light relative to a medium, the ether. The Michelson-Morley experiment looked for Earth's motion through that medium and found nothing. Einstein's two postulates replace the ether, and their first consequence is that simultaneity is frame-dependent.\n",{"path":4814,"title":4815,"module":4811,"summary":4816},"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime","The Lorentz Transformation and Spacetime","Requiring that a light sphere stay a light sphere in every inertial frame fixes the coordinate change between frames uniquely: the Lorentz transformation, with its factor gamma. Differentiating it gives relativistic velocity addition, which caps composed speeds at c. Plotting the same events on skewed spacetime axes turns the algebra into geometry, with calibration hyperbolae, an invariant interval, and a light cone that sorts events into past, future, and elsewhere.\n",{"path":4818,"title":4819,"module":4811,"summary":4820},"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction","Time Dilation, Length Contraction, and Paradoxes","A light clock and the constancy of c give the two headline effects directly: a moving clock runs slow by gamma, and a moving rod is short by the same factor. Cosmic-ray muons reaching sea level are the standing experimental proof. The relativistic Doppler effect adds the time-dilation factor to the classical shift, and the twin and pole-barn paradoxes dissolve once the relativity of simultaneity is taken seriously.\n",{"path":4822,"title":4823,"module":4811,"summary":4824},"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy","Relativistic Momentum and Energy","Conserving momentum in every inertial frame forces the redefinition p = gamma m u, which diverges as the speed approaches c. Integrating the corresponding force gives the total energy E = gamma m c-squared, whose rest term m c-squared is Einstein's mass-energy equivalence. Energy and momentum join into a four-vector whose invariant length is the rest energy, giving E-squared = (pc)-squared + (m c-squared)-squared, massless particles, and nuclear binding energy.\n",{"path":4826,"title":4827,"module":4811,"summary":4828},"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity","A Taste of General Relativity","Einstein's happiest thought was that a freely falling observer feels no gravity: a uniform gravitational field is locally indistinguishable from an accelerating frame. That equivalence principle predicts that light bends near a mass, that clocks run slow deep in a gravitational well, that Mercury's orbit precesses, and that radar echoes are delayed. Every prediction has been confirmed, and pushing the redshift to its limit gives the black hole.\n",{"path":4830,"title":4831,"module":4832,"summary":4833},"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval","Minkowski Spacetime and the Interval","Spacetime and the Lorentz Group","The Lorentz transformation of the foundations module is repackaged as the geometry of a four-dimensional space whose invariant is not a distance but the spacetime interval. Events, worldlines, and the metric signature define a causal structure that every observer shares. Proper time is the length of a timelike worldline, and the twin paradox becomes the statement that a straight worldline accumulates the most proper time.\n",{"path":4835,"title":4836,"module":4832,"summary":4837},"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation","Four-Vectors and Index Notation","The index calculus that the rest of the course runs on. Contravariant and covariant components, the Minkowski metric as the machine that raises and lowers indices, and the Einstein summation convention are assembled into scalar products that are the same in every frame. The four-velocity and four-acceleration follow, together with the identity that the four-velocity has constant invariant length.\n",{"path":4839,"title":4840,"module":4832,"summary":4841},"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity","The Lorentz Group and Rapidity","The Lorentz transformations are the linear maps that preserve the Minkowski metric, and they form the group O(1,3). Boosts are hyperbolic rotations parametrized by rapidity, which adds along a line where velocity does not. The boost and rotation generators fix the group's local structure; its four disconnected components are set by two signs; and two non-collinear boosts compose into a boost plus a rotation, the Wigner rotation behind Thomas precession.\n",{"path":4843,"title":4844,"module":4832,"summary":4845},"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance","Doppler, Aberration, and Appearance","Light carries a null four-momentum, and boosting it produces every optical effect of relativity at once. The covariant Doppler formula follows from the transformation of frequency, aberration from the transformation of direction, and the headlight effect from the resulting concentration of light forward. The Terrell-Penrose result shows that a fast object photographs as rotated, not contracted.\n",{"path":4847,"title":4848,"module":4849,"summary":4850},"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion","Four-Momentum, Four-Force, and Accelerated Motion","Relativistic Dynamics","The four-momentum packages energy and momentum into a single vector whose invariant length is the rest mass. Its proper-time derivative is the four-force, always orthogonal to the four-velocity, and a constant orthogonal four-force produces hyperbolic motion. Constant proper acceleration gives rapidity linear in proper time, the relativistic rocket equation, and the Rindler horizon behind an eternally accelerating observer.\n",{"path":4852,"title":4853,"module":4849,"summary":4854},"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics","Particle Decays and Two-Body Kinematics","Conservation of four-momentum fixes the kinematics of a decay from the masses alone. In the center-of-momentum frame a parent breaks into two daughters with equal and opposite momenta and energies set by the Kallen triangle function. Boosting to the lab opens the decay into a cone, and the invariant mass built from the daughters reconstructs the parent as a peak. Worked cases: the two-photon decay of the neutral pion and a heavy two-body hadronic decay.\n",{"path":4856,"title":4857,"module":4849,"summary":4858},"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame","Relativistic Collisions and Threshold Energies","Two-body collisions run on the same conserved four-momentum as decays. The invariant s sets the total energy available in the center-of-momentum frame and therefore the threshold for producing new particles. Fixed-target energy grows only as the square root of beam energy while a collider grows linearly, which is why colliders reach high energy. Compton scattering follows as a worked photon-electron collision giving the wavelength shift.\n",{"path":4860,"title":4861,"module":4849,"summary":4862},"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants","Mandelstam Variables and Lorentz Invariants","For a two-to-two process the three Mandelstam invariants s, t, and u encode all the kinematics in frame-independent form. They obey a single linear constraint, the sum of the four squared masses, so only two are independent. s is the center-of-momentum energy squared, t and u are momentum transfers tied to the scattering angle, and crossing symmetry relates one amplitude across three channels through these variables.\n",{"path":4864,"title":4865,"module":4866,"summary":4867},"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential","The Four-Current and Four-Potential","Covariant Electromagnetism","Charge density and current combine into a single four-vector whose divergence is charge conservation. The scalar and vector potentials combine likewise into the four-potential, whose gauge freedom fixes to the Lorenz condition, reducing Maxwell's equations for the potentials to a single wave equation sourced by the four-current.\n",{"path":4869,"title":4870,"module":4866,"summary":4871},"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor","The Electromagnetic Field Tensor","The antisymmetric derivative of the four-potential is the field-strength tensor F, gauge invariant by construction, with the electric and magnetic fields as its components. Its dual exchanges E and B, and its two contractions form the Lorentz invariants that classify a field as electric, magnetic, or radiative in every frame.\n",{"path":4873,"title":4874,"module":4866,"summary":4875},"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields","How E and B Transform","Transforming the field tensor under a boost gives explicit rules for the electric and magnetic fields: components along the motion are unchanged, transverse components mix and pick up a gamma. The field of a uniformly moving charge compresses transversely, and the force between a current and a moving charge shows that magnetism is the relativistic shadow of electrostatics.\n",{"path":4877,"title":4878,"module":4866,"summary":4879},"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor","Covariant Maxwell and the Stress–Energy Tensor","Maxwell's four equations collapse into two tensor equations, one sourced by the four-current and one an identity on the field strength, with charge conservation automatic. The Lorentz force becomes a four-vector law, and the field's energy, momentum, and stress assemble into a symmetric, conserved stress–energy tensor — the object that will source gravity.\n",{"path":4881,"title":4882,"module":4883,"summary":4884},"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized","The Equivalence Principle","Curved Spacetime","The equality of gravitational and inertial mass promotes to a physical principle in three graded strengths — weak, Einstein, and strong. A freely falling laboratory is locally indistinguishable from an inertial frame, but the qualifier \"locally\" is essential: the size of the patch over which gravity vanishes is set by the tidal field, which no change of frame can remove. Tidal forces are the true, coordinate-independent signature of gravity, and they are what curvature will measure.\n",{"path":4886,"title":4887,"module":4883,"summary":4888},"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric","Manifolds, Vectors, and the Metric","A manifold is a space that looks locally like flat space, described by overlapping coordinate charts. Tangent vectors are directional derivatives with the coordinate basis vectors as partial-derivative operators; one-forms live in the dual space; and the metric tensor turns a coordinate line element into an invariant length. The 2-sphere and Rindler metrics serve as worked examples, including the coordinate singularities that are artefacts of the chart, not of the geometry.\n",{"path":4890,"title":4891,"module":4883,"summary":4892},"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols","Parallel Transport and the Covariant Derivative","The ordinary derivative of a vector field is not a tensor, because it subtracts vectors living in different tangent spaces. A connection supplies the missing comparison: the covariant derivative adds Christoffel-symbol correction terms that cancel the coordinate artefacts. Requiring the connection to be torsion-free and to preserve the metric fixes the Christoffel symbols uniquely in terms of derivatives of the metric, giving the Levi-Civita connection that general relativity uses.\n",{"path":4894,"title":4895,"module":4883,"summary":4896},"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation","Geodesics and the Newtonian Limit","Free fall is geodesic motion: a freely falling particle follows the straightest possible worldline, obtained either by parallel-transporting its own tangent vector or by extremizing proper time. Both routes give the geodesic equation. Affine parameters, and conserved quantities from symmetries via Killing vectors, make it solvable. In the weak-field slow-motion limit the geodesic equation reproduces Newton's law of gravity, fixing the time-time metric component as the Newtonian potential.\n",{"path":4898,"title":4899,"module":4883,"summary":4900},"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation","Curvature and the Riemann Tensor","Curvature is the failure of parallel transport to commute: carrying a vector around an infinitesimal loop returns it rotated, and the rotation per unit area is the Riemann tensor. Its symmetries cut the components to twenty in four dimensions. Geodesic deviation makes it the equation of tidal forces, and its contractions — the Ricci tensor, the Ricci scalar, and the divergence-free Einstein tensor — assemble the objects the field equation is built from.\n",{"path":4902,"title":4903,"module":4883,"summary":4904},"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations","The Einstein Field Equations","The field equation is assembled from a short list of requirements: a symmetric, divergence-free, second-order geometric tensor set proportional to the stress–energy tensor, with the coefficient fixed by the Newtonian limit. The cosmological constant is the one extra term the requirements allow. The Einstein–Hilbert action gives the same equation from a variational principle, and the coupled system closes the logic of the module: matter curves spacetime, and spacetime tells matter how to move.\n",{"path":4906,"title":4907,"module":4908,"summary":4909},"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric","The Schwarzschild Metric","The Schwarzschild Solution","The first exact solution of Einstein's equation follows from two assumptions, staticity and spherical symmetry, imposed on the vacuum outside a mass. Solving the vacuum field equations fixes two metric functions and produces the Schwarzschild geometry, whose one length scale is the Schwarzschild radius $r_s = 2GM\u002Fc^2$. Birkhoff's theorem shows this is the only spherical vacuum, and the far field reduces to Newtonian gravity.\n",{"path":4911,"title":4912,"module":4908,"summary":4913},"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild","Orbits in the Schwarzschild Geometry","The two Killing symmetries of the Schwarzschild metric give a conserved energy and angular momentum per unit mass, reducing geodesic motion to a one-dimensional problem in an effective potential. The potential carries an extra attractive $1\u002Fr^3$ term absent from Newton's, which caps the centrifugal barrier, produces an innermost stable circular orbit at $6GM\u002Fc^2$, and makes bound orbits precess instead of closing.\n",{"path":4915,"title":4916,"module":4908,"summary":4917},"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics","Null Geodesics and the Photon Sphere","Light follows null geodesics, governed by a photon effective potential with a single unstable maximum at $3GM\u002Fc^2$, the photon sphere. The impact parameter sorts rays into those that escape with a deflection and those captured, with the critical value $b_c = 3\\sqrt{3}\\,GM\u002Fc^2$ dividing them. A grazing ray bends by $4GM\u002F(c^2 b)$, twice the naive Newtonian value, and the critical impact parameter sets the edge of a black hole's shadow.\n",{"path":4919,"title":4920,"module":4921,"summary":4922},"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury","The Perihelion Precession of Mercury","Tests of General Relativity","A single extra term in the Schwarzschild orbit equation, cubic in the inverse radius, keeps a bound orbit from closing. The perturbation advances the perihelion by 6πGM\u002F(c²a(1−e²)) per revolution, which for Mercury is 43 arcseconds per century — exactly the anomaly left after Newtonian planetary perturbations are subtracted. A note on frame dragging closes the lesson.\n",{"path":4924,"title":4925,"module":4921,"summary":4926},"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing","Light Deflection and Gravitational Lensing","A light ray grazing the Sun bends by 4GM\u002F(c²b), exactly twice the value a Newtonian corpuscle would give; the extra factor is the curvature of space. The 1919 eclipse confirmed it. The same bending focuses light from distant sources into Einstein rings, multiple images, and microlensing brightenings, making lensing a direct probe of mass, including mass that emits no light.\n",{"path":4928,"title":4929,"module":4921,"summary":4930},"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay","Gravitational Redshift and the Shapiro Delay","A clock deeper in a gravitational well ticks slower, and a photon climbing out loses frequency by the ratio of the metric's time-time components. Pound and Rebka measured the 2.5×10⁻¹⁵ shift over a 22.5-metre tower. Radar signals grazing the Sun return late by about 250 microseconds, the Shapiro delay. Both probe the time part of the metric directly.\n",{"path":4932,"title":4933,"module":4921,"summary":4934},"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps","Relativity and the Global Positioning System","A GPS satellite clock runs slow by 7 microseconds a day from its orbital speed and fast by 46 from its higher gravitational potential, a net gain of about 38 microseconds a day. Left uncorrected, the timing error would grow into kilometres of position error within a day and exceed navigation tolerance within minutes. The satellites carry a pre-launch frequency offset to cancel it.\n",{"path":4936,"title":4937,"module":4938,"summary":4939},"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities","Horizons and Coordinate Singularities","Black Holes","The Schwarzschild radius is a coordinate singularity, not a curvature singularity: the metric blows up there only because the static coordinates fail, while the geometry stays finite. Eddington–Finkelstein and Kruskal– Szekeres coordinates cross the horizon smoothly and show the light cones tipping toward the center. A freely falling observer reaches the true singularity at r=0 in finite proper time, while a distant observer sees the infall freeze and redden at the horizon.\n",{"path":4941,"title":4942,"module":4938,"summary":4943},"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes","Rotating and Charged Black Holes","A stationary black hole is fixed by three numbers: mass, angular momentum, and charge. The Reissner–Nordström metric adds charge and splits the horizon in two; the Kerr metric adds rotation, drags inertial frames, and wraps the horizon in an ergosphere where nothing can stay still. Inside the ergosphere the Penrose process extracts rotational energy, and the no-hair theorem states that no other detail of the collapsed matter survives.\n",{"path":4945,"title":4946,"module":4938,"summary":4947},"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics","Black-Hole Thermodynamics","The four laws of black-hole mechanics mirror the four laws of thermodynamics term for term, with horizon area playing the role of entropy and surface gravity the role of temperature. Hawking's calculation makes the analogy literal: a black hole radiates at a temperature set by its surface gravity, carries a real entropy proportional to its horizon area, and slowly evaporates. The thermal spectrum raises the information paradox.\n",{"path":4949,"title":4950,"module":4951,"summary":4952},"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions","Linearized Gravity and Wave Solutions","Gravitational Waves","Weak gravity is a small perturbation of flat spacetime, and the linearized Einstein equation in the Lorenz gauge is an ordinary wave equation propagating at the speed of light. The trace-reversed perturbation carries the dynamics, residual gauge freedom fixes the transverse-traceless form, and the two physical polarizations deform a ring of freely falling masses into oscillating ellipses whose fractional size change is the strain.\n",{"path":4954,"title":4955,"module":4951,"summary":4956},"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula","The Quadrupole Formula","The retarded solution of the linearized field equation gives the field of a moving source, and conservation of mass and momentum forbids monopole and dipole radiation, leaving the mass quadrupole as the leading emitter. The quadrupole formula fixes the strain and the radiated luminosity, and applied to a compact binary it predicts the inspiral chirp of rising frequency and amplitude. The Hulse-Taylor pulsar's orbital decay confirmed it to a fraction of a percent.\n",{"path":4958,"title":4959,"module":4951,"summary":4960},"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events","LIGO and the First Detections","A gravitational wave is measured as a differential length change of the two arms of a kilometre-scale Michelson interferometer, a strain of order ten to the minus twenty-one that moves the mirrors by a fraction of a proton radius. GW150914 recorded the inspiral, merger, and ringdown of two black holes, fixing their masses and the energy radiated, and GW170817 with its coincident gamma-ray burst and kilonova opened multimessenger astronomy.\n",{"path":4962,"title":4963,"module":4964,"summary":4965},"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric","The Cosmological Principle and the FLRW Metric","A Bridge to Cosmology","Homogeneity and isotropy restrict the spacetime of the universe to a single family of metrics: a flat cosmic-time slicing of spatial sections of constant curvature, scaled by a time-dependent factor a(t). This lesson builds the Friedmann–Lemaître–Robertson–Walker metric from those symmetries, separates comoving from proper distance, and derives cosmological redshift as the stretching of wavelengths with the scale factor.\n",{"path":4967,"title":4968,"module":4964,"summary":4969},"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics","The Friedmann Equations and Cosmic Dynamics","The Einstein equation applied to the FLRW metric with a perfect-fluid source yields the two Friedmann equations and the conservation law that ties them together. This lesson derives them, defines the critical density and the density parameters that fix the spatial geometry, works out how matter, radiation, and a cosmological constant dilute and drive the expansion, and hands off to a dedicated cosmology subject.\n",{"path":4971,"title":4972,"module":306,"summary":306},"\u002Frelativity","Relativity",{"path":4974,"title":4975,"module":306,"summary":306},"\u002Fphysical-computing","Physical Computing",{"path":4977,"title":4978,"module":4979,"summary":4980},"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum","Blackbody Radiation and the Planck Quantum","Origins of the Quantum","Millikan's oil-drop experiment fixed the electron charge as an indivisible unit, and the spectrum of thermal radiation forced a second, deeper quantum. Classical physics predicts an infinite energy density at short wavelengths; Planck removed the divergence by allowing a cavity oscillator to hold only energies that are integer multiples of hf, the first appearance of the quantum of action.\n",{"path":4982,"title":4983,"module":4979,"summary":4984},"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon","The Photoelectric Effect and the Photon","Light shone on a clean metal ejects electrons, but the details defied the wave theory: the electrons' maximum energy depends on the light's frequency, not its brightness, and there is a sharp threshold frequency below which nothing happens. Einstein resolved every anomaly by treating light as a stream of energy quanta hf, each absorbed whole by one electron, and Millikan's measurement of the stopping-potential slope confirmed h to a decade before anyone expected.\n",{"path":4986,"title":4987,"module":4979,"summary":4988},"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect","X-Rays and the Compton Effect","X-rays are short-wavelength electromagnetic waves produced when fast electrons are braked in a target, and their diffraction by crystals lets Bragg's law measure atomic spacings. Compton then scattered X-rays off electrons and found the wavelength shifted by an amount that only a photon carrying momentum hf\u002Fc could explain, closing the case for the particle nature of light.\n",{"path":4990,"title":4991,"module":4979,"summary":4992},"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld","The Old Quantum Theory: Bohr, Sommerfeld, and Correspondence","Between Bohr's 1913 atom and Schrödinger's 1926 equation, physics ran on a provisional recipe: keep classical orbits, but admit only those whose action integral is a whole multiple of Planck's constant. This lesson develops the Wilson-Sommerfeld phase-integral rule, applies it to the oscillator and to the elliptical Kepler orbits of hydrogen, derives Sommerfeld's relativistic fine structure and the quantization of orbit orientation, and shows how the correspondence principle fixed intensities and selection rules. The systematic failures — helium, line intensities, the anomalous Zeeman effect — mark exactly where a theory of orbits had to give way to a theory of waves.\n",{"path":4994,"title":4995,"module":4996,"summary":4997},"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction","De Broglie Waves and Electron Diffraction","The Wave Nature of Matter","In 1924 de Broglie proposed that every particle carries a wave of wavelength h\u002Fp. The hypothesis explains Bohr's quantized orbits as standing waves, and Davisson and Germer, then G. P. Thomson, confirmed it by diffracting electrons from crystals exactly as X-rays diffract. We derive the electron wavelength, work the Bragg analysis of the data, and give the relativistic form.\n",{"path":4999,"title":5000,"module":4996,"summary":5001},"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation","Wave Packets and the Probabilistic Wave Function","A single de Broglie wave fills all space, but a particle is localized. Adding many waves of nearby wavelength builds a wave packet that is confined and moves at the group velocity, which equals the particle velocity. Born's rule reads the squared amplitude of the wave function as a probability density, the meaning confirmed by electron interference building up one detection at a time.\n",{"path":5003,"title":5004,"module":4996,"summary":5005},"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle","The Uncertainty Principle and Wave-Particle Duality","The packet relations delta-k delta-x about 1 become Heisenberg's principle once momentum is hbar times wave number: position and momentum cannot both be sharp, nor energy and time. The gamma-ray microscope shows the limit is physical, not technical. It fixes the zero-point energy of a confined particle, the size of the hydrogen atom, and the natural width of spectral lines, and it frames the wave-particle duality of all matter and radiation.\n",{"path":5007,"title":5008,"module":5009,"summary":5010},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension","The Schrödinger Equation in One Dimension","Wave Mechanics in One Dimension","The wave equation for matter cannot be derived; it is postulated and judged by experiment. We build the time-dependent Schrödinger equation from the de Broglie relations, read Born's probability rule off the complex wave function, and separate the time and space dependence to get the time-independent equation whose bound-state solutions are the stationary states. The five acceptability conditions on the wave function are what force energy to be quantized.\n",{"path":5012,"title":5013,"module":5009,"summary":5014},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics","The Free Particle and Wave-Packet Dynamics","The free particle has no bound states: its stationary solutions are non-normalizable plane waves forming a continuum. Physical states are wave packets built by superposing them, and the superposition is a Fourier transform. We delta-normalize the plane waves, assemble a Gaussian packet, solve for its exact time evolution, and read off the two facts that reconcile the wave picture with mechanics: the packet moves at the group velocity ħk\u002Fm, the classical velocity, and it spreads because its component momenta travel at different speeds.\n",{"path":5016,"title":5017,"module":5009,"summary":5018},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells","Particle in Infinite and Finite Square Wells","The infinite square well is the simplest bound-state problem: two boundary conditions quantize the energy into a ladder E_n = n² E_1, and the eigenfunctions are the standing waves of a string fixed at both ends. Relaxing the walls to a finite depth lets the wave function leak into the classically forbidden region, keeps the number of bound states finite, and turns the eigenvalue condition into a transcendental equation solved graphically.\n",{"path":5020,"title":5021,"module":5009,"summary":5022},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator","Operators, Expectation Values, and the Harmonic Oscillator","Measurable quantities are extracted from the wave function as expectation values, and each observable is represented by an operator that acts between Ψ* and Ψ — position by multiplication, momentum by a derivative, energy by the Hamiltonian. Applied to the harmonic oscillator, the machinery yields evenly spaced levels E_n = (n+½)ℏω, Gaussian- times-Hermite eigenfunctions of definite parity, and the selection rule Δn = ±1.\n",{"path":5024,"title":5025,"module":5009,"summary":5026},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential","The Dirac-Delta Potential: A Single Bound State and Scattering","A potential concentrated at a single point is solvable in closed form and isolates the physics of matching a wave function across a discontinuity. Integrating the Schrödinger equation across the spike gives a jump condition on the derivative; the attractive delta well then supports exactly one bound state, of energy set by the strength alone, while the same spike scatters an incoming beam with a transmission that rises from zero to one. The attractive well and the repulsive barrier scatter identically yet only the well binds.\n",{"path":5028,"title":5029,"module":5009,"summary":5030},"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling","Barrier Penetration and Quantum Tunneling","Unbound states scatter rather than bind. A particle meeting a step is partly reflected even when it has more than enough energy to pass, and a particle meeting a barrier taller than its energy has a nonzero chance of appearing on the far side. Matching the wave function across the boundaries gives the reflection and transmission coefficients and the exponential tunneling probability that explains alpha decay, the scanning tunneling microscope, and the ammonia clock.\n",{"path":5032,"title":5033,"module":5034,"summary":5035},"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation","Hilbert Space and Dirac Bra–Ket Notation","The Formalism of Quantum Mechanics","Wave mechanics is one representation of a deeper structure: quantum states are vectors in a complex inner-product space, and observables act on them as linear operators. We build that space from the axioms, introduce Dirac's kets and bras as vectors and the linear functionals that measure them, and identify the wavefunction as the components of an abstract state in the position basis. The resolution of the identity is the single algebraic tool that ties every basis, expansion, and matrix element together.\n",{"path":5037,"title":5038,"module":5034,"summary":5039},"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues","Observables, Hermitian Operators, and the Spectral Theorem","Every measurable quantity is represented by a Hermitian operator, and the reason is forced: a measurement needs real eigenvalues, orthogonal eigenvectors, and a complete eigenbasis, and Hermiticity delivers precisely those. We derive those properties from self-adjointness, state the spectral theorem, handle degeneracy, and show that two observables share an eigenbasis precisely when they commute — the algebraic condition behind compatible and incompatible measurements.\n",{"path":5041,"title":5042,"module":5034,"summary":5043},"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement","The Postulates and Quantum Measurement","With states as vectors and observables as Hermitian operators, the physical content of quantum mechanics reduces to a short list of postulates. We state them precisely, derive the Born probability rule for discrete and continuous spectra, work out projective collapse and its idempotence, compute expectation values and their variance, and state the measurement problem cleanly — the one place the postulates split unitary evolution from measurement without explaining the seam.\n",{"path":5045,"title":5046,"module":5034,"summary":5047},"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra","Position, Momentum, and Continuous Spectra","Position and momentum are the observables with no normalizable eigenstates: their spectra are continuous, their eigenkets are delta-normalized, and the two are Fourier conjugates. We derive the canonical commutator from the momentum operator, build the continuous-basis machinery (Dirac deltas replacing Kronecker deltas), show the position and momentum wavefunctions are a Fourier-transform pair, and compute expectation values in either representation.\n",{"path":5049,"title":5050,"module":5034,"summary":5051},"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle","Commutators and the Generalized Uncertainty Principle","The commutator of two observables measures the obstruction to sharing an eigenbasis, and it bounds how sharply both can be known at once. We derive the generalized uncertainty relation from the Schwarz inequality, recover the position–momentum bound as a special case, characterize the minimum-uncertainty states that saturate it as Gaussians, and give the energy–time relation its correct reading as a lifetime bound rather than a commutator relation.\n",{"path":5053,"title":5054,"module":5034,"summary":5055},"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures","Time Evolution, Propagators, and the Heisenberg Picture","Time evolution is generated by the Hamiltonian and implemented by a unitary operator that preserves probability. We build that operator, expand a state in stationary states to see why probability densities freeze while phases wind, introduce the propagator, transfer the time dependence onto operators in the Heisenberg picture, and derive Ehrenfest's theorem — which recovers classical equations of motion for expectation values and identifies conserved quantities as observables commuting with the Hamiltonian.\n",{"path":5057,"title":5058,"module":5059,"summary":5060},"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states","Ladder Operators and the Number States","The Oscillator Algebraically, and Symmetry","The harmonic oscillator can be solved without touching a differential equation. Factoring the Hamiltonian into a lowering operator and its adjoint turns the spectrum into pure algebra: the commutator relation fixes the ladder, the vacuum condition fixes the ground state, and the energies fall out as equally spaced rungs. The same operators give the matrix elements of position and momentum for free.\n",{"path":5062,"title":5063,"module":5059,"summary":5064},"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states","Coherent and Squeezed States","A single number state never moves — its position expectation is pinned at the origin. The superposition that oscillates like a classical particle is the eigenstate of the annihilation operator: the coherent state. It is a displaced vacuum, carries Poissonian photon statistics, saturates the uncertainty bound, and traces a rigid Gaussian orbit in phase space. Squeezing deforms that circle, trading precision in one quadrature for noise in the other.\n",{"path":5066,"title":5067,"module":5059,"summary":5068},"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws","Symmetries, Generators, and Conservation Laws","Every continuous symmetry of a quantum system is a unitary operator built by exponentiating a Hermitian generator: momentum generates translations, angular momentum generates rotations, the Hamiltonian generates time evolution. When a generator commutes with the Hamiltonian, the transformation leaves the dynamics unchanged and the generator is conserved — the quantum form of Noether's theorem — and any symmetry that mixes states within a level forces degeneracy.\n",{"path":5070,"title":5071,"module":5059,"summary":5072},"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries","Parity, Time Reversal, and Discrete Symmetries","Parity and time reversal are symmetries no continuous generator can reach. Parity is a unitary involution whose eigenvalues label states even or odd, fixing the dipole selection rules. Time reversal is antiunitary: it conjugates i, flips momenta and spins, and for half-integer spin squares to minus one, which by Kramers' theorem makes every level of a time-reversal-invariant Hamiltonian at least doubly degenerate.\n",{"path":5074,"title":5075,"module":4071,"summary":5076},"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics","Orbital Angular Momentum and Spherical Harmonics","Orbital angular momentum is the operator triple built from position and momentum. Its components fail to commute, so no state carries sharp values of more than one of them, but each commutes with the total square. Solving the common eigenvalue problem in spherical coordinates quantizes both the magnitude and the projection and produces the spherical harmonics, the angular part of every central-force wavefunction.\n",{"path":5078,"title":5079,"module":4071,"summary":5080},"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra","The Angular-Momentum Algebra and Ladder Operators","The eigenvalues of angular momentum follow from the commutation relations alone, with no reference to coordinates or wavefunctions. Raising and lowering operators built from the components generate finite multiplets, force the total quantum number to be a non-negative integer or half-integer, and fix the matrix elements of every component. The half-integer values excluded by orbital motion appear here, and they are what spin realizes.\n",{"path":5082,"title":5083,"module":4071,"summary":5084},"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan","Addition of Angular Momenta and Clebsch–Gordan Coefficients","Two angular momenta combine into a total whose allowed magnitudes run from the difference to the sum of the parts in integer steps. The change from the uncoupled product basis to the coupled total-angular-momentum basis is carried out with the lowering operator and orthogonality, and its matrix of overlaps is the table of Clebsch–Gordan coefficients. Two spin-halves split into a triplet and a singlet, the prototype for every composite spin.\n",{"path":5086,"title":5087,"module":5088,"summary":5089},"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions","The Schrödinger Equation in Three Dimensions","Central Potentials","A central potential depends only on the distance from a force center, so the three-dimensional Schrödinger equation separates in spherical coordinates. The angular factor is a spherical harmonic; the radial factor obeys a one-dimensional equation with an effective potential whose centrifugal barrier depends on the angular-momentum quantum number. The free particle and the spherical box fix the two limiting cases through the spherical Bessel functions.\n",{"path":5091,"title":5092,"module":5088,"summary":5093},"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom","The Hydrogen Atom","The Coulomb potential turns the radial equation into one whose bound states exist only for a discrete set of energies. A power-series solution truncated to keep the wavefunction normalizable forces the principal quantum number, and the energy comes out proportional to minus one over its square, recovering the Rydberg spectrum. The bound states are the associated Laguerre functions times spherical harmonics, and their energy depends on the principal number alone, giving an n-squared degeneracy larger than rotational symmetry can explain.\n",{"path":5095,"title":5096,"module":5088,"summary":5097},"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry","The Isotropic Oscillator and Hidden Symmetry","The three-dimensional isotropic harmonic oscillator solves in both Cartesian and spherical bases, and the two solutions must agree on the degeneracy of every level. That agreement, and the accidental degeneracy of hydrogen, both come from a symmetry larger than rotation: the oscillator carries an SU(3) invariance built from a conserved quadrupole tensor, and the Coulomb problem carries an SO(4) invariance built from the conserved Runge–Lenz vector. These hidden symmetries pin the degeneracies that rotational invariance alone leaves unexplained.\n",{"path":5099,"title":5100,"module":5101,"summary":5102},"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach","Spin-½, the Pauli Matrices, and Stern–Gerlach","Spin","A silver atom passing through an inhomogeneous magnetic field splits into two beams, not a smear. That single fact fixes the internal angular momentum of the electron to a two-valued quantity with no spatial wavefunction. We build the two-dimensional spin space, the Pauli matrices and their algebra, the spinor for measurement along an arbitrary axis, and the sequential Stern–Gerlach filters that expose measurement disturbance.\n",{"path":5104,"title":5105,"module":5101,"summary":5106},"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance","Spin in a Magnetic Field: Precession and Resonance","A spin coupled to a magnetic field is the simplest nontrivial quantum dynamics. A static field makes the spin expectation precess on a cone at the Larmor frequency while the energy levels split linearly. Adding a weak oscillating field and passing to the rotating frame produces Rabi oscillations and a resonance lineshape — the physics of NMR and ESR, and the driven qubit.\n",{"path":5108,"title":5109,"module":5101,"summary":5110},"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere","Two-Level Systems and the Bloch Sphere","Every two-state quantum system is a spin-½ in disguise. Its Hamiltonian is an effective magnetic field, its pure states are points on the Bloch sphere, and its unitary evolution is a rigid rotation of that sphere. The same structure produces avoided level crossings, the ammonia inversion doublet and its maser, and the qubit.\n",{"path":5112,"title":5113,"module":5114,"summary":5115},"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry","Identical Particles and Exchange Symmetry","Identical Particles","Two electrons carry no label that distinguishes one from the other, and that bare fact reshapes the state space. The exchange operator that swaps particle labels commutes with any Hamiltonian built from identical particles, so its eigenvalue is conserved, and nature admits only its two extremes: totally symmetric states for bosons and totally antisymmetric states for fermions. The antisymmetry forces a statistical correlation, the exchange \"force,\" that keeps fermions apart and draws bosons together even with no interaction between them.\n",{"path":5117,"title":5118,"module":5114,"summary":5119},"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table","The Pauli Principle, Atoms, and the Periodic Table","Antisymmetry packaged as a Slater determinant turns the exclusion principle into an operating rule for building atoms. Helium shows the machinery in full: the electron-electron repulsion splits into a direct Coulomb integral and an exchange integral, and the exchange term alone pushes the spin-triplet (orthohelium) below the spin-singlet (parahelium) with no magnetic interaction in sight. Screening, the aufbau order, and Hund's rules then assemble the whole periodic table from the same antisymmetry.\n",{"path":5121,"title":5122,"module":5123,"summary":5124},"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory","Time-Independent Perturbation Theory","Approximation Methods for Bound States","Almost no realistic Hamiltonian can be solved exactly. Perturbation theory treats a hard Hamiltonian as a solvable one plus a small correction and expands the eigenvalues and eigenstates in powers of that correction. We derive the first- and second-order energy shifts and the first-order state correction for a nondegenerate level, expose the small-denominator failure that degeneracy forces, and fix it by diagonalizing the perturbation inside the degenerate subspace to find the \"good\" zeroth-order states.\n",{"path":5126,"title":5127,"module":5123,"summary":5128},"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom","Fine Structure and the Real Hydrogen Atom","The Bohr spectrum is only the leading term. Two relativistic corrections of order alpha-squared — the relativistic kinetic-energy correction and spin–orbit coupling, joined by the Darwin term for s states — split the hydrogen levels into fine structure that depends on the total angular momentum j. We derive each shift as a first-order perturbation, combine them into a formula depending only on n and j, and continue down the energy ladder to the Lamb shift and the hyperfine 21 cm line.\n",{"path":5130,"title":5131,"module":5123,"summary":5132},"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects","The Zeeman and Stark Effects","An atom in an external field is a perturbation problem whose good basis depends on which interaction wins. A magnetic field competes with the internal spin–orbit coupling: the weak-field limit gives the anomalous Zeeman splitting set by the Landé g-factor, the strong-field limit gives the Paschen–Back pattern in the uncoupled basis, and the intermediate regime is a matrix diagonalization. An electric field gives a quadratic shift for the nondegenerate ground state and a linear splitting for the degenerate n = 2 level.\n",{"path":5134,"title":5135,"module":5123,"summary":5136},"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method","The Variational Method","The expectation of the Hamiltonian in any trial state is an upper bound on the true ground-state energy. Minimizing that expectation over a parametrized family of trial functions turns the ground-state problem into ordinary calculus and needs no small parameter. We prove the bound, apply it to the helium atom with a screened effective charge, use a two-center trial to predict binding in the hydrogen molecular ion, and extend the method to excited states through orthogonality.\n",{"path":5138,"title":5139,"module":5123,"summary":5140},"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation","The WKB Approximation","When the potential varies slowly on the scale of the de Broglie wavelength, the wavefunction is locally a plane wave with a position-dependent wavelength. This semiclassical picture builds the wavefunction from the classical momentum, breaks down at the turning points where the momentum vanishes, and is repaired there by connection formulas. The result recovers the Bohr–Sommerfeld quantization rule with its half-integer correction and gives the exponential tunneling rate through a smooth barrier, the Gamow factor.\n",{"path":5142,"title":5143,"module":306,"summary":306},"\u002Fquantum-mechanics","Quantum Mechanics",{"path":5145,"title":5146,"module":5147,"summary":5148},"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions","Sets, Logic, and Functions","Foundations and the Real Number System","The working language of analysis: quantifiers and the proof patterns (contrapositive, contradiction, induction), sets and their operations, relations and equivalence classes, and functions with their images, injections, surjections, and bijections. Cardinality is measured by bijection, and Cantor's theorem that no set surjects onto its power set forces uncountable sets to exist.\n",{"path":5150,"title":5151,"module":5147,"summary":5152},"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness","Ordered Fields and the Completeness Axiom","The real numbers are the unique ordered field with the least-upper-bound property. The field and order axioms, the exact failure of the rationals (no supremum for the set of rationals below √2), and completeness as the defining axiom of ℝ lead to the first consequences: the existence of √2, the Archimedean property, and the density of ℚ in ℝ.\n",{"path":5154,"title":5155,"module":5147,"summary":5156},"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds","Absolute Value, Bounded Sets, and Inequalities","The absolute value turns the order on ℝ into a notion of distance, with the triangle inequality as the estimate underlying most later proofs. Covered: its algebra, the triangle and reverse-triangle inequalities, and the extension of the sup\u002Finf vocabulary from sets to bounded functions.\n",{"path":5158,"title":5159,"module":5147,"summary":5160},"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability","Intervals, Uncountability, and Decimals","Intervals are classified, and ℝ is proved uncountable two ways: a nested-interval construction and the decimal diagonal argument. Decimal expansions are built as suprema of truncations, which pins the source of their non-uniqueness (the 0.4999… equals 0.5000… identity) and the identification of the rationals with the eventually-repeating expansions. The middle-thirds Cantor set is an uncountable set of measure zero.\n",{"path":5162,"title":5163,"module":5164,"summary":5165},"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits","Sequences and Their Limits","Sequences and Series","A sequence is a function on the natural numbers; it converges to a limit when its terms eventually stay within any prescribed tolerance of that number. The epsilon-M definition fixes the order of the quantifiers, and from it the limit is unique, every convergent sequence is bounded, and only the tail matters. Divergence to plus or minus infinity records terms that outgrow every bound.\n",{"path":5167,"title":5168,"module":5164,"summary":5169},"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone","Limit Laws and Monotone Convergence","Limits commute with sums, products, quotients, roots, and absolute values and preserve non-strict inequalities, so a limit can be assembled from the limits of its parts without returning to epsilon and M. The squeeze lemma transfers a limit through two envelopes; the monotone convergence theorem produces a limit from boundedness alone; and the ratio test settles the geometric and factorial standard limits.\n",{"path":5171,"title":5172,"module":5164,"summary":5173},"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass","Subsequences, Limit Superior, and Bolzano–Weierstrass","A bounded sequence need not converge, but it always has convergent subsequences, and its terms cluster between two extreme values. The limit superior and inferior are the limits of the tail suprema and infima; they always exist for a bounded sequence, coincide exactly when it converges, and are its largest and smallest subsequential limits. Bolzano–Weierstrass extracts a convergent subsequence from boundedness alone.\n",{"path":5175,"title":5176,"module":5164,"summary":5177},"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness","Cauchy Sequences and the Completeness of the Reals","The Cauchy criterion tests convergence without knowing the limit: a sequence converges exactly when its terms eventually all lie within any tolerance of one another. Cauchy sequences are bounded, in the reals Cauchy and convergent are equivalent, and this completeness property is interchangeable with the least-upper-bound axiom — the single feature that separates the real line from the rationals.\n",{"path":5179,"title":5180,"module":5164,"summary":5181},"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence","Series and Convergence Tests","A series converges when its sequence of partial sums does, so every fact about sequences transfers. Geometric and telescoping series sum in closed form; the n-th term test rejects series whose terms miss zero, though the harmonic series shows the converse fails; and the comparison test against the geometric and p-series benchmarks settles most nonnegative-term series.\n",{"path":5183,"title":5184,"module":5164,"summary":5185},"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement","Absolute Convergence, the Ratio and Root Tests, and Rearrangements","Absolute convergence is the strong form of convergence that permits free manipulation; conditional convergence is fragile. Absolute convergence implies convergence, and the ratio and root tests detect it by comparison with the geometric series. The alternating series test supplies conditionally convergent series, Riemann's theorem rearranges any of them to any sum, and Mertens' theorem multiplies series when at least one converges absolutely.\n",{"path":5187,"title":5188,"module":5189,"summary":5190},"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms","Metric Spaces, Norms, and Examples","Metric Spaces and Topology","A metric is a function $d(x,y)$ obeying four axioms: nonnegativity, identity of indiscernibles, symmetry, and the triangle inequality. The Euclidean, taxicab, sup, discrete, and great-circle metrics all qualify, as does the sup metric on $C[a,b]$. Every norm induces a metric, and strongly equivalent metrics share the same open sets.\n",{"path":5192,"title":5193,"module":5189,"summary":5194},"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets","Open and Closed Sets, Interior, Closure","Open sets are those in which every point has room to move; closed sets are their complements. From the single ball construction come the topology axioms (arbitrary unions, finite intersections), the interior, closure, and boundary of a set, and the fact that openness is always relative to the ambient space.\n",{"path":5196,"title":5197,"module":5189,"summary":5198},"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness","Convergence, Cauchy Sequences, and Completeness","The $\\varepsilon$-$N$ definition of a limit transfers verbatim to any metric space once $|x-y|$ is replaced by $d(x,y)$. Convergent sequences characterize closed sets and closures; Cauchy sequences and completeness capture spaces with no missing limits, with $\\mathbb{R}^n$ and $C[a,b]$ complete and $\\mathbb{Q}$ and $(0,1]$ not.\n",{"path":5200,"title":5201,"module":5189,"summary":5202},"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness","Compactness","A set is compact if every open cover has a finite subcover. In a metric space this is equivalent to sequential compactness and to being complete and totally bounded. Compact sets are closed and bounded; the Heine–Borel theorem gives the converse in $\\mathbb{R}^n$ but nowhere else in general.\n",{"path":5204,"title":5205,"module":5189,"summary":5206},"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness","Connectedness","A space is connected when it cannot be split into two nonempty open pieces. The connected subsets of $\\mathbb{R}$ are precisely the intervals, path- connectedness gives a constructive sufficient condition, and connectedness is a topological invariant preserved by continuous maps, the fact behind the intermediate value theorem.\n",{"path":5208,"title":5209,"module":3765,"summary":5210},"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions","Limits of Functions","The limit of a function at a point is an epsilon–delta condition pinning one value L as the target of f(x) as x approaches c, mirroring the sequence definition with distance replacing index. It is stated only at cluster points of the domain, is unique when it exists, and reduces to sequential limits through the Heine criterion. The algebra of limits and one-sided limits follow from that reduction.\n",{"path":5212,"title":5213,"module":3765,"summary":5214},"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions","Continuous Functions","A function is continuous at c when its limit there equals its own value, lim f(x) = f(c). The epsilon–delta and sequential forms agree; sums, products, quotients, and compositions of continuous functions are continuous; and the failures split into jump, Dirichlet, popcorn, and removable types. The topological reading is that preimages of open sets are open.\n",{"path":5216,"title":5217,"module":3765,"summary":5218},"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt","Extreme and Intermediate Value Theorems","On a closed bounded interval a continuous function attains an absolute maximum and minimum (the extreme value theorem, compactness preserved by continuity) and takes every value between its endpoint values (the intermediate value theorem, connectedness preserved). Both proofs run through Bolzano–Weierstrass and bisection, and yield root-finding, existence of k-th roots, and fixed-point theorems.\n",{"path":5220,"title":5221,"module":3765,"summary":5222},"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity","Uniform Continuity","Uniform continuity strengthens continuity by demanding one delta that works at every point of the domain, not a delta re-chosen at each point. It separates x^2 on a compact interval from x^2 on the whole line and from 1\u002Fx near zero; continuity on a closed bounded interval is automatically uniform; uniformly continuous functions preserve Cauchy sequences and extend to endpoints; and Lipschitz continuity is the strongest of the three, through its secant-slope bound.\n",{"path":5224,"title":5225,"module":3765,"summary":5226},"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces","Continuity on Metric Spaces","The epsilon–delta definition used only distances, so continuity transfers to maps between metric spaces by replacing absolute values with the two metrics. In this generality continuity still admits a sequential form, preserves compactness and connectedness, is uniform on a compact domain, and reads topologically as preimages of open sets being open, the formulation that defines homeomorphisms.\n",{"path":5228,"title":5229,"module":3765,"summary":5230},"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone","Limits at Infinity and Monotone Functions","Treating infinity as a cluster point extends the epsilon–delta limit to x approaching plus or minus infinity, giving horizontal asymptotes and infinite limits. For monotone functions the one-sided limits always exist as suprema and infima, the discontinuities are jumps and at most countably many, the continuity is equivalent to the image being an interval, and a strictly monotone function always has a continuous inverse.\n",{"path":5232,"title":5233,"module":5234,"summary":5235},"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative","The Derivative","Differentiation","The derivative is the limit of the difference quotient, the slope the secant lines approach as the second point slides into the first. Differentiability forces continuity; linearity and the product, quotient, and chain rules follow from the definition; and a continuous function can fail to be differentiable, as the absolute value does at the origin.\n",{"path":5237,"title":5238,"module":5234,"summary":5239},"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem","The Mean Value Theorem","A relative extremum in the interior forces the derivative to vanish; Rolle's theorem and the mean value theorem turn that local fact into global control. The sign of the derivative fixes monotonicity, a bounded derivative yields a Lipschitz bound, and Darboux's theorem shows derivatives have the intermediate value property even where they are discontinuous.\n",{"path":5241,"title":5242,"module":5234,"summary":5243},"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem","Taylor's Theorem","Taylor's theorem generalizes the mean value theorem: an n-times differentiable function is matched near a point by a degree-n polynomial, with a Lagrange remainder that names the error exactly through one higher derivative. Iterating the mean value theorem proves it; the second-derivative test is the order-one case; and a smooth non-analytic bump separates a Taylor series from the function it fails to represent.\n",{"path":5245,"title":5246,"module":5234,"summary":5247},"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d","The Inverse Function Theorem in One Variable","A nonzero derivative certifies a local inverse and fixes its slope. A strictly monotone differentiable function has a differentiable inverse whose derivative is the reciprocal of the original; the inverse function theorem removes the monotonicity hypothesis, and the reciprocal formula constructs nth roots and the logarithm's derivative, failing exactly where the derivative vanishes.\n",{"path":5249,"title":5250,"module":5251,"summary":5252},"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral","Partitions, Darboux Sums, and Integrability","The Riemann Integral","The Riemann integral is defined by trapping the area under a bounded function between under- and over-estimates. Partitions cut the domain into strips; lower and upper Darboux sums bracket the area; refining a partition tightens the bracket. A function is integrable exactly when the bracket can be made arbitrarily thin, and the tagged Riemann-sum limit gives the same number.\n",{"path":5254,"title":5255,"module":5251,"summary":5256},"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes","Which Functions Are Integrable","The Cauchy criterion certifies whole classes of functions as integrable. Continuous functions are integrable because uniform continuity makes every oscillation cap small; monotone functions are integrable because their caps telescope to a single total jump; bounded functions with finitely many discontinuities are integrable by isolating the bad points. The Dirichlet function fails, and the Lebesgue criterion names the exact boundary.\n",{"path":5258,"title":5259,"module":5251,"summary":5260},"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral","Properties of the Integral","The integral is a linear, order-preserving, additive operator on the integrable functions. It splits across subintervals, respects inequalities, bounds the size of a function by the integral of its absolute value, and preserves products. The mean value theorem for integrals identifies the integral with an attained average height on a fixed rectangle.\n",{"path":5262,"title":3820,"module":5251,"summary":5263},"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem","The fundamental theorem ties the integral to the derivative in two forms. The evaluation form computes a definite integral from any antiderivative; the differentiation form shows the area function has derivative equal to the integrand at points of continuity. Together they make differentiation and integration inverse operations, and yield integration by parts and change of variables.\n",{"path":5265,"title":5266,"module":5251,"summary":5267},"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper","The Logarithm, Exponential, and Improper Integrals","The integral defines transcendental functions. The logarithm is the area under 1\u002Ft, the exponential is its inverse, and their calculus properties follow from the fundamental theorem. Improper integrals extend integration to unbounded intervals and unbounded integrands as limits of proper integrals, with a p-test, a comparison test, absolute versus conditional convergence, and the integral test linking integrals to series.\n",{"path":5269,"title":5270,"module":5271,"summary":5272},"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence","Pointwise and Uniform Convergence","Sequences and Series of Functions","A sequence of functions has two natural notions of limit. Pointwise convergence fixes each input and takes the limit of numbers; uniform convergence demands one rate that works for every input at once. The uniform norm turns the second into a statement about a single sequence of numbers, and the uniform Cauchy criterion and the Weierstrass M-test let us certify it.\n",{"path":5274,"title":5275,"module":5271,"summary":5276},"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits","Interchange of Limits: Continuity, Integration, Differentiation","Passing to a limit inside a continuity statement, an integral, or a derivative is an interchange of two limits, and the two limits do not always commute. Uniform convergence licenses the first two swaps: the uniform limit of continuous functions is continuous, and the limit of the integrals is the integral of the limit. Differentiation needs uniform convergence of the derivatives, and counterexamples show why each hypothesis is required.\n",{"path":5278,"title":5279,"module":5271,"summary":5280},"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass","Power Series and the Weierstrass Approximation Theorem","A power series converges uniformly on every closed subinterval inside its radius of convergence, together with all of its derivatives. That makes it continuous, differentiable, and integrable term by term, so a power series defines an infinitely differentiable function. The Weierstrass approximation theorem then shows that polynomials come uniformly close to any continuous function on a closed bounded interval.\n",{"path":5282,"title":5283,"module":5271,"summary":5284},"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode","Picard's Existence and Uniqueness Theorem","The Banach fixed-point theorem says a contraction of a complete metric space has exactly one fixed point, found by iterating from any start. Applied to the space of continuous functions with the uniform norm, it proves Picard's theorem: a first-order differential equation with a Lipschitz right-hand side has a unique local solution. Picard iteration constructs that solution explicitly, and worked examples show the Lipschitz condition is not optional.\n",{"path":5286,"title":5287,"module":5288,"summary":5289},"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn","The Derivative of a Map ℝⁿ → ℝᵐ","Functions of Several Variables (Introduction)","The derivative of a map between Euclidean spaces is the linear transformation of vanishing relative error, unique when it exists and represented in coordinates by the Jacobian matrix of partial derivatives. Differentiability forces continuity through a local Lipschitz bound. Existence of the partial derivatives alone does not suffice; continuity of the partials does.\n",{"path":5291,"title":5292,"module":5288,"summary":5293},"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule","Directional Derivatives, the Gradient, and the Chain Rule","The directional derivative measures the rate of change of a scalar field along a chosen heading and equals the derivative applied to that direction. The gradient collects these into a vector that points along steepest ascent and sits orthogonal to level sets. The chain rule composes derivatives by multiplying Jacobians, and a mean value theorem holds for scalar fields but fails for vector-valued maps.\n",{"path":5295,"title":5296,"module":5288,"summary":5297},"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema","Higher Derivatives, Taylor's Theorem, and Extrema","Iterating the derivative gives a symmetric second derivative, the Hessian, whose mixed partials agree when they are continuous. Taylor's theorem expands a smooth map to any order with a Lagrange-type remainder, and at a critical point the definiteness of the Hessian decides between a local minimum, a local maximum, and a saddle.\n",{"path":5299,"title":5300,"module":5288,"summary":5301},"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems","The Inverse and Implicit Function Theorems","A nonlinear map with a nonsingular Jacobian is locally invertible, with the inverse's derivative given by the inverse matrix. The contraction mapping principle supplies the local inverse; the implicit function theorem then solves a system for some variables in terms of the rest whenever the relevant Jacobian block is invertible. Worked coordinate changes show both theorems in use.\n",{"path":5303,"title":5304,"module":5288,"summary":5305},"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals","Multiple Integrals","The Riemann integral of a bounded function over a closed rectangle in Euclidean space is built from Darboux upper and lower sums on a grid of subrectangles, with the same squeeze criterion that governs the one-variable integral. Continuous integrands are integrable, and a set of content zero can be ignored. Fubini's theorem evaluates a multiple integral as an iterated one in either order, and the indicator trick extends the theory to regions bounded by curves.\n",{"path":5307,"title":5308,"module":306,"summary":306},"\u002Freal-analysis","Real Analysis",{"path":5310,"title":5311,"module":5,"summary":5312},"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations","Sets, Functions, and Equivalence Relations","Algebra is built on three prior notions: the set, the map between sets, and the equivalence relation that reorganizes a set into disjoint classes. Sets, maps (injective, surjective, bijective), fibers and preimages, and the correspondence between equivalence relations and partitions — the one structural fact reused in every later quotient construction.\n",{"path":5314,"title":5315,"module":5,"summary":5316},"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic","The Integers and Modular Arithmetic","The integers carry the template every ring later imitates: well-ordering drives induction, induction drives the division algorithm, and division drives the Euclidean algorithm, gcd, Bézout's identity, and unique factorization into primes. Quotienting by congruence mod n builds the first finite arithmetic, Z\u002FnZ, whose invertible elements form the group of units.\n",{"path":5318,"title":5319,"module":5320,"summary":5321},"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples","Group Axioms and First Examples","Groups and Symmetry","A group is a set with one associative operation that has an identity and inverses. We state the axioms, prove that the identity, inverses, and cancellation behave as expected, define the order of a group and of an element, and catalogue the running examples: the integers, the additive group of residues mod n, and the multiplicative group of units mod n.\n",{"path":5323,"title":5324,"module":5320,"summary":5325},"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups","Dihedral and Symmetric Groups","The dihedral group D_{2n} is the symmetries of a regular n-gon, generated by a rotation r and a reflection s subject to three relations. The symmetric group S_n is all permutations of n objects, written in cycle notation. Orders, generators and relations, cycle decomposition, the order of a permutation from its cycle type, and the parity that splits S_n in half.\n",{"path":5327,"title":5328,"module":5320,"summary":5329},"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups","Matrix and Quaternion Groups","Invertible matrices over a field form the general linear group GL_n(F), with the determinant-one matrices as the subgroup SL_n(F). Over a finite field the order of GL_n(F) has a clean product formula. The quaternion group Q_8 is a second small nonabelian group, distinct from the dihedral group of the same order; its multiplication and subgroup structure sharpen the contrast between the two.\n",{"path":5331,"title":5332,"module":5320,"summary":5333},"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions","Homomorphisms, Isomorphisms, and Actions","A homomorphism is a map between groups that respects the operation; an isomorphism is a bijective one, making two groups the same up to relabeling. The kernel and image measure how far a homomorphism is from injective and surjective. A group action realizes a group as permutations of a set, and actions correspond exactly to homomorphisms into a symmetric group, with orbits and stabilizers as the first tools for counting.\n",{"path":5335,"title":5336,"module":5337,"summary":5338},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures","Subgroups and Their Substructures","Subgroups and Quotients","A subgroup is a subset that is a group under the inherited operation. One test decides it: nonempty and closed under the map $(x,y) \\mapsto xy^{-1}$. From an arbitrary subset $A$ we build the centralizer, normalizer, and center, and from an action the stabilizer and kernel, all of them subgroups nested in a fixed chain inside $G$.\n",{"path":5340,"title":5341,"module":5337,"summary":5342},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups","Cyclic Groups","A cyclic group is generated by one element. Two facts organize the whole theory: the order of an element equals the order of the subgroup it generates, and cyclic groups of equal order are isomorphic, so $\\mathbb{Z}$ and $\\mathbb{Z}\u002Fn\\mathbb{Z}$ are the only ones. From there the generators ($\\varphi(n)$ of them), the subgroups (one per divisor of $n$), and a fast exponentiation algorithm all follow.\n",{"path":5344,"title":5345,"module":5337,"summary":5346},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices","Generation and the Lattice of Subgroups","The subgroup generated by a subset $A$ is the smallest subgroup containing it, described top-down as an intersection and bottom-up as the set of words in $A$ and its inverses. Collecting all subgroups and ordering them by containment produces the subgroup lattice, whose Hasse diagram shows the joins, meets, and containment relations among all subgroups.\n",{"path":5348,"title":5349,"module":5337,"summary":5350},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups","Cosets, Lagrange, and Normal Subgroups","The left cosets of a subgroup partition a group into equal-sized blocks, so the order of a subgroup divides the order of the group: Lagrange's theorem. When the blocks can be multiplied consistently — exactly when the subgroup is normal — they form the quotient group $G\u002FN$. Fermat's and Euler's theorems fall out as index computations.\n",{"path":5352,"title":5353,"module":5337,"summary":5354},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems","The Isomorphism Theorems","Four theorems relate homomorphisms, quotients, and subgroup lattices. The first identifies the image of a homomorphism with the quotient by its kernel; the second and third compute quotients built from two subgroups and quotients of quotients; the fourth matches the subgroups of $G\u002FN$ with the subgroups of $G$ lying above $N$. Together they make quotient groups computable.\n",{"path":5356,"title":5357,"module":5337,"summary":5358},"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group","Composition Series and the Alternating Group","A composition series breaks a finite group into simple quotient factors, and Jordan-Hölder says those factors are unique up to order. This turns classification into two problems: list the simple groups, and describe how to reassemble them. The sign homomorphism splits $S_n$ into even and odd permutations, defining the alternating group $A_n$, simple for $n \\ge 5$.\n",{"path":5360,"title":5361,"module":5362,"summary":5363},"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem","Actions, Orbits, and Cayley's Theorem","Group Actions and Sylow Theory","A group action turns abstract elements into permutations of a set. The action splits the set into orbits, and the orbit-stabilizer theorem ties each orbit's size to the index of a stabilizer. Applied to a group acting on itself by left multiplication, this gives Cayley's theorem: every group is a group of permutations.\n",{"path":5365,"title":5366,"module":5362,"summary":5367},"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation","Conjugation and the Class Equation","A group acts on itself by conjugation, and the orbits are the conjugacy classes. Orbit-stabilizer turns the resulting partition into the class equation, which forces every group of prime-power order to have a nontrivial center. Conjugacy in the symmetric group is cycle type, and Burnside's lemma counts orbits by averaging fixed points.\n",{"path":5369,"title":5370,"module":5362,"summary":5371},"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems","The Sylow Theorems","Lagrange's theorem forbids subgroups whose order fails to divide the group order; Sylow's theorems supply a partial converse for prime powers. A Sylow p-subgroup always exists, all of them are conjugate, and their count satisfies two congruence-and-divisibility constraints tight enough to prove many groups non-simple from their order alone.\n",{"path":5373,"title":5374,"module":5362,"summary":5375},"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups","Automorphisms and Simplicity of Aₙ","Conjugation makes a group act on itself and on its normal subgroups by automorphisms, giving the inner automorphism group G\u002FZ(G) and the embedding of N(H)\u002FC(H) into Aut(H). Characteristic subgroups are those every automorphism fixes, and the automorphism group of a cyclic group is its unit group. The lesson closes by proving the alternating group Aₙ is simple for n ≥ 5.\n",{"path":5377,"title":5378,"module":5379,"summary":5380},"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups","Direct Products and Finite Abelian Groups","Products and Group Structure","The direct product assembles a larger group from componentwise copies of smaller ones, and a recognition theorem reverses the process when two normal subgroups meet trivially and span the group. The Fundamental Theorem of Finitely Generated Abelian Groups then classifies every such group by two equivalent invariants, invariant factors and elementary divisors.\n",{"path":5382,"title":5383,"module":5379,"summary":5384},"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products","Semidirect Products","The semidirect product relaxes the direct product by requiring only one factor to be normal, with the other acting on it through a homomorphism into its automorphism group. This single twisting map lets abelian pieces assemble into non-abelian groups, realizes the dihedral groups as $\\mathbb{Z}_n \\rtimes \\mathbb{Z}_2$, and, with a recognition theorem, classifies groups of several small orders.\n",{"path":5386,"title":5387,"module":5379,"summary":5388},"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups","p-Groups, Nilpotent, and Solvable Groups","Finite p-groups have nontrivial center, and iterating the center upward builds the nilpotent groups, which decompose as the direct product of their Sylow subgroups. Iterating the commutator downward builds the solvable groups, whose factors are abelian. The chain cyclic, abelian, nilpotent, solvable orders these classes, and A_5 breaks the last link.\n",{"path":5390,"title":5391,"module":5379,"summary":5392},"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups","Classifying Groups of Small Order","With Sylow's theorem to force normal subgroups, direct and semidirect products to assemble them, and presentations to name the result, every group up to order fifteen can be listed explicitly. Free groups make presentations precise: generators with no relations, from which any group is a quotient by the normal closure of its relations.\n",{"path":5394,"title":5395,"module":5396,"summary":5397},"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples","Rings: Definitions and Examples","Ring Theory","A ring carries two operations: an abelian group under addition and an associative multiplication linked by the distributive laws. The named special cases — commutative rings, integral domains, division rings, and fields — differ only in how their multiplication behaves. Standard examples include quadratic integer rings, polynomial rings, matrix rings, and group rings.\n",{"path":5399,"title":5400,"module":5396,"summary":5401},"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms","Ideals, Quotient Rings, and Homomorphisms","Ring homomorphisms have kernels that absorb multiplication; such subsets are ideals, and every ideal is the kernel of the projection onto a quotient ring. The quotient construction yields the ring isomorphism theorems and classifies ideals by their quotients: R\u002FI is a field exactly when I is maximal, an integral domain exactly when I is prime.\n",{"path":5403,"title":5404,"module":5396,"summary":5405},"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem","Fields of Fractions and the CRT","Rings of fractions invert a multiplicatively closed set, enlarging an integral domain into its field of fractions the way Z becomes Q. The Chinese Remainder Theorem splits a quotient by comaximal ideals into a direct product, generalizing Z\u002FmnZ ≅ Z\u002FmZ × Z\u002FnZ and explaining why the Euler function is multiplicative.\n",{"path":5407,"title":5408,"module":5409,"summary":5410},"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds","Euclidean Domains, PIDs, and UFDs","Factorization and Polynomial Rings","Three classes of integral domain, ordered by how much of elementary arithmetic survives: Euclidean domains carry a division algorithm, principal ideal domains make every ideal a single multiple, and unique factorization domains factor every element into irreducibles in one way. We prove the chain ED implies PID implies UFD, the classes are separated by explicit counterexamples, and irreducible and prime coincide exactly in a UFD.\n",{"path":5412,"title":5413,"module":5409,"summary":5414},"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields","Polynomial Rings over Fields","When the coefficients form a field, polynomial long division works exactly as it does over the rationals, and it works with a unique quotient and remainder. That single fact makes F[x] a Euclidean domain, hence a PID and a UFD: every ideal is the multiples of one polynomial, roots correspond to linear factors, and F[x]\u002F(f) is a field precisely when f is irreducible.\n",{"path":5416,"title":5417,"module":5409,"summary":5418},"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization","Gauss's Lemma and Unique Factorization","A UFD is not a field, so its polynomial ring is not a PID — yet unique factorization survives the passage from R to R[x]. Gauss's lemma supplies the passage: a polynomial that factors over the fraction field already factors over R, once content is factored out. This gives the theorem that R[x] is a UFD whenever R is, so Z[x] and Q[x,y] factor uniquely even though neither is a PID.\n",{"path":5420,"title":5421,"module":5409,"summary":5422},"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner","Irreducibility Criteria and Gröbner Bases","Deciding whether a given polynomial is irreducible, and computing in multivariate polynomial rings. In one variable: the rational root test, reduction modulo a prime, and Eisenstein's criterion. In several variables, where division fails, a monomial order gives leading terms, a Gröbner basis restores a well-defined remainder, and Buchberger's algorithm computes it.\n",{"path":5424,"title":5425,"module":5426,"summary":5427},"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules","Introduction to Modules","Module Theory","A module is an abelian group on which a ring acts, generalizing both vector spaces (when the ring is a field) and abelian groups (when the ring is the integers). Submodules, homomorphisms, quotients, and the isomorphism theorems carry over from groups, and an F[x]-module is the same datum as a vector space with a chosen linear operator — the correspondence behind the canonical forms.\n",{"path":5429,"title":5430,"module":5426,"summary":5431},"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums","Generation, Direct Sums, and Free Modules","A generating set spans a module by R-linear combinations; a direct sum decomposes it into independent pieces; a free module has a basis and the universal property that a homomorphism is determined by arbitrary values on that basis. Rank is well defined over a commutative ring, torsion blocks a basis, and every module is a quotient of a free one — a presentation by generators and relations.\n",{"path":5433,"title":5434,"module":5426,"summary":5435},"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences","Tensor Products and Exact Sequences","The tensor product builds a module in which elements of two modules can be multiplied, characterized by a universal property turning bilinear maps into linear ones; extension of scalars is its guiding case. Exact sequences track how a module is assembled from a submodule and a quotient, when that assembly splits, and which modules — projective, injective, flat — make the Hom and tensor functors preserve exactness.\n",{"path":5437,"title":5438,"module":5426,"summary":5439},"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps","Vector Spaces and Linear Maps","A vector space is a module over a field, and the field hypothesis removes every pathology a general module can have: every vector space is free, so it has a basis, a well-defined dimension, and a coordinate isomorphism with F^n. Linear maps become matrices, change of basis becomes similarity, every space pairs with a dual of the same dimension, and the determinant is the unique alternating multilinear normalized form.\n",{"path":5441,"title":5442,"module":5443,"summary":5444},"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids","The Structure Theorem for Modules over a PID","Modules over PIDs and Canonical Forms","Every finitely generated module over a principal ideal domain splits as a free part plus a direct sum of cyclic torsion pieces, in two canonical ways: invariant factors, tied together by a divisibility chain, and elementary divisors, one prime power at a time. Existence follows from the stacked-basis theorem, both lists are unique, and the case $R = \\mathbb{Z}$ is the classification of finitely generated abelian groups.\n",{"path":5446,"title":5447,"module":5443,"summary":5448},"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form","Rational Canonical Form","A linear operator turns its vector space into a module over the polynomial ring $F[x]$, with $x$ acting as the operator. The structure theorem's invariant factors then become polynomials, each cyclic summand becomes a companion matrix, and the block-diagonal assembly is the rational canonical form. It is unique, it is computed inside the base field, and two matrices are similar exactly when their rational canonical forms agree.\n",{"path":5450,"title":5451,"module":5443,"summary":5452},"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form","Jordan Canonical Form","When the base field contains all the eigenvalues, the elementary divisors of an operator are powers of linear polynomials, and each cyclic summand becomes a Jordan block: an eigenvalue on the diagonal with ones just above it. Stacking the blocks gives the Jordan canonical form, unique up to reordering, as close to diagonal as the operator allows. Diagonalizability reads off the minimal polynomial, and the block sizes are counted by ranks of powers of the operator minus the eigenvalue.\n",{"path":5454,"title":5455,"module":5456,"summary":5457},"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements","Field Extensions and Algebraic Elements","Field Theory","A field extension makes a larger field K into a vector space over a smaller field F, and its degree [K:F] is that dimension. Adjoining a root of an irreducible polynomial builds a simple extension F(α) isomorphic to F[x]\u002F(m), whose degree is the degree of the minimal polynomial. The tower law makes these degrees multiply, which turns algebra over fields into bookkeeping with integers.\n",{"path":5459,"title":5460,"module":5456,"summary":5461},"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions","Straightedge-and-Compass Constructions","The lengths a straightedge and compass can build from a unit form a field closed under square roots, and every constructible number lies in a tower of quadratic extensions. So its degree over the rationals is a power of two. That single obstruction settles three problems the Greeks left open: doubling the cube, trisecting a general angle, and squaring the circle are all impossible.\n",{"path":5463,"title":5464,"module":5456,"summary":5465},"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure","Splitting Fields and Algebraic Closure","The splitting field of a polynomial is the smallest extension in which it factors into linear pieces, obtained by adjoining all its roots. Every polynomial has one, its degree is at most n factorial, and any two splitting fields are isomorphic. Pushing this to all polynomials at once gives the algebraic closure, a field in which every polynomial splits and which is unique up to isomorphism.\n",{"path":5467,"title":5468,"module":5456,"summary":5469},"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions","Separable Extensions and Cyclotomic Fields","A polynomial is separable when its roots are distinct, detected by whether it shares a factor with its formal derivative. Over perfect fields — characteristic zero and finite fields — every irreducible is separable, and the existence and uniqueness of the finite fields follow. Cyclotomic polynomials package the roots of unity by order, are irreducible over the rationals, and give the cyclotomic field its degree phi(n).\n",{"path":5471,"title":5472,"module":5473,"summary":5474},"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence","The Galois Correspondence","Galois Theory","Galois theory attaches to a field extension its group of symmetries and shows that, for the right extensions, the subgroups of that group are in exact order-reversing correspondence with the intermediate fields. The automorphism group, Artin's theorem, the characterization of Galois extensions, and the Fundamental Theorem together turn questions about fields into questions about finite groups.\n",{"path":5476,"title":5477,"module":5473,"summary":5478},"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields","Finite Fields","Every finite field has prime-power order, is the splitting field of $x^{p^n} - x$, and is unique up to isomorphism. Its extension over the prime field is Galois with cyclic group generated by the Frobenius map $x \\mapsto x^p$, so the Galois correspondence reduces the subfield lattice to the divisor lattice of $n$. Möbius inversion counts the irreducible polynomials of each degree, and cyclic error-correcting codes are one application.\n",{"path":5480,"title":5481,"module":5473,"summary":5482},"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions","Cyclotomic and Abelian Extensions","The Galois group of the $n$th cyclotomic field over $\\mathbb{Q}$ is the unit group $(\\mathbb{Z}\u002Fn\\mathbb{Z})^\\times$, which makes cyclotomic fields the worked catalogue of abelian extensions of $\\mathbb{Q}$. The isomorphism identifies subfields with subgroups, realizes every finite abelian group as a Galois group over $\\mathbb{Q}$, and leads to Kronecker–Weber. Composites of Galois extensions and the primitive element theorem supply the machinery.\n",{"path":5484,"title":5485,"module":5473,"summary":5486},"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials","Galois Groups of Polynomials","Ordering the roots of a separable polynomial embeds its Galois group in the symmetric group $S_n$, and the group is transitive exactly when the polynomial is irreducible. The discriminant decides membership in $A_n$; for cubics and quartics the resolvent cubic pins the group down; and reduction modulo a prime produces elements of prescribed cycle type, the standard tool for computing Galois groups over $\\mathbb{Q}$.\n",{"path":5488,"title":5489,"module":5473,"summary":5490},"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic","Solvability by Radicals and the Quintic","A polynomial is solvable by radicals exactly when its Galois group is solvable. Cyclic extensions are radical extensions once roots of unity are present, which turns a radical tower into a solvable subnormal series. Since $S_n$ is solvable only for $n \\le 4$, the general quintic has no radical formula, and an explicit quintic with Galois group $S_5$ has roots provably not expressible in radicals.\n",{"path":5492,"title":5493,"module":5494,"summary":5495},"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry","A Glimpse of Commutative Algebra and Algebraic Geometry","Capstone: Where Algebra Goes Next","Commutative algebra reads geometry off the ring of polynomial functions. The dictionary runs through Noetherian rings and the ascending chain condition, Hilbert's Basis Theorem, affine algebraic sets and the two maps connecting ideals to zero sets, radicals, the Zariski topology, and Hilbert's Nullstellensatz, which over an algebraically closed field makes radical ideals and algebraic sets the same object.\n",{"path":5497,"title":5498,"module":5494,"summary":5499},"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory","A Glimpse of Representation and Character Theory","Representation theory studies a group by the ways it can act linearly on a vector space. Representations are equivalent to modules over the group ring; Maschke's theorem gives complete reducibility, the Wedderburn consequences bound the irreducible degrees, and character theory reduces a representation to a trace invariant governed by the orthogonality relations and displayed in the character table of a small group.\n",{"path":5501,"title":5502,"module":306,"summary":306},"\u002Fabstract-algebra","Abstract Algebra",{"path":5504,"title":5505,"module":5506,"summary":5507},"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford","Atomic Spectra and Rutherford's Nucleus","Early Atomic Models and the Old Quantum Theory","Atoms emit light only at sharp, reproducible wavelengths, and by 1890 those wavelengths were captured by the Rydberg-Ritz formula. Neither empirical regularity had a mechanical explanation. Rutherford's alpha-scattering experiment supplied the missing structure: the atom's positive charge and nearly all its mass sit in a tiny central nucleus, with the electrons far outside.\n",{"path":5509,"title":5510,"module":5506,"summary":5511},"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen","The Bohr Model of Hydrogen","Bohr grafted three quantum postulates onto Rutherford's nuclear atom: certain orbits do not radiate, radiation accompanies a jump between them, and quantization must match classical physics for large orbits. Quantizing the angular momentum fixes the orbit radii and energies, reproduces the Rydberg-Ritz formula, and predicts the Rydberg constant from fundamental constants alone.\n",{"path":5513,"title":5514,"module":5506,"summary":5515},"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz","X-Ray Spectra and the Franck-Hertz Experiment","Two 1913-14 experiments confirmed the Bohr-Rutherford atom independently of optical spectra. Moseley found that the square root of a characteristic X-ray frequency is linear in atomic number, fixing Z as nuclear charge and ordering the periodic table. Franck and Hertz measured discrete atomic energy levels directly by scattering electrons through a mercury vapor.\n",{"path":5517,"title":5518,"module":5506,"summary":5519},"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory","The Bohr-Sommerfeld Old Quantum Theory","Bohr fixed the hydrogen levels with a single quantum number by quantizing angular momentum. Sommerfeld replaced that ad hoc rule with a general prescription: quantize the action of each separable coordinate. The rule produces elliptical orbits, a second (azimuthal) quantum number, space quantization, and — once the relativistic mass variation is included — a fine-structure splitting that matches experiment to order alpha squared.\n",{"path":5521,"title":5522,"module":5506,"summary":5523},"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb","Limits of the Old Quantum Theory and the WKB Bridge","The old quantum theory works only where the classical motion is separable into independent periodic coordinates. It fails for helium, forbids the correct zero angular momentum of the hydrogen ground state, and misses the half-integer in the oscillator and in molecular spectra. The WKB quantization condition, derived from the Schrodinger equation, is the modern descendant of the Sommerfeld rule and repairs the half-integer through the Maslov correction.\n",{"path":5525,"title":5526,"module":5527,"summary":5528},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen","The Schrödinger Equation in Three Dimensions and Hydrogen","The Quantum Hydrogen Atom","Extending the Schrödinger equation to three dimensions and separating it in spherical coordinates produces three ordinary differential equations, one per coordinate. Their boundary conditions generate the quantum numbers n, ℓ, and mℓ, quantize the angular momentum to √(ℓ(ℓ+1))ℏ with projections mℏ, and fix the bound-state energies of hydrogen at −Z²(13.6 eV)\u002Fn².\n",{"path":5530,"title":5531,"module":5527,"summary":5532},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions","Hydrogen Wave Functions and Orbitals","The hydrogen wave functions factor into a radial part Rₙℓ(r) and an angular spherical harmonic Yℓm(θ,φ). Squaring gives the probability cloud; the radial distribution P(r) = r²|ψ|² peaks at the Bohr radius for the ground state and at the Bohr orbits for excited states. The angular part fixes the s, p, and d orbital shapes that govern chemical bonding.\n",{"path":5534,"title":5535,"module":5527,"summary":5536},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full","Solving the Radial Equation in Full","The hydrogen radial equation is solved from the differential equation up. The substitution u = rR turns it into a one-dimensional problem with a centrifugal barrier; matching the asymptotic behaviour at the origin and at infinity peels off the factors r^(ℓ+1) and e^(−r\u002Fna₀); a Frobenius series for the remainder must terminate, and that termination condition yields the quantization n ≥ ℓ+1 with E = −Z²Ry\u002Fn². The surviving polynomials are the associated Laguerre functions, whose degree n−ℓ−1 counts the radial nodes.\n",{"path":5538,"title":5539,"module":5527,"summary":5540},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz","Accidental Degeneracy and the Runge-Lenz Symmetry","Hydrogen energies depend only on n, so states of different ℓ at the same n are degenerate. This is not a coincidence but the mark of a hidden symmetry: the quantum Runge-Lenz vector is conserved for the 1\u002Fr potential alone, and together with angular momentum it generates the group SO(4). The Casimir invariant of that group reproduces E = −Z²Ry\u002Fn² and its representations count the n² states. Any departure from 1\u002Fr breaks the symmetry and lifts the ℓ-degeneracy.\n",{"path":5542,"title":5543,"module":5527,"summary":5544},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial","Expectation Values, the Virial Theorem, and Scaling","The radial matrix elements ⟨r^k⟩ of hydrogenic states are the raw material of every later correction. This lesson derives ⟨1\u002Fr⟩ from the virial theorem, builds the full family ⟨r⟩, ⟨r²⟩, ⟨1\u002Fr²⟩, ⟨1\u002Fr³⟩ from Kramers' recursion and the Feynman-Hellmann theorem, and reads off their scaling with n, ℓ, and Z. The virial balance ⟨T⟩ = −½⟨V⟩ = −E fixes the energy budget of every bound state.\n",{"path":5546,"title":5547,"module":5527,"summary":5548},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra","Quantum Defects and Alkali Spectra","An alkali atom is one valence electron outside a closed-shell core, and to a good approximation it is hydrogen with a modified quantum number. Core penetration makes low-ℓ states more bound than the Coulomb formula predicts, and the shortfall is captured by a single number per ℓ, the quantum defect δℓ. The spectrum then follows the Rydberg formula with n replaced by the effective n − δℓ, and the sodium D-line doublet is the worked case.\n",{"path":5550,"title":5551,"module":5527,"summary":5552},"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms","Rydberg Atoms","A Rydberg atom is an atom excited to a very high principal quantum number, and every hydrogenic property becomes exaggerated by a power of n. Size grows as n², binding falls as n⁻², radiative lifetime lengthens as n³, and the static polarizability explodes as n⁷. The levels crowd toward the ionization limit, and the enormous dipole interaction between two Rydberg atoms produces the blockade that underlies neutral-atom quantum computing.\n",{"path":5554,"title":5555,"module":5556,"summary":5557},"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction","The Relativistic Kinetic-Energy Correction","Fine Structure and the Dirac Atom","The Bohr energies treat the electron as slowly moving, but its speed is of order αc, so the kinetic energy needs a relativistic correction. Expanding √(p²c²+m²c⁴) to order (v\u002Fc)² produces the perturbation −p⁴\u002F8m³c², whose first-order shift on a hydrogenic state is evaluated with the trick p²=2m(E−V). The result depends on n and ℓ, is smaller than the gross structure by α²≈5×10⁻⁵, and is one of the three pieces that combine into the fine-structure formula.\n",{"path":5559,"title":5560,"module":5556,"summary":5561},"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession","Spin-Orbit Coupling and Thomas Precession","In the electron's rest frame the nucleus orbits it, and the resulting current produces a magnetic field that couples to the electron's spin moment. The interaction is ξ(r) L·S, with ξ built from the Coulomb potential and the radial expectation ⟨1\u002Fr³⟩. A relativistic subtlety, Thomas precession, halves the naive coefficient because the electron's rest frame is accelerating. The result splits each ℓ≥1 level into a j=ℓ±½ doublet and makes (n, ℓ, j, mⱼ) the good quantum numbers.\n",{"path":5563,"title":5564,"module":5556,"summary":5565},"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula","The Darwin Term and the Fine-Structure Formula","The third fine-structure correction, the Darwin term, is a contact interaction proportional to ∇²V that acts only on s-states, physically a smearing of the electron over a Compton wavelength. Adding the relativistic, spin-orbit, and Darwin shifts, the ℓ-dependence cancels and the total collapses to a formula in n and j alone. The n=2 shell splits into 2S₁\u002F₂, 2P₁\u002F₂, 2P₃\u002F₂, with the two j=½ levels exactly degenerate, a coincidence the Dirac theory explains.\n",{"path":5567,"title":5568,"module":5556,"summary":5569},"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen","The Dirac Equation for Hydrogen","The fine-structure formula was assembled from three perturbations; the Dirac equation produces it in one stroke and exactly. A first-order relativistic wave equation forces a four-component spinor, from which spin s=½, the g-factor of 2, the spin-orbit term, and antiparticles all emerge automatically. Its exact Coulomb spectrum depends only on n and j, and expanding in Zα reproduces the perturbative result, including the 2S₁\u002F₂–2P₁\u002F₂ degeneracy that sets up the Lamb shift.\n",{"path":5571,"title":5572,"module":5573,"summary":5574},"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed","The Lamb Shift and QED Radiative Corrections","QED Corrections and Hyperfine Structure","The Dirac equation makes the 2S₁\u002F₂ and 2P₁\u002F₂ levels of hydrogen exactly degenerate. Lamb and Retherford measured a splitting of about 1058 MHz that the Dirac theory cannot produce. The gap comes from the electron's coupling to the quantized electromagnetic field: self-energy, vacuum polarization, and the anomalous magnetic moment. Welton's vacuum-fluctuation estimate reproduces the size and shows why the effect lands almost entirely on s-states, and the same radiative corrections make hydrogen the most stringent test of QED.\n",{"path":5576,"title":5577,"module":5573,"summary":5578},"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm","Hyperfine Structure and the 21 cm Line","The proton carries a magnetic moment, and it interacts with the magnetic field the electron produces at the nucleus. For s-states that interaction is the Fermi contact term, proportional to the electron density at the origin and to the dot product of the nuclear and electronic spins. Coupling I and J into F = I + J splits each level by a Landé interval rule; in hydrogen's ground state it produces the F = 0\u002FF = 1 doublet whose 1420 MHz, 21 cm transition maps neutral hydrogen across the galaxy.\n",{"path":5580,"title":5581,"module":5573,"summary":5582},"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift","Nuclear Size, Moments, and Isotope Shifts","A real nucleus has a finite size, a mass that changes between isotopes, and, when its spin is at least one, an electric quadrupole moment. Each leaves a fingerprint in the atomic spectrum: the volume shift from s-electrons sampling the charge distribution, the mass and field isotope shifts that separate on a King plot, the quadrupole interaction that breaks the Landé interval rule, and the hyperfine anomaly from the magnetization distribution. Atomic spectroscopy reads nuclear properties out of these shifts.\n",{"path":5584,"title":5585,"module":5586,"summary":5587},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra","The Periodic Table and Atomic Spectra","Many-Electron Atoms","Identical electrons demand antisymmetric wave functions, which is the Pauli exclusion principle: no two electrons share all four quantum numbers. Filling shells in order of increasing energy — shifted by penetration and shielding — builds the periodic table and its recurring ionization pattern. Selection rules govern optical spectra, and an external field splits lines by the Zeeman effect.\n",{"path":5589,"title":5590,"module":5586,"summary":5591},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent","The Central-Field Approximation and the Self-Consistent Field","The N-electron Hamiltonian does not separate because every pair of electrons repels. The central-field approximation replaces that pairwise repulsion with an averaged spherical potential each electron feels, restoring hydrogen-like orbitals labelled by n and ℓ. The Thomas-Fermi statistical model fixes the shape of the screened charge from Fermi-gas thermodynamics; the Hartree self-consistent field determines it exactly by iterating orbitals against the potential they generate until the two agree.\n",{"path":5593,"title":5594,"module":5586,"summary":5595},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock","Exchange, Slater Determinants, and Hartree-Fock","A product wave function ignores that electrons are identical fermions. Enforcing antisymmetry writes the state as a Slater determinant, which vanishes whenever two electrons share a spin-orbital — the exclusion principle made algebraic. The energy of a determinant carries a new term with no classical analogue, the exchange integral, nonzero only for parallel spins; it lowers the energy of aligned electrons and carves a Fermi hole around each one. Adding the exchange operator to the mean field gives the Hartree-Fock equations, and what they still miss defines the correlation energy.\n",{"path":5597,"title":5598,"module":5586,"summary":5599},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom","Helium: the Prototype Two-Electron Atom","Helium is the smallest atom the Schrödinger equation cannot solve exactly, and the smallest that shows every many-electron effect. Ignoring the electron repulsion overbinds the ground state by 30 eV; first-order perturbation theory and a one-parameter variational calculation with an effective charge close most of the gap. The excited configurations split into para (singlet) and ortho (triplet) states separated by the exchange integral, with the triplet lower — and the absence of a 1s² triplet is the Pauli principle in its plainest form.\n",{"path":5601,"title":5602,"module":5586,"summary":5603},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols","LS and jj Coupling; Term Symbols","A configuration is not a single energy level. The residual electrostatic repulsion and the spin-orbit interaction split it, and which one dominates fixes the coupling scheme. In light atoms the electrostatic term wins: orbital and spin angular momenta couple separately into L and S, then into J, giving Russell- Saunders term symbols. In heavy atoms spin-orbit wins and each electron's j forms first. The Pauli principle prunes the allowed terms of equivalent electrons, the Landé interval rule spaces the fine-structure multiplet, and the scheme crosses over from LS to jj down a column.\n",{"path":5605,"title":5606,"module":5586,"summary":5607},"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms","Hund's Rules and Ground-State Terms","A configuration allows several terms; Hund's three rules pick the ground one. Maximize the spin S first, then the orbital L, then set J to |L−S| for a less-than-half shell and L+S for a more-than-half shell. The first two rules come from exchange lowering the energy of apart-kept electrons; the third comes from the sign of the spin-orbit coupling, which flips as a shell passes half-filling and turns the multiplet from normal to inverted. Worked ground terms for carbon, nitrogen, oxygen, and iron show the rules in action.\n",{"path":5609,"title":5610,"module":5611,"summary":5612},"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect","The Zeeman Effect","Atoms in External Fields","A magnetic field couples to the atom through its magnetic moment, splitting each level into equally spaced sublevels labelled by the projection of the total angular momentum. When spin is present the spacing is not the classical one: it carries the Landé g-factor, a projection of the spin and orbital moments onto the total angular momentum. We derive the weak-field Hamiltonian from minimal coupling, evaluate the shift with the projection theorem, and read off the polarization of the emitted components.\n",{"path":5614,"title":5615,"module":5611,"summary":5616},"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate","The Paschen-Back and Intermediate-Field Regimes","When the magnetic interaction grows past the fine-structure coupling, spin and orbital angular momentum decouple and precess independently about the field. The anomalous Zeeman pattern reverts to a simple triplet, the Paschen-Back effect. Between the two limits neither coupling dominates and the level positions follow from diagonalizing the combined spin-orbit and Zeeman Hamiltonian. We build the two-by-two problem for a single valence electron, solve it in closed form, and show both limits emerge from one expression.\n",{"path":5618,"title":5619,"module":5611,"summary":5620},"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability","The Stark Effect and Field Ionization","An electric field shifts atomic levels by coupling to the electron's position. Parity forbids a first-order shift for a non-degenerate state, so most atoms respond only at second order through their polarizability, a quadratic Stark shift. Hydrogen is the exception: its accidental degeneracy admits a permanent dipole and a linear shift, cleanest in parabolic coordinates. At large fields the Coulomb well develops a saddle, and Rydberg states field-ionize at a threshold that falls as the fourth power of the principal quantum number.\n",{"path":5622,"title":5623,"module":5624,"summary":5625},"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule","Time-Dependent Perturbation Theory and the Golden Rule","Radiative Transitions and Spectral Lines","An atom in a weak oscillating field makes transitions between its stationary states. First-order time-dependent perturbation theory gives the transition amplitude as a Fourier component of the perturbation at the Bohr frequency, and the resulting probability is a sinc-squared resonance that sharpens as the field acts longer. For a two-level system the same coupling produces Rabi oscillations; for a transition into a continuum the long-time limit collapses the sinc-squared into a delta function and yields Fermi's golden rule, a constant transition rate set by the coupling strength and the density of final states.\n",{"path":5627,"title":5628,"module":5624,"summary":5629},"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients","The Dipole Approximation and Einstein Coefficients","The coupling between an atom and light is the interaction of the electron with the electromagnetic field. Because an optical wavelength dwarfs the atom, the spatial variation of the field across the atom can be dropped, leaving the electric-dipole interaction and its matrix element. That matrix element defines the oscillator strength, which obeys the Thomas-Reiche-Kuhn sum rule. Einstein's three rate coefficients (absorption, stimulated emission, spontaneous emission) follow from detailed balance with thermal radiation, fixing the ratio of spontaneous to stimulated rates and its steep growth with frequency.\n",{"path":5631,"title":5632,"module":5624,"summary":5633},"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions","Selection Rules and Forbidden Transitions","The dipole matrix element vanishes for most pairs of states, and the pattern of which survive is the set of selection rules. Parity forces the orbital angular momentum to change by one; the angular integral of three spherical harmonics restricts the magnetic quantum number to change by zero or one; the photon's spin restricts the total angular momentum. When the dipole element vanishes, higher multipoles (magnetic dipole and electric quadrupole) can still drive the transition at rates smaller by powers of the fine-structure constant, and states with no allowed decay become metastable.\n",{"path":5635,"title":5636,"module":5624,"summary":5637},"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes","Lifetimes, Line Widths, and Line Shapes","A spectral line is never infinitely sharp. The finite lifetime of the excited state gives every line a natural Lorentzian width set by the total decay rate, the Fourier transform of an exponentially damped emission. Thermal motion adds a Gaussian Doppler width that usually dominates in a gas; collisions add a further Lorentzian pressure width; the observed profile is the Voigt convolution of the Gaussian and Lorentzian parts. Strong driving fields broaden the line further through saturation. Each mechanism has a distinct dependence on temperature, density, and intensity that lets it be identified and, where possible, removed.\n",{"path":5639,"title":5640,"module":5641,"summary":5642},"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles","Population Inversion, Gain, and the Laser","Lasers and Spectroscopy","A laser is an optical amplifier placed inside a resonant cavity. Amplification requires that stimulated emission outrun absorption, which requires more atoms in the upper level than the lower one — a population inversion that the Einstein relations forbid in thermal equilibrium and that no two-level pump can produce. Three- and four-level schemes reach it by routing atoms through auxiliary states. The gain coefficient sets how strongly a weak beam grows, the cavity fixes the threshold and selects a comb of longitudinal modes, and gain saturation clamps the steady-state inversion at its threshold value.\n",{"path":5644,"title":5645,"module":5641,"summary":5646},"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques","Spectroscopic Techniques and Frequency Combs","A tunable laser turns spectroscopy from photographing a spectrum into interrogating a single transition, but at room temperature the Doppler width buries the natural linewidth under a thousandfold-broader Gaussian. Saturated absorption and two-photon spectroscopy defeat the first-order Doppler shift by selecting the zero-velocity class or cancelling the shift between counter-propagating photons, recovering natural-width features. Laser-induced fluorescence pushes sensitivity to single atoms, and the optical frequency comb converts an optical frequency into a countable radio-frequency beat, giving absolute frequency measurement across the visible spectrum.\n",{"path":5648,"title":5649,"module":5641,"summary":5650},"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd","Reading Real Spectra with the NIST Database","Every quantity computed in this course — energy levels, transition frequencies, oscillator strengths, lifetimes — is tabulated for real atoms in the NIST Atomic Spectra Database. This lesson reads that data as physics: how levels are labelled by term symbols and energies in wavenumbers, how a transition list encodes wavelength, Einstein coefficient, and line strength, how a Grotrian diagram is reconstructed from the tables, and how a measured spectrum is matched to catalog lines. The residual between computed and tabulated positions is the running score of atomic theory.\n",{"path":5652,"title":5653,"module":5654,"summary":5655},"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler","Laser Cooling and Optical Molasses","Modern Atomic Physics","A near-resonant laser beam pushes an atom because every absorbed photon delivers one unit of momentum and the subsequent spontaneous emission averages to zero. Two counter-propagating red-detuned beams turn that push into friction: the Doppler shift brings a moving atom closer to resonance with the beam it moves against, so the net force opposes the velocity. Six beams give optical molasses in three dimensions. The random recoil of spontaneous emission heats against the friction, and the balance sets the Doppler cooling limit. Adding a magnetic-field gradient makes the force position-dependent as well, giving the magneto-optical trap.\n",{"path":5657,"title":5658,"module":5654,"summary":5659},"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping","Sub-Doppler Cooling and Atom Traps","Optical molasses cools multilevel atoms below the Doppler limit. A polarization gradient plus optical pumping makes an atom repeatedly climb a light-shift hill and be pumped to the valley, losing kinetic energy each cycle — Sisyphus cooling. The floor is the recoil limit, one photon momentum of residual motion. Below it, cooling must avoid scattering photons: conservative magnetic and optical-dipole traps hold the atoms while forced evaporation removes the hot tail, driving the phase-space density up toward quantum degeneracy.\n",{"path":5661,"title":5662,"module":5654,"summary":5663},"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation","Bose-Einstein Condensation of Atomic Gases","Below a critical temperature a gas of identical bosons places a macroscopic fraction of its atoms in the single lowest-energy state. The transition occurs when the thermal de Broglie wavelength grows to the interparticle spacing, so the phase- space density reaches order unity. The critical temperature follows from the Bose-Einstein distribution and the density of states, the condensate fraction grows as one minus (T\u002FTc) to the three-halves, and the condensate reveals itself in time-of-flight as a sharp bimodal peak in the momentum distribution. The 1995 rubidium and sodium experiments realized it in dilute trapped gases.\n",{"path":5665,"title":5666,"module":5654,"summary":5667},"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision","Optical Atomic Clocks and Precision Measurement","An atomic clock counts the oscillations of a field locked to an atomic transition. The cesium microwave standard defines the second through the 9.19 GHz ground-state hyperfine transition, interrogated by Ramsey's separated-oscillatory-field method whose fringe width is set by the free-precession time. Optical clocks replace the microwave transition with an optical one five orders of magnitude higher in frequency, raising the quality factor and the fractional stability in proportion. Lattice and single-ion clocks reach fractional uncertainties near ten-to-the-minus- eighteen by trapping the atoms at a magic wavelength that cancels the light shift, and at that level they measure the gravitational redshift over centimetres of height.\n",{"path":5669,"title":5670,"module":306,"summary":306},"\u002Fatomic-physics","Atomic Physics",{"path":5672,"title":5673,"module":306,"summary":306},"\u002Fdatabases","Databases",{"path":5675,"title":5676,"module":5,"summary":5677},"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category","Categories, Objects, and Arrows","A category is objects, arrows between them, a rule for composing arrows, and an identity arrow on every object, subject to associativity and the unit laws. The axioms mention no elements: arrows need not be functions, and an object is known only through the arrows into and out of it. Isomorphism, commutative diagrams, duality, and the terminal object are the first consequences.\n",{"path":5679,"title":5680,"module":5,"summary":5681},"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories","A Zoo of Categories","The axioms admit two very different kinds of model: large categories of structured sets and their structure-preserving maps (Set, Mon, Grp, Top, Vect), and small categories that are themselves single algebraic objects — a monoid as a one-object category, a poset as a thin category. The awkward cases Rel and Pfn have sets as objects but relations and partial functions as arrows, and a typed programming language presents its types and programs as a category.\n",{"path":5683,"title":5684,"module":5,"summary":5685},"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms","Isomorphisms, Monos, and Epis","Injectivity and surjectivity mention elements, so a general category re-expresses them by cancellation: monomorphisms cancel on the left, epimorphisms on the right. Sections and retractions are the split versions with an explicit one-sided inverse. Mono plus epi does not force an isomorphism, and subobjects are equivalence classes of monos into a fixed object.\n",{"path":5687,"title":5688,"module":5,"summary":5689},"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors","Functors: Maps Between Categories","A functor sends objects to objects and arrows to arrows while preserving composition and identities. Covariant and contravariant functors, the standard stock (forgetful, free, hom, and powerset), and the classification by faithfulness, fullness, and essential surjectivity all follow. Functors compose, so categories and functors form a category themselves.\n",{"path":5691,"title":5692,"module":5,"summary":5693},"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations","Natural Transformations and Functor Categories","A natural transformation is a map between two parallel functors: one component arrow per object, subject to a commuting square for every arrow of the source. Naturality is verified for the determinant, the double dual, and list operations; functors and natural transformations form the functor category [C, D]; and vertical and horizontal composition satisfy the Godement interchange law.\n",{"path":5695,"title":5696,"module":5,"summary":5697},"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory","Size: Small, Large, Locally Small","The objects of Set do not form a set, and pretending otherwise reproduces the classical paradoxes. Classes make the small\u002Flarge distinction precise, with locally small and essentially small as the intermediate notions. Cantor's theorem shows Set and its algebraic relatives are large, and the function-based axiomatization of sets is the one category theory prefers to ZFC.\n",{"path":5699,"title":5700,"module":5701,"summary":5702},"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties","Universal Properties, Initial and Terminal Objects","Universal Properties and Basic Constructions","A universal property characterizes an object by a for-all\u002Fexists-unique condition on the arrows into or out of it, and any two objects satisfying the same property are isomorphic by a unique isomorphism. Initial and terminal objects are the simplest cases; the free vector space, the discrete topology, and the ring of integers show the pattern at work.\n",{"path":5704,"title":5705,"module":5701,"summary":5706},"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts","Products and Coproducts","The product of two objects is a wedge of projections through which every other wedge factors uniquely; the coproduct is the dual, built from injections. In Set these are the cartesian product and the disjoint union, in a poset the meet and join, and in abelian groups the two coincide. The mediating-arrow discipline established here is the template for all limits.\n",{"path":5708,"title":5709,"module":5701,"summary":5710},"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories","Opposite, Product, Slice, and Comma Categories","Categories are themselves mathematical structures, and the standard algebraic constructions apply: opposites, products, subcategories, slices, and the comma category that subsumes them. The opposite category yields the duality principle, halving the subject's proofs; slice and comma categories repackage every universal property as an initial or terminal object.\n",{"path":5712,"title":5713,"module":5714,"summary":5715},"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors","Hom-Functors and Representables","Representables and the Yoneda Lemma","Fixing an object A of a locally small category produces a set-valued functor, the hom-functor A(A,-), that records every map out of A. A functor is representable when it is naturally isomorphic to such a hom-functor. We define the covariant and contravariant hom-functors, collect the standard representables (identity, forgetful, powerset), and read maps as generalized elements of varying shape.\n",{"path":5717,"title":5718,"module":5714,"summary":5719},"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma","The Yoneda Lemma","The Yoneda lemma computes the natural transformations out of a representable presheaf: they form a set in natural bijection with X(A). The proof fixes a single degree of freedom, the image of the identity arrow, and shows naturality forces everything else. We prove the bijection, verify naturality in both variables, and read off that a natural transformation out of a representable is just one element.\n",{"path":5721,"title":5722,"module":5714,"summary":5723},"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences","The Yoneda Embedding and Its Uses","Three corollaries turn the Yoneda lemma into working machinery. A representation of a presheaf is the same thing as a universal element; the Yoneda embedding of a category into its presheaf category is full and faithful; and two objects are isomorphic exactly when their representables are. Together they justify constructing arrows by constructing natural transformations between hom-functors, and they contain Cayley's theorem as the one-object case.\n",{"path":5725,"title":5726,"module":5727,"summary":5728},"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits","Cones and Limits","Limits and Colimits","A diagram is a functor from a small shape category; a cone over it is an object with compatible legs to every node; and a limit is the terminal cone, the one every other cone factors through uniquely. Products and terminal objects reappear as limits over particular shapes, and the whole construction is unique up to a single isomorphism.\n",{"path":5730,"title":5731,"module":5727,"summary":5732},"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks","Equalizers and Pullbacks","The equalizer of a parallel pair is the universal arrow that makes the two composites agree; the pullback of a cospan is the universal commutative square. In Set they are solution sets and fibered products, every equalizer is monic, monics are stable under pullback, and products plus equalizers together generate all limits.\n",{"path":5734,"title":5735,"module":5727,"summary":5736},"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits","Colimits: Coproducts, Coequalizers, Pushouts","Colimits are limits in the opposite category: cocones replace cones, and the universal cocone is initial rather than terminal. Coproducts glue objects side by side, coequalizers impose relations and produce quotients, pushouts glue along a shared part, and in Set every colimit is a quotient of a disjoint union. Directed colimits admit a clean elementwise description.\n",{"path":5738,"title":5739,"module":5727,"summary":5740},"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits","Computing Limits in Concrete Categories","In Set the limit of any diagram is the set of threads: choice functions through the nodes that commute with every edge. In Pos, Mon, and Top the recipe is the same limit downstairs plus the unique structure that makes the projections structure-preserving — pointwise order, componentwise operations, the topology generated by the projections. The pattern is what \"the forgetful functor creates limits\" means concretely.\n",{"path":5742,"title":5743,"module":5727,"summary":5744},"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors","Preservation, Reflection, and Creation of Limits","A functor preserves limits if it sends limit cones to limit cones, reflects them if it recognizes them, and creates them if limits downstairs lift uniquely upstairs. Representable functors preserve all limits, forgetful functors from algebra create them, and limits in functor categories are computed pointwise, one evaluation at a time.\n",{"path":5746,"title":5747,"module":5748,"summary":5749},"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions","Adjoint Functors via Hom-Set Bijections","Adjunctions","An adjunction is a natural bijection between two hom-sets: maps out of $F(A)$ in one category correspond to maps into $G(B)$ in the other. We give the definition, spell out the naturality axioms that make the correspondence compatible with composition, and work the flagship examples — free vector spaces, free groups, discrete and indiscrete topologies, and currying.\n",{"path":5751,"title":5752,"module":5748,"summary":5753},"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits","Units, Counits, and the Triangle Identities","The whole hom-set bijection of an adjunction is generated by two natural transformations: the unit, obtained by transposing identity maps on one side, and the counit, by transposing them on the other. Two triangle identities are all they must satisfy, and any pair satisfying them determines a unique adjunction. The same correspondence specializes to order-preserving maps between posets and to free constructions.\n",{"path":5755,"title":5756,"module":5748,"summary":5757},"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows","Adjunctions from Universal Arrows","The unit component at a single object is an initial object of a comma category, and this universal property alone rebuilds the whole adjunction. A functor has a left adjoint exactly when every object admits such a universal arrow, and the left adjoint is assembled from them one object at a time. We prove the equivalence of all three formulations of adjointness.\n",{"path":5759,"title":5760,"module":5748,"summary":5761},"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions","Free Constructions and Free–Forgetful Adjunctions","Free monoids, free groups, and free vector spaces are left adjoints to forgetful functors, and the universal mapping property is all one needs to prove it. Some forgetful functors also have right adjoints (co-free constructions like the indiscrete topology), producing three-functor chains. Contravariant adjunctions, symmetric in their two functors, close the lesson with the pattern behind duality and representation theorems.\n",{"path":5763,"title":5764,"module":5765,"summary":5766},"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints","Limits as Adjoints and as Representables","Adjoints, Representables, and Limits Together","A cone on a diagram is a natural transformation from a constant diagram, so a limit is a representation of the cone functor and, equivalently, a value of the right adjoint to the diagonal functor. We prove both rephrasings, derive uniqueness and functoriality of limits from them, and record the dual statement that a colimit is the left adjoint to the diagonal.\n",{"path":5768,"title":5769,"module":5765,"summary":5770},"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits","Limits and Colimits of Presheaves","Representables preserve limits, and limits in a functor category are computed one object at a time, so a presheaf category is complete and cocomplete with all its structure inherited pointwise from Set. The Yoneda embedding then preserves limits but not colimits, and the density theorem repairs the colimit side: every presheaf is a canonical colimit of representables.\n",{"path":5772,"title":5773,"module":5765,"summary":5774},"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits","Right Adjoints Preserve Limits (RAPL)","A functor with a left adjoint preserves every limit that exists, and dually a functor with a right adjoint preserves colimits. The proof is a four-line chain of natural isomorphisms through the adjunction and the continuity of representables. The theorem yields product-and-exponential arithmetic in Set, another proof that limits commute with limits, and a standard test for proving that a functor has no adjoint.\n",{"path":5776,"title":5777,"module":5765,"summary":5778},"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem","The Adjoint Functor Theorem","RAPL makes limit preservation necessary for having a left adjoint; the adjoint functor theorems identify when it is sufficient. For ordered sets no extra hypothesis is needed. In general the candidate adjoint is a limit over a comma category that may be large, and the general adjoint functor theorem tames it with a weakly initial set. We prove GAFT in full and apply it to free groups and, through the special adjoint functor theorem, the Stone–Čech compactification.\n",{"path":5780,"title":5781,"module":5782,"summary":5783},"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads","Monads from Adjunctions","Monads and Algebras","A monad on a category is an endofunctor equipped with a unit and a multiplication satisfying associativity and unit laws — the data of a monoid, written internally to the category of endofunctors. Every adjunction induces one, and the list, exception, and state constructions that model computational effects are all monads on Set.\n",{"path":5785,"title":5786,"module":5782,"summary":5787},"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore","Algebras for a Monad","An algebra for a monad is an object with a structure map that interacts correctly with the unit and multiplication. The algebras form the Eilenberg–Moore category, whose free–forgetful adjunction induces the monad back; a comparison functor relates any other inducing adjunction to it, and for the list monad the algebras are exactly monoids.\n",{"path":5789,"title":5790,"module":5782,"summary":5791},"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming","The Kleisli Category and Monads in Programming","The Kleisli category of a monad has the same objects as the base but takes arrows A to TB, composed by mapping and flattening. These arrows are effectful programs, Kleisli composition is the bind of functional programming, and the Kleisli adjunction is the initial resolution of the monad, with Eilenberg–Moore at the terminal end.\n",{"path":5793,"title":5794,"module":5782,"summary":5795},"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors","Algebras for an Endofunctor and Recursion","Dropping the monad laws leaves algebras for a bare endofunctor, whose initial objects are the least fixed points of the functor by Lambek's lemma. The natural numbers, lists, and trees are initial algebras; the unique map out of an initial algebra is the fold of functional programming; and the Smyth–Plotkin fixed-point technique builds Scott domains the same way.\n",{"path":5797,"title":5798,"module":5799,"summary":5800},"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories","Cartesian Closed Categories","Cartesian Closed Categories and Typed Lambda Calculus","A cartesian closed category has a terminal object, binary products, and for every pair of objects an exponential object that internalizes the hom-set as an object of the category. The defining data is an evaluation arrow and a currying operation, packaged by the adjunction between product-with-A and exponential-by-A. Set, Boolean and Heyting algebras, functor categories, and Cat are all cartesian closed.\n",{"path":5802,"title":5803,"module":5799,"summary":5804},"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence","Typed Lambda Calculus and CCCs","The typed lambda calculus and the cartesian closed category are two presentations of the same theory. Types become objects, terms with one free variable become arrows, product types become products, and function types become exponentials, with abstraction matching currying and application matching evaluation. Building the category of a lambda theory and the internal language of a category are mutually inverse up to equivalence.\n",{"path":5806,"title":5807,"module":5799,"summary":5808},"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion","Fixed Points in Cartesian Closed Categories","The untyped lambda calculus has a fixed-point combinator; the typed calculus cannot, and Lawvere's fixed-point theorem explains why: any point-surjection onto an exponential forces every endomap to have a fixed point, which is the abstract form of Cantor's diagonal argument. Recursion is recovered instead by restricting to omega-complete partially ordered objects, where every continuous endomap has a least fixed point built by iterating from bottom. This gives While loops a semantics.\n",{"path":5810,"title":5811,"module":306,"summary":306},"\u002Fcategory-theory","Category Theory",{"path":5813,"title":4612,"module":5814,"summary":5815},"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning","Mathematical Background","Every quantity a network touches is a tensor, and every layer is a matrix acting on one. This lesson compiles the linear algebra deep learning actually uses: products and norms, the system $Ax=b$ and when it is solvable, the two decompositions (eigen and SVD) that diagonalize a transformation, and the pseudoinverse that solves what cannot be solved exactly. It then derives PCA as the worked example that ties it all together.\n",{"path":5817,"title":5818,"module":5814,"summary":5819},"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory","Probability & Information Theory","This lesson assembles the probabilistic vocabulary a network is trained in (random variables, densities, the chain rule, expectation and covariance, the handful of distributions that recur everywhere) and then the information theory that turns a probabilistic model into a loss: self-information, entropy, and the KL divergence whose asymmetry is the cross-entropy objective itself.\n",{"path":5821,"title":5822,"module":5814,"summary":5823},"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation","Numerical Computation","Machine learning runs on finite-precision arithmetic, where every number is approximated and every operation rounds. This lesson sets the numerical ground rules: overflow and underflow and the standard stabilizations, the condition number that measures how much a problem amplifies error, and the gradient-based optimization (first and second order, constrained and unconstrained) that every training loop runs.\n",{"path":5825,"title":3971,"module":5814,"summary":5826},"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus","This lesson assembles the differential calculus used in training networks: the gradient and directional derivative, the Jacobian and Hessian, and the chain rule in scalar, vector, and matrix form. From the chain rule it derives back-propagation as a single sweep over the computational graph, tabulates the matrix-calculus identities that recur in layer gradients, reads optimization off a second-order Taylor expansion, and ends with why reverse-mode automatic differentiation is the algorithm every framework runs.\n",{"path":5828,"title":5829,"module":5,"summary":5830},"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning","What Is Deep Learning?","Deep learning is representation learning by composition: stack simple differentiable layers, define a loss, and let gradient descent discover the features a human would otherwise have to engineer by hand. We set up the whole vocabulary (model, loss, optimizer, data), the training loop that ties them together, and the three reasons the approach became practical.\n",{"path":5832,"title":5833,"module":5,"summary":5834},"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher","A Machine-Learning Refresher","The statistical framework the networks live in: data drawn from an unknown distribution, a loss to minimize, and the central question of generalization: will it work on data we have not seen? We set up empirical risk, capacity, the bias–variance tradeoff, and maximum likelihood.\n",{"path":5836,"title":5837,"module":5,"summary":5838},"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron","Linear Models & the Perceptron","The simplest learners (linear regression, logistic regression, the perceptron) already contain the whole template: a weighted sum, a loss, a gradient step. They also fail on the XOR problem, which no linear model can solve — the limitation that motivates deep learning.\n",{"path":5840,"title":5841,"module":5842,"summary":5843},"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron","The Multilayer Perceptron","Neural Networks","Stacking linear layers with a nonlinearity between them removes the limitation that stopped the perceptron. We build the multilayer perceptron in explicit matrix form (the forward pass, its dimensions, a worked XOR network with concrete weights) and prove why the nonlinearity is essential: without it the deepest stack collapses to a single hyperplane.\n",{"path":5845,"title":5846,"module":5842,"summary":5847},"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions","Activation Functions","The activation is the only nonlinear part of a layer, and the reason depth adds expressive power. We catalog the standard hidden units (sigmoid, tanh, ReLU and its descendants, plus GELU, softplus, swish and maxout), derive each unit's derivative in full, make the vanishing-gradient problem quantitative with the chain-rule product, work numeric examples, and explain why the saturating units gave way to ReLU and why ReLU's own dead-unit failure gave way to Leaky\u002FPReLU\u002FELU\u002FGELU.\n",{"path":5849,"title":5850,"module":5842,"summary":5851},"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation","Universal Approximation","One hidden layer with a non-polynomial activation can approximate any continuous function on a compact set to arbitrary accuracy: the universal approximation theorem. We prove it constructively (two sigmoids make a bump; sums of bumps make any curve), then show the limitation: existence is not efficiency. Depth-separation results exhibit functions a deep net represents with $O(n)$ units that a shallow net needs $\\exp(n)$ units to match.\n",{"path":5853,"title":5854,"module":5842,"summary":5855},"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation","Backpropagation","Backpropagation is the chain rule run backward over a computational graph. We formalize the graph, derive the four backprop equations for an MLP, present the forward and backward passes as algorithms, and work a tiny two-layer net by hand with explicit numbers. The result: one scalar loss, reverse-mode autodiff, and a gradient for every parameter at twice the cost of a forward pass.\n",{"path":5857,"title":5858,"module":5842,"summary":5859},"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units","Loss Functions & Output Units","The last layer is where a network's hidden representation meets the task. Choosing an output unit and a loss is not two independent choices; maximum likelihood fixes the pair. We derive the standard couplings (linear\u002FMSE, sigmoid\u002FBCE, softmax\u002Fcross-entropy), show why softmax and cross-entropy were built to cancel into the residual $\\hat y - y$, and prove why squared error is the wrong loss for a saturating classifier.\n",{"path":5861,"title":5862,"module":5863,"summary":5864},"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd","Gradient Descent & SGD","Optimization","Training is descent on the empirical risk: step the parameters against the gradient. We derive the minibatch gradient as an unbiased estimator whose variance falls as $1\u002FB$, derive the learning-rate ceiling from the smoothness-stability bound $\\eta \u003C 2\u002FL$, and lay out the schedules (step, exponential, cosine, warmup) that anneal it over training.\n",{"path":5866,"title":5867,"module":5863,"summary":5868},"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods","Momentum & Adaptive Methods","Plain gradient descent zig-zags across ravines and moves slowly along flat valleys, because one global learning rate cannot suit a surface with wildly different curvature in different directions. Two fixes address the two problems: momentum accumulates a velocity that damps the oscillation and accelerates the drift, and adaptive methods give every parameter its own learning rate scaled by the history of its gradients. Adam fuses both, and is the default optimizer of modern deep learning.\n",{"path":5870,"title":5871,"module":5863,"summary":5872},"\u002Fdeep-learning\u002Foptimization\u002Finitialization","Weight Initialization","The initial weights determine whether training can succeed before the first gradient step. Initialize every weight equal and all hidden units compute the same function forever; initialize too small or too large and the signal vanishes or explodes as it crosses depth. A single variance condition, $n_{\\text{in}}\\mathrm{Var}(W)=1$, fixes both, and reading it off the forward and backward passes yields Xavier and He initialization directly.\n",{"path":5874,"title":5875,"module":5863,"summary":5876},"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape","The Optimization Landscape","The loss of a deep network is a non-convex surface in millions of dimensions, so local search carries no global guarantee, yet it works. We classify critical points by the eigenvalues of the Hessian, show that in high dimension nearly all of them are saddle points rather than bad local minima, and read off the practical terrain — plateaus, cliffs, ill-conditioning, and the sharp-versus-flat distinction that ties the geometry of a minimum to how well it generalizes.\n",{"path":5878,"title":5879,"module":5863,"summary":5880},"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods","Second-Order & Approximate Methods","Newton's method reads the curvature of the loss off its Hessian and jumps to the minimum of the local quadratic in a single step, rescaling away the ill-conditioning that slows first-order descent. We derive it, then explain the three obstacles that keep it out of deep learning: a $d \\times d$ Hessian for $d$ in the billions, an attraction to saddle points, and minibatch noise. The alternative is approximation (conjugate gradients, BFGS and L-BFGS, the natural gradient and Hessian-free methods), each buying some of Newton's curvature information without ever forming or inverting $H$.\n",{"path":5882,"title":5883,"module":5884,"summary":5885},"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview","Regularization Overview","Regularization","Regularization is any modification to a learning algorithm meant to lower test error at the possible expense of training error. We derive the bias–variance decomposition that explains why it helps, set up the two parameter-norm penalties, $L^2$ weight decay and $L^1$, derive their update rules and eigenbasis shrinkage, show geometrically why $L^1$ alone produces sparse weights (soft-thresholding), distinguish weight decay from loss-added $L^2$ under AdamW, and read both penalties through the two lenses that recur across the chapter: a norm-ball constraint via KKT, and a prior via MAP estimation.\n",{"path":5887,"title":5888,"module":5884,"summary":5889},"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation","Dropout & Data Augmentation","Two of the most effective regularizers add no penalty term at all; they perturb the computation instead. Dropout multiplies hidden units by a random Bernoulli mask, training an exponential ensemble of thinned subnetworks that share weights; inverted scaling collapses that ensemble into one cheap forward pass at test time. Data augmentation enlarges the training set with label-preserving transforms, injecting the invariances the task demands, and noise injection (input, weight, label smoothing, Mixup) generalizes the same idea into a continuous family.\n",{"path":5891,"title":5892,"module":5884,"summary":5893},"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing","Early Stopping & Parameter Sharing","Two cheap regularizers that cost no extra term in the loss. Early stopping treats training time itself as a hyperparameter (watch the validation curve, halt at its minimum, keep the best checkpoint), and for a quadratic objective it is provably equivalent to $L^2$ weight decay. Parameter sharing goes the other way: it constrains many weights to be _equal_, the prior behind every convolution and every recurrent step, and the reason a CNN has orders of magnitude fewer parameters than the dense net it replaces.\n",{"path":5895,"title":5896,"module":5884,"summary":5897},"\u002Fdeep-learning\u002Fregularization\u002Fnormalization","Normalization","Normalization layers standardize activations to zero mean and unit variance inside the network, then hand the model a learnable scale and shift to undo the constraint when it pays to. Batch normalization does this across the batch and must keep separate train-time and test-time statistics; layer, instance, and group norm change only the axes they average over. The result is faster, better-conditioned optimization and a free dose of regularizing batch noise.\n",{"path":5899,"title":5900,"module":5901,"summary":5902},"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks","Convolutional Networks","Architectures","A convolutional network replaces the dense layer's all-to-all weight matrix with a small kernel slid across the input. Three structural commitments (sparse connectivity, parameter sharing, and translation equivariance) collapse the parameter count by orders of magnitude and bake the right prior for images directly into the architecture. We derive the convolution arithmetic, the output geometry, pooling, and the receptive field, then assemble the canonical stack.\n",{"path":5904,"title":5905,"module":5901,"summary":5906},"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures","CNN Architectures","Six landmark networks, each contributing exactly one idea: LeNet's conv-pool stack, AlexNet's ReLU-and-dropout scale, VGG's $3\\times3$ uniformity, Inception's multi-scale module, ResNet's residual skip, and DenseNet's dense connectivity. The common thread is the degradation problem (why plain deeper nets train worse, not just overfit) and the residual block that solved it by keeping a $+1$ path open for the gradient.\n",{"path":5908,"title":5909,"module":5901,"summary":5910},"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks","Recurrent Networks","A recurrent network folds a sequence into a fixed-size hidden state, reusing one set of weights at every time step, the architectural prior that the same rule applies wherever it lands in time. Unrolling the recurrence exposes a deep feed-forward graph; backpropagation through it sums gradient contributions across all steps and chains a product of Jacobians, and that product is why long-range gradients vanish or explode. That failure motivates gated architectures.\n",{"path":5912,"title":5913,"module":5901,"summary":5914},"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru","LSTM & GRU","A plain recurrent network propagates its hidden state through a repeated weight-matrix multiply, and the Jacobian product that results vanishes or explodes long before a useful gradient can reach the early steps. Gated RNNs fix this with an additive memory path: a cell state that is carried forward almost unchanged, past which the gradient flows along a near-identity highway. We derive that highway, give the full LSTM and GRU equations, and compare the two.\n",{"path":5916,"title":5917,"module":5901,"summary":5918},"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers","Attention & Transformers","Attention replaces fixed wiring with content-based routing: every position reads from every other through a soft, learned dot-product lookup. We derive scaled dot-product attention and its $\\sqrt{d_k}$ correction, build it into multi-head self-attention, inject order with positional encodings, and stack the whole thing into the Transformer block that displaced recurrence and convolution alike.\n",{"path":5920,"title":5921,"module":5901,"summary":5922},"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture","The Transformer Architecture","The Transformer is the architecture built around the attention mechanism. This first part assembles the full encoder–decoder of \"Attention Is All You Need\" — embeddings and positional encoding, stacked self-attention and feed-forward sublayers wrapped in residual connections and LayerNorm, masked decoding and cross-attention — works through causal masking and the three modern families (encoder-only, decoder-only, encoder–decoder), and accounts for where the parameters and the $O(n^2)$ compute actually go.\n",{"path":5924,"title":5925,"module":5901,"summary":5926},"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice","Transformers in Practice","The Transformer makes no assumption about what a token represents. This part follows the architecture out of language: image patches feed a plain encoder (the Vision Transformer), the decoder-only half scales into the GPT line of large language models, and one substrate covers translation, retrieval, and multimodal grounding. We work the ViT patch arithmetic and a GPT parameter count by hand, then close on the empirical scaling laws — power-law loss, the Chinchilla compute-optimal balance, and emergent behavior — that made scale the dominant lever.\n",{"path":5928,"title":5929,"module":5901,"summary":5930},"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks","Graph Neural Networks","A graph neural network learns on data with no grid and no canonical ordering: atoms in a molecule, users in a social network, road segments in a map. The unifying idea is message passing — each node repeatedly aggregates its neighbors' states and updates its own — built to respect the one symmetry graphs demand, permutation equivariance. We derive the message-passing framework, specialize it into GCN, GraphSAGE, GAT, and GIN, read off graph-level outputs, and bound what message passing can and cannot tell apart.\n",{"path":5932,"title":5933,"module":5901,"summary":5934},"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models","State-Space Models and Mamba","A state-space model carries a continuous linear hidden state through a sequence, and that linearity buys two equivalent algorithms from one set of weights: a recurrence that runs in linear time with constant memory, and a global convolution that trains in parallel. Long-range memory comes from how the transition matrix is initialized (HiPPO) and parameterized (S4's diagonal-plus-low-rank form). Mamba breaks the convolution on purpose, making the parameters input-dependent so the model can select what to remember, recovered at speed by a hardware-aware parallel scan.\n",{"path":5936,"title":5937,"module":5938,"summary":5939},"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory","Generalization Theory","Theory & Frontiers","Classical learning theory bounds the gap between training and test error by a model's capacity (VC dimension, Rademacher complexity), and predicts that a model with more parameters than data should overfit catastrophically. Modern networks do the opposite: they interpolate, even fit pure noise, and still generalize. We derive the classical bounds, work the bias-variance decomposition, show why the bounds go vacuous, and survey what replaced them: double descent, the interpolation threshold, margin and norm-based bounds, and the implicit bias of the optimizer itself.\n",{"path":5941,"title":5942,"module":5938,"summary":5943},"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness","Adversarial Robustness","A trained network can be fooled by a perturbation too small for a human to see: add a carefully aimed vector of magnitude $\\epsilon$ to a correctly classified image and the prediction flips. We derive the fast gradient sign method as the first-order-optimal step inside an $L_\\infty$ ball, explain the linearity hypothesis that makes high-dimensional models so easy to push around, build up to projected gradient descent, and frame adversarial training as a min-max robust-optimization problem with its own accuracy cost. Defenses beyond training continue in the next lesson.\n",{"path":5945,"title":5946,"module":5938,"summary":5947},"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses","Adversarial Defenses","Defending a network against an adversary is far harder than attacking one. This lesson covers the defense side: certified guarantees via randomized smoothing, the transferability that makes black-box attacks possible, and the recurring failure of gradient masking, where a defense hides the attacker's gradient instead of moving the decision boundary. It ends with the adaptive-attack discipline (BPDA, EOT, transfer) that every robustness claim must be tested against.\n",{"path":5949,"title":5950,"module":5938,"summary":5951},"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods","Bayesian & Ensemble Methods","A trained network returns a single point prediction and, with the softmax, a confidence, but that confidence is usually miscalibrated, collapsing to near- certainty even on inputs the model has never seen. This lesson covers uncertainty estimation for networks: the two kinds of uncertainty, the Bayesian posterior over weights and its tractable stand-ins (MC dropout, deep ensembles), and how to check whether a model's reported confidences match observed frequencies.\n",{"path":5953,"title":5954,"module":5938,"summary":5955},"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models","Deep Equilibrium Models","A deep network need not be a fixed stack of layers; it can be a single weight-tied layer iterated to convergence, its output defined implicitly as the fixed point $z^\\star = f_\\theta(z^\\star, x)$. The forward pass becomes root-finding and the backward pass becomes implicit differentiation, so training costs O(1) memory regardless of effective depth. We derive both passes from the implicit function theorem and close the course on defining a layer by a fixed-point condition rather than an explicit stack.\n",{"path":5957,"title":5958,"module":5959,"summary":5960},"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models","Linear Factor Models","Generative Models","The simplest generative models share one template: a latent variable drawn from a fixed prior, run through a linear decoder, plus noise. Probabilistic PCA, factor analysis, independent component analysis, and sparse coding are all this template with a different prior on the latents and a different noise model. We derive each marginal, see why ICA needs non-Gaussianity to identify its sources, and show how sparse coding learns Gabor-like dictionary atoms.\n",{"path":5962,"title":5963,"module":5959,"summary":5964},"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders","Autoencoders","An autoencoder is a network trained to copy its input to its output through a narrow channel; the useful product is the bottleneck representation $h$, not the reconstruction. We derive the undercomplete autoencoder and prove its linear case recovers PCA, then trade the bottleneck for explicit regularization (sparse, denoising, contractive) and show how a denoising autoencoder learns the low-dimensional manifold the data lives on.\n",{"path":5966,"title":5967,"module":5959,"summary":5968},"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders","Variational Autoencoders","An autoencoder compresses, but its latent space has gaps: sample a point between two encodings and the decoder produces noise. The variational autoencoder fixes this by training a probabilistic encoder against a prior, so the latent space becomes a smooth, samplable density. We derive the evidence lower bound it maximizes, the reparameterization trick that lets gradients flow through a random sample, and the closed-form Gaussian regularizer that pulls the posterior toward the prior.\n",{"path":5970,"title":5971,"module":5959,"summary":5972},"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks","Generative Adversarial Networks","A generative adversarial network trains two networks against each other: a generator that turns noise into samples, and a discriminator that tries to tell real data from forgeries. The game has a clean theory: the optimal discriminator is a likelihood ratio, and at equilibrium the generator minimizes the Jensen–Shannon divergence to the data, with a global optimum exactly when its distribution matches the data. We derive that result, fix the saturating loss that breaks training, and catalogue the failure modes (mode collapse, instability, vanishing gradients) and the architectural fixes.\n",{"path":5974,"title":5975,"module":5959,"summary":5976},"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows","Autoregressive Models & Normalizing Flows","Two families that provide exact likelihoods, each at a cost. Autoregressive models factor the joint by the probability chain rule and learn each conditional with a masked network: exact $\\log p(x)$, but sampling proceeds one coordinate at a time. Normalizing flows push a simple base density through an invertible map and read $\\log p(x)$ off the change-of-variables formula, trading architectural freedom for a cheap Jacobian determinant via triangular coupling layers.\n",{"path":5978,"title":5979,"module":5959,"summary":5980},"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines","Energy-Based & Boltzmann Machines","Energy-based models replace an explicit density with a scalar energy and a Boltzmann normalization, $p(x) = e^{-E(x)}\u002FZ$: simple to specify, but with an intractable partition function $Z$. The Boltzmann machine and its restricted variant make the energy bilinear so the hidden units factorize, and contrastive divergence sidesteps $Z$ by replacing the model expectation with a few Gibbs steps started at the data. We close on the undirected deep models (DBNs and DBMs) and how they differ from the directed VAE.\n",{"path":5982,"title":5983,"module":5959,"summary":5984},"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models","Diffusion and Score-Based Models","Corrupt a data point with Gaussian noise in small steps until only noise remains, then train a network to undo one step at a time. We derive the forward process and its closed-form marginal, reduce the variational bound to the single noise-prediction objective that makes diffusion trainable, and show the score-matching view that unifies it with Langevin sampling and the continuous SDE. The lesson closes with DDIM fast sampling, classifier-free guidance, and the latent diffusion that powers modern text-to-image systems.\n",{"path":5986,"title":5987,"module":5988,"summary":5989},"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models","Structured Probabilistic Models","Probabilistic Methods","A joint distribution over $n$ variables is a table with exponentially many entries; nobody can store it, fit it, or sample from it directly. Structure fixes this: a graph whose missing edges encode conditional independencies that factor the joint into small local pieces. We build the two dialects, directed (Bayesian networks) and undirected (Markov random fields), read independence off the graph, and connect the machinery to the latent-variable and energy-based models that power deep generative learning.\n",{"path":5991,"title":5992,"module":5988,"summary":5993},"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc","Monte Carlo & MCMC","Most quantities of interest in a probabilistic model are integrals nobody can compute in closed form: expectations, marginals, partition functions. Monte Carlo replaces the integral with an average over samples; importance sampling reweights samples from a tractable proposal; and when even sampling the target is hard, Markov-chain Monte Carlo builds a chain whose stationary distribution _is_ the target. We derive Metropolis–Hastings and Gibbs, analyze mixing, and close on the partition-function gradient that powers energy-based learning.\n",{"path":5995,"title":5996,"module":5988,"summary":5997},"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference","Approximate Inference","In a latent-variable model the quantity we need, the posterior $p(h\\mid v)$ over hidden causes, is almost never computable, because its normalizer is an intractable sum over configurations. Approximate inference reframes the problem as optimization: maximize the evidence lower bound, a tractable functional whose gap to the true log-evidence equals a KL divergence. From that single bound fall expectation–maximization, mean-field variational inference, MAP, and the learned encoders behind variational autoencoders.\n",{"path":5999,"title":6000,"module":6001,"summary":6002},"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology","Practical Methodology","Practical Deep Learning","Knowing the algorithms is half the job; the other half is a disciplined loop. Fix a goal and a metric, stand up an end-to-end baseline, then read the train\u002Fvalidation gap to decide whether the next move is more data or a bigger model. We detail that loop: choosing metrics under class imbalance, default baselines by data type, extrapolating the data a target needs, and guarding the data pipeline against the leaks and label bugs that corrupt every gradient. Hyperparameter tuning, debugging, and deployment continue in the sequel.\n",{"path":6004,"title":6005,"module":6001,"summary":6006},"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging","Hyperparameters & Debugging","The tuning half of the methodology loop. The learning rate is the one hyperparameter that dominates, so we tune it first, on a log scale, coarse to fine, and prefer random search to grid when only a few dials matter. Then an ordered debugging playbook — overfit one batch, check the loss at initialization against ln C, watch the gradient norm, gradient-check against centered finite differences — and, after launch, monitoring for train-test skew and distribution drift with confidence-based abstention.\n",{"path":6008,"title":6009,"module":6001,"summary":6010},"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning","Representation Learning","A good representation makes a hard task easy by changing coordinates: it disentangles the factors of variation, spends its bits as a distributed code, and respects the low-dimensional manifold the data lives on. We make those three properties precise, recover the manifold hypothesis, and close on the first method that turned them into training practice — greedy layer-wise unsupervised pretraining — before the sequel picks up how the field learned to reuse those features.\n",{"path":6012,"title":6013,"module":6001,"summary":6014},"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning","Transfer Learning","A representation learned once can be reused everywhere. We cover the main mechanisms of reuse: feature extraction versus fine-tuning, the generic-to-specific gradient of features that sets the freeze boundary, the learning-rate discipline that keeps borrowed weights from being erased, domain adaptation when only the input distribution shifts, and the modern arc from supervised transfer to self-supervised foundation models.\n",{"path":6016,"title":6017,"module":6001,"summary":6018},"\u002Fdeep-learning\u002Fpractical\u002Fapplications","Applications","We survey large-scale training (the hardware, the two axes of parallelism, mixed precision, and the compression tricks that shrink a model after it is trained), then specialize the same gradient loop to vision, language, speech, and recommendation. Each domain is a different prior bolted onto one optimizer: convolutional invariance for pixels, distributed word vectors for tokens, sequence transduction for audio, low-rank factorization for the user–item matrix.\n",{"path":6020,"title":6021,"module":6001,"summary":6022},"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation","Model Compression and Distillation","A trained network and a deployable one are rarely the same object. This lesson is the toolkit for closing that gap: knowledge distillation transfers a large teacher's soft, information-rich logits into a small student; pruning deletes the weights that contribute least; quantization swaps 32-bit floats for 8- or 4-bit integers; and low-rank factorization replaces a fat matrix with two thin ones. We derive each method, show what it costs in accuracy, and lay out which combinations win on which hardware.\n",{"path":6024,"title":6025,"module":6001,"summary":6026},"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot","Meta-Learning and Few-Shot Learning","A deep network trained on one example per class overfits. Meta-learning targets this few-shot regime by training across a distribution of tasks so that a new task is learnable from a handful of examples. We formalize the $N$-way $K$-shot episode, then derive the two dominant families: metric methods that learn an embedding where distance classifies (Prototypical Networks), and optimization methods that learn an initialization a few gradient steps can adapt (MAML). We close on the link to transfer learning and to the in-context few-shot behavior of large language models.\n",{"path":6028,"title":6029,"module":6030,"summary":6031},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models","Large Language Models","Large Models & Agents","A large language model is a decoder-only Transformer trained on one objective, next-token prediction, then scaled until new behavior appears. This first part builds the object itself: the equivalence between next-token prediction and lossless compression, subword tokenization (BPE, WordPiece, Unigram, SentencePiece) worked on a real sentence, the four pretraining objectives and the attention masks that distinguish them, and the three model families (encoder-only, decoder-only, encoder--decoder) with their parameter budgets. Scaling, decoding, the KV cache, and alignment continue in part two.\n",{"path":6033,"title":6034,"module":6030,"summary":6035},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment","Scaling, Inference, and Alignment of Language Models","Once a language model is built, three questions remain: how does it improve as it grows, how is it decoded and served affordably, and how is a raw next-token predictor turned into an assistant. We derive the Kaplan power laws and the Chinchilla compute-optimal balance, trace emergent abilities and in-context learning, catalog the decoding strategies from greedy to nucleus sampling, work the KV cache that makes generation quadratic instead of cubic, cover parameter-efficient adaptation by low-rank updates (LoRA), and close on the alignment stack: instruction tuning, RLHF, and DPO.\n",{"path":6037,"title":6038,"module":6030,"summary":6039},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart","Denoising Sequence-to-Sequence Pretraining: BART","BERT corrupts and reconstructs; GPT predicts the next token. Sequence-to-sequence pretraining unifies both by training a full encoder–decoder as a denoising autoencoder: corrupt the text with a noise function, then reconstruct the original through a bidirectional encoder and an autoregressive decoder. This first part derives the denoising objective, catalogs BART's five noise functions (with a worked Poisson-infilling budget), proves BART specializes to both BERT and GPT, and traces a dimension-annotated forward pass through its encoder--decoder. T5, PEGASUS, fine-tuning, and decoding continue in part two.\n",{"path":6041,"title":6042,"module":6030,"summary":6043},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation","Text-to-Text Transfer and Conditional Generation","BART reconstructs a corrupted document; T5 pushes the same denoising idea into a single interface where every task is a string-to-string map. This second part covers T5's span corruption with sentinel tokens (with a worked token budget), PEGASUS's summarization-matched gap sentences and the MASS midpoint, supervised fine-tuning and beam-search decoding with a length penalty, the exposure-bias failure modes of autoregressive decoding, and a theorem showing why a bidirectional encoder--decoder strictly dominates a decoder-only model when the output is conditioned on a full input.\n",{"path":6045,"title":6046,"module":6030,"summary":6047},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models","Speech Recognition: Front-Ends and Alignment","Speech is a long, high-rate sequence whose label is short and unaligned, so the whole subject turns on bridging that mismatch. This first part builds the spectral front-ends that compress a waveform into frames (STFT, mel spectrogram, MFCC, with a worked frame-count), derives CTC's marginalization over alignments and its forward-backward recursion with a two-frame numeric example, and contrasts it with attention-based seq2seq (LAS) and the RNN transducer. Self-supervised and weakly-supervised models, and text-to-speech, continue in part two.\n",{"path":6049,"title":6050,"module":6030,"summary":6051},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis","Self-Supervised Speech Models and Synthesis","The recognition front-ends and alignment losses of part one all need transcribed audio, which is scarce. This second part removes that dependence: wav2vec 2.0 learns speech representations from unlabeled audio by a masked contrastive objective, HuBERT swaps the contrast for masked prediction of clustered units, and Whisper trades curation for scale with weakly-supervised web audio and a multitask token interface. We close with text-to-speech (the same length mismatch run backwards) and a tour of speech foundation models, discrete audio codecs, and neural TTS.\n",{"path":6053,"title":6054,"module":6030,"summary":6055},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents","AI Agents: Tools and Reasoning","A language model that only emits text is a function from prompt to prompt; an agent closes the loop, letting that model act on an environment, read back the result, and decide again. This first part formalizes the agent as a policy over interaction histories, builds out tool calling and the executor trust boundary, the ReAct interleaving of reasoning and action (with concrete traces), and search over thoughts: chain-of-thought, self-consistency, least-to-most, and Tree of Thoughts. Memory, retrieval, reflection, and multi-agent orchestration continue in part two.\n",{"path":6057,"title":6058,"module":6030,"summary":6059},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration","Agent Memory, Retrieval, and Orchestration","An agent's reasoning and tool use only matter if it can remember what it learned and coordinate work larger than one context window. This second part builds the systems around the loop: short-term scratchpad versus long-term vector store, retrieval-augmented generation with a worked softmax over passage scores, reflection (Reflexion, Self-Refine), and multi-agent orchestration. It closes on the failure modes that bound agents — invalid tool calls, horizon-error compounding, context overflow, non-terminating loops — and the benchmarks that score the full loop.\n",{"path":6061,"title":6062,"module":6030,"summary":6063},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts","Mixture-of-Experts","A mixture-of-experts layer replaces one feed-forward network with many and a router that sends each token to only a few of them, so the parameter count and the per-token compute become separate dials. We derive the gated output, sparse top-$k$ routing softmax, the load-balancing loss that stops the router from collapsing onto a single expert, and expert\u002Ftoken capacity with dropping, then work the dimension-annotated tensor shapes and FLOP arithmetic. We trace the architectures from the sparsely-gated LSTM through GShard, Switch Transformer, and Mixtral, cover distributed expert parallelism, and close on the training dynamics, failure modes, and serving costs of a sparse model.\n",{"path":6065,"title":6066,"module":6030,"summary":6067},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models","Multimodal Contrastive Learning","A multimodal model places images, text, and audio in one representation space, so a picture and its caption land close together. This first part builds the contrastive route: the shared embedding space and its residual modality gap, the Vision Transformer image encoder (patch embedding, CLS token, position embeddings, with shapes), the symmetric InfoNCE loss that trains the CLIP dual encoder from a batch similarity matrix (with a worked numeric step), and zero-shot classification as a softmax over class-prompt embeddings. Fusion and vision-language models continue in part two.\n",{"path":6069,"title":6070,"module":6030,"summary":6071},"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models","Fusion and Vision-Language Models","A contrastive model compares modalities but never lets one read another. This second part builds the fusion route: early, late, and cross-attention fusion, then the three designs that connect a frozen vision encoder to a frozen language model — Flamingo's zero-initialized gated cross-attention, BLIP-2's Q-Former, and LLaVA's linear projector. We work the token-budget arithmetic that separates them, name the object-hallucination and fine-detail failure modes, cover the contrastive-then- instruction-tune recipe and its retrieval\u002Fcaptioning\u002FVQA benchmarks, and close on natively multimodal models.\n",{"path":6073,"title":6074,"module":6075,"summary":6076},"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning","Foundations of Reinforcement Learning","Reinforcement Learning","Reinforcement learning is the third paradigm: an agent learns to act by interacting with an environment that returns rewards, not labels. We formalize the interaction as a Markov decision process, define the value functions that rank states and actions, and derive the Bellman expectation and optimality equations that every method downstream solves. Dynamic programming gives the exact answer when the model is known, and its convergence rests on a single fact: the Bellman operator is a contraction.\n",{"path":6078,"title":6079,"module":6075,"summary":6080},"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control","Model-Free Prediction and Control","When the dynamics are unknown, an agent cannot plan against a model; it must learn directly from sampled experience. We build prediction and control from two estimators of the same return: Monte Carlo averages whole episodes, while temporal-difference learning bootstraps from its own next estimate. We trace the bias-variance contrast between them, derive SARSA and Q-learning as the on-policy and off-policy forms of control, unify everything through n-step returns and eligibility traces, and close on the deadly triad that makes off-policy bootstrapping with function approximation diverge.\n",{"path":6082,"title":6083,"module":6075,"summary":6084},"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks","Deep Q-Networks","A Deep Q-Network replaces the tabular action-value function with a neural approximator $Q(s,a;\\theta)$ and trains it by regression toward a bootstrapped target. Naive online Q-learning with a network diverges, so DQN adds two stabilizers: an experience-replay buffer that decorrelates samples, and a periodically-frozen target network that holds the regression target still. We derive the loss, give the full algorithm and the Atari pipeline, and then layer on Double DQN, the dueling split, prioritized replay, and the Rainbow combination.\n",{"path":6086,"title":6087,"module":6075,"summary":6088},"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic","Policy Gradients and Actor-Critic Methods","Value-based reinforcement learning learns what each state is worth and acts greedily; policy-gradient methods skip the detour and optimize a parameterized policy directly by ascending the gradient of expected return. The policy gradient theorem makes this tractable through the log-derivative trick, turning an intractable gradient of an expectation into an expectation of a gradient. REINFORCE realizes the idea but suffers high variance; baselines, the advantage function, and actor-critic learning reduce it, and trust-region methods (TRPO, PPO) keep each update from destroying the policy it just learned.\n",{"path":6090,"title":6091,"module":6075,"summary":6092},"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback","Reinforcement Learning from Human Feedback","Many objectives we want from a model, that it be helpful and harmless, are hard to write down but easy to judge by comparison. RLHF turns that asymmetry into a training signal: fit a reward model to pairwise human preferences under the Bradley-Terry likelihood, then fine-tune the policy to maximize that reward under a KL penalty toward a reference. We derive the reward loss, the KL-regularized RL objective and its closed-form optimum, then show how DPO inverts that optimum to collapse the whole pipeline into one supervised log-sigmoid loss, and survey IPO, KTO, RLAIF, and GRPO.\n",{"path":6094,"title":6095,"module":306,"summary":306},"\u002Fdeep-learning","Deep Learning",{"path":6097,"title":6098,"module":4162,"summary":6099},"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law","Equilibrium, State Variables, and the Zeroth Law","Thermodynamics describes a many-body system by a handful of macroscopic variables and the equilibrium relations among them. This lesson fixes the vocabulary: systems and the walls that separate them, state variables versus path-dependent process quantities, quasi-static and reversible idealizations, and the zeroth law, whose transitivity of thermal equilibrium is what lets temperature exist as a number. The ideal-gas thermometer turns that number into a scale, and an equation of state ties the variables into a surface.\n",{"path":6101,"title":6102,"module":4162,"summary":6103},"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work","The First Law: Internal Energy, Heat, and Work","The first law is energy conservation for a system that exchanges energy as both heat and work. Internal energy is a state function with an exact differential; heat and work are path-dependent process quantities. This lesson states $\\d U=\\delta Q+\\delta W$, computes compression work as an area on the $P$–$V$ plane, defines the heat capacities $C_V$ and $C_P$ and the enthalpy that makes $C_P$ natural, and works the isothermal and adiabatic processes of an ideal gas, including the adiabat $PV^\\gamma=\\text{const}$.\n",{"path":6105,"title":6106,"module":4162,"summary":6107},"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound","The Second Law, Carnot Cycles, and Entropy","The second law forbids the free conversion of heat into work. This lesson states the Kelvin and Clausius forms, proves them equivalent, and analyzes the Carnot cycle to get the efficiency bound $1-T_c\u002FT_h$. Carnot's theorem makes that bound universal and defines the thermodynamic temperature scale. The Clausius inequality $\\oint \\delta Q\u002FT\\le 0$ then constructs entropy as a state function, $\\d S=\\delta Q_{\\rm rev}\u002FT$, whose non-decrease in isolated systems is the arrow of time.\n",{"path":6109,"title":6110,"module":4162,"summary":6111},"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations","Thermodynamic Potentials and Maxwell Relations","The fundamental relation $\\d U=T\\,\\d S-P\\,\\d V+\\mu\\,\\d N$ packages the first and second laws into one exact differential. Legendre transforms swap each conjugate pair to produce the Helmholtz, enthalpy, Gibbs, and grand potentials, each minimized under its own natural variables. Equality of mixed second partials of these potentials gives the Maxwell relations, which convert unmeasurable entropy derivatives into measurable ones from the equation of state.\n",{"path":6113,"title":6114,"module":4162,"summary":6115},"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law","Response Functions, Stability, and the Third Law","Response functions — heat capacities, compressibilities, thermal expansion — are the second derivatives of the potentials and the quantities an experiment actually measures. This lesson derives the general relation $C_P-C_V=TV\\alpha^2\u002F\\kappa_T$, shows that convexity of the potentials forces the stability conditions $C_V>0$ and $\\kappa_T>0$, and states the third law: entropy approaches a constant as $T\\to0$, so heat capacities and expansion coefficients vanish there and absolute zero is unattainable.\n",{"path":6117,"title":6118,"module":6119,"summary":6120},"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition","Classical Statistics and Equipartition","Microstates, Phase Space, and Statistical Entropy","A liter of gas holds on the order of a trillion trillion molecules, far too many to track by their equations of motion. Classical statistical mechanics replaces the trajectories with a single probability law, the Boltzmann distribution, and reads the measurable properties of matter off it: the Maxwell speed distribution, the average energy per degree of freedom, and the heat capacities of gases and solids — together with the low-temperature failures that forced the quantum revision.\n",{"path":6122,"title":6123,"module":6119,"summary":6124},"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem","Phase Space, Trajectories, and Liouville's Theorem","A classical system of N particles is one point in a 6N-dimensional phase space, and its evolution is a single trajectory driven by Hamilton's equations. This lesson builds that geometric picture, introduces the phase-space density of an ensemble, and proves Liouville's theorem: the density is carried by the flow as an incompressible fluid, so phase-space volume is conserved. The stationary densities of equilibrium follow as functions of the conserved quantities alone.\n",{"path":6126,"title":6127,"module":6119,"summary":6128},"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate","Ensembles and the Postulate of Equal a Priori Probabilities","An ensemble is a probability distribution over the microstates of a system. This lesson states the single postulate on which equilibrium statistical mechanics rests — that an isolated system in equilibrium is equally likely to be in any of its accessible microstates — and works out its consequences: the accessible phase-space volume, the overwhelming dominance of the most probable macrostate as the particle number grows, and the ergodic hypothesis that lets a time average be replaced by an ensemble average.\n",{"path":6130,"title":6131,"module":6119,"summary":6132},"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs","Statistical Entropy: Boltzmann and Gibbs","Entropy is the logarithm of the number of accessible microstates. This lesson builds the two statistical entropies — Boltzmann's S = k ln Omega for an isolated system and Gibbs's S = -k sum p ln p for any ensemble — proves they agree for a uniform distribution, and connects both to Shannon's measure of missing information. The second law emerges as the drift toward maximum multiplicity, and maximizing the Gibbs entropy under constraints previews the canonical distribution.\n",{"path":6134,"title":6135,"module":6136,"summary":6137},"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy","The Microcanonical Ensemble and Statistical Entropy","The Microcanonical Ensemble","An isolated system holds its energy, volume, and particle number fixed, and the fundamental postulate assigns equal probability to every microstate on its energy shell. This lesson builds the microcanonical distribution, defines the enclosed phase-space volume $\\Gamma(E)$, the surface density of states $\\omega(E)=\\d\\Gamma\u002F\\d E$, and the shell count $\\Omega(E)$, shows their logarithms agree to $O(\\ln N)$ for large $N$, and reads the Boltzmann entropy $S=k\\ln\\Omega$ off the count. The measure factors $h^{3N}$ and $N!$ enter here and make $S$ extensive.\n",{"path":6139,"title":6140,"module":6136,"summary":6141},"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential","Thermal, Mechanical, and Diffusive Equilibrium","Two isolated subsystems that can exchange energy, volume, or particles reach equilibrium at the partition that maximizes their combined entropy. Setting the derivative of the total entropy to zero identifies the statistical definitions $1\u002FT=(\\partial S\u002F\\partial E)$, $P\u002FT=(\\partial S\u002F\\partial V)$, and $-\\mu\u002FT=(\\partial S\u002F\\partial N)$, shows heat flows from hot to cold as an entropy increase, and recovers the fundamental relation $\\d S=(\\d E+P\\,\\d V-\\mu\\,\\d N)\u002FT$ from pure counting.\n",{"path":6143,"title":6144,"module":6136,"summary":6145},"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy","The Ideal Gas, Phase-Space Volume, and the Sackur–Tetrode Entropy","The monatomic ideal gas is the first system whose microcanonical count can be done in closed form. The momentum integral is the volume of a $3N$-dimensional ball of radius $\\sqrt{2mE}$, the configuration integral is $V^N$, and together they give the Sackur–Tetrode entropy $S=Nk[\\ln(V\u002FN\\lambda^3)+5\u002F2]$ with the thermal wavelength $\\lambda=h\u002F\\sqrt{2\\pi mkT}$. The formula matches the measured entropy of helium, fixes the classical regime $n\\ll n_Q$, and shows why the $N!$ is needed for extensivity.\n",{"path":6147,"title":6148,"module":6136,"summary":6149},"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature","Two-State Systems, Paramagnets, and Negative Temperature","The ideal two-state paramagnet has a multiplicity counted by the binomial coefficient, an entropy that is an inverted dome in the energy, and a temperature read from the slope $1\u002FT=\\partial S\u002F\\partial E$. Because the energy is bounded above, the slope changes sign past the entropy maximum: a population-inverted spin system has a negative absolute temperature, which is hotter than any positive temperature. Nuclear-spin experiments and lasers realize the inverted state.\n",{"path":6151,"title":6152,"module":6153,"summary":6154},"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution","The Canonical Ensemble and the Boltzmann Distribution","The Canonical Ensemble","A system held at fixed temperature by contact with a heat reservoir is described by the canonical ensemble. Expanding the reservoir entropy to first order in the system energy gives the Boltzmann distribution $p_i\\propto e^{-\\beta E_i}$, and the same law follows from maximizing the Gibbs entropy at fixed mean energy. Both routes identify $\\beta=1\u002Fk_BT$ and fix the probability of every microstate from the temperature alone.\n",{"path":6156,"title":6157,"module":6153,"summary":6158},"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy","The Partition Function and the Helmholtz Free Energy","The normalizing sum of the Boltzmann distribution, the partition function $Z=\\sum_i e^{-\\beta E_i}$, is a generating function for the thermodynamics. The mean energy is $-\\partial\\ln Z\u002F\\partial\\beta$, and the Gibbs entropy of the canonical distribution collapses to the bridge relation $F=-k_BT\\ln Z$. From $F$ every thermodynamic quantity follows by differentiation, and $Z$ factorizes over independent degrees of freedom.\n",{"path":6160,"title":6161,"module":6153,"summary":6162},"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence","Energy Fluctuations and the Equivalence of Ensembles","In the canonical ensemble the energy fluctuates, and the second derivative of $\\ln Z$ gives its variance. The fluctuation–response identity $\\langle\\Delta E^2\\rangle = k_BT^2C_V$ ties the spread of the energy to the heat capacity, and the relative fluctuation falls as $1\u002F\\sqrt{N}$. In the thermodynamic limit the canonical energy distribution is a sharp spike, and the canonical and microcanonical ensembles predict the same thermodynamics.\n",{"path":6164,"title":6165,"module":6153,"summary":6166},"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems","Harmonic Systems: The Einstein Solid and Vibrational Heat Capacity","A quantum harmonic oscillator has a geometric partition function summed in closed form, giving a mean energy $\\hbar\\omega(\\tfrac12+\\langle n\\rangle)$ with the Bose occupation factor. Modeling a solid as $3N$ independent oscillators yields a heat capacity that rises from zero and saturates at the Dulong–Petit value $3Nk_B$. The Einstein temperature sets the crossover, and the model's exponential low-temperature falloff, too steep against the observed $T^3$, motivates the Debye theory.\n",{"path":6168,"title":6169,"module":6153,"summary":6170},"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly","Paramagnetism, Two-Level Systems, and the Schottky Anomaly","A magnetic moment in a field is a two-level system whose partition function is a hyperbolic cosine. The magnetization of a spin-$\\tfrac12$ paramagnet is $N\\mu\\tanh(\\mu B\u002Fk_BT)$, generalizing to the Brillouin function for spin $J$; it gives Curie's law $\\chi\\propto 1\u002FT$ at high temperature and saturates at low temperature. A finite level gap produces the Schottky heat-capacity peak, and the temperature dependence of the entropy on the field is the basis of adiabatic demagnetization cooling.\n",{"path":6172,"title":6173,"module":6174,"summary":6175},"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox","The Ideal Gas Partition Function and the Gibbs Paradox","The Classical Ideal Gas","The classical monatomic ideal gas built from the partition function. The single-particle sum is $z_1=V\u002F\\lambda^3$ with the thermal de Broglie wavelength $\\lambda$; the $N$-particle partition function is $z_1^N\u002FN!$, and the $N!$ is forced by indistinguishability. From $Z$ the ideal-gas law, $U=\\tfrac32 Nk_BT$, and the Sackur–Tetrode entropy follow. The $N!$ makes the entropy extensive and resolves the Gibbs paradox: mixing identical gases produces no entropy change.\n",{"path":6177,"title":6178,"module":6174,"summary":6179},"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem","Equipartition and the Virial Theorem","The equipartition theorem derived from the canonical ensemble: every phase-space coordinate that enters the Hamiltonian quadratically carries a mean energy $\\tfrac12 k_BT$. The generalized form $\\langle x_i\\,\\partial H\u002F\\partial x_j\\rangle = k_BT\\,\\delta_{ij}$ contains equipartition and the classical virial theorem as special cases. Equipartition fixes the classical heat capacities, fails by quantum freeze-out when a level gap exceeds $k_BT$, and shifts for a relativistic gas whose energy is linear rather than quadratic in momentum.\n",{"path":6181,"title":6182,"module":6174,"summary":6183},"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration","Molecular Gases: Rotational and Vibrational Degrees of Freedom","The internal partition function of a diatomic gas factorizes into translational, rotational, vibrational, and electronic parts. The rigid rotor gives a rotational temperature $\\theta_{\\rm rot}$; the harmonic bond gives a vibrational temperature $\\theta_{\\rm vib}$. Each mode contributes to the heat capacity only above its characteristic temperature, producing the diatomic $C_V$ staircase from $\\tfrac32 R$ to $\\tfrac52 R$ to $\\tfrac72 R$. Homonuclear molecules carry a symmetry number, and hydrogen splits into ortho and para species.\n",{"path":6185,"title":6186,"module":6187,"summary":6188},"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function","The Grand Canonical Ensemble","Grand Canonical Ensemble","When a system exchanges both energy and particles with a reservoir, the reservoir fixes its temperature and its chemical potential. Expanding the reservoir entropy to first order in the exchanged energy and particle number gives the Gibbs factor $e^{-\\beta(E-\\mu N)}$, and summing it over every microstate of every particle number gives the grand partition function $\\Xi$. The grand potential $\\Phi = -k_BT\\ln\\Xi = -PV$ generates the mean particle number, energy, entropy, and pressure by differentiation.\n",{"path":6190,"title":6191,"module":6187,"summary":6192},"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations","Chemical Potential, Fugacity, and Number Fluctuations","The chemical potential is the energy to add one particle at fixed entropy and volume, equal to the slope of the free energy in the particle number. For the classical ideal gas $\\mu=k_BT\\ln(n\\lambda^3)$ is large and negative, and the fugacity $z=n\\lambda^3$ is small. The grand ensemble makes the particle number fluctuate; its variance $\\langle\\Delta N^2\\rangle=k_BT(\\partial N\u002F\\partial\\mu)$ equals $k_BT\\,N^2\\kappa_T\u002FV$, tying density fluctuations to the isothermal compressibility. Equality of $\\mu$ is the condition for diffusive equilibrium and phase coexistence.\n",{"path":6194,"title":6195,"module":6187,"summary":6196},"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web","The Three Ensembles and the Thermodynamic Web","The microcanonical, canonical, and grand canonical ensembles hold different variables fixed and generate different potentials — the entropy $S$, the Helmholtz free energy $F$, and the grand potential $\\Phi$ — linked by Legendre transforms that trade each fixed variable for its conjugate. Each successive ensemble lets one more quantity fluctuate. In the thermodynamic limit the three agree, the relative fluctuations vanishing as $1\u002F\\sqrt{N}$; the ideal gas gives the same equation of state in all three. The choice of ensemble is a matter of convenience, set by which sum is easiest.\n",{"path":6198,"title":6199,"module":6200,"summary":6201},"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac","Quantum Statistics — Bose-Einstein and Fermi-Dirac","Quantum Statistics","Quantum particles of the same kind are genuinely indistinguishable: no label survives an overlap of their wave functions. Counting states with that constraint replaces the Boltzmann distribution with two quantum laws — the Bose-Einstein distribution for integer-spin particles, which clump into shared states, and the Fermi-Dirac distribution for half-integer-spin particles, which exclude one another. Both reduce to Boltzmann in the dilute, hot limit, and a de Broglie criterion says exactly when.\n",{"path":6203,"title":6204,"module":6200,"summary":6205},"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions","Deriving the Quantum Distributions from the Grand Ensemble","The Bose-Einstein and Fermi-Dirac distributions follow from one observation: in the occupation-number representation the single-particle modes are independent, so the grand partition function factorizes into one factor per mode. A boson mode sums a geometric series over all occupancies; a fermion mode sums two terms. Differentiating each factor gives the mean occupation $1\u002F(e^{\\beta(\\varepsilon-\\mu)}\\mp 1)$, the Maxwell-Boltzmann limit when occupancies are small, and the occupation fluctuations that distinguish bunching from anti-bunching.\n",{"path":6207,"title":6208,"module":6200,"summary":6209},"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration","The Classical Limit and Quantum Concentration","When every single-particle level is nearly empty, both quantum distributions collapse to the Maxwell-Boltzmann form, and the fugacity equals the ratio of the number density to the quantum concentration $n_Q = 1\u002F\\lambda^3$. The gas is classical when $n \\ll n_Q$, degenerate when $n \\gtrsim n_Q$. The chemical potential is large and negative in the classical regime and rises through zero as the gas degenerates. The leading quantum correction to the ideal-gas law is a second virial term that lowers the pressure for bosons and raises it for fermions — a statistical attraction and repulsion with no interaction behind it.\n",{"path":6211,"title":6212,"module":6200,"summary":6213},"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework","Ideal Quantum Gases: The General Framework","Every ideal quantum gas is handled by one calculation. The sum over single-particle modes becomes an energy integral weighted by a density of states $g(\\varepsilon)\\propto\\varepsilon^{1\u002F2}$, and the number and pressure reduce to the Bose and Fermi functions $g_\\nu(z)$ and $f_\\nu(z)$ of the fugacity. An integration by parts fixes $PV=\\tfrac23 U$ for a nonrelativistic gas and $PV=\\tfrac13 U$ for an ultrarelativistic one, independent of statistics. Specializing the density of states and the chemical potential then produces the photon gas, phonons, the Bose gas, and the Fermi gas as four branches of the same framework.\n",{"path":6215,"title":6216,"module":6217,"summary":6218},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas","Bose-Einstein Condensation and the Fermion Gas","Bosonic Systems","Below a critical temperature a boson gas drops a macroscopic fraction of its particles into the single ground state — Bose-Einstein condensation, the mechanism behind superfluid helium and the dilute-atom condensates cooled to nanokelvin. The same statistics applied to a photon gas reproduces Planck's blackbody spectrum. Fermions do the opposite: forbidden from sharing states, they fill every level up to the Fermi energy, and that filled sea governs the electrons in metals and the pressure that holds up a white dwarf.\n",{"path":6220,"title":6221,"module":6217,"summary":6222},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law","The Photon Gas and Planck's Radiation Law","Electromagnetic radiation in equilibrium with cavity walls is a gas of non-conserved bosons, and non-conservation forces the chemical potential to zero. Counting standing-wave modes with two polarizations and weighting each by the Bose occupation gives the Planck spectral energy density. Its low-frequency tail reproduces the classical Rayleigh-Jeans law and the ultraviolet catastrophe; the Bose factor cuts the divergence off at high frequency and the peak obeys Wien's displacement law.\n",{"path":6224,"title":6225,"module":6217,"summary":6226},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure","Blackbody Thermodynamics and Radiation Pressure","Integrating the Planck spectrum over all frequencies gives the total energy density proportional to the fourth power of temperature — the Stefan-Boltzmann law — and the isotropy of a relativistic gas fixes the radiation pressure at one third of the energy density. From the free energy follow the entropy and heat capacity, both proportional to T cubed, and the adiabatic law for radiation. The results govern the pressure inside stars and the cooling of the cosmic microwave background as the universe expands.\n",{"path":6228,"title":6229,"module":6217,"summary":6230},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model","Phonons and the Debye Model","The vibrations of a crystal lattice are quantized into phonons — bosons of zero chemical potential, counted exactly like cavity photons but with three polarizations, a finite sound speed, and a total of 3N modes. The Debye model replaces the true dispersion by a linear one cut off at a frequency that enforces that count. It gives the correct low-temperature T-cubed heat capacity the Einstein model missed and recovers the Dulong-Petit value at high temperature.\n",{"path":6232,"title":6233,"module":6217,"summary":6234},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived","Bose-Einstein Condensation Derived","For a gas of conserved bosons the excited states can hold only a finite number of particles at fixed temperature, set by the Bose function at unit fugacity. When the total exceeds that ceiling the surplus collapses into the single ground state, which the continuum density-of-states integral misses and which must be restored by hand. This fixes the critical temperature, the condensate fraction, and the fact that a uniform gas condenses only in three or more dimensions.\n",{"path":6236,"title":6237,"module":6217,"summary":6238},"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity","Thermodynamics of the Bose Gas and Superfluidity","The energy and pressure of the ideal Bose gas follow from the Bose function at the order above the density, and below the critical temperature the pressure depends on temperature alone because the condensate carries none. The heat capacity rises to a cusp at the transition. Real superfluid helium departs from the ideal gas because interactions matter: the Landau criterion ties frictionless flow to the phonon-roton excitation spectrum, and the two-fluid model carries a second sound.\n",{"path":6240,"title":6241,"module":6242,"summary":6243},"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature","The Ideal Fermi Gas at Zero Temperature","Degenerate Fermi Gas","At absolute zero a gas of non-interacting fermions fills every single-particle state up to the Fermi energy and leaves the rest empty, a filled Fermi sphere in momentum space. This lesson computes the Fermi momentum, energy, and temperature from the density, the density of states, the total ground-state energy, and the degeneracy pressure that grows as $n^{5\u002F3}$. Numerical Fermi energies for metals set the scale: they are electron-volts, so room temperature is deep in the degenerate regime.\n",{"path":6245,"title":6246,"module":6242,"summary":6247},"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals","The Sommerfeld Expansion and Electrons in Metals","Turning on a small temperature blurs the Fermi step over a shell of width $k_BT$ around $\\epsilon_F$. The Sommerfeld expansion turns integrals over the Fermi function into a power series in $(k_BT\u002F\\epsilon_F)^2$, giving the shift of the chemical potential and a heat capacity linear in $T$. This resolves the old puzzle of the missing electronic heat capacity, predicts the combined $C=\\gamma T+AT^3$ of a metal, and gives the temperature-independent Pauli paramagnetism of the electron gas.\n",{"path":6249,"title":6250,"module":6242,"summary":6251},"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit","White Dwarfs and the Chandrasekhar Limit","A white dwarf is held up against its own gravity by the degeneracy pressure of its electrons. Balancing that pressure against gravity gives a mass-radius relation $R\\propto M^{-1\u002F3}$: heavier white dwarfs are smaller and denser. As the density rises the electrons turn relativistic, the pressure softens from $n^{5\u002F3}$ to $n^{4\u002F3}$, and the star can no longer support itself above a critical mass. This lesson derives that Chandrasekhar mass, about $1.4\\,M_\\odot$, and what lies beyond it.\n",{"path":6253,"title":6254,"module":6242,"summary":6255},"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter","Neutron Stars and Dense Matter","When a collapsing core passes nuclear density, electron capture converts the matter to neutrons and their degeneracy pressure takes over. The same balance that fixes a white dwarf, rescaled by the neutron mass, gives a neutron star of a few solar masses in a ten-kilometre radius. General relativity is no longer a correction: the Tolman-Oppenheimer-Volkoff equation replaces the Newtonian balance and sets a maximum mass around two solar masses. This lesson rescales the Fermi-gas argument, states where it breaks, and places the compact objects in one stability sequence.\n",{"path":6257,"title":6258,"module":6259,"summary":6260},"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients","The Cluster Expansion and Virial Coefficients","Interacting Gases","A real gas departs from $PV=Nk_BT$ because its molecules interact. The configuration integral factors through the Mayer function $f_{ij}=e^{-\\beta u_{ij}}-1$, and expanding it in powers of density produces the virial expansion $PV\u002FNk_BT = 1 + B_2(T)n + B_3(T)n^2 + \\cdots$. The second virial coefficient $B_2(T)=-\\tfrac12\\int f\\,\\d^3r$ is a single integral over the pair potential; it is positive for a hard core, negative for an attractive well, and vanishes at the Boyle temperature where the two balance.\n",{"path":6262,"title":6263,"module":6259,"summary":6264},"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence","The van der Waals Gas and Liquid-Gas Coexistence","Resumming the second virial coefficient $B_2=b-a\u002Fk_BT$ into an equation of state gives the van der Waals model $(P+a\u002Fv^2)(v-b)=k_BT$, the simplest theory of a fluid that condenses. Below the critical temperature its isotherms develop a mechanically unstable loop; the Maxwell equal-area construction replaces the loop with a coexistence tie line. The critical point sits at $v_c=3b$, $k_BT_c=8a\u002F27b$, $P_c=a\u002F27b^2$, and the model predicts universal but incorrect critical exponents because it ignores fluctuations.\n",{"path":6266,"title":6267,"module":6259,"summary":6268},"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange","Quantum Gases with Interactions and Statistical Exchange","A quantum gas has a nonzero second virial coefficient even with no forces between the particles: symmetrization alone produces an effective statistical interaction, attractive for bosons and repulsive for fermions, with range the thermal wavelength $\\lambda$. This lesson derives that exchange contribution $B_2=\\mp\\lambda^3\u002F2^{5\u002F2}g$, writes it as a statistical potential $v_s(r)=-k_BT\\ln(1\\pm e^{-2\\pi r^2\u002F\\lambda^2})$, and shows how real interactions add on top through the Beth-Uhlenbeck phase-shift formula, reducing at low temperature to a single scattering length.\n",{"path":6270,"title":6271,"module":6272,"summary":6273},"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification","Phases, Coexistence, and the Classification of Transitions","Phase Transitions","A phase transition is a point where the free energy of a substance loses analyticity, so a small change in temperature or pressure produces a qualitative change of state. This lesson maps the coexistence curves of a pure substance, derives the Clausius-Clapeyron relation between the slope of a coexistence line and its latent heat, and separates first-order transitions (discontinuous entropy and density) from continuous ones (a vanishing order parameter and divergent response). The Ehrenfest scheme, the order parameter, and the triple and critical points fix the vocabulary the rest of the module builds on.\n",{"path":6275,"title":6276,"module":6272,"summary":6277},"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions","The Ising Model and Exact Results","The Ising model reduces cooperative ordering to spins on a lattice coupled to their neighbors, and the same Hamiltonian describes uniaxial magnets, the liquid-gas critical point through the lattice gas, and binary alloys. This lesson solves the one-dimensional chain exactly with the transfer matrix, shows by a domain-wall argument why one dimension has no ordered phase at any positive temperature, contrasts the survival of order in two dimensions, and quotes Onsager's exact two-dimensional results: the critical temperature, the logarithmically divergent heat capacity, and the magnetization exponent one eighth.\n",{"path":6279,"title":6280,"module":6272,"summary":6281},"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model","Mean-Field Theory and Spontaneous Symmetry Breaking","Mean-field theory replaces the neighbors of each spin by their average, turning the interacting Ising model into a single spin in a self-consistent field. The resulting equation m = tanh(beta J z m + beta h) has only the zero solution above a critical temperature and gains a nonzero root below it, giving spontaneous magnetization and a mean-field critical temperature k T_c = J z. The Bragg-Williams free energy turns single-welled above T_c and double-welled below, the picture of spontaneous symmetry breaking. The approximation is exact in high dimension and fails below the upper critical dimension four, quantified by the Ginzburg criterion.\n",{"path":6283,"title":6284,"module":6272,"summary":6285},"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory","Critical Exponents, Scaling, and Landau Theory","Near a continuous transition every singular quantity follows a power law in the reduced temperature, and the exponents alpha, beta, gamma, delta, nu, and eta encode the transition more sharply than T_c itself. Landau theory expands the free energy in the order parameter and delivers the mean-field exponents in a few lines. They disagree with experiment and with the exact two-dimensional Ising values, but the exponents are not independent: the scaling relations of Rushbrooke, Widom, Fisher, and Josephson tie them together, and the correlation length sets the length scale that organizes universality classes.\n",{"path":6287,"title":6288,"module":6272,"summary":6289},"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea","Scaling and the Renormalization-Group Idea","At a critical point fluctuations exist on every length scale, so the system looks the same after coarse-graining. The renormalization group makes this self-similarity a computation: group spins into blocks, integrate out the short scales, and track how the couplings change. The transformation has fixed points, and the flow near a critical fixed point separates relevant couplings that grow from irrelevant ones that shrink, which is why only dimension and symmetry survive to set the exponents. The one-dimensional Ising decimation carries the whole scheme through in closed form and reproduces the absence of a finite-temperature transition.\n",{"path":6291,"title":6292,"module":6293,"summary":6294},"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response","Thermodynamic Fluctuations and Response Functions","Fluctuations and Response","Thermodynamic variables are sharp only on average; a macroscopic system in equilibrium fluctuates about its mean values. Einstein inverted Boltzmann's $S=k_B\\ln\\Omega$ into a Gaussian probability for a fluctuation, $w\\propto e^{\\Delta S\u002Fk_B}$, and the second moments it predicts reproduce the response functions: $\\langle\\Delta E^2\\rangle=k_BT^2C_V$, $\\langle\\Delta V^2\\rangle=k_BTV\\kappa_T$, $\\langle\\Delta M^2\\rangle=k_BT\\chi_T$. The variances diverge where the responses diverge, at a critical point, producing critical opalescence and the breakdown of the thermodynamic description.\n",{"path":6296,"title":6297,"module":6293,"summary":6298},"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation","Brownian Motion and the Langevin Equation","A pollen grain in water executes a random walk driven by molecular collisions. Einstein tied its diffusion constant to its mobility, $D=\\mu_{\\mathrm{mob}}k_BT$, turning a visible motion into a measurement of Avogadro's number. The Langevin equation splits the collisions into a systematic drag and a random force whose strength is fixed by the drag through $\\langle\\xi(t)\\xi(t')\\rangle=2\\gamma k_BT\\,\\delta(t-t')$ — the first fluctuation–dissipation relation. The mean-square displacement grows ballistically at short times and linearly, $\\langle r^2\\rangle=2dDt$, at long times, and the Stokes–Einstein relation $D=k_BT\u002F6\\pi\\eta a$ closes the loop to Perrin's experiments.\n",{"path":6300,"title":6301,"module":6293,"summary":6302},"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem","Linear Response and the Fluctuation-Dissipation Theorem","A system driven by a weak external field responds through a generalized susceptibility $\\chi(\\omega)$ whose imaginary part measures dissipation. The Wiener–Khinchin theorem makes the power spectrum of equilibrium fluctuations the Fourier transform of their correlation function, and the fluctuation–dissipation theorem ties the two together: $S_x(\\omega)=(2k_BT\u002F\\omega)\\,\\chi''(\\omega)$, so the spectrum of spontaneous fluctuations is fixed by the dissipative response. The Johnson–Nyquist noise of a resistor, $\\langle V^2\\rangle=4k_BTR\\,\\Delta f$, is the canonical example, and Onsager reciprocity closes the subject.\n",{"path":6304,"title":6305,"module":306,"summary":306},"\u002Fstatistical-mechanics","Statistical Mechanics",{"path":6307,"title":6308,"module":6309,"summary":6310},"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms","Bonding Mechanisms","Molecules and Chemical Bonding","A molecule forms when the total energy of two atoms drops below the energy of the separated pair. This lesson works through the four mechanisms that produce that minimum: the ionic bond from charge transfer, the covalent bond from shared electron wave functions, the metallic bond, and the weak dipole-dipole and hydrogen bonds, computing bond lengths and dissociation energies for NaCl, H₂, and H₂⁺.\n",{"path":6312,"title":6313,"module":6309,"summary":6314},"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus","The Molecular-Orbital Method and H₂⁺","The hydrogen molecule ion is the two-center problem that fixes the language of chemical bonding. This lesson builds the molecular orbital as a linear combination of atomic orbitals, minimizes the energy through the variational secular equation, and reduces the result to three two-center integrals: the overlap, the Coulomb term, and the exchange (resonance) integral. The bonding and antibonding levels, their potential-energy curves, and the charge piled between the nuclei follow from those integrals.\n",{"path":6316,"title":6317,"module":6309,"summary":6318},"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange","The Hydrogen Molecule, Exchange, and Hybridization","Adding the second electron turns the one-electron ion into the two-electron hydrogen molecule, where electron-electron repulsion and the Pauli principle govern the bond. This lesson contrasts the Heitler-London valence-bond and molecular-orbital wave functions, derives the singlet-triplet splitting as an exchange energy, shows why naive molecular orbitals fail at dissociation, and builds the sp, sp², and sp³ hybrids that fix the directed geometry of covalent bonds.\n",{"path":6320,"title":6321,"module":6309,"summary":6322},"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces","Van der Waals Forces","The bond of last resort acts between all atoms, even closed-shell noble gases with no permanent moment. This lesson separates the three van der Waals contributions — Keesom orientation, Debye induction, and London dispersion — derives the London 1\u002Fr⁶ attraction from the coupled-oscillator and second-order perturbation pictures, and assembles the Lennard-Jones potential to compute the equilibrium spacing and cohesive energy of the noble-gas crystals, argon in particular.\n",{"path":6324,"title":6325,"module":6326,"summary":6327},"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra","Rotational and Vibrational Spectra of Molecules","Molecular Spectra","A diatomic molecule stores energy in three well-separated ledgers: electronic, vibrational, and rotational. Quantizing the rigid rotor gives levels spaced as ℓ(ℓ+1); quantizing the bond as a harmonic oscillator gives equally spaced vibrational levels. Their combination produces the P and R branches of an infrared absorption band, from which the bond length and force constant are read directly.\n",{"path":6329,"title":6330,"module":6326,"summary":6331},"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure","Anharmonicity and Rovibrational Structure","The rigid rotor and harmonic oscillator are first approximations. A real bond follows the Morse potential, whose levels converge toward dissociation; a real rotor stretches centrifugally; and vibration couples to rotation, so the rotational constant depends on the vibrational level. This lesson works out the anharmonic and centrifugal corrections, the Birge-Sponer route to the dissociation energy, the isotope shift, and the thermal band envelope.\n",{"path":6333,"title":6334,"module":6326,"summary":6335},"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands","Raman Scattering and Electronic Bands","Not every vibration absorbs in the infrared. Raman scattering reaches modes that modulate the polarizability, giving Stokes and anti-Stokes lines whose intensity ratio measures temperature, and the mutual-exclusion rule pairs it with infrared absorption. Electronic transitions add the vibronic structure of band spectra, governed by the Franck-Condon principle, and the radiative fates of an excited state are sorted by the Jablonski diagram into fluorescence and phosphorescence.\n",{"path":6337,"title":6338,"module":6326,"summary":6339},"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers","Lasers, Masers, and Stimulated Emission","Einstein's three radiative processes — absorption, spontaneous emission, and stimulated emission — and the coefficients that relate them. Stimulated emission produces coherent photons, and inverting the level populations turns it into net amplification. We build the ruby three-level laser and the helium-neon four-level laser, and show why the fourth level makes inversion easy.\n",{"path":6341,"title":6342,"module":6343,"summary":6344},"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids","The Structure of Solids","Crystal Structure","A crystal is a unit cell repeated in three dimensions. We classify the common cubic lattices, compute the Coulomb energy of an ionic crystal through the Madelung constant, and show how the divergent naive lattice sum is tamed by cubic shells. The cohesive energy that results predicts melting points and connects the diatomic bond of an earlier lesson to the bulk solid.\n",{"path":6346,"title":6347,"module":6343,"summary":6348},"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems","Bravais Lattices, Bases, and Crystal Structures","A crystal is a Bravais lattice decorated by a basis. This lesson separates the two, builds primitive and Wigner-Seitz cells, enumerates the seven crystal systems and fourteen Bravais lattices, and fixes the language of point and space groups. Miller indices label planes and directions, and the packing fractions of the close-packed, cubic, and diamond structures follow from the geometry.\n",{"path":6350,"title":6351,"module":6343,"summary":6352},"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones","The Reciprocal Lattice and Brillouin Zones","Every periodic crystal has a dual lattice in wavevector space. This lesson defines the reciprocal lattice through the condition b_i dot a_j equals two pi delta, derives its properties, shows the reciprocal of fcc is bcc, links reciprocal vectors to families of lattice planes, and builds the first Brillouin zone as the Wigner-Seitz cell of the reciprocal lattice, including the higher zones.\n",{"path":6354,"title":6355,"module":6343,"summary":6356},"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors","X-ray and Neutron Diffraction","A crystal diffracts radiation whose wavelength matches its atomic spacing. This lesson derives the Bragg condition, the equivalent Laue condition 2k dot G equals G squared, and the Ewald-sphere construction, then computes the geometric structure factor that produces systematic absences for bcc and fcc, the atomic form factor, and the powder method. It closes on why neutrons and electrons complement X-rays.\n",{"path":6358,"title":6359,"module":6360,"summary":6361},"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion","The Harmonic Crystal and Phonon Dispersion","Lattice Dynamics","Atoms in a crystal vibrate about their equilibrium sites, and expanding the potential to second order turns the whole lattice into a set of coupled harmonic oscillators. This lesson sets up the harmonic approximation and the dynamical matrix, solves the monatomic linear chain for its dispersion omega(k) = 2 sqrt(K\u002FM) times the absolute sine of ka over two, explains why wavevectors outside the first Brillouin zone are redundant, and extends the chain to two atoms per cell to produce acoustic and optical branches with a frequency gap.\n",{"path":6363,"title":6364,"module":6360,"summary":6365},"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos","Phonons, Density of States, and Crystal Momentum","Quantizing the normal modes of a harmonic crystal turns each vibrational mode into a quantum oscillator whose excitations are phonons. This lesson counts phonons with Bose-Einstein statistics, defines crystal momentum and the normal versus Umklapp distinction in momentum conservation, builds the density of states with its van Hove singularities, and shows how inelastic neutron scattering measures a dispersion curve point by point.\n",{"path":6367,"title":6368,"module":6360,"summary":6369},"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity","Thermal Properties — Einstein and Debye Models","The lattice heat capacity follows the classical Dulong-Petit value at high temperature but collapses toward zero as T approaches zero, a purely quantum effect. This lesson derives that behavior from the Einstein model of a single frequency, then the Debye model of a linear phonon spectrum with a cutoff, obtaining the Debye T-cubed law at low temperature and the Debye interpolation across all temperatures, and closes with thermal expansion and the Gruneisen parameter.\n",{"path":6371,"title":6372,"module":6360,"summary":6373},"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport","Anharmonicity, Thermal Expansion, and Heat Conduction","A perfectly harmonic crystal neither expands when heated nor resists heat flow. Both effects come from the cubic and higher terms the harmonic approximation discards. This lesson derives thermal expansion from an asymmetric interatomic potential, treats phonon-phonon scattering as the decay channel these terms open, shows why Umklapp processes are what make lattice thermal conductivity finite, and traces the temperature dependence of the conductivity and the phonon mean free path.\n",{"path":6375,"title":6376,"module":6377,"summary":6378},"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction","Conduction and the Free-Electron Gas","Free-Electron Fermi Gas","Drude's classical free-electron model gets Ohm's law right but the resistivity, its temperature dependence, and the heat capacity wrong. Replacing the Maxwell-Boltzmann distribution with the Fermi-Dirac distribution and treating electron-lattice collisions as wave scattering repairs all three: the Fermi energy, Fermi speed, and a mean free path set by thermal lattice vibrations.\n",{"path":6380,"title":6381,"module":6377,"summary":6382},"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity","The Sommerfeld Model: Ground State and Heat Capacity","Quantizing the free-electron gas in a box fills a Fermi sphere in k-space. The density of states grows as the square root of energy in three dimensions, and the Fermi energy, temperature, and wavevector follow for real metals. The Sommerfeld expansion shows only a thermal shell of width k_BT near E_F is excited, giving an electronic heat capacity linear in T that sits beneath the phonon T-cubed term.\n",{"path":6384,"title":6385,"module":6377,"summary":6386},"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect","Transport, Wiedemann–Franz, and the Hall Effect","The relaxation-time picture displaces the Fermi sphere under an applied field and gives the electrical conductivity ne-squared-tau over m. The same electrons carry heat, and their ratio yields the Wiedemann–Franz law with the universal Lorenz number. A magnetic field bends the carriers into cyclotron orbits and produces the Hall voltage, whose sign reveals the charge of the carriers.\n",{"path":6388,"title":6389,"module":6377,"summary":6390},"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons","Screening, Plasmons, and the Limits of Free Electrons","A mobile electron gas rearranges to screen any foreign charge, turning the bare Coulomb potential into a short-ranged Yukawa form over the Thomas–Fermi length. Displaced collectively, the gas rings at the plasma frequency, whose quantum is the plasmon and whose value sets the reflectivity edge of metals. A ledger of free-electron successes and failures then motivates band theory.\n",{"path":6392,"title":6393,"module":6394,"summary":6395},"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands","Bloch's Theorem and Energy Bands","Band Theory","An electron in a periodic potential has stationary states that are plane waves modulated by a lattice-periodic envelope. This lesson proves Bloch's theorem two ways, defines crystal momentum and the band index, counts the allowed wavevectors from Born–von Kármán boundary conditions, and sets up the extended, reduced, and repeated-zone descriptions of a band.\n",{"path":6397,"title":6398,"module":6394,"summary":6399},"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model","The Nearly-Free-Electron Model","A weak periodic potential leaves the free-electron parabola almost intact except near Brillouin-zone boundaries, where two nearly degenerate plane waves mix. This lesson solves the resulting two-by-two secular problem, shows the gap of size twice the potential component opening at each boundary, identifies the two standing waves that pile charge on and between the ions, and works the exactly solvable Kronig–Penney model.\n",{"path":6401,"title":6402,"module":6394,"summary":6403},"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method","The Tight-Binding Method","The opposite limit to nearly-free electrons builds bands from atomic orbitals. A Bloch sum of one orbital per site gives a dispersion set by the hopping integral between neighbours; the band widens from a sharp atomic level as the atoms approach. This lesson derives the s-band cosine dispersion, extends it to p-bands, and introduces Wannier functions as the localized dual of Bloch states.\n",{"path":6405,"title":6406,"module":6394,"summary":6407},"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics","Fermi Surfaces, Effective Mass, and Metals vs Insulators","Filling the bands settles which crystals conduct. A filled band carries no current, so a crystal with filled bands and a gap is an insulator, while a partly filled band makes a metal. This lesson derives the no-current theorem for a filled band, defines the Fermi surface and Harrison's construction, introduces holes and the effective mass from band curvature, and states the semiclassical equations of motion that lead to Bloch oscillations.\n",{"path":6409,"title":6410,"module":6411,"summary":6412},"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions","Band Theory and Semiconductors","Semiconductors","The periodic lattice splits atomic levels into allowed energy bands separated by forbidden gaps. Whether the highest occupied band is full or partly full, and how wide the gap above it is, sorts every solid into conductor, insulator, or semiconductor. Doping adds donor or acceptor levels inside the gap, and a p-n junction built from doped regions gives the diode, the solar cell, the LED, and the transistor.\n",{"path":6414,"title":6415,"module":6411,"summary":6416},"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors","Carrier Statistics: Intrinsic and Extrinsic Semiconductors","The number of mobile electrons and holes in a semiconductor follows from the density of states near each band edge and the Fermi-Dirac tail that reaches into it. This lesson derives the effective densities of states, the intrinsic concentration and its exponential gap dependence, the law of mass action, the temperature march of the Fermi level, and the freeze-out, saturation, and intrinsic regimes of a doped crystal.\n",{"path":6418,"title":6419,"module":6411,"summary":6420},"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination","Carrier Transport and Recombination","Carriers move by drift in a field and by diffusion down a concentration gradient, the two tied together by the Einstein relation. This lesson derives mobility and its scattering-limited temperature dependence, the drift and diffusion currents, the continuity equations, band-to-band and trap-assisted recombination, and the minority-carrier lifetime and diffusion length that set the length scale of every junction device.\n",{"path":6422,"title":6423,"module":6411,"summary":6424},"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction","The p-n Junction in Depth","Joining p-type and n-type silicon aligns their Fermi levels and leaves a depletion region of fixed charge with a built-in potential. This lesson derives the space-charge field and potential from Poisson's equation in the depletion approximation, the built-in voltage from Fermi-level alignment, the Shockley diode equation from minority-carrier diffusion, junction and diffusion capacitance, and the avalanche and Zener breakdown mechanisms.\n",{"path":6426,"title":6427,"module":6411,"summary":6428},"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics","Transistors and Optoelectronic Devices","Two junctions in series make a bipolar transistor whose thin base gives current gain; a gate over an oxide makes a MOSFET whose inversion channel switches digital logic. Run in reverse, a junction converts photons to current. This lesson derives the transistor current gain and the MOSFET channel current, then treats the LED, the diode laser, and the illuminated solar-cell characteristic.\n",{"path":6430,"title":6431,"module":6432,"summary":6433},"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization","Dielectrics, Polarization, and the Local Field","Dielectrics and Ferroelectrics","An insulator responds to an electric field by polarizing. This lesson builds the macroscopic polarization and the dielectric constant, sorts the microscopic response into electronic, ionic, and orientational polarizability, and corrects the field an atom actually feels to the Lorentz local field E + P\u002F3 epsilon-0. The Clausius-Mossotti relation links the measured permittivity to the atomic polarizability, and the frequency dependence of each mechanism explains why the static and optical dielectric constants differ.\n",{"path":6435,"title":6436,"module":6432,"summary":6437},"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics","Ferroelectrics, Piezoelectrics, and Structural Transitions","Some crystals carry a polarization with no applied field and switch it under a reversing field, tracing a hysteresis loop. This lesson develops the ferroelectric transition through the perovskite BaTiO3 displacive instability and its soft transverse-optical mode, builds the Landau free-energy theory of first- and second-order polar transitions, derives the Curie-Weiss divergence of the dielectric constant, and closes with piezoelectricity and pyroelectricity and their devices.\n",{"path":6439,"title":6440,"module":6441,"summary":6442},"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism","Diamagnetism and Paramagnetism","Magnetism in Solids","Every solid responds to a magnetic field. Filled shells give a small negative diamagnetic susceptibility from induced Larmor currents; localized moments give a positive Curie paramagnetism described by the Brillouin function, with the ground-state moment fixed by Hund's rules. The conduction electrons add a temperature-independent Pauli paramagnetism from the thermal shell near the Fermi surface, partly cancelled by Landau diamagnetism of their orbital motion.\n",{"path":6444,"title":6445,"module":6441,"summary":6446},"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism","Exchange and Ferromagnetism","Magnetic ordering at hundreds of kelvin cannot be dipolar; it is an exchange effect, the Coulomb repulsion sorted by the Pauli principle into a spin-dependent energy captured by the Heisenberg Hamiltonian. Weiss molecular-field theory replaces the exchange field by an average proportional to the magnetization, giving a self-consistent equation whose solution is spontaneous magnetization below a Curie temperature and a Curie–Weiss susceptibility above it. Itinerant ferromagnetism follows from the Stoner criterion on the band density of states.\n",{"path":6448,"title":6449,"module":6441,"summary":6450},"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains","Antiferromagnetism, Ferrimagnetism, and Domains","A negative exchange coupling orders neighboring spins antiparallel. Two-sublattice molecular-field theory gives a Néel temperature marked by a cusp in the susceptibility, and unequal sublattices leave a net moment — ferrimagnetism, the magnetism of the ferrites. A ferromagnet breaks into domains to reduce its magnetostatic energy, separated by Bloch walls whose width is set by the competition between exchange and magnetocrystalline anisotropy, and the irreversible motion of those walls produces the hysteresis loop.\n",{"path":6452,"title":6453,"module":6441,"summary":6454},"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons","Spin Waves and Magnons","The lowest excitations of a ferromagnet are not single flipped spins but collective precessions in which every moment tips slightly and its phase advances along the crystal. These spin waves have a quadratic dispersion at long wavelength, quantize into magnons obeying Bose statistics, and their thermal population removes magnetization as the Bloch T-to-the-three-halves law. Antiferromagnetic magnons disperse linearly, and inelastic neutron scattering measures both.\n",{"path":6456,"title":6457,"module":6458,"summary":6459},"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology","Superconductivity: Phenomenology and BCS","Superconductivity","Below a critical temperature some materials lose all resistance and expel magnetic flux — the Meissner effect that defines the state. The isotope effect points to lattice vibrations, and BCS theory binds electrons into Cooper pairs through phonon exchange. The paired condensate opens an energy gap, quantizes magnetic flux, and drives the Josephson effects.\n",{"path":6461,"title":6462,"module":6458,"summary":6463},"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect","London Theory and the Meissner Effect","A perfect conductor freezes the field it was cooled in; a superconductor expels it. The distinction needs a constitutive law beyond zero resistance — the two London equations — whose solution is exponential flux decay over the penetration depth. The same rigidity follows from a macroscopic condensate wave function, and the thermodynamics of the critical field fixes the condensation energy, the latent heat, and the specific-heat jump.\n",{"path":6465,"title":6466,"module":6458,"summary":6467},"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory","Ginzburg–Landau Theory, Vortices, and Type-II","A complex order parameter and a free-energy expansion turn the superconducting transition into a Landau theory. Two lengths emerge — the coherence length and the penetration depth — whose ratio kappa sorts superconductors into type I and type II. Type-II materials admit flux as an Abrikosov lattice of vortices, each threading exactly one quantum h\u002F2e, between a lower and an upper critical field.\n",{"path":6469,"title":6470,"module":6458,"summary":6471},"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory","Microscopic BCS Theory","A phonon-mediated attraction, however weak, binds two electrons above the Fermi sea — the Cooper problem shows the sea is unstable. The BCS variational ground state pairs all electrons near the Fermi surface and, through a self-consistent gap equation, opens an energy gap. Weak-coupling solution gives the exponential T_c and the universal ratios 2 Delta(0) = 3.53 k_B T_c and Delta C \u002F C_n = 1.43.\n",{"path":6473,"title":6474,"module":6458,"summary":6475},"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc","Josephson Effects and Unconventional Superconductors","Two superconductors joined by a thin barrier carry a supercurrent set by their phase difference — the dc Josephson effect — and oscillate at 2eV\u002Fh under a voltage. A two-junction loop turns flux quantization into a magnetometer of single-quantum sensitivity. The cuprates superconduct in CuO2 planes with a doping-dependent dome, d-wave pairing, and a pseudogap that lie outside the phonon picture.\n",{"path":6477,"title":6478,"module":6479,"summary":6480},"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots","Quantum Wells, Wires, and Dots","Nanostructures","When a crystal is shrunk until one or more of its dimensions approaches the electron wavelength, the continuous bands of the bulk break into discrete subbands. Confining in one direction gives a quantum well with a step-like density of states, in two directions a quantum wire with inverse-square-root singularities, and in all three a quantum dot whose levels are sharp like an atom's. This lesson derives the density of states in each case and applies it to size-tunable dot emission and the Coulomb blockade of a single-electron transistor.\n",{"path":6482,"title":6483,"module":6479,"summary":6484},"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect","The 2D Electron Gas and the Integer Quantum Hall Effect","A two-dimensional electron gas in a strong perpendicular magnetic field has its continuous density of states collapse into macroscopically degenerate Landau levels. As the field is swept, the Hall resistance locks onto exact plateaus at h over an integer times e squared, while the longitudinal resistance drops to zero. This lesson derives the Landau levels and their degeneracy, explains the plateaus through disorder-localized states and current-carrying edge channels, and states why the von Klitzing constant is now a resistance standard.\n",{"path":6486,"title":6487,"module":6479,"summary":6488},"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology","The Fractional Quantum Hall Effect and Topological Order","When the lowest Landau level is only partly filled, the non-interacting theory predicts no gap, yet a plateau appears at filling one-third. It is a many-body effect: Coulomb repulsion selects a correlated ground state, the Laughlin wavefunction, whose excitations carry a fraction of the electron charge. This lesson builds the Laughlin state, introduces composite fermions that map the fractional effect onto an integer one, and explains how the quantum Hall effect brought the Chern number and topology into condensed-matter physics.\n",{"path":6490,"title":6491,"module":6479,"summary":6492},"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials","Graphene and Dirac Materials","Graphene is one atomic layer of carbon on a honeycomb lattice. A tight-binding calculation on its two-atom basis gives valence and conduction bands that touch at the corners of the Brillouin zone, where the dispersion is linear and the electrons behave as massless two-dimensional Dirac particles with a fixed speed. This lesson derives the Dirac cones, the Berry phase of pi and the sublattice chirality, the anomalous half-integer quantum Hall effect that follows, and how opening a gap in a Dirac cone points toward topological insulators.\n",{"path":6494,"title":6495,"module":306,"summary":306},"\u002Fcondensed-matter","Condensed Matter Physics",{"path":6497,"title":6498,"module":5,"summary":6499},"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model","Logic as a Mathematical Model of Deduction","Symbolic logic models deductive reasoning the way probability theory models chance: it keeps the form of a correct deduction and discards its content. A deduction is valid when its conclusion follows from the form of the premises alone, independent of what the non-logical words mean. Two models carry the subject — coarse sentential logic and fine first-order logic — and four questions organize it: logical consequence, methods of proof, the gap between provable and true, and the link between logic and computability. Tuples, relations, functions, equivalence classes, and cardinality supply the set-theoretic vocabulary every later chapter uses.\n",{"path":6501,"title":6502,"module":6503,"summary":6504},"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas","Formal Languages and Well-Formed Formulas","Sentential Logic","The language of sentential logic has an alphabet of sentence symbols, five connectives, and two parentheses, with formation rules that pick out the well-formed formulas. The wffs are the least set of expressions closed under the five formula-building operations, and every such generated set carries an induction principle.\n",{"path":6506,"title":6507,"module":6503,"summary":6508},"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies","Truth Assignments, Tautologies, and Consequence","A truth assignment fixes the sentence symbols true or false, and a recursion extends it uniquely to every formula. Satisfaction, tautologies, and tautological implication — one formula following semantically from others — rest on that extension, and the truth-table procedure decides implication for finite premise sets.\n",{"path":6510,"title":6511,"module":6503,"summary":6512},"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing","Unique Readability and a Parsing Algorithm","Parentheses keep a formula from being read two ways. The parenthesis lemmas and a top-down parsing algorithm recover a formula's structure and yield unique readability: every wff has exactly one formation tree, which is what makes the truth recursion well defined.\n",{"path":6514,"title":6515,"module":6503,"summary":6516},"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion","Induction and Recursion on Formulas","Two principles govern any set generated from initial elements by operations: prove a property of all its members by covering the initial elements and the closure steps, and define a function on it by recursion on structure. The recursion theorem needs the set to be freely generated, and unique readability supplies that condition for the well-formed formulas.\n",{"path":6518,"title":6519,"module":6503,"summary":6520},"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms","Sentential Connectives and Normal Forms","Every formula computes a Boolean function of its atoms, and Post's theorem gives the converse: every Boolean function is realized by a wff in disjunctive normal form, so the five connectives are more than enough. Minimal complete sets follow, down to the single connectives NAND and NOR, together with a method for proving a set of connectives incomplete.\n",{"path":6522,"title":6523,"module":6503,"summary":6524},"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits","Switching Circuits","A memoryless two-valued circuit computes a Boolean function, so every formula names a gate network and every network a formula. Cost and delay are read off the formula by recursion, and tautological equivalence and normal forms design and simplify circuits realizing a given specification.\n",{"path":6526,"title":6527,"module":6503,"summary":6528},"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness","Compactness and Effectiveness","The compactness theorem reduces satisfiability of an infinite set of formulas to its finite subsets, proved by extension to a maximal finitely satisfiable set and applied to color infinite graphs. Effectiveness fixes what \"decidable\" and \"effectively enumerable\" mean and settles the decidability of tautologyhood.\n",{"path":6530,"title":6531,"module":6532,"summary":6533},"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages","First-Order Languages","First-Order Languages and Structures","Sentential logic cannot see inside a simple statement, so it misses valid arguments that turn on quantifiers and predicates. A first-order language adds a quantifier, variables, and a chosen vocabulary of predicate, function, and constant symbols. Terms and well-formed formulas are built by recursion over this alphabet, and a variable occurs free or bound according to the quantifiers that reach it.\n",{"path":6535,"title":6536,"module":6532,"summary":6537},"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction","Structures, Truth, and Satisfaction","A structure interprets a language: a nonempty universe plus a meaning for every predicate, function, and constant symbol. Tarski's recursion defines when a structure satisfies a formula under a variable assignment, and hence when a sentence is true. From satisfaction we recover logical implication, validity, and logical equivalence for first-order logic.\n",{"path":6539,"title":6540,"module":6532,"summary":6541},"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence","Definability and Elementary Equivalence","Fix a structure and ask which relations a formula can pick out: the definable ones. A set of sentences picks out a class of structures, the elementary classes. Homomorphisms and isomorphisms compare structures, and the homomorphism theorem shows isomorphic structures satisfy the same sentences. Automorphisms bound what first-order logic can distinguish, giving a tool for proving relations undefinable.\n",{"path":6543,"title":6544,"module":6532,"summary":6545},"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing","Parsing, Substitution, and Substitutability","Every recursion on first-order syntax rests on unique readability. A parenthesis-counting function proves that terms and formulas decompose in exactly one way, and a parsing algorithm recovers the decomposition. Substituting a term for a free variable can capture it under a quantifier; the substitutability condition rules that out, and the substitution lemma trades syntactic substitution for a change of assignment.\n",{"path":6547,"title":6548,"module":6549,"summary":6550},"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus","A Deductive Calculus for First-Order Logic","The Deductive Calculus and Its Metatheorems","A proof must be finite and mechanically checkable. A Hilbert-style calculus meets both demands: six schemas of logical axioms, a single rule of inference (modus ponens), and the syntactic consequence relation they generate. Substitution and substitutability are defined by recursion, and the bridge theorem reduces deducibility to tautological implication from the axioms.\n",{"path":6552,"title":6553,"module":6549,"summary":6554},"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules","The Deduction Theorem and Derived Rules","Raw deductions from axioms are unusable by hand. The generalization theorem, the deduction theorem, contraposition, reductio ad absurdum, and rule T reduce the calculus to the moves of ordinary mathematics, each proved once to license a block of axiom-level steps. Generalization on constants and alphabetic variants handle the quantifier and substitution bookkeeping.\n",{"path":6556,"title":6557,"module":6549,"summary":6558},"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness","The Soundness Theorem","Soundness is the easy half of the match between proof and truth. Whatever the calculus deduces is logically implied, by an induction on deduction length that rests on one lemma: every logical axiom is valid. The only hard case, quantifier instantiation, needs the substitution lemma. The contrapositive corollary states that every satisfiable set is consistent.\n",{"path":6560,"title":6561,"module":6549,"summary":6562},"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency","The Completeness Theorem","Gödel's completeness theorem is the deep converse of soundness: whatever is logically implied can be deduced. Equivalently, every consistent set has a model. The Henkin proof manufactures that model out of syntax alone: add witnessing constants, extend to a maximal consistent set, and read a term model off the formulas it contains. Compactness and the enumerability theorem drop out.\n",{"path":6564,"title":6565,"module":6566,"summary":6567},"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem","Compactness and the Löwenheim–Skolem Theorems","Models, Compactness, and Theories","A set of first-order sentences has a model whenever each of its finite subsets does. This compactness theorem follows from completeness and yields the finiteness limitation, the downward and upward Löwenheim–Skolem theorems, models of every infinite cardinality, and nonstandard models of arithmetic.\n",{"path":6569,"title":6570,"module":6566,"summary":6571},"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity","Theories, Elementary Classes, and Categoricity","A theory is a set of sentences closed under logical consequence. Theories correspond to classes of models; a theory may be complete, axiomatizable, or finitely axiomatizable, and completeness together with axiomatizability yields decidability. The Łoś–Vaught test derives completeness from categoricity in a cardinal, applied to dense linear orders and to algebraically closed fields.\n",{"path":6573,"title":6574,"module":6566,"summary":6575},"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories","Interpretations Between Theories","An interpretation translates the vocabulary of one theory into formulas of another, relativizing quantifiers to a definable domain and mapping symbols to defining formulas. Defined function symbols meet a noncreativity criterion; the syntactic translation of formulas carries theoremhood forward, and a faithful interpretation transfers decidability and undecidability between theories.\n",{"path":6577,"title":6578,"module":6566,"summary":6579},"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis","Nonstandard Analysis","Compactness builds a model of the real ordered field containing infinite elements and nonzero infinitesimals. The transfer principle carries every first-order truth from the reals to this extension, the standard-part map collapses finite hyperreals back onto the reals, and continuity and the derivative are rederived by working with infinitely small quantities directly.\n",{"path":6581,"title":6582,"module":6583,"summary":6584},"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic","The Structure of Arithmetic and Definability","Number Theory and Definability","Number theory is the theory of one fixed structure, the natural numbers under successor, order, addition, multiplication, and exponentiation. Every number is named by a numeral, and a relation is definable when a single formula picks out exactly its tuples. The central gap separates the sentences true in that structure from those any reasonable set of axioms can prove.\n",{"path":6586,"title":6587,"module":6583,"summary":6588},"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor","Natural Numbers with Successor","The weakest reduct keeps only zero and successor. Its models are a standard chain together with disjoint copies of the integers, which makes the theory categorical in every uncountable power, hence complete and decidable. A quantifier-elimination procedure gives a practical decision method and shows a subset is definable if and only if it is finite or cofinite.\n",{"path":6590,"title":6591,"module":6583,"summary":6592},"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts","Reducts: Order, Addition, and Multiplication","Adding order to the successor reduct keeps decidability and makes the theory finitely axiomatizable; adding addition gives Presburger arithmetic, still decidable by quantifier elimination once congruence predicates are included, with definable sets exactly the eventually periodic ones. Multiplication is the break point: neither addition nor order can define it, and once it joins addition the theory stops being decidable.\n",{"path":6594,"title":6595,"module":6583,"summary":6596},"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability","A Subtheory of Number Theory and Representability","A finite set of eleven axioms, the recursion equations for successor, order, addition, multiplication, and exponentiation, already proves every true quantifier-free and existential sentence. Representability asks a theory to prove the right instances of a formula rather than merely make them true, and a relation is defined to be recursive exactly when some consistent finite theory represents it. Church's thesis identifies that with decidability, and closure under composition, minimization, and primitive recursion builds the catalog the incompleteness proofs need.\n",{"path":6598,"title":6599,"module":6600,"summary":6601},"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax","Arithmetization of Syntax","Arithmetization and the Incompleteness Theorems","Gödel numbering assigns a natural number to every symbol, expression, formula, and deduction, turning statements about syntax into statements about numbers. The syntactic operations — substitution, \"is a wff\", \"is an axiom\", \"d codes a deduction of a\" — come out primitive recursive and hence representable in the subtheory, which lets a formula of arithmetic talk about formulas, including itself.\n",{"path":6603,"title":6604,"module":6600,"summary":6605},"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability","Incompleteness, Undecidability, and Church's Theorem","The fixed-point lemma manufactures a sentence that talks about its own Gödel number. Pointed at truth it gives Tarski's theorem — arithmetic truth is not arithmetically definable; pointed at provability it gives Gödel's first incompleteness theorem and the undecidability of the theory of the natural numbers, and, applied to validity, Church's theorem that first-order logic is undecidable. The set of theorems of a recursive theory is only recursively enumerable — the gap between provable and true.\n",{"path":6607,"title":6608,"module":6600,"summary":6609},"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem","The Second Incompleteness Theorem","Consistency of a recursively axiomatized theory is itself an arithmetic sentence, built from a provability predicate. When the theory is strong enough to formalize its own reflection and modus ponens — the Hilbert–Bernays–Löb derivability conditions — it cannot prove that sentence unless it is inconsistent. Löb's theorem is the companion result, and set theory is the case that closes Hilbert's program.\n",{"path":6611,"title":6612,"module":6613,"summary":6614},"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions","Recursive Functions and Church's Thesis","Recursive Functions and Representability","The recursive functions are the formal counterpart of the effectively computable ones: built from three initial functions by composition, primitive recursion, and minimization, and equivalently the functions representable in a finitely axiomatized arithmetic. Church's thesis identifies the class with effective calculability; Kleene's normal form theorem and the unsolvable halting problem place the recursive sets strictly inside the recursively enumerable ones.\n",{"path":6616,"title":6617,"module":6613,"summary":6618},"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation","Representing Exponentiation and the β-Function","Coding finite sequences by prime-power exponents already assumes exponentiation, so representing exponentiation from addition and multiplication alone needs a different encoder. Gödel's β-function, built from a pairing function and the Chinese remainder theorem, reads back arbitrary finite sequences using only plus and times. This represents exponentiation in the addition-multiplication arithmetic and closes the last gap in the representability of every recursive syntactic operation.\n",{"path":6620,"title":6621,"module":6622,"summary":6623},"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages","Second-Order Languages","Second-Order Logic and Beyond","Second-order logic quantifies over relations and functions, not just individuals. Second-order Peano arithmetic and the second-order theory of the reals become categorical, and finiteness is definable by a single sentence. Compactness, completeness, and the Löwenheim–Skolem theorems all fail for the standard semantics.\n",{"path":6625,"title":6626,"module":6622,"summary":6627},"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic","Skolem Functions and Many-Sorted Logic","Skolem functions replace existential quantifiers with named witnesses, putting any first-order formula into a prenex form with all existentials — now over functions — pulled to the front. The Skolemized formula is equisatisfiable with the original, which reduces satisfiability to universal sentences and, through Herbrand expansions, to sentential logic. Many-sorted logic then adds several universes at once and reduces cleanly to ordinary one-sorted logic.\n",{"path":6629,"title":6630,"module":6622,"summary":6631},"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures","General (Henkin) Structures","General semantics reinterprets second-order logic by letting the predicate and function quantifiers range over a designated collection of relations and functions rather than all of them. Recast as many-sorted first-order logic with comprehension axioms, general second-order logic recovers a sound and complete calculus together with compactness and Löwenheim–Skolem, giving up the categoricity of the standard semantics. The ω-models of analysis show the trade.\n",{"path":6633,"title":6634,"module":306,"summary":306},"\u002Flogic","Logic",{"path":6636,"title":6637,"module":5,"summary":6638},"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning","What Is Reinforcement Learning?","Reinforcement learning is learning what to do — how to map situations to actions — so as to maximize a numerical reward signal, discovered by trial and error rather than told. We set up the agent–environment loop, separate it from supervised and unsupervised learning, name the four elements (policy, reward, value, and an optional model), and train a tic-tac-toe player with a temporal-difference value update.\n",{"path":6640,"title":6641,"module":5,"summary":6642},"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl","A Brief History of Reinforcement Learning","The origins of reinforcement learning. Three threads — trial-and-error learning from animal psychology, optimal control and dynamic programming, and temporal-difference learning — ran independently for decades and merged around 1989 into the modern field. Replacing the lookup table with a neural network then produced deep reinforcement learning: DQN, AlphaGo, AlphaZero, MuZero, and RLHF.\n",{"path":6644,"title":6645,"module":5,"summary":6646},"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits","Multi-Armed Bandits","A bandit is reinforcement learning stripped to a single decision, repeated: no state, no consequences, only the tension between exploiting the arm that looks best and exploring the ones that might be better. We build up the whole toolkit — sample-average value estimates, the incremental update rule, ε-greedy, optimistic initialization, UCB, and gradient bandits — and use it to study exploration in isolation, the one problem that carries over to the full setting.\n",{"path":6648,"title":6649,"module":5,"summary":6650},"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms","Bandit Exploration Algorithms","Better ways to explore than picking at random. Upper-confidence-bound selection explores by optimism about what it hasn't measured; gradient bandits learn action preferences by stochastic gradient ascent on reward. We then add context to get the contextual bandit, the bridge to full RL, and measure everything by regret — where UCB1 and Thompson sampling reach the logarithmic optimum that fixed-ε greedy cannot.\n",{"path":6652,"title":6653,"module":5,"summary":6654},"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes","Markov Decision Processes","A Markov decision process is the formal interface between an agent and its environment: at each step the agent reads a state, chooses an action, and receives a reward and a next state. We fix that loop, the dynamics function that governs it, and the Markov property that makes the state sufficient; then turn goals into a scalar reward and rewards into a discounted return, with one notation that covers both episodic and continuing tasks.\n",{"path":6656,"title":6657,"module":5,"summary":6658},"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality","Value Functions and Optimality","A value function scores how good a state (or state–action pair) is under a policy: the expected return from there onward. Its defining property is the Bellman equation, a self-consistency condition linking a state's value to its successors' values, which we derive from the return and the dynamics. Pushing the same idea to the best-achievable value gives the Bellman optimality equations, whose solution yields an optimal policy — and whose intractability is what the rest of the course is about.\n",{"path":6660,"title":3637,"module":6661,"summary":6662},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming","Tabular Solution Methods","Dynamic programming computes optimal policies when a perfect model of the MDP is given, by turning the Bellman equations into assignment statements. We build up iterative policy evaluation (the expected update), the policy improvement theorem, and the two classic algorithms that alternate them — policy iteration and value iteration — worked on the gridworld, a two-state MDP, Jack's car rental, and the gambler's problem.\n",{"path":6664,"title":6665,"module":6661,"summary":6666},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi","Dynamic Programming: Asynchronous DP and Generalized Policy Iteration","Policy and value iteration both sweep the entire state set on every pass, which is impossible once the state space is huge. This lesson loosens the schedule: asynchronous DP updates states in any order, generalized policy iteration names the alternation of evaluation and improvement that underlies nearly every RL method, and a look at efficiency and the curse of dimensionality places DP among the alternatives. We close past Sutton & Barto with prioritized sweeping, neuro-dynamic programming, value-iteration networks, and MuZero.\n",{"path":6668,"title":6669,"module":6661,"summary":6670},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods","Monte Carlo Methods","Monte Carlo methods learn value functions and optimal policies from complete sampled episodes, with no model of the environment: they simply average the returns that actually followed each state. We build prediction (first-visit and every-visit averaging), see why estimating action values forces the exploration question, and answer it two ways on-policy — exploring starts and epsilon-soft control. Throughout, Monte Carlo samples one whole trajectory to termination and never bootstraps.\n",{"path":6672,"title":6673,"module":6661,"summary":6674},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy","Monte Carlo Methods: Off-Policy Learning","On-policy Monte Carlo can only reach the best exploring policy, not the true optimum. Off-policy methods remove that ceiling by learning about a greedy target policy from data generated by a soft behavior policy, corrected with importance sampling. We derive the importance-sampling ratio, weigh ordinary against weighted estimators on real numbers, give the incremental off-policy algorithm, sharpen it with discounting-aware sampling, and close by placing Monte Carlo on the model\u002Fbootstrap map beside DP and temporal-difference learning.\n",{"path":6676,"title":6677,"module":6661,"summary":6678},"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning","Temporal-Difference Learning","Temporal-difference learning is the one idea most central to reinforcement learning: learn a value directly from experience, like Monte Carlo, but update each guess toward the next guess before the episode ends, like dynamic programming. We derive the TD(0) prediction rule and its reward-prediction error, contrast its one-step backup with MC and DP, work the driving-home and random-walk examples, and show the batch-updating optimality that makes TD approximate the certainty-equivalence estimate.\n",{"path":6680,"title":6681,"module":6661,"summary":6682},"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning","TD Control: Sarsa, Q-learning, and Double Learning","With TD prediction in hand, control follows the generalized-policy-iteration pattern with TD as the evaluation step. We build Sarsa (on-policy), Q-learning (off-policy, targeting the optimal policy), and Expected Sarsa that spans the two, then confront the maximization bias every max-based method inherits and fix it with Double Q-learning. We close past Sutton & Barto, following each one-step tabular update into its deep-RL descendant — DQN, Double DQN, and Rainbow.\n",{"path":6684,"title":6685,"module":6661,"summary":6686},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping","n-Step Bootstrapping","Monte Carlo waits for the full return; one-step TD bootstraps after a single reward. Between them lies a whole spectrum, indexed by one integer n: look ahead n real rewards, then bootstrap from the value n steps out. The n-step return unifies the previous two lessons, and — on the random walk — an intermediate n beats both extremes. We build the n-step return, the n-step TD update, the backup-diagram spectrum, and n-step Sarsa for control.\n",{"path":6688,"title":6689,"module":6661,"summary":6690},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods","n-Step Bootstrapping: Off-Policy Methods","Taking the n-step family off-policy raises the same importance-sampling questions Monte Carlo did, now over a window of exactly n actions. We reweight n-step returns by the policy ratio, watch the ratio product inflate variance on real numbers, then build the tree-backup algorithm that learns off-policy with no ratios at all — and finally n-step Q(sigma), one algorithm whose per-step switch recovers Sarsa, tree backup, and Expected Sarsa as special cases.\n",{"path":6692,"title":6693,"module":6661,"summary":6694},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning","Planning and Learning","Planning and learning are the same operation run on two kinds of experience. A model turns states and actions into simulated transitions; planning backs up values over that simulated experience exactly as learning backs them up over real experience. We build the Dyna architecture that interleaves acting, model-learning, direct RL, and planning in one loop, trace a single Dyna-Q step by hand, and patch the architecture for when the model goes stale.\n",{"path":6696,"title":6697,"module":6661,"summary":6698},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time","Planning: Focusing Updates and Decision-Time Search","Dyna plans by replaying remembered transitions, but sampling them uniformly wastes most of the effort. This lesson sharpens planning: prioritized sweeping works backward from states whose value just changed, expected versus sample updates weigh thoroughness against cost, and trajectory sampling and real-time DP focus updates on the states the policy actually visits. We trace Dyna forward to model-based deep RL, then turn to decision-time planning — heuristic search, rollouts, and Monte Carlo Tree Search.\n",{"path":6700,"title":6701,"module":6661,"summary":6702},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning","Decision-Time Planning","Planning need not build a global policy. Decision-time planning runs a fresh lookahead every time a state arrives and returns just one action, then throws the work away. We start from real-time dynamic programming — asynchronous value iteration on the states the agent actually visits — then move through heuristic search and rollout algorithms, each a one-step policy improvement applied on the fly to the current state.\n",{"path":6704,"title":6705,"module":6661,"summary":6706},"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search","Monte Carlo Tree Search","Monte Carlo Tree Search is a rollout algorithm with memory: it accumulates value estimates across simulations and steers later ones toward promising branches. We work through the four steps — selection, expansion, simulation, backup — the UCT selection rule computed on real numbers, the asymmetric growing tree, and the full pseudocode. We close past Sutton & Barto with the lineage from UCT to AlphaGo, AlphaZero, and MuZero, where a learned network stands in for the leaf value and the rollout.\n",{"path":6708,"title":6709,"module":6710,"summary":6711},"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction","On-Policy Prediction with Approximation","Approximate Solution Methods","Every tabular method so far stored one number per state, which fails once the state space is large or continuous. We replace the table with a parameterized value function $\\hat v(s,\\mathbf{w})$, define the mean squared value error it should minimize under the on-policy distribution, and derive stochastic- and semi-gradient learning rules — the semi-gradient TD(0) update that bootstraps and so is not a true gradient. Linear methods make the analysis clean and give the TD fixed point; feature construction (polynomials, Fourier basis, coarse and tile coding, RBFs) supplies the vectors $\\mathbf{x}(s)$, and neural networks are the nonlinear bridge to deep RL.\n",{"path":6713,"title":6714,"module":6710,"summary":6715},"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear","Feature Construction and Nonlinear Approximation","Linear methods are only as good as the feature vectors $\\mathbf{x}(s)$ fed to them, and this lesson builds those vectors. Polynomials and the Fourier basis turn a state's coordinates into smooth global features; coarse coding, tile coding, and radial basis functions cover a continuous space with overlapping local receptive fields whose size sets the reach of generalization. Then we stop designing features by hand: a neural network learns the representation itself by gradient descent, trading the convergence guarantees of the linear case for expressiveness — the bridge to deep reinforcement learning.\n",{"path":6717,"title":6718,"module":6710,"summary":6719},"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control","On-Policy Control with Approximation","Prediction learned a value function from features; control learns to act. We carry semi-gradient methods over to action values $\\hat q(s,a,\\mathbf{w})$, giving episodic semi-gradient Sarsa and its n-step form, and solve Mountain Car by descending a cost-to-go surface. In the continuing case, function approximation makes discounting unable to affect which policy is best, so we replace it with the average-reward setting — the differential return, differential value functions, and differential semi-gradient Sarsa.\n",{"path":6721,"title":6722,"module":6710,"summary":6723},"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control","Average-Reward Control for Continuing Tasks","With function approximation, discounting has no effect on a continuing task: averaged over the on-policy distribution, the discounted objective equals the average reward times a policy-independent constant, so $\\gamma$ cannot change which policy is best. This lesson replaces discounting with the average-reward setting — the long-run reward rate $r(\\pi)$, the differential return that measures each state's transient advantage over that rate, differential value functions and TD error, and differential semi-gradient Sarsa, the control method for continuing tasks that never invokes a discount factor.\n",{"path":6725,"title":6726,"module":6710,"summary":6727},"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad","Off-Policy Methods and the Deadly Triad","Off-policy learning with function approximation is where the convergence guarantees of reinforcement learning fail. We extend the tabular off-policy updates to semi-gradient form with per-step importance sampling, show Baird's counterexample driving the weights to infinity, and identify the cause: the deadly triad of function approximation, bootstrapping, and off-policy training — any two are safe, all three can diverge. The divergence is not caused by sampling noise: a fully synchronous dynamic-programming update blows up just the same, which is what makes the triad a structural hazard rather than a fluke.\n",{"path":6729,"title":6730,"module":6710,"summary":6731},"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td","Value-Function Geometry and Gradient-TD Methods","Why does the deadly triad diverge, and how do you stop it? This lesson develops the geometry that explains the failure: value functions as vectors, the projection operator onto the representable subspace, and the split between the Bellman error, the value error, and the projected Bellman error: the three objectives have different minimizers. The projected Bellman error is the learnable one, and Gradient-TD methods (GTD2, TDC) do true stochastic gradient descent on it, staying stable even off-policy at $O(d)$ cost. Emphatic TD reweights states instead, and a survey of variance-reduction techniques closes the gap between stability and usable learning.\n",{"path":6733,"title":6734,"module":6710,"summary":6735},"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces","Eligibility Traces","n-step methods unify TD and Monte Carlo by storing the last n feature vectors; eligibility traces do the same job with a single short-term memory vector. The λ-return averages every n-step return under a geometric weighting; the forward view looks ahead to that average, and the backward view produces nearly the same updates online through a decaying trace vector. We build the λ-return, TD(λ) with its trace, the two ways λ recovers TD(0) and Monte Carlo, a note on the exact equivalence of true online TD(λ), and Sarsa(λ) for control.\n",{"path":6737,"title":6738,"module":6710,"summary":6739},"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda","True Online TD(λ) and Sarsa(λ)","Plain TD(λ) makes the forward and backward views nearly agree; this lesson closes the gap. True online TD(λ) uses a dutch trace and a small correction term to produce exactly the same weight sequence as the online λ-return algorithm, at the same memory and only a constant factor more compute — the sharpest statement of the forward\u002Fbackward duality. The whole apparatus then lifts to control unchanged: Sarsa(λ) threads a single delayed reward back along an entire trajectory in one sweep, and the λ-weighting reappears in modern deep RL as generalized advantage estimation.\n",{"path":6741,"title":6742,"module":6710,"summary":6743},"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods","Policy Gradient Methods","Every method so far learned values and read a policy off them. Policy gradient methods drop the intermediary: parameterize the policy directly and climb the performance gradient. We build the softmax-in-preferences parameterization, prove the policy gradient theorem that makes the gradient computable without the unknown state distribution, and derive REINFORCE and its variance-cutting state-value baseline — the launch point for the bootstrapping actor-critic that follows.\n",{"path":6745,"title":6746,"module":6710,"summary":6747},"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions","Actor-Critic Methods and Continuous Actions","REINFORCE with a baseline learns a value function but never bootstraps; this lesson adds the bootstrapping critic that completes the actor-critic architecture. The critic scores each transition into a single TD error that steers both the actor's policy step and its own value step, trading a little bias for much lower variance and fully online, continuing-task learning. The policy gradient theorem carries over unchanged to the average-reward setting, a Gaussian policy handles real-valued actions with self-tuning exploration, and the natural policy gradient leads straight to TRPO, PPO, and the deep actor-critic methods that train today's agents.\n",{"path":6749,"title":6750,"module":6710,"summary":6751},"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods","Least-Squares TD","Semi-gradient TD spends one cheap step per example and needs many examples; this lesson makes the opposite tradeoff. Least-Squares TD (LSTD) accumulates the matrices $\\mathbf{A}$ and $\\mathbf{b}$ and solves the TD fixed point $\\mathbf{w} = \\mathbf{A}^{-1}\\mathbf{b}$ directly, using the Sherman-Morrison identity to maintain the inverse in $O(d^2)$ — the most data-efficient linear TD method, at a quadratic cost. We work a solve by hand, weigh the quadratic cost against semi-gradient TD's cheap steps, and note that LSTD never forgets — a problem in control, where least-squares policy iteration is the natural extension.\n",{"path":6753,"title":6754,"module":6710,"summary":6755},"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods","Memory-Based and Kernel Methods","Least-squares TD spent more compute to extract more from each example; this lesson drops the parametric form entirely. Memory-based methods store training examples untouched and answer a query locally at retrieval time — nearest neighbor, weighted average, locally weighted regression — so accuracy grows with the data and effort concentrates where the agent actually goes. Kernel-based methods weight stored examples by a similarity kernel $k(s,s')$, and every linear method turns out to be a kernel method. Interest and emphasis, finally, make the on-policy weighting itself a design choice, aiming scarce approximation capacity at the states that matter.\n",{"path":6757,"title":6758,"module":6710,"summary":6759},"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces","Off-Policy Eligibility Traces","Eligibility traces meet off-policy learning and function approximation — the corner where stability gets hard. We first let the bootstrapping and discounting parameters vary with state, so a single generalized return covers episodic and continuing tasks and folds termination into the discount. Then we fold the per-decision importance ratio into the trace with a control-variate correction, and build Watkins's Q(λ) and its importance-sampling-free successor Tree-Backup(λ) — all correct in expectation, but still semi-gradient, so the deadly triad and its fixes wait for the next lesson.\n",{"path":6761,"title":6762,"module":6710,"summary":6763},"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces","Stable Off-Policy Methods with Traces","Off-policy traces get the expected target right, but with $\\lambda \u003C 1$ they bootstrap, so off-policy plus bootstrapping plus function approximation is the deadly triad and the weights can diverge. This lesson carries the two one-step fixes to traces: GTD(λ) and GQ(λ) add a second weight vector and a gradient correction for true gradient descent on the projected Bellman error, while Emphatic TD(λ) reweights updates through a followon trace and interest to recover the on-policy stability. It closes with the implementation reality that traces are cheap because they are sparse, and with Retrace and V-trace — the clipped-ratio descendants that make off-policy traces work at deep-RL scale.\n",{"path":6765,"title":6083,"module":6766,"summary":6767},"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks","Deep Reinforcement Learning","Deep Q-networks replace the linear value function with a neural network $Q(s,a;\\mathbf{w})$ and confront the fact that a nonlinear approximator, off-policy bootstrapping, and correlated online data — the deadly triad — make naive Q-learning diverge. DQN counters this empirically with two stabilizers: an experience replay buffer that decorrelates and reuses samples, and a periodically-frozen target network that fixes the bootstrap target. We derive the DQN loss and gradient, walk through the Atari convolutional architecture and its results, and then add the three refinements that define modern value-based deep RL — Double DQN, dueling networks, and prioritized experience replay.\n",{"path":6769,"title":6770,"module":6766,"summary":6771},"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements","DQN Improvements: Double, Dueling, and Prioritized Replay","Three refinements that turn plain DQN into the standard modern value-based agent, each touching a different part of the system. Double DQN fixes the maximization bias in the target by splitting action selection from evaluation; dueling networks restructure the network around a state value and per-action advantages; prioritized replay changes which transitions are learned from. We close with Rainbow, which combines them, and the distributional view that predicts the whole return distribution rather than its mean.\n",{"path":6773,"title":6774,"module":6766,"summary":6775},"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo","Actor–Critic and GAE","Make the actor and the critic deep networks and the policy-gradient architecture becomes modern deep RL. We build the neural actor-critic, the advantage estimate that replaces the raw return, and Generalized Advantage Estimation as a λ-blend of n-step advantages, then the parallel-worker methods A3C and A2C that decorrelate on-policy data. The step-size constraints — trust regions, PPO, and the continuous-control family — follow in the next lesson.\n",{"path":6777,"title":6778,"module":6766,"summary":6779},"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control","PPO and Continuous Control","Keeping the policy-gradient step from destroying the policy, and the algorithms that result. Trust-region optimization bounds each update by a KL constraint; PPO keeps that goal but replaces the second-order machinery with a first-order clip on the probability ratio, which is why it is the modern default and the optimizer inside RLHF. We then tour the off-policy continuous-control family — DDPG, TD3, and SAC — and where actor-critic went at scale, from OpenAI Five to language-model alignment.\n",{"path":6781,"title":6782,"module":6766,"summary":6783},"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies","Case Studies: Learning to Play","The game-playing systems that turned reinforcement learning from a theory into a track record: Samuel's checkers player, TD-Gammon, Watson's Daily-Double wagering, a reinforcement-learning memory controller, DQN, and AlphaGo through AlphaGo Zero. Read as a set they draw one line — a value function, learned by self-play or interaction, refined by search, carried by a deep network — that runs from a 1959 checkers program to superhuman Go.\n",{"path":6785,"title":6786,"module":6766,"summary":6787},"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games","Reinforcement Learning Beyond Games","The same value-and-reward machinery, pointed at problems with no opponent. Web personalization as a contextual bandit and then a full MDP for life-time value; thermal soaring, where a glider learns to climb on turbulent air and reward design does most of the work; and the industrial-scale systems that carried the same design past Sutton & Barto — AlphaStar, OpenAI Five, GT Sophy, and RLHF, where the reward itself is learned from human preference.\n",{"path":6789,"title":6790,"module":6766,"summary":6791},"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers","Frontiers: Beyond the Standard MDP","The standard MDP fixes three things — state, reward, and single-step actions — and this lesson loosens two of them. We generalize the value function into a general value function that predicts any signal, and use those predictions as auxiliary tasks that shape representations; we extend actions in time with the options framework; and we treat state as a construction the agent builds from a stream of observations. Reward design and the open problems follow in the next lesson.\n",{"path":6793,"title":6794,"module":6766,"summary":6795},"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems","Reward Design and Open Problems","How to design a reward signal that encodes the intended goal — sparse reward, shaping, and reward hacking — and the problems the whole tabular, approximate, and deep arc leaves unsolved. We close with how the frontiers were pushed after Sutton & Barto: auxiliary tasks, learned options, intrinsic-motivation bonuses, learned world models, and offline RL, then the two concerns of reward hacking and safety that any real-world agent must address.\n",{"path":6797,"title":6798,"module":6799,"summary":6800},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow","Sharpening DQN: Improvements and the Distributional Idea","Modern Deep Reinforcement Learning","In the years after the 2015 DQN paper, a stream of focused improvements each fixed one weakness of the baseline without disturbing its frame. This lesson recaps five that keep the scalar $Q$-value — Double DQN, multi-step returns, dueling networks, prioritized replay, and NoisyNets, each changing a different slot of the same Q-learning loop — then develops the sixth, distributional RL, which changes the objective itself: learn the whole return distribution $Z(s,a)$. We build the distributional Bellman equation and the C51 categorical algorithm, projection step and all, worked end to end on real numbers. A companion lesson takes up QR-DQN, Rainbow, and the modern distributional line.\n",{"path":6802,"title":6803,"module":6799,"summary":6804},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2","Distributional RL and Rainbow","A companion to the DQN improvements lesson. C51 fixed the return atoms and learned their probabilities; QR-DQN does the reverse — fix the probabilities, learn the values — which removes the projection and trains with a quantile loss. We cover why the distribution helps even when you act on the mean, then assemble Rainbow: all six improvements in one Q-learning loop, with the component ablation that shows each one's real weight. The distributional line then runs on through IQN, FQF, and Agent57, the first agent to beat the human baseline on all 57 Atari games.\n",{"path":6806,"title":6807,"module":6799,"summary":6808},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control","Continuous Control: DDPG and TD3","When actions are real-valued, the $\\arg\\max_a Q(s,a)$ in Q-learning becomes an optimization problem on every step. This lesson builds the off-policy actor-critic family that sidesteps it: the deterministic policy gradient and DDPG, which replaces the max with a learned actor, and the three fixes of TD3 that counter the value overestimation DDPG inherits. A companion lesson takes up SAC's maximum-entropy objective and the methods built on this template.\n",{"path":6810,"title":6811,"module":6799,"summary":6812},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2","Continuous Control: SAC and Beyond","A companion to the DDPG and TD3 lesson. Where those actors are deterministic and explore with bolted-on noise, soft actor-critic (SAC) changes the objective itself: maximize return plus the entropy of the policy, so exploration becomes intrinsic and the agent stays robust. We develop the maximum-entropy objective, the reparameterized squashed-Gaussian actor, and automatic temperature tuning, then survey the methods built on this off-policy template — distributional critics (D4PG), critic ensembles (REDQ), and control from pixels (DrQ, RAD).\n",{"path":6814,"title":6815,"module":6799,"summary":6816},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl","Model-Based Deep RL: Sample Efficiency and PETS","A model turns experience into imagined planning. This lesson makes the sample-efficiency case for learning a dynamics model, works through why a learned model's errors compound over the planning horizon, and builds the most direct model-based method: PETS plans online with a probabilistic ensemble under model-predictive control, distrusting the model exactly where its members disagree. A companion lesson takes up latent world models (Dreamer) and MuZero.\n",{"path":6818,"title":6819,"module":6799,"summary":6820},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2","Model-Based Deep RL: World Models, Dreamer, and MuZero","A companion to the PETS lesson. PETS plans in the environment's native state space; these methods change what the model represents. World Models and Dreamer learn a compact latent state and do almost all their learning by imagining inside it, with value gradients flowing through the differentiable dynamics. MuZero predicts neither states nor pixels — only the reward, value, and policy that MCTS reads — and plans with search against that learned model, AlphaZero without the rules. We close with MBPO, TD-MPC, and EfficientZero.\n",{"path":6822,"title":6823,"module":6799,"summary":6824},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration","Exploration in Deep RL: Novelty as Reward","When the state space is enormous and reward is rare, ε-greedy amounts to a random walk that almost never reaches the first reward. This lesson scales the bandit's exploration ideas up to deep RL through the dominant approach — manufacture a reward for novelty and let the agent chase it: optimism and pseudo-counts from density models, and intrinsic motivation and curiosity (the Intrinsic Curiosity Module and Random Network Distillation). A companion lesson takes up posterior sampling, Go-Explore, and the modern methods.\n",{"path":6826,"title":6827,"module":6799,"summary":6828},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2","Exploration in Deep RL: Posterior Sampling and Go-Explore","A companion to the novelty-as-reward lesson. Pseudo-counts and curiosity reward the unfamiliar after the agent stumbles into it; this lesson covers two ideas that go further. Bootstrapped DQN keeps an ensemble that approximates a posterior over value functions and explores by committing to one sampled hypothesis per episode — the deep, directed exploration ε-greedy cannot manage. Go-Explore remembers and returns to the frontier, defeating detachment and derailment to solve Montezuma's Revenge. We close with episodic memory (Never Give Up), Agent57, and model-based exploration.\n",{"path":6830,"title":6831,"module":6799,"summary":6832},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl","Offline RL: The Problem and Value-Based Fixes","Offline reinforcement learning learns a policy from a fixed logged dataset with no further environment interaction — off-policy learning pushed to the extreme, and it breaks for the extreme version of the same reason. Bootstrapping queries the value function at out-of-distribution actions the data never covers, those errors are optimistic, and with no online feedback to correct them they compound through the Bellman backup. This lesson sets up the failure and off-policy evaluation, then builds the first two families of pessimistic fixes: policy constraint (BCQ) and conservative value estimation (CQL). A companion lesson takes up implicit methods, model-based offline RL, and Decision Transformer.\n",{"path":6834,"title":6835,"module":6799,"summary":6836},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2","Offline RL: Implicit Methods, Sequence Models, and Beyond","A companion to the offline-RL problem lesson. Policy constraint and conservative value estimation both still query a learned value function; implicit methods (IQL) avoid querying it off the data at all, using an in-sample expectile backup. We then build pessimism into a learned model (MOPO, COMBO) and drop bootstrapping entirely with Decision Transformer's return-conditioned sequence modeling, closing with offline-to-online fine-tuning, diffusion planners, and the offline view of RLHF. The one rule throughout: without online correction, be pessimistic about what you cannot verify.\n",{"path":6838,"title":6839,"module":6799,"summary":6840},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl","Imitation Learning: Cloning, DAgger, and Inverse RL","When a reward is hard to specify but an expert is easy to watch, learn from demonstrations instead. Behavioral cloning treats control as supervised learning of the expert's state-to-action map, and fails through compounding error: small mistakes carry the agent off the expert's distribution, where it was never trained. DAgger fixes the mismatch by querying the expert on the learner's own states. Inverse RL instead recovers the reward the expert seems to optimize — an ill-posed problem that maximum-entropy IRL disambiguates. A companion lesson casts imitation as adversarial occupancy matching (GAIL, AIRL).\n",{"path":6842,"title":6843,"module":6799,"summary":6844},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2","Imitation as Adversarial Matching: GAIL and AIRL","A companion to the imitation-learning lesson. If the point of recovering a reward is only to re-run RL and match the expert, you can skip the reward and match the behavior directly. GAIL casts imitation as a GAN — a discriminator separating expert from learner state-action pairs supplies the reward a policy-gradient method optimizes — matching occupancy measures without ever naming a reward. AIRL reads a transferable reward back out of the discriminator. We compare all four methods and close with reward models in RLHF, scaled cloning, and diffusion policies.\n",{"path":6846,"title":6847,"module":6799,"summary":6848},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl","Multi-Agent RL: Markov Games and Centralized Training","With more than one learning agent in an environment, each agent's world becomes non-stationary because the others are changing too. This lesson builds the Markov-game generalization of the MDP, diagnoses non-stationarity as the central obstacle, shows why the naive baselines fail, and develops the dominant fix — centralized training with decentralized execution (MADDPG, VDN, QMIX). A companion lesson takes up self-play, the landmark game-playing systems, and the equilibrium concepts that define what \"solved\" means.\n",{"path":6850,"title":6851,"module":6799,"summary":6852},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2","Multi-Agent RL: Self-Play and Solution Concepts","A companion to the Markov-games lesson. In the purely competitive setting, an agent can generate its own training curriculum by playing against copies of itself — self-play, the method behind AlphaGo, OpenAI Five, and AlphaStar. We develop why self-play produces an ever-improving opponent, the systems it built, and then the equilibrium solution concepts (Nash, correlated, coarse-correlated) that define what \"solved\" means once there is an opponent, closing with PSRO, MAPPO, and the language-model-agent frontier.\n",{"path":6854,"title":6855,"module":6799,"summary":6856},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl","Hierarchical RL: Options and the Option-Critic","Flat RL cannot explore a long horizon: reaching reward through hundreds of primitive actions is exponentially unlikely, and every credit-assignment update crawls one step at a time. Hierarchy breaks one hard long-horizon problem into many short ones. This lesson develops temporal abstraction — the options framework and its semi-Markov view, and learning options end to end with the option-critic. A companion lesson takes up goal-conditioned manager\u002Fworker hierarchies (FeUdal Networks and HIRO), hindsight relabeling, and unsupervised skill discovery.\n",{"path":6858,"title":6859,"module":6799,"summary":6860},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2","Hierarchical RL: Goal-Conditioned Hierarchies and Skills","A companion to the options lesson. Options package a behavior; goal-conditioned hierarchies instead give the top level an explicit language of goals — a manager proposes a target state or a latent direction, and a worker is rewarded for reaching it (FeUdal Networks, HIRO). We develop that architecture, the hindsight relabeling that lets it learn from sparse reward, and unsupervised skill discovery (DIAYN) that learns a repertoire of behaviors with no reward at all. The shared idea throughout: shorten the horizon by inserting a level that decides less often.\n",{"path":6862,"title":6863,"module":6799,"summary":6864},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models","RLHF and Language Models","A language model trained to predict the next token is fluent but not helpful, honest, or harmless — the objective it was optimized for is not the objective we want. RLHF closes that gap by turning the one thing humans do reliably, comparing two outputs, into a reward. We build the three-stage pipeline: supervised fine-tuning, a Bradley-Terry reward model fit to preference pairs, then PPO against that reward with a KL penalty keeping it near the reference policy. We then cover reward hacking and why the KL penalty matters, Direct Preference Optimization, which folds the reward model into a single classification loss, and the RLAIF and verifiable-reward variants. This pipeline is what makes the largest models usable as assistants.\n",{"path":6866,"title":6867,"module":6799,"summary":6868},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps","Partial Observability: POMDPs and the Belief State","Drop the assumption that the agent sees the state. It sees an observation, a partial and noisy function of a hidden state, and one observation is no longer a Markov signal. This lesson builds the POMDP tuple, shows that the belief state — the posterior over hidden states — is a sufficient statistic that turns a POMDP back into an MDP over beliefs, and works the Bayes-filter belief update step by step. A companion lesson explains why exact planning is intractable and develops the deep-RL answer of recurrent, history-based policies.\n",{"path":6870,"title":6871,"module":6799,"summary":6872},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2","Partial Observability: Planning and Recurrent Policies","A companion to the belief-state lesson. In principle a POMDP reduces to an MDP over beliefs; in practice two obstacles block that. Exact planning over the belief simplex is intractable — the value function is piecewise-linear-and-convex with a number of pieces that can explode — and computing the belief needs a model the agent rarely has. This lesson develops the intractability, the point-based approximations that address it, and the deep-RL answer: make the policy a function of history with a recurrent network (DRQN, R2D2), with frame-stacking, attention, and world-model latents as learned beliefs.\n",{"path":6874,"title":6875,"module":6799,"summary":6876},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl","Safe and Constrained RL: The CMDP and Policy Methods","Maximizing a scalar reward is not the same as behaving well: a capable optimizer will find and exploit any gap between the reward and what its designer actually meant, a failure called specification gaming or reward hacking. The remedy is to add explicit cost constraints — the constrained MDP — maximizing return subject to an expected-cost budget. This lesson builds the core toolkit: the CMDP itself, Lagrangian primal-dual methods that learn a multiplier on the constraint (RCPO), and constrained policy optimization (CPO) with its trust-region cost bound. A companion lesson covers risk-sensitivity, safe exploration, and the alignment framing.\n",{"path":6878,"title":6879,"module":6799,"summary":6880},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2","Safe RL: Risk, Safe Exploration, and Alignment","A companion to the constrained-MDP lesson. Constraining the mean cost is not enough: a policy safe on average can be catastrophic in the tail, and a policy safe at convergence can violate its limits wildly while learning. This lesson optimizes the tail with risk-sensitive objectives (CVaR), then makes exploration itself safe with shields, Lyapunov methods, and safety layers that project unsafe actions onto the feasible set — closing with benchmarks, safe RLHF, robustness, and the alignment framing that ties safety back to the problem of incompletely specified reward.\n",{"path":6882,"title":6883,"module":6799,"summary":6884},"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization","Meta-RL and Generalization","An agent that masters one task often fails on the next; it has overfit to a single environment. This lesson treats fast adaptation as a meta-problem over a distribution of tasks: meta-train so that a few episodes at meta-test time suffice. We cover the two families — optimization-based (MAML learns an initialization) and context-based (RL-squared and PEARL infer a latent task) — the exploration cost of adaptation, and the parallel problem of generalization: why deep RL memorizes environments and what fixes it (domain randomization, procedural generation, augmentation, regularization). It closes on foundation models and sequence-model agents as the generalist endpoint.\n",{"path":6886,"title":6887,"module":6888,"summary":6889},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement","The Psychology of Reinforcement","Reinforcement Learning in Minds and Brains","Reinforcement learning is both an engineering method and a theory of how animals learn. The prediction\u002Fcontrol split of the algorithms mirrors the psychologist's split between classical and instrumental conditioning. We trace the correspondence: the Rescorla–Wagner model as a prediction-error rule that explains blocking, its real-time TD extension, Thorndike's Law of Effect behind trial-and-error control, and the habitual\u002Fgoal-directed distinction that maps onto model-free versus model-based learning.\n",{"path":6891,"title":6892,"module":6888,"summary":6893},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control","The Psychology of Reinforcement: Instrumental Control","Classical conditioning was prediction; instrumental conditioning is control. Thorndike's Law of Effect is trial-and-error control — selection plus association, search plus memory — and Skinner's shaping and schedules are reward engineering. The habitual\u002Fgoal-directed distinction maps onto model-free versus model-based control, dissociated by outcome devaluation and arbitrated by uncertainty. Delayed reinforcement is the credit-assignment problem, and the stimulus traces and secondary reinforcers of animal-learning theory are eligibility traces and value functions.\n",{"path":6895,"title":6896,"module":6888,"summary":6897},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error","Dopamine and the TD Error","The TD error was invented as an algorithm; a decade later it turned out to closely describe the firing of the brain's dopamine neurons. We follow Schultz's experiments — dopamine fires at an unpredicted reward, shifts to the earliest predictive cue, and dips below baseline when a predicted reward is withheld — and match each result to the TD error term by term. We then read the basal ganglia as a neural actor–critic with dopamine as its shared training signal, and close on addiction as a hijacking of that signal.\n",{"path":6899,"title":6900,"module":6888,"summary":6901},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain","Dopamine in the Brain: The Neural Actor–Critic","If phasic dopamine is a TD error, where does it go and what does it change? We follow the axons into the basal ganglia, read the corticostriatal synapse as the place where state, action, and error meet, and map the ventral and dorsal striatum onto the critic and the actor of an actor–critic. Addiction becomes a broken cancellation in the same learning signal, and distributional dopamine extends the scalar RPE into a population code.\n",{"path":6903,"title":6904,"module":6888,"summary":6905},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition","Animal Learning and Cognition","Three classic associative phenomena turn out to be reinforcement-learning mechanisms seen in behavior. Blocking says learning is driven by prediction error, not co-occurrence, and reduces to least-squares regression fitting a collinear feature. Higher-order conditioning and conditioned reinforcement make a value estimate a secondary reinforcer — bootstrapping in an animal. Delayed reinforcement is the credit-assignment problem, and the stimulus traces and goal gradients of Pavlov and Hull are eligibility traces and TD-learned value functions.\n",{"path":6907,"title":6908,"module":6888,"summary":6909},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning","Cognitive Maps and Model-Based Learning","Tolman's rats learned the layout of a maze with no reward, then used it the moment food appeared — latent learning, a cognitive map, and the behavioral face of model-based reinforcement learning. The map is learned by system identification (stimulus–stimulus associations), which fills in whether or not reward is present, and queried by planning, which re-solves a route from a single changed reward. The successor representation sits between cache and model, and hippocampal predictive maps and scaled-up world models carry the same idea into brain and machine.\n",{"path":6911,"title":6912,"module":6888,"summary":6913},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement","The Neuroscience of Reinforcement","The dopamine story is one contact point between reinforcement learning and the brain; this lesson fills in the surrounding neuroscience so the mapping stands on its own. We build a working primer of neurons, synapses, and neuromodulation; separate four signals that casual usage conflates — reward, reinforcement, value, and prediction error; and read the actor and critic as corticostriatal synapses updated by two- and three-factor rules, grounded in spike-timing-dependent and reward-modulated plasticity.\n",{"path":6915,"title":6916,"module":6888,"summary":6917},"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems","The Brain's Several Learning Systems","The actor's three-factor rule has an ancestor in Klopf's hedonistic neuron — a single cell as a reinforcement-seeking agent — and a bacterium's run-and-twiddle shows the Law of Effect with no synapses at all. Teams of such neurons implement policy gradient collectively, the broadcast reward replacing backpropagation. And the brain is not only model-free: outcome devaluation, prefrontal value coding, and hippocampal forward sweeps localize a model-based system. The recurring conclusion is that the brain is several interacting learning systems, not one algorithm.\n",{"path":6919,"title":6075,"module":306,"summary":306},"\u002Freinforcement-learning",{"path":6921,"title":6922,"module":5,"summary":6923},"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai","What Is Artificial Intelligence?","Eight definitions of AI fall into a two-by-two grid: think versus act, and measure success against human performance versus an ideal standard of rationality. We work through all four schools — the Turing test, cognitive modelling, the laws of thought, and the rational agent — and adopt the last as the frame for the whole course: AI is the study and design of rational agents.\n",{"path":6925,"title":6926,"module":5,"summary":6927},"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai","The Foundations of AI","Where the rational-agent idea came from and what surrounds it. AI inherited its core tools from eight older disciplines — philosophy, mathematics, economics, neuroscience, psychology, computer engineering, control theory, and linguistics. Its history runs in cycles of boom and winter, from the 1956 Dartmouth workshop through expert systems to the statistical turn. And the deep-learning era — AlexNet, the Transformer, GPT-3, AlphaGo — is a new way of computing the agent function at scale, not a new definition of AI.\n",{"path":6929,"title":6930,"module":5,"summary":6931},"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents","Intelligent Agents","An agent perceives an environment through sensors and acts on it through actuators; its behavior is an agent function mapping percept sequences to actions. A rational agent chooses, for each percept sequence, the action that maximizes its expected performance measure given its knowledge. We build the first half of the vocabulary the whole course rests on — the agent function, rationality, PEAS task specifications, and the six axes along which task environments vary.\n",{"path":6933,"title":6934,"module":5,"summary":6935},"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures","Agent Architectures","How to build a program that computes a good agent function without storing an astronomically large lookup table. Four skeleton architectures in order of increasing power — simple reflex, model-based, goal-based, and utility-based — plus the learning agent that improves any of them, the scale of world representations (atomic, factored, structured) they rest on, and how a modern language-model agent fits the same frame.\n",{"path":6937,"title":6938,"module":6939,"summary":6940},"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search","Uninformed Search","Search","A goal-based agent that cannot see which action is best turns the problem into a state space — an initial state, a set of actions, a transition model, a goal test, and a path cost — and searches for a sequence of actions reaching the goal. We build the state-space formulation on the 8-puzzle and route-finding, give the one TREE-SEARCH \u002F GRAPH-SEARCH skeleton every algorithm specializes, and measure strategies by completeness, optimality, and complexity. This lesson develops the first two frontier disciplines — breadth-first and uniform-cost search; the rest follow in the next lesson.\n",{"path":6942,"title":6943,"module":6939,"summary":6944},"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared","Search Strategies Compared","Breadth-first and uniform-cost search pay for optimality in memory. This lesson develops the strategies that trade memory for depth: depth-first search, which keeps only the current path; depth-limited and iterative-deepening search, which fix DFS's failure on infinite paths; and bidirectional search, which meets in the middle for a square-root saving. It closes by lining up all six uninformed strategies against completeness, optimality, and complexity, and tracing where the algorithms came from and where they went.\n",{"path":6946,"title":6947,"module":6939,"summary":6948},"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search","Informed Search and A*","An informed search uses a heuristic $h(n)$, an estimate of the cost from a node to the goal, to decide what to expand next. Greedy best-first search follows the heuristic blindly and gives up optimality; A* corrects it by ranking nodes on $f(n) = g(n) + h(n)$, and is optimal when the heuristic is admissible (tree search) or consistent (graph search). This lesson defines the heuristic, builds best-first search, and proves why A* is optimal, with the contour picture that explains its pruning. Where good heuristics come from is the next lesson.\n",{"path":6950,"title":6951,"module":6939,"summary":6952},"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions","Heuristic Functions and Memory-Bounded Search","A* is only as good as its heuristic, so this lesson answers where good heuristics come from: relaxed problems, whose exact solution cost is an admissible heuristic, and pattern databases, which precompute subproblem costs. It measures heuristic quality with dominance and the effective branching factor, then tackles A*'s memory problem with IDA*, RBFS, and SMA*. It closes with modern heuristic search — weighted A*, learned and disjoint pattern-database heuristics, and bidirectional A*.\n",{"path":6954,"title":6955,"module":6939,"summary":6956},"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search","Local Search and Optimization","When the path to a goal is irrelevant and only the final state matters, we can discard the search tree entirely and keep just the current state, moving to a better neighbor at each step. This lesson builds the state-space landscape metaphor, works through hill climbing and the three obstacles that defeat it (local maxima, ridges, plateaus), then develops the first escapes: random restarts and simulated annealing with its temperature schedule. The population-based methods and continuous-space calculus follow in the next lesson.\n",{"path":6958,"title":6959,"module":6939,"summary":6960},"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search","Population and Continuous Search","Single-state local search escapes a trap by restarting or tolerating downhill moves. This lesson develops the alternatives that keep several states at once — local beam search, which shares successors across parallel threads, and genetic algorithms, which recombine two parents through crossover and mutation — then crosses into continuous spaces, where calculus replaces the finite neighbor set: gradient ascent, line search, and Newton's method. It closes with the industrial descendants of these methods and the loop they all share.\n",{"path":6962,"title":6963,"module":6939,"summary":6964},"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search","Adversarial Search and Games","When another agent plans against you, search becomes a game. We formalize two-player, zero-sum, perfect-information games as search problems, define the minimax value that optimal play backs up through the game tree, and give the MINIMAX algorithm that computes it. Alpha–beta pruning then cuts the cost of that search roughly in half in the exponent without changing the answer, and a heuristic evaluation function plus a cutoff test turns the exact algorithm into a real-time player that copes with the horizon effect.\n",{"path":6966,"title":6967,"module":6939,"summary":6968},"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information","Games of Chance and Imperfect Information","Minimax and alpha–beta assume a deterministic game both players can see in full. Drop either assumption and search must change. This lesson adds chance nodes and the expectiminimax value for games with dice, then belief-state reasoning for partially observable games — Kriegspiel and card games — where averaging over clairvoyance both helps and misleads. It closes with the line from Deep Blue's alpha–beta to AlphaGo's learned evaluation and Monte Carlo tree search, and the provable-pruning and self-play research around each end of that story.\n",{"path":6970,"title":6971,"module":6939,"summary":6972},"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction","Constraint Satisfaction Problems","A constraint satisfaction problem replaces the black-box state with a factored one: variables, domains, and constraints. That structure supports inference before any search runs. This lesson defines the CSP on map coloring, Sudoku, and scheduling, then develops constraint propagation: node and arc consistency, the AC-3 algorithm that makes a whole network arc-consistent, and the way one deleted value cascades across the graph to prune impossible options ahead of search.\n",{"path":6974,"title":6975,"module":6939,"summary":6976},"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure","CSP Search and Structure","Propagation prunes a CSP but rarely finishes it, so we search. This lesson builds backtracking search over partial assignments and the general-purpose heuristics that make it fast — MRV, degree, least-constraining-value, forward checking, MAC, and intelligent backtracking. It then shows how the shape of the constraint graph controls difficulty: tree-structured problems fall in linear time, cutset conditioning handles the rest, and min-conflicts local search solves a million queens in a constant number of steps.\n",{"path":6978,"title":6979,"module":6939,"summary":6980},"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty","Search Under Uncertainty","Classical search assumes the agent knows the state it is in and exactly what each action does. Drop the second assumption and a plan can no longer be a fixed sequence of actions. This lesson develops the first response: AND-OR search over nondeterministic actions, which returns a branching contingency plan rather than a straight line. We build it on the erratic vacuum world, show how OR nodes (the agent's choices) alternate with AND nodes (nature's outcomes), trace the recursion that finds a plan, and handle the case where the only solution is a cyclic \"try, try again.\"\n",{"path":6982,"title":6983,"module":6939,"summary":6984},"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search","Belief-State and Online Search","When the agent cannot see the full state, a plan can no longer test where it actually is — it must reason over the set of states it might be in. This lesson develops belief-state search, from sensorless (conformant) planning that coerces an unknown world into a goal, through the predict-observe-update cycle of contingent planning with percepts, to online search in unknown environments, where the agent must act in order to learn. It closes with LRTA*, which refines its own heuristic as it explores, one step from reinforcement learning.\n",{"path":6986,"title":6987,"module":6988,"summary":6989},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic","Logical Agents and Propositional Logic","Logic and Planning","A knowledge-based agent keeps a store of sentences and acts by asking it what to do. To make \"asking\" mean something we need entailment — the relation $KB \\models \\alpha$ that holds when every model of the knowledge base is a model of the query. Propositional logic gives a syntax and a truth-table semantics for which entailment is decidable. This first part builds the foundations: the agent loop, the Wumpus World, models and entailment, the connectives and truth tables, theorem proving by refutation, and the resolution rule with its CNF conversion — a single complete inference procedure for all of propositional logic.\n",{"path":6991,"title":6992,"module":6988,"summary":6993},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference","Propositional Inference and Logical Agents","Model checking and resolution decide entailment, but both can blow up. This part turns propositional logic into a practical engine and a working agent. Horn clauses give linear-time forward and backward chaining — the basis of logic programming. DPLL and WalkSAT make satisfiability testing fast in the common case. Then we make the agent situated: time-indexed fluents, the frame problem and its solution by successor-state axioms, a hybrid agent that deduces a safe map and plans a route through it, and SATPlan, which finds a plan by asking a SAT solver for a satisfying model.\n",{"path":6995,"title":6996,"module":6988,"summary":6997},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic","First-Order Logic","Propositional logic can only say that facts hold; it cannot talk about the objects a fact is about, or state a rule once and have it cover every object. First-order logic fixes this by committing to a world of objects, relations, and functions. This first part builds the language from the ground up: the ontology it commits to, the model that gives a sentence a truth value, the syntax of terms and sentences, the two quantifiers with their standard mistakes, and equality.\n",{"path":6999,"title":7000,"module":6988,"summary":7001},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use","First-Order Logic in Use","With the language of first-order logic in hand, this part is about using it well. Database semantics trades expressive power for the convenience of a single intended model; higher-order logic shows what first-order logic gives up for decidability. Then we put the language to work: the Tell\u002FAsk interface, the kinship domain axiomatized from scratch, and the seven-step knowledge-engineering process applied to a digital circuit.\n",{"path":7003,"title":7004,"module":6988,"summary":7005},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution","Inference in First-Order Logic","Propositional inference lifts to first-order logic once we can make terms match. Unification is that machinery: the algorithm that finds the substitution making two expressions identical, and the basis of generalized modus ponens. This first part builds the lifted inference rules and the two chaining algorithms they drive — forward chaining, the data-driven procedure behind production systems and Datalog, and backward chaining, the goal-driven procedure behind Prolog.\n",{"path":7007,"title":7008,"module":6988,"summary":7009},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution","First-Order Resolution","Chaining is complete only for Horn knowledge bases. General first-order sentences — with disjunctive conclusions and negations — need a single sound and complete rule: resolution. This part converts arbitrary sentences to CNF by skolemizing away the existentials, lifts the resolution rule with unification, and proves entailment by refuting the negated goal. The result is the proof procedure Gödel's completeness theorem guarantees will find any entailment, together with the search strategies that make it usable.\n",{"path":7011,"title":7012,"module":6988,"summary":7013},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning","Classical Planning","Classical planning represents a problem in a factored language, PDDL: states are sets of ground fluents, and actions are lifted schemas with a precondition and an effect. That structure turns planning into search — forward through states or backward through goals — and lets a program read heuristics straight off the schemas by relaxing the problem. This first part develops the representation, the two search directions, and the domain-independent heuristics that come from ignoring preconditions or delete lists.\n",{"path":7015,"title":7016,"module":6988,"summary":7017},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan","Planning Heuristics and GraphPlan","Every relaxation heuristic can be inaccurate, and none can tell how far apart subgoals sit. The planning graph is a polynomial-size structure that does better: leveled off the problem, it yields admissible distance estimates and a record of which actions and fluents cannot coexist. This part builds the graph, reads heuristics from it, extracts plans with GraphPlan, and closes with the other classical approaches — SATPlan and partial-order planning — and the representational trade that makes all of it work.\n",{"path":7019,"title":7020,"module":6988,"summary":7021},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world","Planning and Acting in the Real World","Classical planning's clean theory rests on four assumptions: time is ignored, actions are atomic, the world is deterministic and fully observable, and the agent is alone. This first part drops the first two. We add durations and resource constraints — turning a plan into a schedule, solved by the critical-path method and, once resources contend, by NP-hard job-shop scheduling — and let a planner reason at multiple levels of abstraction through high-level actions and their angelic reachable sets.\n",{"path":7023,"title":7024,"module":6988,"summary":7025},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty","Planning Under Uncertainty","Classical planning assumed the world was deterministic, fully observable, and the agent alone. This part drops the last two assumptions. When the agent cannot see or predict the world, planning moves into belief-state space: sensorless plans that coerce the world into the goal without sensing, contingent plans that branch on what is sensed, and online agents that monitor and replan when execution diverges. Then we add other agents — joint plans, the coordination problem, and the conventions that let a team act without constant negotiation.\n",{"path":7027,"title":7028,"module":6988,"summary":7029},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation","Knowledge Representation","First-order logic gives you the language; this lesson is about what to say in it. This first part builds the content: a general upper ontology from the top down, categories as first-class objects with taxonomies and inheritance, physical composition and the count-noun\u002Fmass-noun split, events and time reified through the event calculus, and belief modeled with modal logic — the machinery for representing the world an agent reasons about.\n",{"path":7031,"title":7032,"module":6988,"summary":7033},"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults","Reasoning Systems and Default Logic","Having represented the world, this part is about reasoning with it at scale. Semantic networks give a graphical notation with fast inheritance; description logics keep subsumption and classification tractable by design. Then we confront the fact that most useful rules hold only by default: circumscription and default logic give a logical account of nonmonotonic reasoning, and truth maintenance systems retract conclusions cleanly when the beliefs beneath them change.\n",{"path":7035,"title":7036,"module":7037,"summary":7038},"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes","Quantifying Uncertainty","Uncertainty","Logic breaks down in any domain where the rules have exceptions you cannot enumerate — the qualification problem. Probability replaces truth values with degrees of belief that obey Kolmogorov's axioms, and the full joint distribution becomes a knowledge base from which any query is answered by summing entries: marginalization, conditioning, and normalization. Independence factors that joint into smaller pieces — the first step toward a calculus of rational belief that an agent can actually compute with.\n",{"path":7040,"title":7041,"module":7037,"summary":7042},"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes","Bayes' Rule and Naive Bayes","Bayes' rule inverts a causal model into a diagnostic one, turning \"how a cause produces its symptoms\" into \"which cause explains what I observed.\" Ignoring the prior is the base-rate fallacy behind overconfident test results. Conditional independence then lets several pieces of evidence combine by multiplying likelihood ratios instead of building an exponential joint, giving the naive Bayes model and pointing directly at Bayesian networks.\n",{"path":7044,"title":7045,"module":7037,"summary":7046},"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks","Bayesian Networks","A Bayesian network is a directed acyclic graph of random variables in which each node carries a conditional probability table for itself given its parents. That structure factors the full joint distribution into a product of local terms, turning an exponential table into a linear one, and it makes the conditional independences of the domain explicit. We build the canonical burglary–alarm network, read compactness and d-separation off the graph, run exact inference by variable elimination, and, where that is intractable, estimate answers by sampling.\n",{"path":7048,"title":7049,"module":7037,"summary":7050},"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks","Bayesian Networks: Inference and Relational Models","When exact inference is intractable, sampling estimates the posterior instead: prior and rejection sampling, likelihood weighting, and Gibbs\u002FMCMC, whose error shrinks as one over the square root of the sample count. The same graphical idea then lifts from a fixed set of variables to whole populations — relational and open-universe probability models write dependencies once and unroll them over objects — and we close by placing probability against the rule-based, Dempster–Shafer, and fuzzy alternatives it displaced.\n",{"path":7052,"title":7053,"module":7037,"summary":7054},"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time","Probabilistic Reasoning over Time","A world that changes needs a state variable at every point in time. The Markov assumption cuts the dependence on history down to the previous slice, leaving a transition model and a sensor model that define a temporal Bayesian network. Four recursive tasks fall out — filtering, prediction, smoothing, and the most likely explanation — each a message passed along the sequence. We ground them in hidden Markov models and their matrix form, sketch the Kalman filter for continuous state, and reach dynamic Bayesian networks with particle filtering as the general approximate method.\n",{"path":7056,"title":7057,"module":7037,"summary":7058},"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association","Reasoning over Time: Tracking and Data Association","Dynamic Bayesian networks generalize HMMs and Kalman filters to arbitrarily many state variables per slice, and when exact inference blows up, particle filtering approximates the belief state with a population of weighted samples that propagate, reweight, and resample. Tracking several objects at once adds the data-association problem — which observation came from which object — whose combinatorics defeat any exact filter, so particle filters and MCMC keep many hypotheses alive. We close with SLAM and learned state-space models.\n",{"path":7060,"title":7061,"module":7037,"summary":7062},"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions","Making Decisions: Utility Theory","A rational agent chooses the action that maximizes expected utility — the probability of each outcome weighted by how much the agent wants it. We derive the utility function from six axioms on preferences, so maximizing expected utility is forced by consistency rather than assumed; look at risk aversion in the utility-of-money curve; package one-shot choices into decision networks; and quantify what an observation is worth with the value of information.\n",{"path":7064,"title":6653,"module":7037,"summary":7065},"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes","When an agent must act repeatedly in a stochastic world, a fixed plan is useless — it needs a policy, an action for every state. The Markov decision process makes this precise with a transition model, a reward, and a discount factor; the Bellman equation characterizes the optimal state utilities, and value iteration and policy iteration solve it. Partial observability lifts the problem to belief states, and bandits, Monte-Carlo tree search, and scalable POMDP solvers extend it — this is the model-known half of reinforcement learning.\n",{"path":7067,"title":7068,"module":7037,"summary":7069},"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory","Decision Analysis: Multi-Attribute Utility and Decision Networks","Decision analysis takes the single-agent utility framework and makes it practical: utility over several attributes, dominance and additive value functions, influence diagrams that fold Bayesian networks together with decision and utility nodes, and the value of information that tells an agent which questions are worth asking. Structure in an agent's preferences — dominance, preferential and utility independence — collapses an exponential utility table into a few one-dimensional functions, the same move that made Bayesian networks compact.\n",{"path":7071,"title":7072,"module":7037,"summary":7073},"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design","Game Theory and Mechanism Design","When outcomes depend on other rational agents, single-agent utility maximization no longer suffices. Game theory studies decisions among agents — normal-form games, dominant strategies, Nash and maximin equilibria, and repeated games — and mechanism design runs the logic backwards, engineering rules (auctions, VCG) so that self-interested play produces a good collective outcome. Algorithmic game theory then asks whether equilibria can be computed, what selfishness costs society, and how the mechanisms deployed at internet scale actually behave.\n",{"path":7075,"title":7076,"module":7077,"summary":7078},"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples","Learning from Examples","Learning","An agent that improves with experience does not need its designer to anticipate every situation. Inductive learning takes that ambition and narrows it to one tractable problem: from labelled input-output pairs, recover a function that predicts the output for inputs never seen. This first part builds the foundation around a single organizing question — generalization — through decision trees and information gain, and the training\u002Fvalidation\u002Ftest discipline for evaluating and choosing hypotheses. A second part takes up the theory of learning and the main model families.\n",{"path":7080,"title":7081,"module":7077,"summary":7082},"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families","The Theory of Learning and Model Families","Cross-validation measures generalization but does not explain it. This part supplies the theory — PAC learning, sample complexity, and the VC dimension — that says when a hypothesis consistent with enough data is probably approximately correct, and why an unrestricted hypothesis space can never generalize. It then surveys the model families a practitioner reaches for: linear regression and gradient descent, the perceptron and logistic regression, support vector machines and the kernel trick, and ensembles by bagging and boosting — closing with what deep learning changed about the classical picture.\n",{"path":7084,"title":7085,"module":7077,"summary":7086},"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning","Learning Probabilistic Models","A [Bayesian network](\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks) is useless until its numbers are filled in, and those numbers come from data. This first part casts learning itself as probabilistic inference: hypotheses carry a prior, data update it to a posterior, and predictions average over what remains. From that frame fall the standard estimators — maximum likelihood by counting, MAP with a conjugate prior, full Bayesian updating — for the case where every variable is observed. A second part takes up the harder case of hidden variables and the EM algorithm.\n",{"path":7088,"title":7089,"module":7077,"summary":7090},"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization","Learning with Hidden Variables: The EM Algorithm","Complete data can be learned by counting; real data usually hide some variables — the disease behind the symptoms, the cluster behind the points. This part develops the expectation-maximization algorithm, which learns those models by alternating an expected completion of the missing data with a re-estimation of the parameters. It works the idea through mixtures of Gaussians, Bayesian networks, and hidden Markov models, proves the monotone-likelihood guarantee from the evidence lower bound, and traces the line from EM to variational inference and the variational autoencoder.\n",{"path":7092,"title":6075,"module":7077,"summary":7093},"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning","Reinforcement learning is an MDP with the model unknown: the agent knows neither how its actions move the world nor which states are rewarded, and must recover good behaviour from experienced transitions and rewards alone. This first part builds the classical tabular theory — passive learning (fix a policy, learn its value, by direct estimation, adaptive dynamic programming, and temporal differences) and active learning (choose actions, trade exploration against exploitation, and learn control with Q-learning and SARSA). A second part lifts it off the lookup table with function approximation and policy search.\n",{"path":7095,"title":7096,"module":7077,"summary":7097},"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search","Reinforcement Learning: Generalization and Policy Search","Tabular reinforcement learning stores one number per state, which is hopeless for backgammon or chess. This part lifts RL off the lookup table with function approximation, so that updating one state generalizes to related ones, then turns to policy search — representing and optimizing the policy directly, up to the REINFORCE policy gradient and correlated sampling. It closes with the bridge to deep reinforcement learning (deep Q-networks, actor-critic, PPO), the classic applications, and the hand-off to the dedicated RL subject.\n",{"path":7099,"title":7100,"module":7077,"summary":7101},"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning","Knowledge in Learning","Pure induction learns a function from labelled examples while knowing almost nothing to begin with. This first part brings prior knowledge into the loop by recasting learning as logical inference — hypotheses, examples, and classifications as sentences. It develops current-best-hypothesis search, the version space and its general\u002Fspecific boundary maintained by candidate elimination, and states the three entailment constraints that fix how background knowledge enters. A second part builds the three knowledge-based methods those constraints define.\n",{"path":7103,"title":7104,"module":7077,"summary":7105},"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods","Knowledge-Based Learning: EBL, Relevance, and ILP","Once learning is cast as logical inference, three methods follow from the three ways prior knowledge can enter. Explanation-based learning generalizes a single example by explaining it with the domain theory, gaining speed but nothing new. Relevance-based learning uses determinations to shrink the hypothesis space and converge from fewer examples. Inductive logic programming learns genuinely new first-order rules — top-down with FOIL, bottom-up by inverting resolution, even inventing new predicates — and connects to modern statistical relational and neuro-symbolic learning.\n",{"path":7107,"title":7108,"module":7109,"summary":7110},"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception","Vision and Perception","Frontiers","Perception connects an agent to the physical world. We follow one modality — vision — from the physics of image formation (the pinhole camera, perspective projection, lenses, shading, color) through the early operations that turn a pixel array into edges, texture, and motion, and into recognition by appearance. The recurring problem is inversion: a camera collapses a 3-D world onto a 2-D grid, and an agent that wants to act must build the scene back up. Rebuilding the scene is the subject of the companion lesson.\n",{"path":7112,"title":7113,"module":7109,"summary":7114},"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world","Vision: Reconstructing the 3D World","A camera collapses a three-dimensional world onto a flat grid; this lesson inverts that collapse. We build the camera projection matrix (intrinsics and extrinsics), triangulate a point from two views, then work through the toolbox of depth cues — motion parallax, binocular stereopsis, multiple views, texture, shading, and contour — that turn an ambiguous image back into a scene. We add structural recognition (pictorial-structure \"cardboard people\"), the task-driven use of vision in cars and robots, and the shift from hand-built pipelines to learned deep-vision networks.\n",{"path":7116,"title":7117,"module":7109,"summary":7118},"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics","Robotics","A robot is an agent with a body: sensors that read the physical world and effectors that push back on it. This lesson grounds the abstract AI machinery in that body. We build up the hardware (range finders, proprioception, degrees of freedom), then cast perception as probabilistic filtering — the kinematic motion and sensor models, Monte Carlo localization, the extended Kalman filter, and simultaneous localization and mapping (SLAM). The companion lesson takes the estimated pose forward into planning and control.\n",{"path":7120,"title":7121,"module":7109,"summary":7122},"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control","Robotics: Planning and Control","A robot that knows where it is still has to decide how to move, and then make a slipping, sensing-imperfect body actually go there. This lesson takes the pose estimate forward: planning motion in configuration space with cell decomposition and sampling-based roadmaps (PRMs and RRTs), planning under uncertainty with most-likely-state and online replanning, closing the loop with P\u002FPD\u002FPID control and potential fields, and finally the software architectures — subsumption, three-layer, and pipeline — that assemble it all, plus the learning-based turn in modern robotics.\n",{"path":7124,"title":7125,"module":7109,"summary":7126},"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai","Natural Language for AI Agents","Language is how agents acquire the knowledge already written down and how they communicate with the humans they serve. This lesson gives the classical AI account of language as a source of information: n-gram language models and the information-seeking tasks built on them — text classification, information retrieval (BM25, the inverted index, PageRank), and information extraction with finite-state templates and hidden Markov models. Throughout, we point to the dedicated NLP subject for the modern deep-learning treatment; the companion lesson takes up grammar, translation, and speech.\n",{"path":7128,"title":7129,"module":7109,"summary":7130},"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech","Language for AI Agents: Grammar, Translation, and Speech","N-gram models see only a local window; they cannot say why \"black dog\" is well-formed English and \"dog black\" is not, because that is a fact about structure. This lesson takes up structure: phrase-structure and probabilistic context-free grammars, syntactic analysis by chart parsing and CYK, augmented grammars and compositional semantics, then the two major statistical successes — machine translation and speech recognition — cast as noisy-channel problems. It closes with the bridge from n-grams to transformers and where the classical account sits relative to modern NLP.\n",{"path":7132,"title":7133,"module":7109,"summary":7134},"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future","Philosophy, Ethics, and the Future of AI","Two questions have shadowed the field since its founding: can machines act intelligently (weak AI), and can they really think (strong AI)? We work through Turing's objections and their rebuttals — the arguments from disability, mathematics, and informality — then the strong-AI debate: the mind-body problem, functionalism and the brain prosthesis, Searle's Chinese Room and the systems reply, and consciousness and qualia. The companion lesson turns from what AI can do to what it should, and closes the course.\n",{"path":7136,"title":7137,"module":7109,"summary":7138},"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future","The Ethics and Future of AI","Having asked whether machines can act intelligently and really think, we turn to whether we should build them at all. This lesson works through the six ethical risks — lost jobs, autonomous weapons, surveillance and privacy, biased decisions, the safety of superintelligence, and the erosion of accountability — then the value-alignment problem in the LLM era, and where the classical agent components could go next. It closes the course by tying search, logic, probability, and learning into a single picture of intelligence as rational agency.\n",{"path":7140,"title":7141,"module":306,"summary":306},"\u002Fartificial-intelligence","Artificial Intelligence",{"path":7143,"title":7144,"module":7145,"summary":7146},"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart","Nuclear Composition and Ground-State Properties","Nuclear Properties","The nucleus is a bound assembly of Z protons and N neutrons packed to a radius R = R0 A^(1\u002F3) at a nearly constant density of about 10^17 kg\u002Fm^3. We fix the vocabulary of nuclides, derive nuclear size from mirror-nuclide and electron-scattering data, read the binding-energy-per-nucleon curve, and model it with the liquid-drop semiempirical mass formula.\n",{"path":7148,"title":7149,"module":7145,"summary":7150},"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions","Nuclear Size, Shape, and Charge Distributions","Elastic electron scattering resolves the nucleus by its de Broglie wavelength. The measured cross section is the Mott point-charge cross section modulated by a form factor, and that form factor is the Fourier transform of the charge density. Diffraction minima fix the radius, the small-angle slope fixes the mean-square radius, and the fitted Woods-Saxon profile gives a central density and a skin thickness. Mirror-nucleus Coulomb energies, muonic-atom X-rays, and optical isotope shifts give independent radii that all track R = R0 A^(1\u002F3).\n",{"path":7152,"title":7153,"module":7145,"summary":7154},"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy","Nuclear Masses, Mass Excess, and Separation Energies","The atomic mass unit fixes the scale, and the mass excess collects the small binding-driven deviation from the integer mass number. Penning-trap cyclotron frequencies now measure masses to parts in a billion, and every decay and reaction Q-value is a difference of these masses. One- and two-nucleon separation energies read the binding difference between neighbouring nuclides directly, showing the even-odd pairing stagger and the sharp drops at magic numbers, and their vanishing marks the neutron and proton drip lines that bound the chart of the nuclides.\n",{"path":7156,"title":7157,"module":7145,"summary":7158},"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula","The Semi-Empirical Mass Formula and the Valley of Stability","Five physical terms reproduce nuclear binding across the chart: a volume term from saturation, a surface term from the deficit of edge neighbours, a Coulomb term from the electrostatic self-energy of a charged sphere, an asymmetry term from the Pauli cost of unequal proton and neutron filling, and a pairing term. The formula is quadratic in Z at fixed A, so isobars lie on a mass parabola whose minimum sets the most stable charge and whose slope dictates the direction of beta decay. The same competition between surface and Coulomb energy defines the fissility parameter and the onset of fission.\n",{"path":7160,"title":7161,"module":7145,"summary":7162},"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles","Nuclear Spin, Magnetic Dipole, and Electric Quadrupole Moments","The ground state of a nucleus carries a definite spin and parity, a magnetic dipole moment of order the nuclear magneton, and, when its spin exceeds one-half, an electric quadrupole moment that measures its shape. The single-particle Schmidt lines predict the magnetic moment of an odd-A nucleus from the last unpaired nucleon, and the measured moments fall between them. The quadrupole moment distinguishes prolate from oblate deformation, and hyperfine structure is the experimental handle that fixes the spin and the moments from an atomic spectrum.\n",{"path":7164,"title":7165,"module":7166,"summary":7167},"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview","The Nuclear Force and the Shell Model","The Nuclear Force","The strong force between nucleons is short-range, charge-independent, saturated, and repulsive at its core, about a hundred times stronger than Coulomb. Yukawa explained it as an exchange of massive mesons, tying the force's range to the meson mass through the uncertainty principle. Layered on top, an independent-particle shell model with strong spin-orbit coupling reproduces the magic numbers 2, 8, 20, 28, 50, 82, 126.\n",{"path":7169,"title":7170,"module":7166,"summary":7171},"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron","The Deuteron and the Tensor Force","The deuteron is the only bound two-nucleon state: one shallow level at 2.22 MeV, no excited states. A square-well fit fixes a depth near 35 MeV over a 2 fm range, yet the wavefunction leaks so far past the edge that most of the probability lies outside the force. Its spin-1 ground state, magnetic moment close to the sum of the free-nucleon moments, and small but nonzero electric quadrupole moment together force a D-state admixture and a non-central tensor force.\n",{"path":7173,"title":7174,"module":7166,"summary":7175},"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering","Nucleon-Nucleon Scattering and the Interaction's Structure","Scattering probes the nuclear force above threshold. Partial-wave analysis reduces low-energy data to a single s-wave phase shift, and the effective-range expansion packages that into a scattering length and an effective range. The triplet channel binds (the deuteron) while the singlet is only virtual, which together explain the anomalously large free neutron-proton cross section. Comparing pp, nn, and np results establishes charge symmetry and charge independence, and polarization experiments expose the spin-orbit and tensor pieces.\n",{"path":7177,"title":7178,"module":7166,"summary":7179},"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin","Meson Exchange, the Yukawa Potential, and Isospin","Yukawa's massive-field propagator turns the range of the nuclear force into a meson mass: the exchanged quantum's Compton wavelength is the range. One-pion exchange fixes the long-range tail, complete with the tensor structure the deuteron demanded, while heavier mesons build the intermediate attraction and the repulsive core. Charge independence becomes an isospin symmetry, the force is diagonalized by the total isospin through a tau-dot-tau interaction, and the whole picture sits inside QCD as a residual color force between color-neutral nucleons.\n",{"path":7181,"title":7182,"module":7183,"summary":7184},"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model","The Fermi Gas Model","Nuclear Models","Treating the nucleus as two degenerate Fermi gases of protons and neutrons confined in a common well fixes the Fermi momentum near 250 MeV\u002Fc and the Fermi energy near 33 MeV from the nuclear density alone. The average kinetic energy per nucleon is about 20 MeV, the well depth is the Fermi energy plus the separation energy, and unequal proton and neutron Fermi levels reproduce the asymmetry term of the mass formula.\n",{"path":7186,"title":7187,"module":7183,"summary":7188},"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates","The Liquid-Drop Model and Collective Deformation","Deforming a charged liquid drop into a spheroid raises its surface energy and lowers its Coulomb energy; the two effects compete through the deformation parameter to set a stability minimum and a fission barrier. The ratio of Coulomb to twice the surface energy is the fissility Z-squared over A, which crosses one near 49 and marks the point where the sphere is unstable. The same surface tension that restores small deformations quantizes into collective vibrations, carrying the static mass formula into dynamic collective motion.\n",{"path":7190,"title":7191,"module":7183,"summary":7192},"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle","The Shell Model: Single-Particle States and Spin-Orbit Coupling","A harmonic-oscillator well reproduces the first three magic numbers but fails above twenty; adding a strong inverted spin-orbit term that drives the stretched j equals l plus one-half level down closes the gaps at 28, 50, 82, and 126. The filled shells couple to zero, so the last unpaired nucleon fixes the ground-state spin and parity, and its single-particle magnetic moment falls on the Schmidt lines. Configuration mixing sets the limits of the extreme single-particle model.\n",{"path":7194,"title":7195,"module":7183,"summary":7196},"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations","The Collective Model: Rotations, Vibrations, and Deformed Nuclei","Deformed nuclei rotate with energies proportional to I times I plus one, giving the ground-state band its characteristic level ratios, while near-spherical nuclei vibrate in quantized surface phonons that build one- and two-phonon multiplets. The Nilsson model tracks single-particle levels as the well deforms, moments of inertia fall between the rigid and irrotational limits, backbending marks the sudden alignment of a broken pair, and giant resonances are the bulk dipole and quadrupole modes of the whole nucleus.\n",{"path":7198,"title":7199,"module":7200,"summary":7201},"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes","Radioactivity and Decay Modes","Radioactive Decay","Unstable nuclei decay at a rate proportional to how many remain, giving the exponential law N(t) = N0 e^(-lambda t) with half-life t = 0.693\u002Flambda. We work through the three common modes: alpha decay as Coulomb-barrier tunneling with the Geiger-Nuttall rule, beta decay whose continuous spectrum demands the neutrino, and gamma de-excitation, and follow a decay chain across the chart of nuclides.\n",{"path":7203,"title":7204,"module":7200,"summary":7205},"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium","Serial Decay, the Bateman Equations, and Radioactive Equilibrium","A radioactive parent that decays into a radioactive daughter obeys a coupled pair of rate equations whose solution is the Bateman formula. Depending on the half-life ordering the chain settles into secular equilibrium (equal activities), transient equilibrium (a fixed activity ratio), or no equilibrium. Constant production under irradiation drives the activity toward a saturation value equal to the production rate, competing decay modes split the total decay constant into partial constants, and the natural decay series in secular equilibrium underpin radiometric dating.\n",{"path":7207,"title":7208,"module":7209,"summary":7210},"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory","Alpha Decay and the Gamow Theory of Tunneling","Alpha Decay","The alpha Q-value turns positive above mass number 150 because the emitted helium-4 is exceptionally tightly bound. Emission proceeds by quantum tunneling through the Coulomb barrier: a WKB integral from the nuclear surface to the outer turning point gives the Gamow factor, and multiplying its penetrability by the assault frequency yields half-lives spanning more than twenty orders of magnitude. The leading term reproduces the Geiger-Nuttall relation, log t½ proportional to the daughter charge over the square root of Q.\n",{"path":7212,"title":7213,"module":7209,"summary":7214},"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance","Fine Structure, Angular Momentum, and Hindrance Factors","A single parent emits several alpha groups of slightly different energy, each feeding a distinct level of the daughter, so the alpha spectrum maps the daughter's low-lying states. Emission with orbital angular momentum L raises the barrier by a centrifugal term and is allowed only when angular-momentum and parity selection rules permit. Comparing the measured partial half-life to the Gamow estimate defines a hindrance factor near unity for even-even ground-state transitions and large for odd-A decays that must rearrange the unpaired nucleon.\n",{"path":7216,"title":7217,"module":7218,"summary":7219},"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino","Beta Decay Energetics and the Neutrino","Beta Decay and the Weak Interaction","Beta decay converts a neutron into a proton or the reverse, adjusting Z at fixed A along an isobaric mass parabola. We write the three processes (beta-minus, beta-plus, electron capture), reduce every Q-value to a difference of neutral atomic masses, and read the continuous electron spectrum as the fingerprint of a third, nearly massless particle. Pauli's neutrino, its detection by Reines and Cowan, and the endpoint bound on its mass close the lesson.\n",{"path":7221,"title":7222,"module":7218,"summary":7223},"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay","Fermi's Theory: Kurie Plots and ft Values","Fermi treated beta decay as a point-contact weak transition and read its rate from the golden rule. The electron spectrum then follows from phase space and the Coulomb Fermi function; the Kurie plot straightens it to a line whose intercept is the endpoint. Integrating the spectrum gives the comparative half-life ft, whose logarithm sorts transitions into superallowed, allowed, and forbidden classes governed by the Fermi and Gamow-Teller selection rules.\n",{"path":7225,"title":7226,"module":7218,"summary":7227},"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation","The Weak Interaction and Parity Violation","Beta decay violates mirror symmetry. The Wu experiment on polarized cobalt-60 showed electrons emitted preferentially against the nuclear spin, a pseudoscalar correlation forbidden if parity were conserved. The result fixes the weak charged current as left-handed V minus A, forces neutrinos to be left-handed and antineutrinos right-handed (measured by Goldhaber), and places beta decay within the electroweak theory as W-boson exchange turning a down quark into an up quark.\n",{"path":7229,"title":7230,"module":7218,"summary":7231},"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass","Double Beta Decay and Neutrino Mass","For even-A isobars the pairing term splits the mass parabola into two curves, and a handful of even-even nuclides sit below their odd-odd neighbor yet above the next even-even one: single beta decay is forbidden but second-order double beta decay is allowed. The two-neutrino mode is a standard-model process with the longest measured lifetimes in nature; the neutrinoless mode would require the neutrino to be its own antiparticle and its rate measures the effective Majorana mass, the sharpest probe of the absolute neutrino mass scale.\n",{"path":7233,"title":7234,"module":7235,"summary":7236},"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation","Multipole Radiation and Selection Rules","Gamma Decay","Gamma decay carries a nucleus from an excited state to a lower one by emitting a photon of definite angular momentum and parity. We correct the photon energy for nuclear recoil, expand the radiation field into electric and magnetic multipoles, and read off how the transition rate collapses with each increase in multipole order. The Weisskopf single-particle estimates set the scale, and angular-momentum and parity conservation fix which multipole dominates.\n",{"path":7238,"title":7239,"module":7235,"summary":7240},"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers","Internal Conversion and Isomers","A nucleus can shed excitation energy without emitting a photon by handing it directly to an atomic electron. We define the internal-conversion coefficient, trace its growth with atomic number, multipole order, and decreasing energy, and treat the electron-only E0 transitions and internal pair formation. When the lowest allowed multipole is high and the energy low, the gamma rate falls so far that the excited state survives as a metastable isomer.\n",{"path":7242,"title":7243,"module":7235,"summary":7244},"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer","Angular Correlations and the Mössbauer Effect","Two gammas emitted in cascade are not independent in direction: detecting the first selects magnetic substates of the intermediate level and makes the second anisotropic, so the correlation function fixes the intermediate spin. The same nuclear resonance that recoil normally destroys is recovered when the emitter is locked in a lattice, giving the Mössbauer effect and its part-in-a-trillion resolution of isomer shifts and hyperfine fields.\n",{"path":7246,"title":7247,"module":7248,"summary":7249},"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections","Nuclear Reactions, Fission, and Fusion","Nuclear Reactions","A nuclear reaction X(x, y)Y is governed by its Q value and its cross section, the effective target area for a given process. Splitting the curve of binding energy near iron in either direction releases energy: fission of heavy nuclei by neutron capture and a chain reaction, and fusion of light nuclei that powers the Sun and needs Lawson's density-confinement criterion to be practical.\n",{"path":7251,"title":7252,"module":7248,"summary":7253},"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances","The Compound Nucleus and Resonance Reactions","Low-energy reactions proceed through a long-lived intermediate state whose decay forgets how it formed. Bohr's independence hypothesis factorizes the cross section into a formation step and a branching ratio, an isolated level gives the single-level Breit-Wigner line shape with total width Γ tied to the lifetime by Γτ = ħ, and at high excitation overlapping levels merge into a statistical continuum described by evaporation spectra and the Hauser-Feshbach average.\n",{"path":7255,"title":7256,"module":7248,"summary":7257},"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model","Direct Reactions and the Optical Model","A complex optical potential replaces the many-body target by a single particle moving in an average field whose imaginary part removes flux into non-elastic channels, reproducing the diffraction pattern of elastic scattering. Direct reactions bypass the compound nucleus, transferring a nucleon in one step: stripping and pickup deposit or remove a single nucleon, the angle of the first peak in the distorted-wave angular distribution fixes the transferred orbital angular momentum, and its magnitude gives the spectroscopic factor.\n",{"path":7259,"title":7260,"module":7261,"summary":7262},"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics","The Fission Barrier and Fragment Energetics","Nuclear Fission","Fission is the large-amplitude collective deformation of a heavy nucleus into two fragments. The liquid-drop model sets a barrier from the competition between rising surface energy and falling Coulomb energy under quadrupole deformation, with the fissility parameter Z²\u002FA measuring how close a nucleus is to instability. Bohr-Wheeler theory separates spontaneous from neutron-induced fission, the fragment mass yield is double-humped and asymmetric, about 200 MeV is released per event, and shell corrections add a second minimum that produces fission isomers.\n",{"path":7264,"title":7265,"module":7261,"summary":7266},"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics","Chain Reactions and Reactor Physics","A self-sustaining chain reaction is a fixed point of neutron bookkeeping: the multiplication factor k counts the neutrons in one generation per neutron in the last, and criticality is k = 1. The four-factor formula tracks a neutron through fast fission, resonance escape, thermal utilization, and reproduction; moderation slows fission neutrons to the thermal energies where the fission cross section is largest; and the small delayed-neutron fraction sets the timescale that makes a reactor controllable. Breeding converts fertile U-238 and Th-232 into new fissile fuel.\n",{"path":7268,"title":7269,"module":7270,"summary":7271},"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement","Fusion Reactions and Confinement","Fusion and Nucleosynthesis","Light nuclei release energy when they fuse because binding per nucleon rises steeply toward the iron peak, but the Coulomb barrier suppresses the rate at reactor temperatures. The thermonuclear rate is a convolution of the Maxwell distribution with the tunneling probability, sharply peaked at the Gamow energy. The deuterium-tritium reaction has the lowest barrier and largest cross section; sustained energy gain requires the Lawson triple product of density, temperature, and confinement time, reached by magnetic or inertial confinement.\n",{"path":7273,"title":7274,"module":7270,"summary":7275},"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis","Stellar Nucleosynthesis","Main-sequence stars burn hydrogen to helium through the proton-proton chain and the CNO cycle, both releasing 26.7 MeV per helium nucleus. Helium burning bridges the mass-5 and mass-8 gaps by the triple-alpha process through the Beryllium-8 and Hoyle resonances, and successive carbon-to-silicon burning stages climb to the iron peak, where fusion stops. The elements beyond iron are built by slow and rapid neutron capture, and the solar neutrino flux confirms the reactions directly.\n",{"path":7277,"title":7278,"module":7270,"summary":7279},"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis","Big-Bang Nucleosynthesis","In the first three minutes the expanding universe forged the light elements. The weak interaction froze the neutron-to-proton ratio near one in six when the reaction rate fell below the expansion rate, and free-neutron decay lowered it to about one in seven before the deuterium bottleneck broke. Almost every surviving neutron ended in helium-4, fixing the primordial helium mass fraction near 0.25, with trace deuterium, helium-3, and lithium-7. The deuterium abundance measures the cosmic baryon density.\n",{"path":7281,"title":7282,"module":7283,"summary":7284},"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power","Stopping Power and the Range of Charged Particles","Radiation and Applications","A heavy charged particle loses energy in a dense sequence of small Coulomb collisions with atomic electrons, at a rate the Bethe-Bloch formula fixes from the particle's charge and speed and the medium's electron density and mean excitation energy. The rate scales as the inverse square of the speed, so most energy is deposited at the end of the track in the Bragg peak, and integrating the reciprocal rate gives a sharp range. Electrons differ: they also radiate, and above a critical energy bremsstrahlung dominates. Fast particles above the phase velocity of light in the medium emit Cherenkov radiation.\n",{"path":7286,"title":7287,"module":7283,"summary":7288},"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions","Interactions of Photons and Neutrons","Photons are removed from a beam in single events, so their intensity falls exponentially with a linear attenuation coefficient built from three processes: the photoelectric effect at low energy, Compton scattering at intermediate energy, and pair production above twice the electron rest energy, each with its own atomic-number and energy dependence. Neutrons carry no charge and interact only with nuclei, moderating by elastic scattering and being captured with a cross section that rises as one over speed away from resonances.\n",{"path":7290,"title":7291,"module":7283,"summary":7292},"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors","Radiation Detectors and Nuclear Spectroscopy","Every detector converts the energy a radiation deposits into a measurable electrical signal. Gas counters read the ionization directly, in three operating regions set by the applied voltage; scintillators convert the energy to light read out by a photomultiplier; semiconductor detectors collect electron-hole pairs and give the best energy resolution because so many carriers are made per event. The resolution is governed by the number of independent charge carriers, and the pulse-height spectrum of a gamma line shows a full-energy photopeak, a Compton continuum with its edge, and escape peaks.\n",{"path":7294,"title":7295,"module":7283,"summary":7296},"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology","Dosimetry, Radiation Biology, and Protection","Absorbed dose is the energy deposited per unit mass, measured in gray. Equal absorbed doses do unequal biological damage because densely ionizing radiation deposits its energy along short tracks: weighting the dose by a radiation factor gives the equivalent dose, and weighting by tissue sensitivity gives the effective dose, both in sieverts. Deterministic effects have a threshold and a severity that grows with dose; stochastic effects are assumed to follow a linear-no-threshold probability. Natural background dominates the dose to the population, and protection rests on time, distance, and shielding.\n",{"path":7298,"title":7299,"module":7283,"summary":7300},"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine","Applications — Dating, Analysis, and Nuclear Medicine","Charged particles lose energy continuously and stop at a well-defined range with a Bragg peak, while gamma rays are attenuated exponentially. These interactions define radiation detectors and dosimetry (gray and sievert) and drive the applications: neutron activation analysis, magnetic resonance imaging, PET, and radiometric dating with carbon-14 and long-lived rock clocks.\n",{"path":7302,"title":7303,"module":306,"summary":306},"\u002Fnuclear-physics","Nuclear Physics",{"path":7305,"title":7306,"module":5,"summary":7307},"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp","What Is Natural Language Processing?","Natural language processing is the computational treatment of human language: reading it, representing it, and generating it. We set up why the problem is hard — ambiguity at every level, from sound to intent — trace the field from ELIZA's pattern-matching through statistical methods to today's neural models, lay out the linguistic levels and task families the course covers, and fix the vocabulary of tokens, types, and corpora the rest of the notes rely on.\n",{"path":7309,"title":7310,"module":5,"summary":7311},"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization","Regular Expressions and Text Normalization","Before any model touches text, the text has to be found and cleaned. Regular expressions give an algebra for describing string patterns; tokenization, case folding, and stemming turn raw characters into the units a model counts; and byte-pair encoding builds a subword vocabulary that spells out any word. Measuring how far apart two strings are — minimum edit distance — is the next lesson.\n",{"path":7313,"title":7314,"module":5,"summary":7315},"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance","Minimum Edit Distance","Much of language processing needs to measure how similar two strings are — a speller ranking corrections, a diff tool, a coreference resolver. Minimum edit distance counts the insertions, deletions, and substitutions that turn one string into another, computed by a dynamic-programming table. We fill the table for intention to execution, backtrace to recover the alignment, and see how the same machinery generalizes to weighted edits, Viterbi, and biological sequence alignment.\n",{"path":7317,"title":7318,"module":5,"summary":7319},"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models","N-Gram Language Models","A language model assigns a probability to a sequence of words and, equivalently, predicts the next word from its history. The n-gram model makes this tractable by truncating the history to the last few words, estimates the resulting conditional probabilities by counting, and is scored by perplexity. We build the model from the chain rule, work a bigram example on a small corpus, and read perplexity as a branching factor. The next lesson covers the zero counts that break this model and the smoothing that repairs them.\n",{"path":7321,"title":7322,"module":5,"summary":7323},"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff","Smoothing and Backoff","Every finite corpus is missing good word sequences it simply never saw, so a raw n-gram model assigns them probability zero and breaks. Smoothing repairs the zeros: add-one and add-k shave mass off seen events, backoff and interpolation fall back on shorter contexts, and Kneser-Ney — worked here by hand — replaces raw frequency with how many contexts a word completes. We close on web-scale stupid backoff and the neural models that dissolve the zero problem rather than patch it.\n",{"path":7325,"title":7326,"module":7327,"summary":7328},"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment","Naive Bayes and Sentiment Classification","Text Classification","Text classification assigns a category to a document — positive or negative, spam or not, one topic among many. Naive Bayes is a generative solution: apply Bayes' rule, assume the words are conditionally independent given the class, and the winning class is the one maximizing the product of a prior and per-word likelihoods. We train it by counting with add-one smoothing, work a full sentiment example by hand, sharpen it for sentiment (binary counts, negation, lexicons), and place it among the transformer classifiers that came after.\n",{"path":7330,"title":7331,"module":7327,"summary":7332},"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers","Evaluating Classifiers","A trained classifier is only useful once we can measure how good it is. We build the confusion matrix, see why accuracy misleads on unbalanced data, and define precision, recall, and the F-measure that balances them. Multi-class tasks need macro- versus micro-averaging; reliable estimates need cross-validation. We close on statistical significance — the paired bootstrap test for whether one system's lead over another is significant.\n",{"path":7334,"title":7335,"module":7327,"summary":7336},"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression","Logistic Regression","Logistic regression is the discriminative counterpart to naive Bayes: instead of modelling how a document is generated, it learns weights that directly separate the classes. We build it from the sigmoid, derive the cross-entropy loss from maximum likelihood, learn the weights by stochastic gradient descent, regularize to curb overfitting, and generalize to many classes with the softmax. The two-class model is already a one-neuron network, so this is the bridge to neural language models.\n",{"path":7338,"title":7339,"module":7327,"summary":7340},"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons","Sentiment and Affect Lexicons","A sentiment lexicon is a list of words annotated with the affective meaning they carry — positive or negative, or scores along valence, arousal, and dominance. We fix what \"emotion\" means (basic-emotion versus dimensional models), survey the standard lexicons, and then build lexicons three ways: by human labeling with best-worst scaling, by semi-supervised induction from seed words over an embedding space, and by supervised learning from starred reviews. We close on connotation frames, which record the sentiment a verb implies about each of its arguments.\n",{"path":7342,"title":7343,"module":7344,"summary":7345},"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings","Vector Semantics and Embeddings","Semantics","Vector semantics represents a word's meaning as a point in space, derived from the company the word keeps. This first part builds the count-based side: the distributional hypothesis, co-occurrence matrices in their term-document and word-word forms, cosine as the similarity measure, and the two weightings — tf-idf and PPMI — that fix what raw counts get wrong. The result is a sparse, interpretable vector for every word, and the setup for the dense embeddings of the next lesson.\n",{"path":7347,"title":7348,"module":7344,"summary":7349},"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings","Static Word Embeddings: word2vec and After","Count-based vectors are long and sparse; embeddings are the short, dense alternative. This lesson builds them with word2vec's skip-gram and negative sampling — a classifier whose learned weights are the vectors — derives its gradient, and works one update by hand. It then reads relations off the analogy parallelogram, surveys the papers that framed the static-embedding era (word2vec, GloVe, the SGNS-as-PPMI equivalence, fastText, ELMo), and closes on the biases embeddings inherit and the single-vector-per-word ceiling that contextual models break.\n",{"path":7351,"title":7352,"module":7344,"summary":7353},"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models","Neural Networks and Neural Language Models","A neural network is a stack of units, each a weighted sum passed through a non-linearity — a single unit on its own is logistic regression. We build the network up from that unit: the activation functions that give it power, the XOR problem that forces a hidden layer, the feedforward forward pass in matrix form, and the Bengio-style feedforward neural language model that concatenates word embeddings and predicts the next word with a softmax. Training is cross-entropy minimized by gradient descent, with backpropagation supplying the gradient. Embeddings let the model share statistical strength across similar words, avoiding the sparsity that limits n-gram models.\n",{"path":7355,"title":7356,"module":3884,"summary":7357},"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling","Sequence Labeling: POS and NER","Sequence labeling assigns one tag to every token in a sentence. This first part sets up the task through its two canonical cases — part-of-speech tagging over the Penn Treebank tagset, and named-entity recognition reframed as token labeling with the BIO scheme — then builds the hidden Markov model, the classic probabilistic tagger. The HMM tags by Bayesian inference: transition and emission probabilities under two Markov assumptions, reducing tagging to an argmax over tag sequences. That argmax is exponential to enumerate, which sets up the Viterbi decoder, the CRF, and neural taggers of the next lesson.\n",{"path":7359,"title":7360,"module":3884,"summary":7361},"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers","Viterbi Decoding, CRFs, and Neural Taggers","The HMM reduced tagging to an argmax over exponentially many tag sequences. This lesson builds the decoder that makes it tractable — the Viterbi dynamic program, worked through a full numeric trace on real WSJ probabilities — then keeps that same decoder while replacing the HMM's rigid tables. The linear-chain conditional random field is a discriminative log-linear model whose global feature functions can inspect any part of the input, which is why CRFs win for NER. Finally it traces the shift to neural taggers (biLSTM-CRF, character-aware NER, ELMo), where hand-built features become learned representations while the Viterbi decoder carries over unchanged.\n",{"path":7363,"title":7364,"module":3884,"summary":7365},"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms","RNNs and LSTMs","A feedforward neural language model sees a fixed window of words and can look no further back. The recurrent neural network removes that limit: it carries a hidden state across time, so each word is read in the context of everything before it. We build the RNN from its one recurrent equation, use it as a language model, train it by backpropagation through time, and diagnose the vanishing-gradient problem that makes plain RNNs forget. The LSTM fixes the forgetting with a cell state and three gates, and the encoder-decoder stacks two RNNs into a sequence-to-sequence model — and its single-vector bottleneck is the problem attention was invented to remove.\n",{"path":7367,"title":7368,"module":4366,"summary":7369},"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention","Transformers and Self-Attention","Recurrence forced language models to read one word at a time and to squeeze every dependency through a chain of hidden states. Self-attention removes the recurrence: at every layer each position compares itself to every other and reads a weighted mixture of them, in a single parallel step. This first part builds the attention operation from the ground up — the soft lookup, queries and keys and values, the scaled dot-product, the numeric trace, the matrix form, and the causal mask — and sets up the full transformer architecture that follows.\n",{"path":7371,"title":5921,"module":4366,"summary":7372},"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture","This part takes the scaled dot-product attention of the previous lesson and assembles the full transformer architecture around it: multi-head attention so several relations can be read at once, the transformer block of residual connections and layer norm that makes deep stacks trainable, positional embeddings that restore word order, the decoder-only language model, and the encoder, decoder, and encoder-decoder shapes — closing with the 2017 paper and the pre-norm, FlashAttention, and RoPE refinements that scaled it up.\n",{"path":7374,"title":6029,"module":4366,"summary":7375},"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models","A large language model is a decoder-only transformer trained on one objective — predict the next token. This first part assembles the inference side: the language-modeling head that turns a hidden state into a distribution over the vocabulary, autoregressive generation, and the decoding strategies — greedy, beam, and sampling with temperature, top-k, and nucleus — that read text back out of that distribution. Training the distribution at web scale comes next.\n",{"path":7377,"title":7378,"module":4366,"summary":7379},"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling","Large Language Models: Pretraining and Scaling","A language model's next-token distribution is only as good as the parameters behind it. This part is where those parameters come from: self-supervised pretraining on web-scale text with teacher forcing and cross-entropy, the scaling laws that make test loss a predictable power law in parameters, data, and compute, the KV cache that keeps long-context inference affordable, and how a finished model is evaluated by perplexity and benchmarks — closing with the Kaplan, Chinchilla, GPT-3, and emergence papers behind the scaling story.\n",{"path":7381,"title":7382,"module":4366,"summary":7383},"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting","Fine-Tuning and Prompting","A pretrained transformer is a general-purpose knowledge source; a task is what you do with it. There are two ways to adapt one, and this first part covers the one that updates the weights: fine-tuning. A bidirectional encoder like BERT is pretrained by masked language modeling, then a small task head is bolted on and the whole thing is trained on labelled data for classification, sequence labeling, or span-based question answering — with parameter-efficient variants (adapters, LoRA) that touch only a sliver of the weights. Prompting, the family that leaves the weights frozen, comes next.\n",{"path":7385,"title":7386,"module":4366,"summary":7387},"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment","Prompting and Alignment","Fine-tuning adapts a model by changing its weights. The second family of adaptation changes nothing: a large frozen model performs a task from an instruction and a few examples placed in its context. This part covers prompting and in-context learning, chain-of-thought that elicits reasoning, and the two training stages — instruction tuning and RLHF — that turn a fluent base predictor into an aligned assistant, closing with the BERT, LoRA, chain-of-thought, InstructGPT, and retrieval-augmentation papers behind the modern adaptation pipeline.\n",{"path":7389,"title":7390,"module":7391,"summary":7392},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing","Constituency Parsing","Linguistic Structure","A constituency parse groups a sentence into nested phrases described by a context-free grammar. We build the CFG formalism, read the phrase structure of English off a treebank, confront the structural ambiguity that makes parsing hard, convert to Chomsky normal form, and then solve it with CKY — the dynamic-programming chart that fills a triangular table bottom-up. Probabilistic and neural span parsers, evaluation, and shallow parsing follow in the companion lesson.\n",{"path":7394,"title":7395,"module":7391,"summary":7396},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation","CKY Scoring, Evaluation, and Shallow Parsing","The CKY chart returns every parse but does not say which is correct. Disambiguation needs a score on trees. This lesson attaches probabilities to a grammar (the PCFG and lexicalization), replaces the grammar with a neural span scorer over a pretrained encoder, states the self-attentive results that made it the state of the art, evaluates parsers against a treebank with PARSEVAL, and closes with chunking and shallow parsing for tasks that need only the flat phrases.\n",{"path":7398,"title":7399,"module":7391,"summary":7400},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing","Dependency Parsing","A dependency parse throws away phrases and keeps only directed, labeled arcs from heads to their dependents, so the subject and object of a verb hang off the verb directly. We fix the formalism (rooted trees, typed Universal-Dependency relations, projectivity), then build the first parser family: transition-based arc-standard and arc-eager parsing, a greedy stack-and-buffer machine trained from an oracle. Graph-based and neural dependency parsing follow in the companion lesson.\n",{"path":7402,"title":7403,"module":7391,"summary":7404},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing","Graph-Based and Neural Dependency Parsing","Greedy transition parsing commits locally; the graph-based family scores whole trees instead. This lesson scores every candidate head-dependent edge and extracts the maximum spanning tree with Chu-Liu\u002FEdmonds, develops the biaffine neural scorer that made graph-based parsing the accuracy leader, evaluates parsers with the unlabeled and labeled attachment scores (UAS and LAS), and closes on where the two parser families sit and what they feed downstream.\n",{"path":7406,"title":7407,"module":7391,"summary":7408},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd","Word Senses and Disambiguation","A word is not an atom of meaning: \"bass\" names a fish, a voice, and an instrument, and one static embedding blurs them into a single point. This lesson pulls those senses apart. We define polysemy and the relations that organize senses — synonymy, antonymy, hyponymy, meronymy — build them into WordNet's synset graph, measure similarity along that graph, and then solve the core of word sense disambiguation: the most-frequent-sense baseline, the Lesk gloss-overlap algorithm, feature-based classifiers, and the nearest-neighbor method over BERT embeddings. WSD variants, embeddings, and evaluation follow in the companion lesson.\n",{"path":7410,"title":7411,"module":7391,"summary":7412},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction","WSD in Practice and Word Sense Induction","Beyond core word sense disambiguation lie the variants and loose ends: the sense-inventory-free Word-in-Context task, retrofitting static embeddings to a thesaurus, discovering senses without a fixed inventory (word sense induction), the gloss-aware and bi-encoder neural systems that hold the state of the art, and how WSD and its cousins are evaluated. Together they connect one-vector-per-word embeddings to sense-aware contextual representations.\n",{"path":7414,"title":7415,"module":7391,"summary":7416},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction","Semantic Roles and Information Extraction","Semantic roles answer \"who did what to whom\" for a single event, abstracting away the syntax that expresses it. We show why syntax alone is not enough, generalize over diathesis alternations with thematic roles, number a predicate's arguments with PropBank and group predicates into frames with FrameNet, tag each argument automatically with semantic role labeling, and factor predicates into primitives. Information extraction scales the idea to a corpus in the companion lesson.\n",{"path":7418,"title":7419,"module":7391,"summary":7420},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates","Relations, Events, and Templates","Semantic roles answer \"who did what\" for one predicate; information extraction scales the idea to a whole corpus. This lesson turns unstructured text into structured data: relation extraction pulls entity-relation-entity triples out of sentences by patterns, supervision, and distant supervision; event and temporal extraction place those facts on a timeline; and template filling and knowledge-base population assemble them into a database a downstream system can query.\n",{"path":7422,"title":7423,"module":7391,"summary":7424},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse","Coreference and Discourse","A text is more than a bag of sentences: entities recur under different names. Coreference resolution links every mention to the discourse entity it evokes — the linguistic background of pronouns, definite NPs, and names; mention detection; the mention-pair, mention-ranking, and entity-based architectures; a neural end-to-end span model that scores candidate antecedents; features, evaluation by the CoNLL F1, gender bias, and the neural coreference lineage. Discourse coherence follows in the companion lesson.\n",{"path":7426,"title":7427,"module":7391,"summary":7428},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure","Coherence and Discourse Structure","Coherence is what makes a run of sentences a discourse rather than an arbitrary collection. This lesson develops coherence relations and Rhetorical Structure Theory trees, discourse-structure parsing, Centering and the entity grid for entity-based coherence, and representation-learning models of local coherence, measured in part over the coreference chains recovered in the companion lesson.\n",{"path":7430,"title":7431,"module":7391,"summary":7432},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics","Logical Representations of Meaning","A meaning representation turns a sentence into a formal structure a machine can check against a world and reason over. We set the desiderata a good representation must meet, ground truth in a model, build up first-order logic for sentences with its connectives, quantifiers, and inference, and reify events with the neo-Davidsonian event variable to escape fixed predicate arity. The compositional lambda calculus, quantifier scope, and description logics follow in the companion lesson.\n",{"path":7434,"title":7435,"module":7391,"summary":7436},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics","Compositional Semantics and Description Logics","How do you compute a logical form from a sentence automatically? This lesson builds the compositional machinery: the lambda calculus that assembles a formula from a parse tree one beta-reduction at a time, the quantifier-scope ambiguity a single syntax tree leaves open, and the decidable description logics — TBox, ABox, subsumption, role restrictions — behind the Web Ontology Language, closing with how the map from string to logical form can be learned.\n",{"path":7438,"title":7439,"module":7391,"summary":7440},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing","Semantic Parsing","Turning a sentence into a structured, executable meaning, the grammar-based way. We take the logical forms defined earlier and build them compositionally: a rule-based parser that walks a syntax tree applying lambda terms, then Combinatory Categorial Grammar (CCG), which fuses syntax and semantics so one lexicalized derivation produces both — including supertagging and A* parsing. Learned and neural semantic parsers follow in the companion lesson.\n",{"path":7442,"title":7443,"module":7391,"summary":7444},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing","Learned and Neural Semantic Parsing","Hand-writing a lexicon of lambda terms does not scale, so this lesson learns the parser instead. We cover the two supervision regimes (from logical forms and from denotations), Abstract Meaning Representation as a rooted concept graph, neural sequence-to-sequence parsing with constrained decoding and copy mechanisms, executable text-to-SQL and knowledge-based question answering, the practical systems that made learned parsers accurate, and how the task is evaluated.\n",{"path":7446,"title":7447,"module":7391,"summary":7448},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction","Information Extraction","Information extraction turns free text into a database, and the first step is relation extraction: pulling entity-relation-entity triples out of sentences. We cover all five families — hand-built patterns, supervised classifiers, semi-supervised bootstrapping, distant supervision, and unsupervised Open IE — with worked bootstrapping and distant-supervision traces, then the neural and LLM systems that extended them. Times, events, and templates follow in the companion lesson.\n",{"path":7450,"title":7451,"module":7391,"summary":7452},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates","Extracting Times, Events, and Templates","Once relation extraction has produced typed triples, the information-extraction pipeline still has to place facts in time and assemble them into records. This lesson detects and normalizes temporal expressions to ISO 8601 values, detects events and orders them on a timeline with the 13 Allen relations, and fills slot-and-filler templates — flat and hierarchical — for stereotyped situations, closing the loop from text to a queryable database.\n",{"path":7454,"title":7455,"module":7391,"summary":7456},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence","Discourse Coherence","A text is more than a set of sentences. What binds a run of sentences into a discourse is coherence, and one of its sources is structured relations between clauses. This lesson develops relational coherence — RST and the PDTB models of coherence relations — and discourse-structure parsing: EDU segmentation and shift-reduce RST parsing, then PDTB relation classification. Entity-based and global coherence follow in the companion lesson.\n",{"path":7458,"title":7459,"module":7391,"summary":7460},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence","Entity-Based and Global Coherence","A text coheres not only through relations between clauses but by staying about the same entities and the same topic, and by obeying the macro-structure of its genre. This lesson develops Centering Theory and the entity grid for entity-based coherence, representation-learning models of local coherence, and global coherence — topic segmentation, narrative and argumentation structure, and scientific discourse — then the neural models that learn each.\n",{"path":7462,"title":7463,"module":7391,"summary":7464},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars","Constituency Grammars","A constituency grammar is the declarative theory of sentence structure that a parser operates on. We build the context-free grammar formalism from its four parts, show how derivations become parse trees, and work through the phrase structure of English — noun phrases, verb phrases and their subcategorization frames, agreement, coordination, and long-distance dependencies. The treebank, normal-form, and lexicalized views follow in the companion lesson.\n",{"path":7466,"title":7467,"module":7391,"summary":7468},"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars","Treebanks and Lexicalized Grammars","Where does a grammar come from, and how is it prepared for a parser? We read a context-free grammar off the Penn Treebank, normalize it to Chomsky Normal Form for the CKY chart, then invert the phrase-structure emphasis with lexicalized grammars — Combinatory Categorial Grammar and its slash categories — and close with the grammar's fate in the neural era: span scoring, self-attention, and grammar induction.\n",{"path":7470,"title":7471,"module":6017,"summary":7472},"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation","Machine Translation","Machine translation is the task that built the modern toolkit: the encoder-decoder was invented for it, attention was invented to fix its fixed-context bottleneck, and both were later folded into the general transformer. We work through why translation is hard (word order, morphology, lexical and structural divergences), the sequence-to-sequence model and its attention mechanism, transformer-based NMT with cross-attention, subword tokenization with a shared vocabulary, beam-search decoding, and evaluation by BLEU and its successors chrF, BERTScore, and COMET — closing on multilingual and low-resource translation and backtranslation.\n",{"path":7474,"title":7475,"module":6017,"summary":7476},"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation","Machine Translation: Decoding, Evaluation, and Scale","Having built the transformer translation model, we now decode from it and measure the output. Beam search turns the decoder's per-step distributions into a single output string; length normalization keeps it from favoring short translations. We then score translations automatically — BLEU with its n-gram precision, clipping, and brevity penalty, worked through by hand, then its successors chrF, BERTScore, and COMET — and close on the parts of MT that scale beyond one language pair: multilingual and low-resource translation, backtranslation, gender bias, and the lineage from the Transformer to massively multilingual models like NLLB-200.\n",{"path":7478,"title":7479,"module":6017,"summary":7480},"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering","Question Answering","A question-answering system takes a natural-language question and returns an answer, not a ranked list of documents. Almost every modern system is built on one pattern: retrieve then read. We start with the information-retrieval machinery that finds candidate text — tf-idf and BM25 term weighting, a worked ranking example, the inverted index, and dense embedding retrieval — then build the retriever-reader pipeline that extracts an answer span with BERT and trace a full retrieve-and-read example end to end.\n",{"path":7482,"title":7483,"module":6017,"summary":7484},"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms","Question Answering: Knowledge Bases and Language Models","The retrieve-and-read pipeline extracts an answer span from prose, but not all knowledge lives in prose. This part covers the rest of the QA stack: entity linking (Wikification) that grounds a question's entities to a knowledge base, knowledge-based QA by semantic parsing a question into an executable query, and the modern default — closed-book QA and retrieval-augmented generation with a large language model — closing on the DPR\u002FRAG\u002Ffusion-in-decoder lineage and how factoid answers are scored by exact match and F1.\n",{"path":7486,"title":7487,"module":6017,"summary":7488},"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots","Dialogue and Chatbots","Conversation is the most natural interface to a machine and one of the hardest to build. We set up what makes human dialogue work — turns, speech acts, grounding, and the local structure of adjacency pairs — then trace the two traditions that answer it: chatbots built to chat (ELIZA's pattern-matching, corpus retrieval, and seq2seq generation with its blandness problem) and task-oriented systems built to get something done (the GUS frame-and-slot architecture and the modern NLU \u002F state-tracker \u002F policy \u002F NLG pipeline that accumulates a frame across turns).\n",{"path":7490,"title":7491,"module":6017,"summary":7492},"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants","Dialogue Systems: LLM Assistants, Evaluation, and Design","Two dialogue traditions — chatbots built to chat and task-oriented frame systems built to get something done — met in the aligned LLM assistant. Instruction tuning plus RLHF fold chit-chat and task dialogue into one model; the LaMDA \u002F InstructGPT \u002F ChatGPT lineage fills in how. The lesson then turns to evaluation (human ratings and acute-eval for chatbots, task success and slot error rate for task systems), user-centered design with Wizard-of-Oz prototyping, and the ethical stakes of building agents people talk to.\n",{"path":7494,"title":7495,"module":6017,"summary":7496},"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization","Text Summarization","Summarization compresses a document to its essential meaning, by either selecting sentences to keep (extractive) or writing new ones (abstractive). This part fixes the task and its flavors — single vs. multi-document, generic vs. query-focused, extractive vs. abstractive — then works through extractive summarization in full: scoring by position and centrality, the TextRank\u002FLexRank graph algorithm run as PageRank over a sentence-similarity graph with a worked iteration, and supervised sentence selection.\n",{"path":7498,"title":7499,"module":6017,"summary":7500},"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation","Abstractive Summarization and Evaluation","Extractive methods can only reuse the source's own sentences; to compress within a sentence or paraphrase, a summarizer has to generate. This part covers abstractive summarization: the sequence-to-sequence approach, the pointer-generator's copy switch and coverage mechanism, pretrained summarizers (BART, PEGASUS) and zero-shot LLM prompting, the long-document and factuality problems, and ROUGE evaluation with a worked example and its limits — closing on the abstractive lineage from See 2017 through faithfulness metrics.\n",{"path":7502,"title":7503,"module":7504,"summary":7505},"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics","Phonetics","Speech","Before a recognizer can read speech it has to know what speech is. This first part covers the linguistic substrate: phones and their transcription in the IPA and ARPAbet; articulatory phonetics — how the vocal tract shapes airflow into consonants and vowels; and prosody — stress, tune, and the F0 contour. The acoustic side — the waveform, its spectrum, formants, and the spectrogram — is the second part.\n",{"path":7507,"title":7508,"module":7504,"summary":7509},"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics","Acoustic Phonetics","Articulation is the cause; the acoustic signal is the effect, and the effect is all a microphone ever gets. This part follows the sound out of the mouth: waves, sampling and the Nyquist limit, F0 and the pitch track, the mel scale, the spectrum and Fourier analysis, the source-filter model that explains why each vowel carries its own formants, and the spectrogram the log-mel front end of every ASR system sits directly on top of — closing with neural TTS, wav2vec, HuBERT, and Whisper, where phonetics went in neural speech.\n",{"path":7511,"title":7512,"module":7504,"summary":7513},"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition","Automatic Speech Recognition","Speech recognition maps an acoustic waveform to a string of words, and once the waveform is turned into a sequence of log-mel spectrogram frames the problem is the same sequence-to-sequence transduction the rest of the course already solved. This first part builds the feature front end (framing, the DFT, the mel filterbank, the log), then the modern architectures: the attention-based encoder-decoder, the CTC alignment trick that collapses repeated and blank frames, and RNN-T for streaming. Training-data advances, evaluation, TTS, and the other speech tasks come next.\n",{"path":7515,"title":7516,"module":7504,"summary":7517},"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications","ASR Evaluation and Speech Applications","A recognizer turns a waveform into text; this part scores that text and puts the same machinery to other uses. It opens with the self-supervised and weakly- supervised systems (wav2vec 2.0, HuBERT, Whisper) that made ASR error rates fall. Word error rate reuses the edit distance from the first module, run over words. Text-to-speech runs the whole pipeline in reverse — text to mel spectrogram to waveform. And a family of smaller tasks — wake-word detection, speaker recognition and diarization, language identification — reuse the same log-mel front end without the decoder.\n",{"path":7519,"title":7520,"module":306,"summary":306},"\u002Fnatural-language-processing","Natural Language Processing",{"path":7522,"title":7523,"module":5,"summary":7524},"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo","From the Electron to the Particle Zoo","A timeline of the subject, from J. J. Thomson's electron in 1897 to the Higgs boson in 2012. The electron, photon, nucleus, proton, and neutron gave a tidy picture that Yukawa's meson prediction and the muon–pion confusion complicated; strange particles in cosmic rays and the accelerator-era flood of hadrons then produced a \"particle zoo\" that only the quark model organized.\n",{"path":7526,"title":7527,"module":5,"summary":7528},"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts","Basic Concepts and Particle Classification","Every particle has an antiparticle of equal mass and opposite charge, a consequence of the Dirac equation confirmed by the positron. Feynman diagrams track interactions in spacetime; the material particles sort into leptons and the composite hadrons built from quarks, with baryons carrying three quarks and mesons a quark-antiquark pair.\n",{"path":7530,"title":7531,"module":5,"summary":7532},"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers","Fundamental Interactions and Force Carriers","Four interactions account for every force in nature: strong, electromagnetic, weak, and gravitational, in decreasing strength. Each is carried by a boson — the gluon, photon, W and Z, and the graviton — with a range fixed by the carrier's mass through the Yukawa relation, and a coupling constant that itself varies with distance.\n",{"path":7534,"title":7535,"module":7536,"summary":7537},"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales","Natural Units and Scales","Units and Kinematics","Setting $\\hbar = c = 1$ collapses mass, momentum, and energy into a single unit, the GeV, and turns lengths and times into inverse energies through the conversion $\\hbar c = 197.3$ MeV·fm. This lesson fixes the natural-unit conventions used for the rest of the course, converts cross sections between barns and GeV$^{-2}$, and shows how to restore factors of $\\hbar$ and $c$ by dimensional analysis.\n",{"path":7539,"title":7540,"module":7536,"summary":7541},"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass","Four-Vectors and Invariant Mass","The energy and momentum of a particle form a four-vector whose square is the frame-independent quantity $p^2 = m^2$. This lesson develops the metric and four-vector products, the invariant mass of a multiparticle system, the center-of-momentum and laboratory frames, and the description of collinear boosts by rapidity, whose additivity replaces the awkward velocity-addition law.\n",{"path":7543,"title":7544,"module":7536,"summary":7545},"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam","Decay, Scattering, and Mandelstam Variables","Two-body decay in the rest frame fixes the daughter momenta from the three masses alone; production thresholds follow from the minimum invariant mass. This lesson works both, then introduces the Mandelstam invariants $s$, $t$, $u$ for $2\\to2$ scattering, proves the identity $s+t+u=\\sum m_i^2$, and maps the physical regions and the crossing that relates channels.\n",{"path":7547,"title":7548,"module":7536,"summary":7549},"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule","Cross Sections and the Golden Rule","The cross section measures how often a scattering happens and the decay width how fast a particle disintegrates. This lesson defines both, relates event rate to luminosity through $R=\\mathcal L\\,\\sigma$ and lifetime to width through $\\tau=\\hbar\u002F\\Gamma$, and states Fermi's golden rule with Lorentz-invariant phase space, giving the master formulas that turn an amplitude $\\mathcal M$ into a measurable rate for $1\\to2$ decay and $2\\to2$ scattering.\n",{"path":7551,"title":7552,"module":7553,"summary":7554},"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries","Conservation Laws and Symmetries","Symmetries and Conservation Laws","Which decays occur is decided by conservation laws, each tied by Noether's theorem to a symmetry of physical law. Energy, charge, baryon number, and lepton number are conserved universally; strangeness, isospin, and parity hold in the strong and electromagnetic interactions but break in the weak one, whose parity and CP violation distinguish matter from antimatter.\n",{"path":7556,"title":7557,"module":7553,"summary":7558},"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt","Discrete Symmetries — C, P, T, and CPT","Parity reflects space, charge conjugation swaps particle for antiparticle, and time reversal runs the clock backward. Each assigns multiplicative quantum numbers that act as selection rules — intrinsic parities, the photon's C = −1, the C-parity argument fixing the pion's two-photon decay. Their product CPT is a theorem of any local relativistic field theory, forcing particle and antiparticle to share mass and lifetime.\n",{"path":7560,"title":7561,"module":7553,"summary":7562},"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak","Parity Violation and the Weak Force","The tau–theta puzzle forced a choice: two particles with identical mass but opposite parity, or one particle whose decay violates parity. Lee and Yang proposed the latter, Wu's polarized cobalt-60 confirmed it, and the violation proved maximal. The charged weak force couples only to left-handed chirality — the Goldhaber experiment showed the neutrino is left-handed — which is why the mirror image of a weak decay is something nature never produces.\n",{"path":7564,"title":7565,"module":7553,"summary":7566},"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry","Isospin, SU(2), and Flavor SU(3)","The near-equal masses of the proton and neutron, and of the three pions, signal a continuous internal symmetry of the strong force: isospin, an SU(2) whose ladder operators move between the members of a multiplet. Adding strangeness enlarges it to an approximate SU(3) flavor symmetry, and the Gell-Mann–Nishijima relation Q = I3 + Y\u002F2 places every hadron on a weight diagram in the isospin–hypercharge plane — the language in which the quark model is written.\n",{"path":7568,"title":7569,"module":7570,"summary":7571},"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3","The Eightfold Way and SU(3) Flavor","The Quark Model","Gell-Mann and Ne'eman's classification of the hadrons into geometric multiplets, read as representations of an approximate flavor SU(3). The fundamental triplet (u, d, s) and its antitriplet combine into the meson nonet from 3⊗3̄ = 8⊕1 and the baryon octet and decuplet from 3⊗3⊗3, and the empty corner of the decuplet forecast the Ω⁻.\n",{"path":7573,"title":7574,"module":7570,"summary":7575},"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy","Meson Multiplets and Quantum Numbers","Mesons as quark–antiquark bound states. The spin singlet and triplet, orbital excitations, and the assignment of J^PC from the quark spins and orbital angular momentum, giving the pseudoscalar and vector nonets. The η–η' and ω–φ mixing problems, and the charmonium and bottomonium spectra read as heavy-quark positronium.\n",{"path":7577,"title":7578,"module":7570,"summary":7579},"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy","Baryon Multiplets, Spin, and the Color Puzzle","Baryons as three-quark states, with a wavefunction factored into space, spin, flavor, and color. The spin-3\u002F2 Δ⁺⁺ = uuu forces a totally symmetric state that the Pauli principle forbids, and the resolution is an antisymmetric color factor — the first evidence for color. The octet and decuplet spin content, and baryon magnetic moments as a quantitative test of the model.\n",{"path":7581,"title":7582,"module":7570,"summary":7583},"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics","Color, Confinement, and Exotic Hadrons","Color as the gauged SU(3) charge, and the requirement that every physical hadron be a color singlet — which selects q-qbar mesons and qqq baryons as the simplest states. The R-ratio of e⁺e⁻ annihilation measures three colors directly. Beyond the simplest singlets lie glueballs, tetraquarks, and pentaquarks, and the recent XYZ states, read as either compact multiquarks or loose hadronic molecules.\n",{"path":7585,"title":7586,"module":7587,"summary":7588},"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation","The Klein-Gordon Equation","Relativistic Wave Equations","Quantizing the relativistic energy relation $E^2 = p^2 + m^2$ produces the Klein-Gordon equation for a scalar field. Its plane-wave solutions come in positive- and negative-energy branches, and the conserved density it supplies is not positive-definite — the two difficulties that first drove physicists to seek a first-order equation. The static Klein-Gordon equation with a point source gives the Yukawa potential, and the free equation gives the scalar propagator that later modules attach to exchanged lines.\n",{"path":7590,"title":7591,"module":7587,"summary":7592},"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors","The Dirac Equation and Spinors","Dirac demanded a wave equation first order in time to fix the Klein-Gordon density problem. Factorizing $E^2 = p^2 + m^2$ into a linear form forces the coefficients to be anticommuting matrices — the gamma matrices of the Clifford algebra — so the wavefunction becomes a four-component spinor. The plane-wave solutions split into two particle and two antiparticle states, spin appears automatically with the correct $g = 2$ magnetic moment, and the chirality projectors that the weak interaction later needs fall straight out of the fifth gamma matrix.\n",{"path":7594,"title":7595,"module":7587,"summary":7596},"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory","Antiparticles and Hole Theory","The negative-energy solutions of the Dirac equation refuse to go away, so they must mean something. Dirac read them as a filled sea of occupied negative-energy states whose holes are positive-energy antiparticles, predicting the positron before its discovery. The picture works for fermions but not bosons, and the Feynman-Stückelberg interpretation replaces it: an antiparticle is a negative-energy solution propagating backward in time, equivalent to a positive-energy antiparticle going forward. Crossing symmetry ties incoming particles to outgoing antiparticles in a single amplitude.\n",{"path":7598,"title":7599,"module":7600,"summary":7601},"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed","Feynman Rules for QED","Quantum Electrodynamics","Quantum electrodynamics computes a process by summing diagrams, each a term in a power series in the coupling. Every diagram translates into an amplitude by a fixed dictionary: spinors and polarization vectors for external lines, propagators for internal lines, and the vertex factor $ie\\gamma^\\mu$ for each photon-fermion junction. Squaring the amplitude and feeding it to Fermi's golden rule produces a cross section or decay rate, with each extra vertex costing one power of $\\alpha$.\n",{"path":7603,"title":7604,"module":7600,"summary":7605},"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes","Tree-Level QED Processes","The Feynman rules become numbers on the reference reactions of QED. Muon pair production $e^+e^-\\to\\mu^+\\mu^-$ sets the scale with its $1+\\cos^2\\theta$ distribution and $4\\pi\\alpha^2\u002F3s$ total cross section, and its ratio to hadron production counts colors. Compton scattering gives the Klein-Nishina formula and the Thomson limit; Bhabha scattering shows $s$- and $t$-channel interference. Casimir's trick turns every spin-averaged square into a trace of gamma matrices.\n",{"path":7607,"title":7608,"module":7600,"summary":7609},"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling","Renormalization and the Running Coupling","Beyond tree level, QED loops diverge. The three primitive one-loop diagrams — vacuum polarization, electron self-energy, and vertex correction — carry ultraviolet divergences that regularization exposes as logarithms of a cutoff. Renormalization absorbs them into the measured mass, charge, and field normalization, leaving finite predictions. The surviving physical content is that the coupling runs: vacuum polarization screens charge, so $\\alpha$ grows from $1\u002F137$ at low energy to about $1\u002F128$ at the $Z$ mass.\n",{"path":7611,"title":7612,"module":7600,"summary":7613},"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2","The Anomalous Magnetic Moment","The Dirac equation predicts $g=2$; loops shift it. Schwinger's one-loop vertex correction gives the anomaly $a=(g-2)\u002F2=\\alpha\u002F2\\pi$, and the QED series continues to five loops. The electron $a_e$ agrees with theory to better than a part in a billion, the most precise confrontation of theory and experiment in physics. The muon $a_\\mu$, heavier and so more sensitive to virtual heavy states, is dominated by hadronic uncertainty and sits at the center of a long-running comparison with the Standard Model prediction.\n",{"path":7615,"title":7616,"module":7617,"summary":7618},"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak","The V–A Charged Weak Current","The Weak Interaction","Fermi modelled beta decay as a four-fermion contact interaction, but a coupling with dimensions of inverse mass squared makes cross sections grow without bound and the theory fails near 300 GeV. The cure is a heavy mediator: the $W$ boson, whose propagator collapses to Fermi's contact term at low energy and fixes $G_F\u002F\\sqrt2 = g^2\u002F8M_W^2$. Parity violation dictates the current's form — vector minus axial-vector, coupling only to left-chiral fields — and universality of the coupling ties muon decay, beta decay, and pion decay to one constant. Pion decay's helicity suppression of the electron channel is the sharpest test.\n",{"path":7620,"title":7621,"module":7617,"summary":7622},"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays","The W and Z Bosons","The contact theory hides a massive mediator. The charged $W^\\pm$ carries the current that changes flavour; the neutral $Z^0$ carries a current that does not. Both were found at CERN's proton–antiproton collider in 1983 at the masses the electroweak theory demanded. Their decay widths partition into leptonic and hadronic channels, and the $Z$ carries a decisive extra: an invisible width from decays to neutrinos that counts the number of light generations at exactly three. Beta decay and muon decay are re-read at the parton level as $W$ exchange.\n",{"path":7624,"title":7625,"module":7617,"summary":7626},"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix","Quark Mixing and the CKM Matrix","The quark eigenstates the weak force acts on are not the mass eigenstates. Cabibbo captured this with one rotation angle; the GIM mechanism added a fourth quark to cancel dangerous flavour-changing neutral currents and predicted charm before its discovery. Three generations promote the rotation to the unitary Cabibbo–Kobayashi–Maskawa matrix — three angles and one irreducible complex phase, the sole source of Standard-Model CP violation. The Wolfenstein parametrization exposes its steep hierarchy, and unitarity closes into a triangle whose area measures the phase.\n",{"path":7628,"title":7629,"module":7617,"summary":7630},"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons","CP Violation in Kaons and B Mesons","The neutral kaon is its own laboratory for CP. Weak box diagrams mix $K^0$ and its antiparticle into short- and long-lived states that should be pure CP eigenstates decaying to two and three pions. In 1964 Cronin and Fitch caught the long-lived kaon decaying to two pions — CP is violated, at the two-per-mille level of $\\epsilon$. Direct violation ($\\epsilon'$) followed, and the $B$ factories turned the CKM phase into a large, clean time-dependent asymmetry measuring $\\sin 2\\beta$. The effect is real but far too small to explain why the universe is made of matter.\n",{"path":7632,"title":7633,"module":7634,"summary":7635},"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons","Color SU(3), Gluons, and the QCD Lagrangian","Quantum Chromodynamics","Color is the exact gauged SU(3) charge of the strong force. Gauging it forces eight massless gluons in the adjoint representation and, because the gauge group is non-abelian, three- and four-gluon self-couplings absent from QED. This lesson builds the QCD Lagrangian from the covariant derivative and the non-abelian field strength, states the Feynman rules with their color factors, and computes the Casimir invariants that set the strength of quark-gluon and gluon-gluon coupling.\n",{"path":7637,"title":7638,"module":7634,"summary":7639},"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement","Asymptotic Freedom and Confinement","The QCD beta function is negative: gluon self-interaction antiscreens color, so the coupling weakens at short distance (asymptotic freedom) and strengthens at long distance (confinement). This lesson computes the one-loop beta coefficient, solves for the running of alpha_s and the emergent scale Lambda_QCD, and reads the strong-coupling regime as the linear quark-antiquark potential of a color flux tube that breaks by pair creation.\n",{"path":7641,"title":7642,"module":7634,"summary":7643},"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons","Deep Inelastic Scattering and the Parton Model","Scattering electrons hard off a proton resolves pointlike constituents. This lesson sets up the deep-inelastic kinematics, defines the structure functions F1 and F2, and reads Bjorken scaling as the signature of free spin-half partons. The Callan-Gross relation fixes the parton spin, the structure function becomes a charge-weighted sum of parton distributions, and the slow logarithmic scaling violations expose the gluon through DGLAP evolution.\n",{"path":7645,"title":7646,"module":7634,"summary":7647},"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization","Jets, Hadronization, and Testing QCD","Quarks and gluons produced in a collision fragment into collimated sprays of hadrons — jets — whose directions track the underlying partons. This lesson reads two-jet events as the quark and antiquark of electron-positron annihilation, three-jet events as direct evidence of the radiated gluon, and the hadronization step as the flux tube breaking into color singlets. Jet algorithms and event-shape variables turn the pattern into precision measurements of alpha_s.\n",{"path":7649,"title":7650,"module":7651,"summary":7652},"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1","The Electroweak Theory","Electroweak Unification and the Higgs","The electromagnetic and weak interactions are two faces of a single gauge theory built on $SU(2)_L \\times U(1)_Y$. Left-handed fermions sit in weak-isospin doublets and right-handed fermions in singlets, each carrying a hypercharge fixed by the Gell-Mann–Nishijima relation $Q = T_3 + Y\u002F2$. The four gauge fields $W^{1,2,3}$ and $B$ mix: the charged combinations $W^\\pm$ mediate the charged current, while $W^3$ and $B$ rotate through the Weinberg angle into the massless photon and the massive $Z$. The single angle $\\theta_W$ ties the couplings, the boson masses, and the neutral-current strengths together.\n",{"path":7654,"title":7655,"module":7651,"summary":7656},"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking","Spontaneous Symmetry Breaking","A symmetry of the Lagrangian need not be a symmetry of the ground state. When the lowest-energy configuration sits away from the symmetric point, the symmetry is spontaneously broken and the vacuum is one of a degenerate family. Breaking a continuous global symmetry produces one massless scalar — a Goldstone boson — for every broken generator, the flat direction along the vacuum manifold. The Mexican-hat potential and the ferromagnet below its Curie point are the working pictures.\n",{"path":7658,"title":7659,"module":7651,"summary":7660},"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism","The Higgs Mechanism","Gauging a spontaneously broken symmetry converts the would-be Goldstone bosons into the longitudinal polarizations of the gauge fields, which thereby acquire mass. Applied to $SU(2)_L \\times U(1)_Y$ with a single Higgs doublet, three of the four scalar degrees of freedom are eaten by the $W^\\pm$ and $Z$; the fourth survives as the physical Higgs boson, and the photon stays massless. Fermion masses come from Yukawa couplings to the same field, each mass proportional to its coupling times the vacuum expectation value $v \\approx 246$ GeV.\n",{"path":7662,"title":7663,"module":7651,"summary":7664},"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery","The Higgs Boson","The Higgs boson is produced at the LHC chiefly through gluon fusion, with vector-boson fusion and associated production as cleaner but rarer channels. It decays most often to $b\\bar b$ and $WW^\\ast$, but the discovery rested on two rare clean modes, $H \\to \\gamma\\gamma$ and $H \\to ZZ^\\ast \\to 4\\ell$, whose narrow invariant-mass peaks emerged over smooth backgrounds. ATLAS and CMS announced a boson near 125 GeV in 2012; its measured spin-parity $0^+$ and its couplings, which scale with particle mass, identify it as the Standard Model Higgs.\n",{"path":7666,"title":7667,"module":7651,"summary":7668},"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model","The Standard Model","The Standard Model combines the quark model, quantum chromodynamics, and the electroweak theory. SU(3) symmetry sorts the hadrons and predicted the omega; color explains why only colorless quark combinations exist; QCD gives asymptotic freedom and confinement; and spontaneous symmetry breaking through the Higgs field gives the weak bosons their mass.\n",{"path":7670,"title":7671,"module":7672,"summary":7673},"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations","Neutrino Oscillations","Neutrino Physics","Neutrinos are produced and detected in flavour states, but they propagate as mass states, and the two bases are misaligned. A flavour therefore evolves coherently into a superposition of other flavours with a probability set by the mass-squared splitting and the ratio L\u002FE. This lesson derives the two-flavour oscillation formula, applies it to the solar and atmospheric neutrino deficits, shows how the SNO neutral-current measurement resolved the solar problem, and works out the MSW resonance that amplifies mixing inside the Sun.\n",{"path":7675,"title":7676,"module":7672,"summary":7677},"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns","Neutrino Mass and the PMNS Matrix","Three-flavour mixing promotes the single oscillation angle to the unitary Pontecorvo–Maki–Nakagawa–Sakata matrix, parametrised by three angles and a Dirac CP phase. This lesson decomposes the PMNS matrix into three rotations, records the measured angles and mass-squared splittings, lays out the normal and inverted mass orderings, contrasts the large leptonic mixing with the near-diagonal CKM matrix, and collects the absolute-mass bounds from beta decay and cosmology.\n",{"path":7679,"title":7680,"module":7672,"summary":7681},"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments","Dirac, Majorana, and Neutrino Experiments","A neutral fermion can carry a mass term forbidden to every charged particle, so the neutrino may be its own antiparticle. This lesson contrasts the Dirac and Majorana mass terms and their state content, derives the seesaw mechanism that ties a tiny light mass to a heavy right-handed partner, presents neutrinoless double-beta decay as the decisive lepton-number test, surveys the reactor, accelerator, solar, and atmospheric sources on a baseline–energy map, and explains why neutrino mass is physics beyond the original Standard Model.\n",{"path":7683,"title":7684,"module":7685,"summary":7686},"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity","Accelerators, Colliders, and Luminosity","Accelerators and Detectors","Fixed-target machines waste energy in the center-of-mass motion of the whole system, so the reachable $\\sqrt s$ grows only as the square root of the beam energy, while colliders put the full beam energy into the collision. Circular electron machines are limited by synchrotron radiation scaling as $E^4\u002Fm^4R$; proton machines are limited by bending fields. Luminosity, set by beam current and focusing, converts a cross section into an event rate through $R=\\mathcal L\\,\\sigma$, and integrated luminosity sets the total event count.\n",{"path":7688,"title":7689,"module":7685,"summary":7690},"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems","Particle Detectors and Subsystems","A detector reads a collision by the energy particles deposit as they cross matter. Charged particles ionize at the Bethe-Bloch rate, radiate in the field of nuclei above a critical energy, and emit Cherenkov light above a velocity threshold; electrons and photons build electromagnetic showers over a radiation length, and hadrons build wider showers over a nuclear interaction length. The onion of tracker, electromagnetic and hadronic calorimeters, and outer muon chambers turns these processes into momentum, energy, and identity, with neutrinos inferred from missing transverse momentum.\n",{"path":7692,"title":7693,"module":7685,"summary":7694},"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made","From Collisions to Discoveries","A discovery is a peak that survives statistics. Events are reconstructed into invariant masses, a signal accumulates as a bump over a smooth background, and its significance is judged by a p-value; the field's threshold is five sigma. The expected yield is a product — luminosity times cross section times branching ratio times acceptance and efficiency — that must be balanced by a trigger and data-reduction chain against an overwhelming rate. Worked reconstructions of $Z\\to\\ell\\ell$, the $J\u002F\\psi$, and the Higgs show the same peak-over-background logic at three scales.\n",{"path":7696,"title":7697,"module":7697,"summary":7698},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model","Beyond the Standard Model","The Standard Model leaves the four interactions ununified and the neutrinos massless, both now known to be wrong. Grand unification predicts the couplings merge near ten-to-the-sixteen GeV and the proton decays; supersymmetry pairs each particle with a superpartner; and the confirmed oscillation of neutrinos proves they carry mass, the first crack in the model.\n",{"path":7700,"title":7701,"module":7697,"summary":7702},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories","Grand Unified Theories and Proton Decay","The Standard Model gauge group is a product of three factors with three independent couplings. A grand unified theory embeds them in a single simple group — SU(5) is the minimal choice — so that one coupling runs into all three and the fractional quark charges follow from a tracelessness condition. The same embedding places quarks and leptons in shared multiplets, mediates baryon-number violation through superheavy gauge bosons, and predicts the proton decays with a lifetime that Super-Kamiokande has pushed past ten-to-the-thirty-four years.\n",{"path":7704,"title":7705,"module":7697,"summary":7706},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry","Supersymmetry","Supersymmetry relates fermions and bosons, pairing every Standard Model particle with a superpartner whose spin differs by one half. The pairing makes the scalar and fermion loop corrections to the Higgs mass cancel, removing the quadratic sensitivity to high scales; it sharpens the meeting of the three gauge couplings; and, when R-parity is conserved, it leaves the lightest superpartner stable and neutral, a natural dark-matter candidate. The LHC has excluded gluinos and light squarks below roughly two TeV.\n",{"path":7708,"title":7709,"module":7697,"summary":7710},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness","The Hierarchy Problem and Naturalness","The electroweak scale sits sixteen orders of magnitude below the Planck scale, and nothing in the Standard Model protects that gap. The Higgs mass squared picks up quadratic corrections proportional to the highest scale in the theory, so keeping it at the observed value requires the bare mass and its counterterm to cancel to some thirty significant figures. Naturalness treats that cancellation as a symptom of missing physics. Supersymmetry, compositeness, and extra dimensions each remove the quadratic sensitivity, but the LHC has found none of them at the predicted scale.\n",{"path":7712,"title":7713,"module":7697,"summary":7714},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates","Dark Matter and Particle Candidates","Flat galactic rotation curves, gravitational lensing, the cosmic microwave background, and structure formation all require about five times more matter than the visible baryons, none of it interacting electromagnetically. A stable weakly interacting particle of roughly weak-scale mass freezes out of the early universe with close to the observed abundance — the WIMP miracle — and is the leading candidate, with axions and sterile neutrinos as alternatives. Direct, indirect, and collider searches have so far only tightened the limits.\n",{"path":7716,"title":7717,"module":7697,"summary":7718},"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions","Matter-Antimatter Asymmetry and Open Questions","The universe is made of matter, with about one extra baryon for every billion photons and no antimatter regions. Sakharov identified the three conditions any dynamical explanation must meet: baryon-number violation, C and CP violation, and a departure from thermal equilibrium. The Standard Model contains all three in principle, but its CP violation falls short by some ten orders of magnitude, so baryogenesis requires new physics — leptogenesis being the leading route. A closing survey collects the open questions and the experiments aimed at them.\n",{"path":7720,"title":7721,"module":306,"summary":306},"\u002Fparticle-physics","Particle Physics",{"path":7723,"title":7724,"module":7725,"summary":7726},"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars","The Sun and the Life of Stars","Orientation","The Sun is the one star close enough to study in detail: its luminosity fixes a surface temperature of 5780 K, and the proton-proton fusion cycle in its 1.5-million-kelvin core supplies its power. Measuring other stars needs the magnitude scale, parallax, and the distance ladder; plotting luminosity against temperature builds the Hertzsprung-Russell diagram, on which a star's mass sets its lifetime and its evolutionary track off the main sequence.\n",{"path":7728,"title":7729,"module":7725,"summary":7730},"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states","Cataclysmic Events and the Final States of Stars","A star's death is set by its mass. In close binaries, matter poured across the Roche lobe onto a white dwarf produces novae and, at the Chandrasekhar limit of 1.4 solar masses, a Type Ia supernova; a massive star fusing to an iron core collapses into a Type II supernova. The remnant is a white dwarf held by electron degeneracy, a neutron star held by neutron degeneracy, or, above the neutron-star limit, a black hole inside its Schwarzschild radius.\n",{"path":7732,"title":7733,"module":7725,"summary":7734},"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology","Galaxies, Cosmology, and the Evolving Universe","Galaxies come in elliptical, spiral, and irregular forms, and their redshifts obey Hubble's law, evidence that space itself is expanding. The critical density and the density parameter decide whether the universe is open, flat, or closed; baryons, dark matter, and dark energy each contribute. The cosmic microwave background and primordial helium anchor the Big Bang, whose thermal history runs from inflation through nucleosynthesis to the atoms of today.\n",{"path":7736,"title":7737,"module":7738,"summary":7739},"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus","Magnitudes, Fluxes, and the Distance Modulus","Observational Foundations","The brightness of a star reaches us as a radiant flux that falls off as the inverse square of distance. The magnitude scale encodes flux logarithmically through the Pogson ratio; the apparent and absolute magnitudes differ by the distance modulus, which converts a measured brightness into a distance. The bolometric correction folds a filtered magnitude into a total luminosity, and the difference of two magnitudes in different bands, the color index, measures surface temperature.\n",{"path":7741,"title":7742,"module":7738,"summary":7743},"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification","Stellar Spectra and Spectral Classification","A stellar spectrum is a continuum crossed by absorption lines whose strengths are set by the temperature of the atmosphere. The Boltzmann factor governs how atoms populate excited states, and the Saha equation governs how they ionize; their product explains why each line, such as the hydrogen Balmer series, peaks in strength at a characteristic temperature. This behavior orders stars into the OBAFGKM sequence, and the luminosity classes of the MK system add a second dimension for surface gravity.\n",{"path":7745,"title":7746,"module":7738,"summary":7747},"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum","Telescopes and Detectors Across the Spectrum","A telescope collects light in proportion to its collecting area and resolves detail down to the diffraction limit set by its aperture and the observing wavelength. The atmosphere blurs and blocks large parts of the spectrum, which drives the choice between ground and space and between refractors, reflectors, and radio dishes. CCDs record the light with high quantum efficiency, and interferometry synthesizes an aperture as large as the separation of two telescopes.\n",{"path":7749,"title":7750,"module":7738,"summary":7751},"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder","The Cosmic Distance Ladder","No single method measures distances from the nearest stars to the far reaches of the universe. Instead a ladder of overlapping techniques, each calibrated by the one below it, extends the scale rung by rung: trigonometric parallax, main-sequence fitting, pulsating variables, the tip of the red-giant branch, the Tully-Fisher relation, and Type Ia supernovae. Each rung inherits the uncertainty of every rung beneath it, so the whole chain sets the accuracy of the Hubble constant.\n",{"path":7753,"title":7754,"module":7755,"summary":7756},"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity","Blackbody Radiation and Specific Intensity","Radiation and Matter","Specific intensity is the fundamental measure of a radiation field: energy per unit area, time, frequency, and solid angle. It is conserved along a ray in empty space, and its angular moments give the mean intensity, flux, and radiation pressure. In thermal equilibrium the intensity equals the Planck function, whose limits and integrals reproduce the Rayleigh-Jeans law, the Wien law, Stefan-Boltzmann, and Wien's displacement law.\n",{"path":7758,"title":7759,"module":7755,"summary":7760},"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation","Radiative Transfer and the Transfer Equation","Along a ray, matter adds intensity through emission and removes it through absorption. Measuring path length in optical depth turns this into the transfer equation, whose formal solution superposes an attenuated background on the source function integrated along the line of sight. In local thermodynamic equilibrium the source function is the Planck function, and the Eddington-Barbier relation shows that the emergent intensity samples the source function at optical depth of order unity, explaining absorption lines and solar limb darkening.\n",{"path":7762,"title":7763,"module":7755,"summary":7764},"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening","Spectral-Line Formation and Broadening","A spectral line is a bound-bound transition whose strength is set by an oscillator strength and whose shape is set by three broadening mechanisms: the Lorentzian natural and collisional wings, the Gaussian thermal Doppler core, and their Voigt convolution. Equivalent width measures the total absorption, and the curve of growth relates it to the number of absorbers through a linear, saturated, and damping regime, turning line strengths into abundances.\n",{"path":7766,"title":7767,"module":7755,"summary":7768},"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean","Opacity Sources and the Rosseland Mean","Stellar opacity comes from four processes: bound-bound line absorption, bound-free photoionization, free-free absorption, and electron scattering. The bound-free and free-free terms follow a Kramers law, electron scattering sets a frequency-flat floor, and the negative hydrogen ion dominates cool photospheres. The Rosseland mean averages these harmonically, weighting transparent frequencies because they carry the flux, and its value fixes the radiative temperature gradient and decides where a star becomes convective.\n",{"path":7770,"title":7771,"module":7772,"summary":7773},"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem","Hydrostatic Equilibrium and the Virial Theorem","Stellar Structure","A star holds itself up by balancing the inward pull of gravity against an outward pressure gradient. This balance, hydrostatic equilibrium, fixes a lower bound on the central pressure and, combined with the gravitational potential energy, yields the virial theorem. The virial relation gives a star a negative heat capacity, so that losing energy makes it hotter, and sets the Kelvin-Helmholtz timescale over which contraction alone can power the Sun.\n",{"path":7775,"title":7776,"module":7772,"summary":7777},"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure","The Equations of Stellar Structure","A static star is described by four coupled first-order differential equations in the interior mass or radius: mass conservation, hydrostatic equilibrium, energy generation, and energy transport. Closed with an equation of state, opacity, and reaction rates, and subject to central and surface boundary conditions, they determine the structure uniquely from mass and composition, the Vogt-Russell theorem. Energy moves by radiation until the temperature gradient exceeds the Schwarzschild limit, where convection takes over.\n",{"path":7779,"title":7780,"module":7772,"summary":7781},"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes","The Equation of State and Polytropes","Stellar pressure comes from gas, radiation, and, at high density, degenerate electrons. When pressure depends on density as a power law, hydrostatic equilibrium reduces to the Lane-Emden equation, whose solutions describe polytropes of index n. The relativistic degenerate case, n equal to three, gives a mass independent of radius, the Chandrasekhar mass. Eddington's standard model treats a radiation-supported star as an n equal to three polytrope and yields the quartic relating radiation fraction to mass.\n",{"path":7783,"title":7784,"module":7772,"summary":7785},"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model","The Standard Solar Model","The standard solar model integrates the structure equations for one solar mass and calibrates the composition and convection parameter to reproduce the Sun's observed luminosity, radius, and age. Helioseismology tests the model's sound speed through the Sun's acoustic p-mode oscillations, and the model predicts a neutrino flux by production channel. The measured deficit, the solar-neutrino problem, is resolved by matter-enhanced flavor oscillation, confirmed when SNO measured the total flux across all flavors.\n",{"path":7787,"title":7788,"module":7789,"summary":7790},"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak","Thermonuclear Reaction Rates and the Gamow Peak","Nuclear Astrophysics","Stellar fusion proceeds only by quantum tunneling through the Coulomb barrier, because thermal energies are a thousand times smaller than the barrier height. The reaction rate is an integral over the Maxwell–Boltzmann distribution and the tunneling probability, whose product is sharply peaked at the Gamow energy. The astrophysical S-factor isolates the nuclear physics from the barrier penetration, and the steep temperature dependence follows from the width and position of the Gamow peak.\n",{"path":7792,"title":7793,"module":7789,"summary":7794},"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno","Hydrogen Burning: pp Chains and the CNO Cycle","Four protons fuse into one helium-4 nucleus, releasing 26.7 MeV, through two competing networks. The pp chain begins with a weak-interaction bottleneck and branches three ways; the CNO cycle uses carbon, nitrogen, and oxygen as catalysts and is limited by nitrogen-14 proton capture. Their steep and gentle temperature dependences cross near 1.8e7 K, which divides pp-powered lower-main-sequence stars from CNO-powered upper-main-sequence stars.\n",{"path":7796,"title":7797,"module":7789,"summary":7798},"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process","Helium Burning and the Triple-Alpha Process","Helium fuses to carbon in two steps through the unbound beryllium-8 nucleus and a resonant excited state of carbon-12, the Hoyle state, whose existence was predicted from the observed carbon abundance. The rate scales as roughly the fortieth power of temperature, and in a degenerate low-mass core this drives the runaway helium flash. A competing alpha capture on carbon-12 sets the carbon-to-oxygen ratio and the composition of the resulting white dwarf.\n",{"path":7800,"title":7801,"module":7789,"summary":7802},"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis","Advanced Burning, the Iron Peak, and the s\u002Fr Processes","Massive stars burn carbon, neon, oxygen, and silicon in ever-shorter stages, building an onion-shell interior and reaching nuclear statistical equilibrium at the iron peak, where the binding-energy-per-nucleon curve turns over and fusion can release no more energy. Elements beyond iron form by neutron capture: the slow s-process in AGB stars tracks the valley of stability, while the rapid r-process in supernovae and neutron-star mergers builds the heaviest nuclei far from it.\n",{"path":7804,"title":7805,"module":7806,"summary":7807},"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium","The Phases of the Interstellar Medium","The Interstellar Medium","The gas between the stars separates into distinct thermal phases, from cold molecular clouds at 10 K to a diffuse million-degree corona, held near a common pressure by a balance of photoelectric heating and radiative cooling. Neutral hydrogen is traced by the 21-cm hyperfine line, dust reddens and extinguishes starlight along a characteristic wavelength law, and the ultraviolet output of hot stars carves ionized Strömgren spheres out of the surrounding gas.\n",{"path":7809,"title":7810,"module":7806,"summary":7811},"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse","Molecular Clouds and Gravitational Collapse","Stars form in cold, dense molecular clouds when self-gravity overcomes thermal and magnetic support. The virial theorem fixes the Jeans mass and length at which a clump becomes unstable, the free-fall time sets how fast it collapses, and a fragmentation cascade — cut off at a minimum mass by the onset of opacity — turns one cloud into a whole cluster, imprinting the stellar initial mass function.\n",{"path":7813,"title":7814,"module":7806,"summary":7815},"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence","Protostars and Pre-Main-Sequence Evolution","A collapsing core becomes optically thick and forms a protostar that grows by accretion through a disk while driving bipolar outflows. The newborn star appears on the birthline and contracts down the fully convective Hayashi track, then crosses the radiative Henyey track to the zero-age main sequence, powered by gravitational contraction until hydrogen ignites. Below about 0.08 solar masses degeneracy halts contraction before ignition, dividing stars from brown dwarfs.\n",{"path":7817,"title":7818,"module":7819,"summary":7820},"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure","The Main Sequence and Its Structure","Stellar Evolution","A star settles onto the zero-age main sequence when core hydrogen ignition halts contraction. Homology scaling of the structure equations reproduces the mass–luminosity relation, and the burning mode splits the sequence into an upper branch with a convective core and a lower branch with a convective envelope. The main-sequence lifetime falls steeply with mass, and the turnoff of a coeval cluster serves as a clock.\n",{"path":7822,"title":7823,"module":7819,"summary":7824},"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution","Post-Main-Sequence Evolution of Low-Mass Stars","When a low-mass star exhausts core hydrogen, burning moves to a shell, the core contracts, and the envelope swells into a red giant. A degenerate helium core ignites in a flash, settles onto the horizontal branch, and after a second contraction the star climbs the asymptotic giant branch with two burning shells. Thermal pulses and dredge-up enrich the surface, and mass loss ejects a planetary nebula, leaving a carbon–oxygen white dwarf.\n",{"path":7826,"title":7827,"module":7819,"summary":7828},"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars","The Evolution of Massive Stars","Stars above about eight solar masses burn through hydrogen, helium, carbon, neon, oxygen, and silicon in stages that grow shorter as neutrino losses accelerate contraction. The interior becomes an onion of concentric burning shells around an inert iron core. Radiation pressure near the Eddington limit drives fierce winds that can strip the hydrogen envelope entirely, and silicon burning builds an iron core toward the threshold of collapse.\n",{"path":7830,"title":7831,"module":7819,"summary":7832},"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip","Stellar Pulsation and the Instability Strip","Radial pulsation is a standing sound wave whose period scales inversely with the square root of the mean density. The kappa mechanism, an opacity valve seated in the helium partial-ionization zone, turns a star into a heat engine that pumps the oscillation. Stars in the instability strip pulsate as Cepheids, RR Lyrae, and Mira variables, and the Cepheid period–luminosity relation calibrates the distance ladder.\n",{"path":7834,"title":6250,"module":7835,"summary":7836},"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit","Stellar Death and Compact Remnants","A white dwarf is held up by the degeneracy pressure of its electrons, a quantum-mechanical stiffness that survives to zero temperature. Filling the Fermi sea sets a pressure that scales as density to the five-thirds power when the electrons are slow and only four-thirds when they are relativistic. The softer relativistic law produces the inverted mass-radius relation and a maximum mass, the Chandrasekhar limit near 1.4 solar masses, above which no cold equilibrium exists. Cooling and crystallization then turn the white-dwarf population into a clock for the Galactic disk.\n",{"path":7838,"title":7839,"module":7835,"summary":7840},"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae","Core-Collapse Supernovae","When a massive star builds an iron core past the Chandrasekhar mass, degeneracy fails and the core collapses in less than a second. Photodisintegration and electron capture remove pressure support and neutronize the matter; the collapse halts abruptly at nuclear density, launching a shock that stalls and is revived by neutrino heating. The event is a Type II or stripped-envelope Ib\u002FIc supernova, and the neutrinos from SN 1987A confirmed the picture directly.\n",{"path":7842,"title":7843,"module":7835,"summary":7844},"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia","Thermonuclear Supernovae","A carbon-oxygen white dwarf driven toward the Chandrasekhar mass ignites its degenerate fuel and unbinds itself in a thermonuclear runaway, the Type Ia supernova. The light curve is powered by the radioactive decay of nickel-56 to cobalt-56 to iron-56, and the Phillips relation between peak brightness and decline rate makes these events standardizable candles. Their near-uniform luminosity turns them into the distance indicators that revealed cosmic acceleration.\n",{"path":7846,"title":7847,"module":7835,"summary":7848},"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars","Neutron Stars and Pulsars","A neutron star is held up by neutron degeneracy and the repulsive nuclear force, with a maximum mass, the Tolman-Oppenheimer-Volkoff limit, set by an uncertain dense-matter equation of state. Its rotating magnetic dipole sweeps a beam past Earth as a pulsar, and magnetic braking traces a track across the period-period- derivative diagram. Millisecond pulsars, magnetars, glitches, and the orbital decay of the Hulse-Taylor binary follow from the same structure.\n",{"path":7850,"title":7851,"module":7835,"summary":7852},"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr","Black Holes, Schwarzschild and Kerr","Above the neutron-star mass limit gravity wins completely and the remnant is a black hole. The Schwarzschild solution gives the event horizon, gravitational redshift, and time dilation; the innermost stable circular orbit sets the efficiency of accretion. Rotating Kerr black holes drag spacetime and carry an ergosphere. Stellar-mass black holes are found in X-ray binaries, and the Event Horizon Telescope has imaged the shadow of a supermassive one.\n",{"path":7854,"title":7855,"module":7856,"summary":7857},"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer","Binary Systems and Mass Transfer","Binaries and Gravitational Waves","Most stars are born in pairs, and a binary is the only setting where a stellar mass can be measured directly. Visual, spectroscopic, and eclipsing binaries each expose a different combination of the orbital elements, and together they calibrate the mass-luminosity relation. When one star swells to fill its Roche lobe, gas streams through the inner Lagrange point onto its companion. Conservative transfer widens or shrinks the orbit depending on the mass ratio, and the sign of that response explains the Algol paradox.\n",{"path":7859,"title":7860,"module":7856,"summary":7861},"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects","Accreting Compact Objects","Gas falling onto a compact object converts gravitational binding energy into radiation with an efficiency set by the depth of the potential well, up to tens of percent of the rest mass for a neutron star or black hole. Angular momentum forces the flow into a disk, and viscous dissipation gives a temperature profile that falls as radius to the minus three-quarters, producing a multicolor blackbody spectrum. Radiation pressure caps the steady luminosity at the Eddington limit. Unstable nuclear burning of the accreted fuel powers classical novae on white dwarfs and Type I X-ray bursts on neutron stars.\n",{"path":7863,"title":7864,"module":7856,"summary":7865},"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries","Gravitational Waves from Inspiraling Binaries","A time-varying mass quadrupole radiates gravitational waves, ripples in spacetime that stretch and squeeze a ring of free masses along two polarizations. The radiated power drains a binary's orbital energy, shrinking the orbit and sweeping the wave frequency upward in a chirp whose rate fixes the chirp mass. Laser interferometers with kilometre arms measure the resulting strain of order ten to the minus twenty-one. The first detection, GW150914, matched a template for two merging black holes near thirty solar masses each.\n",{"path":7867,"title":7868,"module":7856,"summary":7869},"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts","Multimessenger Astronomy and Gamma-Ray Bursts","Gamma-ray bursts split into two populations: long bursts from the collapse of massive stars and short bursts from merging compact objects. The compactness problem forces the emitting plasma to move at ultra-relativistic speed, beaming the radiation into a narrow jet. The neutron-star merger GW170817 tied a gravitational chirp to a short gamma-ray burst, a radioactive kilonova, and a broadband afterglow, confirming that mergers forge r-process elements. A merger with a measured redshift is a standard siren that reads the Hubble constant from gravitational data alone.\n",{"path":7871,"title":7872,"module":7873,"summary":7874},"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way","The Milky Way Galaxy","Galaxies and Dark Matter","The Galaxy resolves into a thin disk of gas and young stars, a central bar and bulge, and a diffuse old halo studded with globular clusters. Star counts and the reddening of distant light map these components, while the differential rotation of the disk — encoded in the Oort constants and the flat rotation curve — measures the enclosed mass and reveals more than the stars can account for. Spiral arms are density waves, not material structures, and the innermost stellar orbits around Sgr A* weigh a four-million-solar-mass black hole.\n",{"path":7876,"title":7877,"module":7873,"summary":7878},"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification","Galaxy Morphology and Classification","Galaxies sort along the Hubble tuning fork from smooth ellipticals through lenticulars to grand-design and barred spirals, with irregulars off the end. The light of a spheroid follows the de Vaucouleurs quarter-power law while a disk fades exponentially, and the general Sérsic profile interpolates between them. Virial scaling relations — Tully–Fisher for disks, Faber–Jackson and the fundamental plane for spheroids — tie luminosity to internal motions, and the Schechter function fixes the abundance of galaxies as a function of luminosity.\n",{"path":7880,"title":7881,"module":7873,"summary":7882},"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter","Galaxy Rotation Curves and Dark Matter","The rotation curves of disk galaxies stay flat far beyond the light, demanding an extended halo whose density falls as the inverse square of radius. Decomposing the curve into disk, bulge, and halo, and fitting isothermal or NFW profiles, quantifies the missing mass. Gravitational lensing weighs the same mass without dynamics, the mass-to-light ratio climbs from stars to clusters, and the Bullet Cluster separates the collisionless dark matter from the colliding gas — evidence that MOND strains to match.\n",{"path":7884,"title":7885,"module":7873,"summary":7886},"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes","Active Galactic Nuclei","A small fraction of galaxies pour out enormous luminosity from a region smaller than the solar system. Accretion onto a supermassive black hole, limited by the Eddington balance of radiation pressure and gravity, powers the Seyferts, quasars, radio galaxies, and blazars — one engine seen from different angles through an obscuring torus. Relativistic jets produce apparent superluminal motion, reverberation mapping and stellar dynamics weigh the central mass, and the M–sigma relation ties that mass to the host bulge.\n",{"path":7888,"title":7889,"module":7873,"summary":7890},"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure","Galaxy Clusters and Large-Scale Structure","Galaxies gather into groups and rich clusters bound by a common dark halo and filled with hot X-ray gas. Three independent probes — the virial theorem, the hydrostatic X-ray temperature, and gravitational lensing — agree on a mass that dwarfs the stars. On the largest scales galaxies trace a cosmic web of filaments, walls, and voids, quantified by the two-point correlation function, whose baryon acoustic oscillation bump provides a standard ruler for cosmology.\n",{"path":7892,"title":7893,"module":7894,"summary":7895},"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law","The Expanding Universe and Hubble's Law","Cosmic Expansion and Dynamics","The universe is homogeneous and isotropic on large scales, so its expansion is captured by a single function of time, the scale factor. Comoving coordinates stay fixed while proper distances grow in proportion to the scale factor, producing Hubble's law and a cosmological redshift that measures stretched space rather than a Doppler shift. A Newtonian energy argument reproduces the dynamics, and the same finite, expanding cosmos resolves Olbers' paradox.\n",{"path":7897,"title":7898,"module":7894,"summary":7899},"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift","The FRW Metric and Cosmological Redshift","The geometry of a homogeneous, isotropic universe is fixed by symmetry to the Robertson-Walker metric, with the entire freedom reduced to a scale factor and a single curvature constant selecting an open, flat, or closed space. From the metric the null geodesic of light gives comoving distance, the exact cosmological redshift, and the distinction between the proper distance we cannot measure and the redshift we can.\n",{"path":7901,"title":4968,"module":7894,"summary":7902},"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics","The scale factor obeys the Friedmann equation, the acceleration equation, and the fluid equation, only two of which are independent. An equation of state fixes how each component behaves under expansion, so radiation dilutes as the inverse fourth power of the scale factor, matter as the inverse cube, and vacuum energy not at all. The critical density defines the density parameters, and the deceleration parameter encodes whether gravity or dark energy is winning.\n",{"path":7904,"title":7905,"module":7894,"summary":7906},"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances","Cosmological Models and Distances","Integrating the Friedmann equation for particular mixtures gives the benchmark models, from the matter-only Einstein-de Sitter universe to the concordance Lambda-CDM, each with its own scale-factor history and age. Because the redshift is the only direct observable, several distance measures diverge at high redshift, and the angular-diameter distance even turns over so that the most distant objects look larger. The horizon and lookback time set what is causally and observationally reachable.\n",{"path":7908,"title":7909,"module":7894,"summary":7910},"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe","Dark Energy and the Accelerating Universe","In 1998 two teams found that distant Type Ia supernovae are fainter than a decelerating universe predicts, revealing that the expansion is accelerating and that a component with negative pressure dominates the energy budget. The simplest candidate is the cosmological constant, or vacuum energy, with an equation of state near minus one. It works observationally but leaves two deep puzzles: why the vacuum energy is a hundred and twenty orders of magnitude smaller than expected, and why it is comparable to the matter density just now.\n",{"path":7912,"title":7913,"module":7914,"summary":7915},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe","The Thermal History of the Universe","The Hot Big Bang","Running the expansion backward compresses and heats the universe, so its past is a sequence of thermal epochs set by temperature. Temperature scales as the inverse scale factor; species stay in equilibrium while their interaction rate exceeds the expansion rate and freeze out when it drops below. The effective degrees of freedom count the relativistic species and step down through mass thresholds, and neutrino decoupling just before electron-positron annihilation leaves a relic neutrino background slightly cooler than the photons.\n",{"path":7917,"title":7918,"module":7914,"summary":7919},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis","Big Bang Nucleosynthesis","In the first three minutes the weak interactions freeze out the neutron-to-proton ratio, and once deuterium survives photodissociation a fast reaction network converts nearly all free neutrons into helium-4. The primordial abundances of deuterium, helium-3, helium-4, and lithium-7 depend on a single free parameter, the baryon-to-photon ratio, so measuring them fixes the baryon density. The predictions match observation across nine decades of abundance, with a persistent discrepancy in lithium-7.\n",{"path":7921,"title":7922,"module":7914,"summary":7923},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background","Recombination and the Cosmic Microwave Background","As the universe cooled through a few thousand kelvin the free electrons bound to protons, and the Saha equation tracks the falling ionization fraction. Once the plasma neutralized, photons stopped scattering and streamed freely from a spherical surface of last scattering at redshift about 1100. Those photons are the cosmic microwave background, an almost perfect blackbody at 2.725 kelvin with a dipole from our motion through it.\n",{"path":7925,"title":7926,"module":7914,"summary":7927},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters","CMB Anisotropies and Cosmological Parameters","The cosmic microwave background carries temperature fluctuations at the ten-parts-per-million level, imprinted by sound waves in the photon-baryon plasma before recombination. Decomposed into spherical harmonics, the fluctuations form an angular power spectrum whose acoustic peaks encode the geometry and contents of the universe: the first peak fixes spatial flatness, the odd-even peak ratio the baryon density, and the third peak the dark-matter density. Polarization adds an independent channel, and the Planck measurements pin the concordance parameters.\n",{"path":7929,"title":7930,"module":7914,"summary":7931},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation","Cosmic Inflation","The hot Big Bang leaves three initial-condition puzzles unexplained: why causally disconnected patches share a temperature, why the geometry is so nearly flat, and why no magnetic monopoles are seen. A brief epoch of accelerated expansion driven by a slowly rolling scalar field solves all three by stretching a small causal patch across the observable universe. The same accelerated expansion freezes quantum fluctuations into a near-scale-invariant spectrum of density perturbations, seeding all later structure.\n",{"path":7933,"title":7934,"module":7914,"summary":7935},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations","Structure Formation and the Growth of Perturbations","The near-uniform early universe grew its galaxies and clusters by gravitational instability acting on the tiny inflationary perturbations. In an expanding background the growth is slowed to a power law rather than the exponential of a static medium; perturbations stall during radiation domination and grow with the scale factor once matter dominates. The transfer function turns the primordial spectrum into the processed matter power spectrum, and cold dark matter builds structure from the bottom up.\n",{"path":7937,"title":7938,"module":7914,"summary":7939},"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions","Dark Matter, Dark Energy, and Open Questions","Five independent lines of evidence converge on a universe whose energy budget is dominated by dark energy and dark matter, with ordinary baryons a small remainder. The candidate particles for dark matter range from WIMPs to axions to sterile neutrinos, each with its own detection strategy. The concordance model fits the data with six parameters but leaves the nature of dark energy, the Hubble tension, small-scale structure, and the matter-antimatter asymmetry unexplained.\n",{"path":7941,"title":7942,"module":306,"summary":306},"\u002Fastrophysics-cosmology","Astrophysics & Cosmology",{"path":7944,"title":7945,"module":306,"summary":306},"\u002Fcolophon","Colophon",{"path":2142,"title":7947,"module":306,"summary":306},"Study Notes","\u003Csvg style=\"width:100%;max-width:581.100px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 435.825 401.333\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M106.804 322.863h45.525v-25.608h-45.525Z\"\u002F>\u003Cg transform=\"translate(11.112 42.567)\">\u003Cpath d=\"M115.229 270.225L112.847 270.225L112.847 269.928Q113.171 269.928 113.413 269.881Q113.655 269.834 113.655 269.666L113.655 265.323Q113.655 265.151 113.413 265.104Q113.171 265.057 112.847 265.057L112.847 264.760L115.792 264.760Q116.136 264.760 116.491 264.860Q116.847 264.959 117.141 265.151Q117.436 265.342 117.618 265.627Q117.800 265.913 117.800 266.272Q117.800 266.745 117.489 267.080Q117.179 267.416 116.714 267.588Q116.249 267.760 115.792 267.760L114.425 267.760L114.425 269.666Q114.425 269.834 114.667 269.881Q114.909 269.928 115.229 269.928L115.229 270.225M114.397 265.323L114.397 267.491L115.573 267.491Q116.261 267.491 116.599 267.215Q116.936 266.940 116.936 266.272Q116.936 265.608 116.599 265.332Q116.261 265.057 115.573 265.057L114.800 265.057Q114.581 265.057 114.489 265.100Q114.397 265.143 114.397 265.323M118.745 267.491Q118.745 266.897 118.977 266.366Q119.210 265.834 119.626 265.434Q120.042 265.034 120.575 264.813Q121.108 264.592 121.714 264.592Q122.151 264.592 122.550 264.774Q122.948 264.955 123.257 265.288L123.729 264.623Q123.761 264.592 123.792 264.592L123.839 264.592Q123.866 264.592 123.897 264.623Q123.929 264.655 123.929 264.682L123.929 266.819Q123.929 266.842 123.897 266.873Q123.866 266.905 123.839 266.905L123.722 266.905Q123.694 266.905 123.663 266.873Q123.632 266.842 123.632 266.819Q123.632 266.553 123.489 266.200Q123.347 265.846 123.167 265.608Q122.913 265.276 122.563 265.082Q122.214 264.889 121.808 264.889Q121.304 264.889 120.850 265.108Q120.397 265.327 120.104 265.721Q119.608 266.389 119.608 267.491Q119.608 268.022 119.745 268.489Q119.882 268.955 120.157 269.321Q120.433 269.686 120.852 269.891Q121.272 270.096 121.815 270.096Q122.304 270.096 122.727 269.852Q123.151 269.608 123.399 269.188Q123.647 268.768 123.647 268.272Q123.647 268.237 123.677 268.211Q123.706 268.186 123.737 268.186L123.839 268.186Q123.882 268.186 123.905 268.215Q123.929 268.245 123.929 268.288Q123.929 268.725 123.753 269.114Q123.577 269.502 123.266 269.786Q122.956 270.069 122.546 270.231Q122.136 270.393 121.714 270.393Q121.124 270.393 120.583 270.172Q120.042 269.952 119.626 269.547Q119.210 269.143 118.977 268.614Q118.745 268.084 118.745 267.491\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M92.578 285.874h73.977v-31.298H92.578Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-3.375 6.706)\">\u003Cpath d=\"M115.257 260.725L112.792 260.725L112.792 260.428Q113.124 260.428 113.382 260.381Q113.640 260.334 113.640 260.166L113.640 255.823Q113.640 255.557 112.792 255.557L112.792 255.260L115.257 255.260L115.257 255.557Q114.405 255.557 114.405 255.823L114.405 260.166Q114.405 260.428 115.257 260.428L115.257 260.725M117.718 260.725L115.862 260.725L115.862 260.428Q116.136 260.428 116.304 260.381Q116.472 260.334 116.472 260.166L116.472 258.030Q116.472 257.815 116.409 257.719Q116.347 257.623 116.227 257.602Q116.108 257.580 115.862 257.580L115.862 257.284L117.054 257.198L117.054 257.932Q117.167 257.717 117.360 257.549Q117.554 257.381 117.792 257.289Q118.030 257.198 118.284 257.198Q119.452 257.198 119.452 258.276L119.452 260.166Q119.452 260.334 119.622 260.381Q119.792 260.428 120.061 260.428L120.061 260.725L118.206 260.725L118.206 260.428Q118.479 260.428 118.647 260.381Q118.815 260.334 118.815 260.166L118.815 258.291Q118.815 257.909 118.694 257.680Q118.573 257.452 118.222 257.452Q117.909 257.452 117.655 257.614Q117.401 257.776 117.255 258.045Q117.108 258.315 117.108 258.612L117.108 260.166Q117.108 260.334 117.278 260.381Q117.448 260.428 117.718 260.428L117.718 260.725M120.550 260.717L120.550 259.495Q120.550 259.467 120.581 259.436Q120.612 259.405 120.636 259.405L120.741 259.405Q120.811 259.405 120.827 259.467Q120.890 259.788 121.028 260.028Q121.167 260.268 121.399 260.409Q121.632 260.549 121.940 260.549Q122.179 260.549 122.388 260.489Q122.597 260.428 122.733 260.280Q122.870 260.131 122.870 259.885Q122.870 259.631 122.659 259.465Q122.448 259.299 122.179 259.245L121.558 259.131Q121.151 259.053 120.850 258.797Q120.550 258.541 120.550 258.166Q120.550 257.799 120.751 257.577Q120.952 257.354 121.276 257.256Q121.600 257.159 121.940 257.159Q122.405 257.159 122.702 257.366L122.925 257.182Q122.948 257.159 122.979 257.159L123.030 257.159Q123.061 257.159 123.089 257.186Q123.116 257.213 123.116 257.245L123.116 258.229Q123.116 258.260 123.091 258.289Q123.065 258.319 123.030 258.319L122.925 258.319Q122.890 258.319 122.862 258.291Q122.835 258.264 122.835 258.229Q122.835 257.830 122.583 257.610Q122.331 257.389 121.933 257.389Q121.577 257.389 121.294 257.512Q121.011 257.635 121.011 257.940Q121.011 258.159 121.212 258.291Q121.413 258.424 121.659 258.467L122.284 258.580Q122.714 258.670 123.022 258.967Q123.331 259.264 123.331 259.678Q123.331 260.248 122.933 260.526Q122.534 260.803 121.940 260.803Q121.390 260.803 121.038 260.467L120.741 260.780Q120.718 260.803 120.683 260.803L120.636 260.803Q120.612 260.803 120.581 260.772Q120.550 260.741 120.550 260.717M124.483 259.764L124.483 257.573L123.780 257.573L123.780 257.319Q124.136 257.319 124.378 257.086Q124.620 256.854 124.731 256.506Q124.843 256.159 124.843 255.803L125.124 255.803L125.124 257.276L126.300 257.276L126.300 257.573L125.124 257.573L125.124 259.748Q125.124 260.069 125.243 260.297Q125.362 260.526 125.643 260.526Q125.823 260.526 125.940 260.403Q126.058 260.280 126.110 260.100Q126.163 259.920 126.163 259.748L126.163 259.276L126.444 259.276L126.444 259.764Q126.444 260.018 126.339 260.258Q126.233 260.498 126.036 260.651Q125.839 260.803 125.581 260.803Q125.265 260.803 125.013 260.680Q124.761 260.557 124.622 260.323Q124.483 260.088 124.483 259.764M129.171 260.725L127.190 260.725L127.190 260.428Q127.460 260.428 127.628 260.383Q127.796 260.338 127.796 260.166L127.796 258.030Q127.796 257.815 127.733 257.719Q127.671 257.623 127.554 257.602Q127.436 257.580 127.190 257.580L127.190 257.284L128.358 257.198L128.358 257.983Q128.436 257.772 128.589 257.586Q128.741 257.401 128.940 257.299Q129.140 257.198 129.366 257.198Q129.612 257.198 129.804 257.342Q129.995 257.487 129.995 257.717Q129.995 257.873 129.890 257.983Q129.784 258.092 129.628 258.092Q129.472 258.092 129.362 257.983Q129.253 257.873 129.253 257.717Q129.253 257.557 129.358 257.452Q129.034 257.452 128.819 257.680Q128.604 257.909 128.509 258.248Q128.413 258.588 128.413 258.893L128.413 260.166Q128.413 260.334 128.640 260.381Q128.866 260.428 129.171 260.428L129.171 260.725M131.159 259.772L131.159 258.030Q131.159 257.815 131.097 257.719Q131.034 257.623 130.915 257.602Q130.796 257.580 130.550 257.580L130.550 257.284L131.796 257.198L131.796 259.748L131.796 259.772Q131.796 260.084 131.850 260.246Q131.905 260.409 132.056 260.479Q132.206 260.549 132.526 260.549Q132.956 260.549 133.229 260.211Q133.503 259.873 133.503 259.428L133.503 258.030Q133.503 257.815 133.440 257.719Q133.378 257.623 133.259 257.602Q133.140 257.580 132.893 257.580L132.893 257.284L134.140 257.198L134.140 259.983Q134.140 260.194 134.202 260.289Q134.265 260.385 134.384 260.407Q134.503 260.428 134.749 260.428L134.749 260.725L133.526 260.803L133.526 260.182Q133.358 260.471 133.077 260.637Q132.796 260.803 132.475 260.803Q131.159 260.803 131.159 259.772M135.237 258.998Q135.237 258.502 135.487 258.077Q135.737 257.651 136.157 257.405Q136.577 257.159 137.077 257.159Q137.616 257.159 138.007 257.284Q138.397 257.409 138.397 257.823Q138.397 257.928 138.347 258.020Q138.296 258.112 138.204 258.163Q138.112 258.213 138.003 258.213Q137.897 258.213 137.806 258.163Q137.714 258.112 137.663 258.020Q137.612 257.928 137.612 257.823Q137.612 257.600 137.780 257.495Q137.558 257.436 137.085 257.436Q136.788 257.436 136.573 257.575Q136.358 257.713 136.227 257.944Q136.097 258.174 136.038 258.444Q135.979 258.713 135.979 258.998Q135.979 259.393 136.112 259.743Q136.245 260.092 136.516 260.309Q136.788 260.526 137.186 260.526Q137.561 260.526 137.837 260.309Q138.112 260.092 138.214 259.733Q138.229 259.670 138.292 259.670L138.397 259.670Q138.433 259.670 138.458 259.698Q138.483 259.725 138.483 259.764L138.483 259.788Q138.350 260.268 137.966 260.536Q137.581 260.803 137.077 260.803Q136.714 260.803 136.380 260.666Q136.046 260.530 135.786 260.280Q135.526 260.030 135.382 259.694Q135.237 259.358 135.237 258.998M139.597 259.764L139.597 257.573L138.893 257.573L138.893 257.319Q139.249 257.319 139.491 257.086Q139.733 256.854 139.845 256.506Q139.956 256.159 139.956 255.803L140.237 255.803L140.237 257.276L141.413 257.276L141.413 257.573L140.237 257.573L140.237 259.748Q140.237 260.069 140.356 260.297Q140.475 260.526 140.757 260.526Q140.936 260.526 141.054 260.403Q141.171 260.280 141.224 260.100Q141.276 259.920 141.276 259.748L141.276 259.276L141.558 259.276L141.558 259.764Q141.558 260.018 141.452 260.258Q141.347 260.498 141.149 260.651Q140.952 260.803 140.694 260.803Q140.378 260.803 140.126 260.680Q139.874 260.557 139.735 260.323Q139.597 260.088 139.597 259.764M144.136 260.725L142.358 260.725L142.358 260.428Q142.632 260.428 142.800 260.381Q142.968 260.334 142.968 260.166L142.968 258.030Q142.968 257.815 142.911 257.719Q142.854 257.623 142.741 257.602Q142.628 257.580 142.382 257.580L142.382 257.284L143.581 257.198L143.581 260.166Q143.581 260.334 143.727 260.381Q143.874 260.428 144.136 260.428L144.136 260.725M142.694 255.803Q142.694 255.612 142.829 255.481Q142.964 255.350 143.159 255.350Q143.280 255.350 143.384 255.413Q143.487 255.475 143.550 255.579Q143.612 255.682 143.612 255.803Q143.612 255.998 143.481 256.133Q143.350 256.268 143.159 256.268Q142.960 256.268 142.827 256.135Q142.694 256.002 142.694 255.803M144.636 259.030Q144.636 258.526 144.891 258.094Q145.147 257.663 145.583 257.411Q146.018 257.159 146.518 257.159Q146.905 257.159 147.247 257.303Q147.589 257.448 147.850 257.709Q148.112 257.971 148.255 258.307Q148.397 258.643 148.397 259.030Q148.397 259.522 148.134 259.932Q147.870 260.342 147.440 260.573Q147.011 260.803 146.518 260.803Q146.026 260.803 145.593 260.571Q145.159 260.338 144.897 259.930Q144.636 259.522 144.636 259.030M146.518 260.526Q146.975 260.526 147.227 260.303Q147.479 260.080 147.567 259.729Q147.655 259.377 147.655 258.932Q147.655 258.502 147.561 258.164Q147.468 257.827 147.214 257.620Q146.960 257.413 146.518 257.413Q145.870 257.413 145.626 257.829Q145.382 258.245 145.382 258.932Q145.382 259.377 145.470 259.729Q145.558 260.080 145.809 260.303Q146.061 260.526 146.518 260.526M150.811 260.725L148.956 260.725L148.956 260.428Q149.229 260.428 149.397 260.381Q149.565 260.334 149.565 260.166L149.565 258.030Q149.565 257.815 149.503 257.719Q149.440 257.623 149.321 257.602Q149.202 257.580 148.956 257.580L148.956 257.284L150.147 257.198L150.147 257.932Q150.261 257.717 150.454 257.549Q150.647 257.381 150.886 257.289Q151.124 257.198 151.378 257.198Q152.546 257.198 152.546 258.276L152.546 260.166Q152.546 260.334 152.716 260.381Q152.886 260.428 153.155 260.428L153.155 260.725L151.300 260.725L151.300 260.428Q151.573 260.428 151.741 260.381Q151.909 260.334 151.909 260.166L151.909 258.291Q151.909 257.909 151.788 257.680Q151.667 257.452 151.315 257.452Q151.003 257.452 150.749 257.614Q150.495 257.776 150.349 258.045Q150.202 258.315 150.202 258.612L150.202 260.166Q150.202 260.334 150.372 260.381Q150.542 260.428 150.811 260.428\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-3.375 6.706)\">\u003Cpath d=\"M120.113 270.225L118.257 270.225L118.257 269.928Q118.531 269.928 118.699 269.881Q118.867 269.834 118.867 269.666L118.867 267.530Q118.867 267.315 118.804 267.219Q118.742 267.123 118.623 267.102Q118.504 267.080 118.257 267.080L118.257 266.784L119.449 266.698L119.449 267.432Q119.562 267.217 119.756 267.049Q119.949 266.881 120.187 266.789Q120.425 266.698 120.679 266.698Q121.640 266.698 121.816 267.409Q122 267.080 122.328 266.889Q122.656 266.698 123.035 266.698Q124.211 266.698 124.211 267.776L124.211 269.666Q124.211 269.834 124.379 269.881Q124.547 269.928 124.816 269.928L124.816 270.225L122.961 270.225L122.961 269.928Q123.234 269.928 123.402 269.883Q123.570 269.838 123.570 269.666L123.570 267.791Q123.570 267.405 123.445 267.178Q123.320 266.952 122.968 266.952Q122.664 266.952 122.408 267.114Q122.152 267.276 122.004 267.545Q121.855 267.815 121.855 268.112L121.855 269.666Q121.855 269.834 122.025 269.881Q122.195 269.928 122.465 269.928L122.465 270.225L120.609 270.225L120.609 269.928Q120.882 269.928 121.050 269.881Q121.218 269.834 121.218 269.666L121.218 267.791Q121.218 267.405 121.093 267.178Q120.968 266.952 120.617 266.952Q120.312 266.952 120.056 267.114Q119.800 267.276 119.652 267.545Q119.504 267.815 119.504 268.112L119.504 269.666Q119.504 269.834 119.674 269.881Q119.843 269.928 120.113 269.928L120.113 270.225M125.261 268.471Q125.261 267.991 125.494 267.575Q125.726 267.159 126.136 266.909Q126.547 266.659 127.023 266.659Q127.754 266.659 128.152 267.100Q128.550 267.541 128.550 268.272Q128.550 268.377 128.457 268.401L126.007 268.401L126.007 268.471Q126.007 268.881 126.129 269.237Q126.250 269.592 126.521 269.809Q126.793 270.026 127.222 270.026Q127.586 270.026 127.882 269.797Q128.179 269.569 128.281 269.217Q128.289 269.170 128.375 269.155L128.457 269.155Q128.550 269.182 128.550 269.264Q128.550 269.272 128.543 269.303Q128.480 269.530 128.341 269.713Q128.203 269.897 128.011 270.030Q127.820 270.163 127.601 270.233Q127.382 270.303 127.144 270.303Q126.773 270.303 126.435 270.166Q126.097 270.030 125.830 269.778Q125.562 269.526 125.412 269.186Q125.261 268.846 125.261 268.471M126.015 268.163L127.976 268.163Q127.976 267.858 127.875 267.567Q127.773 267.276 127.556 267.094Q127.340 266.913 127.023 266.913Q126.722 266.913 126.492 267.100Q126.261 267.288 126.138 267.579Q126.015 267.870 126.015 268.163M130.968 270.225L129.113 270.225L129.113 269.928Q129.386 269.928 129.554 269.881Q129.722 269.834 129.722 269.666L129.722 267.530Q129.722 267.315 129.660 267.219Q129.597 267.123 129.478 267.102Q129.359 267.080 129.113 267.080L129.113 266.784L130.304 266.698L130.304 267.432Q130.418 267.217 130.611 267.049Q130.804 266.881 131.043 266.789Q131.281 266.698 131.535 266.698Q132.496 266.698 132.672 267.409Q132.855 267.080 133.183 266.889Q133.511 266.698 133.890 266.698Q135.066 266.698 135.066 267.776L135.066 269.666Q135.066 269.834 135.234 269.881Q135.402 269.928 135.672 269.928L135.672 270.225L133.816 270.225L133.816 269.928Q134.090 269.928 134.257 269.883Q134.425 269.838 134.425 269.666L134.425 267.791Q134.425 267.405 134.300 267.178Q134.175 266.952 133.824 266.952Q133.519 266.952 133.263 267.114Q133.007 267.276 132.859 267.545Q132.711 267.815 132.711 268.112L132.711 269.666Q132.711 269.834 132.881 269.881Q133.050 269.928 133.320 269.928L133.320 270.225L131.465 270.225L131.465 269.928Q131.738 269.928 131.906 269.881Q132.074 269.834 132.074 269.666L132.074 267.791Q132.074 267.405 131.949 267.178Q131.824 266.952 131.472 266.952Q131.168 266.952 130.912 267.114Q130.656 267.276 130.507 267.545Q130.359 267.815 130.359 268.112L130.359 269.666Q130.359 269.834 130.529 269.881Q130.699 269.928 130.968 269.928L130.968 270.225M136.117 268.530Q136.117 268.026 136.373 267.594Q136.629 267.163 137.064 266.911Q137.500 266.659 138 266.659Q138.386 266.659 138.728 266.803Q139.070 266.948 139.332 267.209Q139.593 267.471 139.736 267.807Q139.879 268.143 139.879 268.530Q139.879 269.022 139.615 269.432Q139.351 269.842 138.922 270.073Q138.492 270.303 138 270.303Q137.507 270.303 137.074 270.071Q136.640 269.838 136.379 269.430Q136.117 269.022 136.117 268.530M138 270.026Q138.457 270.026 138.709 269.803Q138.961 269.580 139.049 269.229Q139.136 268.877 139.136 268.432Q139.136 268.002 139.043 267.664Q138.949 267.327 138.695 267.120Q138.441 266.913 138 266.913Q137.351 266.913 137.107 267.329Q136.863 267.745 136.863 268.432Q136.863 268.877 136.951 269.229Q137.039 269.580 137.291 269.803Q137.543 270.026 138 270.026M142.371 270.225L140.390 270.225L140.390 269.928Q140.660 269.928 140.828 269.883Q140.996 269.838 140.996 269.666L140.996 267.530Q140.996 267.315 140.933 267.219Q140.871 267.123 140.754 267.102Q140.636 267.080 140.390 267.080L140.390 266.784L141.558 266.698L141.558 267.483Q141.636 267.272 141.789 267.086Q141.941 266.901 142.140 266.799Q142.340 266.698 142.566 266.698Q142.812 266.698 143.004 266.842Q143.195 266.987 143.195 267.217Q143.195 267.373 143.090 267.483Q142.984 267.592 142.828 267.592Q142.672 267.592 142.562 267.483Q142.453 267.373 142.453 267.217Q142.453 267.057 142.558 266.952Q142.234 266.952 142.019 267.180Q141.804 267.409 141.709 267.748Q141.613 268.088 141.613 268.393L141.613 269.666Q141.613 269.834 141.840 269.881Q142.066 269.928 142.371 269.928L142.371 270.225M144.093 271.522Q144.207 271.600 144.382 271.600Q144.672 271.600 144.892 271.387Q145.113 271.174 145.238 270.873L145.527 270.225L144.254 267.338Q144.172 267.163 144.027 267.118Q143.882 267.073 143.613 267.073L143.613 266.776L145.332 266.776L145.332 267.073Q144.910 267.073 144.910 267.256Q144.910 267.268 144.925 267.338L145.863 269.463L146.695 267.553Q146.734 267.463 146.734 267.385Q146.734 267.245 146.632 267.159Q146.531 267.073 146.390 267.073L146.390 266.776L147.742 266.776L147.742 267.073Q147.488 267.073 147.295 267.198Q147.101 267.323 146.996 267.553L145.550 270.873Q145.437 271.127 145.271 271.350Q145.105 271.573 144.877 271.715Q144.648 271.858 144.382 271.858Q144.086 271.858 143.845 271.666Q143.605 271.475 143.605 271.186Q143.605 271.030 143.711 270.928Q143.816 270.827 143.965 270.827Q144.070 270.827 144.150 270.873Q144.230 270.920 144.277 270.998Q144.324 271.077 144.324 271.186Q144.324 271.307 144.263 271.395Q144.203 271.483 144.093 271.522\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M86.887 217.588h85.359V186.29H86.887Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-5.405 -66.286)\">\u003Cpath d=\"M115.206 270.225L112.847 270.225L112.847 269.928Q113.171 269.928 113.413 269.881Q113.655 269.834 113.655 269.666L113.655 265.323Q113.655 265.151 113.413 265.104Q113.171 265.057 112.847 265.057L112.847 264.760L115.440 264.760Q115.772 264.760 116.159 264.846Q116.546 264.932 116.893 265.106Q117.241 265.280 117.460 265.561Q117.679 265.842 117.679 266.209Q117.679 266.534 117.477 266.799Q117.276 267.065 116.970 267.241Q116.663 267.416 116.335 267.506Q116.702 267.627 116.962 267.897Q117.222 268.166 117.272 268.530L117.366 269.225Q117.436 269.674 117.534 269.905Q117.632 270.135 117.929 270.135Q118.175 270.135 118.308 269.918Q118.440 269.702 118.440 269.440Q118.460 269.366 118.542 269.346L118.624 269.346Q118.718 269.370 118.718 269.463Q118.718 269.694 118.620 269.909Q118.522 270.123 118.345 270.258Q118.167 270.393 117.936 270.393Q117.339 270.393 116.921 270.106Q116.503 269.819 116.503 269.248L116.503 268.553Q116.503 268.272 116.350 268.057Q116.198 267.842 115.948 267.729Q115.698 267.616 115.425 267.616L114.397 267.616L114.397 269.666Q114.397 269.830 114.641 269.879Q114.886 269.928 115.206 269.928L115.206 270.225M114.397 265.323L114.397 267.362L115.327 267.362Q115.647 267.362 115.915 267.309Q116.183 267.256 116.382 267.129Q116.581 267.002 116.698 266.770Q116.815 266.538 116.815 266.209Q116.815 265.557 116.419 265.307Q116.022 265.057 115.327 265.057L114.800 265.057Q114.581 265.057 114.489 265.100Q114.397 265.143 114.397 265.323M118.979 268.471Q118.979 267.991 119.212 267.575Q119.444 267.159 119.854 266.909Q120.265 266.659 120.741 266.659Q121.472 266.659 121.870 267.100Q122.268 267.541 122.268 268.272Q122.268 268.377 122.175 268.401L119.725 268.401L119.725 268.471Q119.725 268.881 119.847 269.237Q119.968 269.592 120.239 269.809Q120.511 270.026 120.940 270.026Q121.304 270.026 121.600 269.797Q121.897 269.569 121.999 269.217Q122.007 269.170 122.093 269.155L122.175 269.155Q122.268 269.182 122.268 269.264Q122.268 269.272 122.261 269.303Q122.198 269.530 122.059 269.713Q121.921 269.897 121.729 270.030Q121.538 270.163 121.319 270.233Q121.100 270.303 120.862 270.303Q120.491 270.303 120.153 270.166Q119.815 270.030 119.548 269.778Q119.280 269.526 119.130 269.186Q118.979 268.846 118.979 268.471M119.733 268.163L121.694 268.163Q121.694 267.858 121.593 267.567Q121.491 267.276 121.274 267.094Q121.058 266.913 120.741 266.913Q120.440 266.913 120.210 267.100Q119.979 267.288 119.856 267.579Q119.733 267.870 119.733 268.163M122.757 270.834Q122.757 270.553 122.968 270.342Q123.179 270.131 123.464 270.041Q123.308 269.916 123.229 269.727Q123.151 269.538 123.151 269.338Q123.151 268.983 123.382 268.690Q123.015 268.350 123.015 267.881Q123.015 267.530 123.218 267.260Q123.421 266.991 123.741 266.844Q124.061 266.698 124.405 266.698Q124.925 266.698 125.296 266.979Q125.659 266.608 126.206 266.608Q126.386 266.608 126.513 266.735Q126.640 266.862 126.640 267.041Q126.640 267.147 126.561 267.225Q126.483 267.303 126.374 267.303Q126.265 267.303 126.188 267.227Q126.112 267.151 126.112 267.041Q126.112 266.940 126.151 266.889Q126.159 266.881 126.163 266.875Q126.167 266.870 126.167 266.866Q125.792 266.866 125.472 267.120Q125.792 267.459 125.792 267.881Q125.792 268.151 125.675 268.368Q125.558 268.584 125.352 268.743Q125.147 268.901 124.905 268.983Q124.663 269.065 124.405 269.065Q124.186 269.065 123.974 269.006Q123.761 268.948 123.565 268.827Q123.472 268.967 123.472 269.147Q123.472 269.354 123.608 269.506Q123.745 269.659 123.952 269.659L124.647 269.659Q125.136 269.659 125.548 269.743Q125.960 269.827 126.239 270.084Q126.518 270.342 126.518 270.834Q126.518 271.198 126.198 271.430Q125.878 271.663 125.436 271.764Q124.995 271.866 124.640 271.866Q124.284 271.866 123.841 271.764Q123.397 271.663 123.077 271.430Q122.757 271.198 122.757 270.834M123.261 270.834Q123.261 271.030 123.405 271.178Q123.550 271.327 123.763 271.416Q123.975 271.506 124.216 271.553Q124.456 271.600 124.640 271.600Q124.882 271.600 125.212 271.522Q125.542 271.444 125.778 271.270Q126.015 271.096 126.015 270.834Q126.015 270.428 125.604 270.319Q125.194 270.209 124.632 270.209L123.952 270.209Q123.683 270.209 123.472 270.387Q123.261 270.565 123.261 270.834M124.405 268.799Q125.128 268.799 125.128 267.881Q125.128 266.959 124.405 266.959Q123.679 266.959 123.679 267.881Q123.679 268.799 124.405 268.799M128.862 270.225L127.085 270.225L127.085 269.928Q127.358 269.928 127.526 269.881Q127.694 269.834 127.694 269.666L127.694 267.530Q127.694 267.315 127.638 267.219Q127.581 267.123 127.468 267.102Q127.354 267.080 127.108 267.080L127.108 266.784L128.308 266.698L128.308 269.666Q128.308 269.834 128.454 269.881Q128.600 269.928 128.862 269.928L128.862 270.225M127.421 265.303Q127.421 265.112 127.556 264.981Q127.690 264.850 127.886 264.850Q128.007 264.850 128.110 264.913Q128.214 264.975 128.276 265.079Q128.339 265.182 128.339 265.303Q128.339 265.498 128.208 265.633Q128.077 265.768 127.886 265.768Q127.686 265.768 127.554 265.635Q127.421 265.502 127.421 265.303M129.405 270.217L129.405 268.995Q129.405 268.967 129.436 268.936Q129.468 268.905 129.491 268.905L129.597 268.905Q129.667 268.905 129.683 268.967Q129.745 269.288 129.884 269.528Q130.022 269.768 130.255 269.909Q130.487 270.049 130.796 270.049Q131.034 270.049 131.243 269.989Q131.452 269.928 131.589 269.780Q131.725 269.631 131.725 269.385Q131.725 269.131 131.515 268.965Q131.304 268.799 131.034 268.745L130.413 268.631Q130.007 268.553 129.706 268.297Q129.405 268.041 129.405 267.666Q129.405 267.299 129.606 267.077Q129.808 266.854 130.132 266.756Q130.456 266.659 130.796 266.659Q131.261 266.659 131.558 266.866L131.780 266.682Q131.804 266.659 131.835 266.659L131.886 266.659Q131.917 266.659 131.944 266.686Q131.972 266.713 131.972 266.745L131.972 267.729Q131.972 267.760 131.946 267.789Q131.921 267.819 131.886 267.819L131.780 267.819Q131.745 267.819 131.718 267.791Q131.690 267.764 131.690 267.729Q131.690 267.330 131.438 267.110Q131.186 266.889 130.788 266.889Q130.433 266.889 130.149 267.012Q129.866 267.135 129.866 267.440Q129.866 267.659 130.067 267.791Q130.268 267.924 130.515 267.967L131.140 268.080Q131.569 268.170 131.878 268.467Q132.186 268.764 132.186 269.178Q132.186 269.748 131.788 270.026Q131.390 270.303 130.796 270.303Q130.245 270.303 129.893 269.967L129.597 270.280Q129.573 270.303 129.538 270.303L129.491 270.303Q129.468 270.303 129.436 270.272Q129.405 270.241 129.405 270.217M133.339 269.264L133.339 267.073L132.636 267.073L132.636 266.819Q132.991 266.819 133.233 266.586Q133.475 266.354 133.587 266.006Q133.698 265.659 133.698 265.303L133.979 265.303L133.979 266.776L135.155 266.776L135.155 267.073L133.979 267.073L133.979 269.248Q133.979 269.569 134.099 269.797Q134.218 270.026 134.499 270.026Q134.679 270.026 134.796 269.903Q134.913 269.780 134.966 269.600Q135.018 269.420 135.018 269.248L135.018 268.776L135.300 268.776L135.300 269.264Q135.300 269.518 135.194 269.758Q135.089 269.998 134.891 270.151Q134.694 270.303 134.436 270.303Q134.120 270.303 133.868 270.180Q133.616 270.057 133.477 269.823Q133.339 269.588 133.339 269.264M136.018 268.471Q136.018 267.991 136.251 267.575Q136.483 267.159 136.893 266.909Q137.304 266.659 137.780 266.659Q138.511 266.659 138.909 267.100Q139.308 267.541 139.308 268.272Q139.308 268.377 139.214 268.401L136.765 268.401L136.765 268.471Q136.765 268.881 136.886 269.237Q137.007 269.592 137.278 269.809Q137.550 270.026 137.979 270.026Q138.343 270.026 138.640 269.797Q138.936 269.569 139.038 269.217Q139.046 269.170 139.132 269.155L139.214 269.155Q139.308 269.182 139.308 269.264Q139.308 269.272 139.300 269.303Q139.237 269.530 139.099 269.713Q138.960 269.897 138.768 270.030Q138.577 270.163 138.358 270.233Q138.140 270.303 137.901 270.303Q137.530 270.303 137.192 270.166Q136.854 270.030 136.587 269.778Q136.319 269.526 136.169 269.186Q136.018 268.846 136.018 268.471M136.772 268.163L138.733 268.163Q138.733 267.858 138.632 267.567Q138.530 267.276 138.313 267.094Q138.097 266.913 137.780 266.913Q137.479 266.913 137.249 267.100Q137.018 267.288 136.895 267.579Q136.772 267.870 136.772 268.163M141.804 270.225L139.823 270.225L139.823 269.928Q140.093 269.928 140.261 269.883Q140.429 269.838 140.429 269.666L140.429 267.530Q140.429 267.315 140.366 267.219Q140.304 267.123 140.186 267.102Q140.069 267.080 139.823 267.080L139.823 266.784L140.991 266.698L140.991 267.483Q141.069 267.272 141.222 267.086Q141.374 266.901 141.573 266.799Q141.772 266.698 141.999 266.698Q142.245 266.698 142.436 266.842Q142.628 266.987 142.628 267.217Q142.628 267.373 142.522 267.483Q142.417 267.592 142.261 267.592Q142.104 267.592 141.995 267.483Q141.886 267.373 141.886 267.217Q141.886 267.057 141.991 266.952Q141.667 266.952 141.452 267.180Q141.237 267.409 141.141 267.748Q141.046 268.088 141.046 268.393L141.046 269.666Q141.046 269.834 141.272 269.881Q141.499 269.928 141.804 269.928\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-5.405 -66.286)\">\u003Cpath d=\"M148.024 270.225L146.039 270.225L146.039 269.928Q146.313 269.928 146.481 269.881Q146.649 269.834 146.649 269.666L146.649 267.073L146.008 267.073L146.008 266.776L146.649 266.776L146.649 265.842Q146.649 265.577 146.766 265.340Q146.883 265.104 147.076 264.940Q147.270 264.776 147.518 264.684Q147.766 264.592 148.031 264.592Q148.317 264.592 148.541 264.750Q148.766 264.909 148.766 265.186Q148.766 265.342 148.660 265.452Q148.555 265.561 148.391 265.561Q148.235 265.561 148.125 265.452Q148.016 265.342 148.016 265.186Q148.016 264.979 148.176 264.873Q148.078 264.850 147.985 264.850Q147.754 264.850 147.582 265.006Q147.410 265.163 147.324 265.399Q147.239 265.635 147.239 265.858L147.239 266.776L148.207 266.776L148.207 267.073L147.262 267.073L147.262 269.666Q147.262 269.834 147.489 269.881Q147.715 269.928 148.024 269.928\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-5.405 -66.286)\">\u003Cpath d=\"M151.046 270.225L149.268 270.225L149.268 269.928Q149.542 269.928 149.710 269.881Q149.878 269.834 149.878 269.666L149.878 267.530Q149.878 267.315 149.821 267.219Q149.764 267.123 149.651 267.102Q149.538 267.080 149.292 267.080L149.292 266.784L150.491 266.698L150.491 269.666Q150.491 269.834 150.637 269.881Q150.784 269.928 151.046 269.928L151.046 270.225M149.604 265.303Q149.604 265.112 149.739 264.981Q149.874 264.850 150.069 264.850Q150.190 264.850 150.294 264.913Q150.397 264.975 150.460 265.079Q150.522 265.182 150.522 265.303Q150.522 265.498 150.391 265.633Q150.261 265.768 150.069 265.768Q149.870 265.768 149.737 265.635Q149.604 265.502 149.604 265.303M153.460 270.225L151.628 270.225L151.628 269.928Q151.901 269.928 152.069 269.881Q152.237 269.834 152.237 269.666L152.237 265.506Q152.237 265.291 152.175 265.196Q152.112 265.100 151.993 265.079Q151.874 265.057 151.628 265.057L151.628 264.760L152.850 264.674L152.850 269.666Q152.850 269.834 153.018 269.881Q153.186 269.928 153.460 269.928L153.460 270.225M153.905 268.471Q153.905 267.991 154.137 267.575Q154.370 267.159 154.780 266.909Q155.190 266.659 155.667 266.659Q156.397 266.659 156.796 267.100Q157.194 267.541 157.194 268.272Q157.194 268.377 157.100 268.401L154.651 268.401L154.651 268.471Q154.651 268.881 154.772 269.237Q154.893 269.592 155.165 269.809Q155.436 270.026 155.866 270.026Q156.229 270.026 156.526 269.797Q156.823 269.569 156.925 269.217Q156.932 269.170 157.018 269.155L157.100 269.155Q157.194 269.182 157.194 269.264Q157.194 269.272 157.186 269.303Q157.124 269.530 156.985 269.713Q156.846 269.897 156.655 270.030Q156.464 270.163 156.245 270.233Q156.026 270.303 155.788 270.303Q155.417 270.303 155.079 270.166Q154.741 270.030 154.473 269.778Q154.206 269.526 154.055 269.186Q153.905 268.846 153.905 268.471M154.659 268.163L156.620 268.163Q156.620 267.858 156.518 267.567Q156.417 267.276 156.200 267.094Q155.983 266.913 155.667 266.913Q155.366 266.913 155.136 267.100Q154.905 267.288 154.782 267.579Q154.659 267.870 154.659 268.163\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M101.114 163.528h22.762V137.92h-22.762Z\"\u002F>\u003Cg transform=\"translate(-8.285 -117.07)\">\u003Cpath d=\"M112.868 269.497Q112.868 269.165 113.091 268.938Q113.315 268.711 113.659 268.583Q114.002 268.454 114.375 268.402Q114.747 268.349 115.052 268.349L115.052 268.096Q115.052 267.891 114.944 267.711Q114.836 267.532 114.655 267.429Q114.474 267.327 114.266 267.327Q113.859 267.327 113.623 267.419Q113.712 267.456 113.758 267.540Q113.804 267.624 113.804 267.726Q113.804 267.822 113.758 267.901Q113.712 267.979 113.631 268.024Q113.551 268.068 113.462 268.068Q113.312 268.068 113.211 267.971Q113.110 267.873 113.110 267.726Q113.110 267.104 114.266 267.104Q114.477 267.104 114.727 267.168Q114.976 267.231 115.178 267.350Q115.380 267.470 115.506 267.655Q115.633 267.839 115.633 268.082L115.633 269.658Q115.633 269.774 115.694 269.870Q115.756 269.965 115.869 269.965Q115.978 269.965 116.043 269.871Q116.108 269.777 116.108 269.658L116.108 269.210L116.374 269.210L116.374 269.658Q116.374 269.928 116.147 270.093Q115.920 270.259 115.640 270.259Q115.431 270.259 115.294 270.105Q115.158 269.952 115.134 269.736Q114.987 270.003 114.705 270.148Q114.423 270.293 114.098 270.293Q113.821 270.293 113.537 270.218Q113.254 270.143 113.061 269.964Q112.868 269.784 112.868 269.497M113.483 269.497Q113.483 269.671 113.584 269.801Q113.684 269.931 113.840 270.001Q113.995 270.071 114.160 270.071Q114.378 270.071 114.587 269.974Q114.795 269.876 114.923 269.695Q115.052 269.514 115.052 269.288L115.052 268.560Q114.727 268.560 114.361 268.651Q113.995 268.742 113.739 268.954Q113.483 269.165 113.483 269.497M118.459 270.225L116.856 270.225L116.856 269.945Q117.082 269.945 117.231 269.911Q117.379 269.876 117.379 269.736L117.379 266.117Q117.379 265.847 117.272 265.785Q117.164 265.724 116.856 265.724L116.856 265.443L117.933 265.368L117.933 269.736Q117.933 269.873 118.083 269.909Q118.234 269.945 118.459 269.945L118.459 270.225M119.628 269.391L119.628 267.887Q119.628 267.617 119.521 267.556Q119.413 267.494 119.102 267.494L119.102 267.214L120.209 267.139L120.209 269.371L120.209 269.391Q120.209 269.671 120.261 269.815Q120.312 269.958 120.454 270.015Q120.596 270.071 120.883 270.071Q121.136 270.071 121.341 269.931Q121.546 269.791 121.662 269.565Q121.778 269.340 121.778 269.090L121.778 267.887Q121.778 267.617 121.671 267.556Q121.563 267.494 121.252 267.494L121.252 267.214L122.359 267.139L122.359 269.552Q122.359 269.743 122.412 269.825Q122.465 269.907 122.566 269.926Q122.667 269.945 122.882 269.945L122.882 270.225L121.806 270.293L121.806 269.729Q121.696 269.911 121.551 270.034Q121.406 270.157 121.219 270.225Q121.033 270.293 120.831 270.293Q119.628 270.293 119.628 269.391M125.059 270.225L123.470 270.225L123.470 269.945Q124.113 269.945 124.270 269.545L125.914 265.330Q125.948 265.235 126.061 265.235L126.143 265.235Q126.252 265.235 126.293 265.330L128.013 269.736Q128.081 269.876 128.271 269.911Q128.460 269.945 128.734 269.945L128.734 270.225L126.734 270.225L126.734 269.945Q127.298 269.945 127.298 269.770Q127.298 269.753 127.297 269.746Q127.295 269.740 127.291 269.736L126.871 268.670L124.912 268.670L124.571 269.545Q124.557 269.545 124.557 269.623Q124.557 269.784 124.719 269.864Q124.882 269.945 125.059 269.945L125.059 270.225M125.893 266.151L125.025 268.390L126.768 268.390\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M135.257 163.528h22.762V137.92h-22.762Z\"\u002F>\u003Cg transform=\"translate(26.015 -117.07)\">\u003Cpath d=\"M112.868 269.497Q112.868 269.165 113.091 268.938Q113.315 268.711 113.659 268.583Q114.002 268.454 114.375 268.402Q114.747 268.349 115.052 268.349L115.052 268.096Q115.052 267.891 114.944 267.711Q114.836 267.532 114.655 267.429Q114.474 267.327 114.266 267.327Q113.859 267.327 113.623 267.419Q113.712 267.456 113.758 267.540Q113.804 267.624 113.804 267.726Q113.804 267.822 113.758 267.901Q113.712 267.979 113.631 268.024Q113.551 268.068 113.462 268.068Q113.312 268.068 113.211 267.971Q113.110 267.873 113.110 267.726Q113.110 267.104 114.266 267.104Q114.477 267.104 114.727 267.168Q114.976 267.231 115.178 267.350Q115.380 267.470 115.506 267.655Q115.633 267.839 115.633 268.082L115.633 269.658Q115.633 269.774 115.694 269.870Q115.756 269.965 115.869 269.965Q115.978 269.965 116.043 269.871Q116.108 269.777 116.108 269.658L116.108 269.210L116.374 269.210L116.374 269.658Q116.374 269.928 116.147 270.093Q115.920 270.259 115.640 270.259Q115.431 270.259 115.294 270.105Q115.158 269.952 115.134 269.736Q114.987 270.003 114.705 270.148Q114.423 270.293 114.098 270.293Q113.821 270.293 113.537 270.218Q113.254 270.143 113.061 269.964Q112.868 269.784 112.868 269.497M113.483 269.497Q113.483 269.671 113.584 269.801Q113.684 269.931 113.840 270.001Q113.995 270.071 114.160 270.071Q114.378 270.071 114.587 269.974Q114.795 269.876 114.923 269.695Q115.052 269.514 115.052 269.288L115.052 268.560Q114.727 268.560 114.361 268.651Q113.995 268.742 113.739 268.954Q113.483 269.165 113.483 269.497M118.459 270.225L116.856 270.225L116.856 269.945Q117.082 269.945 117.231 269.911Q117.379 269.876 117.379 269.736L117.379 266.117Q117.379 265.847 117.272 265.785Q117.164 265.724 116.856 265.724L116.856 265.443L117.933 265.368L117.933 269.736Q117.933 269.873 118.083 269.909Q118.234 269.945 118.459 269.945L118.459 270.225M119.628 269.391L119.628 267.887Q119.628 267.617 119.521 267.556Q119.413 267.494 119.102 267.494L119.102 267.214L120.209 267.139L120.209 269.371L120.209 269.391Q120.209 269.671 120.261 269.815Q120.312 269.958 120.454 270.015Q120.596 270.071 120.883 270.071Q121.136 270.071 121.341 269.931Q121.546 269.791 121.662 269.565Q121.778 269.340 121.778 269.090L121.778 267.887Q121.778 267.617 121.671 267.556Q121.563 267.494 121.252 267.494L121.252 267.214L122.359 267.139L122.359 269.552Q122.359 269.743 122.412 269.825Q122.465 269.907 122.566 269.926Q122.667 269.945 122.882 269.945L122.882 270.225L121.806 270.293L121.806 269.729Q121.696 269.911 121.551 270.034Q121.406 270.157 121.219 270.225Q121.033 270.293 120.831 270.293Q119.628 270.293 119.628 269.391M126.536 270.225L123.562 270.225L123.562 269.945Q124.284 269.945 124.284 269.736L124.284 265.935Q124.284 265.724 123.562 265.724L123.562 265.443L126.321 265.443Q126.587 265.443 126.893 265.518Q127.199 265.594 127.459 265.741Q127.719 265.888 127.881 266.117Q128.043 266.346 128.043 266.640Q128.043 267.070 127.657 267.352Q127.271 267.634 126.789 267.726Q127.097 267.726 127.445 267.891Q127.794 268.055 128.023 268.333Q128.252 268.612 128.252 268.930Q128.252 269.336 127.989 269.630Q127.725 269.924 127.327 270.075Q126.929 270.225 126.536 270.225M124.926 267.853L124.926 269.736Q124.926 269.876 125.015 269.911Q125.104 269.945 125.292 269.945L126.321 269.945Q126.608 269.945 126.885 269.818Q127.162 269.692 127.332 269.458Q127.503 269.224 127.503 268.930Q127.503 268.714 127.421 268.518Q127.339 268.321 127.189 268.171Q127.038 268.020 126.842 267.937Q126.645 267.853 126.430 267.853L124.926 267.853M124.926 265.935L124.926 267.627L126.109 267.627Q126.396 267.627 126.676 267.508Q126.956 267.388 127.136 267.161Q127.315 266.933 127.315 266.640Q127.315 266.390 127.177 266.176Q127.038 265.963 126.809 265.843Q126.580 265.724 126.321 265.724L125.292 265.724Q125.104 265.724 125.015 265.758Q124.926 265.792 124.926 265.935\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M103.959 123.693h51.215V98.086h-51.215Z\"\u002F>\u003Cg transform=\"translate(8.05 -156.602)\">\u003Cpath d=\"M114.534 270.225L112.784 270.225L112.784 269.928Q113.483 269.928 113.671 269.448L115.472 264.623Q115.526 264.514 115.640 264.514L115.710 264.514Q115.823 264.514 115.878 264.623L117.768 269.666Q117.847 269.834 118.050 269.881Q118.253 269.928 118.565 269.928L118.565 270.225L116.343 270.225L116.343 269.928Q116.983 269.928 116.983 269.713Q116.983 269.694 116.981 269.684Q116.979 269.674 116.975 269.666L116.511 268.432L114.366 268.432L113.983 269.448Q113.979 269.463 113.974 269.493Q113.968 269.522 113.968 269.545Q113.968 269.686 114.058 269.770Q114.147 269.854 114.280 269.891Q114.413 269.928 114.534 269.928L114.534 270.225M115.440 265.569L114.472 268.135L116.397 268.135L115.440 265.569M123.573 270.225L119.190 270.225L119.190 269.928Q119.511 269.928 119.755 269.881Q119.999 269.834 119.999 269.666L119.999 265.323Q119.999 265.151 119.755 265.104Q119.511 265.057 119.190 265.057L119.190 264.760L121.776 264.760L121.776 265.057Q120.765 265.057 120.765 265.323L120.765 269.666Q120.765 269.838 120.856 269.883Q120.948 269.928 121.167 269.928L121.854 269.928Q122.327 269.928 122.636 269.803Q122.944 269.678 123.122 269.448Q123.300 269.217 123.391 268.891Q123.483 268.565 123.526 268.112L123.808 268.112L123.573 270.225M125.304 268.416L125.304 265.323Q125.304 265.151 125.059 265.104Q124.815 265.057 124.495 265.057L124.495 264.760L126.878 264.760L126.878 265.057Q126.558 265.057 126.313 265.106Q126.069 265.155 126.069 265.323L126.069 268.393Q126.069 269.116 126.413 269.606Q126.757 270.096 127.456 270.096Q127.921 270.096 128.292 269.866Q128.663 269.635 128.872 269.243Q129.081 268.850 129.081 268.393L129.081 265.538Q129.081 265.057 128.272 265.057L128.272 264.760L130.183 264.760L130.183 265.057Q129.374 265.057 129.374 265.538L129.374 268.416Q129.374 268.936 129.120 269.393Q128.866 269.850 128.425 270.121Q127.983 270.393 127.456 270.393Q127.046 270.393 126.665 270.250Q126.284 270.108 125.972 269.838Q125.659 269.569 125.481 269.202Q125.304 268.834 125.304 268.416\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M189.317 123.693h28.453V98.086h-28.453Z\"\u002F>\u003Cg transform=\"translate(84.91 -156.602)\">\u003Cpath d=\"M112.968 267.491Q112.968 266.897 113.200 266.366Q113.433 265.834 113.849 265.434Q114.265 265.034 114.798 264.813Q115.331 264.592 115.936 264.592Q116.374 264.592 116.772 264.774Q117.171 264.955 117.479 265.288L117.952 264.623Q117.983 264.592 118.015 264.592L118.061 264.592Q118.089 264.592 118.120 264.623Q118.151 264.655 118.151 264.682L118.151 266.819Q118.151 266.842 118.120 266.873Q118.089 266.905 118.061 266.905L117.944 266.905Q117.917 266.905 117.886 266.873Q117.854 266.842 117.854 266.819Q117.854 266.553 117.712 266.200Q117.569 265.846 117.390 265.608Q117.136 265.276 116.786 265.082Q116.436 264.889 116.030 264.889Q115.526 264.889 115.073 265.108Q114.620 265.327 114.327 265.721Q113.831 266.389 113.831 267.491Q113.831 268.022 113.968 268.489Q114.104 268.955 114.380 269.321Q114.655 269.686 115.075 269.891Q115.495 270.096 116.038 270.096Q116.526 270.096 116.950 269.852Q117.374 269.608 117.622 269.188Q117.870 268.768 117.870 268.272Q117.870 268.237 117.899 268.211Q117.929 268.186 117.960 268.186L118.061 268.186Q118.104 268.186 118.128 268.215Q118.151 268.245 118.151 268.288Q118.151 268.725 117.975 269.114Q117.800 269.502 117.489 269.786Q117.179 270.069 116.768 270.231Q116.358 270.393 115.936 270.393Q115.347 270.393 114.806 270.172Q114.265 269.952 113.849 269.547Q113.433 269.143 113.200 268.614Q112.968 268.084 112.968 267.491M119.104 267.491Q119.104 266.897 119.337 266.366Q119.569 265.834 119.985 265.434Q120.401 265.034 120.934 264.813Q121.468 264.592 122.073 264.592Q122.511 264.592 122.909 264.774Q123.308 264.955 123.616 265.288L124.089 264.623Q124.120 264.592 124.151 264.592L124.198 264.592Q124.225 264.592 124.257 264.623Q124.288 264.655 124.288 264.682L124.288 266.819Q124.288 266.842 124.257 266.873Q124.225 266.905 124.198 266.905L124.081 266.905Q124.054 266.905 124.022 266.873Q123.991 266.842 123.991 266.819Q123.991 266.553 123.849 266.200Q123.706 265.846 123.526 265.608Q123.272 265.276 122.923 265.082Q122.573 264.889 122.167 264.889Q121.663 264.889 121.210 265.108Q120.757 265.327 120.464 265.721Q119.968 266.389 119.968 267.491Q119.968 268.022 120.104 268.489Q120.241 268.955 120.516 269.321Q120.792 269.686 121.212 269.891Q121.632 270.096 122.175 270.096Q122.663 270.096 123.087 269.852Q123.511 269.608 123.759 269.188Q124.007 268.768 124.007 268.272Q124.007 268.237 124.036 268.211Q124.065 268.186 124.097 268.186L124.198 268.186Q124.241 268.186 124.265 268.215Q124.288 268.245 124.288 268.288Q124.288 268.725 124.112 269.114Q123.936 269.502 123.626 269.786Q123.315 270.069 122.905 270.231Q122.495 270.393 122.073 270.393Q121.483 270.393 120.942 270.172Q120.401 269.952 119.985 269.547Q119.569 269.143 119.337 268.614Q119.104 268.084 119.104 267.491\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M89.733 71.056H169.4V36.913H89.733Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-8.489 -214.285)\">\u003Cpath d=\"M115.909 270.225L112.847 270.225L112.847 269.928Q113.171 269.928 113.413 269.881Q113.655 269.834 113.655 269.666L113.655 265.323Q113.655 265.151 113.413 265.104Q113.171 265.057 112.847 265.057L112.847 264.760L115.909 264.760Q116.460 264.760 116.938 264.987Q117.417 265.213 117.770 265.608Q118.124 266.002 118.313 266.502Q118.503 267.002 118.503 267.545Q118.503 268.252 118.159 268.870Q117.815 269.487 117.220 269.856Q116.624 270.225 115.909 270.225M114.397 265.323L114.397 269.666Q114.397 269.838 114.489 269.883Q114.581 269.928 114.800 269.928L115.694 269.928Q116.140 269.928 116.532 269.758Q116.925 269.588 117.196 269.264Q117.468 268.940 117.565 268.520Q117.663 268.100 117.663 267.545Q117.663 267.190 117.626 266.877Q117.589 266.565 117.483 266.270Q117.378 265.975 117.198 265.752Q117.015 265.518 116.776 265.368Q116.538 265.217 116.257 265.137Q115.975 265.057 115.694 265.057L114.800 265.057Q114.581 265.057 114.489 265.100Q114.397 265.143 114.397 265.323M119.319 269.393Q119.319 268.909 119.722 268.614Q120.124 268.319 120.675 268.200Q121.225 268.080 121.718 268.080L121.718 267.791Q121.718 267.565 121.602 267.358Q121.487 267.151 121.290 267.032Q121.093 266.913 120.862 266.913Q120.436 266.913 120.151 267.018Q120.222 267.045 120.268 267.100Q120.315 267.155 120.341 267.225Q120.366 267.295 120.366 267.370Q120.366 267.475 120.315 267.567Q120.265 267.659 120.173 267.709Q120.081 267.760 119.975 267.760Q119.870 267.760 119.778 267.709Q119.686 267.659 119.636 267.567Q119.585 267.475 119.585 267.370Q119.585 266.952 119.974 266.805Q120.362 266.659 120.862 266.659Q121.194 266.659 121.548 266.789Q121.901 266.920 122.130 267.174Q122.358 267.428 122.358 267.776L122.358 269.577Q122.358 269.709 122.431 269.819Q122.503 269.928 122.632 269.928Q122.757 269.928 122.825 269.823Q122.893 269.717 122.893 269.577L122.893 269.065L123.175 269.065L123.175 269.577Q123.175 269.780 123.058 269.938Q122.940 270.096 122.759 270.180Q122.577 270.264 122.374 270.264Q122.143 270.264 121.991 270.092Q121.839 269.920 121.808 269.690Q121.647 269.971 121.339 270.137Q121.030 270.303 120.679 270.303Q120.167 270.303 119.743 270.080Q119.319 269.858 119.319 269.393M120.007 269.393Q120.007 269.678 120.233 269.864Q120.460 270.049 120.753 270.049Q120.999 270.049 121.224 269.932Q121.448 269.815 121.583 269.612Q121.718 269.409 121.718 269.155L121.718 268.323Q121.452 268.323 121.167 268.377Q120.882 268.432 120.610 268.561Q120.339 268.690 120.173 268.897Q120.007 269.104 120.007 269.393M124.093 269.264L124.093 267.073L123.390 267.073L123.390 266.819Q123.745 266.819 123.987 266.586Q124.229 266.354 124.341 266.006Q124.452 265.659 124.452 265.303L124.733 265.303L124.733 266.776L125.909 266.776L125.909 267.073L124.733 267.073L124.733 269.248Q124.733 269.569 124.852 269.797Q124.972 270.026 125.253 270.026Q125.433 270.026 125.550 269.903Q125.667 269.780 125.720 269.600Q125.772 269.420 125.772 269.248L125.772 268.776L126.054 268.776L126.054 269.264Q126.054 269.518 125.948 269.758Q125.843 269.998 125.645 270.151Q125.448 270.303 125.190 270.303Q124.874 270.303 124.622 270.180Q124.370 270.057 124.231 269.823Q124.093 269.588 124.093 269.264M126.870 269.393Q126.870 268.909 127.272 268.614Q127.675 268.319 128.225 268.200Q128.776 268.080 129.268 268.080L129.268 267.791Q129.268 267.565 129.153 267.358Q129.038 267.151 128.841 267.032Q128.643 266.913 128.413 266.913Q127.987 266.913 127.702 267.018Q127.772 267.045 127.819 267.100Q127.866 267.155 127.891 267.225Q127.917 267.295 127.917 267.370Q127.917 267.475 127.866 267.567Q127.815 267.659 127.724 267.709Q127.632 267.760 127.526 267.760Q127.421 267.760 127.329 267.709Q127.237 267.659 127.186 267.567Q127.136 267.475 127.136 267.370Q127.136 266.952 127.524 266.805Q127.913 266.659 128.413 266.659Q128.745 266.659 129.099 266.789Q129.452 266.920 129.681 267.174Q129.909 267.428 129.909 267.776L129.909 269.577Q129.909 269.709 129.981 269.819Q130.054 269.928 130.183 269.928Q130.308 269.928 130.376 269.823Q130.444 269.717 130.444 269.577L130.444 269.065L130.725 269.065L130.725 269.577Q130.725 269.780 130.608 269.938Q130.491 270.096 130.309 270.180Q130.128 270.264 129.925 270.264Q129.694 270.264 129.542 270.092Q129.390 269.920 129.358 269.690Q129.198 269.971 128.890 270.137Q128.581 270.303 128.229 270.303Q127.718 270.303 127.294 270.080Q126.870 269.858 126.870 269.393M127.558 269.393Q127.558 269.678 127.784 269.864Q128.011 270.049 128.304 270.049Q128.550 270.049 128.774 269.932Q128.999 269.815 129.134 269.612Q129.268 269.409 129.268 269.155L129.268 268.323Q129.003 268.323 128.718 268.377Q128.433 268.432 128.161 268.561Q127.890 268.690 127.724 268.897Q127.558 269.104 127.558 269.393\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-8.489 -214.285)\">\u003Cpath d=\"M135.791 270.225L133.935 270.225L133.935 269.928Q134.209 269.928 134.377 269.881Q134.545 269.834 134.545 269.666L134.545 267.530Q134.545 267.315 134.482 267.219Q134.420 267.123 134.301 267.102Q134.182 267.080 133.935 267.080L133.935 266.784L135.127 266.698L135.127 267.432Q135.240 267.217 135.434 267.049Q135.627 266.881 135.865 266.789Q136.103 266.698 136.357 266.698Q137.318 266.698 137.494 267.409Q137.678 267.080 138.006 266.889Q138.334 266.698 138.713 266.698Q139.889 266.698 139.889 267.776L139.889 269.666Q139.889 269.834 140.057 269.881Q140.225 269.928 140.494 269.928L140.494 270.225L138.639 270.225L138.639 269.928Q138.912 269.928 139.080 269.883Q139.248 269.838 139.248 269.666L139.248 267.791Q139.248 267.405 139.123 267.178Q138.998 266.952 138.646 266.952Q138.342 266.952 138.086 267.114Q137.830 267.276 137.682 267.545Q137.533 267.815 137.533 268.112L137.533 269.666Q137.533 269.834 137.703 269.881Q137.873 269.928 138.143 269.928L138.143 270.225L136.287 270.225L136.287 269.928Q136.560 269.928 136.728 269.881Q136.896 269.834 136.896 269.666L136.896 267.791Q136.896 267.405 136.771 267.178Q136.646 266.952 136.295 266.952Q135.990 266.952 135.734 267.114Q135.478 267.276 135.330 267.545Q135.182 267.815 135.182 268.112L135.182 269.666Q135.182 269.834 135.352 269.881Q135.521 269.928 135.791 269.928L135.791 270.225M140.939 268.471Q140.939 267.991 141.172 267.575Q141.404 267.159 141.814 266.909Q142.225 266.659 142.701 266.659Q143.432 266.659 143.830 267.100Q144.228 267.541 144.228 268.272Q144.228 268.377 144.135 268.401L141.685 268.401L141.685 268.471Q141.685 268.881 141.807 269.237Q141.928 269.592 142.199 269.809Q142.471 270.026 142.900 270.026Q143.264 270.026 143.560 269.797Q143.857 269.569 143.959 269.217Q143.967 269.170 144.053 269.155L144.135 269.155Q144.228 269.182 144.228 269.264Q144.228 269.272 144.221 269.303Q144.158 269.530 144.019 269.713Q143.881 269.897 143.689 270.030Q143.498 270.163 143.279 270.233Q143.060 270.303 142.822 270.303Q142.451 270.303 142.113 270.166Q141.775 270.030 141.508 269.778Q141.240 269.526 141.090 269.186Q140.939 268.846 140.939 268.471M141.693 268.163L143.654 268.163Q143.654 267.858 143.553 267.567Q143.451 267.276 143.234 267.094Q143.018 266.913 142.701 266.913Q142.400 266.913 142.170 267.100Q141.939 267.288 141.816 267.579Q141.693 267.870 141.693 268.163M146.646 270.225L144.791 270.225L144.791 269.928Q145.064 269.928 145.232 269.881Q145.400 269.834 145.400 269.666L145.400 267.530Q145.400 267.315 145.338 267.219Q145.275 267.123 145.156 267.102Q145.037 267.080 144.791 267.080L144.791 266.784L145.982 266.698L145.982 267.432Q146.096 267.217 146.289 267.049Q146.482 266.881 146.721 266.789Q146.959 266.698 147.213 266.698Q148.174 266.698 148.350 267.409Q148.533 267.080 148.861 266.889Q149.189 266.698 149.568 266.698Q150.744 266.698 150.744 267.776L150.744 269.666Q150.744 269.834 150.912 269.881Q151.080 269.928 151.350 269.928L151.350 270.225L149.494 270.225L149.494 269.928Q149.768 269.928 149.935 269.883Q150.103 269.838 150.103 269.666L150.103 267.791Q150.103 267.405 149.978 267.178Q149.853 266.952 149.502 266.952Q149.197 266.952 148.941 267.114Q148.685 267.276 148.537 267.545Q148.389 267.815 148.389 268.112L148.389 269.666Q148.389 269.834 148.559 269.881Q148.728 269.928 148.998 269.928L148.998 270.225L147.143 270.225L147.143 269.928Q147.416 269.928 147.584 269.881Q147.752 269.834 147.752 269.666L147.752 267.791Q147.752 267.405 147.627 267.178Q147.502 266.952 147.150 266.952Q146.846 266.952 146.590 267.114Q146.334 267.276 146.185 267.545Q146.037 267.815 146.037 268.112L146.037 269.666Q146.037 269.834 146.207 269.881Q146.377 269.928 146.646 269.928L146.646 270.225M151.795 268.530Q151.795 268.026 152.051 267.594Q152.307 267.163 152.742 266.911Q153.178 266.659 153.678 266.659Q154.064 266.659 154.406 266.803Q154.748 266.948 155.010 267.209Q155.271 267.471 155.414 267.807Q155.557 268.143 155.557 268.530Q155.557 269.022 155.293 269.432Q155.029 269.842 154.600 270.073Q154.170 270.303 153.678 270.303Q153.185 270.303 152.752 270.071Q152.318 269.838 152.057 269.430Q151.795 269.022 151.795 268.530M153.678 270.026Q154.135 270.026 154.387 269.803Q154.639 269.580 154.727 269.229Q154.814 268.877 154.814 268.432Q154.814 268.002 154.721 267.664Q154.627 267.327 154.373 267.120Q154.119 266.913 153.678 266.913Q153.029 266.913 152.785 267.329Q152.541 267.745 152.541 268.432Q152.541 268.877 152.629 269.229Q152.717 269.580 152.969 269.803Q153.221 270.026 153.678 270.026M158.049 270.225L156.068 270.225L156.068 269.928Q156.338 269.928 156.506 269.883Q156.674 269.838 156.674 269.666L156.674 267.530Q156.674 267.315 156.611 267.219Q156.549 267.123 156.432 267.102Q156.314 267.080 156.068 267.080L156.068 266.784L157.236 266.698L157.236 267.483Q157.314 267.272 157.467 267.086Q157.619 266.901 157.818 266.799Q158.018 266.698 158.244 266.698Q158.490 266.698 158.682 266.842Q158.873 266.987 158.873 267.217Q158.873 267.373 158.768 267.483Q158.662 267.592 158.506 267.592Q158.350 267.592 158.240 267.483Q158.131 267.373 158.131 267.217Q158.131 267.057 158.236 266.952Q157.912 266.952 157.697 267.180Q157.482 267.409 157.387 267.748Q157.291 268.088 157.291 268.393L157.291 269.666Q157.291 269.834 157.518 269.881Q157.744 269.928 158.049 269.928L158.049 270.225M159.771 271.522Q159.885 271.600 160.060 271.600Q160.350 271.600 160.570 271.387Q160.791 271.174 160.916 270.873L161.205 270.225L159.932 267.338Q159.850 267.163 159.705 267.118Q159.560 267.073 159.291 267.073L159.291 266.776L161.010 266.776L161.010 267.073Q160.588 267.073 160.588 267.256Q160.588 267.268 160.603 267.338L161.541 269.463L162.373 267.553Q162.412 267.463 162.412 267.385Q162.412 267.245 162.310 267.159Q162.209 267.073 162.068 267.073L162.068 266.776L163.420 266.776L163.420 267.073Q163.166 267.073 162.973 267.198Q162.779 267.323 162.674 267.553L161.228 270.873Q161.115 271.127 160.949 271.350Q160.783 271.573 160.555 271.715Q160.326 271.858 160.060 271.858Q159.764 271.858 159.523 271.666Q159.283 271.475 159.283 271.186Q159.283 271.030 159.389 270.928Q159.494 270.827 159.643 270.827Q159.748 270.827 159.828 270.873Q159.908 270.920 159.955 270.998Q160.002 271.077 160.002 271.186Q160.002 271.307 159.941 271.395Q159.881 271.483 159.771 271.522\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M106.804-5.766h45.525V-39.91h-45.525Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(8.93 -285.58)\">\u003Cpath d=\"M114.753 260.725L112.831 260.725L112.831 260.428Q113.640 260.428 113.640 259.948L113.640 255.604Q113.382 255.557 112.831 255.557L112.831 255.260L114.327 255.260Q114.386 255.280 114.397 255.291L117.405 259.479L117.405 256.038Q117.405 255.557 116.600 255.557L116.600 255.260L118.518 255.260L118.518 255.557Q117.710 255.557 117.710 256.038L117.710 260.620Q117.690 260.705 117.616 260.725L117.511 260.725Q117.456 260.713 117.440 260.686L113.944 255.830L113.944 259.948Q113.944 260.428 114.753 260.428L114.753 260.725M119.093 258.971Q119.093 258.491 119.325 258.075Q119.558 257.659 119.968 257.409Q120.378 257.159 120.854 257.159Q121.585 257.159 121.983 257.600Q122.382 258.041 122.382 258.772Q122.382 258.877 122.288 258.901L119.839 258.901L119.839 258.971Q119.839 259.381 119.960 259.737Q120.081 260.092 120.352 260.309Q120.624 260.526 121.054 260.526Q121.417 260.526 121.714 260.297Q122.011 260.069 122.112 259.717Q122.120 259.670 122.206 259.655L122.288 259.655Q122.382 259.682 122.382 259.764Q122.382 259.772 122.374 259.803Q122.311 260.030 122.173 260.213Q122.034 260.397 121.843 260.530Q121.651 260.663 121.433 260.733Q121.214 260.803 120.975 260.803Q120.604 260.803 120.266 260.666Q119.929 260.530 119.661 260.278Q119.393 260.026 119.243 259.686Q119.093 259.346 119.093 258.971M119.847 258.663L121.808 258.663Q121.808 258.358 121.706 258.067Q121.604 257.776 121.388 257.594Q121.171 257.413 120.854 257.413Q120.554 257.413 120.323 257.600Q120.093 257.788 119.970 258.079Q119.847 258.370 119.847 258.663M124.456 260.694L123.386 257.838Q123.319 257.659 123.188 257.616Q123.058 257.573 122.800 257.573L122.800 257.276L124.479 257.276L124.479 257.573Q124.030 257.573 124.030 257.772Q124.034 257.788 124.036 257.805Q124.038 257.823 124.038 257.838L124.831 259.932L125.542 258.022Q125.507 257.928 125.507 257.883Q125.507 257.838 125.472 257.838Q125.405 257.659 125.274 257.616Q125.143 257.573 124.890 257.573L124.890 257.276L126.479 257.276L126.479 257.573Q126.030 257.573 126.030 257.772Q126.034 257.791 126.036 257.809Q126.038 257.827 126.038 257.838L126.870 260.053L127.624 258.053Q127.647 257.995 127.647 257.924Q127.647 257.764 127.511 257.668Q127.374 257.573 127.206 257.573L127.206 257.276L128.593 257.276L128.593 257.573Q128.358 257.573 128.181 257.700Q128.003 257.827 127.921 258.053L126.936 260.694Q126.882 260.803 126.768 260.803L126.710 260.803Q126.597 260.803 126.554 260.694L125.694 258.420L124.839 260.694Q124.800 260.803 124.679 260.803L124.624 260.803Q124.511 260.803 124.456 260.694\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(8.93 -285.58)\">\u003Cpath d=\"M117.411 270.225L115.029 270.225L115.029 269.928Q115.353 269.928 115.595 269.881Q115.837 269.834 115.837 269.666L115.837 265.323Q115.837 265.151 115.595 265.104Q115.353 265.057 115.029 265.057L115.029 264.760L117.974 264.760Q118.318 264.760 118.673 264.860Q119.029 264.959 119.323 265.151Q119.618 265.342 119.800 265.627Q119.982 265.913 119.982 266.272Q119.982 266.745 119.671 267.080Q119.361 267.416 118.896 267.588Q118.431 267.760 117.974 267.760L116.607 267.760L116.607 269.666Q116.607 269.834 116.849 269.881Q117.091 269.928 117.411 269.928L117.411 270.225M116.579 265.323L116.579 267.491L117.755 267.491Q118.443 267.491 118.781 267.215Q119.118 266.940 119.118 266.272Q119.118 265.608 118.781 265.332Q118.443 265.057 117.755 265.057L116.982 265.057Q116.763 265.057 116.671 265.100Q116.579 265.143 116.579 265.323M120.927 267.491Q120.927 266.897 121.159 266.366Q121.392 265.834 121.808 265.434Q122.224 265.034 122.757 264.813Q123.290 264.592 123.896 264.592Q124.333 264.592 124.732 264.774Q125.130 264.955 125.439 265.288L125.911 264.623Q125.943 264.592 125.974 264.592L126.021 264.592Q126.048 264.592 126.079 264.623Q126.111 264.655 126.111 264.682L126.111 266.819Q126.111 266.842 126.079 266.873Q126.048 266.905 126.021 266.905L125.904 266.905Q125.876 266.905 125.845 266.873Q125.814 266.842 125.814 266.819Q125.814 266.553 125.671 266.200Q125.529 265.846 125.349 265.608Q125.095 265.276 124.745 265.082Q124.396 264.889 123.990 264.889Q123.486 264.889 123.032 265.108Q122.579 265.327 122.286 265.721Q121.790 266.389 121.790 267.491Q121.790 268.022 121.927 268.489Q122.064 268.955 122.339 269.321Q122.615 269.686 123.034 269.891Q123.454 270.096 123.997 270.096Q124.486 270.096 124.909 269.852Q125.333 269.608 125.581 269.188Q125.829 268.768 125.829 268.272Q125.829 268.237 125.859 268.211Q125.888 268.186 125.919 268.186L126.021 268.186Q126.064 268.186 126.087 268.215Q126.111 268.245 126.111 268.288Q126.111 268.725 125.935 269.114Q125.759 269.502 125.448 269.786Q125.138 270.069 124.728 270.231Q124.318 270.393 123.896 270.393Q123.306 270.393 122.765 270.172Q122.224 269.952 121.808 269.547Q121.392 269.143 121.159 268.614Q120.927 268.084 120.927 267.491\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M129.566 297.055v-8.98\"\u002F>\u003Cpath stroke=\"none\" d=\"m129.566 286.074-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg transform=\"translate(20.605 23.77)\">\u003Cpath d=\"M112.868 269.497Q112.868 269.165 113.091 268.938Q113.315 268.711 113.659 268.583Q114.002 268.454 114.375 268.402Q114.747 268.349 115.052 268.349L115.052 268.096Q115.052 267.891 114.944 267.711Q114.836 267.532 114.655 267.429Q114.474 267.327 114.266 267.327Q113.859 267.327 113.623 267.419Q113.712 267.456 113.758 267.540Q113.804 267.624 113.804 267.726Q113.804 267.822 113.758 267.901Q113.712 267.979 113.631 268.024Q113.551 268.068 113.462 268.068Q113.312 268.068 113.211 267.971Q113.110 267.873 113.110 267.726Q113.110 267.104 114.266 267.104Q114.477 267.104 114.727 267.168Q114.976 267.231 115.178 267.350Q115.380 267.470 115.506 267.655Q115.633 267.839 115.633 268.082L115.633 269.658Q115.633 269.774 115.694 269.870Q115.756 269.965 115.869 269.965Q115.978 269.965 116.043 269.871Q116.108 269.777 116.108 269.658L116.108 269.210L116.374 269.210L116.374 269.658Q116.374 269.928 116.147 270.093Q115.920 270.259 115.640 270.259Q115.431 270.259 115.294 270.105Q115.158 269.952 115.134 269.736Q114.987 270.003 114.705 270.148Q114.423 270.293 114.098 270.293Q113.821 270.293 113.537 270.218Q113.254 270.143 113.061 269.964Q112.868 269.784 112.868 269.497M113.483 269.497Q113.483 269.671 113.584 269.801Q113.684 269.931 113.840 270.001Q113.995 270.071 114.160 270.071Q114.378 270.071 114.587 269.974Q114.795 269.876 114.923 269.695Q115.052 269.514 115.052 269.288L115.052 268.560Q114.727 268.560 114.361 268.651Q113.995 268.742 113.739 268.954Q113.483 269.165 113.483 269.497M116.791 268.714Q116.791 268.376 116.932 268.085Q117.072 267.795 117.316 267.581Q117.560 267.368 117.865 267.253Q118.169 267.139 118.494 267.139Q118.764 267.139 119.027 267.238Q119.290 267.337 119.481 267.515L119.481 266.117Q119.481 265.847 119.374 265.785Q119.266 265.724 118.955 265.724L118.955 265.443L120.032 265.368L120.032 269.552Q120.032 269.740 120.086 269.823Q120.141 269.907 120.242 269.926Q120.343 269.945 120.558 269.945L120.558 270.225L119.451 270.293L119.451 269.876Q119.034 270.293 118.408 270.293Q117.977 270.293 117.605 270.081Q117.232 269.870 117.012 269.509Q116.791 269.148 116.791 268.714M118.466 270.071Q118.675 270.071 118.861 269.999Q119.047 269.928 119.201 269.791Q119.355 269.654 119.451 269.476L119.451 267.867Q119.365 267.720 119.220 267.600Q119.075 267.480 118.905 267.421Q118.736 267.361 118.555 267.361Q117.995 267.361 117.726 267.750Q117.458 268.140 117.458 268.721Q117.458 269.292 117.692 269.682Q117.926 270.071 118.466 270.071M121.207 268.714Q121.207 268.376 121.348 268.085Q121.488 267.795 121.732 267.581Q121.976 267.368 122.281 267.253Q122.585 267.139 122.910 267.139Q123.180 267.139 123.443 267.238Q123.706 267.337 123.897 267.515L123.897 266.117Q123.897 265.847 123.790 265.785Q123.682 265.724 123.371 265.724L123.371 265.443L124.448 265.368L124.448 269.552Q124.448 269.740 124.502 269.823Q124.557 269.907 124.658 269.926Q124.759 269.945 124.974 269.945L124.974 270.225L123.867 270.293L123.867 269.876Q123.450 270.293 122.824 270.293Q122.393 270.293 122.021 270.081Q121.648 269.870 121.428 269.509Q121.207 269.148 121.207 268.714M122.882 270.071Q123.091 270.071 123.277 269.999Q123.463 269.928 123.617 269.791Q123.771 269.654 123.867 269.476L123.867 267.867Q123.781 267.720 123.636 267.600Q123.491 267.480 123.321 267.421Q123.152 267.361 122.971 267.361Q122.411 267.361 122.142 267.750Q121.874 268.140 121.874 268.721Q121.874 269.292 122.108 269.682Q122.342 270.071 122.882 270.071M127.373 270.225L125.637 270.225L125.637 269.945Q125.866 269.945 126.015 269.911Q126.163 269.876 126.163 269.736L126.163 267.887Q126.163 267.617 126.056 267.556Q125.948 267.494 125.637 267.494L125.637 267.214L126.666 267.139L126.666 267.846Q126.796 267.538 127.038 267.339Q127.281 267.139 127.599 267.139Q127.818 267.139 127.989 267.263Q128.160 267.388 128.160 267.600Q128.160 267.737 128.060 267.836Q127.961 267.935 127.828 267.935Q127.691 267.935 127.592 267.836Q127.493 267.737 127.493 267.600Q127.493 267.460 127.592 267.361Q127.302 267.361 127.102 267.557Q126.902 267.754 126.809 268.048Q126.717 268.342 126.717 268.622L126.717 269.736Q126.717 269.945 127.373 269.945\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M129.566 254.376v-34.588\"\u002F>\u003Cpath stroke=\"none\" d=\"m129.566 217.788-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(20.605 -32.432)\">\u003Cpath d=\"M114.559 270.225L112.823 270.225L112.823 269.945Q113.052 269.945 113.201 269.911Q113.349 269.876 113.349 269.736L113.349 267.887Q113.349 267.617 113.242 267.556Q113.134 267.494 112.823 267.494L112.823 267.214L113.852 267.139L113.852 267.846Q113.982 267.538 114.224 267.339Q114.467 267.139 114.785 267.139Q115.004 267.139 115.175 267.263Q115.346 267.388 115.346 267.600Q115.346 267.737 115.246 267.836Q115.147 267.935 115.014 267.935Q114.877 267.935 114.778 267.836Q114.679 267.737 114.679 267.600Q114.679 267.460 114.778 267.361Q114.488 267.361 114.288 267.557Q114.088 267.754 113.995 268.048Q113.903 268.342 113.903 268.622L113.903 269.736Q113.903 269.945 114.559 269.945L114.559 270.225M117.519 270.225L115.930 270.225L115.930 269.945Q116.573 269.945 116.730 269.545L118.374 265.330Q118.408 265.235 118.521 265.235L118.603 265.235Q118.712 265.235 118.753 265.330L120.473 269.736Q120.541 269.876 120.731 269.911Q120.920 269.945 121.194 269.945L121.194 270.225L119.194 270.225L119.194 269.945Q119.758 269.945 119.758 269.770Q119.758 269.753 119.756 269.746Q119.755 269.740 119.751 269.736L119.331 268.670L117.372 268.670L117.031 269.545Q117.017 269.545 117.017 269.623Q117.017 269.784 117.179 269.864Q117.342 269.945 117.519 269.945L117.519 270.225M118.353 266.151L117.485 268.390L119.228 268.390L118.353 266.151M122.328 271.455Q122.328 271.421 122.356 271.394Q122.626 271.165 122.775 270.842Q122.923 270.519 122.923 270.163L122.923 270.126Q122.814 270.225 122.650 270.225Q122.469 270.225 122.349 270.105Q122.229 269.986 122.229 269.805Q122.229 269.630 122.349 269.511Q122.469 269.391 122.650 269.391Q122.906 269.391 123.026 269.630Q123.145 269.870 123.145 270.163Q123.145 270.563 122.976 270.934Q122.807 271.305 122.510 271.561Q122.479 271.582 122.452 271.582Q122.411 271.582 122.370 271.541Q122.328 271.500 122.328 271.455\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(20.605 -32.432)\">\u003Cpath d=\"M128.545 270.225L126.809 270.225L126.809 269.945Q127.038 269.945 127.187 269.911Q127.335 269.876 127.335 269.736L127.335 267.887Q127.335 267.617 127.228 267.556Q127.120 267.494 126.809 267.494L126.809 267.214L127.838 267.139L127.838 267.846Q127.968 267.538 128.210 267.339Q128.453 267.139 128.771 267.139Q128.990 267.139 129.161 267.263Q129.332 267.388 129.332 267.600Q129.332 267.737 129.232 267.836Q129.133 267.935 129 267.935Q128.863 267.935 128.764 267.836Q128.665 267.737 128.665 267.600Q128.665 267.460 128.764 267.361Q128.474 267.361 128.274 267.557Q128.074 267.754 127.981 268.048Q127.889 268.342 127.889 268.622L127.889 269.736Q127.889 269.945 128.545 269.945L128.545 270.225M132.982 270.225L130.008 270.225L130.008 269.945Q130.730 269.945 130.730 269.736L130.730 265.935Q130.730 265.724 130.008 265.724L130.008 265.443L132.767 265.443Q133.033 265.443 133.339 265.518Q133.645 265.594 133.905 265.741Q134.165 265.888 134.327 266.117Q134.489 266.346 134.489 266.640Q134.489 267.070 134.103 267.352Q133.717 267.634 133.235 267.726Q133.543 267.726 133.891 267.891Q134.240 268.055 134.469 268.333Q134.698 268.612 134.698 268.930Q134.698 269.336 134.435 269.630Q134.171 269.924 133.773 270.075Q133.375 270.225 132.982 270.225M131.372 267.853L131.372 269.736Q131.372 269.876 131.461 269.911Q131.550 269.945 131.738 269.945L132.767 269.945Q133.054 269.945 133.331 269.818Q133.607 269.692 133.778 269.458Q133.949 269.224 133.949 268.930Q133.949 268.714 133.867 268.518Q133.785 268.321 133.635 268.171Q133.484 268.020 133.288 267.937Q133.091 267.853 132.876 267.853L131.372 267.853M131.372 265.935L131.372 267.627L132.555 267.627Q132.842 267.627 133.122 267.508Q133.402 267.388 133.582 267.161Q133.761 266.933 133.761 266.640Q133.761 266.390 133.623 266.176Q133.484 265.963 133.255 265.843Q133.026 265.724 132.767 265.724L131.738 265.724Q131.550 265.724 131.461 265.758Q131.372 265.792 131.372 265.935\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M112.495 186.09v-20.363\"\u002F>\u003Cpath stroke=\"none\" d=\"m112.495 163.728-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-19.457 -92.886)\">\u003Cpath d=\"M114.399 270.198L113.271 267.699Q113.199 267.552 113.069 267.520Q112.939 267.487 112.710 267.487L112.710 267.207L114.224 267.207L114.224 267.487Q113.872 267.487 113.872 267.634Q113.872 267.679 113.883 267.699L114.747 269.617L115.527 267.887Q115.561 267.819 115.561 267.740Q115.561 267.627 115.477 267.557Q115.393 267.487 115.274 267.487L115.274 267.207L116.470 267.207L116.470 267.487Q116.251 267.487 116.080 267.590Q115.910 267.692 115.821 267.887L114.785 270.198Q114.737 270.293 114.631 270.293L114.553 270.293Q114.447 270.293 114.399 270.198\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-19.457 -92.886)\">\u003Cpath d=\"M116.639 269.497Q116.639 269.165 116.862 268.938Q117.086 268.711 117.430 268.583Q117.773 268.454 118.146 268.402Q118.518 268.349 118.823 268.349L118.823 268.096Q118.823 267.891 118.715 267.711Q118.607 267.532 118.426 267.429Q118.245 267.327 118.037 267.327Q117.630 267.327 117.394 267.419Q117.483 267.456 117.529 267.540Q117.575 267.624 117.575 267.726Q117.575 267.822 117.529 267.901Q117.483 267.979 117.402 268.024Q117.322 268.068 117.233 268.068Q117.083 268.068 116.982 267.971Q116.881 267.873 116.881 267.726Q116.881 267.104 118.037 267.104Q118.248 267.104 118.498 267.168Q118.747 267.231 118.949 267.350Q119.151 267.470 119.277 267.655Q119.404 267.839 119.404 268.082L119.404 269.658Q119.404 269.774 119.465 269.870Q119.527 269.965 119.640 269.965Q119.749 269.965 119.814 269.871Q119.879 269.777 119.879 269.658L119.879 269.210L120.145 269.210L120.145 269.658Q120.145 269.928 119.918 270.093Q119.691 270.259 119.411 270.259Q119.202 270.259 119.065 270.105Q118.929 269.952 118.905 269.736Q118.758 270.003 118.476 270.148Q118.194 270.293 117.869 270.293Q117.592 270.293 117.308 270.218Q117.025 270.143 116.832 269.964Q116.639 269.784 116.639 269.497M117.254 269.497Q117.254 269.671 117.355 269.801Q117.455 269.931 117.611 270.001Q117.766 270.071 117.931 270.071Q118.149 270.071 118.358 269.974Q118.566 269.876 118.694 269.695Q118.823 269.514 118.823 269.288L118.823 268.560Q118.498 268.560 118.132 268.651Q117.766 268.742 117.510 268.954Q117.254 269.165 117.254 269.497M122.230 270.225L120.627 270.225L120.627 269.945Q120.853 269.945 121.002 269.911Q121.150 269.876 121.150 269.736L121.150 266.117Q121.150 265.847 121.043 265.785Q120.935 265.724 120.627 265.724L120.627 265.443L121.704 265.368L121.704 269.736Q121.704 269.873 121.854 269.909Q122.005 269.945 122.230 269.945L122.230 270.225M124.414 270.225L122.825 270.225L122.825 269.945Q123.468 269.945 123.625 269.545L125.269 265.330Q125.303 265.235 125.416 265.235L125.498 265.235Q125.607 265.235 125.648 265.330L127.368 269.736Q127.436 269.876 127.626 269.911Q127.815 269.945 128.089 269.945L128.089 270.225L126.089 270.225L126.089 269.945Q126.653 269.945 126.653 269.770Q126.653 269.753 126.651 269.746Q126.650 269.740 126.646 269.736L126.226 268.670L124.267 268.670L123.926 269.545Q123.912 269.545 123.912 269.623Q123.912 269.784 124.074 269.864Q124.237 269.945 124.414 269.945L124.414 270.225M125.248 266.151L124.380 268.390L126.123 268.390\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M146.638 186.09v-20.363\"\u002F>\u003Cpath stroke=\"none\" d=\"m146.638 163.728-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(37.676 -92.886)\">\u003Cpath d=\"M114.399 270.198L113.271 267.699Q113.199 267.552 113.069 267.520Q112.939 267.487 112.710 267.487L112.710 267.207L114.224 267.207L114.224 267.487Q113.872 267.487 113.872 267.634Q113.872 267.679 113.883 267.699L114.747 269.617L115.527 267.887Q115.561 267.819 115.561 267.740Q115.561 267.627 115.477 267.557Q115.393 267.487 115.274 267.487L115.274 267.207L116.470 267.207L116.470 267.487Q116.251 267.487 116.080 267.590Q115.910 267.692 115.821 267.887L114.785 270.198Q114.737 270.293 114.631 270.293L114.553 270.293Q114.447 270.293 114.399 270.198\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(37.676 -92.886)\">\u003Cpath d=\"M116.639 269.497Q116.639 269.165 116.862 268.938Q117.086 268.711 117.430 268.583Q117.773 268.454 118.146 268.402Q118.518 268.349 118.823 268.349L118.823 268.096Q118.823 267.891 118.715 267.711Q118.607 267.532 118.426 267.429Q118.245 267.327 118.037 267.327Q117.630 267.327 117.394 267.419Q117.483 267.456 117.529 267.540Q117.575 267.624 117.575 267.726Q117.575 267.822 117.529 267.901Q117.483 267.979 117.402 268.024Q117.322 268.068 117.233 268.068Q117.083 268.068 116.982 267.971Q116.881 267.873 116.881 267.726Q116.881 267.104 118.037 267.104Q118.248 267.104 118.498 267.168Q118.747 267.231 118.949 267.350Q119.151 267.470 119.277 267.655Q119.404 267.839 119.404 268.082L119.404 269.658Q119.404 269.774 119.465 269.870Q119.527 269.965 119.640 269.965Q119.749 269.965 119.814 269.871Q119.879 269.777 119.879 269.658L119.879 269.210L120.145 269.210L120.145 269.658Q120.145 269.928 119.918 270.093Q119.691 270.259 119.411 270.259Q119.202 270.259 119.065 270.105Q118.929 269.952 118.905 269.736Q118.758 270.003 118.476 270.148Q118.194 270.293 117.869 270.293Q117.592 270.293 117.308 270.218Q117.025 270.143 116.832 269.964Q116.639 269.784 116.639 269.497M117.254 269.497Q117.254 269.671 117.355 269.801Q117.455 269.931 117.611 270.001Q117.766 270.071 117.931 270.071Q118.149 270.071 118.358 269.974Q118.566 269.876 118.694 269.695Q118.823 269.514 118.823 269.288L118.823 268.560Q118.498 268.560 118.132 268.651Q117.766 268.742 117.510 268.954Q117.254 269.165 117.254 269.497M122.230 270.225L120.627 270.225L120.627 269.945Q120.853 269.945 121.002 269.911Q121.150 269.876 121.150 269.736L121.150 266.117Q121.150 265.847 121.043 265.785Q120.935 265.724 120.627 265.724L120.627 265.443L121.704 265.368L121.704 269.736Q121.704 269.873 121.854 269.909Q122.005 269.945 122.230 269.945L122.230 270.225M125.891 270.225L122.917 270.225L122.917 269.945Q123.639 269.945 123.639 269.736L123.639 265.935Q123.639 265.724 122.917 265.724L122.917 265.443L125.676 265.443Q125.942 265.443 126.248 265.518Q126.554 265.594 126.814 265.741Q127.074 265.888 127.236 266.117Q127.398 266.346 127.398 266.640Q127.398 267.070 127.012 267.352Q126.626 267.634 126.144 267.726Q126.452 267.726 126.800 267.891Q127.149 268.055 127.378 268.333Q127.607 268.612 127.607 268.930Q127.607 269.336 127.344 269.630Q127.080 269.924 126.682 270.075Q126.284 270.225 125.891 270.225M124.281 267.853L124.281 269.736Q124.281 269.876 124.370 269.911Q124.459 269.945 124.647 269.945L125.676 269.945Q125.963 269.945 126.240 269.818Q126.516 269.692 126.687 269.458Q126.858 269.224 126.858 268.930Q126.858 268.714 126.776 268.518Q126.694 268.321 126.544 268.171Q126.393 268.020 126.197 267.937Q126 267.853 125.785 267.853L124.281 267.853M124.281 265.935L124.281 267.627L125.464 267.627Q125.751 267.627 126.031 267.508Q126.311 267.388 126.491 267.161Q126.670 266.933 126.670 266.640Q126.670 266.390 126.532 266.176Q126.393 265.963 126.164 265.843Q125.935 265.724 125.676 265.724L124.647 265.724Q124.459 265.724 124.370 265.758Q124.281 265.792 124.281 265.935\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M112.495 137.72v-11.827\"\u002F>\u003Cpath stroke=\"none\" d=\"m112.495 123.893-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M146.638 137.72v-11.827\"\u002F>\u003Cpath stroke=\"none\" d=\"m146.638 123.893-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M129.566 97.886v-24.63\"\u002F>\u003Cpath stroke=\"none\" d=\"m129.566 71.256-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(20.605 -183.904)\">\u003Cpath d=\"M114.399 270.198L113.271 267.699Q113.199 267.552 113.069 267.520Q112.939 267.487 112.710 267.487L112.710 267.207L114.224 267.207L114.224 267.487Q113.872 267.487 113.872 267.634Q113.872 267.679 113.883 267.699L114.747 269.617L115.527 267.887Q115.561 267.819 115.561 267.740Q115.561 267.627 115.477 267.557Q115.393 267.487 115.274 267.487L115.274 267.207L116.470 267.207L116.470 267.487Q116.251 267.487 116.080 267.590Q115.910 267.692 115.821 267.887L114.785 270.198Q114.737 270.293 114.631 270.293L114.553 270.293Q114.447 270.293 114.399 270.198\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(20.605 -183.904)\">\u003Cpath d=\"M116.639 269.497Q116.639 269.165 116.862 268.938Q117.086 268.711 117.430 268.583Q117.773 268.454 118.146 268.402Q118.518 268.349 118.823 268.349L118.823 268.096Q118.823 267.891 118.715 267.711Q118.607 267.532 118.426 267.429Q118.245 267.327 118.037 267.327Q117.630 267.327 117.394 267.419Q117.483 267.456 117.529 267.540Q117.575 267.624 117.575 267.726Q117.575 267.822 117.529 267.901Q117.483 267.979 117.402 268.024Q117.322 268.068 117.233 268.068Q117.083 268.068 116.982 267.971Q116.881 267.873 116.881 267.726Q116.881 267.104 118.037 267.104Q118.248 267.104 118.498 267.168Q118.747 267.231 118.949 267.350Q119.151 267.470 119.277 267.655Q119.404 267.839 119.404 268.082L119.404 269.658Q119.404 269.774 119.465 269.870Q119.527 269.965 119.640 269.965Q119.749 269.965 119.814 269.871Q119.879 269.777 119.879 269.658L119.879 269.210L120.145 269.210L120.145 269.658Q120.145 269.928 119.918 270.093Q119.691 270.259 119.411 270.259Q119.202 270.259 119.065 270.105Q118.929 269.952 118.905 269.736Q118.758 270.003 118.476 270.148Q118.194 270.293 117.869 270.293Q117.592 270.293 117.308 270.218Q117.025 270.143 116.832 269.964Q116.639 269.784 116.639 269.497M117.254 269.497Q117.254 269.671 117.355 269.801Q117.455 269.931 117.611 270.001Q117.766 270.071 117.931 270.071Q118.149 270.071 118.358 269.974Q118.566 269.876 118.694 269.695Q118.823 269.514 118.823 269.288L118.823 268.560Q118.498 268.560 118.132 268.651Q117.766 268.742 117.510 268.954Q117.254 269.165 117.254 269.497M122.230 270.225L120.627 270.225L120.627 269.945Q120.853 269.945 121.002 269.911Q121.150 269.876 121.150 269.736L121.150 266.117Q121.150 265.847 121.043 265.785Q120.935 265.724 120.627 265.724L120.627 265.443L121.704 265.368L121.704 269.736Q121.704 269.873 121.854 269.909Q122.005 269.945 122.230 269.945L122.230 270.225M127.292 270.225L122.890 270.225L122.890 269.945Q123.611 269.945 123.611 269.736L123.611 265.935Q123.611 265.724 122.890 265.724L122.890 265.443L127.180 265.443L127.388 267.080L127.125 267.080Q127.067 266.609 126.964 266.344Q126.862 266.079 126.677 265.946Q126.493 265.812 126.221 265.768Q125.949 265.724 125.450 265.724L124.667 265.724Q124.479 265.724 124.391 265.758Q124.302 265.792 124.302 265.935L124.302 267.600L124.876 267.600Q125.266 267.600 125.448 267.549Q125.631 267.497 125.713 267.325Q125.795 267.152 125.795 266.780L126.058 266.780L126.058 268.701L125.795 268.701Q125.795 268.328 125.713 268.155Q125.631 267.983 125.448 267.932Q125.266 267.880 124.876 267.880L124.302 267.880L124.302 269.736Q124.302 269.876 124.391 269.911Q124.479 269.945 124.667 269.945L125.515 269.945Q126.045 269.945 126.354 269.876Q126.663 269.808 126.851 269.641Q127.039 269.473 127.147 269.171Q127.255 268.868 127.340 268.355L127.607 268.355\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(20.605 -183.904)\">\u003Cpath d=\"M133.029 271.975Q132.479 271.575 132.108 271.020Q131.737 270.464 131.556 269.818Q131.375 269.172 131.375 268.475Q131.375 267.962 131.475 267.467Q131.576 266.971 131.781 266.520Q131.986 266.069 132.299 265.677Q132.612 265.286 133.029 264.982Q133.039 264.978 133.046 264.977Q133.053 264.975 133.063 264.975L133.131 264.975Q133.166 264.975 133.188 264.999Q133.210 265.023 133.210 265.060Q133.210 265.105 133.183 265.122Q132.834 265.423 132.581 265.807Q132.328 266.192 132.176 266.633Q132.024 267.074 131.952 267.530Q131.880 267.986 131.880 268.475Q131.880 269.476 132.190 270.363Q132.499 271.250 133.183 271.835Q133.210 271.852 133.210 271.896Q133.210 271.934 133.188 271.958Q133.166 271.982 133.131 271.982L133.063 271.982Q133.056 271.978 133.048 271.977Q133.039 271.975 133.029 271.975M134.078 269.497Q134.078 269.165 134.302 268.938Q134.526 268.711 134.869 268.583Q135.213 268.454 135.585 268.402Q135.958 268.349 136.262 268.349L136.262 268.096Q136.262 267.891 136.155 267.711Q136.047 267.532 135.866 267.429Q135.685 267.327 135.476 267.327Q135.069 267.327 134.834 267.419Q134.922 267.456 134.969 267.540Q135.015 267.624 135.015 267.726Q135.015 267.822 134.969 267.901Q134.922 267.979 134.842 268.024Q134.762 268.068 134.673 268.068Q134.523 268.068 134.422 267.971Q134.321 267.873 134.321 267.726Q134.321 267.104 135.476 267.104Q135.688 267.104 135.938 267.168Q136.187 267.231 136.389 267.350Q136.590 267.470 136.717 267.655Q136.843 267.839 136.843 268.082L136.843 269.658Q136.843 269.774 136.905 269.870Q136.966 269.965 137.079 269.965Q137.189 269.965 137.253 269.871Q137.318 269.777 137.318 269.658L137.318 269.210L137.585 269.210L137.585 269.658Q137.585 269.928 137.358 270.093Q137.130 270.259 136.850 270.259Q136.642 270.259 136.505 270.105Q136.368 269.952 136.344 269.736Q136.197 270.003 135.915 270.148Q135.633 270.293 135.309 270.293Q135.032 270.293 134.748 270.218Q134.464 270.143 134.271 269.964Q134.078 269.784 134.078 269.497M134.693 269.497Q134.693 269.671 134.794 269.801Q134.895 269.931 135.051 270.001Q135.206 270.071 135.370 270.071Q135.589 270.071 135.797 269.974Q136.006 269.876 136.134 269.695Q136.262 269.514 136.262 269.288L136.262 268.560Q135.938 268.560 135.572 268.651Q135.206 268.742 134.950 268.954Q134.693 269.165 134.693 269.497M138.002 268.714Q138.002 268.376 138.142 268.085Q138.282 267.795 138.527 267.581Q138.771 267.368 139.075 267.253Q139.379 267.139 139.704 267.139Q139.974 267.139 140.237 267.238Q140.501 267.337 140.692 267.515L140.692 266.117Q140.692 265.847 140.584 265.785Q140.477 265.724 140.166 265.724L140.166 265.443L141.242 265.368L141.242 269.552Q141.242 269.740 141.297 269.823Q141.352 269.907 141.452 269.926Q141.553 269.945 141.769 269.945L141.769 270.225L140.661 270.293L140.661 269.876Q140.244 270.293 139.619 270.293Q139.188 270.293 138.815 270.081Q138.443 269.870 138.222 269.509Q138.002 269.148 138.002 268.714M139.677 270.071Q139.885 270.071 140.072 269.999Q140.258 269.928 140.412 269.791Q140.565 269.654 140.661 269.476L140.661 267.867Q140.576 267.720 140.430 267.600Q140.285 267.480 140.116 267.421Q139.947 267.361 139.766 267.361Q139.205 267.361 138.937 267.750Q138.668 268.140 138.668 268.721Q138.668 269.292 138.903 269.682Q139.137 270.071 139.677 270.071M142.418 268.714Q142.418 268.376 142.558 268.085Q142.698 267.795 142.943 267.581Q143.187 267.368 143.491 267.253Q143.795 267.139 144.120 267.139Q144.390 267.139 144.653 267.238Q144.917 267.337 145.108 267.515L145.108 266.117Q145.108 265.847 145 265.785Q144.893 265.724 144.582 265.724L144.582 265.443L145.658 265.368L145.658 269.552Q145.658 269.740 145.713 269.823Q145.768 269.907 145.868 269.926Q145.969 269.945 146.185 269.945L146.185 270.225L145.077 270.293L145.077 269.876Q144.660 270.293 144.035 270.293Q143.604 270.293 143.231 270.081Q142.859 269.870 142.638 269.509Q142.418 269.148 142.418 268.714M144.093 270.071Q144.301 270.071 144.488 269.999Q144.674 269.928 144.828 269.791Q144.981 269.654 145.077 269.476L145.077 267.867Q144.992 267.720 144.846 267.600Q144.701 267.480 144.532 267.421Q144.363 267.361 144.182 267.361Q143.621 267.361 143.353 267.750Q143.085 268.140 143.085 268.721Q143.085 269.292 143.319 269.682Q143.553 270.071 144.093 270.071M148.584 270.225L146.848 270.225L146.848 269.945Q147.077 269.945 147.225 269.911Q147.374 269.876 147.374 269.736L147.374 267.887Q147.374 267.617 147.266 267.556Q147.159 267.494 146.848 267.494L146.848 267.214L147.877 267.139L147.877 267.846Q148.006 267.538 148.249 267.339Q148.492 267.139 148.810 267.139Q149.028 267.139 149.199 267.263Q149.370 267.388 149.370 267.600Q149.370 267.737 149.271 267.836Q149.172 267.935 149.039 267.935Q148.902 267.935 148.803 267.836Q148.704 267.737 148.704 267.600Q148.704 267.460 148.803 267.361Q148.512 267.361 148.312 267.557Q148.112 267.754 148.020 268.048Q147.928 268.342 147.928 268.622L147.928 269.736Q147.928 269.945 148.584 269.945L148.584 270.225M150.276 271.982L150.208 271.982Q150.173 271.982 150.151 271.956Q150.129 271.931 150.129 271.896Q150.129 271.852 150.160 271.835Q150.515 271.531 150.765 271.141Q151.014 270.751 151.166 270.319Q151.318 269.887 151.388 269.418Q151.459 268.950 151.459 268.475Q151.459 267.996 151.388 267.530Q151.318 267.063 151.165 266.628Q151.011 266.192 150.760 265.804Q150.508 265.416 150.160 265.122Q150.129 265.105 150.129 265.060Q150.129 265.026 150.151 265.001Q150.173 264.975 150.208 264.975L150.276 264.975Q150.286 264.975 150.295 264.977Q150.303 264.978 150.314 264.982Q150.857 265.382 151.230 265.935Q151.602 266.489 151.783 267.135Q151.964 267.781 151.964 268.475Q151.964 269.176 151.783 269.823Q151.602 270.471 151.228 271.025Q150.854 271.579 150.314 271.975Q150.303 271.975 150.295 271.977Q150.286 271.978 150.276 271.982\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M155.374 110.89h31.743\"\u002F>\u003Cpath stroke=\"none\" d=\"m189.117 110.89-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(47.77 -162.869)\">\u003Cpath d=\"M112.809 270.218L112.809 269.155Q112.809 269.131 112.837 269.104Q112.864 269.077 112.888 269.077L112.997 269.077Q113.062 269.077 113.076 269.135Q113.172 269.569 113.418 269.820Q113.664 270.071 114.078 270.071Q114.419 270.071 114.672 269.938Q114.925 269.805 114.925 269.497Q114.925 269.340 114.831 269.225Q114.737 269.111 114.599 269.042Q114.460 268.974 114.293 268.936L113.712 268.837Q113.356 268.769 113.083 268.548Q112.809 268.328 112.809 267.986Q112.809 267.737 112.921 267.562Q113.032 267.388 113.218 267.289Q113.404 267.190 113.620 267.147Q113.835 267.104 114.078 267.104Q114.491 267.104 114.771 267.286L114.987 267.111Q114.997 267.108 115.004 267.106Q115.011 267.104 115.021 267.104L115.072 267.104Q115.099 267.104 115.123 267.128Q115.147 267.152 115.147 267.180L115.147 268.027Q115.147 268.048 115.123 268.075Q115.099 268.102 115.072 268.102L114.959 268.102Q114.932 268.102 114.906 268.077Q114.881 268.051 114.881 268.027Q114.881 267.791 114.775 267.627Q114.669 267.463 114.486 267.381Q114.303 267.299 114.071 267.299Q113.743 267.299 113.486 267.402Q113.230 267.504 113.230 267.781Q113.230 267.976 113.413 268.085Q113.596 268.195 113.825 268.236L114.399 268.342Q114.645 268.390 114.859 268.518Q115.072 268.646 115.209 268.849Q115.346 269.053 115.346 269.302Q115.346 269.815 114.980 270.054Q114.614 270.293 114.078 270.293Q113.582 270.293 113.250 269.999L112.984 270.273Q112.963 270.293 112.936 270.293L112.888 270.293Q112.864 270.293 112.837 270.266Q112.809 270.239 112.809 270.218M115.933 268.690Q115.933 268.369 116.058 268.080Q116.183 267.791 116.409 267.568Q116.634 267.344 116.930 267.224Q117.225 267.104 117.543 267.104Q117.871 267.104 118.133 267.204Q118.394 267.303 118.570 267.485Q118.746 267.668 118.840 267.926Q118.934 268.184 118.934 268.516Q118.934 268.608 118.852 268.629L116.597 268.629L116.597 268.690Q116.597 269.278 116.880 269.661Q117.164 270.044 117.731 270.044Q118.053 270.044 118.321 269.851Q118.589 269.658 118.678 269.343Q118.685 269.302 118.760 269.288L118.852 269.288Q118.934 269.312 118.934 269.384Q118.934 269.391 118.928 269.418Q118.815 269.815 118.444 270.054Q118.073 270.293 117.649 270.293Q117.212 270.293 116.812 270.085Q116.412 269.876 116.173 269.509Q115.933 269.142 115.933 268.690M116.603 268.420L118.418 268.420Q118.418 268.143 118.321 267.891Q118.224 267.638 118.025 267.482Q117.827 267.327 117.543 267.327Q117.266 267.327 117.053 267.485Q116.839 267.644 116.721 267.899Q116.603 268.154 116.603 268.420M120.049 269.384L120.049 267.487L119.410 267.487L119.410 267.265Q119.727 267.265 119.944 267.055Q120.162 266.845 120.262 266.535Q120.363 266.226 120.363 265.918L120.630 265.918L120.630 267.207L121.706 267.207L121.706 267.487L120.630 267.487L120.630 269.371Q120.630 269.647 120.734 269.846Q120.838 270.044 121.098 270.044Q121.255 270.044 121.361 269.940Q121.467 269.835 121.517 269.682Q121.566 269.528 121.566 269.371L121.566 268.957L121.833 268.957L121.833 269.384Q121.833 269.610 121.734 269.820Q121.635 270.030 121.450 270.162Q121.266 270.293 121.037 270.293Q120.599 270.293 120.324 270.056Q120.049 269.818 120.049 269.384\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(47.77 -162.869)\">\u003Cpath d=\"M125.527 267.832Q125.527 267.306 125.744 266.838Q125.961 266.370 126.344 266.024Q126.726 265.679 127.210 265.491Q127.694 265.303 128.224 265.303Q128.627 265.303 128.991 265.460Q129.355 265.618 129.639 265.912L130.062 265.330Q130.097 265.303 130.121 265.303L130.168 265.303Q130.199 265.303 130.223 265.327Q130.247 265.351 130.247 265.382L130.247 267.245Q130.247 267.268 130.221 267.294Q130.196 267.320 130.168 267.320L130.042 267.320Q129.980 267.320 129.967 267.245Q129.936 266.930 129.801 266.626Q129.666 266.322 129.451 266.088Q129.235 265.853 128.946 265.718Q128.658 265.583 128.330 265.583Q127.687 265.583 127.229 265.877Q126.771 266.171 126.538 266.684Q126.306 267.197 126.306 267.832Q126.306 268.304 126.436 268.713Q126.566 269.121 126.826 269.434Q127.085 269.746 127.465 269.916Q127.844 270.085 128.336 270.085Q128.664 270.085 128.958 269.969Q129.252 269.852 129.486 269.637Q129.721 269.422 129.851 269.133Q129.980 268.844 129.980 268.516Q129.980 268.489 130.008 268.465Q130.035 268.441 130.056 268.441L130.168 268.441Q130.206 268.441 130.226 268.466Q130.247 268.492 130.247 268.530Q130.247 268.926 130.081 269.263Q129.915 269.600 129.628 269.847Q129.341 270.095 128.972 270.230Q128.603 270.365 128.224 270.365Q127.704 270.365 127.212 270.175Q126.720 269.986 126.340 269.642Q125.961 269.299 125.744 268.830Q125.527 268.362 125.527 267.832M131.231 267.832Q131.231 267.306 131.448 266.838Q131.665 266.370 132.048 266.024Q132.431 265.679 132.915 265.491Q133.398 265.303 133.928 265.303Q134.331 265.303 134.695 265.460Q135.059 265.618 135.343 265.912L135.767 265.330Q135.801 265.303 135.825 265.303L135.873 265.303Q135.904 265.303 135.928 265.327Q135.952 265.351 135.952 265.382L135.952 267.245Q135.952 267.268 135.926 267.294Q135.900 267.320 135.873 267.320L135.746 267.320Q135.685 267.320 135.671 267.245Q135.641 266.930 135.506 266.626Q135.371 266.322 135.155 266.088Q134.940 265.853 134.651 265.718Q134.362 265.583 134.034 265.583Q133.392 265.583 132.934 265.877Q132.476 266.171 132.243 266.684Q132.011 267.197 132.011 267.832Q132.011 268.304 132.141 268.713Q132.270 269.121 132.530 269.434Q132.790 269.746 133.169 269.916Q133.549 270.085 134.041 270.085Q134.369 270.085 134.663 269.969Q134.957 269.852 135.191 269.637Q135.425 269.422 135.555 269.133Q135.685 268.844 135.685 268.516Q135.685 268.489 135.712 268.465Q135.740 268.441 135.760 268.441L135.873 268.441Q135.911 268.441 135.931 268.466Q135.952 268.492 135.952 268.530Q135.952 268.926 135.786 269.263Q135.620 269.600 135.333 269.847Q135.046 270.095 134.677 270.230Q134.308 270.365 133.928 270.365Q133.409 270.365 132.916 270.175Q132.424 269.986 132.045 269.642Q131.665 269.299 131.448 268.830Q131.231 268.362 131.231 267.832\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M203.543 97.886v-9.381\"\u002F>\u003Cpath stroke=\"none\" d=\"m203.543 86.505-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg transform=\"translate(83.778 -187.253)\">\u003Cpath d=\"M112.984 267.832Q112.984 267.306 113.201 266.838Q113.418 266.370 113.801 266.024Q114.183 265.679 114.667 265.491Q115.151 265.303 115.681 265.303Q116.084 265.303 116.448 265.460Q116.812 265.618 117.096 265.912L117.519 265.330Q117.554 265.303 117.578 265.303L117.625 265.303Q117.656 265.303 117.680 265.327Q117.704 265.351 117.704 265.382L117.704 267.245Q117.704 267.268 117.678 267.294Q117.653 267.320 117.625 267.320L117.499 267.320Q117.437 267.320 117.424 267.245Q117.393 266.930 117.258 266.626Q117.123 266.322 116.908 266.088Q116.692 265.853 116.403 265.718Q116.115 265.583 115.787 265.583Q115.144 265.583 114.686 265.877Q114.228 266.171 113.995 266.684Q113.763 267.197 113.763 267.832Q113.763 268.304 113.893 268.713Q114.023 269.121 114.283 269.434Q114.542 269.746 114.922 269.916Q115.301 270.085 115.793 270.085Q116.121 270.085 116.415 269.969Q116.709 269.852 116.943 269.637Q117.178 269.422 117.308 269.133Q117.437 268.844 117.437 268.516Q117.437 268.489 117.465 268.465Q117.492 268.441 117.513 268.441L117.625 268.441Q117.663 268.441 117.683 268.466Q117.704 268.492 117.704 268.530Q117.704 268.926 117.538 269.263Q117.372 269.600 117.085 269.847Q116.798 270.095 116.429 270.230Q116.060 270.365 115.681 270.365Q115.161 270.365 114.669 270.175Q114.177 269.986 113.797 269.642Q113.418 269.299 113.201 268.830Q112.984 268.362 112.984 267.832M120.196 270.225L118.562 270.225L118.562 269.945Q118.791 269.945 118.940 269.911Q119.088 269.876 119.088 269.736L119.088 267.887Q119.088 267.617 118.981 267.556Q118.873 267.494 118.562 267.494L118.562 267.214L119.621 267.139L119.621 267.788Q119.792 267.480 120.097 267.309Q120.401 267.139 120.746 267.139Q121.252 267.139 121.536 267.362Q121.819 267.586 121.819 268.082L121.819 269.736Q121.819 269.873 121.968 269.909Q122.117 269.945 122.342 269.945L122.342 270.225L120.712 270.225L120.712 269.945Q120.941 269.945 121.089 269.911Q121.238 269.876 121.238 269.736L121.238 268.096Q121.238 267.761 121.119 267.561Q120.999 267.361 120.684 267.361Q120.414 267.361 120.180 267.497Q119.946 267.634 119.808 267.868Q119.669 268.102 119.669 268.376L119.669 269.736Q119.669 269.873 119.820 269.909Q119.970 269.945 120.196 269.945L120.196 270.225M122.930 268.714Q122.930 268.376 123.070 268.085Q123.210 267.795 123.455 267.581Q123.699 267.368 124.003 267.253Q124.308 267.139 124.632 267.139Q124.902 267.139 125.165 267.238Q125.429 267.337 125.620 267.515L125.620 266.117Q125.620 265.847 125.512 265.785Q125.405 265.724 125.094 265.724L125.094 265.443L126.170 265.368L126.170 269.552Q126.170 269.740 126.225 269.823Q126.280 269.907 126.380 269.926Q126.481 269.945 126.697 269.945L126.697 270.225L125.589 270.293L125.589 269.876Q125.172 270.293 124.547 270.293Q124.116 270.293 123.744 270.081Q123.371 269.870 123.151 269.509Q122.930 269.148 122.930 268.714M124.605 270.071Q124.813 270.071 125 269.999Q125.186 269.928 125.340 269.791Q125.494 269.654 125.589 269.476L125.589 267.867Q125.504 267.720 125.359 267.600Q125.213 267.480 125.044 267.421Q124.875 267.361 124.694 267.361Q124.133 267.361 123.865 267.750Q123.597 268.140 123.597 268.721Q123.597 269.292 123.831 269.682Q124.065 270.071 124.605 270.071\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M129.566 36.713v-40.28\"\u002F>\u003Cpath stroke=\"none\" d=\"m129.566-5.566-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(20.605 -241.652)\">\u003Cpath d=\"M114.399 270.198L113.271 267.699Q113.199 267.552 113.069 267.520Q112.939 267.487 112.710 267.487L112.710 267.207L114.224 267.207L114.224 267.487Q113.872 267.487 113.872 267.634Q113.872 267.679 113.883 267.699L114.747 269.617L115.527 267.887Q115.561 267.819 115.561 267.740Q115.561 267.627 115.477 267.557Q115.393 267.487 115.274 267.487L115.274 267.207L116.470 267.207L116.470 267.487Q116.251 267.487 116.080 267.590Q115.910 267.692 115.821 267.887L114.785 270.198Q114.737 270.293 114.631 270.293L114.553 270.293Q114.447 270.293 114.399 270.198\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(20.605 -241.652)\">\u003Cpath d=\"M116.639 269.497Q116.639 269.165 116.862 268.938Q117.086 268.711 117.430 268.583Q117.773 268.454 118.146 268.402Q118.518 268.349 118.823 268.349L118.823 268.096Q118.823 267.891 118.715 267.711Q118.607 267.532 118.426 267.429Q118.245 267.327 118.037 267.327Q117.630 267.327 117.394 267.419Q117.483 267.456 117.529 267.540Q117.575 267.624 117.575 267.726Q117.575 267.822 117.529 267.901Q117.483 267.979 117.402 268.024Q117.322 268.068 117.233 268.068Q117.083 268.068 116.982 267.971Q116.881 267.873 116.881 267.726Q116.881 267.104 118.037 267.104Q118.248 267.104 118.498 267.168Q118.747 267.231 118.949 267.350Q119.151 267.470 119.277 267.655Q119.404 267.839 119.404 268.082L119.404 269.658Q119.404 269.774 119.465 269.870Q119.527 269.965 119.640 269.965Q119.749 269.965 119.814 269.871Q119.879 269.777 119.879 269.658L119.879 269.210L120.145 269.210L120.145 269.658Q120.145 269.928 119.918 270.093Q119.691 270.259 119.411 270.259Q119.202 270.259 119.065 270.105Q118.929 269.952 118.905 269.736Q118.758 270.003 118.476 270.148Q118.194 270.293 117.869 270.293Q117.592 270.293 117.308 270.218Q117.025 270.143 116.832 269.964Q116.639 269.784 116.639 269.497M117.254 269.497Q117.254 269.671 117.355 269.801Q117.455 269.931 117.611 270.001Q117.766 270.071 117.931 270.071Q118.149 270.071 118.358 269.974Q118.566 269.876 118.694 269.695Q118.823 269.514 118.823 269.288L118.823 268.560Q118.498 268.560 118.132 268.651Q117.766 268.742 117.510 268.954Q117.254 269.165 117.254 269.497M122.230 270.225L120.627 270.225L120.627 269.945Q120.853 269.945 121.002 269.911Q121.150 269.876 121.150 269.736L121.150 266.117Q121.150 265.847 121.043 265.785Q120.935 265.724 120.627 265.724L120.627 265.443L121.704 265.368L121.704 269.736Q121.704 269.873 121.854 269.909Q122.005 269.945 122.230 269.945L122.230 270.225M124.667 270.225L122.931 270.225L122.931 269.945Q123.652 269.945 123.652 269.545L123.652 265.935Q123.652 265.724 122.931 265.724L122.931 265.443L124.288 265.443Q124.384 265.443 124.435 265.542L126.110 269.517L127.781 265.542Q127.829 265.443 127.928 265.443L129.278 265.443L129.278 265.724Q128.557 265.724 128.557 265.935L128.557 269.736Q128.557 269.945 129.278 269.945L129.278 270.225L127.221 270.225L127.221 269.945Q127.942 269.945 127.942 269.736L127.942 265.724L126.089 270.126Q126.041 270.225 125.932 270.225Q125.819 270.225 125.771 270.126L123.946 265.795L123.946 269.545Q123.946 269.945 124.667 269.945\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M172.446 201.939h70.931V53.984H171.6\"\u002F>\u003Cpath stroke=\"none\" d=\"m169.6 53.984 3.2 1.6-1.2-1.6 1.2-1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(66.17 -73.57)\">\u003Cpath d=\"M114.399 270.198L113.271 267.699Q113.199 267.552 113.069 267.520Q112.939 267.487 112.710 267.487L112.710 267.207L114.224 267.207L114.224 267.487Q113.872 267.487 113.872 267.634Q113.872 267.679 113.883 267.699L114.747 269.617L115.527 267.887Q115.561 267.819 115.561 267.740Q115.561 267.627 115.477 267.557Q115.393 267.487 115.274 267.487L115.274 267.207L116.470 267.207L116.470 267.487Q116.251 267.487 116.080 267.590Q115.910 267.692 115.821 267.887L114.785 270.198Q114.737 270.293 114.631 270.293L114.553 270.293Q114.447 270.293 114.399 270.198\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(66.17 -73.57)\">\u003Cpath d=\"M116.639 269.497Q116.639 269.165 116.862 268.938Q117.086 268.711 117.430 268.583Q117.773 268.454 118.146 268.402Q118.518 268.349 118.823 268.349L118.823 268.096Q118.823 267.891 118.715 267.711Q118.607 267.532 118.426 267.429Q118.245 267.327 118.037 267.327Q117.630 267.327 117.394 267.419Q117.483 267.456 117.529 267.540Q117.575 267.624 117.575 267.726Q117.575 267.822 117.529 267.901Q117.483 267.979 117.402 268.024Q117.322 268.068 117.233 268.068Q117.083 268.068 116.982 267.971Q116.881 267.873 116.881 267.726Q116.881 267.104 118.037 267.104Q118.248 267.104 118.498 267.168Q118.747 267.231 118.949 267.350Q119.151 267.470 119.277 267.655Q119.404 267.839 119.404 268.082L119.404 269.658Q119.404 269.774 119.465 269.870Q119.527 269.965 119.640 269.965Q119.749 269.965 119.814 269.871Q119.879 269.777 119.879 269.658L119.879 269.210L120.145 269.210L120.145 269.658Q120.145 269.928 119.918 270.093Q119.691 270.259 119.411 270.259Q119.202 270.259 119.065 270.105Q118.929 269.952 118.905 269.736Q118.758 270.003 118.476 270.148Q118.194 270.293 117.869 270.293Q117.592 270.293 117.308 270.218Q117.025 270.143 116.832 269.964Q116.639 269.784 116.639 269.497M117.254 269.497Q117.254 269.671 117.355 269.801Q117.455 269.931 117.611 270.001Q117.766 270.071 117.931 270.071Q118.149 270.071 118.358 269.974Q118.566 269.876 118.694 269.695Q118.823 269.514 118.823 269.288L118.823 268.560Q118.498 268.560 118.132 268.651Q117.766 268.742 117.510 268.954Q117.254 269.165 117.254 269.497M122.230 270.225L120.627 270.225L120.627 269.945Q120.853 269.945 121.002 269.911Q121.150 269.876 121.150 269.736L121.150 266.117Q121.150 265.847 121.043 265.785Q120.935 265.724 120.627 265.724L120.627 265.443L121.704 265.368L121.704 269.736Q121.704 269.873 121.854 269.909Q122.005 269.945 122.230 269.945L122.230 270.225M124.414 270.225L122.825 270.225L122.825 269.945Q123.468 269.945 123.625 269.545L125.269 265.330Q125.303 265.235 125.416 265.235L125.498 265.235Q125.607 265.235 125.648 265.330L127.368 269.736Q127.436 269.876 127.626 269.911Q127.815 269.945 128.089 269.945L128.089 270.225L126.089 270.225L126.089 269.945Q126.653 269.945 126.653 269.770Q126.653 269.753 126.651 269.746Q126.650 269.740 126.646 269.736L126.226 268.670L124.267 268.670L123.926 269.545Q123.912 269.545 123.912 269.623Q123.912 269.784 124.074 269.864Q124.237 269.945 124.414 269.945L124.414 270.225M125.248 266.151L124.380 268.390L126.123 268.390\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(66.17 -73.57)\">\u003Cpath d=\"M133.557 271.975Q133.007 271.575 132.636 271.020Q132.265 270.464 132.084 269.818Q131.903 269.172 131.903 268.475Q131.903 267.962 132.003 267.467Q132.104 266.971 132.309 266.520Q132.514 266.069 132.827 265.677Q133.140 265.286 133.557 264.982Q133.567 264.978 133.574 264.977Q133.581 264.975 133.591 264.975L133.659 264.975Q133.694 264.975 133.716 264.999Q133.738 265.023 133.738 265.060Q133.738 265.105 133.711 265.122Q133.362 265.423 133.109 265.807Q132.856 266.192 132.704 266.633Q132.552 267.074 132.480 267.530Q132.408 267.986 132.408 268.475Q132.408 269.476 132.718 270.363Q133.027 271.250 133.711 271.835Q133.738 271.852 133.738 271.896Q133.738 271.934 133.716 271.958Q133.694 271.982 133.659 271.982L133.591 271.982Q133.584 271.978 133.576 271.977Q133.567 271.975 133.557 271.975M134.548 268.714Q134.548 268.376 134.688 268.085Q134.828 267.795 135.073 267.581Q135.317 267.368 135.621 267.253Q135.925 267.139 136.250 267.139Q136.520 267.139 136.783 267.238Q137.047 267.337 137.238 267.515L137.238 266.117Q137.238 265.847 137.130 265.785Q137.023 265.724 136.712 265.724L136.712 265.443L137.788 265.368L137.788 269.552Q137.788 269.740 137.843 269.823Q137.898 269.907 137.998 269.926Q138.099 269.945 138.315 269.945L138.315 270.225L137.207 270.293L137.207 269.876Q136.790 270.293 136.165 270.293Q135.734 270.293 135.362 270.081Q134.989 269.870 134.769 269.509Q134.548 269.148 134.548 268.714M136.223 270.071Q136.431 270.071 136.618 269.999Q136.804 269.928 136.958 269.791Q137.112 269.654 137.207 269.476L137.207 267.867Q137.122 267.720 136.977 267.600Q136.831 267.480 136.662 267.421Q136.493 267.361 136.312 267.361Q135.751 267.361 135.483 267.750Q135.215 268.140 135.215 268.721Q135.215 269.292 135.449 269.682Q135.683 270.071 136.223 270.071M139.022 269.497Q139.022 269.165 139.246 268.938Q139.470 268.711 139.813 268.583Q140.157 268.454 140.530 268.402Q140.902 268.349 141.206 268.349L141.206 268.096Q141.206 267.891 141.099 267.711Q140.991 267.532 140.810 267.429Q140.629 267.327 140.420 267.327Q140.013 267.327 139.778 267.419Q139.866 267.456 139.913 267.540Q139.959 267.624 139.959 267.726Q139.959 267.822 139.913 267.901Q139.866 267.979 139.786 268.024Q139.706 268.068 139.617 268.068Q139.467 268.068 139.366 267.971Q139.265 267.873 139.265 267.726Q139.265 267.104 140.420 267.104Q140.632 267.104 140.882 267.168Q141.131 267.231 141.333 267.350Q141.534 267.470 141.661 267.655Q141.787 267.839 141.787 268.082L141.787 269.658Q141.787 269.774 141.849 269.870Q141.910 269.965 142.023 269.965Q142.133 269.965 142.197 269.871Q142.262 269.777 142.262 269.658L142.262 269.210L142.529 269.210L142.529 269.658Q142.529 269.928 142.302 270.093Q142.074 270.259 141.794 270.259Q141.586 270.259 141.449 270.105Q141.312 269.952 141.288 269.736Q141.141 270.003 140.859 270.148Q140.577 270.293 140.253 270.293Q139.976 270.293 139.692 270.218Q139.408 270.143 139.215 269.964Q139.022 269.784 139.022 269.497M139.637 269.497Q139.637 269.671 139.738 269.801Q139.839 269.931 139.995 270.001Q140.150 270.071 140.314 270.071Q140.533 270.071 140.741 269.974Q140.950 269.876 141.078 269.695Q141.206 269.514 141.206 269.288L141.206 268.560Q140.882 268.560 140.516 268.651Q140.150 268.742 139.894 268.954Q139.637 269.165 139.637 269.497M143.472 269.384L143.472 267.487L142.833 267.487L142.833 267.265Q143.151 267.265 143.368 267.055Q143.585 266.845 143.686 266.535Q143.787 266.226 143.787 265.918L144.053 265.918L144.053 267.207L145.130 267.207L145.130 267.487L144.053 267.487L144.053 269.371Q144.053 269.647 144.158 269.846Q144.262 270.044 144.522 270.044Q144.679 270.044 144.785 269.940Q144.891 269.835 144.940 269.682Q144.990 269.528 144.990 269.371L144.990 268.957L145.257 268.957L145.257 269.384Q145.257 269.610 145.157 269.820Q145.058 270.030 144.874 270.162Q144.689 270.293 144.460 270.293Q144.023 270.293 143.748 270.056Q143.472 269.818 143.472 269.384M146.125 269.497Q146.125 269.165 146.349 268.938Q146.572 268.711 146.916 268.583Q147.259 268.454 147.632 268.402Q148.005 268.349 148.309 268.349L148.309 268.096Q148.309 267.891 148.201 267.711Q148.093 267.532 147.912 267.429Q147.731 267.327 147.523 267.327Q147.116 267.327 146.880 267.419Q146.969 267.456 147.015 267.540Q147.061 267.624 147.061 267.726Q147.061 267.822 147.015 267.901Q146.969 267.979 146.889 268.024Q146.808 268.068 146.719 268.068Q146.569 268.068 146.468 267.971Q146.367 267.873 146.367 267.726Q146.367 267.104 147.523 267.104Q147.735 267.104 147.984 267.168Q148.234 267.231 148.435 267.350Q148.637 267.470 148.763 267.655Q148.890 267.839 148.890 268.082L148.890 269.658Q148.890 269.774 148.951 269.870Q149.013 269.965 149.126 269.965Q149.235 269.965 149.300 269.871Q149.365 269.777 149.365 269.658L149.365 269.210L149.632 269.210L149.632 269.658Q149.632 269.928 149.404 270.093Q149.177 270.259 148.897 270.259Q148.688 270.259 148.551 270.105Q148.415 269.952 148.391 269.736Q148.244 270.003 147.962 270.148Q147.680 270.293 147.355 270.293Q147.078 270.293 146.795 270.218Q146.511 270.143 146.318 269.964Q146.125 269.784 146.125 269.497M146.740 269.497Q146.740 269.671 146.841 269.801Q146.942 269.931 147.097 270.001Q147.253 270.071 147.417 270.071Q147.635 270.071 147.844 269.974Q148.052 269.876 148.181 269.695Q148.309 269.514 148.309 269.288L148.309 268.560Q147.984 268.560 147.618 268.651Q147.253 268.742 146.996 268.954Q146.740 269.165 146.740 269.497\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(66.17 -73.57)\">\u003Cpath d=\"M154.377 270.225L152.825 270.225L152.825 269.945Q153.051 269.945 153.200 269.911Q153.348 269.876 153.348 269.736L153.348 267.887Q153.348 267.699 153.300 267.615Q153.253 267.532 153.155 267.513Q153.058 267.494 152.846 267.494L152.846 267.214L153.902 267.139L153.902 269.736Q153.902 269.876 154.034 269.911Q154.165 269.945 154.377 269.945L154.377 270.225M153.106 265.918Q153.106 265.747 153.229 265.628Q153.352 265.508 153.523 265.508Q153.690 265.508 153.813 265.628Q153.936 265.747 153.936 265.918Q153.936 266.093 153.813 266.216Q153.690 266.339 153.523 266.339Q153.352 266.339 153.229 266.216Q153.106 266.093 153.106 265.918M156.705 270.225L155.071 270.225L155.071 269.945Q155.300 269.945 155.449 269.911Q155.597 269.876 155.597 269.736L155.597 267.887Q155.597 267.617 155.490 267.556Q155.382 267.494 155.071 267.494L155.071 267.214L156.131 267.139L156.131 267.788Q156.301 267.480 156.606 267.309Q156.910 267.139 157.255 267.139Q157.761 267.139 158.045 267.362Q158.328 267.586 158.328 268.082L158.328 269.736Q158.328 269.873 158.477 269.909Q158.626 269.945 158.851 269.945L158.851 270.225L157.221 270.225L157.221 269.945Q157.450 269.945 157.599 269.911Q157.747 269.876 157.747 269.736L157.747 268.096Q157.747 267.761 157.628 267.561Q157.508 267.361 157.194 267.361Q156.924 267.361 156.689 267.497Q156.455 267.634 156.317 267.868Q156.178 268.102 156.178 268.376L156.178 269.736Q156.178 269.873 156.329 269.909Q156.479 269.945 156.705 269.945L156.705 270.225M159.760 271.982L159.692 271.982Q159.658 271.982 159.636 271.956Q159.613 271.931 159.613 271.896Q159.613 271.852 159.644 271.835Q160 271.531 160.249 271.141Q160.499 270.751 160.651 270.319Q160.803 269.887 160.873 269.418Q160.943 268.950 160.943 268.475Q160.943 267.996 160.873 267.530Q160.803 267.063 160.649 266.628Q160.495 266.192 160.244 265.804Q159.993 265.416 159.644 265.122Q159.613 265.105 159.613 265.060Q159.613 265.026 159.636 265.001Q159.658 264.975 159.692 264.975L159.760 264.975Q159.771 264.975 159.779 264.977Q159.788 264.978 159.798 264.982Q160.342 265.382 160.714 265.935Q161.087 266.489 161.268 267.135Q161.449 267.781 161.449 268.475Q161.449 269.176 161.268 269.823Q161.087 270.471 160.712 271.025Q160.338 271.579 159.798 271.975Q159.788 271.975 159.779 271.977Q159.771 271.978 159.760 271.982\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M166.755 261.69h99.384V-14.303H154.33\"\u002F>\u003Cpath stroke=\"none\" d=\"m152.328-14.302 3.2 1.6-1.2-1.6 1.2-1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(83.184 -288.06)\">\u003Cpath d=\"M114.399 270.198L113.271 267.699Q113.199 267.552 113.069 267.520Q112.939 267.487 112.710 267.487L112.710 267.207L114.224 267.207L114.224 267.487Q113.872 267.487 113.872 267.634Q113.872 267.679 113.883 267.699L114.747 269.617L115.527 267.887Q115.561 267.819 115.561 267.740Q115.561 267.627 115.477 267.557Q115.393 267.487 115.274 267.487L115.274 267.207L116.470 267.207L116.470 267.487Q116.251 267.487 116.080 267.590Q115.910 267.692 115.821 267.887L114.785 270.198Q114.737 270.293 114.631 270.293L114.553 270.293Q114.447 270.293 114.399 270.198\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(83.184 -288.06)\">\u003Cpath d=\"M116.639 269.497Q116.639 269.165 116.862 268.938Q117.086 268.711 117.430 268.583Q117.773 268.454 118.146 268.402Q118.518 268.349 118.823 268.349L118.823 268.096Q118.823 267.891 118.715 267.711Q118.607 267.532 118.426 267.429Q118.245 267.327 118.037 267.327Q117.630 267.327 117.394 267.419Q117.483 267.456 117.529 267.540Q117.575 267.624 117.575 267.726Q117.575 267.822 117.529 267.901Q117.483 267.979 117.402 268.024Q117.322 268.068 117.233 268.068Q117.083 268.068 116.982 267.971Q116.881 267.873 116.881 267.726Q116.881 267.104 118.037 267.104Q118.248 267.104 118.498 267.168Q118.747 267.231 118.949 267.350Q119.151 267.470 119.277 267.655Q119.404 267.839 119.404 268.082L119.404 269.658Q119.404 269.774 119.465 269.870Q119.527 269.965 119.640 269.965Q119.749 269.965 119.814 269.871Q119.879 269.777 119.879 269.658L119.879 269.210L120.145 269.210L120.145 269.658Q120.145 269.928 119.918 270.093Q119.691 270.259 119.411 270.259Q119.202 270.259 119.065 270.105Q118.929 269.952 118.905 269.736Q118.758 270.003 118.476 270.148Q118.194 270.293 117.869 270.293Q117.592 270.293 117.308 270.218Q117.025 270.143 116.832 269.964Q116.639 269.784 116.639 269.497M117.254 269.497Q117.254 269.671 117.355 269.801Q117.455 269.931 117.611 270.001Q117.766 270.071 117.931 270.071Q118.149 270.071 118.358 269.974Q118.566 269.876 118.694 269.695Q118.823 269.514 118.823 269.288L118.823 268.560Q118.498 268.560 118.132 268.651Q117.766 268.742 117.510 268.954Q117.254 269.165 117.254 269.497M122.230 270.225L120.627 270.225L120.627 269.945Q120.853 269.945 121.002 269.911Q121.150 269.876 121.150 269.736L121.150 266.117Q121.150 265.847 121.043 265.785Q120.935 265.724 120.627 265.724L120.627 265.443L121.704 265.368L121.704 269.736Q121.704 269.873 121.854 269.909Q122.005 269.945 122.230 269.945L122.230 270.225M122.999 267.832Q122.999 267.306 123.216 266.838Q123.433 266.370 123.816 266.024Q124.199 265.679 124.683 265.491Q125.166 265.303 125.696 265.303Q126.099 265.303 126.464 265.460Q126.828 265.618 127.111 265.912L127.535 265.330Q127.569 265.303 127.593 265.303L127.641 265.303Q127.672 265.303 127.696 265.327Q127.720 265.351 127.720 265.382L127.720 267.245Q127.720 267.268 127.694 267.294Q127.668 267.320 127.641 267.320L127.515 267.320Q127.453 267.320 127.439 267.245Q127.409 266.930 127.274 266.626Q127.139 266.322 126.923 266.088Q126.708 265.853 126.419 265.718Q126.130 265.583 125.802 265.583Q125.160 265.583 124.702 265.877Q124.244 266.171 124.011 266.684Q123.779 267.197 123.779 267.832Q123.779 268.304 123.909 268.713Q124.038 269.121 124.298 269.434Q124.558 269.746 124.937 269.916Q125.317 270.085 125.809 270.085Q126.137 270.085 126.431 269.969Q126.725 269.852 126.959 269.637Q127.193 269.422 127.323 269.133Q127.453 268.844 127.453 268.516Q127.453 268.489 127.480 268.465Q127.508 268.441 127.528 268.441L127.641 268.441Q127.679 268.441 127.699 268.466Q127.720 268.492 127.720 268.530Q127.720 268.926 127.554 269.263Q127.388 269.600 127.101 269.847Q126.814 270.095 126.445 270.230Q126.076 270.365 125.696 270.365Q125.177 270.365 124.684 270.175Q124.192 269.986 123.813 269.642Q123.433 269.299 123.216 268.830Q122.999 268.362 122.999 267.832\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(83.184 -12.069)\">\u003Cpath d=\"M114.399 270.198L113.271 267.699Q113.199 267.552 113.069 267.520Q112.939 267.487 112.710 267.487L112.710 267.207L114.224 267.207L114.224 267.487Q113.872 267.487 113.872 267.634Q113.872 267.679 113.883 267.699L114.747 269.617L115.527 267.887Q115.561 267.819 115.561 267.740Q115.561 267.627 115.477 267.557Q115.393 267.487 115.274 267.487L115.274 267.207L116.470 267.207L116.470 267.487Q116.251 267.487 116.080 267.590Q115.910 267.692 115.821 267.887L114.785 270.198Q114.737 270.293 114.631 270.293L114.553 270.293Q114.447 270.293 114.399 270.198\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(83.184 -12.069)\">\u003Cpath d=\"M116.639 269.497Q116.639 269.165 116.862 268.938Q117.086 268.711 117.430 268.583Q117.773 268.454 118.146 268.402Q118.518 268.349 118.823 268.349L118.823 268.096Q118.823 267.891 118.715 267.711Q118.607 267.532 118.426 267.429Q118.245 267.327 118.037 267.327Q117.630 267.327 117.394 267.419Q117.483 267.456 117.529 267.540Q117.575 267.624 117.575 267.726Q117.575 267.822 117.529 267.901Q117.483 267.979 117.402 268.024Q117.322 268.068 117.233 268.068Q117.083 268.068 116.982 267.971Q116.881 267.873 116.881 267.726Q116.881 267.104 118.037 267.104Q118.248 267.104 118.498 267.168Q118.747 267.231 118.949 267.350Q119.151 267.470 119.277 267.655Q119.404 267.839 119.404 268.082L119.404 269.658Q119.404 269.774 119.465 269.870Q119.527 269.965 119.640 269.965Q119.749 269.965 119.814 269.871Q119.879 269.777 119.879 269.658L119.879 269.210L120.145 269.210L120.145 269.658Q120.145 269.928 119.918 270.093Q119.691 270.259 119.411 270.259Q119.202 270.259 119.065 270.105Q118.929 269.952 118.905 269.736Q118.758 270.003 118.476 270.148Q118.194 270.293 117.869 270.293Q117.592 270.293 117.308 270.218Q117.025 270.143 116.832 269.964Q116.639 269.784 116.639 269.497M117.254 269.497Q117.254 269.671 117.355 269.801Q117.455 269.931 117.611 270.001Q117.766 270.071 117.931 270.071Q118.149 270.071 118.358 269.974Q118.566 269.876 118.694 269.695Q118.823 269.514 118.823 269.288L118.823 268.560Q118.498 268.560 118.132 268.651Q117.766 268.742 117.510 268.954Q117.254 269.165 117.254 269.497M122.230 270.225L120.627 270.225L120.627 269.945Q120.853 269.945 121.002 269.911Q121.150 269.876 121.150 269.736L121.150 266.117Q121.150 265.847 121.043 265.785Q120.935 265.724 120.627 265.724L120.627 265.443L121.704 265.368L121.704 269.736Q121.704 269.873 121.854 269.909Q122.005 269.945 122.230 269.945L122.230 270.225M122.999 267.832Q122.999 267.306 123.216 266.838Q123.433 266.370 123.816 266.024Q124.199 265.679 124.683 265.491Q125.166 265.303 125.696 265.303Q126.099 265.303 126.464 265.460Q126.828 265.618 127.111 265.912L127.535 265.330Q127.569 265.303 127.593 265.303L127.641 265.303Q127.672 265.303 127.696 265.327Q127.720 265.351 127.720 265.382L127.720 267.245Q127.720 267.268 127.694 267.294Q127.668 267.320 127.641 267.320L127.515 267.320Q127.453 267.320 127.439 267.245Q127.409 266.930 127.274 266.626Q127.139 266.322 126.923 266.088Q126.708 265.853 126.419 265.718Q126.130 265.583 125.802 265.583Q125.160 265.583 124.702 265.877Q124.244 266.171 124.011 266.684Q123.779 267.197 123.779 267.832Q123.779 268.304 123.909 268.713Q124.038 269.121 124.298 269.434Q124.558 269.746 124.937 269.916Q125.317 270.085 125.809 270.085Q126.137 270.085 126.431 269.969Q126.725 269.852 126.959 269.637Q127.193 269.422 127.323 269.133Q127.453 268.844 127.453 268.516Q127.453 268.489 127.480 268.465Q127.508 268.441 127.528 268.441L127.641 268.441Q127.679 268.441 127.699 268.466Q127.720 268.492 127.720 268.530Q127.720 268.926 127.554 269.263Q127.388 269.600 127.101 269.847Q126.814 270.095 126.445 270.230Q126.076 270.365 125.696 270.365Q125.177 270.365 124.684 270.175Q124.192 269.986 123.813 269.642Q123.433 269.299 123.216 268.830Q122.999 268.362 122.999 267.832\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M166.755 278.761h122.147V-31.374H154.328\"\u002F>\u003Cpath stroke=\"none\" d=\"m152.328-31.374 3.2 1.6-1.2-1.6 1.2-1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(83.35 -305.132)\">\u003Cpath d=\"M114.399 270.198L113.271 267.699Q113.199 267.552 113.069 267.520Q112.939 267.487 112.710 267.487L112.710 267.207L114.224 267.207L114.224 267.487Q113.872 267.487 113.872 267.634Q113.872 267.679 113.883 267.699L114.747 269.617L115.527 267.887Q115.561 267.819 115.561 267.740Q115.561 267.627 115.477 267.557Q115.393 267.487 115.274 267.487L115.274 267.207L116.470 267.207L116.470 267.487Q116.251 267.487 116.080 267.590Q115.910 267.692 115.821 267.887L114.785 270.198Q114.737 270.293 114.631 270.293L114.553 270.293Q114.447 270.293 114.399 270.198\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(83.35 -305.132)\">\u003Cpath d=\"M116.639 269.497Q116.639 269.165 116.862 268.938Q117.086 268.711 117.430 268.583Q117.773 268.454 118.146 268.402Q118.518 268.349 118.823 268.349L118.823 268.096Q118.823 267.891 118.715 267.711Q118.607 267.532 118.426 267.429Q118.245 267.327 118.037 267.327Q117.630 267.327 117.394 267.419Q117.483 267.456 117.529 267.540Q117.575 267.624 117.575 267.726Q117.575 267.822 117.529 267.901Q117.483 267.979 117.402 268.024Q117.322 268.068 117.233 268.068Q117.083 268.068 116.982 267.971Q116.881 267.873 116.881 267.726Q116.881 267.104 118.037 267.104Q118.248 267.104 118.498 267.168Q118.747 267.231 118.949 267.350Q119.151 267.470 119.277 267.655Q119.404 267.839 119.404 268.082L119.404 269.658Q119.404 269.774 119.465 269.870Q119.527 269.965 119.640 269.965Q119.749 269.965 119.814 269.871Q119.879 269.777 119.879 269.658L119.879 269.210L120.145 269.210L120.145 269.658Q120.145 269.928 119.918 270.093Q119.691 270.259 119.411 270.259Q119.202 270.259 119.065 270.105Q118.929 269.952 118.905 269.736Q118.758 270.003 118.476 270.148Q118.194 270.293 117.869 270.293Q117.592 270.293 117.308 270.218Q117.025 270.143 116.832 269.964Q116.639 269.784 116.639 269.497M117.254 269.497Q117.254 269.671 117.355 269.801Q117.455 269.931 117.611 270.001Q117.766 270.071 117.931 270.071Q118.149 270.071 118.358 269.974Q118.566 269.876 118.694 269.695Q118.823 269.514 118.823 269.288L118.823 268.560Q118.498 268.560 118.132 268.651Q117.766 268.742 117.510 268.954Q117.254 269.165 117.254 269.497M122.230 270.225L120.627 270.225L120.627 269.945Q120.853 269.945 121.002 269.911Q121.150 269.876 121.150 269.736L121.150 266.117Q121.150 265.847 121.043 265.785Q120.935 265.724 120.627 265.724L120.627 265.443L121.704 265.368L121.704 269.736Q121.704 269.873 121.854 269.909Q122.005 269.945 122.230 269.945L122.230 270.225M125.037 270.225L122.904 270.225L122.904 269.945Q123.625 269.945 123.625 269.736L123.625 265.935Q123.625 265.724 122.904 265.724L122.904 265.443L125.570 265.443Q125.980 265.443 126.400 265.597Q126.821 265.751 127.104 266.055Q127.388 266.359 127.388 266.773Q127.388 267.091 127.221 267.337Q127.053 267.583 126.776 267.749Q126.499 267.914 126.178 267.998Q125.857 268.082 125.570 268.082L124.315 268.082L124.315 269.736Q124.315 269.945 125.037 269.945L125.037 270.225M124.288 265.935L124.288 267.832L125.375 267.832Q125.983 267.832 126.298 267.595Q126.612 267.357 126.612 266.773Q126.612 266.380 126.467 266.146Q126.322 265.912 126.050 265.818Q125.778 265.724 125.375 265.724L124.654 265.724Q124.466 265.724 124.377 265.758Q124.288 265.792 124.288 265.935\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(83.35 18.353)\">\u003Cpath d=\"M114.399 270.198L113.271 267.699Q113.199 267.552 113.069 267.520Q112.939 267.487 112.710 267.487L112.710 267.207L114.224 267.207L114.224 267.487Q113.872 267.487 113.872 267.634Q113.872 267.679 113.883 267.699L114.747 269.617L115.527 267.887Q115.561 267.819 115.561 267.740Q115.561 267.627 115.477 267.557Q115.393 267.487 115.274 267.487L115.274 267.207L116.470 267.207L116.470 267.487Q116.251 267.487 116.080 267.590Q115.910 267.692 115.821 267.887L114.785 270.198Q114.737 270.293 114.631 270.293L114.553 270.293Q114.447 270.293 114.399 270.198\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(83.35 18.353)\">\u003Cpath d=\"M116.639 269.497Q116.639 269.165 116.862 268.938Q117.086 268.711 117.430 268.583Q117.773 268.454 118.146 268.402Q118.518 268.349 118.823 268.349L118.823 268.096Q118.823 267.891 118.715 267.711Q118.607 267.532 118.426 267.429Q118.245 267.327 118.037 267.327Q117.630 267.327 117.394 267.419Q117.483 267.456 117.529 267.540Q117.575 267.624 117.575 267.726Q117.575 267.822 117.529 267.901Q117.483 267.979 117.402 268.024Q117.322 268.068 117.233 268.068Q117.083 268.068 116.982 267.971Q116.881 267.873 116.881 267.726Q116.881 267.104 118.037 267.104Q118.248 267.104 118.498 267.168Q118.747 267.231 118.949 267.350Q119.151 267.470 119.277 267.655Q119.404 267.839 119.404 268.082L119.404 269.658Q119.404 269.774 119.465 269.870Q119.527 269.965 119.640 269.965Q119.749 269.965 119.814 269.871Q119.879 269.777 119.879 269.658L119.879 269.210L120.145 269.210L120.145 269.658Q120.145 269.928 119.918 270.093Q119.691 270.259 119.411 270.259Q119.202 270.259 119.065 270.105Q118.929 269.952 118.905 269.736Q118.758 270.003 118.476 270.148Q118.194 270.293 117.869 270.293Q117.592 270.293 117.308 270.218Q117.025 270.143 116.832 269.964Q116.639 269.784 116.639 269.497M117.254 269.497Q117.254 269.671 117.355 269.801Q117.455 269.931 117.611 270.001Q117.766 270.071 117.931 270.071Q118.149 270.071 118.358 269.974Q118.566 269.876 118.694 269.695Q118.823 269.514 118.823 269.288L118.823 268.560Q118.498 268.560 118.132 268.651Q117.766 268.742 117.510 268.954Q117.254 269.165 117.254 269.497M122.230 270.225L120.627 270.225L120.627 269.945Q120.853 269.945 121.002 269.911Q121.150 269.876 121.150 269.736L121.150 266.117Q121.150 265.847 121.043 265.785Q120.935 265.724 120.627 265.724L120.627 265.443L121.704 265.368L121.704 269.736Q121.704 269.873 121.854 269.909Q122.005 269.945 122.230 269.945L122.230 270.225M125.037 270.225L122.904 270.225L122.904 269.945Q123.625 269.945 123.625 269.736L123.625 265.935Q123.625 265.724 122.904 265.724L122.904 265.443L125.570 265.443Q125.980 265.443 126.400 265.597Q126.821 265.751 127.104 266.055Q127.388 266.359 127.388 266.773Q127.388 267.091 127.221 267.337Q127.053 267.583 126.776 267.749Q126.499 267.914 126.178 267.998Q125.857 268.082 125.570 268.082L124.315 268.082L124.315 269.736Q124.315 269.945 125.037 269.945L125.037 270.225M124.288 265.935L124.288 267.832L125.375 267.832Q125.983 267.832 126.298 267.595Q126.612 267.357 126.612 266.773Q126.612 266.380 126.467 266.146Q126.322 265.912 126.050 265.818Q125.778 265.724 125.375 265.724L124.654 265.724Q124.466 265.724 124.377 265.758Q124.288 265.792 124.288 265.935\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M92.378 261.69H27.136V150.723h71.778\"\u002F>\u003Cpath stroke=\"none\" d=\"m100.914 150.724-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-61.925 -12.069)\">\u003Cpath d=\"M114.399 270.198L113.271 267.699Q113.199 267.552 113.069 267.520Q112.939 267.487 112.710 267.487L112.710 267.207L114.224 267.207L114.224 267.487Q113.872 267.487 113.872 267.634Q113.872 267.679 113.883 267.699L114.747 269.617L115.527 267.887Q115.561 267.819 115.561 267.740Q115.561 267.627 115.477 267.557Q115.393 267.487 115.274 267.487L115.274 267.207L116.470 267.207L116.470 267.487Q116.251 267.487 116.080 267.590Q115.910 267.692 115.821 267.887L114.785 270.198Q114.737 270.293 114.631 270.293L114.553 270.293Q114.447 270.293 114.399 270.198\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-61.925 -12.069)\">\u003Cpath d=\"M116.639 269.497Q116.639 269.165 116.862 268.938Q117.086 268.711 117.430 268.583Q117.773 268.454 118.146 268.402Q118.518 268.349 118.823 268.349L118.823 268.096Q118.823 267.891 118.715 267.711Q118.607 267.532 118.426 267.429Q118.245 267.327 118.037 267.327Q117.630 267.327 117.394 267.419Q117.483 267.456 117.529 267.540Q117.575 267.624 117.575 267.726Q117.575 267.822 117.529 267.901Q117.483 267.979 117.402 268.024Q117.322 268.068 117.233 268.068Q117.083 268.068 116.982 267.971Q116.881 267.873 116.881 267.726Q116.881 267.104 118.037 267.104Q118.248 267.104 118.498 267.168Q118.747 267.231 118.949 267.350Q119.151 267.470 119.277 267.655Q119.404 267.839 119.404 268.082L119.404 269.658Q119.404 269.774 119.465 269.870Q119.527 269.965 119.640 269.965Q119.749 269.965 119.814 269.871Q119.879 269.777 119.879 269.658L119.879 269.210L120.145 269.210L120.145 269.658Q120.145 269.928 119.918 270.093Q119.691 270.259 119.411 270.259Q119.202 270.259 119.065 270.105Q118.929 269.952 118.905 269.736Q118.758 270.003 118.476 270.148Q118.194 270.293 117.869 270.293Q117.592 270.293 117.308 270.218Q117.025 270.143 116.832 269.964Q116.639 269.784 116.639 269.497M117.254 269.497Q117.254 269.671 117.355 269.801Q117.455 269.931 117.611 270.001Q117.766 270.071 117.931 270.071Q118.149 270.071 118.358 269.974Q118.566 269.876 118.694 269.695Q118.823 269.514 118.823 269.288L118.823 268.560Q118.498 268.560 118.132 268.651Q117.766 268.742 117.510 268.954Q117.254 269.165 117.254 269.497M122.230 270.225L120.627 270.225L120.627 269.945Q120.853 269.945 121.002 269.911Q121.150 269.876 121.150 269.736L121.150 266.117Q121.150 265.847 121.043 265.785Q120.935 265.724 120.627 265.724L120.627 265.443L121.704 265.368L121.704 269.736Q121.704 269.873 121.854 269.909Q122.005 269.945 122.230 269.945L122.230 270.225M122.999 267.832Q122.999 267.306 123.216 266.838Q123.433 266.370 123.816 266.024Q124.199 265.679 124.683 265.491Q125.166 265.303 125.696 265.303Q126.099 265.303 126.464 265.460Q126.828 265.618 127.111 265.912L127.535 265.330Q127.569 265.303 127.593 265.303L127.641 265.303Q127.672 265.303 127.696 265.327Q127.720 265.351 127.720 265.382L127.720 267.245Q127.720 267.268 127.694 267.294Q127.668 267.320 127.641 267.320L127.515 267.320Q127.453 267.320 127.439 267.245Q127.409 266.930 127.274 266.626Q127.139 266.322 126.923 266.088Q126.708 265.853 126.419 265.718Q126.130 265.583 125.802 265.583Q125.160 265.583 124.702 265.877Q124.244 266.171 124.011 266.684Q123.779 267.197 123.779 267.832Q123.779 268.304 123.909 268.713Q124.038 269.121 124.298 269.434Q124.558 269.746 124.937 269.916Q125.317 270.085 125.809 270.085Q126.137 270.085 126.431 269.969Q126.725 269.852 126.959 269.637Q127.193 269.422 127.323 269.133Q127.453 268.844 127.453 268.516Q127.453 268.489 127.480 268.465Q127.508 268.441 127.528 268.441L127.641 268.441Q127.679 268.441 127.699 268.466Q127.720 268.492 127.720 268.530Q127.720 268.926 127.554 269.263Q127.388 269.600 127.101 269.847Q126.814 270.095 126.445 270.230Q126.076 270.365 125.696 270.365Q125.177 270.365 124.684 270.175Q124.192 269.986 123.813 269.642Q123.433 269.299 123.216 268.830Q122.999 268.362 122.999 267.832\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M129.566 85.282H4.374v110.966h80.313\"\u002F>\u003Cpath stroke=\"none\" d=\"m86.687 196.248-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-53.222 -188.476)\">\u003Cpath d=\"M114.399 270.198L113.271 267.699Q113.199 267.552 113.069 267.520Q112.939 267.487 112.710 267.487L112.710 267.207L114.224 267.207L114.224 267.487Q113.872 267.487 113.872 267.634Q113.872 267.679 113.883 267.699L114.747 269.617L115.527 267.887Q115.561 267.819 115.561 267.740Q115.561 267.627 115.477 267.557Q115.393 267.487 115.274 267.487L115.274 267.207L116.470 267.207L116.470 267.487Q116.251 267.487 116.080 267.590Q115.910 267.692 115.821 267.887L114.785 270.198Q114.737 270.293 114.631 270.293L114.553 270.293Q114.447 270.293 114.399 270.198\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-53.222 -188.476)\">\u003Cpath d=\"M116.639 269.497Q116.639 269.165 116.862 268.938Q117.086 268.711 117.430 268.583Q117.773 268.454 118.146 268.402Q118.518 268.349 118.823 268.349L118.823 268.096Q118.823 267.891 118.715 267.711Q118.607 267.532 118.426 267.429Q118.245 267.327 118.037 267.327Q117.630 267.327 117.394 267.419Q117.483 267.456 117.529 267.540Q117.575 267.624 117.575 267.726Q117.575 267.822 117.529 267.901Q117.483 267.979 117.402 268.024Q117.322 268.068 117.233 268.068Q117.083 268.068 116.982 267.971Q116.881 267.873 116.881 267.726Q116.881 267.104 118.037 267.104Q118.248 267.104 118.498 267.168Q118.747 267.231 118.949 267.350Q119.151 267.470 119.277 267.655Q119.404 267.839 119.404 268.082L119.404 269.658Q119.404 269.774 119.465 269.870Q119.527 269.965 119.640 269.965Q119.749 269.965 119.814 269.871Q119.879 269.777 119.879 269.658L119.879 269.210L120.145 269.210L120.145 269.658Q120.145 269.928 119.918 270.093Q119.691 270.259 119.411 270.259Q119.202 270.259 119.065 270.105Q118.929 269.952 118.905 269.736Q118.758 270.003 118.476 270.148Q118.194 270.293 117.869 270.293Q117.592 270.293 117.308 270.218Q117.025 270.143 116.832 269.964Q116.639 269.784 116.639 269.497M117.254 269.497Q117.254 269.671 117.355 269.801Q117.455 269.931 117.611 270.001Q117.766 270.071 117.931 270.071Q118.149 270.071 118.358 269.974Q118.566 269.876 118.694 269.695Q118.823 269.514 118.823 269.288L118.823 268.560Q118.498 268.560 118.132 268.651Q117.766 268.742 117.510 268.954Q117.254 269.165 117.254 269.497M122.230 270.225L120.627 270.225L120.627 269.945Q120.853 269.945 121.002 269.911Q121.150 269.876 121.150 269.736L121.150 266.117Q121.150 265.847 121.043 265.785Q120.935 265.724 120.627 265.724L120.627 265.443L121.704 265.368L121.704 269.736Q121.704 269.873 121.854 269.909Q122.005 269.945 122.230 269.945L122.230 270.225M127.292 270.225L122.890 270.225L122.890 269.945Q123.611 269.945 123.611 269.736L123.611 265.935Q123.611 265.724 122.890 265.724L122.890 265.443L127.180 265.443L127.388 267.080L127.125 267.080Q127.067 266.609 126.964 266.344Q126.862 266.079 126.677 265.946Q126.493 265.812 126.221 265.768Q125.949 265.724 125.450 265.724L124.667 265.724Q124.479 265.724 124.391 265.758Q124.302 265.792 124.302 265.935L124.302 267.600L124.876 267.600Q125.266 267.600 125.448 267.549Q125.631 267.497 125.713 267.325Q125.795 267.152 125.795 266.780L126.058 266.780L126.058 268.701L125.795 268.701Q125.795 268.328 125.713 268.155Q125.631 267.983 125.448 267.932Q125.266 267.880 124.876 267.880L124.302 267.880L124.302 269.736Q124.302 269.876 124.391 269.911Q124.479 269.945 124.667 269.945L125.515 269.945Q126.045 269.945 126.354 269.876Q126.663 269.808 126.851 269.641Q127.039 269.473 127.147 269.171Q127.255 268.868 127.340 268.355L127.607 268.355\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-64.948 -78.079)\">\u003Cpath d=\"M112.809 268.714Q112.809 268.376 112.950 268.085Q113.090 267.795 113.334 267.581Q113.578 267.368 113.883 267.253Q114.187 267.139 114.512 267.139Q114.782 267.139 115.045 267.238Q115.308 267.337 115.499 267.515L115.499 266.117Q115.499 265.847 115.392 265.785Q115.284 265.724 114.973 265.724L114.973 265.443L116.050 265.368L116.050 269.552Q116.050 269.740 116.104 269.823Q116.159 269.907 116.260 269.926Q116.361 269.945 116.576 269.945L116.576 270.225L115.469 270.293L115.469 269.876Q115.052 270.293 114.426 270.293Q113.995 270.293 113.623 270.081Q113.250 269.870 113.030 269.509Q112.809 269.148 112.809 268.714M114.484 270.071Q114.693 270.071 114.879 269.999Q115.065 269.928 115.219 269.791Q115.373 269.654 115.469 269.476L115.469 267.867Q115.383 267.720 115.238 267.600Q115.093 267.480 114.923 267.421Q114.754 267.361 114.573 267.361Q114.013 267.361 113.744 267.750Q113.476 268.140 113.476 268.721Q113.476 269.292 113.710 269.682Q113.944 270.071 114.484 270.071M117.225 270.218L117.225 269.155Q117.225 269.131 117.253 269.104Q117.280 269.077 117.304 269.077L117.413 269.077Q117.478 269.077 117.492 269.135Q117.588 269.569 117.834 269.820Q118.080 270.071 118.494 270.071Q118.835 270.071 119.088 269.938Q119.341 269.805 119.341 269.497Q119.341 269.340 119.247 269.225Q119.153 269.111 119.015 269.042Q118.876 268.974 118.709 268.936L118.128 268.837Q117.772 268.769 117.499 268.548Q117.225 268.328 117.225 267.986Q117.225 267.737 117.337 267.562Q117.448 267.388 117.634 267.289Q117.820 267.190 118.036 267.147Q118.251 267.104 118.494 267.104Q118.907 267.104 119.187 267.286L119.403 267.111Q119.413 267.108 119.420 267.106Q119.427 267.104 119.437 267.104L119.488 267.104Q119.516 267.104 119.539 267.128Q119.563 267.152 119.563 267.180L119.563 268.027Q119.563 268.048 119.539 268.075Q119.516 268.102 119.488 268.102L119.375 268.102Q119.348 268.102 119.322 268.077Q119.297 268.051 119.297 268.027Q119.297 267.791 119.191 267.627Q119.085 267.463 118.902 267.381Q118.719 267.299 118.487 267.299Q118.159 267.299 117.902 267.402Q117.646 267.504 117.646 267.781Q117.646 267.976 117.829 268.085Q118.012 268.195 118.241 268.236L118.815 268.342Q119.061 268.390 119.275 268.518Q119.488 268.646 119.625 268.849Q119.762 269.053 119.762 269.302Q119.762 269.815 119.396 270.054Q119.030 270.293 118.494 270.293Q117.998 270.293 117.666 269.999L117.400 270.273Q117.379 270.293 117.352 270.293L117.304 270.293Q117.280 270.293 117.253 270.266Q117.225 270.239 117.225 270.218M120.917 269.384L120.917 267.487L120.278 267.487L120.278 267.265Q120.596 267.265 120.813 267.055Q121.030 266.845 121.130 266.535Q121.231 266.226 121.231 265.918L121.498 265.918L121.498 267.207L122.575 267.207L122.575 267.487L121.498 267.487L121.498 269.371Q121.498 269.647 121.602 269.846Q121.706 270.044 121.966 270.044Q122.123 270.044 122.229 269.940Q122.335 269.835 122.385 269.682Q122.434 269.528 122.434 269.371L122.434 268.957L122.701 268.957L122.701 269.384Q122.701 269.610 122.602 269.820Q122.503 270.030 122.318 270.162Q122.134 270.293 121.905 270.293Q121.467 270.293 121.192 270.056Q120.917 269.818 120.917 269.384M127.978 270.225L123.576 270.225L123.576 269.945Q124.297 269.945 124.297 269.736L124.297 265.935Q124.297 265.724 123.576 265.724L123.576 265.443L127.866 265.443L128.074 267.080L127.811 267.080Q127.753 266.609 127.650 266.344Q127.548 266.079 127.363 265.946Q127.179 265.812 126.907 265.768Q126.635 265.724 126.136 265.724L125.353 265.724Q125.165 265.724 125.077 265.758Q124.988 265.792 124.988 265.935L124.988 267.600L125.562 267.600Q125.952 267.600 126.134 267.549Q126.317 267.497 126.399 267.325Q126.481 267.152 126.481 266.780L126.745 266.780L126.745 268.701L126.481 268.701Q126.481 268.328 126.399 268.155Q126.317 267.983 126.134 267.932Q125.952 267.880 125.562 267.880L124.988 267.880L124.988 269.736Q124.988 269.876 125.077 269.911Q125.165 269.945 125.353 269.945L126.201 269.945Q126.731 269.945 127.040 269.876Q127.349 269.808 127.537 269.641Q127.725 269.473 127.833 269.171Q127.941 268.868 128.026 268.355L128.293 268.355\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M129.566 14.15H-18.388v193.48H84.687\"\u002F>\u003Cpath stroke=\"none\" d=\"m86.687 207.63-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-65.513 -259.608)\">\u003Cpath d=\"M114.399 270.198L113.271 267.699Q113.199 267.552 113.069 267.520Q112.939 267.487 112.710 267.487L112.710 267.207L114.224 267.207L114.224 267.487Q113.872 267.487 113.872 267.634Q113.872 267.679 113.883 267.699L114.747 269.617L115.527 267.887Q115.561 267.819 115.561 267.740Q115.561 267.627 115.477 267.557Q115.393 267.487 115.274 267.487L115.274 267.207L116.470 267.207L116.470 267.487Q116.251 267.487 116.080 267.590Q115.910 267.692 115.821 267.887L114.785 270.198Q114.737 270.293 114.631 270.293L114.553 270.293Q114.447 270.293 114.399 270.198\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-65.513 -259.608)\">\u003Cpath d=\"M116.639 269.497Q116.639 269.165 116.862 268.938Q117.086 268.711 117.430 268.583Q117.773 268.454 118.146 268.402Q118.518 268.349 118.823 268.349L118.823 268.096Q118.823 267.891 118.715 267.711Q118.607 267.532 118.426 267.429Q118.245 267.327 118.037 267.327Q117.630 267.327 117.394 267.419Q117.483 267.456 117.529 267.540Q117.575 267.624 117.575 267.726Q117.575 267.822 117.529 267.901Q117.483 267.979 117.402 268.024Q117.322 268.068 117.233 268.068Q117.083 268.068 116.982 267.971Q116.881 267.873 116.881 267.726Q116.881 267.104 118.037 267.104Q118.248 267.104 118.498 267.168Q118.747 267.231 118.949 267.350Q119.151 267.470 119.277 267.655Q119.404 267.839 119.404 268.082L119.404 269.658Q119.404 269.774 119.465 269.870Q119.527 269.965 119.640 269.965Q119.749 269.965 119.814 269.871Q119.879 269.777 119.879 269.658L119.879 269.210L120.145 269.210L120.145 269.658Q120.145 269.928 119.918 270.093Q119.691 270.259 119.411 270.259Q119.202 270.259 119.065 270.105Q118.929 269.952 118.905 269.736Q118.758 270.003 118.476 270.148Q118.194 270.293 117.869 270.293Q117.592 270.293 117.308 270.218Q117.025 270.143 116.832 269.964Q116.639 269.784 116.639 269.497M117.254 269.497Q117.254 269.671 117.355 269.801Q117.455 269.931 117.611 270.001Q117.766 270.071 117.931 270.071Q118.149 270.071 118.358 269.974Q118.566 269.876 118.694 269.695Q118.823 269.514 118.823 269.288L118.823 268.560Q118.498 268.560 118.132 268.651Q117.766 268.742 117.510 268.954Q117.254 269.165 117.254 269.497M122.230 270.225L120.627 270.225L120.627 269.945Q120.853 269.945 121.002 269.911Q121.150 269.876 121.150 269.736L121.150 266.117Q121.150 265.847 121.043 265.785Q120.935 265.724 120.627 265.724L120.627 265.443L121.704 265.368L121.704 269.736Q121.704 269.873 121.854 269.909Q122.005 269.945 122.230 269.945L122.230 270.225M124.667 270.225L122.931 270.225L122.931 269.945Q123.652 269.945 123.652 269.545L123.652 265.935Q123.652 265.724 122.931 265.724L122.931 265.443L124.288 265.443Q124.384 265.443 124.435 265.542L126.110 269.517L127.781 265.542Q127.829 265.443 127.928 265.443L129.278 265.443L129.278 265.724Q128.557 265.724 128.557 265.935L128.557 269.736Q128.557 269.945 129.278 269.945L129.278 270.225L127.221 270.225L127.221 269.945Q127.942 269.945 127.942 269.736L127.942 265.724L126.089 270.126Q126.041 270.225 125.932 270.225Q125.819 270.225 125.771 270.126L123.946 265.795L123.946 269.545Q123.946 269.945 124.667 269.945\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-65.858 -52.78)\">\u003Cpath d=\"M112.809 268.714Q112.809 268.376 112.950 268.085Q113.090 267.795 113.334 267.581Q113.578 267.368 113.883 267.253Q114.187 267.139 114.512 267.139Q114.782 267.139 115.045 267.238Q115.308 267.337 115.499 267.515L115.499 266.117Q115.499 265.847 115.392 265.785Q115.284 265.724 114.973 265.724L114.973 265.443L116.050 265.368L116.050 269.552Q116.050 269.740 116.104 269.823Q116.159 269.907 116.260 269.926Q116.361 269.945 116.576 269.945L116.576 270.225L115.469 270.293L115.469 269.876Q115.052 270.293 114.426 270.293Q113.995 270.293 113.623 270.081Q113.250 269.870 113.030 269.509Q112.809 269.148 112.809 268.714M114.484 270.071Q114.693 270.071 114.879 269.999Q115.065 269.928 115.219 269.791Q115.373 269.654 115.469 269.476L115.469 267.867Q115.383 267.720 115.238 267.600Q115.093 267.480 114.923 267.421Q114.754 267.361 114.573 267.361Q114.013 267.361 113.744 267.750Q113.476 268.140 113.476 268.721Q113.476 269.292 113.710 269.682Q113.944 270.071 114.484 270.071M117.225 270.218L117.225 269.155Q117.225 269.131 117.253 269.104Q117.280 269.077 117.304 269.077L117.413 269.077Q117.478 269.077 117.492 269.135Q117.588 269.569 117.834 269.820Q118.080 270.071 118.494 270.071Q118.835 270.071 119.088 269.938Q119.341 269.805 119.341 269.497Q119.341 269.340 119.247 269.225Q119.153 269.111 119.015 269.042Q118.876 268.974 118.709 268.936L118.128 268.837Q117.772 268.769 117.499 268.548Q117.225 268.328 117.225 267.986Q117.225 267.737 117.337 267.562Q117.448 267.388 117.634 267.289Q117.820 267.190 118.036 267.147Q118.251 267.104 118.494 267.104Q118.907 267.104 119.187 267.286L119.403 267.111Q119.413 267.108 119.420 267.106Q119.427 267.104 119.437 267.104L119.488 267.104Q119.516 267.104 119.539 267.128Q119.563 267.152 119.563 267.180L119.563 268.027Q119.563 268.048 119.539 268.075Q119.516 268.102 119.488 268.102L119.375 268.102Q119.348 268.102 119.322 268.077Q119.297 268.051 119.297 268.027Q119.297 267.791 119.191 267.627Q119.085 267.463 118.902 267.381Q118.719 267.299 118.487 267.299Q118.159 267.299 117.902 267.402Q117.646 267.504 117.646 267.781Q117.646 267.976 117.829 268.085Q118.012 268.195 118.241 268.236L118.815 268.342Q119.061 268.390 119.275 268.518Q119.488 268.646 119.625 268.849Q119.762 269.053 119.762 269.302Q119.762 269.815 119.396 270.054Q119.030 270.293 118.494 270.293Q117.998 270.293 117.666 269.999L117.400 270.273Q117.379 270.293 117.352 270.293L117.304 270.293Q117.280 270.293 117.253 270.266Q117.225 270.239 117.225 270.218M120.917 269.384L120.917 267.487L120.278 267.487L120.278 267.265Q120.596 267.265 120.813 267.055Q121.030 266.845 121.130 266.535Q121.231 266.226 121.231 265.918L121.498 265.918L121.498 267.207L122.575 267.207L122.575 267.487L121.498 267.487L121.498 269.371Q121.498 269.647 121.602 269.846Q121.706 270.044 121.966 270.044Q122.123 270.044 122.229 269.940Q122.335 269.835 122.385 269.682Q122.434 269.528 122.434 269.371L122.434 268.957L122.701 268.957L122.701 269.384Q122.701 269.610 122.602 269.820Q122.503 270.030 122.318 270.162Q122.134 270.293 121.905 270.293Q121.467 270.293 121.192 270.056Q120.917 269.818 120.917 269.384M125.353 270.225L123.617 270.225L123.617 269.945Q124.338 269.945 124.338 269.545L124.338 265.935Q124.338 265.724 123.617 265.724L123.617 265.443L124.974 265.443Q125.070 265.443 125.121 265.542L126.796 269.517L128.467 265.542Q128.515 265.443 128.614 265.443L129.964 265.443L129.964 265.724Q129.243 265.724 129.243 265.935L129.243 269.736Q129.243 269.945 129.964 269.945L129.964 270.225L127.907 270.225L127.907 269.945Q128.628 269.945 128.628 269.736L128.628 265.724L126.775 270.126Q126.727 270.225 126.618 270.225Q126.505 270.225 126.457 270.126L124.632 265.795L124.632 269.545Q124.632 269.945 125.353 269.945\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M106.604-22.838H-46.84v332.897h151.445\"\u002F>\u003Cpath stroke=\"none\" d=\"m106.604 310.059-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(-90 -28.901 298.811)\">\u003Cpath d=\"M114.491 270.225L112.857 270.225L112.857 269.945Q113.086 269.945 113.235 269.911Q113.384 269.876 113.384 269.736L113.384 267.887Q113.384 267.617 113.276 267.556Q113.168 267.494 112.857 267.494L112.857 267.214L113.917 267.139L113.917 267.788Q114.088 267.480 114.392 267.309Q114.696 267.139 115.041 267.139Q115.547 267.139 115.831 267.362Q116.115 267.586 116.115 268.082L116.115 269.736Q116.115 269.873 116.263 269.909Q116.412 269.945 116.638 269.945L116.638 270.225L115.007 270.225L115.007 269.945Q115.236 269.945 115.385 269.911Q115.534 269.876 115.534 269.736L115.534 268.096Q115.534 267.761 115.414 267.561Q115.294 267.361 114.980 267.361Q114.710 267.361 114.476 267.497Q114.242 267.634 114.103 267.868Q113.965 268.102 113.965 268.376L113.965 269.736Q113.965 269.873 114.115 269.909Q114.266 269.945 114.491 269.945L114.491 270.225M117.184 268.690Q117.184 268.369 117.309 268.080Q117.434 267.791 117.660 267.568Q117.885 267.344 118.181 267.224Q118.476 267.104 118.794 267.104Q119.122 267.104 119.384 267.204Q119.645 267.303 119.821 267.485Q119.997 267.668 120.091 267.926Q120.185 268.184 120.185 268.516Q120.185 268.608 120.103 268.629L117.848 268.629L117.848 268.690Q117.848 269.278 118.131 269.661Q118.415 270.044 118.982 270.044Q119.304 270.044 119.572 269.851Q119.840 269.658 119.929 269.343Q119.936 269.302 120.011 269.288L120.103 269.288Q120.185 269.312 120.185 269.384Q120.185 269.391 120.179 269.418Q120.066 269.815 119.695 270.054Q119.324 270.293 118.900 270.293Q118.463 270.293 118.063 270.085Q117.663 269.876 117.424 269.509Q117.184 269.142 117.184 268.690M117.854 268.420L119.669 268.420Q119.669 268.143 119.572 267.891Q119.474 267.638 119.276 267.482Q119.078 267.327 118.794 267.327Q118.517 267.327 118.304 267.485Q118.090 267.644 117.972 267.899Q117.854 268.154 117.854 268.420M122.161 270.198L121.180 267.699Q121.119 267.556 121.001 267.521Q120.883 267.487 120.667 267.487L120.667 267.207L122.147 267.207L122.147 267.487Q121.768 267.487 121.768 267.648Q121.768 267.658 121.782 267.699L122.496 269.531L123.169 267.826Q123.139 267.754 123.139 267.726Q123.139 267.699 123.111 267.699Q123.050 267.552 122.932 267.520Q122.814 267.487 122.602 267.487L122.602 267.207L124 267.207L124 267.487Q123.624 267.487 123.624 267.648Q123.624 267.679 123.631 267.699L124.386 269.637L125.073 267.887Q125.094 267.836 125.094 267.781Q125.094 267.641 124.981 267.564Q124.868 267.487 124.728 267.487L124.728 267.207L125.948 267.207L125.948 267.487Q125.743 267.487 125.588 267.593Q125.432 267.699 125.360 267.887L124.454 270.198Q124.420 270.293 124.308 270.293L124.239 270.293Q124.130 270.293 124.092 270.198L123.309 268.195L122.523 270.198Q122.489 270.293 122.376 270.293L122.308 270.293Q122.199 270.293 122.161 270.198M128.689 270.225L126.557 270.225L126.557 269.945Q127.278 269.945 127.278 269.736L127.278 265.935Q127.278 265.724 126.557 265.724L126.557 265.443L129.223 265.443Q129.633 265.443 130.053 265.597Q130.474 265.751 130.757 266.055Q131.041 266.359 131.041 266.773Q131.041 267.091 130.873 267.337Q130.706 267.583 130.429 267.749Q130.152 267.914 129.831 267.998Q129.510 268.082 129.223 268.082L127.968 268.082L127.968 269.736Q127.968 269.945 128.689 269.945L128.689 270.225M127.941 265.935L127.941 267.832L129.028 267.832Q129.636 267.832 129.951 267.595Q130.265 267.357 130.265 266.773Q130.265 266.380 130.120 266.146Q129.974 265.912 129.703 265.818Q129.431 265.724 129.028 265.724L128.307 265.724Q128.119 265.724 128.030 265.758Q127.941 265.792 127.941 265.935M132.022 267.832Q132.022 267.306 132.239 266.838Q132.456 266.370 132.839 266.024Q133.222 265.679 133.705 265.491Q134.189 265.303 134.719 265.303Q135.122 265.303 135.486 265.460Q135.850 265.618 136.134 265.912L136.558 265.330Q136.592 265.303 136.616 265.303L136.663 265.303Q136.694 265.303 136.718 265.327Q136.742 265.351 136.742 265.382L136.742 267.245Q136.742 267.268 136.716 267.294Q136.691 267.320 136.663 267.320L136.537 267.320Q136.475 267.320 136.462 267.245Q136.431 266.930 136.296 266.626Q136.161 266.322 135.946 266.088Q135.730 265.853 135.442 265.718Q135.153 265.583 134.825 265.583Q134.182 265.583 133.724 265.877Q133.266 266.171 133.034 266.684Q132.801 267.197 132.801 267.832Q132.801 268.304 132.931 268.713Q133.061 269.121 133.321 269.434Q133.580 269.746 133.960 269.916Q134.339 270.085 134.831 270.085Q135.160 270.085 135.453 269.969Q135.747 269.852 135.982 269.637Q136.216 269.422 136.346 269.133Q136.475 268.844 136.475 268.516Q136.475 268.489 136.503 268.465Q136.530 268.441 136.551 268.441L136.663 268.441Q136.701 268.441 136.722 268.466Q136.742 268.492 136.742 268.530Q136.742 268.926 136.576 269.263Q136.411 269.600 136.123 269.847Q135.836 270.095 135.467 270.230Q135.098 270.365 134.719 270.365Q134.199 270.365 133.707 270.175Q133.215 269.986 132.835 269.642Q132.456 269.299 132.239 268.830Q132.022 268.362 132.022 267.832\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M74.083 110.89h27.676\"\u002F>\u003Cpath stroke=\"none\" d=\"m103.759 110.89-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-65.346 -156.905)\">\u003Cpath d=\"M112.868 269.497Q112.868 269.165 113.091 268.938Q113.315 268.711 113.659 268.583Q114.002 268.454 114.375 268.402Q114.747 268.349 115.052 268.349L115.052 268.096Q115.052 267.891 114.944 267.711Q114.836 267.532 114.655 267.429Q114.474 267.327 114.266 267.327Q113.859 267.327 113.623 267.419Q113.712 267.456 113.758 267.540Q113.804 267.624 113.804 267.726Q113.804 267.822 113.758 267.901Q113.712 267.979 113.631 268.024Q113.551 268.068 113.462 268.068Q113.312 268.068 113.211 267.971Q113.110 267.873 113.110 267.726Q113.110 267.104 114.266 267.104Q114.477 267.104 114.727 267.168Q114.976 267.231 115.178 267.350Q115.380 267.470 115.506 267.655Q115.633 267.839 115.633 268.082L115.633 269.658Q115.633 269.774 115.694 269.870Q115.756 269.965 115.869 269.965Q115.978 269.965 116.043 269.871Q116.108 269.777 116.108 269.658L116.108 269.210L116.374 269.210L116.374 269.658Q116.374 269.928 116.147 270.093Q115.920 270.259 115.640 270.259Q115.431 270.259 115.294 270.105Q115.158 269.952 115.134 269.736Q114.987 270.003 114.705 270.148Q114.423 270.293 114.098 270.293Q113.821 270.293 113.537 270.218Q113.254 270.143 113.061 269.964Q112.868 269.784 112.868 269.497M113.483 269.497Q113.483 269.671 113.584 269.801Q113.684 269.931 113.840 270.001Q113.995 270.071 114.160 270.071Q114.378 270.071 114.587 269.974Q114.795 269.876 114.923 269.695Q115.052 269.514 115.052 269.288L115.052 268.560Q114.727 268.560 114.361 268.651Q113.995 268.742 113.739 268.954Q113.483 269.165 113.483 269.497M118.459 270.225L116.856 270.225L116.856 269.945Q117.082 269.945 117.231 269.911Q117.379 269.876 117.379 269.736L117.379 266.117Q117.379 265.847 117.272 265.785Q117.164 265.724 116.856 265.724L116.856 265.443L117.933 265.368L117.933 269.736Q117.933 269.873 118.083 269.909Q118.234 269.945 118.459 269.945L118.459 270.225M119.628 269.391L119.628 267.887Q119.628 267.617 119.521 267.556Q119.413 267.494 119.102 267.494L119.102 267.214L120.209 267.139L120.209 269.371L120.209 269.391Q120.209 269.671 120.261 269.815Q120.312 269.958 120.454 270.015Q120.596 270.071 120.883 270.071Q121.136 270.071 121.341 269.931Q121.546 269.791 121.662 269.565Q121.778 269.340 121.778 269.090L121.778 267.887Q121.778 267.617 121.671 267.556Q121.563 267.494 121.252 267.494L121.252 267.214L122.359 267.139L122.359 269.552Q122.359 269.743 122.412 269.825Q122.465 269.907 122.566 269.926Q122.667 269.945 122.882 269.945L122.882 270.225L121.806 270.293L121.806 269.729Q121.696 269.911 121.551 270.034Q121.406 270.157 121.219 270.225Q121.033 270.293 120.831 270.293Q119.628 270.293 119.628 269.391M125.268 270.225L123.535 270.225L123.535 269.945Q123.761 269.945 123.909 269.911Q124.058 269.876 124.058 269.736L124.058 267.487L123.470 267.487L123.470 267.207L124.058 267.207L124.058 266.390Q124.058 266.072 124.236 265.824Q124.413 265.577 124.704 265.436Q124.995 265.296 125.306 265.296Q125.562 265.296 125.765 265.438Q125.969 265.580 125.969 265.823Q125.969 265.959 125.870 266.058Q125.770 266.158 125.634 266.158Q125.497 266.158 125.398 266.058Q125.299 265.959 125.299 265.823Q125.299 265.642 125.439 265.549Q125.360 265.522 125.261 265.522Q125.053 265.522 124.899 265.655Q124.745 265.788 124.665 265.992Q124.584 266.195 124.584 266.404L124.584 267.207L125.473 267.207L125.473 267.487L124.612 267.487L124.612 269.736Q124.612 269.945 125.268 269.945L125.268 270.225M126.522 269.391L126.522 267.887Q126.522 267.617 126.415 267.556Q126.307 267.494 125.996 267.494L125.996 267.214L127.103 267.139L127.103 269.371L127.103 269.391Q127.103 269.671 127.155 269.815Q127.206 269.958 127.348 270.015Q127.490 270.071 127.777 270.071Q128.030 270.071 128.235 269.931Q128.440 269.791 128.556 269.565Q128.672 269.340 128.672 269.090L128.672 267.887Q128.672 267.617 128.565 267.556Q128.457 267.494 128.146 267.494L128.146 267.214L129.253 267.139L129.253 269.552Q129.253 269.743 129.306 269.825Q129.359 269.907 129.460 269.926Q129.561 269.945 129.776 269.945L129.776 270.225L128.700 270.293L128.700 269.729Q128.590 269.911 128.445 270.034Q128.300 270.157 128.113 270.225Q127.927 270.293 127.725 270.293Q126.522 270.293 126.522 269.391M132.046 270.225L130.412 270.225L130.412 269.945Q130.641 269.945 130.790 269.911Q130.938 269.876 130.938 269.736L130.938 267.887Q130.938 267.617 130.831 267.556Q130.723 267.494 130.412 267.494L130.412 267.214L131.472 267.139L131.472 267.788Q131.642 267.480 131.947 267.309Q132.251 267.139 132.596 267.139Q133.102 267.139 133.386 267.362Q133.669 267.586 133.669 268.082L133.669 269.736Q133.669 269.873 133.818 269.909Q133.967 269.945 134.192 269.945L134.192 270.225L132.562 270.225L132.562 269.945Q132.791 269.945 132.940 269.911Q133.088 269.876 133.088 269.736L133.088 268.096Q133.088 267.761 132.969 267.561Q132.849 267.361 132.535 267.361Q132.265 267.361 132.030 267.497Q131.796 267.634 131.658 267.868Q131.519 268.102 131.519 268.376L131.519 269.736Q131.519 269.873 131.670 269.909Q131.820 269.945 132.046 269.945\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M129.566-56.981v14.871\"\u002F>\u003Cpath stroke=\"none\" d=\"m129.566-40.11 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-15.759 -333.912)\">\u003Cpath d=\"M114.426 270.225L112.874 270.225L112.874 269.945Q113.100 269.945 113.249 269.911Q113.397 269.876 113.397 269.736L113.397 267.887Q113.397 267.699 113.349 267.615Q113.302 267.532 113.204 267.513Q113.107 267.494 112.895 267.494L112.895 267.214L113.951 267.139L113.951 269.736Q113.951 269.876 114.083 269.911Q114.214 269.945 114.426 269.945L114.426 270.225M113.155 265.918Q113.155 265.747 113.278 265.628Q113.401 265.508 113.572 265.508Q113.739 265.508 113.862 265.628Q113.985 265.747 113.985 265.918Q113.985 266.093 113.862 266.216Q113.739 266.339 113.572 266.339Q113.401 266.339 113.278 266.216Q113.155 266.093 113.155 265.918M115.072 268.714Q115.072 268.386 115.207 268.085Q115.342 267.785 115.578 267.564Q115.814 267.344 116.118 267.224Q116.422 267.104 116.747 267.104Q117.253 267.104 117.601 267.207Q117.950 267.309 117.950 267.685Q117.950 267.832 117.853 267.933Q117.755 268.034 117.608 268.034Q117.454 268.034 117.355 267.935Q117.256 267.836 117.256 267.685Q117.256 267.497 117.396 267.405Q117.195 267.354 116.754 267.354Q116.398 267.354 116.169 267.550Q115.940 267.747 115.839 268.056Q115.739 268.366 115.739 268.714Q115.739 269.063 115.865 269.369Q115.992 269.675 116.246 269.859Q116.501 270.044 116.856 270.044Q117.078 270.044 117.263 269.960Q117.448 269.876 117.583 269.721Q117.718 269.565 117.776 269.357Q117.789 269.302 117.844 269.302L117.957 269.302Q117.988 269.302 118.010 269.326Q118.032 269.350 118.032 269.384L118.032 269.405Q117.947 269.692 117.759 269.890Q117.571 270.088 117.306 270.191Q117.041 270.293 116.747 270.293Q116.316 270.293 115.928 270.087Q115.540 269.880 115.306 269.517Q115.072 269.155 115.072 268.714M118.579 268.742Q118.579 268.400 118.714 268.101Q118.849 267.802 119.088 267.578Q119.328 267.354 119.645 267.229Q119.963 267.104 120.295 267.104Q120.739 267.104 121.139 267.320Q121.539 267.535 121.773 267.913Q122.007 268.290 122.007 268.742Q122.007 269.083 121.865 269.367Q121.724 269.651 121.479 269.858Q121.235 270.064 120.925 270.179Q120.616 270.293 120.295 270.293Q119.864 270.293 119.463 270.092Q119.061 269.890 118.820 269.538Q118.579 269.186 118.579 268.742M120.295 270.044Q120.896 270.044 121.120 269.666Q121.344 269.288 121.344 268.656Q121.344 268.044 121.110 267.685Q120.876 267.327 120.295 267.327Q119.242 267.327 119.242 268.656Q119.242 269.288 119.468 269.666Q119.693 270.044 120.295 270.044\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-15.759 -333.912)\">\u003Cpath d=\"M122.830 268.714Q122.830 268.376 122.971 268.085Q123.111 267.795 123.355 267.581Q123.599 267.368 123.904 267.253Q124.208 267.139 124.533 267.139Q124.803 267.139 125.066 267.238Q125.329 267.337 125.520 267.515L125.520 266.117Q125.520 265.847 125.413 265.785Q125.305 265.724 124.994 265.724L124.994 265.443L126.071 265.368L126.071 269.552Q126.071 269.740 126.125 269.823Q126.180 269.907 126.281 269.926Q126.382 269.945 126.597 269.945L126.597 270.225L125.490 270.293L125.490 269.876Q125.073 270.293 124.447 270.293Q124.016 270.293 123.644 270.081Q123.271 269.870 123.051 269.509Q122.830 269.148 122.830 268.714M124.505 270.071Q124.714 270.071 124.900 269.999Q125.086 269.928 125.240 269.791Q125.394 269.654 125.490 269.476L125.490 267.867Q125.404 267.720 125.259 267.600Q125.114 267.480 124.944 267.421Q124.775 267.361 124.594 267.361Q124.034 267.361 123.765 267.750Q123.497 268.140 123.497 268.721Q123.497 269.292 123.731 269.682Q123.965 270.071 124.505 270.071M127.205 268.690Q127.205 268.369 127.330 268.080Q127.455 267.791 127.681 267.568Q127.906 267.344 128.202 267.224Q128.497 267.104 128.815 267.104Q129.143 267.104 129.405 267.204Q129.666 267.303 129.842 267.485Q130.018 267.668 130.112 267.926Q130.206 268.184 130.206 268.516Q130.206 268.608 130.124 268.629L127.869 268.629L127.869 268.690Q127.869 269.278 128.152 269.661Q128.436 270.044 129.003 270.044Q129.325 270.044 129.593 269.851Q129.861 269.658 129.950 269.343Q129.957 269.302 130.032 269.288L130.124 269.288Q130.206 269.312 130.206 269.384Q130.206 269.391 130.200 269.418Q130.087 269.815 129.716 270.054Q129.345 270.293 128.921 270.293Q128.484 270.293 128.084 270.085Q127.684 269.876 127.445 269.509Q127.205 269.142 127.205 268.690M127.875 268.420L129.690 268.420Q129.690 268.143 129.593 267.891Q129.495 267.638 129.297 267.482Q129.099 267.327 128.815 267.327Q128.538 267.327 128.325 267.485Q128.111 267.644 127.993 267.899Q127.875 268.154 127.875 268.420M131.293 271.455Q131.293 271.421 131.321 271.394Q131.591 271.165 131.739 270.842Q131.888 270.519 131.888 270.163L131.888 270.126Q131.779 270.225 131.615 270.225Q131.433 270.225 131.314 270.105Q131.194 269.986 131.194 269.805Q131.194 269.630 131.314 269.511Q131.433 269.391 131.615 269.391Q131.871 269.391 131.991 269.630Q132.110 269.870 132.110 270.163Q132.110 270.563 131.941 270.934Q131.772 271.305 131.474 271.561Q131.444 271.582 131.416 271.582Q131.375 271.582 131.334 271.541Q131.293 271.500 131.293 271.455\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-15.759 -333.912)\">\u003Cpath d=\"M135.935 267.832Q135.935 267.306 136.152 266.838Q136.369 266.370 136.752 266.024Q137.134 265.679 137.618 265.491Q138.102 265.303 138.632 265.303Q139.035 265.303 139.399 265.460Q139.763 265.618 140.047 265.912L140.470 265.330Q140.505 265.303 140.529 265.303L140.576 265.303Q140.607 265.303 140.631 265.327Q140.655 265.351 140.655 265.382L140.655 267.245Q140.655 267.268 140.629 267.294Q140.604 267.320 140.576 267.320L140.450 267.320Q140.388 267.320 140.375 267.245Q140.344 266.930 140.209 266.626Q140.074 266.322 139.859 266.088Q139.643 265.853 139.354 265.718Q139.066 265.583 138.738 265.583Q138.095 265.583 137.637 265.877Q137.179 266.171 136.946 266.684Q136.714 267.197 136.714 267.832Q136.714 268.304 136.844 268.713Q136.974 269.121 137.234 269.434Q137.493 269.746 137.873 269.916Q138.252 270.085 138.744 270.085Q139.072 270.085 139.366 269.969Q139.660 269.852 139.894 269.637Q140.129 269.422 140.258 269.133Q140.388 268.844 140.388 268.516Q140.388 268.489 140.416 268.465Q140.443 268.441 140.464 268.441L140.576 268.441Q140.614 268.441 140.634 268.466Q140.655 268.492 140.655 268.530Q140.655 268.926 140.489 269.263Q140.323 269.600 140.036 269.847Q139.749 270.095 139.380 270.230Q139.011 270.365 138.632 270.365Q138.112 270.365 137.620 270.175Q137.128 269.986 136.748 269.642Q136.369 269.299 136.152 268.830Q135.935 268.362 135.935 267.832M143.147 270.225L141.513 270.225L141.513 269.945Q141.742 269.945 141.891 269.911Q142.039 269.876 142.039 269.736L142.039 267.887Q142.039 267.617 141.932 267.556Q141.824 267.494 141.513 267.494L141.513 267.214L142.572 267.139L142.572 267.788Q142.743 267.480 143.048 267.309Q143.352 267.139 143.697 267.139Q144.203 267.139 144.487 267.362Q144.770 267.586 144.770 268.082L144.770 269.736Q144.770 269.873 144.919 269.909Q145.068 269.945 145.293 269.945L145.293 270.225L143.663 270.225L143.663 269.945Q143.892 269.945 144.040 269.911Q144.189 269.876 144.189 269.736L144.189 268.096Q144.189 267.761 144.070 267.561Q143.950 267.361 143.635 267.361Q143.365 267.361 143.131 267.497Q142.897 267.634 142.759 267.868Q142.620 268.102 142.620 268.376L142.620 269.736Q142.620 269.873 142.771 269.909Q142.921 269.945 143.147 269.945L143.147 270.225M145.881 268.714Q145.881 268.376 146.021 268.085Q146.161 267.795 146.406 267.581Q146.650 267.368 146.954 267.253Q147.258 267.139 147.583 267.139Q147.853 267.139 148.116 267.238Q148.380 267.337 148.571 267.515L148.571 266.117Q148.571 265.847 148.463 265.785Q148.356 265.724 148.045 265.724L148.045 265.443L149.121 265.368L149.121 269.552Q149.121 269.740 149.176 269.823Q149.231 269.907 149.331 269.926Q149.432 269.945 149.648 269.945L149.648 270.225L148.540 270.293L148.540 269.876Q148.123 270.293 147.498 270.293Q147.067 270.293 146.695 270.081Q146.322 269.870 146.102 269.509Q145.881 269.148 145.881 268.714M147.556 270.071Q147.764 270.071 147.951 269.999Q148.137 269.928 148.291 269.791Q148.445 269.654 148.540 269.476L148.540 267.867Q148.455 267.720 148.310 267.600Q148.164 267.480 147.995 267.421Q147.826 267.361 147.645 267.361Q147.084 267.361 146.816 267.750Q146.548 268.140 146.548 268.721Q146.548 269.292 146.782 269.682Q147.016 270.071 147.556 270.071\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-15.759 -333.912)\">\u003Cpath d=\"M155.126 271.975Q154.576 271.575 154.205 271.020Q153.834 270.464 153.653 269.818Q153.472 269.172 153.472 268.475Q153.472 267.962 153.572 267.467Q153.673 266.971 153.878 266.520Q154.083 266.069 154.396 265.677Q154.709 265.286 155.126 264.982Q155.136 264.978 155.143 264.977Q155.150 264.975 155.160 264.975L155.228 264.975Q155.263 264.975 155.285 264.999Q155.307 265.023 155.307 265.060Q155.307 265.105 155.280 265.122Q154.931 265.423 154.678 265.807Q154.425 266.192 154.273 266.633Q154.121 267.074 154.049 267.530Q153.977 267.986 153.977 268.475Q153.977 269.476 154.287 270.363Q154.596 271.250 155.280 271.835Q155.307 271.852 155.307 271.896Q155.307 271.934 155.285 271.958Q155.263 271.982 155.228 271.982L155.160 271.982Q155.153 271.978 155.145 271.977Q155.136 271.975 155.126 271.975M156.117 270.218L156.117 269.155Q156.117 269.131 156.144 269.104Q156.172 269.077 156.196 269.077L156.305 269.077Q156.370 269.077 156.384 269.135Q156.479 269.569 156.725 269.820Q156.972 270.071 157.385 270.071Q157.727 270.071 157.980 269.938Q158.233 269.805 158.233 269.497Q158.233 269.340 158.139 269.225Q158.045 269.111 157.906 269.042Q157.768 268.974 157.600 268.936L157.019 268.837Q156.664 268.769 156.390 268.548Q156.117 268.328 156.117 267.986Q156.117 267.737 156.228 267.562Q156.339 267.388 156.526 267.289Q156.712 267.190 156.927 267.147Q157.142 267.104 157.385 267.104Q157.799 267.104 158.079 267.286L158.294 267.111Q158.305 267.108 158.311 267.106Q158.318 267.104 158.328 267.104L158.380 267.104Q158.407 267.104 158.431 267.128Q158.455 267.152 158.455 267.180L158.455 268.027Q158.455 268.048 158.431 268.075Q158.407 268.102 158.380 268.102L158.267 268.102Q158.240 268.102 158.214 268.077Q158.188 268.051 158.188 268.027Q158.188 267.791 158.082 267.627Q157.976 267.463 157.794 267.381Q157.611 267.299 157.378 267.299Q157.050 267.299 156.794 267.402Q156.537 267.504 156.537 267.781Q156.537 267.976 156.720 268.085Q156.903 268.195 157.132 268.236L157.706 268.342Q157.953 268.390 158.166 268.518Q158.380 268.646 158.516 268.849Q158.653 269.053 158.653 269.302Q158.653 269.815 158.287 270.054Q157.922 270.293 157.385 270.293Q156.890 270.293 156.558 269.999L156.291 270.273Q156.271 270.293 156.244 270.293L156.196 270.293Q156.172 270.293 156.144 270.266Q156.117 270.239 156.117 270.218M159.241 268.690Q159.241 268.369 159.366 268.080Q159.491 267.791 159.716 267.568Q159.942 267.344 160.237 267.224Q160.533 267.104 160.851 267.104Q161.179 267.104 161.441 267.204Q161.702 267.303 161.878 267.485Q162.054 267.668 162.148 267.926Q162.242 268.184 162.242 268.516Q162.242 268.608 162.160 268.629L159.904 268.629L159.904 268.690Q159.904 269.278 160.188 269.661Q160.472 270.044 161.039 270.044Q161.360 270.044 161.629 269.851Q161.897 269.658 161.986 269.343Q161.993 269.302 162.068 269.288L162.160 269.288Q162.242 269.312 162.242 269.384Q162.242 269.391 162.235 269.418Q162.122 269.815 161.752 270.054Q161.381 270.293 160.957 270.293Q160.519 270.293 160.119 270.085Q159.720 269.876 159.480 269.509Q159.241 269.142 159.241 268.690M159.911 268.420L161.726 268.420Q161.726 268.143 161.629 267.891Q161.531 267.638 161.333 267.482Q161.135 267.327 160.851 267.327Q160.574 267.327 160.360 267.485Q160.147 267.644 160.029 267.899Q159.911 268.154 159.911 268.420M164.498 270.225L162.895 270.225L162.895 269.945Q163.120 269.945 163.269 269.911Q163.418 269.876 163.418 269.736L163.418 266.117Q163.418 265.847 163.310 265.785Q163.203 265.724 162.895 265.724L162.895 265.443L163.972 265.368L163.972 269.736Q163.972 269.873 164.122 269.909Q164.272 269.945 164.498 269.945L164.498 270.225M165.052 268.690Q165.052 268.369 165.176 268.080Q165.301 267.791 165.527 267.568Q165.752 267.344 166.048 267.224Q166.344 267.104 166.661 267.104Q166.990 267.104 167.251 267.204Q167.513 267.303 167.689 267.485Q167.865 267.668 167.959 267.926Q168.053 268.184 168.053 268.516Q168.053 268.608 167.971 268.629L165.715 268.629L165.715 268.690Q165.715 269.278 165.998 269.661Q166.282 270.044 166.849 270.044Q167.171 270.044 167.439 269.851Q167.707 269.658 167.796 269.343Q167.803 269.302 167.878 269.288L167.971 269.288Q168.053 269.312 168.053 269.384Q168.053 269.391 168.046 269.418Q167.933 269.815 167.562 270.054Q167.191 270.293 166.767 270.293Q166.330 270.293 165.930 270.085Q165.530 269.876 165.291 269.509Q165.052 269.142 165.052 268.690M165.722 268.420L167.536 268.420Q167.536 268.143 167.439 267.891Q167.342 267.638 167.143 267.482Q166.945 267.327 166.661 267.327Q166.385 267.327 166.171 267.485Q165.957 267.644 165.839 267.899Q165.722 268.154 165.722 268.420M168.640 268.714Q168.640 268.386 168.776 268.085Q168.911 267.785 169.146 267.564Q169.382 267.344 169.686 267.224Q169.991 267.104 170.315 267.104Q170.821 267.104 171.170 267.207Q171.518 267.309 171.518 267.685Q171.518 267.832 171.421 267.933Q171.324 268.034 171.177 268.034Q171.023 268.034 170.924 267.935Q170.825 267.836 170.825 267.685Q170.825 267.497 170.965 267.405Q170.763 267.354 170.322 267.354Q169.967 267.354 169.738 267.550Q169.509 267.747 169.408 268.056Q169.307 268.366 169.307 268.714Q169.307 269.063 169.433 269.369Q169.560 269.675 169.815 269.859Q170.069 270.044 170.425 270.044Q170.647 270.044 170.831 269.960Q171.016 269.876 171.151 269.721Q171.286 269.565 171.344 269.357Q171.358 269.302 171.412 269.302L171.525 269.302Q171.556 269.302 171.578 269.326Q171.600 269.350 171.600 269.384L171.600 269.405Q171.515 269.692 171.327 269.890Q171.139 270.088 170.874 270.191Q170.609 270.293 170.315 270.293Q169.885 270.293 169.497 270.087Q169.109 269.880 168.875 269.517Q168.640 269.155 168.640 268.714M172.715 269.384L172.715 267.487L172.076 267.487L172.076 267.265Q172.393 267.265 172.610 267.055Q172.828 266.845 172.928 266.535Q173.029 266.226 173.029 265.918L173.296 265.918L173.296 267.207L174.372 267.207L174.372 267.487L173.296 267.487L173.296 269.371Q173.296 269.647 173.400 269.846Q173.504 270.044 173.764 270.044Q173.921 270.044 174.027 269.940Q174.133 269.835 174.183 269.682Q174.232 269.528 174.232 269.371L174.232 268.957L174.499 268.957L174.499 269.384Q174.499 269.610 174.400 269.820Q174.301 270.030 174.116 270.162Q173.932 270.293 173.703 270.293Q173.265 270.293 172.990 270.056Q172.715 269.818 172.715 269.384M175.630 271.982L175.562 271.982Q175.528 271.982 175.505 271.956Q175.483 271.931 175.483 271.896Q175.483 271.852 175.514 271.835Q175.869 271.531 176.119 271.141Q176.369 270.751 176.521 270.319Q176.673 269.887 176.743 269.418Q176.813 268.950 176.813 268.475Q176.813 267.996 176.743 267.530Q176.673 267.063 176.519 266.628Q176.365 266.192 176.114 265.804Q175.863 265.416 175.514 265.122Q175.483 265.105 175.483 265.060Q175.483 265.026 175.505 265.001Q175.528 264.975 175.562 264.975L175.630 264.975Q175.640 264.975 175.649 264.977Q175.658 264.978 175.668 264.982Q176.211 265.382 176.584 265.935Q176.956 266.489 177.138 267.135Q177.319 267.781 177.319 268.475Q177.319 269.176 177.138 269.823Q176.956 270.471 176.582 271.025Q176.208 271.579 175.668 271.975Q175.658 271.975 175.649 271.977Q175.640 271.978 175.630 271.982\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-74.222 -223.026)\">\u003Cpath d=\"M114.559 270.225L112.823 270.225L112.823 269.945Q113.052 269.945 113.201 269.911Q113.349 269.876 113.349 269.736L113.349 267.887Q113.349 267.617 113.242 267.556Q113.134 267.494 112.823 267.494L112.823 267.214L113.852 267.139L113.852 267.846Q113.982 267.538 114.224 267.339Q114.467 267.139 114.785 267.139Q115.004 267.139 115.175 267.263Q115.346 267.388 115.346 267.600Q115.346 267.737 115.246 267.836Q115.147 267.935 115.014 267.935Q114.877 267.935 114.778 267.836Q114.679 267.737 114.679 267.600Q114.679 267.460 114.778 267.361Q114.488 267.361 114.288 267.557Q114.088 267.754 113.995 268.048Q113.903 268.342 113.903 268.622L113.903 269.736Q113.903 269.945 114.559 269.945L114.559 270.225M115.889 268.690Q115.889 268.369 116.014 268.080Q116.139 267.791 116.364 267.568Q116.590 267.344 116.885 267.224Q117.181 267.104 117.499 267.104Q117.827 267.104 118.089 267.204Q118.350 267.303 118.526 267.485Q118.702 267.668 118.796 267.926Q118.890 268.184 118.890 268.516Q118.890 268.608 118.808 268.629L116.552 268.629L116.552 268.690Q116.552 269.278 116.836 269.661Q117.120 270.044 117.687 270.044Q118.008 270.044 118.276 269.851Q118.545 269.658 118.634 269.343Q118.641 269.302 118.716 269.288L118.808 269.288Q118.890 269.312 118.890 269.384Q118.890 269.391 118.883 269.418Q118.770 269.815 118.400 270.054Q118.029 270.293 117.605 270.293Q117.167 270.293 116.767 270.085Q116.368 269.876 116.128 269.509Q115.889 269.142 115.889 268.690M116.559 268.420L118.374 268.420Q118.374 268.143 118.276 267.891Q118.179 267.638 117.981 267.482Q117.783 267.327 117.499 267.327Q117.222 267.327 117.008 267.485Q116.795 267.644 116.677 267.899Q116.559 268.154 116.559 268.420M119.536 269.497Q119.536 269.165 119.760 268.938Q119.984 268.711 120.327 268.583Q120.671 268.454 121.043 268.402Q121.416 268.349 121.720 268.349L121.720 268.096Q121.720 267.891 121.612 267.711Q121.505 267.532 121.324 267.429Q121.142 267.327 120.934 267.327Q120.527 267.327 120.291 267.419Q120.380 267.456 120.426 267.540Q120.473 267.624 120.473 267.726Q120.473 267.822 120.426 267.901Q120.380 267.979 120.300 268.024Q120.220 268.068 120.131 268.068Q119.980 268.068 119.880 267.971Q119.779 267.873 119.779 267.726Q119.779 267.104 120.934 267.104Q121.146 267.104 121.395 267.168Q121.645 267.231 121.847 267.350Q122.048 267.470 122.175 267.655Q122.301 267.839 122.301 268.082L122.301 269.658Q122.301 269.774 122.363 269.870Q122.424 269.965 122.537 269.965Q122.646 269.965 122.711 269.871Q122.776 269.777 122.776 269.658L122.776 269.210L123.043 269.210L123.043 269.658Q123.043 269.928 122.816 270.093Q122.588 270.259 122.308 270.259Q122.099 270.259 121.963 270.105Q121.826 269.952 121.802 269.736Q121.655 270.003 121.373 270.148Q121.091 270.293 120.766 270.293Q120.490 270.293 120.206 270.218Q119.922 270.143 119.729 269.964Q119.536 269.784 119.536 269.497M120.151 269.497Q120.151 269.671 120.252 269.801Q120.353 269.931 120.508 270.001Q120.664 270.071 120.828 270.071Q121.047 270.071 121.255 269.974Q121.464 269.876 121.592 269.695Q121.720 269.514 121.720 269.288L121.720 268.560Q121.395 268.560 121.030 268.651Q120.664 268.742 120.408 268.954Q120.151 269.165 120.151 269.497M123.460 268.714Q123.460 268.376 123.600 268.085Q123.740 267.795 123.985 267.581Q124.229 267.368 124.533 267.253Q124.837 267.139 125.162 267.139Q125.432 267.139 125.695 267.238Q125.958 267.337 126.150 267.515L126.150 266.117Q126.150 265.847 126.042 265.785Q125.934 265.724 125.623 265.724L125.623 265.443L126.700 265.368L126.700 269.552Q126.700 269.740 126.755 269.823Q126.809 269.907 126.910 269.926Q127.011 269.945 127.226 269.945L127.226 270.225L126.119 270.293L126.119 269.876Q125.702 270.293 125.077 270.293Q124.646 270.293 124.273 270.081Q123.901 269.870 123.680 269.509Q123.460 269.148 123.460 268.714M125.135 270.071Q125.343 270.071 125.529 269.999Q125.716 269.928 125.870 269.791Q126.023 269.654 126.119 269.476L126.119 267.867Q126.034 267.720 125.888 267.600Q125.743 267.480 125.574 267.421Q125.405 267.361 125.224 267.361Q124.663 267.361 124.395 267.750Q124.126 268.140 124.126 268.721Q124.126 269.292 124.360 269.682Q124.595 270.071 125.135 270.071\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-74.222 -223.026)\">\u003Cpath d=\"M130.762 271.808Q130.762 271.790 130.775 271.743L133.431 265.081Q133.486 264.975 133.592 264.975Q133.657 264.975 133.708 265.026Q133.759 265.078 133.759 265.142Q133.759 265.166 133.758 265.178Q133.756 265.190 133.752 265.207L131.100 271.869Q131.028 271.975 130.940 271.975Q130.871 271.975 130.816 271.924Q130.762 271.872 130.762 271.808\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-74.222 -223.026)\">\u003Cpath d=\"M138.655 270.198L137.674 267.699Q137.613 267.556 137.495 267.521Q137.377 267.487 137.161 267.487L137.161 267.207L138.641 267.207L138.641 267.487Q138.262 267.487 138.262 267.648Q138.262 267.658 138.276 267.699L138.990 269.531L139.663 267.826Q139.633 267.754 139.633 267.726Q139.633 267.699 139.605 267.699Q139.544 267.552 139.426 267.520Q139.308 267.487 139.096 267.487L139.096 267.207L140.494 267.207L140.494 267.487Q140.118 267.487 140.118 267.648Q140.118 267.679 140.125 267.699L140.880 269.637L141.567 267.887Q141.588 267.836 141.588 267.781Q141.588 267.641 141.475 267.564Q141.362 267.487 141.222 267.487L141.222 267.207L142.442 267.207L142.442 267.487Q142.237 267.487 142.082 267.593Q141.926 267.699 141.854 267.887L140.949 270.198Q140.914 270.293 140.802 270.293L140.733 270.293Q140.624 270.293 140.586 270.198L139.804 268.195L139.017 270.198Q138.983 270.293 138.870 270.293L138.802 270.293Q138.693 270.293 138.655 270.198M144.722 270.225L142.986 270.225L142.986 269.945Q143.215 269.945 143.363 269.911Q143.512 269.876 143.512 269.736L143.512 267.887Q143.512 267.617 143.404 267.556Q143.297 267.494 142.986 267.494L142.986 267.214L144.015 267.139L144.015 267.846Q144.144 267.538 144.387 267.339Q144.630 267.139 144.948 267.139Q145.166 267.139 145.337 267.263Q145.508 267.388 145.508 267.600Q145.508 267.737 145.409 267.836Q145.310 267.935 145.177 267.935Q145.040 267.935 144.941 267.836Q144.842 267.737 144.842 267.600Q144.842 267.460 144.941 267.361Q144.650 267.361 144.450 267.557Q144.250 267.754 144.158 268.048Q144.066 268.342 144.066 268.622L144.066 269.736Q144.066 269.945 144.722 269.945L144.722 270.225M147.709 270.225L146.158 270.225L146.158 269.945Q146.383 269.945 146.532 269.911Q146.681 269.876 146.681 269.736L146.681 267.887Q146.681 267.699 146.633 267.615Q146.585 267.532 146.487 267.513Q146.390 267.494 146.178 267.494L146.178 267.214L147.234 267.139L147.234 269.736Q147.234 269.876 147.366 269.911Q147.497 269.945 147.709 269.945L147.709 270.225M146.438 265.918Q146.438 265.747 146.561 265.628Q146.684 265.508 146.855 265.508Q147.022 265.508 147.145 265.628Q147.268 265.747 147.268 265.918Q147.268 266.093 147.145 266.216Q147.022 266.339 146.855 266.339Q146.684 266.339 146.561 266.216Q146.438 266.093 146.438 265.918M148.882 269.384L148.882 267.487L148.243 267.487L148.243 267.265Q148.560 267.265 148.777 267.055Q148.995 266.845 149.095 266.535Q149.196 266.226 149.196 265.918L149.463 265.918L149.463 267.207L150.539 267.207L150.539 267.487L149.463 267.487L149.463 269.371Q149.463 269.647 149.567 269.846Q149.671 270.044 149.931 270.044Q150.088 270.044 150.194 269.940Q150.300 269.835 150.350 269.682Q150.399 269.528 150.399 269.371L150.399 268.957L150.666 268.957L150.666 269.384Q150.666 269.610 150.567 269.820Q150.468 270.030 150.283 270.162Q150.099 270.293 149.870 270.293Q149.432 270.293 149.157 270.056Q148.882 269.818 148.882 269.384M151.435 268.690Q151.435 268.369 151.560 268.080Q151.684 267.791 151.910 267.568Q152.136 267.344 152.431 267.224Q152.727 267.104 153.045 267.104Q153.373 267.104 153.634 267.204Q153.896 267.303 154.072 267.485Q154.248 267.668 154.342 267.926Q154.436 268.184 154.436 268.516Q154.436 268.608 154.354 268.629L152.098 268.629L152.098 268.690Q152.098 269.278 152.382 269.661Q152.665 270.044 153.233 270.044Q153.554 270.044 153.822 269.851Q154.091 269.658 154.180 269.343Q154.186 269.302 154.262 269.288L154.354 269.288Q154.436 269.312 154.436 269.384Q154.436 269.391 154.429 269.418Q154.316 269.815 153.945 270.054Q153.575 270.293 153.151 270.293Q152.713 270.293 152.313 270.085Q151.913 269.876 151.674 269.509Q151.435 269.142 151.435 268.690M152.105 268.420L153.920 268.420Q153.920 268.143 153.822 267.891Q153.725 267.638 153.527 267.482Q153.328 267.327 153.045 267.327Q152.768 267.327 152.554 267.485Q152.341 267.644 152.223 267.899Q152.105 268.154 152.105 268.420\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmti7\" font-size=\"7\">\u003Cg transform=\"translate(202.702 2.43)\">\u003Cpath d=\"M115.168 270.225L113.216 270.225Q113.189 270.225 113.160 270.189Q113.131 270.153 113.131 270.112L113.162 269.999Q113.189 269.955 113.244 269.945Q113.664 269.945 113.797 269.897Q113.879 269.829 113.903 269.699L114.847 265.918Q114.867 265.867 114.867 265.809Q114.867 265.754 114.694 265.739Q114.522 265.724 114.351 265.724Q114.259 265.700 114.259 265.611L114.286 265.501Q114.313 265.454 114.371 265.443L118.145 265.443Q118.227 265.467 118.227 265.549L118.073 266.992Q118.056 267.060 117.984 267.080L117.837 267.080Q117.752 267.057 117.752 266.971Q117.786 266.568 117.786 266.472Q117.786 266.127 117.636 265.961Q117.485 265.795 117.256 265.759Q117.027 265.724 116.624 265.724L115.793 265.724Q115.653 265.724 115.602 265.735Q115.551 265.747 115.523 265.795Q115.496 265.843 115.462 265.970L115.035 267.692L115.575 267.692Q115.838 267.692 116 267.668Q116.162 267.644 116.270 267.566Q116.378 267.487 116.448 267.339Q116.518 267.190 116.583 266.927Q116.610 266.882 116.668 266.872L116.815 266.872Q116.897 266.899 116.897 266.978L116.463 268.728Q116.436 268.779 116.381 268.789L116.234 268.789Q116.149 268.762 116.149 268.677Q116.221 268.396 116.221 268.267Q116.221 268.068 116.039 268.020Q115.858 267.973 115.575 267.973L114.966 267.973L114.518 269.750Q114.512 269.777 114.512 269.832Q114.512 269.893 114.566 269.911Q114.713 269.945 115.188 269.945Q115.281 269.969 115.281 270.051L115.253 270.163Q115.216 270.218 115.168 270.225\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(202.702 2.43)\">\u003Cpath d=\"M118.722 269.282Q118.722 269.600 118.883 269.835Q119.043 270.071 119.348 270.071Q119.614 270.071 119.882 269.991Q120.151 269.911 120.376 269.762Q120.602 269.613 120.766 269.405Q120.793 269.377 120.831 269.377Q120.886 269.377 120.949 269.444Q121.012 269.511 121.012 269.558Q121.012 269.596 120.992 269.617Q120.797 269.856 120.527 270.008Q120.257 270.160 119.953 270.227Q119.648 270.293 119.330 270.293Q118.975 270.293 118.707 270.119Q118.438 269.945 118.297 269.649Q118.155 269.353 118.155 269.001Q118.155 268.489 118.423 268.061Q118.691 267.634 119.132 267.386Q119.573 267.139 120.082 267.139Q120.404 267.139 120.665 267.292Q120.927 267.446 120.927 267.754Q120.927 268.157 120.573 268.354Q120.219 268.550 119.783 268.596Q119.348 268.642 118.835 268.642L118.814 268.642Q118.722 269.053 118.722 269.282M118.869 268.420Q119.269 268.420 119.619 268.386Q119.970 268.352 120.267 268.207Q120.564 268.061 120.564 267.761Q120.564 267.576 120.411 267.468Q120.257 267.361 120.065 267.361Q119.765 267.361 119.522 267.506Q119.279 267.651 119.117 267.889Q118.954 268.126 118.869 268.420M122.014 269.637Q122.014 269.541 122.034 269.449L122.523 267.487L121.781 267.487Q121.692 267.463 121.692 267.374L121.720 267.265Q121.737 267.221 121.802 267.207L122.595 267.207L122.875 266.096Q122.902 265.987 122.991 265.918Q123.080 265.850 123.189 265.850Q123.282 265.850 123.350 265.910Q123.418 265.970 123.418 266.065Q123.418 266.089 123.417 266.101Q123.415 266.113 123.412 266.130L123.138 267.207L123.883 267.207Q123.965 267.234 123.965 267.313L123.938 267.426Q123.931 267.470 123.859 267.487L123.070 267.487L122.567 269.497Q122.537 269.651 122.537 269.757Q122.537 270.071 122.748 270.071Q123.049 270.071 123.283 269.793Q123.517 269.514 123.644 269.176Q123.671 269.135 123.712 269.135L123.883 269.135Q123.917 269.135 123.938 269.160Q123.958 269.186 123.958 269.217Q123.958 269.230 123.952 269.244Q123.787 269.671 123.466 269.982Q123.145 270.293 122.735 270.293Q122.434 270.293 122.224 270.110Q122.014 269.928 122.014 269.637M125.281 269.336Q125.281 269.647 125.455 269.859Q125.630 270.071 125.934 270.071Q126.201 270.071 126.469 269.991Q126.737 269.911 126.963 269.762Q127.188 269.613 127.352 269.405Q127.380 269.377 127.417 269.377Q127.472 269.377 127.535 269.444Q127.599 269.511 127.599 269.558Q127.599 269.596 127.578 269.617Q127.383 269.856 127.113 270.008Q126.843 270.160 126.539 270.227Q126.235 270.293 125.917 270.293Q125.397 270.293 125.052 269.952Q124.707 269.610 124.707 269.090Q124.707 268.728 124.868 268.376Q125.028 268.024 125.314 267.738Q125.599 267.453 125.949 267.296Q126.300 267.139 126.669 267.139Q127 267.139 127.269 267.286Q127.537 267.433 127.537 267.740Q127.537 267.914 127.434 268.044Q127.332 268.174 127.164 268.174Q127.058 268.174 126.982 268.106Q126.905 268.038 126.905 267.935Q126.905 267.812 126.978 267.715Q127.052 267.617 127.171 267.579Q127.100 267.460 126.954 267.410Q126.809 267.361 126.652 267.361Q126.327 267.361 126.069 267.554Q125.811 267.747 125.635 268.055Q125.459 268.362 125.370 268.707Q125.281 269.053 125.281 269.336M128.268 270.071Q128.268 270.037 128.279 270.017L129.277 266.004Q129.314 265.908 129.314 265.816Q129.314 265.724 128.880 265.724Q128.795 265.696 128.795 265.611L128.822 265.501Q128.829 265.460 128.901 265.443L129.851 265.368Q129.895 265.368 129.926 265.394Q129.957 265.419 129.957 265.471L129.417 267.641Q129.875 267.139 130.476 267.139Q130.726 267.139 130.926 267.224Q131.126 267.309 131.239 267.482Q131.351 267.655 131.351 267.914Q131.351 268.075 131.305 268.280Q131.259 268.485 131.198 268.673Q131.136 268.861 131.040 269.111Q130.945 269.360 130.893 269.497Q130.818 269.702 130.818 269.852Q130.818 270.071 130.972 270.071Q131.157 270.071 131.295 269.929Q131.433 269.788 131.521 269.589Q131.608 269.391 131.659 269.196Q131.683 269.135 131.734 269.135L131.902 269.135Q131.936 269.135 131.958 269.160Q131.980 269.186 131.980 269.217Q131.980 269.230 131.974 269.244Q131.912 269.494 131.772 269.735Q131.632 269.975 131.422 270.134Q131.211 270.293 130.958 270.293Q130.685 270.293 130.499 270.129Q130.312 269.965 130.312 269.699Q130.312 269.562 130.364 269.449Q130.576 268.885 130.700 268.499Q130.825 268.113 130.825 267.826Q130.825 267.624 130.740 267.492Q130.654 267.361 130.459 267.361Q129.711 267.361 129.222 268.407L128.808 270.064Q128.781 270.163 128.696 270.228Q128.610 270.293 128.508 270.293Q128.409 270.293 128.339 270.232Q128.268 270.170 128.268 270.071\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmti7\" font-size=\"7\">\u003Cg transform=\"translate(202.702 -65.856)\">\u003Cpath d=\"M115.722 270.225L113.237 270.225Q113.144 270.198 113.144 270.112L113.175 269.999Q113.203 269.955 113.257 269.945Q113.678 269.945 113.811 269.897Q113.893 269.829 113.917 269.699L114.860 265.918Q114.881 265.867 114.881 265.809Q114.881 265.754 114.708 265.739Q114.536 265.724 114.365 265.724Q114.272 265.700 114.272 265.611L114.300 265.501Q114.330 265.454 114.385 265.443L116.918 265.443Q117.304 265.443 117.625 265.578Q117.947 265.713 118.172 265.959Q118.398 266.205 118.519 266.532Q118.641 266.858 118.641 267.245Q118.641 267.805 118.405 268.335Q118.169 268.865 117.752 269.294Q117.335 269.723 116.810 269.974Q116.286 270.225 115.722 270.225M114.477 269.911Q114.477 269.945 114.679 269.945L115.616 269.945Q116.036 269.945 116.448 269.774Q116.860 269.603 117.157 269.309Q117.413 269.053 117.605 268.656Q117.796 268.260 117.901 267.827Q118.005 267.395 118.005 267.019Q118.005 266.619 117.841 266.325Q117.677 266.031 117.378 265.877Q117.078 265.724 116.675 265.724L115.780 265.724Q115.640 265.724 115.588 265.735Q115.537 265.747 115.510 265.795Q115.482 265.843 115.448 265.970L114.505 269.750Q114.501 269.777 114.495 269.810Q114.488 269.842 114.483 269.868Q114.477 269.893 114.477 269.911M120.158 269.282Q120.158 269.600 120.319 269.835Q120.479 270.071 120.784 270.071Q121.050 270.071 121.318 269.991Q121.587 269.911 121.812 269.762Q122.038 269.613 122.202 269.405Q122.229 269.377 122.267 269.377Q122.322 269.377 122.385 269.444Q122.448 269.511 122.448 269.558Q122.448 269.596 122.428 269.617Q122.233 269.856 121.963 270.008Q121.693 270.160 121.389 270.227Q121.084 270.293 120.766 270.293Q120.411 270.293 120.143 270.119Q119.874 269.945 119.733 269.649Q119.591 269.353 119.591 269.001Q119.591 268.489 119.859 268.061Q120.127 267.634 120.568 267.386Q121.009 267.139 121.518 267.139Q121.840 267.139 122.101 267.292Q122.363 267.446 122.363 267.754Q122.363 268.157 122.009 268.354Q121.655 268.550 121.219 268.596Q120.784 268.642 120.271 268.642L120.250 268.642Q120.158 269.053 120.158 269.282M120.305 268.420Q120.705 268.420 121.055 268.386Q121.406 268.352 121.703 268.207Q122 268.061 122 267.761Q122 267.576 121.847 267.468Q121.693 267.361 121.501 267.361Q121.201 267.361 120.958 267.506Q120.715 267.651 120.553 267.889Q120.391 268.126 120.305 268.420\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(202.702 -65.856)\">\u003Cpath d=\"M123.534 269.336Q123.534 269.647 123.708 269.859Q123.882 270.071 124.187 270.071Q124.453 270.071 124.721 269.991Q124.990 269.911 125.215 269.762Q125.441 269.613 125.605 269.405Q125.632 269.377 125.670 269.377Q125.725 269.377 125.788 269.444Q125.851 269.511 125.851 269.558Q125.851 269.596 125.831 269.617Q125.636 269.856 125.366 270.008Q125.096 270.160 124.792 270.227Q124.487 270.293 124.169 270.293Q123.650 270.293 123.305 269.952Q122.960 269.610 122.960 269.090Q122.960 268.728 123.120 268.376Q123.281 268.024 123.566 267.738Q123.852 267.453 124.202 267.296Q124.552 267.139 124.921 267.139Q125.253 267.139 125.521 267.286Q125.790 267.433 125.790 267.740Q125.790 267.914 125.687 268.044Q125.585 268.174 125.417 268.174Q125.311 268.174 125.234 268.106Q125.157 268.038 125.157 267.935Q125.157 267.812 125.231 267.715Q125.304 267.617 125.424 267.579Q125.352 267.460 125.207 267.410Q125.062 267.361 124.904 267.361Q124.580 267.361 124.322 267.554Q124.064 267.747 123.887 268.055Q123.711 268.362 123.623 268.707Q123.534 269.053 123.534 269.336\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(202.702 -65.856)\">\u003Cpath d=\"M126.360 269.090Q126.360 268.728 126.520 268.376Q126.681 268.024 126.966 267.738Q127.252 267.453 127.602 267.296Q127.952 267.139 128.321 267.139Q128.667 267.139 128.942 267.292Q129.217 267.446 129.374 267.723Q129.531 268 129.531 268.342Q129.531 268.834 129.248 269.287Q128.964 269.740 128.506 270.017Q128.048 270.293 127.569 270.293Q127.050 270.293 126.705 269.952Q126.360 269.610 126.360 269.090M127.587 270.071Q127.904 270.071 128.162 269.880Q128.421 269.688 128.595 269.382Q128.769 269.077 128.860 268.735Q128.950 268.393 128.950 268.096Q128.950 267.781 128.781 267.571Q128.612 267.361 128.304 267.361Q127.980 267.361 127.722 267.554Q127.464 267.747 127.287 268.055Q127.111 268.362 127.023 268.707Q126.934 269.053 126.934 269.336Q126.934 269.647 127.108 269.859Q127.282 270.071 127.587 270.071\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(202.702 -65.856)\">\u003Cpath d=\"M131.179 270.293Q130.875 270.293 130.640 270.136Q130.406 269.979 130.285 269.716Q130.164 269.453 130.164 269.148Q130.164 268.697 130.406 268.224Q130.649 267.750 131.056 267.444Q131.463 267.139 131.927 267.139Q132.136 267.139 132.315 267.236Q132.495 267.333 132.608 267.508L132.977 266.004Q133.014 265.908 133.014 265.816Q133.014 265.724 132.580 265.724Q132.495 265.696 132.495 265.611L132.522 265.501Q132.549 265.454 132.601 265.443L133.551 265.368Q133.588 265.368 133.623 265.395Q133.657 265.423 133.657 265.471L132.649 269.497Q132.621 269.668 132.621 269.757Q132.621 270.071 132.830 270.071Q133.018 270.071 133.119 269.822Q133.219 269.572 133.315 269.196Q133.339 269.135 133.390 269.135L133.558 269.135Q133.592 269.135 133.614 269.160Q133.636 269.186 133.636 269.217Q133.636 269.230 133.629 269.244Q133.370 270.293 132.816 270.293Q132.584 270.293 132.387 270.170Q132.191 270.047 132.126 269.832Q131.664 270.293 131.179 270.293M131.192 270.071Q131.466 270.071 131.715 269.859Q131.965 269.647 132.146 269.357L132.474 268.034Q132.443 267.771 132.302 267.566Q132.160 267.361 131.914 267.361Q131.551 267.361 131.280 267.726Q131.008 268.092 130.866 268.590Q130.724 269.087 130.724 269.435Q130.724 269.688 130.840 269.880Q130.957 270.071 131.192 270.071M134.993 269.282Q134.993 269.600 135.154 269.835Q135.315 270.071 135.619 270.071Q135.885 270.071 136.154 269.991Q136.422 269.911 136.648 269.762Q136.873 269.613 137.037 269.405Q137.065 269.377 137.102 269.377Q137.157 269.377 137.220 269.444Q137.283 269.511 137.283 269.558Q137.283 269.596 137.263 269.617Q137.068 269.856 136.798 270.008Q136.528 270.160 136.224 270.227Q135.920 270.293 135.602 270.293Q135.246 270.293 134.978 270.119Q134.710 269.945 134.568 269.649Q134.426 269.353 134.426 269.001Q134.426 268.489 134.694 268.061Q134.963 267.634 135.403 267.386Q135.844 267.139 136.354 267.139Q136.675 267.139 136.936 267.292Q137.198 267.446 137.198 267.754Q137.198 268.157 136.844 268.354Q136.490 268.550 136.055 268.596Q135.619 268.642 135.106 268.642L135.086 268.642Q134.993 269.053 134.993 269.282M135.140 268.420Q135.540 268.420 135.890 268.386Q136.241 268.352 136.538 268.207Q136.836 268.061 136.836 267.761Q136.836 267.576 136.682 267.468Q136.528 267.361 136.337 267.361Q136.036 267.361 135.793 267.506Q135.550 267.651 135.388 267.889Q135.226 268.126 135.140 268.420\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmti7\" font-size=\"7\">\u003Cg transform=\"translate(202.702 -139.89)\">\u003Cpath d=\"M117.198 270.225L113.223 270.225Q113.131 270.198 113.131 270.112L113.162 269.999Q113.189 269.955 113.244 269.945Q113.664 269.945 113.797 269.897Q113.879 269.829 113.903 269.699L114.847 265.918Q114.867 265.867 114.867 265.809Q114.867 265.754 114.694 265.739Q114.522 265.724 114.351 265.724Q114.259 265.700 114.259 265.611L114.286 265.501Q114.313 265.454 114.371 265.443L118.241 265.443Q118.326 265.467 118.326 265.549L118.172 266.992Q118.155 267.060 118.080 267.080L117.933 267.080Q117.851 267.057 117.851 266.971Q117.885 266.568 117.885 266.479Q117.885 266.130 117.724 265.963Q117.564 265.795 117.325 265.759Q117.085 265.724 116.675 265.724L115.793 265.724Q115.653 265.724 115.602 265.735Q115.551 265.747 115.523 265.795Q115.496 265.843 115.462 265.970L115.058 267.600L115.616 267.600Q115.992 267.600 116.171 267.552Q116.350 267.504 116.458 267.349Q116.566 267.193 116.655 266.838Q116.685 266.787 116.730 266.780L116.877 266.780Q116.969 266.807 116.969 266.886L116.528 268.636Q116.504 268.683 116.450 268.701L116.303 268.701Q116.210 268.666 116.210 268.588Q116.282 268.335 116.282 268.181Q116.282 267.983 116.096 267.932Q115.910 267.880 115.616 267.880L114.987 267.880L114.518 269.750Q114.515 269.777 114.508 269.810Q114.501 269.842 114.496 269.868Q114.491 269.893 114.491 269.911Q114.491 269.945 114.693 269.945L115.602 269.945Q116.104 269.945 116.429 269.870Q116.754 269.794 116.962 269.625Q117.171 269.456 117.328 269.183Q117.485 268.909 117.697 268.413Q117.724 268.366 117.779 268.355L117.926 268.355Q118.012 268.379 118.012 268.454Q118.012 268.461 118.005 268.489L117.284 270.163Q117.246 270.218 117.198 270.225M118.535 269.784Q118.535 269.617 118.639 269.494Q118.743 269.371 118.907 269.371Q119.020 269.371 119.093 269.439Q119.167 269.507 119.167 269.617Q119.167 269.729 119.100 269.820Q119.034 269.911 118.928 269.952Q119.088 270.071 119.269 270.071Q119.488 270.071 119.645 269.876Q119.803 269.682 119.857 269.449L120.175 268.188Q120.244 267.921 120.244 267.781Q120.244 267.603 120.141 267.482Q120.038 267.361 119.857 267.361Q119.645 267.361 119.461 267.492Q119.276 267.624 119.146 267.829Q119.016 268.034 118.962 268.236Q118.952 268.301 118.893 268.301L118.726 268.301Q118.695 268.301 118.671 268.270Q118.647 268.239 118.647 268.215L118.647 268.188Q118.723 267.911 118.902 267.672Q119.081 267.433 119.338 267.286Q119.594 267.139 119.874 267.139Q120.117 267.139 120.326 267.248Q120.534 267.357 120.637 267.559Q120.773 267.368 120.968 267.253Q121.163 267.139 121.378 267.139Q121.553 267.139 121.720 267.192Q121.888 267.245 121.997 267.357Q122.106 267.470 122.106 267.648Q122.106 267.815 122.002 267.938Q121.898 268.061 121.734 268.061Q121.628 268.061 121.553 267.990Q121.477 267.918 121.477 267.815Q121.477 267.706 121.542 267.614Q121.607 267.521 121.706 267.480Q121.583 267.361 121.365 267.361Q121.153 267.361 120.990 267.557Q120.828 267.754 120.770 267.986L120.455 269.244Q120.391 269.524 120.391 269.651Q120.391 269.835 120.491 269.953Q120.592 270.071 120.777 270.071Q120.995 270.071 121.180 269.941Q121.365 269.811 121.491 269.611Q121.618 269.412 121.672 269.196Q121.696 269.135 121.747 269.135L121.918 269.135Q121.953 269.135 121.973 269.160Q121.994 269.186 121.994 269.217Q121.994 269.230 121.987 269.244Q121.884 269.668 121.536 269.981Q121.187 270.293 120.763 270.293Q120.524 270.293 120.312 270.184Q120.100 270.075 119.991 269.876Q119.659 270.293 119.256 270.293Q118.982 270.293 118.758 270.170Q118.535 270.047 118.535 269.784M123.350 269.282Q123.350 269.600 123.511 269.835Q123.672 270.071 123.976 270.071Q124.243 270.071 124.511 269.991Q124.779 269.911 125.005 269.762Q125.230 269.613 125.394 269.405Q125.422 269.377 125.459 269.377Q125.514 269.377 125.577 269.444Q125.641 269.511 125.641 269.558Q125.641 269.596 125.620 269.617Q125.425 269.856 125.155 270.008Q124.885 270.160 124.581 270.227Q124.277 270.293 123.959 270.293Q123.603 270.293 123.335 270.119Q123.067 269.945 122.925 269.649Q122.783 269.353 122.783 269.001Q122.783 268.489 123.051 268.061Q123.320 267.634 123.761 267.386Q124.202 267.139 124.711 267.139Q125.032 267.139 125.294 267.292Q125.555 267.446 125.555 267.754Q125.555 268.157 125.201 268.354Q124.848 268.550 124.412 268.596Q123.976 268.642 123.463 268.642L123.443 268.642Q123.350 269.053 123.350 269.282M123.497 268.420Q123.897 268.420 124.248 268.386Q124.598 268.352 124.895 268.207Q125.193 268.061 125.193 267.761Q125.193 267.576 125.039 267.468Q124.885 267.361 124.694 267.361Q124.393 267.361 124.150 267.506Q123.908 267.651 123.745 267.889Q123.583 268.126 123.497 268.420\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(202.702 -139.89)\">\u003Cpath d=\"M126.729 269.336Q126.729 269.647 126.903 269.859Q127.077 270.071 127.382 270.071Q127.648 270.071 127.916 269.991Q128.185 269.911 128.410 269.762Q128.636 269.613 128.800 269.405Q128.827 269.377 128.865 269.377Q128.920 269.377 128.983 269.444Q129.046 269.511 129.046 269.558Q129.046 269.596 129.026 269.617Q128.831 269.856 128.561 270.008Q128.291 270.160 127.987 270.227Q127.682 270.293 127.364 270.293Q126.845 270.293 126.500 269.952Q126.155 269.610 126.155 269.090Q126.155 268.728 126.315 268.376Q126.476 268.024 126.761 267.738Q127.047 267.453 127.397 267.296Q127.747 267.139 128.116 267.139Q128.448 267.139 128.716 267.286Q128.985 267.433 128.985 267.740Q128.985 267.914 128.882 268.044Q128.780 268.174 128.612 268.174Q128.506 268.174 128.429 268.106Q128.352 268.038 128.352 267.935Q128.352 267.812 128.426 267.715Q128.499 267.617 128.619 267.579Q128.547 267.460 128.402 267.410Q128.257 267.361 128.099 267.361Q127.775 267.361 127.517 267.554Q127.259 267.747 127.082 268.055Q126.906 268.362 126.818 268.707Q126.729 269.053 126.729 269.336M130.328 269.429Q130.328 269.268 130.365 269.075Q130.403 268.882 130.466 268.695Q130.530 268.509 130.605 268.314Q130.680 268.120 130.755 267.935Q130.830 267.733 130.830 267.579Q130.830 267.361 130.676 267.361Q130.413 267.361 130.248 267.626Q130.082 267.891 129.983 268.236Q129.972 268.301 129.914 268.301L129.747 268.301Q129.716 268.301 129.692 268.270Q129.668 268.239 129.668 268.215L129.668 268.188Q129.737 267.928 129.877 267.691Q130.017 267.453 130.227 267.296Q130.437 267.139 130.690 267.139Q130.953 267.139 131.145 267.303Q131.336 267.467 131.336 267.733Q131.336 267.867 131.285 267.986Q131.206 268.188 131.117 268.420Q131.029 268.653 130.979 268.812Q130.929 268.971 130.890 269.159Q130.851 269.347 130.851 269.517Q130.851 269.757 130.958 269.914Q131.066 270.071 131.292 270.071Q131.780 270.071 132.126 269.418L132.621 267.453Q132.655 267.340 132.739 267.274Q132.823 267.207 132.929 267.207Q133.025 267.207 133.093 267.268Q133.161 267.330 133.161 267.426Q133.161 267.450 133.160 267.465Q133.158 267.480 133.155 267.501L132.652 269.497Q132.621 269.651 132.621 269.757Q132.621 270.071 132.833 270.071Q132.970 270.071 133.067 269.914Q133.165 269.757 133.218 269.572Q133.271 269.388 133.315 269.196Q133.339 269.135 133.394 269.135L133.561 269.135Q133.595 269.135 133.616 269.160Q133.636 269.186 133.636 269.217Q133.636 269.230 133.630 269.244Q133.572 269.500 133.474 269.733Q133.377 269.965 133.213 270.129Q133.049 270.293 132.820 270.293Q132.591 270.293 132.404 270.184Q132.218 270.075 132.133 269.870Q131.757 270.293 131.278 270.293Q130.847 270.293 130.588 270.073Q130.328 269.852 130.328 269.429M134.470 269.637Q134.470 269.541 134.491 269.449L134.980 267.487L134.238 267.487Q134.149 267.463 134.149 267.374L134.176 267.265Q134.194 267.221 134.259 267.207L135.051 267.207L135.332 266.096Q135.359 265.987 135.448 265.918Q135.537 265.850 135.646 265.850Q135.738 265.850 135.807 265.910Q135.875 265.970 135.875 266.065Q135.875 266.089 135.874 266.101Q135.872 266.113 135.868 266.130L135.595 267.207L136.340 267.207Q136.422 267.234 136.422 267.313L136.395 267.426Q136.388 267.470 136.316 267.487L135.527 267.487L135.024 269.497Q134.993 269.651 134.993 269.757Q134.993 270.071 135.205 270.071Q135.506 270.071 135.740 269.793Q135.974 269.514 136.101 269.176Q136.128 269.135 136.169 269.135L136.340 269.135Q136.374 269.135 136.395 269.160Q136.415 269.186 136.415 269.217Q136.415 269.230 136.408 269.244Q136.244 269.671 135.923 269.982Q135.602 270.293 135.192 270.293Q134.891 270.293 134.681 270.110Q134.470 269.928 134.470 269.637M137.765 269.282Q137.765 269.600 137.926 269.835Q138.087 270.071 138.391 270.071Q138.657 270.071 138.926 269.991Q139.194 269.911 139.420 269.762Q139.645 269.613 139.809 269.405Q139.837 269.377 139.874 269.377Q139.929 269.377 139.992 269.444Q140.055 269.511 140.055 269.558Q140.055 269.596 140.035 269.617Q139.840 269.856 139.570 270.008Q139.300 270.160 138.996 270.227Q138.692 270.293 138.374 270.293Q138.018 270.293 137.750 270.119Q137.482 269.945 137.340 269.649Q137.198 269.353 137.198 269.001Q137.198 268.489 137.466 268.061Q137.735 267.634 138.176 267.386Q138.616 267.139 139.126 267.139Q139.447 267.139 139.708 267.292Q139.970 267.446 139.970 267.754Q139.970 268.157 139.616 268.354Q139.262 268.550 138.827 268.596Q138.391 268.642 137.878 268.642L137.858 268.642Q137.765 269.053 137.765 269.282M137.912 268.420Q138.312 268.420 138.663 268.386Q139.013 268.352 139.310 268.207Q139.608 268.061 139.608 267.761Q139.608 267.576 139.454 267.468Q139.300 267.361 139.109 267.361Q138.808 267.361 138.565 267.506Q138.322 267.651 138.160 267.889Q137.998 268.126 137.912 268.420\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(202.702 -214.549)\">\u003Cpath d=\"M114.765 270.225L113.250 270.225Q113.216 270.225 113.192 270.189Q113.168 270.153 113.168 270.112L113.196 269.999Q113.213 269.958 113.278 269.945Q113.886 269.945 113.985 269.504L114.881 265.918Q114.905 265.860 114.905 265.809Q114.905 265.754 114.732 265.739Q114.559 265.724 114.385 265.724Q114.293 265.696 114.293 265.611L114.324 265.501Q114.330 265.457 114.406 265.443L115.602 265.443Q115.653 265.443 115.686 265.469Q115.718 265.495 115.722 265.542L116.303 269.558L118.900 265.542Q118.962 265.443 119.068 265.443L120.209 265.443Q120.291 265.467 120.291 265.549L120.264 265.662Q120.257 265.706 120.189 265.724Q119.762 265.724 119.628 265.771Q119.563 265.823 119.522 265.970L118.579 269.750Q118.565 269.818 118.565 269.863Q118.565 269.945 119.081 269.945Q119.174 269.969 119.174 270.051L119.146 270.163Q119.129 270.211 119.061 270.225L117.352 270.225Q117.318 270.225 117.294 270.189Q117.270 270.153 117.270 270.112L117.297 269.999Q117.314 269.958 117.383 269.945Q117.560 269.945 117.709 269.934Q117.858 269.924 117.933 269.897Q118.012 269.832 118.039 269.699L119.013 265.823L116.234 270.126Q116.169 270.225 116.063 270.225L115.981 270.225Q115.944 270.225 115.904 270.198Q115.865 270.170 115.862 270.126L115.246 265.891L114.330 269.552Q114.313 269.664 114.313 269.678Q114.313 269.839 114.448 269.892Q114.583 269.945 114.785 269.945Q114.874 269.969 114.874 270.051L114.847 270.163Q114.829 270.211 114.765 270.225M121.286 269.282Q121.286 269.600 121.447 269.835Q121.607 270.071 121.912 270.071Q122.178 270.071 122.446 269.991Q122.715 269.911 122.940 269.762Q123.166 269.613 123.330 269.405Q123.357 269.377 123.395 269.377Q123.450 269.377 123.513 269.444Q123.576 269.511 123.576 269.558Q123.576 269.596 123.556 269.617Q123.361 269.856 123.091 270.008Q122.821 270.160 122.516 270.227Q122.212 270.293 121.894 270.293Q121.539 270.293 121.271 270.119Q121.002 269.945 120.860 269.649Q120.719 269.353 120.719 269.001Q120.719 268.489 120.987 268.061Q121.255 267.634 121.696 267.386Q122.137 267.139 122.646 267.139Q122.968 267.139 123.229 267.292Q123.491 267.446 123.491 267.754Q123.491 268.157 123.137 268.354Q122.783 268.550 122.347 268.596Q121.912 268.642 121.399 268.642L121.378 268.642Q121.286 269.053 121.286 269.282M121.433 268.420Q121.833 268.420 122.183 268.386Q122.534 268.352 122.831 268.207Q123.128 268.061 123.128 267.761Q123.128 267.576 122.974 267.468Q122.821 267.361 122.629 267.361Q122.328 267.361 122.086 267.506Q121.843 267.651 121.681 267.889Q121.518 268.126 121.433 268.420M124.653 270.078Q124.653 270.037 124.660 270.017L125.179 267.935Q125.213 267.798 125.213 267.679Q125.213 267.549 125.167 267.455Q125.121 267.361 125.005 267.361Q124.899 267.361 124.818 267.453Q124.738 267.545 124.678 267.691Q124.619 267.836 124.578 267.991Q124.537 268.147 124.513 268.236Q124.502 268.301 124.444 268.301L124.277 268.301Q124.246 268.301 124.222 268.270Q124.198 268.239 124.198 268.215L124.198 268.188Q124.318 267.740 124.499 267.439Q124.680 267.139 125.018 267.139Q125.193 267.139 125.353 267.210Q125.514 267.282 125.613 267.415Q125.712 267.549 125.733 267.726Q126.225 267.139 126.864 267.139Q127.220 267.139 127.457 267.296Q127.695 267.453 127.739 267.788Q127.883 267.597 128.071 267.448Q128.259 267.299 128.474 267.219Q128.689 267.139 128.925 267.139Q129.175 267.139 129.375 267.224Q129.575 267.309 129.687 267.482Q129.800 267.655 129.800 267.914Q129.800 268.075 129.754 268.280Q129.708 268.485 129.646 268.673Q129.585 268.861 129.489 269.111Q129.393 269.360 129.342 269.497Q129.267 269.702 129.267 269.852Q129.267 270.071 129.421 270.071Q129.605 270.071 129.744 269.929Q129.882 269.788 129.969 269.589Q130.057 269.391 130.108 269.196Q130.132 269.135 130.183 269.135L130.350 269.135Q130.385 269.135 130.407 269.160Q130.429 269.186 130.429 269.217Q130.429 269.230 130.422 269.244Q130.361 269.494 130.221 269.735Q130.080 269.975 129.870 270.134Q129.660 270.293 129.407 270.293Q129.134 270.293 128.947 270.129Q128.761 269.965 128.761 269.699Q128.761 269.562 128.812 269.449Q129.024 268.885 129.149 268.499Q129.274 268.113 129.274 267.826Q129.274 267.621 129.185 267.491Q129.096 267.361 128.901 267.361Q128.153 267.361 127.664 268.420L127.257 270.051Q127.230 270.157 127.139 270.225Q127.049 270.293 126.943 270.293Q126.850 270.293 126.780 270.232Q126.710 270.170 126.710 270.078Q126.710 270.037 126.717 270.017L127.165 268.236Q127.223 267.983 127.223 267.826Q127.223 267.621 127.132 267.491Q127.042 267.361 126.850 267.361Q126.085 267.361 125.606 268.427L125.200 270.051Q125.172 270.157 125.082 270.225Q124.991 270.293 124.885 270.293Q124.793 270.293 124.723 270.232Q124.653 270.170 124.653 270.078M131.178 269.090Q131.178 268.728 131.338 268.376Q131.499 268.024 131.784 267.738Q132.070 267.453 132.420 267.296Q132.770 267.139 133.140 267.139Q133.485 267.139 133.760 267.292Q134.035 267.446 134.192 267.723Q134.349 268 134.349 268.342Q134.349 268.834 134.066 269.287Q133.782 269.740 133.324 270.017Q132.866 270.293 132.388 270.293Q131.868 270.293 131.523 269.952Q131.178 269.610 131.178 269.090M132.405 270.071Q132.723 270.071 132.981 269.880Q133.239 269.688 133.413 269.382Q133.587 269.077 133.678 268.735Q133.768 268.393 133.768 268.096Q133.768 267.781 133.599 267.571Q133.430 267.361 133.122 267.361Q132.798 267.361 132.540 267.554Q132.282 267.747 132.106 268.055Q131.930 268.362 131.841 268.707Q131.752 269.053 131.752 269.336Q131.752 269.647 131.926 269.859Q132.100 270.071 132.405 270.071M135.559 270.078Q135.559 270.037 135.566 270.017L136.086 267.935Q136.120 267.798 136.120 267.679Q136.120 267.549 136.074 267.455Q136.028 267.361 135.912 267.361Q135.806 267.361 135.725 267.453Q135.645 267.545 135.585 267.691Q135.525 267.836 135.484 267.991Q135.443 268.147 135.419 268.236Q135.409 268.301 135.351 268.301L135.183 268.301Q135.153 268.301 135.129 268.270Q135.105 268.239 135.105 268.215L135.105 268.188Q135.224 267.740 135.406 267.439Q135.587 267.139 135.925 267.139Q136.161 267.139 136.356 267.258Q136.551 267.378 136.616 267.600Q136.800 267.381 137.039 267.260Q137.279 267.139 137.556 267.139Q137.887 267.139 138.152 267.253Q138.417 267.368 138.417 267.648Q138.417 267.815 138.313 267.938Q138.208 268.061 138.044 268.061Q137.938 268.061 137.863 267.990Q137.788 267.918 137.788 267.815Q137.788 267.716 137.848 267.622Q137.908 267.528 138.003 267.487Q137.856 267.361 137.542 267.361Q136.961 267.361 136.554 268.249L136.106 270.051Q136.079 270.157 135.988 270.225Q135.898 270.293 135.792 270.293Q135.700 270.293 135.630 270.232Q135.559 270.170 135.559 270.078M138.899 271.045Q138.899 270.868 139.001 270.736Q139.104 270.604 139.278 270.604Q139.391 270.604 139.464 270.669Q139.538 270.734 139.538 270.840Q139.538 270.960 139.458 271.062Q139.377 271.165 139.258 271.199Q139.312 271.312 139.429 271.370Q139.545 271.428 139.685 271.428Q140.010 271.428 140.261 271.213Q140.512 270.997 140.669 270.674Q140.827 270.351 140.909 270.023Q140.594 270.293 140.215 270.293Q139.777 270.293 139.521 270.073Q139.265 269.852 139.265 269.429Q139.265 269.268 139.302 269.075Q139.340 268.882 139.403 268.695Q139.466 268.509 139.541 268.314Q139.617 268.120 139.692 267.935Q139.767 267.733 139.767 267.579Q139.767 267.361 139.613 267.361Q139.350 267.361 139.184 267.626Q139.018 267.891 138.919 268.236Q138.909 268.301 138.851 268.301L138.683 268.301Q138.653 268.301 138.629 268.270Q138.605 268.239 138.605 268.215L138.605 268.188Q138.673 267.928 138.813 267.691Q138.953 267.453 139.164 267.296Q139.374 267.139 139.627 267.139Q139.890 267.139 140.081 267.303Q140.273 267.467 140.273 267.733Q140.273 267.867 140.222 267.986Q140.143 268.188 140.054 268.420Q139.965 268.653 139.916 268.812Q139.866 268.971 139.827 269.159Q139.787 269.347 139.787 269.517Q139.787 269.757 139.895 269.914Q140.003 270.071 140.228 270.071Q140.717 270.071 141.056 269.418L141.551 267.453Q141.585 267.340 141.669 267.274Q141.753 267.207 141.859 267.207Q141.954 267.207 142.023 267.268Q142.091 267.330 142.091 267.426Q142.091 267.467 142.084 267.487L141.397 270.252Q141.332 270.526 141.165 270.782Q140.997 271.038 140.756 271.237Q140.516 271.435 140.235 271.544Q139.955 271.654 139.668 271.654Q139.370 271.654 139.135 271.491Q138.899 271.329 138.899 271.045\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmti7\" font-size=\"7\">\u003Cg transform=\"translate(202.702 -253.644)\">\u003Cpath d=\"M114.932 270.266L114.553 265.836Q114.525 265.724 114.132 265.724Q114.043 265.700 114.043 265.611L114.071 265.501Q114.108 265.450 114.153 265.443L115.735 265.443Q115.773 265.443 115.797 265.476Q115.821 265.508 115.821 265.549L115.793 265.662Q115.763 265.713 115.708 265.724Q115.226 265.724 115.188 265.891L115.493 269.429L117.396 266.164L117.366 265.836Q117.338 265.724 116.949 265.724Q116.856 265.700 116.856 265.611L116.884 265.501Q116.911 265.454 116.969 265.443L118.552 265.443Q118.579 265.443 118.606 265.479Q118.634 265.515 118.634 265.549L118.606 265.662Q118.569 265.717 118.521 265.724Q118.032 265.724 117.998 265.891L118.299 269.429L120.237 266.117Q120.257 266.082 120.271 266.033Q120.285 265.983 120.285 265.949Q120.285 265.819 120.172 265.771Q120.059 265.724 119.909 265.724Q119.823 265.696 119.823 265.611L119.850 265.501Q119.881 265.450 119.929 265.443L121.286 265.443Q121.324 265.443 121.348 265.476Q121.371 265.508 121.371 265.549L121.344 265.662Q121.320 265.713 121.266 265.724Q121.023 265.724 120.854 265.841Q120.684 265.959 120.537 266.192L120.524 266.205L118.145 270.266Q118.097 270.365 117.984 270.365L117.851 270.365Q117.810 270.365 117.774 270.336Q117.738 270.307 117.738 270.266L117.437 266.677L115.335 270.266Q115.277 270.365 115.175 270.365L115.041 270.365Q115 270.365 114.966 270.338Q114.932 270.310 114.932 270.266M121.665 270.078Q121.665 270.037 121.672 270.017L122.192 267.935Q122.226 267.798 122.226 267.679Q122.226 267.549 122.180 267.455Q122.134 267.361 122.017 267.361Q121.912 267.361 121.831 267.453Q121.751 267.545 121.691 267.691Q121.631 267.836 121.590 267.991Q121.549 268.147 121.525 268.236Q121.515 268.301 121.457 268.301L121.289 268.301Q121.259 268.301 121.235 268.270Q121.211 268.239 121.211 268.215L121.211 268.188Q121.330 267.740 121.512 267.439Q121.693 267.139 122.031 267.139Q122.267 267.139 122.462 267.258Q122.657 267.378 122.722 267.600Q122.906 267.381 123.145 267.260Q123.385 267.139 123.662 267.139Q123.993 267.139 124.258 267.253Q124.523 267.368 124.523 267.648Q124.523 267.815 124.419 267.938Q124.314 268.061 124.150 268.061Q124.044 268.061 123.969 267.990Q123.894 267.918 123.894 267.815Q123.894 267.716 123.954 267.622Q124.014 267.528 124.109 267.487Q123.962 267.361 123.648 267.361Q123.067 267.361 122.660 268.249L122.212 270.051Q122.185 270.157 122.094 270.225Q122.004 270.293 121.898 270.293Q121.806 270.293 121.735 270.232Q121.665 270.170 121.665 270.078M125.159 269.699Q125.159 269.576 125.210 269.449L125.798 267.935Q125.873 267.733 125.873 267.579Q125.873 267.361 125.712 267.361Q125.456 267.361 125.290 267.626Q125.124 267.891 125.025 268.236Q125.015 268.301 124.957 268.301L124.789 268.301Q124.759 268.301 124.735 268.270Q124.711 268.239 124.711 268.215L124.711 268.188Q124.779 267.928 124.919 267.691Q125.059 267.453 125.270 267.296Q125.480 267.139 125.733 267.139Q125.996 267.139 126.187 267.303Q126.379 267.467 126.379 267.733Q126.379 267.839 126.328 267.986L125.740 269.497Q125.664 269.702 125.664 269.852Q125.664 270.071 125.818 270.071Q126.085 270.071 126.254 269.798Q126.423 269.524 126.502 269.196Q126.533 269.135 126.580 269.135L126.748 269.135Q126.782 269.135 126.804 269.164Q126.827 269.193 126.827 269.217Q126.827 269.230 126.820 269.244Q126.758 269.494 126.616 269.736Q126.474 269.979 126.266 270.136Q126.058 270.293 125.805 270.293Q125.535 270.293 125.347 270.129Q125.159 269.965 125.159 269.699M125.999 265.976Q125.999 265.836 126.109 265.727Q126.218 265.618 126.362 265.618Q126.471 265.618 126.546 265.689Q126.621 265.761 126.621 265.871Q126.621 266.014 126.507 266.122Q126.392 266.229 126.252 266.229Q126.146 266.229 126.073 266.159Q125.999 266.089 125.999 265.976M127.667 269.637Q127.667 269.541 127.688 269.449L128.177 267.487L127.435 267.487Q127.346 267.463 127.346 267.374L127.373 267.265Q127.391 267.221 127.455 267.207L128.248 267.207L128.529 266.096Q128.556 265.987 128.645 265.918Q128.734 265.850 128.843 265.850Q128.935 265.850 129.004 265.910Q129.072 265.970 129.072 266.065Q129.072 266.089 129.070 266.101Q129.069 266.113 129.065 266.130L128.792 267.207L129.537 267.207Q129.619 267.234 129.619 267.313L129.592 267.426Q129.585 267.470 129.513 267.487L128.724 267.487L128.221 269.497Q128.190 269.651 128.190 269.757Q128.190 270.071 128.402 270.071Q128.703 270.071 128.937 269.793Q129.171 269.514 129.298 269.176Q129.325 269.135 129.366 269.135L129.537 269.135Q129.571 269.135 129.592 269.160Q129.612 269.186 129.612 269.217Q129.612 269.230 129.605 269.244Q129.441 269.671 129.120 269.982Q128.799 270.293 128.389 270.293Q128.088 270.293 127.878 270.110Q127.667 269.928 127.667 269.637M130.962 269.282Q130.962 269.600 131.123 269.835Q131.284 270.071 131.588 270.071Q131.854 270.071 132.123 269.991Q132.391 269.911 132.617 269.762Q132.842 269.613 133.006 269.405Q133.034 269.377 133.071 269.377Q133.126 269.377 133.189 269.444Q133.252 269.511 133.252 269.558Q133.252 269.596 133.232 269.617Q133.037 269.856 132.767 270.008Q132.497 270.160 132.193 270.227Q131.889 270.293 131.571 270.293Q131.215 270.293 130.947 270.119Q130.679 269.945 130.537 269.649Q130.395 269.353 130.395 269.001Q130.395 268.489 130.663 268.061Q130.932 267.634 131.372 267.386Q131.813 267.139 132.323 267.139Q132.644 267.139 132.905 267.292Q133.167 267.446 133.167 267.754Q133.167 268.157 132.813 268.354Q132.459 268.550 132.024 268.596Q131.588 268.642 131.075 268.642L131.055 268.642Q130.962 269.053 130.962 269.282M131.109 268.420Q131.509 268.420 131.860 268.386Q132.210 268.352 132.507 268.207Q132.805 268.061 132.805 267.761Q132.805 267.576 132.651 267.468Q132.497 267.361 132.306 267.361Q132.005 267.361 131.762 267.506Q131.519 267.651 131.357 267.889Q131.195 268.126 131.109 268.420M135.829 268.957L134.042 268.957Q133.960 268.943 133.960 268.854L134.035 268.530Q134.042 268.492 134.120 268.475L135.905 268.475Q135.990 268.502 135.990 268.581L135.912 268.902Q135.894 268.943 135.829 268.957M138.164 270.293Q137.860 270.293 137.638 270.136Q137.415 269.979 137.303 269.717Q137.190 269.456 137.190 269.162Q137.190 268.957 137.248 268.707L137.904 266.058Q137.955 265.871 137.955 265.816Q137.955 265.724 137.521 265.724Q137.436 265.696 137.436 265.611L137.463 265.501Q137.470 265.460 137.542 265.443L138.492 265.368Q138.530 265.368 138.564 265.395Q138.598 265.423 138.598 265.471L138.102 267.474Q138.499 267.139 138.906 267.139Q139.217 267.139 139.447 267.296Q139.678 267.453 139.799 267.718Q139.921 267.983 139.921 268.287Q139.921 268.632 139.782 268.988Q139.644 269.343 139.400 269.639Q139.155 269.934 138.837 270.114Q138.519 270.293 138.164 270.293M138.171 270.071Q138.533 270.071 138.805 269.704Q139.077 269.336 139.218 268.836Q139.360 268.335 139.360 267.993Q139.360 267.744 139.244 267.552Q139.128 267.361 138.892 267.361Q138.615 267.361 138.371 267.573Q138.126 267.785 137.949 268.075L137.778 268.742Q137.733 268.947 137.708 269.106Q137.682 269.265 137.682 269.398Q137.682 269.668 137.802 269.870Q137.921 270.071 138.171 270.071\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(202.702 -253.644)\">\u003Cpath d=\"M141.580 270.293Q141.276 270.293 141.041 270.136Q140.807 269.979 140.686 269.716Q140.565 269.453 140.565 269.148Q140.565 268.697 140.807 268.224Q141.050 267.750 141.457 267.444Q141.863 267.139 142.328 267.139Q142.537 267.139 142.716 267.236Q142.896 267.333 143.009 267.508Q143.032 267.402 143.123 267.337Q143.214 267.272 143.316 267.272Q143.419 267.272 143.484 267.333Q143.549 267.395 143.549 267.487Q143.549 267.497 143.531 267.566L143.050 269.497Q143.022 269.668 143.022 269.757Q143.022 270.071 143.231 270.071Q143.419 270.071 143.520 269.822Q143.620 269.572 143.716 269.196Q143.740 269.135 143.791 269.135L143.959 269.135Q143.993 269.135 144.015 269.160Q144.037 269.186 144.037 269.217Q144.037 269.230 144.030 269.244Q143.771 270.293 143.217 270.293Q142.985 270.293 142.788 270.170Q142.592 270.047 142.527 269.832Q142.065 270.293 141.580 270.293M141.593 270.071Q141.867 270.071 142.116 269.859Q142.366 269.647 142.547 269.357L142.875 268.034Q142.844 267.771 142.703 267.566Q142.561 267.361 142.315 267.361Q141.952 267.361 141.681 267.726Q141.409 268.092 141.267 268.590Q141.125 269.087 141.125 269.435Q141.125 269.688 141.241 269.880Q141.358 270.071 141.593 270.071M145.367 269.336Q145.367 269.647 145.541 269.859Q145.716 270.071 146.020 270.071Q146.286 270.071 146.555 269.991Q146.823 269.911 147.049 269.762Q147.274 269.613 147.438 269.405Q147.466 269.377 147.503 269.377Q147.558 269.377 147.621 269.444Q147.684 269.511 147.684 269.558Q147.684 269.596 147.664 269.617Q147.469 269.856 147.199 270.008Q146.929 270.160 146.625 270.227Q146.321 270.293 146.003 270.293Q145.483 270.293 145.138 269.952Q144.793 269.610 144.793 269.090Q144.793 268.728 144.953 268.376Q145.114 268.024 145.399 267.738Q145.685 267.453 146.035 267.296Q146.385 267.139 146.755 267.139Q147.086 267.139 147.354 267.286Q147.623 267.433 147.623 267.740Q147.623 267.914 147.520 268.044Q147.418 268.174 147.250 268.174Q147.144 268.174 147.067 268.106Q146.990 268.038 146.990 267.935Q146.990 267.812 147.064 267.715Q147.137 267.617 147.257 267.579Q147.185 267.460 147.040 267.410Q146.895 267.361 146.738 267.361Q146.413 267.361 146.155 267.554Q145.897 267.747 145.721 268.055Q145.545 268.362 145.456 268.707Q145.367 269.053 145.367 269.336M148.354 270.071Q148.354 270.037 148.364 270.017L149.363 266.004Q149.400 265.908 149.400 265.816Q149.400 265.724 148.966 265.724Q148.881 265.696 148.881 265.611L148.908 265.501Q148.915 265.460 148.987 265.443L149.937 265.368Q149.981 265.368 150.012 265.394Q150.043 265.419 150.043 265.471L149.322 268.355Q149.571 268.246 149.971 267.865Q150.371 267.484 150.603 267.311Q150.836 267.139 151.171 267.139Q151.383 267.139 151.528 267.275Q151.673 267.412 151.673 267.627Q151.673 267.802 151.569 267.932Q151.465 268.061 151.297 268.061Q151.191 268.061 151.114 267.991Q151.037 267.921 151.037 267.815Q151.037 267.696 151.116 267.593Q151.195 267.491 151.318 267.460Q151.273 267.361 151.157 267.361Q150.955 267.361 150.750 267.480Q150.545 267.600 150.308 267.819Q150.070 268.038 149.891 268.203Q149.711 268.369 149.581 268.454Q150.002 268.502 150.309 268.672Q150.617 268.841 150.617 269.203Q150.617 269.288 150.578 269.475Q150.538 269.661 150.538 269.736Q150.538 270.071 150.764 270.071Q151 270.071 151.126 269.808Q151.253 269.545 151.331 269.196Q151.355 269.135 151.406 269.135L151.577 269.135Q151.612 269.135 151.632 269.160Q151.653 269.186 151.653 269.217Q151.653 269.230 151.646 269.244Q151.547 269.647 151.321 269.970Q151.095 270.293 150.750 270.293Q150.439 270.293 150.231 270.093Q150.022 269.893 150.022 269.582Q150.022 269.545 150.046 269.420Q150.070 269.295 150.070 269.217Q150.070 269.032 149.940 268.913Q149.810 268.793 149.617 268.733Q149.424 268.673 149.246 268.656L148.894 270.064Q148.867 270.163 148.781 270.228Q148.696 270.293 148.593 270.293Q148.494 270.293 148.424 270.232Q148.354 270.170 148.354 270.071\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmti7\" font-size=\"7\">\u003Cg transform=\"translate(202.702 -291.313)\">\u003Cpath d=\"M115.014 270.225L113.230 270.225Q113.199 270.225 113.172 270.189Q113.144 270.153 113.144 270.112L113.175 269.999Q113.192 269.958 113.257 269.945Q113.678 269.945 113.811 269.897Q113.893 269.829 113.917 269.699L114.860 265.918Q114.881 265.867 114.881 265.809Q114.881 265.754 114.708 265.739Q114.536 265.724 114.365 265.724Q114.272 265.700 114.272 265.611L114.300 265.501Q114.307 265.460 114.385 265.443L116.815 265.443Q117.068 265.443 117.326 265.510Q117.584 265.577 117.793 265.706Q118.001 265.836 118.130 266.045Q118.258 266.253 118.258 266.530Q118.258 266.985 117.923 267.342Q117.588 267.699 117.094 267.891Q116.600 268.082 116.156 268.082L114.953 268.082L114.539 269.743Q114.518 269.805 114.518 269.863Q114.518 269.945 115.035 269.945Q115.127 269.969 115.127 270.051L115.099 270.163Q115.082 270.211 115.014 270.225M115.448 265.970L114.987 267.832L116.043 267.832Q116.802 267.832 117.171 267.453Q117.355 267.272 117.463 266.971Q117.571 266.670 117.571 266.383Q117.571 266.011 117.280 265.867Q116.990 265.724 116.569 265.724L115.780 265.724Q115.640 265.724 115.588 265.735Q115.537 265.747 115.510 265.795Q115.482 265.843 115.448 265.970M119.915 268.629Q119.915 268.957 120.020 269.227Q120.124 269.497 120.324 269.692Q120.524 269.887 120.790 269.986Q121.057 270.085 121.392 270.085Q121.823 270.085 122.233 269.868Q122.643 269.651 122.935 269.283Q123.227 268.916 123.330 268.496Q123.344 268.441 123.409 268.441L123.576 268.441Q123.607 268.441 123.629 268.465Q123.651 268.489 123.651 268.523Q123.651 268.530 123.644 268.543Q123.556 268.926 123.320 269.261Q123.084 269.596 122.754 269.842Q122.424 270.088 122.035 270.227Q121.645 270.365 121.252 270.365Q120.684 270.365 120.225 270.122Q119.765 269.880 119.504 269.437Q119.242 268.995 119.242 268.427Q119.242 267.829 119.514 267.262Q119.786 266.694 120.252 266.253Q120.719 265.812 121.301 265.558Q121.884 265.303 122.475 265.303Q122.718 265.303 122.947 265.371Q123.176 265.440 123.374 265.580Q123.573 265.720 123.709 265.918L124.249 265.324Q124.270 265.303 124.297 265.303L124.359 265.303Q124.393 265.303 124.415 265.329Q124.437 265.354 124.437 265.389Q124.437 265.395 124.431 265.409L123.969 267.258Q123.955 267.320 123.897 267.320L123.730 267.320Q123.651 267.320 123.651 267.227Q123.675 267.074 123.675 266.899Q123.675 266.640 123.603 266.397Q123.532 266.154 123.391 265.973Q123.251 265.792 123.043 265.688Q122.834 265.583 122.554 265.583Q121.802 265.583 121.195 266.029Q120.589 266.475 120.252 267.181Q119.915 267.887 119.915 268.629\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(202.702 -291.313)\">\u003Cpath d=\"M128.164 269.429Q128.164 269.268 128.202 269.075Q128.239 268.882 128.303 268.695Q128.366 268.509 128.441 268.314Q128.516 268.120 128.591 267.935Q128.667 267.733 128.667 267.579Q128.667 267.361 128.513 267.361Q128.250 267.361 128.084 267.626Q127.918 267.891 127.819 268.236Q127.809 268.301 127.751 268.301L127.583 268.301Q127.552 268.301 127.528 268.270Q127.505 268.239 127.505 268.215L127.505 268.188Q127.573 267.928 127.713 267.691Q127.853 267.453 128.063 267.296Q128.274 267.139 128.527 267.139Q128.790 267.139 128.981 267.303Q129.173 267.467 129.173 267.733Q129.173 267.867 129.121 267.986Q129.043 268.188 128.954 268.420Q128.865 268.653 128.815 268.812Q128.766 268.971 128.726 269.159Q128.687 269.347 128.687 269.517Q128.687 269.757 128.795 269.914Q128.903 270.071 129.128 270.071Q129.617 270.071 129.962 269.418L130.458 267.453Q130.492 267.340 130.576 267.274Q130.659 267.207 130.765 267.207Q130.861 267.207 130.929 267.268Q130.998 267.330 130.998 267.426Q130.998 267.450 130.996 267.465Q130.994 267.480 130.991 267.501L130.488 269.497Q130.458 269.651 130.458 269.757Q130.458 270.071 130.670 270.071Q130.806 270.071 130.904 269.914Q131.001 269.757 131.054 269.572Q131.107 269.388 131.152 269.196Q131.175 269.135 131.230 269.135L131.398 269.135Q131.432 269.135 131.452 269.160Q131.473 269.186 131.473 269.217Q131.473 269.230 131.466 269.244Q131.408 269.500 131.310 269.733Q131.213 269.965 131.049 270.129Q130.885 270.293 130.656 270.293Q130.427 270.293 130.241 270.184Q130.054 270.075 129.969 269.870Q129.593 270.293 129.114 270.293Q128.684 270.293 128.424 270.073Q128.164 269.852 128.164 269.429M133.062 271.582L131.674 271.582Q131.640 271.582 131.616 271.546Q131.592 271.510 131.592 271.479L131.620 271.367Q131.647 271.308 131.698 271.302Q131.924 271.302 132.004 271.264Q132.085 271.226 132.132 271.059L132.908 267.935Q132.943 267.798 132.943 267.679Q132.943 267.549 132.896 267.455Q132.850 267.361 132.734 267.361Q132.628 267.361 132.548 267.453Q132.467 267.545 132.408 267.691Q132.348 267.836 132.307 267.991Q132.266 268.147 132.242 268.236Q132.232 268.301 132.174 268.301L132.006 268.301Q131.975 268.301 131.951 268.270Q131.927 268.239 131.927 268.215L131.927 268.188Q132.047 267.740 132.228 267.439Q132.409 267.139 132.748 267.139Q132.984 267.139 133.178 267.258Q133.373 267.378 133.438 267.600Q133.886 267.139 134.385 267.139Q134.693 267.139 134.925 267.298Q135.157 267.456 135.279 267.720Q135.400 267.983 135.400 268.287Q135.400 268.748 135.159 269.217Q134.918 269.685 134.510 269.989Q134.101 270.293 133.636 270.293Q133.428 270.293 133.252 270.198Q133.076 270.102 132.956 269.924L132.662 271.107Q132.642 271.168 132.642 271.233Q132.642 271.302 133.083 271.302Q133.168 271.329 133.168 271.414L133.137 271.527Q133.110 271.575 133.062 271.582M133.650 270.071Q134.012 270.071 134.284 269.705Q134.556 269.340 134.698 268.846Q134.840 268.352 134.840 268Q134.840 267.744 134.723 267.552Q134.607 267.361 134.371 267.361Q134.091 267.361 133.845 267.573Q133.599 267.785 133.418 268.075L133.090 269.398Q133.120 269.661 133.262 269.866Q133.404 270.071 133.650 270.071\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(202.702 -291.313)\">\u003Cpath d=\"M137.046 270.293Q136.742 270.293 136.507 270.136Q136.273 269.979 136.152 269.716Q136.031 269.453 136.031 269.148Q136.031 268.697 136.273 268.224Q136.516 267.750 136.923 267.444Q137.329 267.139 137.794 267.139Q138.003 267.139 138.182 267.236Q138.362 267.333 138.475 267.508L138.844 266.004Q138.881 265.908 138.881 265.816Q138.881 265.724 138.447 265.724Q138.362 265.696 138.362 265.611L138.389 265.501Q138.416 265.454 138.468 265.443L139.418 265.368Q139.455 265.368 139.490 265.395Q139.524 265.423 139.524 265.471L138.516 269.497Q138.488 269.668 138.488 269.757Q138.488 270.071 138.697 270.071Q138.885 270.071 138.986 269.822Q139.086 269.572 139.182 269.196Q139.206 269.135 139.257 269.135L139.425 269.135Q139.459 269.135 139.481 269.160Q139.503 269.186 139.503 269.217Q139.503 269.230 139.496 269.244Q139.237 270.293 138.683 270.293Q138.451 270.293 138.254 270.170Q138.058 270.047 137.993 269.832Q137.531 270.293 137.046 270.293M137.059 270.071Q137.333 270.071 137.582 269.859Q137.832 269.647 138.013 269.357L138.341 268.034Q138.310 267.771 138.169 267.566Q138.027 267.361 137.781 267.361Q137.418 267.361 137.147 267.726Q136.875 268.092 136.733 268.590Q136.591 269.087 136.591 269.435Q136.591 269.688 136.707 269.880Q136.824 270.071 137.059 270.071M141.267 270.293Q140.963 270.293 140.729 270.136Q140.495 269.979 140.373 269.716Q140.252 269.453 140.252 269.148Q140.252 268.697 140.495 268.224Q140.737 267.750 141.144 267.444Q141.551 267.139 142.016 267.139Q142.224 267.139 142.403 267.236Q142.583 267.333 142.696 267.508Q142.720 267.402 142.810 267.337Q142.901 267.272 143.003 267.272Q143.106 267.272 143.171 267.333Q143.236 267.395 143.236 267.487Q143.236 267.497 143.219 267.566L142.737 269.497Q142.709 269.668 142.709 269.757Q142.709 270.071 142.918 270.071Q143.106 270.071 143.207 269.822Q143.308 269.572 143.403 269.196Q143.427 269.135 143.478 269.135L143.646 269.135Q143.680 269.135 143.702 269.160Q143.725 269.186 143.725 269.217Q143.725 269.230 143.718 269.244Q143.458 270.293 142.904 270.293Q142.672 270.293 142.475 270.170Q142.279 270.047 142.214 269.832Q141.752 270.293 141.267 270.293M141.281 270.071Q141.554 270.071 141.804 269.859Q142.053 269.647 142.234 269.357L142.562 268.034Q142.532 267.771 142.390 267.566Q142.248 267.361 142.002 267.361Q141.640 267.361 141.368 267.726Q141.096 268.092 140.954 268.590Q140.812 269.087 140.812 269.435Q140.812 269.688 140.929 269.880Q141.045 270.071 141.281 270.071M144.565 269.637Q144.565 269.541 144.586 269.449L145.075 267.487L144.333 267.487Q144.244 267.463 144.244 267.374L144.271 267.265Q144.288 267.221 144.353 267.207L145.146 267.207L145.427 266.096Q145.454 265.987 145.543 265.918Q145.632 265.850 145.741 265.850Q145.833 265.850 145.902 265.910Q145.970 265.970 145.970 266.065Q145.970 266.089 145.968 266.101Q145.967 266.113 145.963 266.130L145.690 267.207L146.435 267.207Q146.517 267.234 146.517 267.313L146.490 267.426Q146.483 267.470 146.411 267.487L145.621 267.487L145.119 269.497Q145.088 269.651 145.088 269.757Q145.088 270.071 145.300 270.071Q145.601 270.071 145.835 269.793Q146.069 269.514 146.196 269.176Q146.223 269.135 146.264 269.135L146.435 269.135Q146.469 269.135 146.490 269.160Q146.510 269.186 146.510 269.217Q146.510 269.230 146.503 269.244Q146.339 269.671 146.018 269.982Q145.697 270.293 145.287 270.293Q144.986 270.293 144.776 270.110Q144.565 269.928 144.565 269.637M147.860 269.282Q147.860 269.600 148.021 269.835Q148.182 270.071 148.486 270.071Q148.752 270.071 149.021 269.991Q149.289 269.911 149.515 269.762Q149.740 269.613 149.904 269.405Q149.932 269.377 149.969 269.377Q150.024 269.377 150.087 269.444Q150.150 269.511 150.150 269.558Q150.150 269.596 150.130 269.617Q149.935 269.856 149.665 270.008Q149.395 270.160 149.091 270.227Q148.787 270.293 148.469 270.293Q148.113 270.293 147.845 270.119Q147.577 269.945 147.435 269.649Q147.293 269.353 147.293 269.001Q147.293 268.489 147.561 268.061Q147.829 267.634 148.270 267.386Q148.711 267.139 149.221 267.139Q149.542 267.139 149.803 267.292Q150.065 267.446 150.065 267.754Q150.065 268.157 149.711 268.354Q149.357 268.550 148.922 268.596Q148.486 268.642 147.973 268.642L147.953 268.642Q147.860 269.053 147.860 269.282M148.007 268.420Q148.407 268.420 148.757 268.386Q149.108 268.352 149.405 268.207Q149.703 268.061 149.703 267.761Q149.703 267.576 149.549 267.468Q149.395 267.361 149.204 267.361Q148.903 267.361 148.660 267.506Q148.417 267.651 148.255 267.889Q148.093 268.126 148.007 268.420\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The complete SEQ datapath, Fetch (bottom) to PC update (top). The center column rises from the PC through instruction memory, the register file, the ALU muxes and ALU, data memory, and the New-PC mux. Bypass lanes carry valC and valP up the right margin and valC into aluA on the left; valE and valM return down the left margin to the write ports (dstE, dstM), and newPC loops down the far left into the PC register. The aluA mux also takes the constants +8\u002F-8, and aluB the constant 0 (not drawn).\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:444.538px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 333.404 161.636\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" d=\"M-65.203-32.152h28.452v-17.072H65.68v17.072h125.192v-17.072h34.144\" style=\"stroke-width:.8\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(299.441 -82.928)\">\u003Cpath d=\"M-64.889 43.159Q-64.889 42.831-64.754 42.530Q-64.619 42.230-64.383 42.009Q-64.147 41.789-63.843 41.669Q-63.538 41.549-63.214 41.549Q-62.708 41.549-62.359 41.652Q-62.011 41.754-62.011 42.130Q-62.011 42.277-62.108 42.378Q-62.205 42.479-62.352 42.479Q-62.506 42.479-62.605 42.380Q-62.704 42.281-62.704 42.130Q-62.704 41.942-62.564 41.850Q-62.766 41.799-63.207 41.799Q-63.562 41.799-63.791 41.995Q-64.020 42.192-64.121 42.501Q-64.222 42.811-64.222 43.159Q-64.222 43.508-64.096 43.814Q-63.969 44.120-63.714 44.304Q-63.460 44.489-63.104 44.489Q-62.882 44.489-62.698 44.405Q-62.513 44.321-62.378 44.166Q-62.243 44.010-62.185 43.802Q-62.171 43.747-62.117 43.747L-62.004 43.747Q-61.973 43.747-61.951 43.771Q-61.929 43.795-61.929 43.829L-61.929 43.850Q-62.014 44.137-62.202 44.335Q-62.390 44.533-62.655 44.636Q-62.920 44.738-63.214 44.738Q-63.644 44.738-64.032 44.532Q-64.420 44.325-64.654 43.962Q-64.889 43.600-64.889 43.159M-59.673 44.670L-61.276 44.670L-61.276 44.390Q-61.050 44.390-60.901 44.356Q-60.753 44.321-60.753 44.181L-60.753 40.562Q-60.753 40.292-60.860 40.230Q-60.968 40.169-61.276 40.169L-61.276 39.888L-60.199 39.813L-60.199 44.181Q-60.199 44.318-60.049 44.354Q-59.898 44.390-59.673 44.390L-59.673 44.670M-59.119 43.187Q-59.119 42.845-58.984 42.546Q-58.849 42.247-58.610 42.023Q-58.370 41.799-58.053 41.674Q-57.735 41.549-57.403 41.549Q-56.959 41.549-56.559 41.765Q-56.159 41.980-55.925 42.358Q-55.691 42.735-55.691 43.187Q-55.691 43.528-55.833 43.812Q-55.974 44.096-56.219 44.303Q-56.463 44.509-56.773 44.624Q-57.082 44.738-57.403 44.738Q-57.834 44.738-58.235 44.537Q-58.637 44.335-58.878 43.983Q-59.119 43.631-59.119 43.187M-57.403 44.489Q-56.802 44.489-56.578 44.111Q-56.354 43.733-56.354 43.101Q-56.354 42.489-56.588 42.130Q-56.822 41.772-57.403 41.772Q-58.456 41.772-58.456 43.101Q-58.456 43.733-58.230 44.111Q-58.005 44.489-57.403 44.489\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(299.441 -82.928)\">\u003Cpath d=\"M-54.868 43.159Q-54.868 42.831-54.733 42.530Q-54.598 42.230-54.362 42.009Q-54.126 41.789-53.822 41.669Q-53.517 41.549-53.193 41.549Q-52.687 41.549-52.338 41.652Q-51.990 41.754-51.990 42.130Q-51.990 42.277-52.087 42.378Q-52.184 42.479-52.331 42.479Q-52.485 42.479-52.584 42.380Q-52.683 42.281-52.683 42.130Q-52.683 41.942-52.543 41.850Q-52.745 41.799-53.186 41.799Q-53.541 41.799-53.770 41.995Q-53.999 42.192-54.100 42.501Q-54.201 42.811-54.201 43.159Q-54.201 43.508-54.075 43.814Q-53.948 44.120-53.693 44.304Q-53.439 44.489-53.083 44.489Q-52.861 44.489-52.677 44.405Q-52.492 44.321-52.357 44.166Q-52.222 44.010-52.164 43.802Q-52.150 43.747-52.096 43.747L-51.983 43.747Q-51.952 43.747-51.930 43.771Q-51.908 43.795-51.908 43.829L-51.908 43.850Q-51.993 44.137-52.181 44.335Q-52.369 44.533-52.634 44.636Q-52.899 44.738-53.193 44.738Q-53.623 44.738-54.011 44.532Q-54.399 44.325-54.633 43.962Q-54.868 43.600-54.868 43.159\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(299.441 -82.928)\">\u003Cpath d=\"M-49.931 44.670L-51.514 44.670L-51.514 44.390Q-51.285 44.390-51.136 44.356Q-50.988 44.321-50.988 44.181L-50.988 40.562Q-50.988 40.292-51.095 40.230Q-51.203 40.169-51.514 40.169L-51.514 39.888L-50.434 39.813L-50.434 43.101L-49.449 42.332Q-49.244 42.195-49.244 42.045Q-49.244 42.001-49.285 41.966Q-49.326 41.932-49.371 41.932L-49.371 41.652L-48.007 41.652L-48.007 41.932Q-48.496 41.932-49.015 42.332L-49.572 42.766L-48.595 43.990Q-48.393 44.236-48.260 44.313Q-48.127 44.390-47.840 44.390L-47.840 44.670L-49.272 44.670L-49.272 44.390Q-49.084 44.390-49.084 44.277Q-49.084 44.181-49.238 43.990L-49.972 43.081L-50.454 43.460L-50.454 44.181Q-50.454 44.318-50.306 44.354Q-50.157 44.390-49.931 44.390\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-accent)\" d=\"M-36.75 81.66V-57.76M190.871 81.66V-57.76\" style=\"stroke-dasharray:3.0,3.0\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(9.737 -108.746)\">\u003Cpath d=\"M-63.139 44.670L-64.875 44.670L-64.875 44.390Q-64.646 44.390-64.497 44.356Q-64.349 44.321-64.349 44.181L-64.349 42.332Q-64.349 42.062-64.456 42.001Q-64.564 41.939-64.875 41.939L-64.875 41.659L-63.846 41.584L-63.846 42.291Q-63.716 41.983-63.474 41.784Q-63.231 41.584-62.913 41.584Q-62.694 41.584-62.523 41.708Q-62.352 41.833-62.352 42.045Q-62.352 42.182-62.452 42.281Q-62.551 42.380-62.684 42.380Q-62.821 42.380-62.920 42.281Q-63.019 42.182-63.019 42.045Q-63.019 41.905-62.920 41.806Q-63.210 41.806-63.410 42.002Q-63.610 42.199-63.703 42.493Q-63.795 42.787-63.795 43.067L-63.795 44.181Q-63.795 44.390-63.139 44.390L-63.139 44.670M-60.151 44.670L-61.703 44.670L-61.703 44.390Q-61.477 44.390-61.329 44.356Q-61.180 44.321-61.180 44.181L-61.180 42.332Q-61.180 42.144-61.228 42.060Q-61.276 41.977-61.373 41.958Q-61.471 41.939-61.682 41.939L-61.682 41.659L-60.626 41.584L-60.626 44.181Q-60.626 44.321-60.495 44.356Q-60.363 44.390-60.151 44.390L-60.151 44.670M-61.423 40.363Q-61.423 40.192-61.300 40.073Q-61.177 39.953-61.006 39.953Q-60.838 39.953-60.715 40.073Q-60.592 40.192-60.592 40.363Q-60.592 40.538-60.715 40.661Q-60.838 40.784-61.006 40.784Q-61.177 40.784-61.300 40.661Q-61.423 40.538-61.423 40.363M-59.505 44.663L-59.505 43.600Q-59.505 43.576-59.478 43.549Q-59.451 43.522-59.427 43.522L-59.317 43.522Q-59.252 43.522-59.239 43.580Q-59.143 44.014-58.897 44.265Q-58.651 44.516-58.237 44.516Q-57.895 44.516-57.642 44.383Q-57.390 44.250-57.390 43.942Q-57.390 43.785-57.484 43.670Q-57.578 43.556-57.716 43.487Q-57.854 43.419-58.022 43.381L-58.603 43.282Q-58.958 43.214-59.232 42.993Q-59.505 42.773-59.505 42.431Q-59.505 42.182-59.394 42.007Q-59.283 41.833-59.097 41.734Q-58.911 41.635-58.695 41.592Q-58.480 41.549-58.237 41.549Q-57.824 41.549-57.543 41.731L-57.328 41.556Q-57.318 41.553-57.311 41.551Q-57.304 41.549-57.294 41.549L-57.243 41.549Q-57.215 41.549-57.191 41.573Q-57.167 41.597-57.167 41.625L-57.167 42.472Q-57.167 42.493-57.191 42.520Q-57.215 42.547-57.243 42.547L-57.355 42.547Q-57.383 42.547-57.408 42.522Q-57.434 42.496-57.434 42.472Q-57.434 42.236-57.540 42.072Q-57.646 41.908-57.829 41.826Q-58.012 41.744-58.244 41.744Q-58.572 41.744-58.828 41.847Q-59.085 41.949-59.085 42.226Q-59.085 42.421-58.902 42.530Q-58.719 42.640-58.490 42.681L-57.916 42.787Q-57.670 42.835-57.456 42.963Q-57.243 43.091-57.106 43.294Q-56.969 43.498-56.969 43.747Q-56.969 44.260-57.335 44.499Q-57.701 44.738-58.237 44.738Q-58.733 44.738-59.064 44.444L-59.331 44.718Q-59.351 44.738-59.379 44.738L-59.427 44.738Q-59.451 44.738-59.478 44.711Q-59.505 44.684-59.505 44.663M-54.724 44.670L-56.275 44.670L-56.275 44.390Q-56.050 44.390-55.901 44.356Q-55.752 44.321-55.752 44.181L-55.752 42.332Q-55.752 42.144-55.800 42.060Q-55.848 41.977-55.945 41.958Q-56.043 41.939-56.255 41.939L-56.255 41.659L-55.199 41.584L-55.199 44.181Q-55.199 44.321-55.067 44.356Q-54.935 44.390-54.724 44.390L-54.724 44.670M-55.995 40.363Q-55.995 40.192-55.872 40.073Q-55.749 39.953-55.578 39.953Q-55.411 39.953-55.287 40.073Q-55.164 40.192-55.164 40.363Q-55.164 40.538-55.287 40.661Q-55.411 40.784-55.578 40.784Q-55.749 40.784-55.872 40.661Q-55.995 40.538-55.995 40.363M-52.396 44.670L-54.030 44.670L-54.030 44.390Q-53.801 44.390-53.652 44.356Q-53.503 44.321-53.503 44.181L-53.503 42.332Q-53.503 42.062-53.611 42.001Q-53.719 41.939-54.030 41.939L-54.030 41.659L-52.970 41.584L-52.970 42.233Q-52.799 41.925-52.495 41.754Q-52.191 41.584-51.846 41.584Q-51.340 41.584-51.056 41.807Q-50.772 42.031-50.772 42.527L-50.772 44.181Q-50.772 44.318-50.624 44.354Q-50.475 44.390-50.249 44.390L-50.249 44.670L-51.880 44.670L-51.880 44.390Q-51.651 44.390-51.502 44.356Q-51.353 44.321-51.353 44.181L-51.353 42.541Q-51.353 42.206-51.473 42.006Q-51.593 41.806-51.907 41.806Q-52.177 41.806-52.411 41.942Q-52.645 42.079-52.784 42.313Q-52.922 42.547-52.922 42.821L-52.922 44.181Q-52.922 44.318-52.772 44.354Q-52.621 44.390-52.396 44.390L-52.396 44.670M-49.703 45.203Q-49.703 44.957-49.506 44.773Q-49.309 44.588-49.053 44.509Q-49.190 44.397-49.262 44.236Q-49.333 44.075-49.333 43.894Q-49.333 43.573-49.121 43.327Q-49.456 43.029-49.456 42.619Q-49.456 42.158-49.067 41.871Q-48.677 41.584-48.199 41.584Q-47.727 41.584-47.392 41.830Q-47.218 41.676-47.007 41.594Q-46.797 41.512-46.568 41.512Q-46.404 41.512-46.283 41.619Q-46.161 41.727-46.161 41.891Q-46.161 41.987-46.233 42.059Q-46.305 42.130-46.397 42.130Q-46.496 42.130-46.567 42.057Q-46.637 41.983-46.637 41.884Q-46.637 41.830-46.623 41.799L-46.616 41.785Q-46.609 41.765-46.601 41.754Q-46.592 41.744-46.589 41.737Q-46.944 41.737-47.231 41.960Q-46.944 42.253-46.944 42.619Q-46.944 42.934-47.129 43.166Q-47.313 43.399-47.602 43.527Q-47.891 43.655-48.199 43.655Q-48.400 43.655-48.592 43.605Q-48.783 43.556-48.961 43.446Q-49.053 43.573-49.053 43.716Q-49.053 43.898-48.925 44.033Q-48.797 44.168-48.612 44.168L-47.980 44.168Q-47.532 44.168-47.163 44.239Q-46.794 44.311-46.534 44.540Q-46.274 44.769-46.274 45.203Q-46.274 45.524-46.570 45.726Q-46.866 45.928-47.269 46.017Q-47.672 46.106-47.987 46.106Q-48.305 46.106-48.708 46.017Q-49.111 45.928-49.407 45.726Q-49.703 45.524-49.703 45.203M-49.248 45.203Q-49.248 45.432-49.029 45.581Q-48.810 45.730-48.518 45.798Q-48.226 45.866-47.987 45.866Q-47.823 45.866-47.614 45.830Q-47.406 45.795-47.199 45.714Q-46.992 45.634-46.860 45.506Q-46.729 45.378-46.729 45.203Q-46.729 44.851-47.110 44.757Q-47.491 44.663-47.994 44.663L-48.612 44.663Q-48.851 44.663-49.050 44.814Q-49.248 44.964-49.248 45.203M-48.199 43.416Q-47.532 43.416-47.532 42.619Q-47.532 41.819-48.199 41.819Q-48.869 41.819-48.869 42.619Q-48.869 43.416-48.199 43.416\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.737 -108.746)\">\u003Cpath d=\"M-43.012 43.135Q-43.012 42.814-42.887 42.525Q-42.762 42.236-42.536 42.013Q-42.311 41.789-42.015 41.669Q-41.720 41.549-41.402 41.549Q-41.074 41.549-40.812 41.649Q-40.551 41.748-40.375 41.930Q-40.199 42.113-40.105 42.371Q-40.011 42.629-40.011 42.961Q-40.011 43.053-40.093 43.074L-42.348 43.074L-42.348 43.135Q-42.348 43.723-42.065 44.106Q-41.781 44.489-41.214 44.489Q-40.892 44.489-40.624 44.296Q-40.356 44.103-40.267 43.788Q-40.260 43.747-40.185 43.733L-40.093 43.733Q-40.011 43.757-40.011 43.829Q-40.011 43.836-40.017 43.863Q-40.130 44.260-40.501 44.499Q-40.872 44.738-41.296 44.738Q-41.733 44.738-42.133 44.530Q-42.533 44.321-42.772 43.954Q-43.012 43.587-43.012 43.135M-42.342 42.865L-40.527 42.865Q-40.527 42.588-40.624 42.336Q-40.722 42.083-40.920 41.927Q-41.118 41.772-41.402 41.772Q-41.679 41.772-41.892 41.930Q-42.106 42.089-42.224 42.344Q-42.342 42.599-42.342 42.865M-39.423 43.159Q-39.423 42.821-39.283 42.530Q-39.142 42.240-38.898 42.026Q-38.654 41.813-38.349 41.698Q-38.045 41.584-37.721 41.584Q-37.451 41.584-37.187 41.683Q-36.924 41.782-36.733 41.960L-36.733 40.562Q-36.733 40.292-36.840 40.230Q-36.948 40.169-37.259 40.169L-37.259 39.888L-36.182 39.813L-36.182 43.997Q-36.182 44.185-36.128 44.268Q-36.073 44.352-35.972 44.371Q-35.871 44.390-35.656 44.390L-35.656 44.670L-36.764 44.738L-36.764 44.321Q-37.181 44.738-37.806 44.738Q-38.237 44.738-38.609 44.526Q-38.982 44.315-39.202 43.954Q-39.423 43.593-39.423 43.159M-37.748 44.516Q-37.539 44.516-37.353 44.444Q-37.167 44.373-37.013 44.236Q-36.859 44.099-36.764 43.921L-36.764 42.312Q-36.849 42.165-36.994 42.045Q-37.139 41.925-37.309 41.866Q-37.478 41.806-37.659 41.806Q-38.220 41.806-38.488 42.195Q-38.756 42.585-38.756 43.166Q-38.756 43.737-38.522 44.127Q-38.288 44.516-37.748 44.516M-35.048 45.203Q-35.048 44.957-34.851 44.773Q-34.655 44.588-34.398 44.509Q-34.535 44.397-34.607 44.236Q-34.679 44.075-34.679 43.894Q-34.679 43.573-34.467 43.327Q-34.802 43.029-34.802 42.619Q-34.802 42.158-34.412 41.871Q-34.022 41.584-33.544 41.584Q-33.072 41.584-32.737 41.830Q-32.563 41.676-32.353 41.594Q-32.142 41.512-31.913 41.512Q-31.749 41.512-31.628 41.619Q-31.507 41.727-31.507 41.891Q-31.507 41.987-31.578 42.059Q-31.650 42.130-31.743 42.130Q-31.842 42.130-31.912 42.057Q-31.982 41.983-31.982 41.884Q-31.982 41.830-31.968 41.799L-31.961 41.785Q-31.954 41.765-31.946 41.754Q-31.937 41.744-31.934 41.737Q-32.289 41.737-32.577 41.960Q-32.289 42.253-32.289 42.619Q-32.289 42.934-32.474 43.166Q-32.659 43.399-32.947 43.527Q-33.236 43.655-33.544 43.655Q-33.745 43.655-33.937 43.605Q-34.128 43.556-34.306 43.446Q-34.398 43.573-34.398 43.716Q-34.398 43.898-34.270 44.033Q-34.142 44.168-33.957 44.168L-33.325 44.168Q-32.877 44.168-32.508 44.239Q-32.139 44.311-31.879 44.540Q-31.619 44.769-31.619 45.203Q-31.619 45.524-31.915 45.726Q-32.211 45.928-32.614 46.017Q-33.017 46.106-33.332 46.106Q-33.650 46.106-34.053 46.017Q-34.456 45.928-34.752 45.726Q-35.048 45.524-35.048 45.203M-34.593 45.203Q-34.593 45.432-34.374 45.581Q-34.156 45.730-33.863 45.798Q-33.571 45.866-33.332 45.866Q-33.168 45.866-32.959 45.830Q-32.751 45.795-32.544 45.714Q-32.337 45.634-32.206 45.506Q-32.074 45.378-32.074 45.203Q-32.074 44.851-32.455 44.757Q-32.836 44.663-33.339 44.663L-33.957 44.663Q-34.197 44.663-34.395 44.814Q-34.593 44.964-34.593 45.203M-33.544 43.416Q-32.877 43.416-32.877 42.619Q-32.877 41.819-33.544 41.819Q-34.214 41.819-34.214 42.619Q-34.214 43.416-33.544 43.416M-31.066 43.135Q-31.066 42.814-30.941 42.525Q-30.816 42.236-30.591 42.013Q-30.365 41.789-30.069 41.669Q-29.774 41.549-29.456 41.549Q-29.128 41.549-28.866 41.649Q-28.605 41.748-28.429 41.930Q-28.253 42.113-28.159 42.371Q-28.065 42.629-28.065 42.961Q-28.065 43.053-28.147 43.074L-30.403 43.074L-30.403 43.135Q-30.403 43.723-30.119 44.106Q-29.835 44.489-29.268 44.489Q-28.947 44.489-28.678 44.296Q-28.410 44.103-28.321 43.788Q-28.314 43.747-28.239 43.733L-28.147 43.733Q-28.065 43.757-28.065 43.829Q-28.065 43.836-28.072 43.863Q-28.184 44.260-28.555 44.499Q-28.926 44.738-29.350 44.738Q-29.787 44.738-30.187 44.530Q-30.587 44.321-30.827 43.954Q-31.066 43.587-31.066 43.135M-30.396 42.865L-28.581 42.865Q-28.581 42.588-28.678 42.336Q-28.776 42.083-28.974 41.927Q-29.172 41.772-29.456 41.772Q-29.733 41.772-29.946 41.930Q-30.160 42.089-30.278 42.344Q-30.396 42.599-30.396 42.865\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(237.359 -108.746)\">\u003Cpath d=\"M-63.139 44.670L-64.875 44.670L-64.875 44.390Q-64.646 44.390-64.497 44.356Q-64.349 44.321-64.349 44.181L-64.349 42.332Q-64.349 42.062-64.456 42.001Q-64.564 41.939-64.875 41.939L-64.875 41.659L-63.846 41.584L-63.846 42.291Q-63.716 41.983-63.474 41.784Q-63.231 41.584-62.913 41.584Q-62.694 41.584-62.523 41.708Q-62.352 41.833-62.352 42.045Q-62.352 42.182-62.452 42.281Q-62.551 42.380-62.684 42.380Q-62.821 42.380-62.920 42.281Q-63.019 42.182-63.019 42.045Q-63.019 41.905-62.920 41.806Q-63.210 41.806-63.410 42.002Q-63.610 42.199-63.703 42.493Q-63.795 42.787-63.795 43.067L-63.795 44.181Q-63.795 44.390-63.139 44.390L-63.139 44.670M-60.151 44.670L-61.703 44.670L-61.703 44.390Q-61.477 44.390-61.329 44.356Q-61.180 44.321-61.180 44.181L-61.180 42.332Q-61.180 42.144-61.228 42.060Q-61.276 41.977-61.373 41.958Q-61.471 41.939-61.682 41.939L-61.682 41.659L-60.626 41.584L-60.626 44.181Q-60.626 44.321-60.495 44.356Q-60.363 44.390-60.151 44.390L-60.151 44.670M-61.423 40.363Q-61.423 40.192-61.300 40.073Q-61.177 39.953-61.006 39.953Q-60.838 39.953-60.715 40.073Q-60.592 40.192-60.592 40.363Q-60.592 40.538-60.715 40.661Q-60.838 40.784-61.006 40.784Q-61.177 40.784-61.300 40.661Q-61.423 40.538-61.423 40.363M-59.505 44.663L-59.505 43.600Q-59.505 43.576-59.478 43.549Q-59.451 43.522-59.427 43.522L-59.317 43.522Q-59.252 43.522-59.239 43.580Q-59.143 44.014-58.897 44.265Q-58.651 44.516-58.237 44.516Q-57.895 44.516-57.642 44.383Q-57.390 44.250-57.390 43.942Q-57.390 43.785-57.484 43.670Q-57.578 43.556-57.716 43.487Q-57.854 43.419-58.022 43.381L-58.603 43.282Q-58.958 43.214-59.232 42.993Q-59.505 42.773-59.505 42.431Q-59.505 42.182-59.394 42.007Q-59.283 41.833-59.097 41.734Q-58.911 41.635-58.695 41.592Q-58.480 41.549-58.237 41.549Q-57.824 41.549-57.543 41.731L-57.328 41.556Q-57.318 41.553-57.311 41.551Q-57.304 41.549-57.294 41.549L-57.243 41.549Q-57.215 41.549-57.191 41.573Q-57.167 41.597-57.167 41.625L-57.167 42.472Q-57.167 42.493-57.191 42.520Q-57.215 42.547-57.243 42.547L-57.355 42.547Q-57.383 42.547-57.408 42.522Q-57.434 42.496-57.434 42.472Q-57.434 42.236-57.540 42.072Q-57.646 41.908-57.829 41.826Q-58.012 41.744-58.244 41.744Q-58.572 41.744-58.828 41.847Q-59.085 41.949-59.085 42.226Q-59.085 42.421-58.902 42.530Q-58.719 42.640-58.490 42.681L-57.916 42.787Q-57.670 42.835-57.456 42.963Q-57.243 43.091-57.106 43.294Q-56.969 43.498-56.969 43.747Q-56.969 44.260-57.335 44.499Q-57.701 44.738-58.237 44.738Q-58.733 44.738-59.064 44.444L-59.331 44.718Q-59.351 44.738-59.379 44.738L-59.427 44.738Q-59.451 44.738-59.478 44.711Q-59.505 44.684-59.505 44.663M-54.724 44.670L-56.275 44.670L-56.275 44.390Q-56.050 44.390-55.901 44.356Q-55.752 44.321-55.752 44.181L-55.752 42.332Q-55.752 42.144-55.800 42.060Q-55.848 41.977-55.945 41.958Q-56.043 41.939-56.255 41.939L-56.255 41.659L-55.199 41.584L-55.199 44.181Q-55.199 44.321-55.067 44.356Q-54.935 44.390-54.724 44.390L-54.724 44.670M-55.995 40.363Q-55.995 40.192-55.872 40.073Q-55.749 39.953-55.578 39.953Q-55.411 39.953-55.287 40.073Q-55.164 40.192-55.164 40.363Q-55.164 40.538-55.287 40.661Q-55.411 40.784-55.578 40.784Q-55.749 40.784-55.872 40.661Q-55.995 40.538-55.995 40.363M-52.396 44.670L-54.030 44.670L-54.030 44.390Q-53.801 44.390-53.652 44.356Q-53.503 44.321-53.503 44.181L-53.503 42.332Q-53.503 42.062-53.611 42.001Q-53.719 41.939-54.030 41.939L-54.030 41.659L-52.970 41.584L-52.970 42.233Q-52.799 41.925-52.495 41.754Q-52.191 41.584-51.846 41.584Q-51.340 41.584-51.056 41.807Q-50.772 42.031-50.772 42.527L-50.772 44.181Q-50.772 44.318-50.624 44.354Q-50.475 44.390-50.249 44.390L-50.249 44.670L-51.880 44.670L-51.880 44.390Q-51.651 44.390-51.502 44.356Q-51.353 44.321-51.353 44.181L-51.353 42.541Q-51.353 42.206-51.473 42.006Q-51.593 41.806-51.907 41.806Q-52.177 41.806-52.411 41.942Q-52.645 42.079-52.784 42.313Q-52.922 42.547-52.922 42.821L-52.922 44.181Q-52.922 44.318-52.772 44.354Q-52.621 44.390-52.396 44.390L-52.396 44.670M-49.703 45.203Q-49.703 44.957-49.506 44.773Q-49.309 44.588-49.053 44.509Q-49.190 44.397-49.262 44.236Q-49.333 44.075-49.333 43.894Q-49.333 43.573-49.121 43.327Q-49.456 43.029-49.456 42.619Q-49.456 42.158-49.067 41.871Q-48.677 41.584-48.199 41.584Q-47.727 41.584-47.392 41.830Q-47.218 41.676-47.007 41.594Q-46.797 41.512-46.568 41.512Q-46.404 41.512-46.283 41.619Q-46.161 41.727-46.161 41.891Q-46.161 41.987-46.233 42.059Q-46.305 42.130-46.397 42.130Q-46.496 42.130-46.567 42.057Q-46.637 41.983-46.637 41.884Q-46.637 41.830-46.623 41.799L-46.616 41.785Q-46.609 41.765-46.601 41.754Q-46.592 41.744-46.589 41.737Q-46.944 41.737-47.231 41.960Q-46.944 42.253-46.944 42.619Q-46.944 42.934-47.129 43.166Q-47.313 43.399-47.602 43.527Q-47.891 43.655-48.199 43.655Q-48.400 43.655-48.592 43.605Q-48.783 43.556-48.961 43.446Q-49.053 43.573-49.053 43.716Q-49.053 43.898-48.925 44.033Q-48.797 44.168-48.612 44.168L-47.980 44.168Q-47.532 44.168-47.163 44.239Q-46.794 44.311-46.534 44.540Q-46.274 44.769-46.274 45.203Q-46.274 45.524-46.570 45.726Q-46.866 45.928-47.269 46.017Q-47.672 46.106-47.987 46.106Q-48.305 46.106-48.708 46.017Q-49.111 45.928-49.407 45.726Q-49.703 45.524-49.703 45.203M-49.248 45.203Q-49.248 45.432-49.029 45.581Q-48.810 45.730-48.518 45.798Q-48.226 45.866-47.987 45.866Q-47.823 45.866-47.614 45.830Q-47.406 45.795-47.199 45.714Q-46.992 45.634-46.860 45.506Q-46.729 45.378-46.729 45.203Q-46.729 44.851-47.110 44.757Q-47.491 44.663-47.994 44.663L-48.612 44.663Q-48.851 44.663-49.050 44.814Q-49.248 44.964-49.248 45.203M-48.199 43.416Q-47.532 43.416-47.532 42.619Q-47.532 41.819-48.199 41.819Q-48.869 41.819-48.869 42.619Q-48.869 43.416-48.199 43.416\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(237.359 -108.746)\">\u003Cpath d=\"M-43.012 43.135Q-43.012 42.814-42.887 42.525Q-42.762 42.236-42.536 42.013Q-42.311 41.789-42.015 41.669Q-41.720 41.549-41.402 41.549Q-41.074 41.549-40.812 41.649Q-40.551 41.748-40.375 41.930Q-40.199 42.113-40.105 42.371Q-40.011 42.629-40.011 42.961Q-40.011 43.053-40.093 43.074L-42.348 43.074L-42.348 43.135Q-42.348 43.723-42.065 44.106Q-41.781 44.489-41.214 44.489Q-40.892 44.489-40.624 44.296Q-40.356 44.103-40.267 43.788Q-40.260 43.747-40.185 43.733L-40.093 43.733Q-40.011 43.757-40.011 43.829Q-40.011 43.836-40.017 43.863Q-40.130 44.260-40.501 44.499Q-40.872 44.738-41.296 44.738Q-41.733 44.738-42.133 44.530Q-42.533 44.321-42.772 43.954Q-43.012 43.587-43.012 43.135M-42.342 42.865L-40.527 42.865Q-40.527 42.588-40.624 42.336Q-40.722 42.083-40.920 41.927Q-41.118 41.772-41.402 41.772Q-41.679 41.772-41.892 41.930Q-42.106 42.089-42.224 42.344Q-42.342 42.599-42.342 42.865M-39.423 43.159Q-39.423 42.821-39.283 42.530Q-39.142 42.240-38.898 42.026Q-38.654 41.813-38.349 41.698Q-38.045 41.584-37.721 41.584Q-37.451 41.584-37.187 41.683Q-36.924 41.782-36.733 41.960L-36.733 40.562Q-36.733 40.292-36.840 40.230Q-36.948 40.169-37.259 40.169L-37.259 39.888L-36.182 39.813L-36.182 43.997Q-36.182 44.185-36.128 44.268Q-36.073 44.352-35.972 44.371Q-35.871 44.390-35.656 44.390L-35.656 44.670L-36.764 44.738L-36.764 44.321Q-37.181 44.738-37.806 44.738Q-38.237 44.738-38.609 44.526Q-38.982 44.315-39.202 43.954Q-39.423 43.593-39.423 43.159M-37.748 44.516Q-37.539 44.516-37.353 44.444Q-37.167 44.373-37.013 44.236Q-36.859 44.099-36.764 43.921L-36.764 42.312Q-36.849 42.165-36.994 42.045Q-37.139 41.925-37.309 41.866Q-37.478 41.806-37.659 41.806Q-38.220 41.806-38.488 42.195Q-38.756 42.585-38.756 43.166Q-38.756 43.737-38.522 44.127Q-38.288 44.516-37.748 44.516M-35.048 45.203Q-35.048 44.957-34.851 44.773Q-34.655 44.588-34.398 44.509Q-34.535 44.397-34.607 44.236Q-34.679 44.075-34.679 43.894Q-34.679 43.573-34.467 43.327Q-34.802 43.029-34.802 42.619Q-34.802 42.158-34.412 41.871Q-34.022 41.584-33.544 41.584Q-33.072 41.584-32.737 41.830Q-32.563 41.676-32.353 41.594Q-32.142 41.512-31.913 41.512Q-31.749 41.512-31.628 41.619Q-31.507 41.727-31.507 41.891Q-31.507 41.987-31.578 42.059Q-31.650 42.130-31.743 42.130Q-31.842 42.130-31.912 42.057Q-31.982 41.983-31.982 41.884Q-31.982 41.830-31.968 41.799L-31.961 41.785Q-31.954 41.765-31.946 41.754Q-31.937 41.744-31.934 41.737Q-32.289 41.737-32.577 41.960Q-32.289 42.253-32.289 42.619Q-32.289 42.934-32.474 43.166Q-32.659 43.399-32.947 43.527Q-33.236 43.655-33.544 43.655Q-33.745 43.655-33.937 43.605Q-34.128 43.556-34.306 43.446Q-34.398 43.573-34.398 43.716Q-34.398 43.898-34.270 44.033Q-34.142 44.168-33.957 44.168L-33.325 44.168Q-32.877 44.168-32.508 44.239Q-32.139 44.311-31.879 44.540Q-31.619 44.769-31.619 45.203Q-31.619 45.524-31.915 45.726Q-32.211 45.928-32.614 46.017Q-33.017 46.106-33.332 46.106Q-33.650 46.106-34.053 46.017Q-34.456 45.928-34.752 45.726Q-35.048 45.524-35.048 45.203M-34.593 45.203Q-34.593 45.432-34.374 45.581Q-34.156 45.730-33.863 45.798Q-33.571 45.866-33.332 45.866Q-33.168 45.866-32.959 45.830Q-32.751 45.795-32.544 45.714Q-32.337 45.634-32.206 45.506Q-32.074 45.378-32.074 45.203Q-32.074 44.851-32.455 44.757Q-32.836 44.663-33.339 44.663L-33.957 44.663Q-34.197 44.663-34.395 44.814Q-34.593 44.964-34.593 45.203M-33.544 43.416Q-32.877 43.416-32.877 42.619Q-32.877 41.819-33.544 41.819Q-34.214 41.819-34.214 42.619Q-34.214 43.416-33.544 43.416M-31.066 43.135Q-31.066 42.814-30.941 42.525Q-30.816 42.236-30.591 42.013Q-30.365 41.789-30.069 41.669Q-29.774 41.549-29.456 41.549Q-29.128 41.549-28.866 41.649Q-28.605 41.748-28.429 41.930Q-28.253 42.113-28.159 42.371Q-28.065 42.629-28.065 42.961Q-28.065 43.053-28.147 43.074L-30.403 43.074L-30.403 43.135Q-30.403 43.723-30.119 44.106Q-29.835 44.489-29.268 44.489Q-28.947 44.489-28.678 44.296Q-28.410 44.103-28.321 43.788Q-28.314 43.747-28.239 43.733L-28.147 43.733Q-28.065 43.757-28.065 43.829Q-28.065 43.836-28.072 43.863Q-28.184 44.260-28.555 44.499Q-28.926 44.738-29.350 44.738Q-29.787 44.738-30.187 44.530Q-30.587 44.321-30.827 43.954Q-31.066 43.587-31.066 43.135M-30.396 42.865L-28.581 42.865Q-28.581 42.588-28.678 42.336Q-28.776 42.083-28.974 41.927Q-29.172 41.772-29.456 41.772Q-29.733 41.772-29.946 41.930Q-30.160 42.089-30.278 42.344Q-30.396 42.599-30.396 42.865\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-33.705-.854h45.524v-17.071h-45.524Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(44.785 -51.63)\">\u003Cpath d=\"M-62.510 44.670L-64.824 44.670L-64.824 44.390Q-64.102 44.390-64.102 44.181L-64.102 40.380Q-64.102 40.169-64.824 40.169L-64.824 39.888L-60.640 39.888L-60.428 41.525L-60.695 41.525Q-60.773 40.914-60.925 40.635Q-61.078 40.357-61.382 40.263Q-61.686 40.169-62.311 40.169L-63.046 40.169Q-63.234 40.169-63.323 40.203Q-63.412 40.237-63.412 40.380L-63.412 42.137L-62.858 42.137Q-62.489 42.137-62.305 42.083Q-62.120 42.028-62.041 41.855Q-61.963 41.683-61.963 41.317L-61.696 41.317L-61.696 43.234L-61.963 43.234Q-61.963 42.869-62.041 42.696Q-62.120 42.524-62.305 42.471Q-62.489 42.418-62.858 42.418L-63.412 42.418L-63.412 44.181Q-63.412 44.390-62.510 44.390\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(44.785 -51.63)\">\u003Cpath d=\"M-60.416 43.135Q-60.416 42.814-60.291 42.525Q-60.166 42.236-59.940 42.013Q-59.715 41.789-59.419 41.669Q-59.124 41.549-58.806 41.549Q-58.478 41.549-58.216 41.649Q-57.955 41.748-57.779 41.930Q-57.603 42.113-57.509 42.371Q-57.415 42.629-57.415 42.961Q-57.415 43.053-57.497 43.074L-59.752 43.074L-59.752 43.135Q-59.752 43.723-59.469 44.106Q-59.185 44.489-58.618 44.489Q-58.296 44.489-58.028 44.296Q-57.760 44.103-57.671 43.788Q-57.664 43.747-57.589 43.733L-57.497 43.733Q-57.415 43.757-57.415 43.829Q-57.415 43.836-57.421 43.863Q-57.534 44.260-57.905 44.499Q-58.276 44.738-58.700 44.738Q-59.137 44.738-59.537 44.530Q-59.937 44.321-60.176 43.954Q-60.416 43.587-60.416 43.135M-59.746 42.865L-57.931 42.865Q-57.931 42.588-58.028 42.336Q-58.126 42.083-58.324 41.927Q-58.522 41.772-58.806 41.772Q-59.083 41.772-59.296 41.930Q-59.510 42.089-59.628 42.344Q-59.746 42.599-59.746 42.865M-56.300 43.829L-56.300 41.932L-56.939 41.932L-56.939 41.710Q-56.622 41.710-56.405 41.500Q-56.188 41.290-56.087 40.980Q-55.986 40.671-55.986 40.363L-55.719 40.363L-55.719 41.652L-54.643 41.652L-54.643 41.932L-55.719 41.932L-55.719 43.816Q-55.719 44.092-55.615 44.291Q-55.511 44.489-55.251 44.489Q-55.094 44.489-54.988 44.385Q-54.882 44.280-54.832 44.127Q-54.783 43.973-54.783 43.816L-54.783 43.402L-54.516 43.402L-54.516 43.829Q-54.516 44.055-54.615 44.265Q-54.714 44.475-54.899 44.607Q-55.084 44.738-55.313 44.738Q-55.750 44.738-56.025 44.501Q-56.300 44.263-56.300 43.829M-53.706 43.159Q-53.706 42.831-53.571 42.530Q-53.436 42.230-53.200 42.009Q-52.964 41.789-52.660 41.669Q-52.356 41.549-52.031 41.549Q-51.525 41.549-51.177 41.652Q-50.828 41.754-50.828 42.130Q-50.828 42.277-50.926 42.378Q-51.023 42.479-51.170 42.479Q-51.324 42.479-51.423 42.380Q-51.522 42.281-51.522 42.130Q-51.522 41.942-51.382 41.850Q-51.584 41.799-52.024 41.799Q-52.380 41.799-52.609 41.995Q-52.838 42.192-52.939 42.501Q-53.040 42.811-53.040 43.159Q-53.040 43.508-52.913 43.814Q-52.787 44.120-52.532 44.304Q-52.277 44.489-51.922 44.489Q-51.700 44.489-51.515 44.405Q-51.331 44.321-51.196 44.166Q-51.061 44.010-51.002 43.802Q-50.989 43.747-50.934 43.747L-50.821 43.747Q-50.791 43.747-50.768 43.771Q-50.746 43.795-50.746 43.829L-50.746 43.850Q-50.832 44.137-51.020 44.335Q-51.208 44.533-51.472 44.636Q-51.737 44.738-52.031 44.738Q-52.462 44.738-52.850 44.532Q-53.238 44.325-53.472 43.962Q-53.706 43.600-53.706 43.159\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(44.785 -51.63)\">\u003Cpath d=\"M-48.673 44.670L-50.307 44.670L-50.307 44.390Q-50.078 44.390-49.929 44.356Q-49.780 44.321-49.780 44.181L-49.780 40.562Q-49.780 40.292-49.888 40.230Q-49.996 40.169-50.307 40.169L-50.307 39.888L-49.227 39.813L-49.227 42.199Q-49.121 42.014-48.943 41.872Q-48.765 41.731-48.557 41.657Q-48.348 41.584-48.123 41.584Q-47.617 41.584-47.333 41.807Q-47.049 42.031-47.049 42.527L-47.049 44.181Q-47.049 44.318-46.901 44.354Q-46.752 44.390-46.526 44.390L-46.526 44.670L-48.157 44.670L-48.157 44.390Q-47.928 44.390-47.779 44.356Q-47.630 44.321-47.630 44.181L-47.630 42.541Q-47.630 42.206-47.750 42.006Q-47.870 41.806-48.184 41.806Q-48.454 41.806-48.688 41.942Q-48.922 42.079-49.061 42.313Q-49.199 42.547-49.199 42.821L-49.199 44.181Q-49.199 44.318-49.049 44.354Q-48.898 44.390-48.673 44.390\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M14.664-.854h36.989v-17.071H14.664Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(85.71 -51.63)\">\u003Cpath d=\"M-62.038 44.670L-64.810 44.670L-64.810 44.390Q-64.089 44.390-64.089 44.181L-64.089 40.380Q-64.089 40.169-64.810 40.169L-64.810 39.888L-62.038 39.888Q-61.553 39.888-61.117 40.083Q-60.681 40.278-60.358 40.620Q-60.035 40.962-59.857 41.402Q-59.680 41.843-59.680 42.325Q-59.680 42.811-59.864 43.234Q-60.049 43.658-60.372 43.980Q-60.695 44.301-61.127 44.485Q-61.559 44.670-62.038 44.670M-63.426 40.380L-63.426 44.181Q-63.426 44.321-63.337 44.356Q-63.248 44.390-63.060 44.390L-62.236 44.390Q-61.611 44.390-61.207 44.128Q-60.804 43.867-60.616 43.400Q-60.428 42.934-60.428 42.325Q-60.428 41.847-60.520 41.454Q-60.613 41.061-60.862 40.763Q-61.101 40.476-61.465 40.322Q-61.829 40.169-62.236 40.169L-63.060 40.169Q-63.248 40.169-63.337 40.203Q-63.426 40.237-63.426 40.380M-58.911 43.135Q-58.911 42.814-58.786 42.525Q-58.661 42.236-58.435 42.013Q-58.210 41.789-57.914 41.669Q-57.619 41.549-57.301 41.549Q-56.973 41.549-56.711 41.649Q-56.450 41.748-56.274 41.930Q-56.098 42.113-56.004 42.371Q-55.910 42.629-55.910 42.961Q-55.910 43.053-55.992 43.074L-58.247 43.074L-58.247 43.135Q-58.247 43.723-57.964 44.106Q-57.680 44.489-57.113 44.489Q-56.791 44.489-56.523 44.296Q-56.255 44.103-56.166 43.788Q-56.159 43.747-56.084 43.733L-55.992 43.733Q-55.910 43.757-55.910 43.829Q-55.910 43.836-55.916 43.863Q-56.029 44.260-56.400 44.499Q-56.771 44.738-57.195 44.738Q-57.632 44.738-58.032 44.530Q-58.432 44.321-58.671 43.954Q-58.911 43.587-58.911 43.135M-58.241 42.865L-56.426 42.865Q-56.426 42.588-56.523 42.336Q-56.620 42.083-56.819 41.927Q-57.017 41.772-57.301 41.772Q-57.578 41.772-57.791 41.930Q-58.005 42.089-58.123 42.344Q-58.241 42.599-58.241 42.865M-55.322 43.159Q-55.322 42.831-55.187 42.530Q-55.052 42.230-54.816 42.009Q-54.580 41.789-54.276 41.669Q-53.972 41.549-53.647 41.549Q-53.141 41.549-52.792 41.652Q-52.444 41.754-52.444 42.130Q-52.444 42.277-52.541 42.378Q-52.639 42.479-52.786 42.479Q-52.939 42.479-53.038 42.380Q-53.138 42.281-53.138 42.130Q-53.138 41.942-52.997 41.850Q-53.199 41.799-53.640 41.799Q-53.995 41.799-54.224 41.995Q-54.453 42.192-54.554 42.501Q-54.655 42.811-54.655 43.159Q-54.655 43.508-54.529 43.814Q-54.402 44.120-54.148 44.304Q-53.893 44.489-53.537 44.489Q-53.315 44.489-53.131 44.405Q-52.946 44.321-52.811 44.166Q-52.676 44.010-52.618 43.802Q-52.604 43.747-52.550 43.747L-52.437 43.747Q-52.406 43.747-52.384 43.771Q-52.362 43.795-52.362 43.829L-52.362 43.850Q-52.447 44.137-52.635 44.335Q-52.823 44.533-53.088 44.636Q-53.353 44.738-53.647 44.738Q-54.078 44.738-54.465 44.532Q-54.853 44.325-55.088 43.962Q-55.322 43.600-55.322 43.159M-51.815 43.187Q-51.815 42.845-51.680 42.546Q-51.545 42.247-51.306 42.023Q-51.066 41.799-50.748 41.674Q-50.431 41.549-50.099 41.549Q-49.655 41.549-49.255 41.765Q-48.855 41.980-48.621 42.358Q-48.387 42.735-48.387 43.187Q-48.387 43.528-48.528 43.812Q-48.670 44.096-48.915 44.303Q-49.159 44.509-49.468 44.624Q-49.778 44.738-50.099 44.738Q-50.530 44.738-50.931 44.537Q-51.333 44.335-51.574 43.983Q-51.815 43.631-51.815 43.187M-50.099 44.489Q-49.497 44.489-49.274 44.111Q-49.050 43.733-49.050 43.101Q-49.050 42.489-49.284 42.130Q-49.518 41.772-50.099 41.772Q-51.152 41.772-51.152 43.101Q-51.152 43.733-50.926 44.111Q-50.701 44.489-50.099 44.489\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(85.71 -51.63)\">\u003Cpath d=\"M-47.556 43.159Q-47.556 42.821-47.415 42.530Q-47.275 42.240-47.031 42.026Q-46.787 41.813-46.482 41.698Q-46.178 41.584-45.853 41.584Q-45.583 41.584-45.320 41.683Q-45.057 41.782-44.866 41.960L-44.866 40.562Q-44.866 40.292-44.973 40.230Q-45.081 40.169-45.392 40.169L-45.392 39.888L-44.315 39.813L-44.315 43.997Q-44.315 44.185-44.261 44.268Q-44.206 44.352-44.105 44.371Q-44.004 44.390-43.789 44.390L-43.789 44.670L-44.896 44.738L-44.896 44.321Q-45.313 44.738-45.939 44.738Q-46.370 44.738-46.742 44.526Q-47.115 44.315-47.335 43.954Q-47.556 43.593-47.556 43.159M-45.881 44.516Q-45.672 44.516-45.486 44.444Q-45.300 44.373-45.146 44.236Q-44.992 44.099-44.896 43.921L-44.896 42.312Q-44.982 42.165-45.127 42.045Q-45.272 41.925-45.442 41.866Q-45.611 41.806-45.792 41.806Q-46.352 41.806-46.621 42.195Q-46.889 42.585-46.889 43.166Q-46.889 43.737-46.655 44.127Q-46.421 44.516-45.881 44.516M-43.181 43.135Q-43.181 42.814-43.056 42.525Q-42.931 42.236-42.705 42.013Q-42.480 41.789-42.184 41.669Q-41.889 41.549-41.571 41.549Q-41.243 41.549-40.981 41.649Q-40.720 41.748-40.544 41.930Q-40.368 42.113-40.274 42.371Q-40.180 42.629-40.180 42.961Q-40.180 43.053-40.262 43.074L-42.517 43.074L-42.517 43.135Q-42.517 43.723-42.234 44.106Q-41.950 44.489-41.383 44.489Q-41.061 44.489-40.793 44.296Q-40.525 44.103-40.436 43.788Q-40.429 43.747-40.354 43.733L-40.262 43.733Q-40.180 43.757-40.180 43.829Q-40.180 43.836-40.186 43.863Q-40.299 44.260-40.670 44.499Q-41.041 44.738-41.465 44.738Q-41.902 44.738-42.302 44.530Q-42.702 44.321-42.941 43.954Q-43.181 43.587-43.181 43.135M-42.511 42.865L-40.696 42.865Q-40.696 42.588-40.793 42.336Q-40.891 42.083-41.089 41.927Q-41.287 41.772-41.571 41.772Q-41.848 41.772-42.061 41.930Q-42.275 42.089-42.393 42.344Q-42.511 42.599-42.511 42.865\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M54.498-.854h42.68v-17.071h-42.68Z\"\u002F>\u003Cg transform=\"translate(127.149 -51.668)\">\u003Cpath d=\"M-60.421 44.670L-64.824 44.670L-64.824 44.390Q-64.102 44.390-64.102 44.181L-64.102 40.380Q-64.102 40.169-64.824 40.169L-64.824 39.888L-60.534 39.888L-60.326 41.525L-60.589 41.525Q-60.647 41.054-60.749 40.789Q-60.852 40.524-61.036 40.391Q-61.221 40.257-61.493 40.213Q-61.765 40.169-62.264 40.169L-63.046 40.169Q-63.234 40.169-63.323 40.203Q-63.412 40.237-63.412 40.380L-63.412 42.045L-62.838 42.045Q-62.448 42.045-62.265 41.994Q-62.082 41.942-62 41.770Q-61.918 41.597-61.918 41.225L-61.655 41.225L-61.655 43.146L-61.918 43.146Q-61.918 42.773-62 42.600Q-62.082 42.428-62.265 42.377Q-62.448 42.325-62.838 42.325L-63.412 42.325L-63.412 44.181Q-63.412 44.321-63.323 44.356Q-63.234 44.390-63.046 44.390L-62.199 44.390Q-61.669 44.390-61.359 44.321Q-61.050 44.253-60.862 44.086Q-60.674 43.918-60.567 43.616Q-60.459 43.313-60.373 42.800L-60.107 42.800L-60.421 44.670M-58.336 44.670L-59.659 44.670L-59.659 44.390Q-59.099 44.390-58.719 43.990L-58.005 43.193L-58.917 42.144Q-59.054 41.997-59.203 41.965Q-59.351 41.932-59.618 41.932L-59.618 41.652L-58.118 41.652L-58.118 41.932Q-58.309 41.932-58.309 42.066Q-58.309 42.096-58.278 42.144L-57.683 42.828L-57.243 42.332Q-57.130 42.202-57.130 42.086Q-57.130 42.024-57.167 41.978Q-57.205 41.932-57.263 41.932L-57.263 41.652L-55.947 41.652L-55.947 41.932Q-56.508 41.932-56.887 42.332L-57.509 43.033L-56.515 44.181Q-56.415 44.280-56.315 44.325Q-56.214 44.369-56.103 44.379Q-55.992 44.390-55.814 44.390L-55.814 44.670L-57.307 44.670L-57.307 44.390Q-57.243 44.390-57.183 44.356Q-57.123 44.321-57.123 44.256Q-57.123 44.209-57.154 44.181L-57.830 43.395L-58.364 43.990Q-58.476 44.120-58.476 44.236Q-58.476 44.301-58.435 44.345Q-58.394 44.390-58.336 44.390L-58.336 44.670M-55.359 43.135Q-55.359 42.814-55.234 42.525Q-55.110 42.236-54.884 42.013Q-54.659 41.789-54.363 41.669Q-54.067 41.549-53.749 41.549Q-53.421 41.549-53.160 41.649Q-52.898 41.748-52.722 41.930Q-52.546 42.113-52.452 42.371Q-52.358 42.629-52.358 42.961Q-52.358 43.053-52.440 43.074L-54.696 43.074L-54.696 43.135Q-54.696 43.723-54.412 44.106Q-54.129 44.489-53.561 44.489Q-53.240 44.489-52.972 44.296Q-52.703 44.103-52.615 43.788Q-52.608 43.747-52.533 43.733L-52.440 43.733Q-52.358 43.757-52.358 43.829Q-52.358 43.836-52.365 43.863Q-52.478 44.260-52.849 44.499Q-53.220 44.738-53.643 44.738Q-54.081 44.738-54.481 44.530Q-54.881 44.321-55.120 43.954Q-55.359 43.587-55.359 43.135M-54.689 42.865L-52.874 42.865Q-52.874 42.588-52.972 42.336Q-53.069 42.083-53.267 41.927Q-53.466 41.772-53.749 41.772Q-54.026 41.772-54.240 41.930Q-54.453 42.089-54.571 42.344Q-54.689 42.599-54.689 42.865M-51.770 43.159Q-51.770 42.831-51.635 42.530Q-51.500 42.230-51.265 42.009Q-51.029 41.789-50.724 41.669Q-50.420 41.549-50.096 41.549Q-49.590 41.549-49.241 41.652Q-48.892 41.754-48.892 42.130Q-48.892 42.277-48.990 42.378Q-49.087 42.479-49.234 42.479Q-49.388 42.479-49.487 42.380Q-49.586 42.281-49.586 42.130Q-49.586 41.942-49.446 41.850Q-49.648 41.799-50.089 41.799Q-50.444 41.799-50.673 41.995Q-50.902 42.192-51.003 42.501Q-51.104 42.811-51.104 43.159Q-51.104 43.508-50.977 43.814Q-50.851 44.120-50.596 44.304Q-50.342 44.489-49.986 44.489Q-49.764 44.489-49.579 44.405Q-49.395 44.321-49.260 44.166Q-49.125 44.010-49.067 43.802Q-49.053 43.747-48.998 43.747L-48.886 43.747Q-48.855 43.747-48.833 43.771Q-48.810 43.795-48.810 43.829L-48.810 43.850Q-48.896 44.137-49.084 44.335Q-49.272 44.533-49.537 44.636Q-49.802 44.738-50.096 44.738Q-50.526 44.738-50.914 44.532Q-51.302 44.325-51.536 43.962Q-51.770 43.600-51.770 43.159M-47.648 43.836L-47.648 42.332Q-47.648 42.062-47.756 42.001Q-47.864 41.939-48.175 41.939L-48.175 41.659L-47.067 41.584L-47.067 43.816L-47.067 43.836Q-47.067 44.116-47.016 44.260Q-46.965 44.403-46.823 44.460Q-46.681 44.516-46.394 44.516Q-46.141 44.516-45.936 44.376Q-45.731 44.236-45.615 44.010Q-45.498 43.785-45.498 43.535L-45.498 42.332Q-45.498 42.062-45.606 42.001Q-45.714 41.939-46.025 41.939L-46.025 41.659L-44.917 41.584L-44.917 43.997Q-44.917 44.188-44.864 44.270Q-44.811 44.352-44.711 44.371Q-44.610 44.390-44.394 44.390L-44.394 44.670L-45.471 44.738L-45.471 44.174Q-45.580 44.356-45.726 44.479Q-45.871 44.602-46.057 44.670Q-46.244 44.738-46.445 44.738Q-47.648 44.738-47.648 43.836M-43.280 43.829L-43.280 41.932L-43.919 41.932L-43.919 41.710Q-43.601 41.710-43.384 41.500Q-43.167 41.290-43.067 40.980Q-42.966 40.671-42.966 40.363L-42.699 40.363L-42.699 41.652L-41.622 41.652L-41.622 41.932L-42.699 41.932L-42.699 43.816Q-42.699 44.092-42.595 44.291Q-42.491 44.489-42.231 44.489Q-42.074 44.489-41.968 44.385Q-41.862 44.280-41.812 44.127Q-41.763 43.973-41.763 43.816L-41.763 43.402L-41.496 43.402L-41.496 43.829Q-41.496 44.055-41.595 44.265Q-41.694 44.475-41.879 44.607Q-42.063 44.738-42.292 44.738Q-42.730 44.738-43.005 44.501Q-43.280 44.263-43.280 43.829M-40.727 43.135Q-40.727 42.814-40.602 42.525Q-40.477 42.236-40.252 42.013Q-40.026 41.789-39.731 41.669Q-39.435 41.549-39.117 41.549Q-38.789 41.549-38.527 41.649Q-38.266 41.748-38.090 41.930Q-37.914 42.113-37.820 42.371Q-37.726 42.629-37.726 42.961Q-37.726 43.053-37.808 43.074L-40.064 43.074L-40.064 43.135Q-40.064 43.723-39.780 44.106Q-39.496 44.489-38.929 44.489Q-38.608 44.489-38.339 44.296Q-38.071 44.103-37.982 43.788Q-37.975 43.747-37.900 43.733L-37.808 43.733Q-37.726 43.757-37.726 43.829Q-37.726 43.836-37.733 43.863Q-37.846 44.260-38.216 44.499Q-38.587 44.738-39.011 44.738Q-39.449 44.738-39.849 44.530Q-40.248 44.321-40.488 43.954Q-40.727 43.587-40.727 43.135M-40.057 42.865L-38.242 42.865Q-38.242 42.588-38.339 42.336Q-38.437 42.083-38.635 41.927Q-38.833 41.772-39.117 41.772Q-39.394 41.772-39.608 41.930Q-39.821 42.089-39.939 42.344Q-40.057 42.599-40.057 42.865\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M100.023-.854h48.37v-17.071h-48.37Z\"\u002F>\u003Cg transform=\"translate(175.095 -52.349)\">\u003Cpath d=\"M-63.046 44.670L-64.783 44.670L-64.783 44.390Q-64.061 44.390-64.061 43.990L-64.061 40.380Q-64.061 40.169-64.783 40.169L-64.783 39.888L-63.426 39.888Q-63.330 39.888-63.279 39.987L-61.604 43.962L-59.932 39.987Q-59.885 39.888-59.786 39.888L-58.435 39.888L-58.435 40.169Q-59.157 40.169-59.157 40.380L-59.157 44.181Q-59.157 44.390-58.435 44.390L-58.435 44.670L-60.493 44.670L-60.493 44.390Q-59.772 44.390-59.772 44.181L-59.772 40.169L-61.624 44.571Q-61.672 44.670-61.782 44.670Q-61.894 44.670-61.942 44.571L-63.767 40.240L-63.767 43.990Q-63.767 44.390-63.046 44.390L-63.046 44.670M-57.742 43.135Q-57.742 42.814-57.617 42.525Q-57.492 42.236-57.266 42.013Q-57.041 41.789-56.745 41.669Q-56.450 41.549-56.132 41.549Q-55.804 41.549-55.542 41.649Q-55.281 41.748-55.105 41.930Q-54.929 42.113-54.835 42.371Q-54.741 42.629-54.741 42.961Q-54.741 43.053-54.823 43.074L-57.078 43.074L-57.078 43.135Q-57.078 43.723-56.795 44.106Q-56.511 44.489-55.944 44.489Q-55.622 44.489-55.354 44.296Q-55.086 44.103-54.997 43.788Q-54.990 43.747-54.915 43.733L-54.823 43.733Q-54.741 43.757-54.741 43.829Q-54.741 43.836-54.747 43.863Q-54.860 44.260-55.231 44.499Q-55.602 44.738-56.026 44.738Q-56.463 44.738-56.863 44.530Q-57.263 44.321-57.502 43.954Q-57.742 43.587-57.742 43.135M-57.072 42.865L-55.257 42.865Q-55.257 42.588-55.354 42.336Q-55.452 42.083-55.650 41.927Q-55.848 41.772-56.132 41.772Q-56.409 41.772-56.622 41.930Q-56.836 42.089-56.954 42.344Q-57.072 42.599-57.072 42.865M-52.471 44.670L-54.105 44.670L-54.105 44.390Q-53.876 44.390-53.727 44.356Q-53.578 44.321-53.578 44.181L-53.578 42.332Q-53.578 42.062-53.686 42.001Q-53.794 41.939-54.105 41.939L-54.105 41.659L-53.045 41.584L-53.045 42.233Q-52.874 41.925-52.570 41.754Q-52.266 41.584-51.921 41.584Q-51.521 41.584-51.244 41.724Q-50.967 41.864-50.882 42.212Q-50.714 41.919-50.415 41.751Q-50.116 41.584-49.771 41.584Q-49.265 41.584-48.981 41.807Q-48.698 42.031-48.698 42.527L-48.698 44.181Q-48.698 44.318-48.549 44.354Q-48.400 44.390-48.175 44.390L-48.175 44.670L-49.805 44.670L-49.805 44.390Q-49.579 44.390-49.429 44.354Q-49.279 44.318-49.279 44.181L-49.279 42.541Q-49.279 42.206-49.398 42.006Q-49.518 41.806-49.832 41.806Q-50.102 41.806-50.337 41.942Q-50.571 42.079-50.709 42.313Q-50.848 42.547-50.848 42.821L-50.848 44.181Q-50.848 44.318-50.699 44.354Q-50.550 44.390-50.325 44.390L-50.325 44.670L-51.955 44.670L-51.955 44.390Q-51.726 44.390-51.577 44.356Q-51.429 44.321-51.429 44.181L-51.429 42.541Q-51.429 42.206-51.548 42.006Q-51.668 41.806-51.982 41.806Q-52.252 41.806-52.486 41.942Q-52.721 42.079-52.859 42.313Q-52.997 42.547-52.997 42.821L-52.997 44.181Q-52.997 44.318-52.847 44.354Q-52.697 44.390-52.471 44.390L-52.471 44.670M-47.628 43.187Q-47.628 42.845-47.493 42.546Q-47.358 42.247-47.119 42.023Q-46.879 41.799-46.561 41.674Q-46.244 41.549-45.912 41.549Q-45.468 41.549-45.068 41.765Q-44.668 41.980-44.434 42.358Q-44.200 42.735-44.200 43.187Q-44.200 43.528-44.341 43.812Q-44.483 44.096-44.728 44.303Q-44.972 44.509-45.281 44.624Q-45.591 44.738-45.912 44.738Q-46.343 44.738-46.744 44.537Q-47.146 44.335-47.387 43.983Q-47.628 43.631-47.628 43.187M-45.912 44.489Q-45.310 44.489-45.087 44.111Q-44.863 43.733-44.863 43.101Q-44.863 42.489-45.097 42.130Q-45.331 41.772-45.912 41.772Q-46.965 41.772-46.965 43.101Q-46.965 43.733-46.739 44.111Q-46.514 44.489-45.912 44.489M-41.855 44.670L-43.591 44.670L-43.591 44.390Q-43.362 44.390-43.213 44.356Q-43.065 44.321-43.065 44.181L-43.065 42.332Q-43.065 42.062-43.172 42.001Q-43.280 41.939-43.591 41.939L-43.591 41.659L-42.562 41.584L-42.562 42.291Q-42.432 41.983-42.190 41.784Q-41.947 41.584-41.629 41.584Q-41.411 41.584-41.240 41.708Q-41.069 41.833-41.069 42.045Q-41.069 42.182-41.168 42.281Q-41.267 42.380-41.400 42.380Q-41.537 42.380-41.636 42.281Q-41.735 42.182-41.735 42.045Q-41.735 41.905-41.636 41.806Q-41.927 41.806-42.127 42.002Q-42.327 42.199-42.419 42.493Q-42.511 42.787-42.511 43.067L-42.511 44.181Q-42.511 44.390-41.855 44.390L-41.855 44.670M-40.149 45.805Q-40.019 45.873-39.883 45.873Q-39.712 45.873-39.561 45.784Q-39.411 45.695-39.300 45.550Q-39.189 45.405-39.110 45.237L-38.847 44.670L-40.016 42.144Q-40.091 41.997-40.221 41.965Q-40.351 41.932-40.583 41.932L-40.583 41.652L-39.062 41.652L-39.062 41.932Q-39.411 41.932-39.411 42.079Q-39.408 42.100-39.406 42.117Q-39.404 42.134-39.404 42.144L-38.546 44.003L-37.774 42.332Q-37.740 42.264-37.740 42.185Q-37.740 42.072-37.823 42.002Q-37.907 41.932-38.020 41.932L-38.020 41.652L-36.824 41.652L-36.824 41.932Q-37.042 41.932-37.215 42.036Q-37.388 42.141-37.480 42.332L-38.816 45.237Q-38.987 45.607-39.257 45.853Q-39.527 46.099-39.883 46.099Q-40.153 46.099-40.371 45.933Q-40.590 45.767-40.590 45.504Q-40.590 45.367-40.498 45.278Q-40.406 45.190-40.266 45.190Q-40.129 45.190-40.040 45.278Q-39.951 45.367-39.951 45.504Q-39.951 45.607-40.004 45.685Q-40.057 45.764-40.149 45.805\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M151.238-.854h36.988v-17.071h-36.988Z\"\u002F>\u003Cg transform=\"translate(222.553 -51.668)\">\u003Cpath d=\"M-63.207 44.670L-64.841 44.670L-64.841 44.390Q-64.612 44.390-64.463 44.356Q-64.314 44.321-64.314 44.181L-64.314 42.332Q-64.314 42.062-64.422 42.001Q-64.530 41.939-64.841 41.939L-64.841 41.659L-63.781 41.584L-63.781 42.233Q-63.610 41.925-63.306 41.754Q-63.002 41.584-62.657 41.584Q-62.151 41.584-61.867 41.807Q-61.583 42.031-61.583 42.527L-61.583 44.181Q-61.583 44.318-61.435 44.354Q-61.286 44.390-61.060 44.390L-61.060 44.670L-62.691 44.670L-62.691 44.390Q-62.462 44.390-62.313 44.356Q-62.164 44.321-62.164 44.181L-62.164 42.541Q-62.164 42.206-62.284 42.006Q-62.404 41.806-62.718 41.806Q-62.988 41.806-63.222 41.942Q-63.456 42.079-63.595 42.313Q-63.733 42.547-63.733 42.821L-63.733 44.181Q-63.733 44.318-63.583 44.354Q-63.432 44.390-63.207 44.390L-63.207 44.670M-60.514 43.135Q-60.514 42.814-60.389 42.525Q-60.264 42.236-60.038 42.013Q-59.813 41.789-59.517 41.669Q-59.222 41.549-58.904 41.549Q-58.576 41.549-58.314 41.649Q-58.053 41.748-57.877 41.930Q-57.701 42.113-57.607 42.371Q-57.513 42.629-57.513 42.961Q-57.513 43.053-57.595 43.074L-59.850 43.074L-59.850 43.135Q-59.850 43.723-59.567 44.106Q-59.283 44.489-58.716 44.489Q-58.394 44.489-58.126 44.296Q-57.858 44.103-57.769 43.788Q-57.762 43.747-57.687 43.733L-57.595 43.733Q-57.513 43.757-57.513 43.829Q-57.513 43.836-57.519 43.863Q-57.632 44.260-58.003 44.499Q-58.374 44.738-58.798 44.738Q-59.235 44.738-59.635 44.530Q-60.035 44.321-60.274 43.954Q-60.514 43.587-60.514 43.135M-59.844 42.865L-58.029 42.865Q-58.029 42.588-58.126 42.336Q-58.224 42.083-58.422 41.927Q-58.620 41.772-58.904 41.772Q-59.181 41.772-59.394 41.930Q-59.608 42.089-59.726 42.344Q-59.844 42.599-59.844 42.865M-55.537 44.643L-56.518 42.144Q-56.579 42.001-56.697 41.966Q-56.815 41.932-57.031 41.932L-57.031 41.652L-55.551 41.652L-55.551 41.932Q-55.930 41.932-55.930 42.093Q-55.930 42.103-55.916 42.144L-55.202 43.976L-54.529 42.271Q-54.559 42.199-54.559 42.171Q-54.559 42.144-54.587 42.144Q-54.648 41.997-54.766 41.965Q-54.884 41.932-55.096 41.932L-55.096 41.652L-53.698 41.652L-53.698 41.932Q-54.074 41.932-54.074 42.093Q-54.074 42.124-54.067 42.144L-53.312 44.082L-52.625 42.332Q-52.604 42.281-52.604 42.226Q-52.604 42.086-52.717 42.009Q-52.830 41.932-52.970 41.932L-52.970 41.652L-51.750 41.652L-51.750 41.932Q-51.955 41.932-52.110 42.038Q-52.266 42.144-52.338 42.332L-53.244 44.643Q-53.278 44.738-53.391 44.738L-53.459 44.738Q-53.568 44.738-53.606 44.643L-54.389 42.640L-55.175 44.643Q-55.209 44.738-55.322 44.738L-55.390 44.738Q-55.499 44.738-55.537 44.643M-49.009 44.670L-51.141 44.670L-51.141 44.390Q-50.420 44.390-50.420 44.181L-50.420 40.380Q-50.420 40.169-51.141 40.169L-51.141 39.888L-48.475 39.888Q-48.065 39.888-47.645 40.042Q-47.224 40.196-46.941 40.500Q-46.657 40.804-46.657 41.218Q-46.657 41.536-46.825 41.782Q-46.992 42.028-47.269 42.194Q-47.546 42.359-47.867 42.443Q-48.188 42.527-48.475 42.527L-49.730 42.527L-49.730 44.181Q-49.730 44.390-49.009 44.390L-49.009 44.670M-49.757 40.380L-49.757 42.277L-48.670 42.277Q-48.062 42.277-47.747 42.040Q-47.433 41.802-47.433 41.218Q-47.433 40.825-47.578 40.591Q-47.724 40.357-47.995 40.263Q-48.267 40.169-48.670 40.169L-49.391 40.169Q-49.579 40.169-49.668 40.203Q-49.757 40.237-49.757 40.380M-45.676 42.277Q-45.676 41.751-45.459 41.283Q-45.242 40.815-44.859 40.469Q-44.476 40.124-43.993 39.936Q-43.509 39.748-42.979 39.748Q-42.576 39.748-42.212 39.905Q-41.848 40.063-41.564 40.357L-41.141 39.775Q-41.106 39.748-41.082 39.748L-41.035 39.748Q-41.004 39.748-40.980 39.772Q-40.956 39.796-40.956 39.827L-40.956 41.690Q-40.956 41.713-40.982 41.739Q-41.007 41.765-41.035 41.765L-41.161 41.765Q-41.223 41.765-41.236 41.690Q-41.267 41.375-41.402 41.071Q-41.537 40.767-41.752 40.533Q-41.968 40.298-42.256 40.163Q-42.545 40.028-42.873 40.028Q-43.516 40.028-43.974 40.322Q-44.432 40.616-44.664 41.129Q-44.897 41.642-44.897 42.277Q-44.897 42.749-44.767 43.158Q-44.637 43.566-44.377 43.879Q-44.118 44.191-43.738 44.361Q-43.359 44.530-42.867 44.530Q-42.538 44.530-42.245 44.414Q-41.951 44.297-41.716 44.082Q-41.482 43.867-41.352 43.578Q-41.223 43.289-41.223 42.961Q-41.223 42.934-41.195 42.910Q-41.168 42.886-41.147 42.886L-41.035 42.886Q-40.997 42.886-40.976 42.911Q-40.956 42.937-40.956 42.975Q-40.956 43.371-41.122 43.708Q-41.287 44.045-41.575 44.292Q-41.862 44.540-42.231 44.675Q-42.600 44.810-42.979 44.810Q-43.499 44.810-43.991 44.620Q-44.483 44.431-44.863 44.087Q-45.242 43.744-45.459 43.275Q-45.676 42.807-45.676 42.277\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(34.831 -29.548)\">\u003Cpath d=\"M-64.889 43.159Q-64.889 42.831-64.754 42.530Q-64.619 42.230-64.383 42.009Q-64.147 41.789-63.843 41.669Q-63.538 41.549-63.214 41.549Q-62.708 41.549-62.359 41.652Q-62.011 41.754-62.011 42.130Q-62.011 42.277-62.108 42.378Q-62.205 42.479-62.352 42.479Q-62.506 42.479-62.605 42.380Q-62.704 42.281-62.704 42.130Q-62.704 41.942-62.564 41.850Q-62.766 41.799-63.207 41.799Q-63.562 41.799-63.791 41.995Q-64.020 42.192-64.121 42.501Q-64.222 42.811-64.222 43.159Q-64.222 43.508-64.096 43.814Q-63.969 44.120-63.714 44.304Q-63.460 44.489-63.104 44.489Q-62.882 44.489-62.698 44.405Q-62.513 44.321-62.378 44.166Q-62.243 44.010-62.185 43.802Q-62.171 43.747-62.117 43.747L-62.004 43.747Q-61.973 43.747-61.951 43.771Q-61.929 43.795-61.929 43.829L-61.929 43.850Q-62.014 44.137-62.202 44.335Q-62.390 44.533-62.655 44.636Q-62.920 44.738-63.214 44.738Q-63.644 44.738-64.032 44.532Q-64.420 44.325-64.654 43.962Q-64.889 43.600-64.889 43.159M-61.382 43.187Q-61.382 42.845-61.247 42.546Q-61.112 42.247-60.872 42.023Q-60.633 41.799-60.315 41.674Q-59.997 41.549-59.666 41.549Q-59.222 41.549-58.822 41.765Q-58.422 41.980-58.188 42.358Q-57.953 42.735-57.953 43.187Q-57.953 43.528-58.095 43.812Q-58.237 44.096-58.482 44.303Q-58.726 44.509-59.035 44.624Q-59.345 44.738-59.666 44.738Q-60.097 44.738-60.498 44.537Q-60.900 44.335-61.141 43.983Q-61.382 43.631-61.382 43.187M-59.666 44.489Q-59.064 44.489-58.840 44.111Q-58.617 43.733-58.617 43.101Q-58.617 42.489-58.851 42.130Q-59.085 41.772-59.666 41.772Q-60.719 41.772-60.719 43.101Q-60.719 43.733-60.493 44.111Q-60.267 44.489-59.666 44.489M-55.677 44.670L-57.311 44.670L-57.311 44.390Q-57.082 44.390-56.933 44.356Q-56.785 44.321-56.785 44.181L-56.785 42.332Q-56.785 42.062-56.892 42.001Q-57 41.939-57.311 41.939L-57.311 41.659L-56.251 41.584L-56.251 42.233Q-56.080 41.925-55.776 41.754Q-55.472 41.584-55.127 41.584Q-54.727 41.584-54.450 41.724Q-54.173 41.864-54.088 42.212Q-53.920 41.919-53.621 41.751Q-53.322 41.584-52.977 41.584Q-52.471 41.584-52.187 41.807Q-51.904 42.031-51.904 42.527L-51.904 44.181Q-51.904 44.318-51.755 44.354Q-51.606 44.390-51.381 44.390L-51.381 44.670L-53.011 44.670L-53.011 44.390Q-52.786 44.390-52.635 44.354Q-52.485 44.318-52.485 44.181L-52.485 42.541Q-52.485 42.206-52.604 42.006Q-52.724 41.806-53.038 41.806Q-53.308 41.806-53.543 41.942Q-53.777 42.079-53.915 42.313Q-54.054 42.547-54.054 42.821L-54.054 44.181Q-54.054 44.318-53.905 44.354Q-53.756 44.390-53.531 44.390L-53.531 44.670L-55.161 44.670L-55.161 44.390Q-54.932 44.390-54.783 44.356Q-54.635 44.321-54.635 44.181L-54.635 42.541Q-54.635 42.206-54.754 42.006Q-54.874 41.806-55.188 41.806Q-55.458 41.806-55.693 41.942Q-55.927 42.079-56.065 42.313Q-56.203 42.547-56.203 42.821L-56.203 44.181Q-56.203 44.318-56.053 44.354Q-55.903 44.390-55.677 44.390\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(34.831 -29.548)\">\u003Cpath d=\"M-50.186 44.670L-50.453 44.670L-50.453 40.562Q-50.453 40.292-50.560 40.230Q-50.668 40.169-50.979 40.169L-50.979 39.888L-49.899 39.813L-49.899 41.983Q-49.690 41.792-49.405 41.688Q-49.120 41.584-48.822 41.584Q-48.504 41.584-48.207 41.705Q-47.910 41.826-47.687 42.042Q-47.465 42.257-47.339 42.542Q-47.212 42.828-47.212 43.159Q-47.212 43.604-47.452 43.968Q-47.691 44.332-48.084 44.535Q-48.477 44.738-48.921 44.738Q-49.116 44.738-49.306 44.682Q-49.495 44.626-49.656 44.521Q-49.817 44.417-49.957 44.256L-50.186 44.670M-49.871 42.325L-49.871 43.942Q-49.735 44.202-49.494 44.359Q-49.253 44.516-48.976 44.516Q-48.682 44.516-48.470 44.409Q-48.258 44.301-48.125 44.109Q-47.992 43.918-47.933 43.679Q-47.875 43.440-47.875 43.159Q-47.875 42.800-47.969 42.496Q-48.063 42.192-48.291 41.999Q-48.518 41.806-48.884 41.806Q-49.184 41.806-49.451 41.942Q-49.718 42.079-49.871 42.325M-44.960 44.670L-46.512 44.670L-46.512 44.390Q-46.286 44.390-46.137 44.356Q-45.989 44.321-45.989 44.181L-45.989 42.332Q-45.989 42.144-46.036 42.060Q-46.084 41.977-46.182 41.958Q-46.279 41.939-46.491 41.939L-46.491 41.659L-45.435 41.584L-45.435 44.181Q-45.435 44.321-45.303 44.356Q-45.172 44.390-44.960 44.390L-44.960 44.670M-46.231 40.363Q-46.231 40.192-46.108 40.073Q-45.985 39.953-45.814 39.953Q-45.647 39.953-45.524 40.073Q-45.401 40.192-45.401 40.363Q-45.401 40.538-45.524 40.661Q-45.647 40.784-45.814 40.784Q-45.985 40.784-46.108 40.661Q-46.231 40.538-46.231 40.363M-42.632 44.670L-44.266 44.670L-44.266 44.390Q-44.037 44.390-43.888 44.356Q-43.740 44.321-43.740 44.181L-43.740 42.332Q-43.740 42.062-43.847 42.001Q-43.955 41.939-44.266 41.939L-44.266 41.659L-43.206 41.584L-43.206 42.233Q-43.036 41.925-42.731 41.754Q-42.427 41.584-42.082 41.584Q-41.576 41.584-41.292 41.807Q-41.009 42.031-41.009 42.527L-41.009 44.181Q-41.009 44.318-40.860 44.354Q-40.711 44.390-40.486 44.390L-40.486 44.670L-42.116 44.670L-42.116 44.390Q-41.887 44.390-41.738 44.356Q-41.590 44.321-41.590 44.181L-41.590 42.541Q-41.590 42.206-41.709 42.006Q-41.829 41.806-42.143 41.806Q-42.413 41.806-42.648 41.942Q-42.882 42.079-43.020 42.313Q-43.159 42.547-43.159 42.821L-43.159 44.181Q-43.159 44.318-43.008 44.354Q-42.858 44.390-42.632 44.390L-42.632 44.670M-39.840 43.942Q-39.840 43.610-39.616 43.383Q-39.392 43.156-39.048 43.028Q-38.705 42.899-38.332 42.847Q-37.960 42.794-37.656 42.794L-37.656 42.541Q-37.656 42.336-37.763 42.156Q-37.871 41.977-38.052 41.874Q-38.233 41.772-38.442 41.772Q-38.849 41.772-39.084 41.864Q-38.995 41.901-38.949 41.985Q-38.903 42.069-38.903 42.171Q-38.903 42.267-38.949 42.346Q-38.995 42.424-39.076 42.469Q-39.156 42.513-39.245 42.513Q-39.395 42.513-39.496 42.416Q-39.597 42.318-39.597 42.171Q-39.597 41.549-38.442 41.549Q-38.230 41.549-37.980 41.613Q-37.731 41.676-37.529 41.795Q-37.328 41.915-37.201 42.100Q-37.075 42.284-37.075 42.527L-37.075 44.103Q-37.075 44.219-37.013 44.315Q-36.952 44.410-36.839 44.410Q-36.729 44.410-36.664 44.316Q-36.599 44.222-36.599 44.103L-36.599 43.655L-36.333 43.655L-36.333 44.103Q-36.333 44.373-36.560 44.538Q-36.787 44.704-37.068 44.704Q-37.276 44.704-37.413 44.550Q-37.550 44.397-37.574 44.181Q-37.721 44.448-38.003 44.593Q-38.285 44.738-38.609 44.738Q-38.886 44.738-39.170 44.663Q-39.453 44.588-39.647 44.409Q-39.840 44.229-39.840 43.942M-39.224 43.942Q-39.224 44.116-39.124 44.246Q-39.023 44.376-38.867 44.446Q-38.712 44.516-38.548 44.516Q-38.329 44.516-38.120 44.419Q-37.912 44.321-37.784 44.140Q-37.656 43.959-37.656 43.733L-37.656 43.005Q-37.980 43.005-38.346 43.096Q-38.712 43.187-38.968 43.399Q-39.224 43.610-39.224 43.942M-35.390 43.829L-35.390 41.932L-36.029 41.932L-36.029 41.710Q-35.711 41.710-35.494 41.500Q-35.277 41.290-35.176 40.980Q-35.075 40.671-35.075 40.363L-34.808 40.363L-34.808 41.652L-33.732 41.652L-33.732 41.932L-34.808 41.932L-34.808 43.816Q-34.808 44.092-34.704 44.291Q-34.600 44.489-34.340 44.489Q-34.183 44.489-34.077 44.385Q-33.971 44.280-33.922 44.127Q-33.872 43.973-33.872 43.816L-33.872 43.402L-33.605 43.402L-33.605 43.829Q-33.605 44.055-33.704 44.265Q-33.804 44.475-33.988 44.607Q-34.173 44.738-34.402 44.738Q-34.839 44.738-35.114 44.501Q-35.390 44.263-35.390 43.829M-31.179 44.670L-32.730 44.670L-32.730 44.390Q-32.505 44.390-32.356 44.356Q-32.207 44.321-32.207 44.181L-32.207 42.332Q-32.207 42.144-32.255 42.060Q-32.303 41.977-32.401 41.958Q-32.498 41.939-32.710 41.939L-32.710 41.659L-31.654 41.584L-31.654 44.181Q-31.654 44.321-31.522 44.356Q-31.390 44.390-31.179 44.390L-31.179 44.670M-32.450 40.363Q-32.450 40.192-32.327 40.073Q-32.204 39.953-32.033 39.953Q-31.866 39.953-31.743 40.073Q-31.620 40.192-31.620 40.363Q-31.620 40.538-31.743 40.661Q-31.866 40.784-32.033 40.784Q-32.204 40.784-32.327 40.661Q-32.450 40.538-32.450 40.363M-30.574 43.187Q-30.574 42.845-30.439 42.546Q-30.304 42.247-30.064 42.023Q-29.825 41.799-29.507 41.674Q-29.189 41.549-28.858 41.549Q-28.413 41.549-28.014 41.765Q-27.614 41.980-27.380 42.358Q-27.145 42.735-27.145 43.187Q-27.145 43.528-27.287 43.812Q-27.429 44.096-27.673 44.303Q-27.918 44.509-28.227 44.624Q-28.536 44.738-28.858 44.738Q-29.288 44.738-29.690 44.537Q-30.092 44.335-30.333 43.983Q-30.574 43.631-30.574 43.187M-28.858 44.489Q-28.256 44.489-28.032 44.111Q-27.808 43.733-27.808 43.101Q-27.808 42.489-28.043 42.130Q-28.277 41.772-28.858 41.772Q-29.911 41.772-29.911 43.101Q-29.911 43.733-29.685 44.111Q-29.459 44.489-28.858 44.489M-24.869 44.670L-26.503 44.670L-26.503 44.390Q-26.274 44.390-26.125 44.356Q-25.976 44.321-25.976 44.181L-25.976 42.332Q-25.976 42.062-26.084 42.001Q-26.192 41.939-26.503 41.939L-26.503 41.659L-25.443 41.584L-25.443 42.233Q-25.272 41.925-24.968 41.754Q-24.664 41.584-24.319 41.584Q-23.813 41.584-23.529 41.807Q-23.245 42.031-23.245 42.527L-23.245 44.181Q-23.245 44.318-23.097 44.354Q-22.948 44.390-22.723 44.390L-22.723 44.670L-24.353 44.670L-24.353 44.390Q-24.124 44.390-23.975 44.356Q-23.827 44.321-23.827 44.181L-23.827 42.541Q-23.827 42.206-23.946 42.006Q-24.066 41.806-24.380 41.806Q-24.650 41.806-24.884 41.942Q-25.119 42.079-25.257 42.313Q-25.395 42.547-25.395 42.821L-25.395 44.181Q-25.395 44.318-25.245 44.354Q-25.095 44.390-24.869 44.390L-24.869 44.670M-22.077 43.942Q-22.077 43.610-21.853 43.383Q-21.629 43.156-21.285 43.028Q-20.942 42.899-20.569 42.847Q-20.197 42.794-19.892 42.794L-19.892 42.541Q-19.892 42.336-20 42.156Q-20.108 41.977-20.289 41.874Q-20.470 41.772-20.679 41.772Q-21.085 41.772-21.321 41.864Q-21.232 41.901-21.186 41.985Q-21.140 42.069-21.140 42.171Q-21.140 42.267-21.186 42.346Q-21.232 42.424-21.313 42.469Q-21.393 42.513-21.482 42.513Q-21.632 42.513-21.733 42.416Q-21.834 42.318-21.834 42.171Q-21.834 41.549-20.679 41.549Q-20.467 41.549-20.217 41.613Q-19.968 41.676-19.766 41.795Q-19.564 41.915-19.438 42.100Q-19.311 42.284-19.311 42.527L-19.311 44.103Q-19.311 44.219-19.250 44.315Q-19.188 44.410-19.076 44.410Q-18.966 44.410-18.901 44.316Q-18.836 44.222-18.836 44.103L-18.836 43.655L-18.570 43.655L-18.570 44.103Q-18.570 44.373-18.797 44.538Q-19.024 44.704-19.305 44.704Q-19.513 44.704-19.650 44.550Q-19.786 44.397-19.810 44.181Q-19.957 44.448-20.239 44.593Q-20.521 44.738-20.846 44.738Q-21.123 44.738-21.407 44.663Q-21.690 44.588-21.883 44.409Q-22.077 44.229-22.077 43.942M-21.461 43.942Q-21.461 44.116-21.360 44.246Q-21.260 44.376-21.104 44.446Q-20.949 44.516-20.785 44.516Q-20.566 44.516-20.357 44.419Q-20.149 44.321-20.021 44.140Q-19.892 43.959-19.892 43.733L-19.892 43.005Q-20.217 43.005-20.583 43.096Q-20.949 43.187-21.205 43.399Q-21.461 43.610-21.461 43.942M-16.485 44.670L-18.088 44.670L-18.088 44.390Q-17.862 44.390-17.713 44.356Q-17.565 44.321-17.565 44.181L-17.565 40.562Q-17.565 40.292-17.672 40.230Q-17.780 40.169-18.088 40.169L-18.088 39.888L-17.011 39.813L-17.011 44.181Q-17.011 44.318-16.861 44.354Q-16.710 44.390-16.485 44.390\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(34.831 -29.548)\">\u003Cpath d=\"M-11.506 44.670L-13.109 44.670L-13.109 44.390Q-12.883 44.390-12.734 44.356Q-12.586 44.321-12.586 44.181L-12.586 40.562Q-12.586 40.292-12.693 40.230Q-12.801 40.169-13.109 40.169L-13.109 39.888L-12.032 39.813L-12.032 44.181Q-12.032 44.318-11.882 44.354Q-11.731 44.390-11.506 44.390L-11.506 44.670M-10.952 43.187Q-10.952 42.845-10.817 42.546Q-10.682 42.247-10.443 42.023Q-10.203 41.799-9.885 41.674Q-9.568 41.549-9.236 41.549Q-8.792 41.549-8.392 41.765Q-7.992 41.980-7.758 42.358Q-7.524 42.735-7.524 43.187Q-7.524 43.528-7.665 43.812Q-7.807 44.096-8.052 44.303Q-8.296 44.509-8.605 44.624Q-8.915 44.738-9.236 44.738Q-9.667 44.738-10.068 44.537Q-10.470 44.335-10.711 43.983Q-10.952 43.631-10.952 43.187M-9.236 44.489Q-8.634 44.489-8.411 44.111Q-8.187 43.733-8.187 43.101Q-8.187 42.489-8.421 42.130Q-8.655 41.772-9.236 41.772Q-10.289 41.772-10.289 43.101Q-10.289 43.733-10.063 44.111Q-9.838 44.489-9.236 44.489M-6.970 45.203Q-6.970 44.957-6.773 44.773Q-6.577 44.588-6.321 44.509Q-6.457 44.397-6.529 44.236Q-6.601 44.075-6.601 43.894Q-6.601 43.573-6.389 43.327Q-6.724 43.029-6.724 42.619Q-6.724 42.158-6.334 41.871Q-5.945 41.584-5.466 41.584Q-4.994 41.584-4.659 41.830Q-4.485 41.676-4.275 41.594Q-4.065 41.512-3.836 41.512Q-3.672 41.512-3.550 41.619Q-3.429 41.727-3.429 41.891Q-3.429 41.987-3.501 42.059Q-3.572 42.130-3.665 42.130Q-3.764 42.130-3.834 42.057Q-3.904 41.983-3.904 41.884Q-3.904 41.830-3.890 41.799L-3.884 41.785Q-3.877 41.765-3.868 41.754Q-3.860 41.744-3.856 41.737Q-4.212 41.737-4.499 41.960Q-4.212 42.253-4.212 42.619Q-4.212 42.934-4.396 43.166Q-4.581 43.399-4.870 43.527Q-5.158 43.655-5.466 43.655Q-5.668 43.655-5.859 43.605Q-6.050 43.556-6.228 43.446Q-6.321 43.573-6.321 43.716Q-6.321 43.898-6.192 44.033Q-6.064 44.168-5.880 44.168L-5.247 44.168Q-4.800 44.168-4.430 44.239Q-4.061 44.311-3.801 44.540Q-3.542 44.769-3.542 45.203Q-3.542 45.524-3.837 45.726Q-4.133 45.928-4.536 46.017Q-4.940 46.106-5.254 46.106Q-5.572 46.106-5.975 46.017Q-6.379 45.928-6.674 45.726Q-6.970 45.524-6.970 45.203M-6.515 45.203Q-6.515 45.432-6.297 45.581Q-6.078 45.730-5.786 45.798Q-5.493 45.866-5.254 45.866Q-5.090 45.866-4.882 45.830Q-4.673 45.795-4.466 45.714Q-4.259 45.634-4.128 45.506Q-3.996 45.378-3.996 45.203Q-3.996 44.851-4.377 44.757Q-4.759 44.663-5.261 44.663L-5.880 44.663Q-6.119 44.663-6.317 44.814Q-6.515 44.964-6.515 45.203M-5.466 43.416Q-4.800 43.416-4.800 42.619Q-4.800 41.819-5.466 41.819Q-6.136 41.819-6.136 42.619Q-6.136 43.416-5.466 43.416M-1.330 44.670L-2.882 44.670L-2.882 44.390Q-2.656 44.390-2.508 44.356Q-2.359 44.321-2.359 44.181L-2.359 42.332Q-2.359 42.144-2.407 42.060Q-2.455 41.977-2.552 41.958Q-2.650 41.939-2.862 41.939L-2.862 41.659L-1.805 41.584L-1.805 44.181Q-1.805 44.321-1.674 44.356Q-1.542 44.390-1.330 44.390L-1.330 44.670M-2.602 40.363Q-2.602 40.192-2.479 40.073Q-2.356 39.953-2.185 39.953Q-2.017 39.953-1.894 40.073Q-1.771 40.192-1.771 40.363Q-1.771 40.538-1.894 40.661Q-2.017 40.784-2.185 40.784Q-2.356 40.784-2.479 40.661Q-2.602 40.538-2.602 40.363M-0.684 43.159Q-0.684 42.831-0.549 42.530Q-0.414 42.230-0.178 42.009Q0.057 41.789 0.362 41.669Q0.666 41.549 0.991 41.549Q1.496 41.549 1.845 41.652Q2.194 41.754 2.194 42.130Q2.194 42.277 2.096 42.378Q1.999 42.479 1.852 42.479Q1.698 42.479 1.599 42.380Q1.500 42.281 1.500 42.130Q1.500 41.942 1.640 41.850Q1.438 41.799 0.997 41.799Q0.642 41.799 0.413 41.995Q0.184 42.192 0.083 42.501Q-0.018 42.811-0.018 43.159Q-0.018 43.508 0.109 43.814Q0.235 44.120 0.490 44.304Q0.744 44.489 1.100 44.489Q1.322 44.489 1.507 44.405Q1.691 44.321 1.826 44.166Q1.961 44.010 2.019 43.802Q2.033 43.747 2.088 43.747L2.200 43.747Q2.231 43.747 2.253 43.771Q2.276 43.795 2.276 43.829L2.276 43.850Q2.190 44.137 2.002 44.335Q1.814 44.533 1.549 44.636Q1.284 44.738 0.991 44.738Q0.560 44.738 0.172 44.532Q-0.216 44.325-0.450 43.962Q-0.684 43.600-0.684 43.159\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(34.831 -29.548)\">\u003Cpath d=\"M5.576 44.663L5.576 43.600Q5.576 43.576 5.604 43.549Q5.631 43.522 5.655 43.522L5.764 43.522Q5.829 43.522 5.843 43.580Q5.939 44.014 6.185 44.265Q6.431 44.516 6.845 44.516Q7.186 44.516 7.439 44.383Q7.692 44.250 7.692 43.942Q7.692 43.785 7.598 43.670Q7.504 43.556 7.366 43.487Q7.227 43.419 7.060 43.381L6.479 43.282Q6.123 43.214 5.850 42.993Q5.576 42.773 5.576 42.431Q5.576 42.182 5.688 42.007Q5.799 41.833 5.985 41.734Q6.171 41.635 6.387 41.592Q6.602 41.549 6.845 41.549Q7.258 41.549 7.538 41.731L7.754 41.556Q7.764 41.553 7.771 41.551Q7.778 41.549 7.788 41.549L7.839 41.549Q7.866 41.549 7.890 41.573Q7.914 41.597 7.914 41.625L7.914 42.472Q7.914 42.493 7.890 42.520Q7.866 42.547 7.839 42.547L7.726 42.547Q7.699 42.547 7.673 42.522Q7.648 42.496 7.648 42.472Q7.648 42.236 7.542 42.072Q7.436 41.908 7.253 41.826Q7.070 41.744 6.838 41.744Q6.510 41.744 6.253 41.847Q5.997 41.949 5.997 42.226Q5.997 42.421 6.180 42.530Q6.363 42.640 6.592 42.681L7.166 42.787Q7.412 42.835 7.626 42.963Q7.839 43.091 7.976 43.294Q8.113 43.498 8.113 43.747Q8.113 44.260 7.747 44.499Q7.381 44.738 6.845 44.738Q6.349 44.738 6.017 44.444L5.751 44.718Q5.730 44.738 5.703 44.738L5.655 44.738Q5.631 44.738 5.604 44.711Q5.576 44.684 5.576 44.663M8.700 43.135Q8.700 42.814 8.825 42.525Q8.950 42.236 9.176 42.013Q9.401 41.789 9.697 41.669Q9.992 41.549 10.310 41.549Q10.638 41.549 10.900 41.649Q11.161 41.748 11.337 41.930Q11.513 42.113 11.607 42.371Q11.701 42.629 11.701 42.961Q11.701 43.053 11.619 43.074L9.364 43.074L9.364 43.135Q9.364 43.723 9.647 44.106Q9.931 44.489 10.498 44.489Q10.820 44.489 11.088 44.296Q11.356 44.103 11.445 43.788Q11.452 43.747 11.527 43.733L11.619 43.733Q11.701 43.757 11.701 43.829Q11.701 43.836 11.695 43.863Q11.582 44.260 11.211 44.499Q10.840 44.738 10.416 44.738Q9.979 44.738 9.579 44.530Q9.179 44.321 8.940 43.954Q8.700 43.587 8.700 43.135M9.370 42.865L11.185 42.865Q11.185 42.588 11.088 42.336Q10.991 42.083 10.792 41.927Q10.594 41.772 10.310 41.772Q10.033 41.772 9.820 41.930Q9.606 42.089 9.488 42.344Q9.370 42.599 9.370 42.865M12.816 43.829L12.816 41.932L12.177 41.932L12.177 41.710Q12.494 41.710 12.711 41.500Q12.929 41.290 13.029 40.980Q13.130 40.671 13.130 40.363L13.397 40.363L13.397 41.652L14.473 41.652L14.473 41.932L13.397 41.932L13.397 43.816Q13.397 44.092 13.501 44.291Q13.605 44.489 13.865 44.489Q14.022 44.489 14.128 44.385Q14.234 44.280 14.284 44.127Q14.333 43.973 14.333 43.816L14.333 43.402L14.600 43.402L14.600 43.829Q14.600 44.055 14.501 44.265Q14.402 44.475 14.217 44.607Q14.033 44.738 13.804 44.738Q13.366 44.738 13.091 44.501Q12.816 44.263 12.816 43.829M15.936 43.829L15.936 41.932L15.297 41.932L15.297 41.710Q15.615 41.710 15.832 41.500Q16.049 41.290 16.150 40.980Q16.251 40.671 16.251 40.363L16.517 40.363L16.517 41.652L17.594 41.652L17.594 41.932L16.517 41.932L16.517 43.816Q16.517 44.092 16.622 44.291Q16.726 44.489 16.986 44.489Q17.143 44.489 17.249 44.385Q17.355 44.280 17.404 44.127Q17.454 43.973 17.454 43.816L17.454 43.402L17.720 43.402L17.720 43.829Q17.720 44.055 17.621 44.265Q17.522 44.475 17.338 44.607Q17.153 44.738 16.924 44.738Q16.487 44.738 16.211 44.501Q15.936 44.263 15.936 43.829M20.199 44.670L18.595 44.670L18.595 44.390Q18.821 44.390 18.970 44.356Q19.118 44.321 19.118 44.181L19.118 40.562Q19.118 40.292 19.011 40.230Q18.903 40.169 18.595 40.169L18.595 39.888L19.672 39.813L19.672 44.181Q19.672 44.318 19.823 44.354Q19.973 44.390 20.199 44.390L20.199 44.670M20.752 43.135Q20.752 42.814 20.877 42.525Q21.002 42.236 21.227 42.013Q21.453 41.789 21.749 41.669Q22.044 41.549 22.362 41.549Q22.690 41.549 22.952 41.649Q23.213 41.748 23.389 41.930Q23.565 42.113 23.659 42.371Q23.753 42.629 23.753 42.961Q23.753 43.053 23.671 43.074L21.415 43.074L21.415 43.135Q21.415 43.723 21.699 44.106Q21.983 44.489 22.550 44.489Q22.871 44.489 23.140 44.296Q23.408 44.103 23.497 43.788Q23.504 43.747 23.579 43.733L23.671 43.733Q23.753 43.757 23.753 43.829Q23.753 43.836 23.746 43.863Q23.634 44.260 23.263 44.499Q22.892 44.738 22.468 44.738Q22.031 44.738 21.631 44.530Q21.231 44.321 20.991 43.954Q20.752 43.587 20.752 43.135M21.422 42.865L23.237 42.865Q23.237 42.588 23.140 42.336Q23.042 42.083 22.844 41.927Q22.646 41.772 22.362 41.772Q22.085 41.772 21.872 41.930Q21.658 42.089 21.540 42.344Q21.422 42.599 21.422 42.865M24.341 44.663L24.341 43.600Q24.341 43.576 24.368 43.549Q24.396 43.522 24.420 43.522L24.529 43.522Q24.594 43.522 24.608 43.580Q24.703 44.014 24.950 44.265Q25.196 44.516 25.609 44.516Q25.951 44.516 26.204 44.383Q26.457 44.250 26.457 43.942Q26.457 43.785 26.363 43.670Q26.269 43.556 26.130 43.487Q25.992 43.419 25.825 43.381L25.243 43.282Q24.888 43.214 24.615 42.993Q24.341 42.773 24.341 42.431Q24.341 42.182 24.452 42.007Q24.563 41.833 24.750 41.734Q24.936 41.635 25.151 41.592Q25.366 41.549 25.609 41.549Q26.023 41.549 26.303 41.731L26.518 41.556Q26.529 41.553 26.535 41.551Q26.542 41.549 26.553 41.549L26.604 41.549Q26.631 41.549 26.655 41.573Q26.679 41.597 26.679 41.625L26.679 42.472Q26.679 42.493 26.655 42.520Q26.631 42.547 26.604 42.547L26.491 42.547Q26.464 42.547 26.438 42.522Q26.412 42.496 26.412 42.472Q26.412 42.236 26.306 42.072Q26.200 41.908 26.018 41.826Q25.835 41.744 25.602 41.744Q25.274 41.744 25.018 41.847Q24.762 41.949 24.762 42.226Q24.762 42.421 24.944 42.530Q25.127 42.640 25.356 42.681L25.930 42.787Q26.177 42.835 26.390 42.963Q26.604 43.091 26.741 43.294Q26.877 43.498 26.877 43.747Q26.877 44.260 26.512 44.499Q26.146 44.738 25.609 44.738Q25.114 44.738 24.782 44.444L24.515 44.718Q24.495 44.738 24.468 44.738L24.420 44.738Q24.396 44.738 24.368 44.711Q24.341 44.684 24.341 44.663M28.005 45.900Q28.005 45.866 28.026 45.846Q28.265 45.607 28.400 45.280Q28.535 44.954 28.535 44.622Q28.450 44.670 28.326 44.670Q28.145 44.670 28.026 44.550Q27.906 44.431 27.906 44.250Q27.906 44.075 28.026 43.956Q28.145 43.836 28.326 43.836Q28.497 43.836 28.595 43.959Q28.692 44.082 28.726 44.258Q28.761 44.434 28.761 44.608Q28.761 44.991 28.614 45.355Q28.467 45.719 28.193 46Q28.166 46.027 28.128 46.027Q28.087 46.027 28.046 45.986Q28.005 45.945 28.005 45.900M27.906 42.066Q27.906 41.898 28.029 41.775Q28.152 41.652 28.326 41.652Q28.494 41.652 28.617 41.775Q28.740 41.898 28.740 42.066Q28.740 42.240 28.617 42.363Q28.494 42.486 28.326 42.486Q28.152 42.486 28.029 42.363Q27.906 42.240 27.906 42.066\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(34.831 -29.548)\">\u003Cpath d=\"M32.496 44.663L32.496 43.600Q32.496 43.576 32.524 43.549Q32.551 43.522 32.575 43.522L32.684 43.522Q32.749 43.522 32.763 43.580Q32.859 44.014 33.105 44.265Q33.351 44.516 33.765 44.516Q34.106 44.516 34.359 44.383Q34.612 44.250 34.612 43.942Q34.612 43.785 34.518 43.670Q34.424 43.556 34.286 43.487Q34.147 43.419 33.980 43.381L33.399 43.282Q33.043 43.214 32.770 42.993Q32.496 42.773 32.496 42.431Q32.496 42.182 32.608 42.007Q32.719 41.833 32.905 41.734Q33.091 41.635 33.307 41.592Q33.522 41.549 33.765 41.549Q34.178 41.549 34.458 41.731L34.674 41.556Q34.684 41.553 34.691 41.551Q34.698 41.549 34.708 41.549L34.759 41.549Q34.786 41.549 34.810 41.573Q34.834 41.597 34.834 41.625L34.834 42.472Q34.834 42.493 34.810 42.520Q34.786 42.547 34.759 42.547L34.646 42.547Q34.619 42.547 34.593 42.522Q34.568 42.496 34.568 42.472Q34.568 42.236 34.462 42.072Q34.356 41.908 34.173 41.826Q33.990 41.744 33.758 41.744Q33.430 41.744 33.173 41.847Q32.917 41.949 32.917 42.226Q32.917 42.421 33.100 42.530Q33.283 42.640 33.512 42.681L34.086 42.787Q34.332 42.835 34.546 42.963Q34.759 43.091 34.896 43.294Q35.033 43.498 35.033 43.747Q35.033 44.260 34.667 44.499Q34.301 44.738 33.765 44.738Q33.269 44.738 32.937 44.444L32.671 44.718Q32.650 44.738 32.623 44.738L32.575 44.738Q32.551 44.738 32.524 44.711Q32.496 44.684 32.496 44.663M36.188 43.829L36.188 41.932L35.549 41.932L35.549 41.710Q35.867 41.710 36.084 41.500Q36.301 41.290 36.401 40.980Q36.502 40.671 36.502 40.363L36.769 40.363L36.769 41.652L37.846 41.652L37.846 41.932L36.769 41.932L36.769 43.816Q36.769 44.092 36.873 44.291Q36.977 44.489 37.237 44.489Q37.394 44.489 37.500 44.385Q37.606 44.280 37.656 44.127Q37.705 43.973 37.705 43.816L37.705 43.402L37.972 43.402L37.972 43.829Q37.972 44.055 37.873 44.265Q37.774 44.475 37.589 44.607Q37.405 44.738 37.176 44.738Q36.738 44.738 36.463 44.501Q36.188 44.263 36.188 43.829M38.840 43.942Q38.840 43.610 39.064 43.383Q39.288 43.156 39.631 43.028Q39.975 42.899 40.348 42.847Q40.720 42.794 41.024 42.794L41.024 42.541Q41.024 42.336 40.917 42.156Q40.809 41.977 40.628 41.874Q40.447 41.772 40.238 41.772Q39.831 41.772 39.596 41.864Q39.684 41.901 39.731 41.985Q39.777 42.069 39.777 42.171Q39.777 42.267 39.731 42.346Q39.684 42.424 39.604 42.469Q39.524 42.513 39.435 42.513Q39.285 42.513 39.184 42.416Q39.083 42.318 39.083 42.171Q39.083 41.549 40.238 41.549Q40.450 41.549 40.700 41.613Q40.949 41.676 41.151 41.795Q41.352 41.915 41.479 42.100Q41.605 42.284 41.605 42.527L41.605 44.103Q41.605 44.219 41.667 44.315Q41.728 44.410 41.841 44.410Q41.951 44.410 42.015 44.316Q42.080 44.222 42.080 44.103L42.080 43.655L42.347 43.655L42.347 44.103Q42.347 44.373 42.120 44.538Q41.892 44.704 41.612 44.704Q41.404 44.704 41.267 44.550Q41.130 44.397 41.106 44.181Q40.959 44.448 40.677 44.593Q40.395 44.738 40.071 44.738Q39.794 44.738 39.510 44.663Q39.226 44.588 39.033 44.409Q38.840 44.229 38.840 43.942M39.455 43.942Q39.455 44.116 39.556 44.246Q39.657 44.376 39.813 44.446Q39.968 44.516 40.132 44.516Q40.351 44.516 40.559 44.419Q40.768 44.321 40.896 44.140Q41.024 43.959 41.024 43.733L41.024 43.005Q40.700 43.005 40.334 43.096Q39.968 43.187 39.712 43.399Q39.455 43.610 39.455 43.942M43.290 43.829L43.290 41.932L42.651 41.932L42.651 41.710Q42.969 41.710 43.186 41.500Q43.403 41.290 43.504 40.980Q43.605 40.671 43.605 40.363L43.871 40.363L43.871 41.652L44.948 41.652L44.948 41.932L43.871 41.932L43.871 43.816Q43.871 44.092 43.976 44.291Q44.080 44.489 44.340 44.489Q44.497 44.489 44.603 44.385Q44.709 44.280 44.758 44.127Q44.808 43.973 44.808 43.816L44.808 43.402L45.075 43.402L45.075 43.829Q45.075 44.055 44.975 44.265Q44.876 44.475 44.692 44.607Q44.507 44.738 44.278 44.738Q43.841 44.738 43.566 44.501Q43.290 44.263 43.290 43.829M45.844 43.135Q45.844 42.814 45.968 42.525Q46.093 42.236 46.319 42.013Q46.544 41.789 46.840 41.669Q47.136 41.549 47.453 41.549Q47.782 41.549 48.043 41.649Q48.305 41.748 48.481 41.930Q48.657 42.113 48.751 42.371Q48.845 42.629 48.845 42.961Q48.845 43.053 48.763 43.074L46.507 43.074L46.507 43.135Q46.507 43.723 46.790 44.106Q47.074 44.489 47.641 44.489Q47.963 44.489 48.231 44.296Q48.499 44.103 48.588 43.788Q48.595 43.747 48.670 43.733L48.763 43.733Q48.845 43.757 48.845 43.829Q48.845 43.836 48.838 43.863Q48.725 44.260 48.354 44.499Q47.983 44.738 47.559 44.738Q47.122 44.738 46.722 44.530Q46.322 44.321 46.083 43.954Q45.844 43.587 45.844 43.135M46.514 42.865L48.328 42.865Q48.328 42.588 48.231 42.336Q48.134 42.083 47.935 41.927Q47.737 41.772 47.453 41.772Q47.177 41.772 46.963 41.930Q46.749 42.089 46.631 42.344Q46.514 42.599 46.514 42.865\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(34.831 -29.548)\">\u003Cpath d=\"M52.109 43.135Q52.109 42.814 52.234 42.525Q52.359 42.236 52.585 42.013Q52.810 41.789 53.106 41.669Q53.401 41.549 53.719 41.549Q54.047 41.549 54.309 41.649Q54.570 41.748 54.746 41.930Q54.922 42.113 55.016 42.371Q55.110 42.629 55.110 42.961Q55.110 43.053 55.028 43.074L52.773 43.074L52.773 43.135Q52.773 43.723 53.056 44.106Q53.340 44.489 53.907 44.489Q54.229 44.489 54.497 44.296Q54.765 44.103 54.854 43.788Q54.861 43.747 54.936 43.733L55.028 43.733Q55.110 43.757 55.110 43.829Q55.110 43.836 55.104 43.863Q54.991 44.260 54.620 44.499Q54.249 44.738 53.825 44.738Q53.388 44.738 52.988 44.530Q52.588 44.321 52.349 43.954Q52.109 43.587 52.109 43.135M52.779 42.865L54.594 42.865Q54.594 42.588 54.497 42.336Q54.399 42.083 54.201 41.927Q54.003 41.772 53.719 41.772Q53.442 41.772 53.229 41.930Q53.015 42.089 52.897 42.344Q52.779 42.599 52.779 42.865M57.366 44.670L55.763 44.670L55.763 44.390Q55.989 44.390 56.138 44.356Q56.286 44.321 56.286 44.181L56.286 40.562Q56.286 40.292 56.179 40.230Q56.071 40.169 55.763 40.169L55.763 39.888L56.840 39.813L56.840 44.181Q56.840 44.318 56.990 44.354Q57.141 44.390 57.366 44.390L57.366 44.670M57.920 43.135Q57.920 42.814 58.045 42.525Q58.169 42.236 58.395 42.013Q58.621 41.789 58.916 41.669Q59.212 41.549 59.530 41.549Q59.858 41.549 60.119 41.649Q60.381 41.748 60.557 41.930Q60.733 42.113 60.827 42.371Q60.921 42.629 60.921 42.961Q60.921 43.053 60.839 43.074L58.583 43.074L58.583 43.135Q58.583 43.723 58.867 44.106Q59.150 44.489 59.718 44.489Q60.039 44.489 60.307 44.296Q60.576 44.103 60.665 43.788Q60.671 43.747 60.747 43.733L60.839 43.733Q60.921 43.757 60.921 43.829Q60.921 43.836 60.914 43.863Q60.801 44.260 60.430 44.499Q60.060 44.738 59.636 44.738Q59.198 44.738 58.798 44.530Q58.398 44.321 58.159 43.954Q57.920 43.587 57.920 43.135M58.590 42.865L60.405 42.865Q60.405 42.588 60.307 42.336Q60.210 42.083 60.012 41.927Q59.814 41.772 59.530 41.772Q59.253 41.772 59.039 41.930Q58.826 42.089 58.708 42.344Q58.590 42.599 58.590 42.865M63.190 44.670L61.557 44.670L61.557 44.390Q61.786 44.390 61.934 44.356Q62.083 44.321 62.083 44.181L62.083 42.332Q62.083 42.062 61.975 42.001Q61.868 41.939 61.557 41.939L61.557 41.659L62.616 41.584L62.616 42.233Q62.787 41.925 63.091 41.754Q63.396 41.584 63.741 41.584Q64.141 41.584 64.418 41.724Q64.694 41.864 64.780 42.212Q64.947 41.919 65.246 41.751Q65.545 41.584 65.891 41.584Q66.397 41.584 66.680 41.807Q66.964 42.031 66.964 42.527L66.964 44.181Q66.964 44.318 67.113 44.354Q67.261 44.390 67.487 44.390L67.487 44.670L65.857 44.670L65.857 44.390Q66.082 44.390 66.232 44.354Q66.383 44.318 66.383 44.181L66.383 42.541Q66.383 42.206 66.263 42.006Q66.144 41.806 65.829 41.806Q65.559 41.806 65.325 41.942Q65.091 42.079 64.952 42.313Q64.814 42.547 64.814 42.821L64.814 44.181Q64.814 44.318 64.963 44.354Q65.111 44.390 65.337 44.390L65.337 44.670L63.707 44.670L63.707 44.390Q63.936 44.390 64.084 44.356Q64.233 44.321 64.233 44.181L64.233 42.541Q64.233 42.206 64.113 42.006Q63.994 41.806 63.679 41.806Q63.409 41.806 63.175 41.942Q62.941 42.079 62.803 42.313Q62.664 42.547 62.664 42.821L62.664 44.181Q62.664 44.318 62.815 44.354Q62.965 44.390 63.190 44.390L63.190 44.670M68.034 43.135Q68.034 42.814 68.159 42.525Q68.283 42.236 68.509 42.013Q68.734 41.789 69.030 41.669Q69.326 41.549 69.644 41.549Q69.972 41.549 70.233 41.649Q70.495 41.748 70.671 41.930Q70.847 42.113 70.941 42.371Q71.035 42.629 71.035 42.961Q71.035 43.053 70.953 43.074L68.697 43.074L68.697 43.135Q68.697 43.723 68.981 44.106Q69.264 44.489 69.832 44.489Q70.153 44.489 70.421 44.296Q70.690 44.103 70.778 43.788Q70.785 43.747 70.860 43.733L70.953 43.733Q71.035 43.757 71.035 43.829Q71.035 43.836 71.028 43.863Q70.915 44.260 70.544 44.499Q70.173 44.738 69.750 44.738Q69.312 44.738 68.912 44.530Q68.512 44.321 68.273 43.954Q68.034 43.587 68.034 43.135M68.704 42.865L70.519 42.865Q70.519 42.588 70.421 42.336Q70.324 42.083 70.126 41.927Q69.927 41.772 69.644 41.772Q69.367 41.772 69.153 41.930Q68.940 42.089 68.822 42.344Q68.704 42.599 68.704 42.865M73.304 44.670L71.670 44.670L71.670 44.390Q71.899 44.390 72.048 44.356Q72.197 44.321 72.197 44.181L72.197 42.332Q72.197 42.062 72.089 42.001Q71.982 41.939 71.670 41.939L71.670 41.659L72.730 41.584L72.730 42.233Q72.901 41.925 73.205 41.754Q73.509 41.584 73.855 41.584Q74.360 41.584 74.644 41.807Q74.928 42.031 74.928 42.527L74.928 44.181Q74.928 44.318 75.076 44.354Q75.225 44.390 75.451 44.390L75.451 44.670L73.820 44.670L73.820 44.390Q74.049 44.390 74.198 44.356Q74.347 44.321 74.347 44.181L74.347 42.541Q74.347 42.206 74.227 42.006Q74.107 41.806 73.793 41.806Q73.523 41.806 73.289 41.942Q73.055 42.079 72.916 42.313Q72.778 42.547 72.778 42.821L72.778 44.181Q72.778 44.318 72.928 44.354Q73.079 44.390 73.304 44.390\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(34.831 -29.548)\">\u003Cpath d=\"M76.379 43.829L76.379 41.932L75.740 41.932L75.740 41.710Q76.058 41.710 76.275 41.500Q76.492 41.290 76.592 40.980Q76.693 40.671 76.693 40.363L76.960 40.363L76.960 41.652L78.037 41.652L78.037 41.932L76.960 41.932L76.960 43.816Q76.960 44.092 77.064 44.291Q77.168 44.489 77.428 44.489Q77.585 44.489 77.691 44.385Q77.797 44.280 77.847 44.127Q77.896 43.973 77.896 43.816L77.896 43.402L78.163 43.402L78.163 43.829Q78.163 44.055 78.064 44.265Q77.965 44.475 77.780 44.607Q77.596 44.738 77.367 44.738Q76.929 44.738 76.654 44.501Q76.379 44.263 76.379 43.829M78.973 44.663L78.973 43.600Q78.973 43.576 79 43.549Q79.028 43.522 79.052 43.522L79.161 43.522Q79.226 43.522 79.240 43.580Q79.335 44.014 79.581 44.265Q79.828 44.516 80.241 44.516Q80.583 44.516 80.836 44.383Q81.089 44.250 81.089 43.942Q81.089 43.785 80.995 43.670Q80.901 43.556 80.762 43.487Q80.624 43.419 80.456 43.381L79.875 43.282Q79.520 43.214 79.246 42.993Q78.973 42.773 78.973 42.431Q78.973 42.182 79.084 42.007Q79.195 41.833 79.382 41.734Q79.568 41.635 79.783 41.592Q79.998 41.549 80.241 41.549Q80.655 41.549 80.935 41.731L81.150 41.556Q81.161 41.553 81.167 41.551Q81.174 41.549 81.184 41.549L81.236 41.549Q81.263 41.549 81.287 41.573Q81.311 41.597 81.311 41.625L81.311 42.472Q81.311 42.493 81.287 42.520Q81.263 42.547 81.236 42.547L81.123 42.547Q81.096 42.547 81.070 42.522Q81.044 42.496 81.044 42.472Q81.044 42.236 80.938 42.072Q80.832 41.908 80.650 41.826Q80.467 41.744 80.234 41.744Q79.906 41.744 79.650 41.847Q79.393 41.949 79.393 42.226Q79.393 42.421 79.576 42.530Q79.759 42.640 79.988 42.681L80.562 42.787Q80.809 42.835 81.022 42.963Q81.236 43.091 81.372 43.294Q81.509 43.498 81.509 43.747Q81.509 44.260 81.143 44.499Q80.778 44.738 80.241 44.738Q79.746 44.738 79.414 44.444L79.147 44.718Q79.127 44.738 79.100 44.738L79.052 44.738Q79.028 44.738 79 44.711Q78.973 44.684 78.973 44.663\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(34.831 -29.548)\">\u003Cpath d=\"M86.521 44.670L84.887 44.670L84.887 44.390Q85.116 44.390 85.265 44.356Q85.414 44.321 85.414 44.181L85.414 40.562Q85.414 40.292 85.306 40.230Q85.198 40.169 84.887 40.169L84.887 39.888L85.967 39.813L85.967 42.199Q86.073 42.014 86.251 41.872Q86.429 41.731 86.637 41.657Q86.846 41.584 87.071 41.584Q87.577 41.584 87.861 41.807Q88.145 42.031 88.145 42.527L88.145 44.181Q88.145 44.318 88.293 44.354Q88.442 44.390 88.668 44.390L88.668 44.670L87.037 44.670L87.037 44.390Q87.266 44.390 87.415 44.356Q87.564 44.321 87.564 44.181L87.564 42.541Q87.564 42.206 87.444 42.006Q87.324 41.806 87.010 41.806Q86.740 41.806 86.506 41.942Q86.272 42.079 86.133 42.313Q85.995 42.547 85.995 42.821L85.995 44.181Q85.995 44.318 86.145 44.354Q86.296 44.390 86.521 44.390L86.521 44.670M89.214 43.187Q89.214 42.845 89.349 42.546Q89.484 42.247 89.724 42.023Q89.963 41.799 90.281 41.674Q90.599 41.549 90.930 41.549Q91.375 41.549 91.775 41.765Q92.174 41.980 92.409 42.358Q92.643 42.735 92.643 43.187Q92.643 43.528 92.501 43.812Q92.359 44.096 92.115 44.303Q91.870 44.509 91.561 44.624Q91.252 44.738 90.930 44.738Q90.500 44.738 90.098 44.537Q89.696 44.335 89.455 43.983Q89.214 43.631 89.214 43.187M90.930 44.489Q91.532 44.489 91.756 44.111Q91.980 43.733 91.980 43.101Q91.980 42.489 91.745 42.130Q91.511 41.772 90.930 41.772Q89.878 41.772 89.878 43.101Q89.878 43.733 90.103 44.111Q90.329 44.489 90.930 44.489M94.905 44.670L93.302 44.670L93.302 44.390Q93.528 44.390 93.677 44.356Q93.825 44.321 93.825 44.181L93.825 40.562Q93.825 40.292 93.718 40.230Q93.610 40.169 93.302 40.169L93.302 39.888L94.379 39.813L94.379 44.181Q94.379 44.318 94.529 44.354Q94.680 44.390 94.905 44.390L94.905 44.670M95.500 43.159Q95.500 42.821 95.640 42.530Q95.780 42.240 96.025 42.026Q96.269 41.813 96.573 41.698Q96.878 41.584 97.202 41.584Q97.472 41.584 97.735 41.683Q97.999 41.782 98.190 41.960L98.190 40.562Q98.190 40.292 98.082 40.230Q97.975 40.169 97.664 40.169L97.664 39.888L98.740 39.813L98.740 43.997Q98.740 44.185 98.795 44.268Q98.850 44.352 98.951 44.371Q99.051 44.390 99.267 44.390L99.267 44.670L98.159 44.738L98.159 44.321Q97.742 44.738 97.117 44.738Q96.686 44.738 96.314 44.526Q95.941 44.315 95.721 43.954Q95.500 43.593 95.500 43.159M97.175 44.516Q97.383 44.516 97.570 44.444Q97.756 44.373 97.910 44.236Q98.064 44.099 98.159 43.921L98.159 42.312Q98.074 42.165 97.929 42.045Q97.783 41.925 97.614 41.866Q97.445 41.806 97.264 41.806Q96.703 41.806 96.435 42.195Q96.167 42.585 96.167 43.166Q96.167 43.737 96.401 44.127Q96.635 44.516 97.175 44.516\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(137.26 -8.209)\">\u003Cpath d=\"M-64.830 43.942Q-64.830 43.610-64.607 43.383Q-64.383 43.156-64.039 43.028Q-63.696 42.899-63.323 42.847Q-62.951 42.794-62.646 42.794L-62.646 42.541Q-62.646 42.336-62.754 42.156Q-62.862 41.977-63.043 41.874Q-63.224 41.772-63.432 41.772Q-63.839 41.772-64.075 41.864Q-63.986 41.901-63.940 41.985Q-63.894 42.069-63.894 42.171Q-63.894 42.267-63.940 42.346Q-63.986 42.424-64.067 42.469Q-64.147 42.513-64.236 42.513Q-64.386 42.513-64.487 42.416Q-64.588 42.318-64.588 42.171Q-64.588 41.549-63.432 41.549Q-63.221 41.549-62.971 41.613Q-62.722 41.676-62.520 41.795Q-62.318 41.915-62.192 42.100Q-62.065 42.284-62.065 42.527L-62.065 44.103Q-62.065 44.219-62.004 44.315Q-61.942 44.410-61.829 44.410Q-61.720 44.410-61.655 44.316Q-61.590 44.222-61.590 44.103L-61.590 43.655L-61.324 43.655L-61.324 44.103Q-61.324 44.373-61.551 44.538Q-61.778 44.704-62.058 44.704Q-62.267 44.704-62.404 44.550Q-62.540 44.397-62.564 44.181Q-62.711 44.448-62.993 44.593Q-63.275 44.738-63.600 44.738Q-63.877 44.738-64.161 44.663Q-64.444 44.588-64.637 44.409Q-64.830 44.229-64.830 43.942M-64.215 43.942Q-64.215 44.116-64.114 44.246Q-64.014 44.376-63.858 44.446Q-63.703 44.516-63.538 44.516Q-63.320 44.516-63.111 44.419Q-62.903 44.321-62.775 44.140Q-62.646 43.959-62.646 43.733L-62.646 43.005Q-62.971 43.005-63.337 43.096Q-63.703 43.187-63.959 43.399Q-64.215 43.610-64.215 43.942M-60.380 43.829L-60.380 41.932L-61.019 41.932L-61.019 41.710Q-60.702 41.710-60.484 41.500Q-60.267 41.290-60.167 40.980Q-60.066 40.671-60.066 40.363L-59.799 40.363L-59.799 41.652L-58.723 41.652L-58.723 41.932L-59.799 41.932L-59.799 43.816Q-59.799 44.092-59.695 44.291Q-59.591 44.489-59.331 44.489Q-59.174 44.489-59.068 44.385Q-58.962 44.280-58.912 44.127Q-58.863 43.973-58.863 43.816L-58.863 43.402L-58.596 43.402L-58.596 43.829Q-58.596 44.055-58.695 44.265Q-58.794 44.475-58.979 44.607Q-59.163 44.738-59.392 44.738Q-59.830 44.738-60.105 44.501Q-60.380 44.263-60.380 43.829\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(137.26 -8.209)\">\u003Cpath d=\"M-54.557 43.829L-54.557 41.932L-55.196 41.932L-55.196 41.710Q-54.878 41.710-54.661 41.500Q-54.444 41.290-54.344 40.980Q-54.243 40.671-54.243 40.363L-53.976 40.363L-53.976 41.652L-52.899 41.652L-52.899 41.932L-53.976 41.932L-53.976 43.816Q-53.976 44.092-53.872 44.291Q-53.768 44.489-53.508 44.489Q-53.351 44.489-53.245 44.385Q-53.139 44.280-53.089 44.127Q-53.040 43.973-53.040 43.816L-53.040 43.402L-52.773 43.402L-52.773 43.829Q-52.773 44.055-52.872 44.265Q-52.971 44.475-53.156 44.607Q-53.340 44.738-53.569 44.738Q-54.007 44.738-54.282 44.501Q-54.557 44.263-54.557 43.829M-50.281 44.670L-51.915 44.670L-51.915 44.390Q-51.686 44.390-51.537 44.356Q-51.389 44.321-51.389 44.181L-51.389 40.562Q-51.389 40.292-51.496 40.230Q-51.604 40.169-51.915 40.169L-51.915 39.888L-50.835 39.813L-50.835 42.199Q-50.729 42.014-50.551 41.872Q-50.374 41.731-50.165 41.657Q-49.957 41.584-49.731 41.584Q-49.225 41.584-48.941 41.807Q-48.658 42.031-48.658 42.527L-48.658 44.181Q-48.658 44.318-48.509 44.354Q-48.360 44.390-48.135 44.390L-48.135 44.670L-49.765 44.670L-49.765 44.390Q-49.536 44.390-49.388 44.356Q-49.239 44.321-49.239 44.181L-49.239 42.541Q-49.239 42.206-49.358 42.006Q-49.478 41.806-49.793 41.806Q-50.063 41.806-50.297 41.942Q-50.531 42.079-50.669 42.313Q-50.808 42.547-50.808 42.821L-50.808 44.181Q-50.808 44.318-50.657 44.354Q-50.507 44.390-50.281 44.390L-50.281 44.670M-47.588 43.135Q-47.588 42.814-47.463 42.525Q-47.338 42.236-47.113 42.013Q-46.887 41.789-46.592 41.669Q-46.296 41.549-45.978 41.549Q-45.650 41.549-45.388 41.649Q-45.127 41.748-44.951 41.930Q-44.775 42.113-44.681 42.371Q-44.587 42.629-44.587 42.961Q-44.587 43.053-44.669 43.074L-46.925 43.074L-46.925 43.135Q-46.925 43.723-46.641 44.106Q-46.357 44.489-45.790 44.489Q-45.469 44.489-45.200 44.296Q-44.932 44.103-44.843 43.788Q-44.836 43.747-44.761 43.733L-44.669 43.733Q-44.587 43.757-44.587 43.829Q-44.587 43.836-44.594 43.863Q-44.707 44.260-45.077 44.499Q-45.448 44.738-45.872 44.738Q-46.310 44.738-46.710 44.530Q-47.109 44.321-47.349 43.954Q-47.588 43.587-47.588 43.135M-46.918 42.865L-45.103 42.865Q-45.103 42.588-45.200 42.336Q-45.298 42.083-45.496 41.927Q-45.694 41.772-45.978 41.772Q-46.255 41.772-46.469 41.930Q-46.682 42.089-46.800 42.344Q-46.918 42.599-46.918 42.865\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(137.26 -8.209)\">\u003Cpath d=\"M-41.333 43.135Q-41.333 42.814-41.208 42.525Q-41.083 42.236-40.857 42.013Q-40.632 41.789-40.336 41.669Q-40.041 41.549-39.723 41.549Q-39.395 41.549-39.133 41.649Q-38.872 41.748-38.696 41.930Q-38.520 42.113-38.426 42.371Q-38.332 42.629-38.332 42.961Q-38.332 43.053-38.414 43.074L-40.669 43.074L-40.669 43.135Q-40.669 43.723-40.386 44.106Q-40.102 44.489-39.535 44.489Q-39.213 44.489-38.945 44.296Q-38.677 44.103-38.588 43.788Q-38.581 43.747-38.506 43.733L-38.414 43.733Q-38.332 43.757-38.332 43.829Q-38.332 43.836-38.338 43.863Q-38.451 44.260-38.822 44.499Q-39.193 44.738-39.617 44.738Q-40.054 44.738-40.454 44.530Q-40.854 44.321-41.093 43.954Q-41.333 43.587-41.333 43.135M-40.663 42.865L-38.848 42.865Q-38.848 42.588-38.945 42.336Q-39.043 42.083-39.241 41.927Q-39.439 41.772-39.723 41.772Q-40 41.772-40.213 41.930Q-40.427 42.089-40.545 42.344Q-40.663 42.599-40.663 42.865M-37.744 43.159Q-37.744 42.821-37.604 42.530Q-37.463 42.240-37.219 42.026Q-36.975 41.813-36.670 41.698Q-36.366 41.584-36.042 41.584Q-35.772 41.584-35.508 41.683Q-35.245 41.782-35.054 41.960L-35.054 40.562Q-35.054 40.292-35.161 40.230Q-35.269 40.169-35.580 40.169L-35.580 39.888L-34.503 39.813L-34.503 43.997Q-34.503 44.185-34.449 44.268Q-34.394 44.352-34.293 44.371Q-34.192 44.390-33.977 44.390L-33.977 44.670L-35.085 44.738L-35.085 44.321Q-35.502 44.738-36.127 44.738Q-36.558 44.738-36.930 44.526Q-37.303 44.315-37.523 43.954Q-37.744 43.593-37.744 43.159M-36.069 44.516Q-35.860 44.516-35.674 44.444Q-35.488 44.373-35.334 44.236Q-35.180 44.099-35.085 43.921L-35.085 42.312Q-35.170 42.165-35.315 42.045Q-35.460 41.925-35.630 41.866Q-35.799 41.806-35.980 41.806Q-36.541 41.806-36.809 42.195Q-37.077 42.585-37.077 43.166Q-37.077 43.737-36.843 44.127Q-36.609 44.516-36.069 44.516M-33.369 45.203Q-33.369 44.957-33.172 44.773Q-32.976 44.588-32.719 44.509Q-32.856 44.397-32.928 44.236Q-33 44.075-33 43.894Q-33 43.573-32.788 43.327Q-33.123 43.029-33.123 42.619Q-33.123 42.158-32.733 41.871Q-32.343 41.584-31.865 41.584Q-31.393 41.584-31.058 41.830Q-30.884 41.676-30.674 41.594Q-30.463 41.512-30.234 41.512Q-30.070 41.512-29.949 41.619Q-29.828 41.727-29.828 41.891Q-29.828 41.987-29.899 42.059Q-29.971 42.130-30.064 42.130Q-30.163 42.130-30.233 42.057Q-30.303 41.983-30.303 41.884Q-30.303 41.830-30.289 41.799L-30.282 41.785Q-30.275 41.765-30.267 41.754Q-30.258 41.744-30.255 41.737Q-30.610 41.737-30.898 41.960Q-30.610 42.253-30.610 42.619Q-30.610 42.934-30.795 43.166Q-30.980 43.399-31.268 43.527Q-31.557 43.655-31.865 43.655Q-32.066 43.655-32.258 43.605Q-32.449 43.556-32.627 43.446Q-32.719 43.573-32.719 43.716Q-32.719 43.898-32.591 44.033Q-32.463 44.168-32.278 44.168L-31.646 44.168Q-31.198 44.168-30.829 44.239Q-30.460 44.311-30.200 44.540Q-29.940 44.769-29.940 45.203Q-29.940 45.524-30.236 45.726Q-30.532 45.928-30.935 46.017Q-31.338 46.106-31.653 46.106Q-31.971 46.106-32.374 46.017Q-32.777 45.928-33.073 45.726Q-33.369 45.524-33.369 45.203M-32.914 45.203Q-32.914 45.432-32.695 45.581Q-32.477 45.730-32.184 45.798Q-31.892 45.866-31.653 45.866Q-31.489 45.866-31.280 45.830Q-31.072 45.795-30.865 45.714Q-30.658 45.634-30.527 45.506Q-30.395 45.378-30.395 45.203Q-30.395 44.851-30.776 44.757Q-31.157 44.663-31.660 44.663L-32.278 44.663Q-32.518 44.663-32.716 44.814Q-32.914 44.964-32.914 45.203M-31.865 43.416Q-31.198 43.416-31.198 42.619Q-31.198 41.819-31.865 41.819Q-32.535 41.819-32.535 42.619Q-32.535 43.416-31.865 43.416M-29.387 43.135Q-29.387 42.814-29.262 42.525Q-29.137 42.236-28.912 42.013Q-28.686 41.789-28.390 41.669Q-28.095 41.549-27.777 41.549Q-27.449 41.549-27.187 41.649Q-26.926 41.748-26.750 41.930Q-26.574 42.113-26.480 42.371Q-26.386 42.629-26.386 42.961Q-26.386 43.053-26.468 43.074L-28.724 43.074L-28.724 43.135Q-28.724 43.723-28.440 44.106Q-28.156 44.489-27.589 44.489Q-27.268 44.489-26.999 44.296Q-26.731 44.103-26.642 43.788Q-26.635 43.747-26.560 43.733L-26.468 43.733Q-26.386 43.757-26.386 43.829Q-26.386 43.836-26.393 43.863Q-26.505 44.260-26.876 44.499Q-27.247 44.738-27.671 44.738Q-28.108 44.738-28.508 44.530Q-28.908 44.321-29.148 43.954Q-29.387 43.587-29.387 43.135M-28.717 42.865L-26.902 42.865Q-26.902 42.588-26.999 42.336Q-27.097 42.083-27.295 41.927Q-27.493 41.772-27.777 41.772Q-28.054 41.772-28.267 41.930Q-28.481 42.089-28.599 42.344Q-28.717 42.599-28.717 42.865M-25.398 44.250Q-25.398 44.082-25.275 43.959Q-25.152 43.836-24.978 43.836Q-24.810 43.836-24.687 43.959Q-24.564 44.082-24.564 44.250Q-24.564 44.424-24.687 44.547Q-24.810 44.670-24.978 44.670Q-25.152 44.670-25.275 44.547Q-25.398 44.424-25.398 44.250M-25.398 42.066Q-25.398 41.898-25.275 41.775Q-25.152 41.652-24.978 41.652Q-24.810 41.652-24.687 41.775Q-24.564 41.898-24.564 42.066Q-24.564 42.240-24.687 42.363Q-24.810 42.486-24.978 42.486Q-25.152 42.486-25.275 42.363Q-25.398 42.240-25.398 42.066\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(137.26 -8.209)\">\u003Cpath d=\"M-17.747 44.670L-19.880 44.670L-19.880 44.390Q-19.159 44.390-19.159 44.181L-19.159 40.380Q-19.159 40.169-19.880 40.169L-19.880 39.888L-17.214 39.888Q-16.804 39.888-16.383 40.042Q-15.963 40.196-15.679 40.500Q-15.396 40.804-15.396 41.218Q-15.396 41.536-15.563 41.782Q-15.731 42.028-16.007 42.194Q-16.284 42.359-16.606 42.443Q-16.927 42.527-17.214 42.527L-18.468 42.527L-18.468 44.181Q-18.468 44.390-17.747 44.390L-17.747 44.670M-18.496 40.380L-18.496 42.277L-17.409 42.277Q-16.800 42.277-16.486 42.040Q-16.171 41.802-16.171 41.218Q-16.171 40.825-16.317 40.591Q-16.462 40.357-16.734 40.263Q-17.005 40.169-17.409 40.169L-18.130 40.169Q-18.318 40.169-18.407 40.203Q-18.496 40.237-18.496 40.380M-14.415 42.277Q-14.415 41.751-14.198 41.283Q-13.981 40.815-13.598 40.469Q-13.215 40.124-12.731 39.936Q-12.248 39.748-11.718 39.748Q-11.315 39.748-10.950 39.905Q-10.586 40.063-10.303 40.357L-9.879 39.775Q-9.845 39.748-9.821 39.748L-9.773 39.748Q-9.742 39.748-9.718 39.772Q-9.694 39.796-9.694 39.827L-9.694 41.690Q-9.694 41.713-9.720 41.739Q-9.746 41.765-9.773 41.765L-9.899 41.765Q-9.961 41.765-9.975 41.690Q-10.005 41.375-10.140 41.071Q-10.275 40.767-10.491 40.533Q-10.706 40.298-10.995 40.163Q-11.284 40.028-11.612 40.028Q-12.254 40.028-12.712 40.322Q-13.170 40.616-13.403 41.129Q-13.635 41.642-13.635 42.277Q-13.635 42.749-13.505 43.158Q-13.376 43.566-13.116 43.879Q-12.856 44.191-12.477 44.361Q-12.097 44.530-11.605 44.530Q-11.277 44.530-10.983 44.414Q-10.689 44.297-10.455 44.082Q-10.221 43.867-10.091 43.578Q-9.961 43.289-9.961 42.961Q-9.961 42.934-9.934 42.910Q-9.906 42.886-9.886 42.886L-9.773 42.886Q-9.735 42.886-9.715 42.911Q-9.694 42.937-9.694 42.975Q-9.694 43.371-9.860 43.708Q-10.026 44.045-10.313 44.292Q-10.600 44.540-10.969 44.675Q-11.338 44.810-11.718 44.810Q-12.237 44.810-12.730 44.620Q-13.222 44.431-13.601 44.087Q-13.981 43.744-14.198 43.275Q-14.415 42.807-14.415 42.277M-8.385 45.900Q-8.385 45.866-8.358 45.839Q-8.088 45.610-7.939 45.287Q-7.791 44.964-7.791 44.608L-7.791 44.571Q-7.900 44.670-8.064 44.670Q-8.245 44.670-8.365 44.550Q-8.484 44.431-8.484 44.250Q-8.484 44.075-8.365 43.956Q-8.245 43.836-8.064 43.836Q-7.808 43.836-7.688 44.075Q-7.568 44.315-7.568 44.608Q-7.568 45.008-7.738 45.379Q-7.907 45.750-8.204 46.006Q-8.235 46.027-8.262 46.027Q-8.303 46.027-8.344 45.986Q-8.385 45.945-8.385 45.900\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(137.26 -8.209)\">\u003Cpath d=\"M-3.742 42.277Q-3.742 41.751-3.525 41.283Q-3.308 40.815-2.925 40.469Q-2.543 40.124-2.059 39.936Q-1.575 39.748-1.045 39.748Q-0.642 39.748-0.278 39.905Q0.086 40.063 0.370 40.357L0.793 39.775Q0.828 39.748 0.852 39.748L0.899 39.748Q0.930 39.748 0.954 39.772Q0.978 39.796 0.978 39.827L0.978 41.690Q0.978 41.713 0.952 41.739Q0.927 41.765 0.899 41.765L0.773 41.765Q0.711 41.765 0.698 41.690Q0.667 41.375 0.532 41.071Q0.397 40.767 0.182 40.533Q-0.034 40.298-0.323 40.163Q-0.611 40.028-0.939 40.028Q-1.582 40.028-2.040 40.322Q-2.498 40.616-2.731 41.129Q-2.963 41.642-2.963 42.277Q-2.963 42.749-2.833 43.158Q-2.703 43.566-2.443 43.879Q-2.184 44.191-1.804 44.361Q-1.425 44.530-0.933 44.530Q-0.605 44.530-0.311 44.414Q-0.017 44.297 0.217 44.082Q0.452 43.867 0.582 43.578Q0.711 43.289 0.711 42.961Q0.711 42.934 0.739 42.910Q0.766 42.886 0.787 42.886L0.899 42.886Q0.937 42.886 0.957 42.911Q0.978 42.937 0.978 42.975Q0.978 43.371 0.812 43.708Q0.646 44.045 0.359 44.292Q0.072 44.540-0.297 44.675Q-0.666 44.810-1.045 44.810Q-1.565 44.810-2.057 44.620Q-2.549 44.431-2.929 44.087Q-3.308 43.744-3.525 43.275Q-3.742 42.807-3.742 42.277M1.962 42.277Q1.962 41.751 2.179 41.283Q2.396 40.815 2.779 40.469Q3.162 40.124 3.646 39.936Q4.129 39.748 4.659 39.748Q5.062 39.748 5.426 39.905Q5.790 40.063 6.074 40.357L6.498 39.775Q6.532 39.748 6.556 39.748L6.604 39.748Q6.635 39.748 6.659 39.772Q6.683 39.796 6.683 39.827L6.683 41.690Q6.683 41.713 6.657 41.739Q6.631 41.765 6.604 41.765L6.477 41.765Q6.416 41.765 6.402 41.690Q6.372 41.375 6.237 41.071Q6.102 40.767 5.886 40.533Q5.671 40.298 5.382 40.163Q5.093 40.028 4.765 40.028Q4.123 40.028 3.665 40.322Q3.207 40.616 2.974 41.129Q2.742 41.642 2.742 42.277Q2.742 42.749 2.872 43.158Q3.001 43.566 3.261 43.879Q3.521 44.191 3.900 44.361Q4.280 44.530 4.772 44.530Q5.100 44.530 5.394 44.414Q5.688 44.297 5.922 44.082Q6.156 43.867 6.286 43.578Q6.416 43.289 6.416 42.961Q6.416 42.934 6.443 42.910Q6.471 42.886 6.491 42.886L6.604 42.886Q6.642 42.886 6.662 42.911Q6.683 42.937 6.683 42.975Q6.683 43.371 6.517 43.708Q6.351 44.045 6.064 44.292Q5.777 44.540 5.408 44.675Q5.039 44.810 4.659 44.810Q4.140 44.810 3.647 44.620Q3.155 44.431 2.776 44.087Q2.396 43.744 2.179 43.275Q1.962 42.807 1.962 42.277M7.992 45.900Q7.992 45.866 8.019 45.839Q8.289 45.610 8.438 45.287Q8.586 44.964 8.586 44.608L8.586 44.571Q8.477 44.670 8.313 44.670Q8.132 44.670 8.012 44.550Q7.893 44.431 7.893 44.250Q7.893 44.075 8.012 43.956Q8.132 43.836 8.313 43.836Q8.569 43.836 8.689 44.075Q8.809 44.315 8.809 44.608Q8.809 45.008 8.639 45.379Q8.470 45.750 8.173 46.006Q8.142 46.027 8.115 46.027Q8.074 46.027 8.033 45.986Q7.992 45.945 7.992 45.900\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(137.26 -8.209)\">\u003Cpath d=\"M14.208 44.670L12.472 44.670L12.472 44.390Q12.701 44.390 12.850 44.356Q12.998 44.321 12.998 44.181L12.998 42.332Q12.998 42.062 12.891 42.001Q12.783 41.939 12.472 41.939L12.472 41.659L13.501 41.584L13.501 42.291Q13.631 41.983 13.873 41.784Q14.116 41.584 14.434 41.584Q14.653 41.584 14.824 41.708Q14.995 41.833 14.995 42.045Q14.995 42.182 14.895 42.281Q14.796 42.380 14.663 42.380Q14.526 42.380 14.427 42.281Q14.328 42.182 14.328 42.045Q14.328 41.905 14.427 41.806Q14.137 41.806 13.937 42.002Q13.737 42.199 13.644 42.493Q13.552 42.787 13.552 43.067L13.552 44.181Q13.552 44.390 14.208 44.390L14.208 44.670M15.538 43.135Q15.538 42.814 15.663 42.525Q15.788 42.236 16.013 42.013Q16.239 41.789 16.534 41.669Q16.830 41.549 17.148 41.549Q17.476 41.549 17.738 41.649Q17.999 41.748 18.175 41.930Q18.351 42.113 18.445 42.371Q18.539 42.629 18.539 42.961Q18.539 43.053 18.457 43.074L16.201 43.074L16.201 43.135Q16.201 43.723 16.485 44.106Q16.769 44.489 17.336 44.489Q17.657 44.489 17.925 44.296Q18.194 44.103 18.283 43.788Q18.290 43.747 18.365 43.733L18.457 43.733Q18.539 43.757 18.539 43.829Q18.539 43.836 18.532 43.863Q18.419 44.260 18.049 44.499Q17.678 44.738 17.254 44.738Q16.816 44.738 16.416 44.530Q16.017 44.321 15.777 43.954Q15.538 43.587 15.538 43.135M16.208 42.865L18.023 42.865Q18.023 42.588 17.925 42.336Q17.828 42.083 17.630 41.927Q17.432 41.772 17.148 41.772Q16.871 41.772 16.657 41.930Q16.444 42.089 16.326 42.344Q16.208 42.599 16.208 42.865M19.086 45.203Q19.086 44.957 19.282 44.773Q19.479 44.588 19.735 44.509Q19.599 44.397 19.527 44.236Q19.455 44.075 19.455 43.894Q19.455 43.573 19.667 43.327Q19.332 43.029 19.332 42.619Q19.332 42.158 19.722 41.871Q20.111 41.584 20.590 41.584Q21.061 41.584 21.396 41.830Q21.571 41.676 21.781 41.594Q21.991 41.512 22.220 41.512Q22.384 41.512 22.506 41.619Q22.627 41.727 22.627 41.891Q22.627 41.987 22.555 42.059Q22.483 42.130 22.391 42.130Q22.292 42.130 22.222 42.057Q22.152 41.983 22.152 41.884Q22.152 41.830 22.165 41.799L22.172 41.785Q22.179 41.765 22.188 41.754Q22.196 41.744 22.200 41.737Q21.844 41.737 21.557 41.960Q21.844 42.253 21.844 42.619Q21.844 42.934 21.660 43.166Q21.475 43.399 21.186 43.527Q20.897 43.655 20.590 43.655Q20.388 43.655 20.197 43.605Q20.005 43.556 19.828 43.446Q19.735 43.573 19.735 43.716Q19.735 43.898 19.863 44.033Q19.992 44.168 20.176 44.168L20.809 44.168Q21.256 44.168 21.625 44.239Q21.995 44.311 22.254 44.540Q22.514 44.769 22.514 45.203Q22.514 45.524 22.218 45.726Q21.923 45.928 21.519 46.017Q21.116 46.106 20.802 46.106Q20.484 46.106 20.081 46.017Q19.677 45.928 19.382 45.726Q19.086 45.524 19.086 45.203M19.540 45.203Q19.540 45.432 19.759 45.581Q19.978 45.730 20.270 45.798Q20.562 45.866 20.802 45.866Q20.966 45.866 21.174 45.830Q21.383 45.795 21.590 45.714Q21.796 45.634 21.928 45.506Q22.060 45.378 22.060 45.203Q22.060 44.851 21.678 44.757Q21.297 44.663 20.795 44.663L20.176 44.663Q19.937 44.663 19.739 44.814Q19.540 44.964 19.540 45.203M20.590 43.416Q21.256 43.416 21.256 42.619Q21.256 41.819 20.590 41.819Q19.920 41.819 19.920 42.619Q19.920 43.416 20.590 43.416M24.726 44.670L23.174 44.670L23.174 44.390Q23.399 44.390 23.548 44.356Q23.697 44.321 23.697 44.181L23.697 42.332Q23.697 42.144 23.649 42.060Q23.601 41.977 23.504 41.958Q23.406 41.939 23.194 41.939L23.194 41.659L24.250 41.584L24.250 44.181Q24.250 44.321 24.382 44.356Q24.514 44.390 24.726 44.390L24.726 44.670M23.454 40.363Q23.454 40.192 23.577 40.073Q23.700 39.953 23.871 39.953Q24.039 39.953 24.162 40.073Q24.285 40.192 24.285 40.363Q24.285 40.538 24.162 40.661Q24.039 40.784 23.871 40.784Q23.700 40.784 23.577 40.661Q23.454 40.538 23.454 40.363M25.372 44.663L25.372 43.600Q25.372 43.576 25.399 43.549Q25.426 43.522 25.450 43.522L25.560 43.522Q25.624 43.522 25.638 43.580Q25.734 44.014 25.980 44.265Q26.226 44.516 26.640 44.516Q26.981 44.516 27.234 44.383Q27.487 44.250 27.487 43.942Q27.487 43.785 27.393 43.670Q27.299 43.556 27.161 43.487Q27.022 43.419 26.855 43.381L26.274 43.282Q25.918 43.214 25.645 42.993Q25.372 42.773 25.372 42.431Q25.372 42.182 25.483 42.007Q25.594 41.833 25.780 41.734Q25.966 41.635 26.182 41.592Q26.397 41.549 26.640 41.549Q27.053 41.549 27.333 41.731L27.549 41.556Q27.559 41.553 27.566 41.551Q27.573 41.549 27.583 41.549L27.634 41.549Q27.662 41.549 27.686 41.573Q27.709 41.597 27.709 41.625L27.709 42.472Q27.709 42.493 27.686 42.520Q27.662 42.547 27.634 42.547L27.521 42.547Q27.494 42.547 27.468 42.522Q27.443 42.496 27.443 42.472Q27.443 42.236 27.337 42.072Q27.231 41.908 27.048 41.826Q26.865 41.744 26.633 41.744Q26.305 41.744 26.048 41.847Q25.792 41.949 25.792 42.226Q25.792 42.421 25.975 42.530Q26.158 42.640 26.387 42.681L26.961 42.787Q27.207 42.835 27.421 42.963Q27.634 43.091 27.771 43.294Q27.908 43.498 27.908 43.747Q27.908 44.260 27.542 44.499Q27.176 44.738 26.640 44.738Q26.144 44.738 25.812 44.444L25.546 44.718Q25.525 44.738 25.498 44.738L25.450 44.738Q25.426 44.738 25.399 44.711Q25.372 44.684 25.372 44.663M29.063 43.829L29.063 41.932L28.424 41.932L28.424 41.710Q28.742 41.710 28.959 41.500Q29.176 41.290 29.277 40.980Q29.377 40.671 29.377 40.363L29.644 40.363L29.644 41.652L30.721 41.652L30.721 41.932L29.644 41.932L29.644 43.816Q29.644 44.092 29.748 44.291Q29.852 44.489 30.112 44.489Q30.269 44.489 30.375 44.385Q30.481 44.280 30.531 44.127Q30.581 43.973 30.581 43.816L30.581 43.402L30.847 43.402L30.847 43.829Q30.847 44.055 30.748 44.265Q30.649 44.475 30.464 44.607Q30.280 44.738 30.051 44.738Q29.613 44.738 29.338 44.501Q29.063 44.263 29.063 43.829M31.616 43.135Q31.616 42.814 31.741 42.525Q31.866 42.236 32.091 42.013Q32.317 41.789 32.613 41.669Q32.908 41.549 33.226 41.549Q33.554 41.549 33.816 41.649Q34.077 41.748 34.253 41.930Q34.429 42.113 34.523 42.371Q34.617 42.629 34.617 42.961Q34.617 43.053 34.535 43.074L32.279 43.074L32.279 43.135Q32.279 43.723 32.563 44.106Q32.847 44.489 33.414 44.489Q33.735 44.489 34.004 44.296Q34.272 44.103 34.361 43.788Q34.368 43.747 34.443 43.733L34.535 43.733Q34.617 43.757 34.617 43.829Q34.617 43.836 34.610 43.863Q34.498 44.260 34.127 44.499Q33.756 44.738 33.332 44.738Q32.894 44.738 32.495 44.530Q32.095 44.321 31.855 43.954Q31.616 43.587 31.616 43.135M32.286 42.865L34.101 42.865Q34.101 42.588 34.004 42.336Q33.906 42.083 33.708 41.927Q33.510 41.772 33.226 41.772Q32.949 41.772 32.736 41.930Q32.522 42.089 32.404 42.344Q32.286 42.599 32.286 42.865M36.955 44.670L35.219 44.670L35.219 44.390Q35.448 44.390 35.596 44.356Q35.745 44.321 35.745 44.181L35.745 42.332Q35.745 42.062 35.637 42.001Q35.530 41.939 35.219 41.939L35.219 41.659L36.248 41.584L36.248 42.291Q36.377 41.983 36.620 41.784Q36.863 41.584 37.181 41.584Q37.399 41.584 37.570 41.708Q37.741 41.833 37.741 42.045Q37.741 42.182 37.642 42.281Q37.543 42.380 37.410 42.380Q37.273 42.380 37.174 42.281Q37.075 42.182 37.075 42.045Q37.075 41.905 37.174 41.806Q36.883 41.806 36.683 42.002Q36.483 42.199 36.391 42.493Q36.299 42.787 36.299 43.067L36.299 44.181Q36.299 44.390 36.955 44.390L36.955 44.670M38.326 44.663L38.326 43.600Q38.326 43.576 38.353 43.549Q38.380 43.522 38.404 43.522L38.514 43.522Q38.579 43.522 38.592 43.580Q38.688 44.014 38.934 44.265Q39.180 44.516 39.594 44.516Q39.936 44.516 40.188 44.383Q40.441 44.250 40.441 43.942Q40.441 43.785 40.347 43.670Q40.253 43.556 40.115 43.487Q39.977 43.419 39.809 43.381L39.228 43.282Q38.873 43.214 38.599 42.993Q38.326 42.773 38.326 42.431Q38.326 42.182 38.437 42.007Q38.548 41.833 38.734 41.734Q38.920 41.635 39.136 41.592Q39.351 41.549 39.594 41.549Q40.007 41.549 40.288 41.731L40.503 41.556Q40.513 41.553 40.520 41.551Q40.527 41.549 40.537 41.549L40.588 41.549Q40.616 41.549 40.640 41.573Q40.664 41.597 40.664 41.625L40.664 42.472Q40.664 42.493 40.640 42.520Q40.616 42.547 40.588 42.547L40.476 42.547Q40.448 42.547 40.423 42.522Q40.397 42.496 40.397 42.472Q40.397 42.236 40.291 42.072Q40.185 41.908 40.002 41.826Q39.819 41.744 39.587 41.744Q39.259 41.744 39.002 41.847Q38.746 41.949 38.746 42.226Q38.746 42.421 38.929 42.530Q39.112 42.640 39.341 42.681L39.915 42.787Q40.161 42.835 40.375 42.963Q40.588 43.091 40.725 43.294Q40.862 43.498 40.862 43.747Q40.862 44.260 40.496 44.499Q40.130 44.738 39.594 44.738Q39.098 44.738 38.767 44.444L38.500 44.718Q38.479 44.738 38.452 44.738L38.404 44.738Q38.380 44.738 38.353 44.711Q38.326 44.684 38.326 44.663M41.990 45.900Q41.990 45.866 42.017 45.839Q42.287 45.610 42.436 45.287Q42.584 44.964 42.584 44.608L42.584 44.571Q42.475 44.670 42.311 44.670Q42.130 44.670 42.010 44.550Q41.891 44.431 41.891 44.250Q41.891 44.075 42.010 43.956Q42.130 43.836 42.311 43.836Q42.567 43.836 42.687 44.075Q42.807 44.315 42.807 44.608Q42.807 45.008 42.637 45.379Q42.468 45.750 42.171 46.006Q42.140 46.027 42.113 46.027Q42.072 46.027 42.031 45.986Q41.990 45.945 41.990 45.900\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(137.26 4.595)\">\u003Cpath d=\"M-63.207 44.670L-64.841 44.670L-64.841 44.390Q-64.612 44.390-64.463 44.356Q-64.314 44.321-64.314 44.181L-64.314 42.332Q-64.314 42.062-64.422 42.001Q-64.530 41.939-64.841 41.939L-64.841 41.659L-63.781 41.584L-63.781 42.233Q-63.610 41.925-63.306 41.754Q-63.002 41.584-62.657 41.584Q-62.257 41.584-61.980 41.724Q-61.703 41.864-61.618 42.212Q-61.450 41.919-61.151 41.751Q-60.852 41.584-60.507 41.584Q-60.001 41.584-59.717 41.807Q-59.433 42.031-59.433 42.527L-59.433 44.181Q-59.433 44.318-59.285 44.354Q-59.136 44.390-58.911 44.390L-58.911 44.670L-60.541 44.670L-60.541 44.390Q-60.315 44.390-60.165 44.354Q-60.015 44.318-60.015 44.181L-60.015 42.541Q-60.015 42.206-60.134 42.006Q-60.254 41.806-60.568 41.806Q-60.838 41.806-61.072 41.942Q-61.307 42.079-61.445 42.313Q-61.583 42.547-61.583 42.821L-61.583 44.181Q-61.583 44.318-61.435 44.354Q-61.286 44.390-61.060 44.390L-61.060 44.670L-62.691 44.670L-62.691 44.390Q-62.462 44.390-62.313 44.356Q-62.164 44.321-62.164 44.181L-62.164 42.541Q-62.164 42.206-62.284 42.006Q-62.404 41.806-62.718 41.806Q-62.988 41.806-63.222 41.942Q-63.456 42.079-63.595 42.313Q-63.733 42.547-63.733 42.821L-63.733 44.181Q-63.733 44.318-63.583 44.354Q-63.432 44.390-63.207 44.390L-63.207 44.670M-58.364 43.135Q-58.364 42.814-58.239 42.525Q-58.114 42.236-57.889 42.013Q-57.663 41.789-57.367 41.669Q-57.072 41.549-56.754 41.549Q-56.426 41.549-56.164 41.649Q-55.903 41.748-55.727 41.930Q-55.551 42.113-55.457 42.371Q-55.363 42.629-55.363 42.961Q-55.363 43.053-55.445 43.074L-57.701 43.074L-57.701 43.135Q-57.701 43.723-57.417 44.106Q-57.133 44.489-56.566 44.489Q-56.245 44.489-55.976 44.296Q-55.708 44.103-55.619 43.788Q-55.612 43.747-55.537 43.733L-55.445 43.733Q-55.363 43.757-55.363 43.829Q-55.363 43.836-55.370 43.863Q-55.482 44.260-55.853 44.499Q-56.224 44.738-56.648 44.738Q-57.085 44.738-57.485 44.530Q-57.885 44.321-58.124 43.954Q-58.364 43.587-58.364 43.135M-57.694 42.865L-55.879 42.865Q-55.879 42.588-55.976 42.336Q-56.074 42.083-56.272 41.927Q-56.470 41.772-56.754 41.772Q-57.031 41.772-57.244 41.930Q-57.458 42.089-57.576 42.344Q-57.694 42.599-57.694 42.865M-53.093 44.670L-54.727 44.670L-54.727 44.390Q-54.498 44.390-54.349 44.356Q-54.201 44.321-54.201 44.181L-54.201 42.332Q-54.201 42.062-54.308 42.001Q-54.416 41.939-54.727 41.939L-54.727 41.659L-53.667 41.584L-53.667 42.233Q-53.496 41.925-53.192 41.754Q-52.888 41.584-52.543 41.584Q-52.143 41.584-51.866 41.724Q-51.589 41.864-51.504 42.212Q-51.336 41.919-51.037 41.751Q-50.738 41.584-50.393 41.584Q-49.887 41.584-49.603 41.807Q-49.320 42.031-49.320 42.527L-49.320 44.181Q-49.320 44.318-49.171 44.354Q-49.022 44.390-48.797 44.390L-48.797 44.670L-50.427 44.670L-50.427 44.390Q-50.202 44.390-50.051 44.354Q-49.901 44.318-49.901 44.181L-49.901 42.541Q-49.901 42.206-50.020 42.006Q-50.140 41.806-50.454 41.806Q-50.724 41.806-50.959 41.942Q-51.193 42.079-51.331 42.313Q-51.470 42.547-51.470 42.821L-51.470 44.181Q-51.470 44.318-51.321 44.354Q-51.172 44.390-50.947 44.390L-50.947 44.670L-52.577 44.670L-52.577 44.390Q-52.348 44.390-52.199 44.356Q-52.051 44.321-52.051 44.181L-52.051 42.541Q-52.051 42.206-52.170 42.006Q-52.290 41.806-52.604 41.806Q-52.874 41.806-53.109 41.942Q-53.343 42.079-53.481 42.313Q-53.620 42.547-53.620 42.821L-53.620 44.181Q-53.620 44.318-53.469 44.354Q-53.319 44.390-53.093 44.390L-53.093 44.670M-48.250 43.187Q-48.250 42.845-48.115 42.546Q-47.980 42.247-47.741 42.023Q-47.501 41.799-47.183 41.674Q-46.866 41.549-46.534 41.549Q-46.090 41.549-45.690 41.765Q-45.290 41.980-45.056 42.358Q-44.822 42.735-44.822 43.187Q-44.822 43.528-44.963 43.812Q-45.105 44.096-45.350 44.303Q-45.594 44.509-45.903 44.624Q-46.213 44.738-46.534 44.738Q-46.965 44.738-47.366 44.537Q-47.768 44.335-48.009 43.983Q-48.250 43.631-48.250 43.187M-46.534 44.489Q-45.932 44.489-45.709 44.111Q-45.485 43.733-45.485 43.101Q-45.485 42.489-45.719 42.130Q-45.953 41.772-46.534 41.772Q-47.587 41.772-47.587 43.101Q-47.587 43.733-47.361 44.111Q-47.136 44.489-46.534 44.489M-42.477 44.670L-44.213 44.670L-44.213 44.390Q-43.984 44.390-43.836 44.356Q-43.687 44.321-43.687 44.181L-43.687 42.332Q-43.687 42.062-43.795 42.001Q-43.902 41.939-44.213 41.939L-44.213 41.659L-43.184 41.584L-43.184 42.291Q-43.055 41.983-42.812 41.784Q-42.569 41.584-42.251 41.584Q-42.033 41.584-41.862 41.708Q-41.691 41.833-41.691 42.045Q-41.691 42.182-41.790 42.281Q-41.889 42.380-42.022 42.380Q-42.159 42.380-42.258 42.281Q-42.357 42.182-42.357 42.045Q-42.357 41.905-42.258 41.806Q-42.549 41.806-42.749 42.002Q-42.949 42.199-43.041 42.493Q-43.133 42.787-43.133 43.067L-43.133 44.181Q-43.133 44.390-42.477 44.390L-42.477 44.670M-40.771 45.805Q-40.641 45.873-40.505 45.873Q-40.334 45.873-40.183 45.784Q-40.033 45.695-39.922 45.550Q-39.811 45.405-39.732 45.237L-39.469 44.670L-40.638 42.144Q-40.713 41.997-40.843 41.965Q-40.973 41.932-41.205 41.932L-41.205 41.652L-39.684 41.652L-39.684 41.932Q-40.033 41.932-40.033 42.079Q-40.030 42.100-40.028 42.117Q-40.026 42.134-40.026 42.144L-39.168 44.003L-38.396 42.332Q-38.362 42.264-38.362 42.185Q-38.362 42.072-38.445 42.002Q-38.529 41.932-38.642 41.932L-38.642 41.652L-37.446 41.652L-37.446 41.932Q-37.664 41.932-37.837 42.036Q-38.010 42.141-38.102 42.332L-39.438 45.237Q-39.609 45.607-39.879 45.853Q-40.149 46.099-40.505 46.099Q-40.775 46.099-40.994 45.933Q-41.212 45.767-41.212 45.504Q-41.212 45.367-41.120 45.278Q-41.028 45.190-40.888 45.190Q-40.751 45.190-40.662 45.278Q-40.573 45.367-40.573 45.504Q-40.573 45.607-40.626 45.685Q-40.679 45.764-40.771 45.805\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(137.26 4.595)\">\u003Cpath d=\"M-34.188 43.159Q-34.188 42.831-34.053 42.530Q-33.918 42.230-33.682 42.009Q-33.446 41.789-33.142 41.669Q-32.837 41.549-32.513 41.549Q-32.007 41.549-31.658 41.652Q-31.310 41.754-31.310 42.130Q-31.310 42.277-31.407 42.378Q-31.504 42.479-31.651 42.479Q-31.805 42.479-31.904 42.380Q-32.003 42.281-32.003 42.130Q-32.003 41.942-31.863 41.850Q-32.065 41.799-32.506 41.799Q-32.861 41.799-33.090 41.995Q-33.319 42.192-33.420 42.501Q-33.521 42.811-33.521 43.159Q-33.521 43.508-33.395 43.814Q-33.268 44.120-33.013 44.304Q-32.759 44.489-32.403 44.489Q-32.181 44.489-31.997 44.405Q-31.812 44.321-31.677 44.166Q-31.542 44.010-31.484 43.802Q-31.470 43.747-31.416 43.747L-31.303 43.747Q-31.272 43.747-31.250 43.771Q-31.228 43.795-31.228 43.829L-31.228 43.850Q-31.313 44.137-31.501 44.335Q-31.689 44.533-31.954 44.636Q-32.219 44.738-32.513 44.738Q-32.943 44.738-33.331 44.532Q-33.719 44.325-33.953 43.962Q-34.188 43.600-34.188 43.159M-30.681 43.187Q-30.681 42.845-30.546 42.546Q-30.411 42.247-30.171 42.023Q-29.932 41.799-29.614 41.674Q-29.296 41.549-28.965 41.549Q-28.521 41.549-28.121 41.765Q-27.721 41.980-27.487 42.358Q-27.252 42.735-27.252 43.187Q-27.252 43.528-27.394 43.812Q-27.536 44.096-27.781 44.303Q-28.025 44.509-28.334 44.624Q-28.644 44.738-28.965 44.738Q-29.396 44.738-29.797 44.537Q-30.199 44.335-30.440 43.983Q-30.681 43.631-30.681 43.187M-28.965 44.489Q-28.363 44.489-28.139 44.111Q-27.916 43.733-27.916 43.101Q-27.916 42.489-28.150 42.130Q-28.384 41.772-28.965 41.772Q-30.018 41.772-30.018 43.101Q-30.018 43.733-29.792 44.111Q-29.566 44.489-28.965 44.489M-24.976 44.670L-26.610 44.670L-26.610 44.390Q-26.381 44.390-26.232 44.356Q-26.084 44.321-26.084 44.181L-26.084 42.332Q-26.084 42.062-26.191 42.001Q-26.299 41.939-26.610 41.939L-26.610 41.659L-25.550 41.584L-25.550 42.233Q-25.379 41.925-25.075 41.754Q-24.771 41.584-24.426 41.584Q-24.026 41.584-23.749 41.724Q-23.472 41.864-23.387 42.212Q-23.219 41.919-22.920 41.751Q-22.621 41.584-22.276 41.584Q-21.770 41.584-21.486 41.807Q-21.203 42.031-21.203 42.527L-21.203 44.181Q-21.203 44.318-21.054 44.354Q-20.905 44.390-20.680 44.390L-20.680 44.670L-22.310 44.670L-22.310 44.390Q-22.085 44.390-21.934 44.354Q-21.784 44.318-21.784 44.181L-21.784 42.541Q-21.784 42.206-21.903 42.006Q-22.023 41.806-22.337 41.806Q-22.607 41.806-22.842 41.942Q-23.076 42.079-23.214 42.313Q-23.353 42.547-23.353 42.821L-23.353 44.181Q-23.353 44.318-23.204 44.354Q-23.055 44.390-22.830 44.390L-22.830 44.670L-24.460 44.670L-24.460 44.390Q-24.231 44.390-24.082 44.356Q-23.934 44.321-23.934 44.181L-23.934 42.541Q-23.934 42.206-24.053 42.006Q-24.173 41.806-24.487 41.806Q-24.757 41.806-24.992 41.942Q-25.226 42.079-25.364 42.313Q-25.502 42.547-25.502 42.821L-25.502 44.181Q-25.502 44.318-25.352 44.354Q-25.202 44.390-24.976 44.390L-24.976 44.670M-18.410 44.670L-20.044 44.670L-20.044 44.390Q-19.815 44.390-19.666 44.356Q-19.518 44.321-19.518 44.181L-19.518 42.332Q-19.518 42.062-19.625 42.001Q-19.733 41.939-20.044 41.939L-20.044 41.659L-18.984 41.584L-18.984 42.233Q-18.814 41.925-18.509 41.754Q-18.205 41.584-17.860 41.584Q-17.460 41.584-17.183 41.724Q-16.906 41.864-16.821 42.212Q-16.653 41.919-16.354 41.751Q-16.055 41.584-15.710 41.584Q-15.204 41.584-14.920 41.807Q-14.637 42.031-14.637 42.527L-14.637 44.181Q-14.637 44.318-14.488 44.354Q-14.339 44.390-14.114 44.390L-14.114 44.670L-15.744 44.670L-15.744 44.390Q-15.519 44.390-15.368 44.354Q-15.218 44.318-15.218 44.181L-15.218 42.541Q-15.218 42.206-15.337 42.006Q-15.457 41.806-15.772 41.806Q-16.042 41.806-16.276 41.942Q-16.510 42.079-16.648 42.313Q-16.787 42.547-16.787 42.821L-16.787 44.181Q-16.787 44.318-16.638 44.354Q-16.489 44.390-16.264 44.390L-16.264 44.670L-17.894 44.670L-17.894 44.390Q-17.665 44.390-17.516 44.356Q-17.368 44.321-17.368 44.181L-17.368 42.541Q-17.368 42.206-17.487 42.006Q-17.607 41.806-17.921 41.806Q-18.191 41.806-18.426 41.942Q-18.660 42.079-18.798 42.313Q-18.937 42.547-18.937 42.821L-18.937 44.181Q-18.937 44.318-18.786 44.354Q-18.636 44.390-18.410 44.390L-18.410 44.670M-11.909 44.670L-13.461 44.670L-13.461 44.390Q-13.235 44.390-13.087 44.356Q-12.938 44.321-12.938 44.181L-12.938 42.332Q-12.938 42.144-12.986 42.060Q-13.034 41.977-13.131 41.958Q-13.229 41.939-13.440 41.939L-13.440 41.659L-12.384 41.584L-12.384 44.181Q-12.384 44.321-12.253 44.356Q-12.121 44.390-11.909 44.390L-11.909 44.670M-13.181 40.363Q-13.181 40.192-13.058 40.073Q-12.935 39.953-12.764 39.953Q-12.596 39.953-12.473 40.073Q-12.350 40.192-12.350 40.363Q-12.350 40.538-12.473 40.661Q-12.596 40.784-12.764 40.784Q-12.935 40.784-13.058 40.661Q-13.181 40.538-13.181 40.363M-10.737 43.829L-10.737 41.932L-11.376 41.932L-11.376 41.710Q-11.058 41.710-10.841 41.500Q-10.624 41.290-10.523 40.980Q-10.422 40.671-10.422 40.363L-10.156 40.363L-10.156 41.652L-9.079 41.652L-9.079 41.932L-10.156 41.932L-10.156 43.816Q-10.156 44.092-10.052 44.291Q-9.947 44.489-9.688 44.489Q-9.530 44.489-9.424 44.385Q-9.318 44.280-9.269 44.127Q-9.219 43.973-9.219 43.816L-9.219 43.402L-8.953 43.402L-8.953 43.829Q-8.953 44.055-9.052 44.265Q-9.151 44.475-9.335 44.607Q-9.520 44.738-9.749 44.738Q-10.187 44.738-10.462 44.501Q-10.737 44.263-10.737 43.829\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(137.26 4.595)\">\u003Cpath d=\"M-4.897 43.829L-4.897 41.932L-5.536 41.932L-5.536 41.710Q-5.218 41.710-5.001 41.500Q-4.784 41.290-4.684 40.980Q-4.583 40.671-4.583 40.363L-4.316 40.363L-4.316 41.652L-3.239 41.652L-3.239 41.932L-4.316 41.932L-4.316 43.816Q-4.316 44.092-4.212 44.291Q-4.108 44.489-3.848 44.489Q-3.691 44.489-3.585 44.385Q-3.479 44.280-3.429 44.127Q-3.380 43.973-3.380 43.816L-3.380 43.402L-3.113 43.402L-3.113 43.829Q-3.113 44.055-3.212 44.265Q-3.311 44.475-3.496 44.607Q-3.680 44.738-3.909 44.738Q-4.347 44.738-4.622 44.501Q-4.897 44.263-4.897 43.829M-2.344 43.187Q-2.344 42.845-2.209 42.546Q-2.074 42.247-1.835 42.023Q-1.595 41.799-1.278 41.674Q-0.960 41.549-0.628 41.549Q-0.184 41.549 0.216 41.765Q0.616 41.980 0.850 42.358Q1.084 42.735 1.084 43.187Q1.084 43.528 0.942 43.812Q0.801 44.096 0.556 44.303Q0.312 44.509 0.002 44.624Q-0.307 44.738-0.628 44.738Q-1.059 44.738-1.460 44.537Q-1.862 44.335-2.103 43.983Q-2.344 43.631-2.344 43.187M-0.628 44.489Q-0.027 44.489 0.197 44.111Q0.421 43.733 0.421 43.101Q0.421 42.489 0.187 42.130Q-0.047 41.772-0.628 41.772Q-1.681 41.772-1.681 43.101Q-1.681 43.733-1.455 44.111Q-1.230 44.489-0.628 44.489M1.638 45.203Q1.638 44.957 1.835 44.773Q2.031 44.588 2.287 44.509Q2.151 44.397 2.079 44.236Q2.007 44.075 2.007 43.894Q2.007 43.573 2.219 43.327Q1.884 43.029 1.884 42.619Q1.884 42.158 2.274 41.871Q2.663 41.584 3.142 41.584Q3.614 41.584 3.949 41.830Q4.123 41.676 4.333 41.594Q4.543 41.512 4.772 41.512Q4.936 41.512 5.058 41.619Q5.179 41.727 5.179 41.891Q5.179 41.987 5.107 42.059Q5.035 42.130 4.943 42.130Q4.844 42.130 4.774 42.057Q4.704 41.983 4.704 41.884Q4.704 41.830 4.718 41.799L4.724 41.785Q4.731 41.765 4.740 41.754Q4.748 41.744 4.752 41.737Q4.396 41.737 4.109 41.960Q4.396 42.253 4.396 42.619Q4.396 42.934 4.212 43.166Q4.027 43.399 3.738 43.527Q3.449 43.655 3.142 43.655Q2.940 43.655 2.749 43.605Q2.557 43.556 2.380 43.446Q2.287 43.573 2.287 43.716Q2.287 43.898 2.416 44.033Q2.544 44.168 2.728 44.168L3.361 44.168Q3.808 44.168 4.178 44.239Q4.547 44.311 4.806 44.540Q5.066 44.769 5.066 45.203Q5.066 45.524 4.771 45.726Q4.475 45.928 4.072 46.017Q3.668 46.106 3.354 46.106Q3.036 46.106 2.633 46.017Q2.229 45.928 1.934 45.726Q1.638 45.524 1.638 45.203M2.093 45.203Q2.093 45.432 2.311 45.581Q2.530 45.730 2.822 45.798Q3.115 45.866 3.354 45.866Q3.518 45.866 3.726 45.830Q3.935 45.795 4.142 45.714Q4.348 45.634 4.480 45.506Q4.612 45.378 4.612 45.203Q4.612 44.851 4.231 44.757Q3.849 44.663 3.347 44.663L2.728 44.663Q2.489 44.663 2.291 44.814Q2.093 44.964 2.093 45.203M3.142 43.416Q3.808 43.416 3.808 42.619Q3.808 41.819 3.142 41.819Q2.472 41.819 2.472 42.619Q2.472 43.416 3.142 43.416M5.620 43.135Q5.620 42.814 5.745 42.525Q5.869 42.236 6.095 42.013Q6.321 41.789 6.616 41.669Q6.912 41.549 7.230 41.549Q7.558 41.549 7.819 41.649Q8.081 41.748 8.257 41.930Q8.433 42.113 8.527 42.371Q8.621 42.629 8.621 42.961Q8.621 43.053 8.539 43.074L6.283 43.074L6.283 43.135Q6.283 43.723 6.567 44.106Q6.850 44.489 7.418 44.489Q7.739 44.489 8.007 44.296Q8.276 44.103 8.365 43.788Q8.371 43.747 8.447 43.733L8.539 43.733Q8.621 43.757 8.621 43.829Q8.621 43.836 8.614 43.863Q8.501 44.260 8.130 44.499Q7.760 44.738 7.336 44.738Q6.898 44.738 6.498 44.530Q6.098 44.321 5.859 43.954Q5.620 43.587 5.620 43.135M6.290 42.865L8.105 42.865Q8.105 42.588 8.007 42.336Q7.910 42.083 7.712 41.927Q7.513 41.772 7.230 41.772Q6.953 41.772 6.739 41.930Q6.526 42.089 6.408 42.344Q6.290 42.599 6.290 42.865M9.735 43.829L9.735 41.932L9.096 41.932L9.096 41.710Q9.414 41.710 9.631 41.500Q9.848 41.290 9.949 40.980Q10.050 40.671 10.050 40.363L10.316 40.363L10.316 41.652L11.393 41.652L11.393 41.932L10.316 41.932L10.316 43.816Q10.316 44.092 10.420 44.291Q10.525 44.489 10.784 44.489Q10.942 44.489 11.048 44.385Q11.154 44.280 11.203 44.127Q11.253 43.973 11.253 43.816L11.253 43.402L11.519 43.402L11.519 43.829Q11.519 44.055 11.420 44.265Q11.321 44.475 11.137 44.607Q10.952 44.738 10.723 44.738Q10.285 44.738 10.010 44.501Q9.735 44.263 9.735 43.829M14.011 44.670L12.377 44.670L12.377 44.390Q12.606 44.390 12.755 44.356Q12.904 44.321 12.904 44.181L12.904 40.562Q12.904 40.292 12.796 40.230Q12.688 40.169 12.377 40.169L12.377 39.888L13.457 39.813L13.457 42.199Q13.563 42.014 13.741 41.872Q13.919 41.731 14.127 41.657Q14.336 41.584 14.561 41.584Q15.067 41.584 15.351 41.807Q15.635 42.031 15.635 42.527L15.635 44.181Q15.635 44.318 15.783 44.354Q15.932 44.390 16.158 44.390L16.158 44.670L14.527 44.670L14.527 44.390Q14.756 44.390 14.905 44.356Q15.054 44.321 15.054 44.181L15.054 42.541Q15.054 42.206 14.934 42.006Q14.814 41.806 14.500 41.806Q14.230 41.806 13.996 41.942Q13.762 42.079 13.623 42.313Q13.485 42.547 13.485 42.821L13.485 44.181Q13.485 44.318 13.635 44.354Q13.785 44.390 14.011 44.390L14.011 44.670M16.704 43.135Q16.704 42.814 16.829 42.525Q16.954 42.236 17.179 42.013Q17.405 41.789 17.701 41.669Q17.996 41.549 18.314 41.549Q18.642 41.549 18.904 41.649Q19.165 41.748 19.341 41.930Q19.517 42.113 19.611 42.371Q19.705 42.629 19.705 42.961Q19.705 43.053 19.623 43.074L17.367 43.074L17.367 43.135Q17.367 43.723 17.651 44.106Q17.935 44.489 18.502 44.489Q18.824 44.489 19.092 44.296Q19.360 44.103 19.449 43.788Q19.456 43.747 19.531 43.733L19.623 43.733Q19.705 43.757 19.705 43.829Q19.705 43.836 19.699 43.863Q19.586 44.260 19.215 44.499Q18.844 44.738 18.420 44.738Q17.983 44.738 17.583 44.530Q17.183 44.321 16.944 43.954Q16.704 43.587 16.704 43.135M17.374 42.865L19.189 42.865Q19.189 42.588 19.092 42.336Q18.994 42.083 18.796 41.927Q18.598 41.772 18.314 41.772Q18.037 41.772 17.824 41.930Q17.610 42.089 17.492 42.344Q17.374 42.599 17.374 42.865M22.043 44.670L20.307 44.670L20.307 44.390Q20.536 44.390 20.685 44.356Q20.833 44.321 20.833 44.181L20.833 42.332Q20.833 42.062 20.726 42.001Q20.618 41.939 20.307 41.939L20.307 41.659L21.336 41.584L21.336 42.291Q21.466 41.983 21.708 41.784Q21.951 41.584 22.269 41.584Q22.488 41.584 22.658 41.708Q22.829 41.833 22.829 42.045Q22.829 42.182 22.730 42.281Q22.631 42.380 22.498 42.380Q22.361 42.380 22.262 42.281Q22.163 42.182 22.163 42.045Q22.163 41.905 22.262 41.806Q21.971 41.806 21.772 42.002Q21.572 42.199 21.479 42.493Q21.387 42.787 21.387 43.067L21.387 44.181Q21.387 44.390 22.043 44.390\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M68.524 60.32h116.08\"\u002F>\u003Cpath stroke=\"none\" d=\"m186.604 60.32-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-34.75 70.278H188.87\"\u002F>\u003Cpath stroke=\"none\" d=\"m-36.75 70.278 3.2 1.6-1.2-1.6 1.2-1.6M190.871 70.278l-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(94.35 34.001)\">\u003Cpath d=\"M-64.930 43.187Q-64.930 42.845-64.795 42.546Q-64.660 42.247-64.420 42.023Q-64.181 41.799-63.863 41.674Q-63.545 41.549-63.214 41.549Q-62.769 41.549-62.370 41.765Q-61.970 41.980-61.735 42.358Q-61.501 42.735-61.501 43.187Q-61.501 43.528-61.643 43.812Q-61.785 44.096-62.029 44.303Q-62.274 44.509-62.583 44.624Q-62.892 44.738-63.214 44.738Q-63.644 44.738-64.046 44.537Q-64.448 44.335-64.689 43.983Q-64.930 43.631-64.930 43.187M-63.214 44.489Q-62.612 44.489-62.388 44.111Q-62.164 43.733-62.164 43.101Q-62.164 42.489-62.399 42.130Q-62.633 41.772-63.214 41.772Q-64.266 41.772-64.266 43.101Q-64.266 43.733-64.041 44.111Q-63.815 44.489-63.214 44.489M-59.225 44.670L-60.859 44.670L-60.859 44.390Q-60.630 44.390-60.481 44.356Q-60.332 44.321-60.332 44.181L-60.332 42.332Q-60.332 42.062-60.440 42.001Q-60.548 41.939-60.859 41.939L-60.859 41.659L-59.799 41.584L-59.799 42.233Q-59.628 41.925-59.324 41.754Q-59.020 41.584-58.675 41.584Q-58.169 41.584-57.885 41.807Q-57.601 42.031-57.601 42.527L-57.601 44.181Q-57.601 44.318-57.453 44.354Q-57.304 44.390-57.078 44.390L-57.078 44.670L-58.709 44.670L-58.709 44.390Q-58.480 44.390-58.331 44.356Q-58.182 44.321-58.182 44.181L-58.182 42.541Q-58.182 42.206-58.302 42.006Q-58.422 41.806-58.736 41.806Q-59.006 41.806-59.240 41.942Q-59.474 42.079-59.613 42.313Q-59.751 42.547-59.751 42.821L-59.751 44.181Q-59.751 44.318-59.601 44.354Q-59.451 44.390-59.225 44.390L-59.225 44.670M-56.532 43.135Q-56.532 42.814-56.407 42.525Q-56.282 42.236-56.057 42.013Q-55.831 41.789-55.535 41.669Q-55.240 41.549-54.922 41.549Q-54.594 41.549-54.332 41.649Q-54.071 41.748-53.895 41.930Q-53.719 42.113-53.625 42.371Q-53.531 42.629-53.531 42.961Q-53.531 43.053-53.613 43.074L-55.869 43.074L-55.869 43.135Q-55.869 43.723-55.585 44.106Q-55.301 44.489-54.734 44.489Q-54.412 44.489-54.144 44.296Q-53.876 44.103-53.787 43.788Q-53.780 43.747-53.705 43.733L-53.613 43.733Q-53.531 43.757-53.531 43.829Q-53.531 43.836-53.537 43.863Q-53.650 44.260-54.021 44.499Q-54.392 44.738-54.816 44.738Q-55.253 44.738-55.653 44.530Q-56.053 44.321-56.292 43.954Q-56.532 43.587-56.532 43.135M-55.862 42.865L-54.047 42.865Q-54.047 42.588-54.144 42.336Q-54.242 42.083-54.440 41.927Q-54.638 41.772-54.922 41.772Q-55.199 41.772-55.412 41.930Q-55.626 42.089-55.744 42.344Q-55.862 42.599-55.862 42.865\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(94.35 34.001)\">\u003Cpath d=\"M-50.236 43.159Q-50.236 42.831-50.101 42.530Q-49.966 42.230-49.730 42.009Q-49.494 41.789-49.190 41.669Q-48.885 41.549-48.561 41.549Q-48.055 41.549-47.706 41.652Q-47.358 41.754-47.358 42.130Q-47.358 42.277-47.455 42.378Q-47.552 42.479-47.699 42.479Q-47.853 42.479-47.952 42.380Q-48.051 42.281-48.051 42.130Q-48.051 41.942-47.911 41.850Q-48.113 41.799-48.554 41.799Q-48.909 41.799-49.138 41.995Q-49.367 42.192-49.468 42.501Q-49.569 42.811-49.569 43.159Q-49.569 43.508-49.443 43.814Q-49.316 44.120-49.061 44.304Q-48.807 44.489-48.451 44.489Q-48.229 44.489-48.045 44.405Q-47.860 44.321-47.725 44.166Q-47.590 44.010-47.532 43.802Q-47.518 43.747-47.464 43.747L-47.351 43.747Q-47.320 43.747-47.298 43.771Q-47.276 43.795-47.276 43.829L-47.276 43.850Q-47.361 44.137-47.549 44.335Q-47.737 44.533-48.002 44.636Q-48.267 44.738-48.561 44.738Q-48.991 44.738-49.379 44.532Q-49.767 44.325-50.001 43.962Q-50.236 43.600-50.236 43.159M-46.353 45.805Q-46.223 45.873-46.086 45.873Q-45.915 45.873-45.765 45.784Q-45.614 45.695-45.503 45.550Q-45.392 45.405-45.314 45.237L-45.050 44.670L-46.219 42.144Q-46.295 41.997-46.425 41.965Q-46.554 41.932-46.787 41.932L-46.787 41.652L-45.266 41.652L-45.266 41.932Q-45.614 41.932-45.614 42.079Q-45.611 42.100-45.609 42.117Q-45.608 42.134-45.608 42.144L-44.750 44.003L-43.977 42.332Q-43.943 42.264-43.943 42.185Q-43.943 42.072-44.027 42.002Q-44.111 41.932-44.223 41.932L-44.223 41.652L-43.027 41.652L-43.027 41.932Q-43.246 41.932-43.418 42.036Q-43.591 42.141-43.683 42.332L-45.020 45.237Q-45.191 45.607-45.461 45.853Q-45.731 46.099-46.086 46.099Q-46.356 46.099-46.575 45.933Q-46.794 45.767-46.794 45.504Q-46.794 45.367-46.701 45.278Q-46.609 45.190-46.469 45.190Q-46.332 45.190-46.243 45.278Q-46.154 45.367-46.154 45.504Q-46.154 45.607-46.207 45.685Q-46.260 45.764-46.353 45.805M-42.487 43.159Q-42.487 42.831-42.352 42.530Q-42.217 42.230-41.981 42.009Q-41.745 41.789-41.441 41.669Q-41.137 41.549-40.812 41.549Q-40.306 41.549-39.958 41.652Q-39.609 41.754-39.609 42.130Q-39.609 42.277-39.706 42.378Q-39.804 42.479-39.951 42.479Q-40.105 42.479-40.204 42.380Q-40.303 42.281-40.303 42.130Q-40.303 41.942-40.163 41.850Q-40.364 41.799-40.805 41.799Q-41.161 41.799-41.390 41.995Q-41.619 42.192-41.720 42.501Q-41.821 42.811-41.821 43.159Q-41.821 43.508-41.694 43.814Q-41.568 44.120-41.313 44.304Q-41.058 44.489-40.703 44.489Q-40.481 44.489-40.296 44.405Q-40.112 44.321-39.977 44.166Q-39.842 44.010-39.783 43.802Q-39.770 43.747-39.715 43.747L-39.602 43.747Q-39.571 43.747-39.549 43.771Q-39.527 43.795-39.527 43.829L-39.527 43.850Q-39.612 44.137-39.800 44.335Q-39.988 44.533-40.253 44.636Q-40.518 44.738-40.812 44.738Q-41.243 44.738-41.631 44.532Q-42.019 44.325-42.253 43.962Q-42.487 43.600-42.487 43.159M-37.271 44.670L-38.874 44.670L-38.874 44.390Q-38.649 44.390-38.500 44.356Q-38.351 44.321-38.351 44.181L-38.351 40.562Q-38.351 40.292-38.459 40.230Q-38.567 40.169-38.874 40.169L-38.874 39.888L-37.798 39.813L-37.798 44.181Q-37.798 44.318-37.647 44.354Q-37.497 44.390-37.271 44.390L-37.271 44.670M-36.717 43.135Q-36.717 42.814-36.593 42.525Q-36.468 42.236-36.242 42.013Q-36.017 41.789-35.721 41.669Q-35.425 41.549-35.108 41.549Q-34.779 41.549-34.518 41.649Q-34.257 41.748-34.081 41.930Q-33.904 42.113-33.810 42.371Q-33.717 42.629-33.717 42.961Q-33.717 43.053-33.799 43.074L-36.054 43.074L-36.054 43.135Q-36.054 43.723-35.771 44.106Q-35.487 44.489-34.920 44.489Q-34.598 44.489-34.330 44.296Q-34.062 44.103-33.973 43.788Q-33.966 43.747-33.891 43.733L-33.799 43.733Q-33.717 43.757-33.717 43.829Q-33.717 43.836-33.723 43.863Q-33.836 44.260-34.207 44.499Q-34.578 44.738-35.002 44.738Q-35.439 44.738-35.839 44.530Q-36.239 44.321-36.478 43.954Q-36.717 43.587-36.717 43.135M-36.048 42.865L-34.233 42.865Q-34.233 42.588-34.330 42.336Q-34.427 42.083-34.626 41.927Q-34.824 41.772-35.108 41.772Q-35.384 41.772-35.598 41.930Q-35.812 42.089-35.930 42.344Q-36.048 42.599-36.048 42.865\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(94.35 34.001)\">\u003Cpath d=\"M-25.242 43.863L-30.075 43.863Q-30.143 43.853-30.189 43.807Q-30.235 43.761-30.235 43.689Q-30.235 43.624-30.189 43.578Q-30.143 43.532-30.075 43.522L-25.242 43.522Q-25.173 43.532-25.127 43.578Q-25.081 43.624-25.081 43.689Q-25.081 43.761-25.127 43.807Q-25.173 43.853-25.242 43.863M-25.242 42.325L-30.075 42.325Q-30.143 42.315-30.189 42.269Q-30.235 42.223-30.235 42.151Q-30.235 42.007-30.075 41.983L-25.242 41.983Q-25.081 42.007-25.081 42.151Q-25.081 42.223-25.127 42.269Q-25.173 42.315-25.242 42.325\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(94.35 34.001)\">\u003Cpath d=\"M-21.618 43.187Q-21.618 42.845-21.483 42.546Q-21.348 42.247-21.108 42.023Q-20.869 41.799-20.551 41.674Q-20.233 41.549-19.902 41.549Q-19.457 41.549-19.058 41.765Q-18.658 41.980-18.423 42.358Q-18.189 42.735-18.189 43.187Q-18.189 43.528-18.331 43.812Q-18.473 44.096-18.717 44.303Q-18.962 44.509-19.271 44.624Q-19.580 44.738-19.902 44.738Q-20.332 44.738-20.734 44.537Q-21.136 44.335-21.377 43.983Q-21.618 43.631-21.618 43.187M-19.902 44.489Q-19.300 44.489-19.076 44.111Q-18.852 43.733-18.852 43.101Q-18.852 42.489-19.087 42.130Q-19.321 41.772-19.902 41.772Q-20.954 41.772-20.954 43.101Q-20.954 43.733-20.729 44.111Q-20.503 44.489-19.902 44.489M-15.913 44.670L-17.547 44.670L-17.547 44.390Q-17.318 44.390-17.169 44.356Q-17.020 44.321-17.020 44.181L-17.020 42.332Q-17.020 42.062-17.128 42.001Q-17.236 41.939-17.547 41.939L-17.547 41.659L-16.487 41.584L-16.487 42.233Q-16.316 41.925-16.012 41.754Q-15.708 41.584-15.363 41.584Q-14.857 41.584-14.573 41.807Q-14.289 42.031-14.289 42.527L-14.289 44.181Q-14.289 44.318-14.141 44.354Q-13.992 44.390-13.766 44.390L-13.766 44.670L-15.397 44.670L-15.397 44.390Q-15.168 44.390-15.019 44.356Q-14.870 44.321-14.870 44.181L-14.870 42.541Q-14.870 42.206-14.990 42.006Q-15.110 41.806-15.424 41.806Q-15.694 41.806-15.928 41.942Q-16.162 42.079-16.301 42.313Q-16.439 42.547-16.439 42.821L-16.439 44.181Q-16.439 44.318-16.289 44.354Q-16.139 44.390-15.913 44.390L-15.913 44.670M-13.220 43.135Q-13.220 42.814-13.095 42.525Q-12.970 42.236-12.745 42.013Q-12.519 41.789-12.223 41.669Q-11.928 41.549-11.610 41.549Q-11.282 41.549-11.020 41.649Q-10.759 41.748-10.583 41.930Q-10.407 42.113-10.313 42.371Q-10.219 42.629-10.219 42.961Q-10.219 43.053-10.301 43.074L-12.557 43.074L-12.557 43.135Q-12.557 43.723-12.273 44.106Q-11.989 44.489-11.422 44.489Q-11.100 44.489-10.832 44.296Q-10.564 44.103-10.475 43.788Q-10.468 43.747-10.393 43.733L-10.301 43.733Q-10.219 43.757-10.219 43.829Q-10.219 43.836-10.225 43.863Q-10.338 44.260-10.709 44.499Q-11.080 44.738-11.504 44.738Q-11.941 44.738-12.341 44.530Q-12.741 44.321-12.980 43.954Q-13.220 43.587-13.220 43.135M-12.550 42.865L-10.735 42.865Q-10.735 42.588-10.832 42.336Q-10.930 42.083-11.128 41.927Q-11.326 41.772-11.610 41.772Q-11.887 41.772-12.100 41.930Q-12.314 42.089-12.432 42.344Q-12.550 42.599-12.550 42.865\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(94.35 34.001)\">\u003Cpath d=\"M-5.307 44.670L-6.859 44.670L-6.859 44.390Q-6.633 44.390-6.484 44.356Q-6.336 44.321-6.336 44.181L-6.336 42.332Q-6.336 42.144-6.384 42.060Q-6.431 41.977-6.529 41.958Q-6.626 41.939-6.838 41.939L-6.838 41.659L-5.782 41.584L-5.782 44.181Q-5.782 44.321-5.650 44.356Q-5.519 44.390-5.307 44.390L-5.307 44.670M-6.578 40.363Q-6.578 40.192-6.455 40.073Q-6.332 39.953-6.161 39.953Q-5.994 39.953-5.871 40.073Q-5.748 40.192-5.748 40.363Q-5.748 40.538-5.871 40.661Q-5.994 40.784-6.161 40.784Q-6.332 40.784-6.455 40.661Q-6.578 40.538-6.578 40.363M-2.979 44.670L-4.613 44.670L-4.613 44.390Q-4.384 44.390-4.235 44.356Q-4.087 44.321-4.087 44.181L-4.087 42.332Q-4.087 42.062-4.194 42.001Q-4.302 41.939-4.613 41.939L-4.613 41.659L-3.553 41.584L-3.553 42.233Q-3.383 41.925-3.078 41.754Q-2.774 41.584-2.429 41.584Q-1.923 41.584-1.639 41.807Q-1.356 42.031-1.356 42.527L-1.356 44.181Q-1.356 44.318-1.207 44.354Q-1.058 44.390-0.833 44.390L-0.833 44.670L-2.463 44.670L-2.463 44.390Q-2.234 44.390-2.085 44.356Q-1.937 44.321-1.937 44.181L-1.937 42.541Q-1.937 42.206-2.056 42.006Q-2.176 41.806-2.490 41.806Q-2.760 41.806-2.995 41.942Q-3.229 42.079-3.367 42.313Q-3.506 42.547-3.506 42.821L-3.506 44.181Q-3.506 44.318-3.355 44.354Q-3.205 44.390-2.979 44.390L-2.979 44.670M-0.245 44.663L-0.245 43.600Q-0.245 43.576-0.217 43.549Q-0.190 43.522-0.166 43.522L-0.057 43.522Q0.008 43.522 0.022 43.580Q0.117 44.014 0.364 44.265Q0.610 44.516 1.023 44.516Q1.365 44.516 1.618 44.383Q1.871 44.250 1.871 43.942Q1.871 43.785 1.777 43.670Q1.683 43.556 1.544 43.487Q1.406 43.419 1.239 43.381L0.658 43.282Q0.302 43.214 0.029 42.993Q-0.245 42.773-0.245 42.431Q-0.245 42.182-0.134 42.007Q-0.023 41.833 0.164 41.734Q0.350 41.635 0.565 41.592Q0.781 41.549 1.023 41.549Q1.437 41.549 1.717 41.731L1.932 41.556Q1.943 41.553 1.949 41.551Q1.956 41.549 1.967 41.549L2.018 41.549Q2.045 41.549 2.069 41.573Q2.093 41.597 2.093 41.625L2.093 42.472Q2.093 42.493 2.069 42.520Q2.045 42.547 2.018 42.547L1.905 42.547Q1.878 42.547 1.852 42.522Q1.826 42.496 1.826 42.472Q1.826 42.236 1.720 42.072Q1.615 41.908 1.432 41.826Q1.249 41.744 1.016 41.744Q0.688 41.744 0.432 41.847Q0.176 41.949 0.176 42.226Q0.176 42.421 0.358 42.530Q0.541 42.640 0.770 42.681L1.345 42.787Q1.591 42.835 1.804 42.963Q2.018 43.091 2.155 43.294Q2.291 43.498 2.291 43.747Q2.291 44.260 1.926 44.499Q1.560 44.738 1.023 44.738Q0.528 44.738 0.196 44.444L-0.071 44.718Q-0.091 44.738-0.118 44.738L-0.166 44.738Q-0.190 44.738-0.217 44.711Q-0.245 44.684-0.245 44.663M3.447 43.829L3.447 41.932L2.807 41.932L2.807 41.710Q3.125 41.710 3.342 41.500Q3.559 41.290 3.660 40.980Q3.761 40.671 3.761 40.363L4.028 40.363L4.028 41.652L5.104 41.652L5.104 41.932L4.028 41.932L4.028 43.816Q4.028 44.092 4.132 44.291Q4.236 44.489 4.496 44.489Q4.653 44.489 4.759 44.385Q4.865 44.280 4.915 44.127Q4.964 43.973 4.964 43.816L4.964 43.402L5.231 43.402L5.231 43.829Q5.231 44.055 5.132 44.265Q5.033 44.475 4.848 44.607Q4.663 44.738 4.434 44.738Q3.997 44.738 3.722 44.501Q3.447 44.263 3.447 43.829M7.791 44.670L6.054 44.670L6.054 44.390Q6.283 44.390 6.432 44.356Q6.581 44.321 6.581 44.181L6.581 42.332Q6.581 42.062 6.473 42.001Q6.366 41.939 6.054 41.939L6.054 41.659L7.083 41.584L7.083 42.291Q7.213 41.983 7.456 41.784Q7.699 41.584 8.016 41.584Q8.235 41.584 8.406 41.708Q8.577 41.833 8.577 42.045Q8.577 42.182 8.478 42.281Q8.379 42.380 8.245 42.380Q8.109 42.380 8.010 42.281Q7.910 42.182 7.910 42.045Q7.910 41.905 8.010 41.806Q7.719 41.806 7.519 42.002Q7.319 42.199 7.227 42.493Q7.135 42.787 7.135 43.067L7.135 44.181Q7.135 44.390 7.791 44.390L7.791 44.670M9.736 43.836L9.736 42.332Q9.736 42.062 9.628 42.001Q9.520 41.939 9.209 41.939L9.209 41.659L10.317 41.584L10.317 43.816L10.317 43.836Q10.317 44.116 10.368 44.260Q10.419 44.403 10.561 44.460Q10.703 44.516 10.990 44.516Q11.243 44.516 11.448 44.376Q11.653 44.236 11.769 44.010Q11.886 43.785 11.886 43.535L11.886 42.332Q11.886 42.062 11.778 42.001Q11.670 41.939 11.359 41.939L11.359 41.659L12.467 41.584L12.467 43.997Q12.467 44.188 12.520 44.270Q12.573 44.352 12.673 44.371Q12.774 44.390 12.990 44.390L12.990 44.670L11.913 44.738L11.913 44.174Q11.804 44.356 11.658 44.479Q11.513 44.602 11.327 44.670Q11.140 44.738 10.939 44.738Q9.736 44.738 9.736 43.836M13.577 43.159Q13.577 42.831 13.712 42.530Q13.847 42.230 14.083 42.009Q14.319 41.789 14.623 41.669Q14.928 41.549 15.252 41.549Q15.758 41.549 16.107 41.652Q16.455 41.754 16.455 42.130Q16.455 42.277 16.358 42.378Q16.261 42.479 16.114 42.479Q15.960 42.479 15.861 42.380Q15.762 42.281 15.762 42.130Q15.762 41.942 15.902 41.850Q15.700 41.799 15.259 41.799Q14.904 41.799 14.675 41.995Q14.446 42.192 14.345 42.501Q14.244 42.811 14.244 43.159Q14.244 43.508 14.370 43.814Q14.497 44.120 14.752 44.304Q15.006 44.489 15.362 44.489Q15.584 44.489 15.768 44.405Q15.953 44.321 16.088 44.166Q16.223 44.010 16.281 43.802Q16.295 43.747 16.349 43.747L16.462 43.747Q16.493 43.747 16.515 43.771Q16.537 43.795 16.537 43.829L16.537 43.850Q16.452 44.137 16.264 44.335Q16.076 44.533 15.811 44.636Q15.546 44.738 15.252 44.738Q14.822 44.738 14.434 44.532Q14.046 44.325 13.812 43.962Q13.577 43.600 13.577 43.159M17.652 43.829L17.652 41.932L17.012 41.932L17.012 41.710Q17.330 41.710 17.547 41.500Q17.764 41.290 17.865 40.980Q17.966 40.671 17.966 40.363L18.233 40.363L18.233 41.652L19.309 41.652L19.309 41.932L18.233 41.932L18.233 43.816Q18.233 44.092 18.337 44.291Q18.441 44.489 18.701 44.489Q18.858 44.489 18.964 44.385Q19.070 44.280 19.120 44.127Q19.169 43.973 19.169 43.816L19.169 43.402L19.436 43.402L19.436 43.829Q19.436 44.055 19.337 44.265Q19.238 44.475 19.053 44.607Q18.868 44.738 18.639 44.738Q18.202 44.738 17.927 44.501Q17.652 44.263 17.652 43.829M21.863 44.670L20.311 44.670L20.311 44.390Q20.536 44.390 20.685 44.356Q20.834 44.321 20.834 44.181L20.834 42.332Q20.834 42.144 20.786 42.060Q20.738 41.977 20.641 41.958Q20.543 41.939 20.331 41.939L20.331 41.659L21.387 41.584L21.387 44.181Q21.387 44.321 21.519 44.356Q21.651 44.390 21.863 44.390L21.863 44.670M20.591 40.363Q20.591 40.192 20.714 40.073Q20.837 39.953 21.008 39.953Q21.176 39.953 21.299 40.073Q21.422 40.192 21.422 40.363Q21.422 40.538 21.299 40.661Q21.176 40.784 21.008 40.784Q20.837 40.784 20.714 40.661Q20.591 40.538 20.591 40.363M22.468 43.187Q22.468 42.845 22.603 42.546Q22.738 42.247 22.977 42.023Q23.216 41.799 23.534 41.674Q23.852 41.549 24.183 41.549Q24.628 41.549 25.028 41.765Q25.428 41.980 25.662 42.358Q25.896 42.735 25.896 43.187Q25.896 43.528 25.754 43.812Q25.612 44.096 25.368 44.303Q25.123 44.509 24.814 44.624Q24.505 44.738 24.183 44.738Q23.753 44.738 23.351 44.537Q22.950 44.335 22.709 43.983Q22.468 43.631 22.468 43.187M24.183 44.489Q24.785 44.489 25.009 44.111Q25.233 43.733 25.233 43.101Q25.233 42.489 24.999 42.130Q24.764 41.772 24.183 41.772Q23.131 41.772 23.131 43.101Q23.131 43.733 23.356 44.111Q23.582 44.489 24.183 44.489M28.172 44.670L26.538 44.670L26.538 44.390Q26.767 44.390 26.916 44.356Q27.065 44.321 27.065 44.181L27.065 42.332Q27.065 42.062 26.957 42.001Q26.849 41.939 26.538 41.939L26.538 41.659L27.598 41.584L27.598 42.233Q27.769 41.925 28.073 41.754Q28.377 41.584 28.722 41.584Q29.228 41.584 29.512 41.807Q29.796 42.031 29.796 42.527L29.796 44.181Q29.796 44.318 29.944 44.354Q30.093 44.390 30.319 44.390L30.319 44.670L28.688 44.670L28.688 44.390Q28.917 44.390 29.066 44.356Q29.215 44.321 29.215 44.181L29.215 42.541Q29.215 42.206 29.095 42.006Q28.975 41.806 28.661 41.806Q28.391 41.806 28.157 41.942Q27.923 42.079 27.784 42.313Q27.646 42.547 27.646 42.821L27.646 44.181Q27.646 44.318 27.796 44.354Q27.947 44.390 28.172 44.390\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">One SEQ cycle. Between rising clock edges the combinational logic settles stage by stage — fetch, decode, execute, memory, PC selection — and the state elements hold still. At the edge, PC, CC, register file, and data memory all commit their new values simultaneously, and the next cycle begins from that state.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:623.723px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 467.792 69.550\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.403-43.617h56.905V-72.07h-56.905Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-20.447 6.706)\">\u003Cpath d=\"M-34.189-67.344L-36.654-67.344L-36.654-67.641Q-36.322-67.641-36.064-67.688Q-35.806-67.735-35.806-67.903L-35.806-72.246Q-35.806-72.512-36.654-72.512L-36.654-72.809L-34.189-72.809L-34.189-72.512Q-35.041-72.512-35.041-72.246L-35.041-67.903Q-35.041-67.641-34.189-67.641L-34.189-67.344M-31.728-67.344L-33.584-67.344L-33.584-67.641Q-33.310-67.641-33.142-67.688Q-32.974-67.735-32.974-67.903L-32.974-70.039Q-32.974-70.254-33.037-70.350Q-33.099-70.446-33.219-70.467Q-33.338-70.489-33.584-70.489L-33.584-70.785L-32.392-70.871L-32.392-70.137Q-32.279-70.352-32.086-70.520Q-31.892-70.688-31.654-70.780Q-31.416-70.871-31.162-70.871Q-29.994-70.871-29.994-69.793L-29.994-67.903Q-29.994-67.735-29.824-67.688Q-29.654-67.641-29.385-67.641L-29.385-67.344L-31.240-67.344L-31.240-67.641Q-30.967-67.641-30.799-67.688Q-30.631-67.735-30.631-67.903L-30.631-69.778Q-30.631-70.160-30.752-70.389Q-30.873-70.617-31.224-70.617Q-31.537-70.617-31.791-70.455Q-32.045-70.293-32.191-70.024Q-32.338-69.754-32.338-69.457L-32.338-67.903Q-32.338-67.735-32.168-67.688Q-31.998-67.641-31.728-67.641L-31.728-67.344M-28.896-67.352L-28.896-68.574Q-28.896-68.602-28.865-68.633Q-28.834-68.664-28.810-68.664L-28.705-68.664Q-28.635-68.664-28.619-68.602Q-28.556-68.281-28.418-68.041Q-28.279-67.801-28.047-67.660Q-27.814-67.520-27.506-67.520Q-27.267-67.520-27.058-67.580Q-26.849-67.641-26.713-67.789Q-26.576-67.938-26.576-68.184Q-26.576-68.438-26.787-68.604Q-26.998-68.770-27.267-68.824L-27.889-68.938Q-28.295-69.016-28.596-69.272Q-28.896-69.528-28.896-69.903Q-28.896-70.270-28.695-70.492Q-28.494-70.715-28.170-70.813Q-27.846-70.910-27.506-70.910Q-27.041-70.910-26.744-70.703L-26.521-70.887Q-26.498-70.910-26.467-70.910L-26.416-70.910Q-26.385-70.910-26.357-70.883Q-26.330-70.856-26.330-70.824L-26.330-69.840Q-26.330-69.809-26.355-69.780Q-26.381-69.750-26.416-69.750L-26.521-69.750Q-26.556-69.750-26.584-69.778Q-26.611-69.805-26.611-69.840Q-26.611-70.239-26.863-70.459Q-27.115-70.680-27.514-70.680Q-27.869-70.680-28.152-70.557Q-28.435-70.434-28.435-70.129Q-28.435-69.910-28.234-69.778Q-28.033-69.645-27.787-69.602L-27.162-69.489Q-26.732-69.399-26.424-69.102Q-26.115-68.805-26.115-68.391Q-26.115-67.821-26.514-67.543Q-26.912-67.266-27.506-67.266Q-28.056-67.266-28.408-67.602L-28.705-67.289Q-28.728-67.266-28.764-67.266L-28.810-67.266Q-28.834-67.266-28.865-67.297Q-28.896-67.328-28.896-67.352M-24.963-68.305L-24.963-70.496L-25.666-70.496L-25.666-70.750Q-25.310-70.750-25.068-70.983Q-24.826-71.215-24.715-71.563Q-24.603-71.910-24.603-72.266L-24.322-72.266L-24.322-70.793L-23.146-70.793L-23.146-70.496L-24.322-70.496L-24.322-68.321Q-24.322-68-24.203-67.772Q-24.084-67.543-23.803-67.543Q-23.623-67.543-23.506-67.666Q-23.389-67.789-23.336-67.969Q-23.283-68.149-23.283-68.321L-23.283-68.793L-23.002-68.793L-23.002-68.305Q-23.002-68.051-23.107-67.811Q-23.213-67.571-23.410-67.418Q-23.607-67.266-23.865-67.266Q-24.181-67.266-24.433-67.389Q-24.685-67.512-24.824-67.746Q-24.963-67.981-24.963-68.305M-20.275-67.344L-22.256-67.344L-22.256-67.641Q-21.986-67.641-21.818-67.686Q-21.650-67.731-21.650-67.903L-21.650-70.039Q-21.650-70.254-21.713-70.350Q-21.775-70.446-21.892-70.467Q-22.010-70.489-22.256-70.489L-22.256-70.785L-21.088-70.871L-21.088-70.086Q-21.010-70.297-20.857-70.483Q-20.705-70.668-20.506-70.770Q-20.306-70.871-20.080-70.871Q-19.834-70.871-19.642-70.727Q-19.451-70.582-19.451-70.352Q-19.451-70.196-19.556-70.086Q-19.662-69.977-19.818-69.977Q-19.974-69.977-20.084-70.086Q-20.193-70.196-20.193-70.352Q-20.193-70.512-20.088-70.617Q-20.412-70.617-20.627-70.389Q-20.842-70.160-20.937-69.821Q-21.033-69.481-21.033-69.176L-21.033-67.903Q-21.033-67.735-20.806-67.688Q-20.580-67.641-20.275-67.641L-20.275-67.344M-18.287-68.297L-18.287-70.039Q-18.287-70.254-18.349-70.350Q-18.412-70.446-18.531-70.467Q-18.650-70.489-18.896-70.489L-18.896-70.785L-17.650-70.871L-17.650-68.321L-17.650-68.297Q-17.650-67.985-17.596-67.823Q-17.541-67.660-17.390-67.590Q-17.240-67.520-16.920-67.520Q-16.490-67.520-16.217-67.858Q-15.943-68.196-15.943-68.641L-15.943-70.039Q-15.943-70.254-16.006-70.350Q-16.068-70.446-16.187-70.467Q-16.306-70.489-16.553-70.489L-16.553-70.785L-15.306-70.871L-15.306-68.086Q-15.306-67.875-15.244-67.780Q-15.181-67.684-15.062-67.662Q-14.943-67.641-14.697-67.641L-14.697-67.344L-15.920-67.266L-15.920-67.887Q-16.088-67.598-16.369-67.432Q-16.650-67.266-16.971-67.266Q-18.287-67.266-18.287-68.297M-14.209-69.071Q-14.209-69.567-13.959-69.992Q-13.709-70.418-13.289-70.664Q-12.869-70.910-12.369-70.910Q-11.830-70.910-11.439-70.785Q-11.049-70.660-11.049-70.246Q-11.049-70.141-11.099-70.049Q-11.150-69.957-11.242-69.906Q-11.334-69.856-11.443-69.856Q-11.549-69.856-11.640-69.906Q-11.732-69.957-11.783-70.049Q-11.834-70.141-11.834-70.246Q-11.834-70.469-11.666-70.574Q-11.889-70.633-12.361-70.633Q-12.658-70.633-12.873-70.494Q-13.088-70.356-13.219-70.125Q-13.349-69.895-13.408-69.625Q-13.467-69.356-13.467-69.071Q-13.467-68.676-13.334-68.326Q-13.201-67.977-12.930-67.760Q-12.658-67.543-12.260-67.543Q-11.885-67.543-11.609-67.760Q-11.334-67.977-11.232-68.336Q-11.217-68.399-11.154-68.399L-11.049-68.399Q-11.014-68.399-10.988-68.371Q-10.963-68.344-10.963-68.305L-10.963-68.281Q-11.096-67.801-11.480-67.533Q-11.865-67.266-12.369-67.266Q-12.732-67.266-13.066-67.403Q-13.400-67.539-13.660-67.789Q-13.920-68.039-14.064-68.375Q-14.209-68.711-14.209-69.071M-9.849-68.305L-9.849-70.496L-10.553-70.496L-10.553-70.750Q-10.197-70.750-9.955-70.983Q-9.713-71.215-9.601-71.563Q-9.490-71.910-9.490-72.266L-9.209-72.266L-9.209-70.793L-8.033-70.793L-8.033-70.496L-9.209-70.496L-9.209-68.321Q-9.209-68-9.090-67.772Q-8.971-67.543-8.689-67.543Q-8.510-67.543-8.392-67.666Q-8.275-67.789-8.222-67.969Q-8.170-68.149-8.170-68.321L-8.170-68.793L-7.889-68.793L-7.889-68.305Q-7.889-68.051-7.994-67.811Q-8.099-67.571-8.297-67.418Q-8.494-67.266-8.752-67.266Q-9.068-67.266-9.320-67.389Q-9.572-67.512-9.711-67.746Q-9.849-67.981-9.849-68.305M-5.310-67.344L-7.088-67.344L-7.088-67.641Q-6.814-67.641-6.646-67.688Q-6.478-67.735-6.478-67.903L-6.478-70.039Q-6.478-70.254-6.535-70.350Q-6.592-70.446-6.705-70.467Q-6.818-70.489-7.064-70.489L-7.064-70.785L-5.865-70.871L-5.865-67.903Q-5.865-67.735-5.719-67.688Q-5.572-67.641-5.310-67.641L-5.310-67.344M-6.752-72.266Q-6.752-72.457-6.617-72.588Q-6.482-72.719-6.287-72.719Q-6.166-72.719-6.062-72.656Q-5.959-72.594-5.896-72.490Q-5.834-72.387-5.834-72.266Q-5.834-72.071-5.965-71.936Q-6.096-71.801-6.287-71.801Q-6.486-71.801-6.619-71.934Q-6.752-72.067-6.752-72.266M-4.810-69.039Q-4.810-69.543-4.555-69.975Q-4.299-70.406-3.863-70.658Q-3.428-70.910-2.928-70.910Q-2.541-70.910-2.199-70.766Q-1.857-70.621-1.596-70.360Q-1.334-70.098-1.191-69.762Q-1.049-69.426-1.049-69.039Q-1.049-68.547-1.312-68.137Q-1.576-67.727-2.006-67.496Q-2.435-67.266-2.928-67.266Q-3.420-67.266-3.853-67.498Q-4.287-67.731-4.549-68.139Q-4.810-68.547-4.810-69.039M-2.928-67.543Q-2.471-67.543-2.219-67.766Q-1.967-67.989-1.879-68.340Q-1.791-68.692-1.791-69.137Q-1.791-69.567-1.885-69.905Q-1.978-70.242-2.232-70.449Q-2.486-70.656-2.928-70.656Q-3.576-70.656-3.820-70.240Q-4.064-69.824-4.064-69.137Q-4.064-68.692-3.976-68.340Q-3.889-67.989-3.637-67.766Q-3.385-67.543-2.928-67.543M1.365-67.344L-0.490-67.344L-0.490-67.641Q-0.217-67.641-0.049-67.688Q0.119-67.735 0.119-67.903L0.119-70.039Q0.119-70.254 0.057-70.350Q-0.006-70.446-0.125-70.467Q-0.244-70.489-0.490-70.489L-0.490-70.785L0.701-70.871L0.701-70.137Q0.815-70.352 1.008-70.520Q1.201-70.688 1.440-70.780Q1.678-70.871 1.932-70.871Q3.100-70.871 3.100-69.793L3.100-67.903Q3.100-67.735 3.270-67.688Q3.440-67.641 3.709-67.641L3.709-67.344L1.854-67.344L1.854-67.641Q2.127-67.641 2.295-67.688Q2.463-67.735 2.463-67.903L2.463-69.778Q2.463-70.160 2.342-70.389Q2.221-70.617 1.869-70.617Q1.557-70.617 1.303-70.455Q1.049-70.293 0.903-70.024Q0.756-69.754 0.756-69.457L0.756-67.903Q0.756-67.735 0.926-67.688Q1.096-67.641 1.365-67.641\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-20.447 6.706)\">\u003Cpath d=\"M-29.333-57.844L-31.189-57.844L-31.189-58.141Q-30.915-58.141-30.747-58.188Q-30.579-58.235-30.579-58.403L-30.579-60.539Q-30.579-60.754-30.642-60.850Q-30.704-60.946-30.823-60.967Q-30.942-60.989-31.189-60.989L-31.189-61.285L-29.997-61.371L-29.997-60.637Q-29.884-60.852-29.690-61.020Q-29.497-61.188-29.259-61.280Q-29.021-61.371-28.767-61.371Q-27.806-61.371-27.630-60.660Q-27.446-60.989-27.118-61.180Q-26.790-61.371-26.411-61.371Q-25.235-61.371-25.235-60.293L-25.235-58.403Q-25.235-58.235-25.067-58.188Q-24.899-58.141-24.630-58.141L-24.630-57.844L-26.485-57.844L-26.485-58.141Q-26.212-58.141-26.044-58.186Q-25.876-58.231-25.876-58.403L-25.876-60.278Q-25.876-60.664-26.001-60.891Q-26.126-61.117-26.478-61.117Q-26.782-61.117-27.038-60.955Q-27.294-60.793-27.442-60.524Q-27.591-60.254-27.591-59.957L-27.591-58.403Q-27.591-58.235-27.421-58.188Q-27.251-58.141-26.981-58.141L-26.981-57.844L-28.837-57.844L-28.837-58.141Q-28.564-58.141-28.396-58.188Q-28.228-58.235-28.228-58.403L-28.228-60.278Q-28.228-60.664-28.353-60.891Q-28.478-61.117-28.829-61.117Q-29.134-61.117-29.390-60.955Q-29.646-60.793-29.794-60.524Q-29.942-60.254-29.942-59.957L-29.942-58.403Q-29.942-58.235-29.772-58.188Q-29.603-58.141-29.333-58.141L-29.333-57.844M-24.185-59.598Q-24.185-60.078-23.952-60.494Q-23.720-60.910-23.310-61.160Q-22.899-61.410-22.423-61.410Q-21.692-61.410-21.294-60.969Q-20.896-60.528-20.896-59.797Q-20.896-59.692-20.989-59.668L-23.439-59.668L-23.439-59.598Q-23.439-59.188-23.317-58.832Q-23.196-58.477-22.925-58.260Q-22.653-58.043-22.224-58.043Q-21.860-58.043-21.564-58.272Q-21.267-58.500-21.165-58.852Q-21.157-58.899-21.071-58.914L-20.989-58.914Q-20.896-58.887-20.896-58.805Q-20.896-58.797-20.903-58.766Q-20.966-58.539-21.105-58.356Q-21.243-58.172-21.435-58.039Q-21.626-57.907-21.845-57.836Q-22.064-57.766-22.302-57.766Q-22.673-57.766-23.011-57.903Q-23.349-58.039-23.616-58.291Q-23.884-58.543-24.034-58.883Q-24.185-59.223-24.185-59.598M-23.431-59.907L-21.470-59.907Q-21.470-60.211-21.571-60.502Q-21.673-60.793-21.890-60.975Q-22.106-61.157-22.423-61.157Q-22.724-61.157-22.954-60.969Q-23.185-60.782-23.308-60.490Q-23.431-60.199-23.431-59.907M-18.478-57.844L-20.333-57.844L-20.333-58.141Q-20.060-58.141-19.892-58.188Q-19.724-58.235-19.724-58.403L-19.724-60.539Q-19.724-60.754-19.786-60.850Q-19.849-60.946-19.968-60.967Q-20.087-60.989-20.333-60.989L-20.333-61.285L-19.142-61.371L-19.142-60.637Q-19.028-60.852-18.835-61.020Q-18.642-61.188-18.403-61.280Q-18.165-61.371-17.911-61.371Q-16.950-61.371-16.774-60.660Q-16.591-60.989-16.263-61.180Q-15.935-61.371-15.556-61.371Q-14.380-61.371-14.380-60.293L-14.380-58.403Q-14.380-58.235-14.212-58.188Q-14.044-58.141-13.774-58.141L-13.774-57.844L-15.630-57.844L-15.630-58.141Q-15.356-58.141-15.189-58.186Q-15.021-58.231-15.021-58.403L-15.021-60.278Q-15.021-60.664-15.146-60.891Q-15.271-61.117-15.622-61.117Q-15.927-61.117-16.183-60.955Q-16.439-60.793-16.587-60.524Q-16.735-60.254-16.735-59.957L-16.735-58.403Q-16.735-58.235-16.565-58.188Q-16.396-58.141-16.126-58.141L-16.126-57.844L-17.981-57.844L-17.981-58.141Q-17.708-58.141-17.540-58.188Q-17.372-58.235-17.372-58.403L-17.372-60.278Q-17.372-60.664-17.497-60.891Q-17.622-61.117-17.974-61.117Q-18.278-61.117-18.534-60.955Q-18.790-60.793-18.939-60.524Q-19.087-60.254-19.087-59.957L-19.087-58.403Q-19.087-58.235-18.917-58.188Q-18.747-58.141-18.478-58.141L-18.478-57.844M-13.329-59.539Q-13.329-60.043-13.073-60.475Q-12.817-60.907-12.382-61.158Q-11.946-61.410-11.446-61.410Q-11.060-61.410-10.718-61.266Q-10.376-61.121-10.114-60.860Q-9.853-60.598-9.710-60.262Q-9.567-59.926-9.567-59.539Q-9.567-59.047-9.831-58.637Q-10.095-58.227-10.524-57.996Q-10.954-57.766-11.446-57.766Q-11.939-57.766-12.372-57.998Q-12.806-58.231-13.067-58.639Q-13.329-59.047-13.329-59.539M-11.446-58.043Q-10.989-58.043-10.737-58.266Q-10.485-58.489-10.397-58.840Q-10.310-59.192-10.310-59.637Q-10.310-60.067-10.403-60.405Q-10.497-60.742-10.751-60.949Q-11.005-61.157-11.446-61.157Q-12.095-61.157-12.339-60.740Q-12.583-60.324-12.583-59.637Q-12.583-59.192-12.495-58.840Q-12.407-58.489-12.155-58.266Q-11.903-58.043-11.446-58.043M-7.075-57.844L-9.056-57.844L-9.056-58.141Q-8.786-58.141-8.618-58.186Q-8.450-58.231-8.450-58.403L-8.450-60.539Q-8.450-60.754-8.513-60.850Q-8.575-60.946-8.692-60.967Q-8.810-60.989-9.056-60.989L-9.056-61.285L-7.888-61.371L-7.888-60.586Q-7.810-60.797-7.657-60.983Q-7.505-61.168-7.306-61.270Q-7.106-61.371-6.880-61.371Q-6.634-61.371-6.442-61.227Q-6.251-61.082-6.251-60.852Q-6.251-60.696-6.356-60.586Q-6.462-60.477-6.618-60.477Q-6.774-60.477-6.884-60.586Q-6.993-60.696-6.993-60.852Q-6.993-61.012-6.888-61.117Q-7.212-61.117-7.427-60.889Q-7.642-60.660-7.737-60.321Q-7.833-59.981-7.833-59.676L-7.833-58.403Q-7.833-58.235-7.606-58.188Q-7.380-58.141-7.075-58.141L-7.075-57.844M-5.353-56.547Q-5.239-56.469-5.064-56.469Q-4.774-56.469-4.554-56.682Q-4.333-56.895-4.208-57.196L-3.919-57.844L-5.192-60.731Q-5.274-60.907-5.419-60.951Q-5.564-60.996-5.833-60.996L-5.833-61.293L-4.114-61.293L-4.114-60.996Q-4.536-60.996-4.536-60.813Q-4.536-60.801-4.521-60.731L-3.583-58.606L-2.751-60.516Q-2.712-60.606-2.712-60.684Q-2.712-60.824-2.814-60.910Q-2.915-60.996-3.056-60.996L-3.056-61.293L-1.704-61.293L-1.704-60.996Q-1.958-60.996-2.151-60.871Q-2.345-60.746-2.450-60.516L-3.896-57.196Q-4.009-56.942-4.175-56.719Q-4.341-56.496-4.569-56.354Q-4.798-56.211-5.064-56.211Q-5.360-56.211-5.601-56.403Q-5.841-56.594-5.841-56.883Q-5.841-57.039-5.735-57.141Q-5.630-57.242-5.481-57.242Q-5.376-57.242-5.296-57.196Q-5.216-57.149-5.169-57.071Q-5.122-56.992-5.122-56.883Q-5.122-56.762-5.183-56.674Q-5.243-56.586-5.353-56.547\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M17.11-43.617h56.905V-72.07H17.109Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(67.317 7.483)\">\u003Cpath d=\"M-34.240-67.344L-36.599-67.344L-36.599-67.641Q-36.275-67.641-36.033-67.688Q-35.791-67.735-35.791-67.903L-35.791-72.246Q-35.791-72.418-36.033-72.465Q-36.275-72.512-36.599-72.512L-36.599-72.809L-34.006-72.809Q-33.674-72.809-33.287-72.723Q-32.900-72.637-32.553-72.463Q-32.205-72.289-31.986-72.008Q-31.767-71.727-31.767-71.360Q-31.767-71.035-31.969-70.770Q-32.170-70.504-32.476-70.328Q-32.783-70.153-33.111-70.063Q-32.744-69.942-32.484-69.672Q-32.224-69.403-32.174-69.039L-32.080-68.344Q-32.010-67.895-31.912-67.664Q-31.814-67.434-31.517-67.434Q-31.271-67.434-31.139-67.651Q-31.006-67.867-31.006-68.129Q-30.986-68.203-30.904-68.223L-30.822-68.223Q-30.728-68.199-30.728-68.106Q-30.728-67.875-30.826-67.660Q-30.924-67.446-31.101-67.311Q-31.279-67.176-31.510-67.176Q-32.107-67.176-32.525-67.463Q-32.943-67.750-32.943-68.321L-32.943-69.016Q-32.943-69.297-33.096-69.512Q-33.248-69.727-33.498-69.840Q-33.748-69.953-34.021-69.953L-35.049-69.953L-35.049-67.903Q-35.049-67.739-34.805-67.690Q-34.560-67.641-34.240-67.641L-34.240-67.344M-35.049-72.246L-35.049-70.207L-34.119-70.207Q-33.799-70.207-33.531-70.260Q-33.264-70.313-33.064-70.440Q-32.865-70.567-32.748-70.799Q-32.631-71.031-32.631-71.360Q-32.631-72.012-33.027-72.262Q-33.424-72.512-34.119-72.512L-34.646-72.512Q-34.865-72.512-34.957-72.469Q-35.049-72.426-35.049-72.246M-30.467-69.098Q-30.467-69.578-30.234-69.994Q-30.002-70.410-29.592-70.660Q-29.181-70.910-28.705-70.910Q-27.974-70.910-27.576-70.469Q-27.178-70.028-27.178-69.297Q-27.178-69.192-27.271-69.168L-29.721-69.168L-29.721-69.098Q-29.721-68.688-29.599-68.332Q-29.478-67.977-29.207-67.760Q-28.935-67.543-28.506-67.543Q-28.142-67.543-27.846-67.772Q-27.549-68-27.447-68.352Q-27.439-68.399-27.353-68.414L-27.271-68.414Q-27.178-68.387-27.178-68.305Q-27.178-68.297-27.185-68.266Q-27.248-68.039-27.387-67.856Q-27.525-67.672-27.717-67.539Q-27.908-67.406-28.127-67.336Q-28.346-67.266-28.584-67.266Q-28.955-67.266-29.293-67.403Q-29.631-67.539-29.898-67.791Q-30.166-68.043-30.316-68.383Q-30.467-68.723-30.467-69.098M-29.713-69.406L-27.752-69.406Q-27.752-69.711-27.853-70.002Q-27.955-70.293-28.172-70.475Q-28.389-70.656-28.705-70.656Q-29.006-70.656-29.236-70.469Q-29.467-70.281-29.590-69.990Q-29.713-69.699-29.713-69.406M-26.689-66.735Q-26.689-67.016-26.478-67.227Q-26.267-67.438-25.982-67.528Q-26.139-67.653-26.217-67.842Q-26.295-68.031-26.295-68.231Q-26.295-68.586-26.064-68.879Q-26.431-69.219-26.431-69.688Q-26.431-70.039-26.228-70.309Q-26.025-70.578-25.705-70.725Q-25.385-70.871-25.041-70.871Q-24.521-70.871-24.150-70.590Q-23.787-70.961-23.240-70.961Q-23.060-70.961-22.933-70.834Q-22.806-70.707-22.806-70.528Q-22.806-70.422-22.885-70.344Q-22.963-70.266-23.072-70.266Q-23.181-70.266-23.258-70.342Q-23.334-70.418-23.334-70.528Q-23.334-70.629-23.295-70.680Q-23.287-70.688-23.283-70.694Q-23.279-70.699-23.279-70.703Q-23.654-70.703-23.974-70.449Q-23.654-70.110-23.654-69.688Q-23.654-69.418-23.771-69.201Q-23.889-68.985-24.094-68.826Q-24.299-68.668-24.541-68.586Q-24.783-68.504-25.041-68.504Q-25.260-68.504-25.472-68.563Q-25.685-68.621-25.881-68.742Q-25.974-68.602-25.974-68.422Q-25.974-68.215-25.838-68.063Q-25.701-67.910-25.494-67.910L-24.799-67.910Q-24.310-67.910-23.898-67.826Q-23.486-67.742-23.207-67.485Q-22.928-67.227-22.928-66.735Q-22.928-66.371-23.248-66.139Q-23.568-65.906-24.010-65.805Q-24.451-65.703-24.806-65.703Q-25.162-65.703-25.605-65.805Q-26.049-65.906-26.369-66.139Q-26.689-66.371-26.689-66.735M-26.185-66.735Q-26.185-66.539-26.041-66.391Q-25.896-66.242-25.683-66.153Q-25.471-66.063-25.230-66.016Q-24.990-65.969-24.806-65.969Q-24.564-65.969-24.234-66.047Q-23.904-66.125-23.668-66.299Q-23.431-66.473-23.431-66.735Q-23.431-67.141-23.842-67.250Q-24.252-67.360-24.814-67.360L-25.494-67.360Q-25.764-67.360-25.974-67.182Q-26.185-67.004-26.185-66.735M-25.041-68.770Q-24.318-68.770-24.318-69.688Q-24.318-70.610-25.041-70.610Q-25.767-70.610-25.767-69.688Q-25.767-68.770-25.041-68.770M-20.584-67.344L-22.361-67.344L-22.361-67.641Q-22.088-67.641-21.920-67.688Q-21.752-67.735-21.752-67.903L-21.752-70.039Q-21.752-70.254-21.808-70.350Q-21.865-70.446-21.978-70.467Q-22.092-70.489-22.338-70.489L-22.338-70.785L-21.139-70.871L-21.139-67.903Q-21.139-67.735-20.992-67.688Q-20.846-67.641-20.584-67.641L-20.584-67.344M-22.025-72.266Q-22.025-72.457-21.890-72.588Q-21.756-72.719-21.560-72.719Q-21.439-72.719-21.336-72.656Q-21.232-72.594-21.170-72.490Q-21.107-72.387-21.107-72.266Q-21.107-72.071-21.238-71.936Q-21.369-71.801-21.560-71.801Q-21.760-71.801-21.892-71.934Q-22.025-72.067-22.025-72.266M-20.041-67.352L-20.041-68.574Q-20.041-68.602-20.010-68.633Q-19.978-68.664-19.955-68.664L-19.849-68.664Q-19.779-68.664-19.764-68.602Q-19.701-68.281-19.562-68.041Q-19.424-67.801-19.191-67.660Q-18.959-67.520-18.650-67.520Q-18.412-67.520-18.203-67.580Q-17.994-67.641-17.857-67.789Q-17.721-67.938-17.721-68.184Q-17.721-68.438-17.931-68.604Q-18.142-68.770-18.412-68.824L-19.033-68.938Q-19.439-69.016-19.740-69.272Q-20.041-69.528-20.041-69.903Q-20.041-70.270-19.840-70.492Q-19.639-70.715-19.314-70.813Q-18.990-70.910-18.650-70.910Q-18.185-70.910-17.889-70.703L-17.666-70.887Q-17.642-70.910-17.611-70.910L-17.560-70.910Q-17.529-70.910-17.502-70.883Q-17.474-70.856-17.474-70.824L-17.474-69.840Q-17.474-69.809-17.500-69.780Q-17.525-69.750-17.560-69.750L-17.666-69.750Q-17.701-69.750-17.728-69.778Q-17.756-69.805-17.756-69.840Q-17.756-70.239-18.008-70.459Q-18.260-70.680-18.658-70.680Q-19.014-70.680-19.297-70.557Q-19.580-70.434-19.580-70.129Q-19.580-69.910-19.379-69.778Q-19.178-69.645-18.931-69.602L-18.306-69.489Q-17.877-69.399-17.568-69.102Q-17.260-68.805-17.260-68.391Q-17.260-67.821-17.658-67.543Q-18.056-67.266-18.650-67.266Q-19.201-67.266-19.553-67.602L-19.849-67.289Q-19.873-67.266-19.908-67.266L-19.955-67.266Q-19.978-67.266-20.010-67.297Q-20.041-67.328-20.041-67.352M-16.107-68.305L-16.107-70.496L-16.810-70.496L-16.810-70.750Q-16.455-70.750-16.213-70.983Q-15.971-71.215-15.859-71.563Q-15.748-71.910-15.748-72.266L-15.467-72.266L-15.467-70.793L-14.291-70.793L-14.291-70.496L-15.467-70.496L-15.467-68.321Q-15.467-68-15.347-67.772Q-15.228-67.543-14.947-67.543Q-14.767-67.543-14.650-67.666Q-14.533-67.789-14.480-67.969Q-14.428-68.149-14.428-68.321L-14.428-68.793L-14.146-68.793L-14.146-68.305Q-14.146-68.051-14.252-67.811Q-14.357-67.571-14.555-67.418Q-14.752-67.266-15.010-67.266Q-15.326-67.266-15.578-67.389Q-15.830-67.512-15.969-67.746Q-16.107-67.981-16.107-68.305M-13.428-69.098Q-13.428-69.578-13.195-69.994Q-12.963-70.410-12.553-70.660Q-12.142-70.910-11.666-70.910Q-10.935-70.910-10.537-70.469Q-10.139-70.028-10.139-69.297Q-10.139-69.192-10.232-69.168L-12.681-69.168L-12.681-69.098Q-12.681-68.688-12.560-68.332Q-12.439-67.977-12.168-67.760Q-11.896-67.543-11.467-67.543Q-11.103-67.543-10.806-67.772Q-10.510-68-10.408-68.352Q-10.400-68.399-10.314-68.414L-10.232-68.414Q-10.139-68.387-10.139-68.305Q-10.139-68.297-10.146-68.266Q-10.209-68.039-10.347-67.856Q-10.486-67.672-10.678-67.539Q-10.869-67.406-11.088-67.336Q-11.306-67.266-11.545-67.266Q-11.916-67.266-12.254-67.403Q-12.592-67.539-12.859-67.791Q-13.127-68.043-13.277-68.383Q-13.428-68.723-13.428-69.098M-12.674-69.406L-10.713-69.406Q-10.713-69.711-10.814-70.002Q-10.916-70.293-11.133-70.475Q-11.349-70.656-11.666-70.656Q-11.967-70.656-12.197-70.469Q-12.428-70.281-12.551-69.990Q-12.674-69.699-12.674-69.406M-7.642-67.344L-9.623-67.344L-9.623-67.641Q-9.353-67.641-9.185-67.686Q-9.017-67.731-9.017-67.903L-9.017-70.039Q-9.017-70.254-9.080-70.350Q-9.142-70.446-9.260-70.467Q-9.377-70.489-9.623-70.489L-9.623-70.785L-8.455-70.871L-8.455-70.086Q-8.377-70.297-8.224-70.483Q-8.072-70.668-7.873-70.770Q-7.674-70.871-7.447-70.871Q-7.201-70.871-7.010-70.727Q-6.818-70.582-6.818-70.352Q-6.818-70.196-6.924-70.086Q-7.029-69.977-7.185-69.977Q-7.342-69.977-7.451-70.086Q-7.560-70.196-7.560-70.352Q-7.560-70.512-7.455-70.617Q-7.779-70.617-7.994-70.389Q-8.209-70.160-8.305-69.821Q-8.400-69.481-8.400-69.176L-8.400-67.903Q-8.400-67.735-8.174-67.688Q-7.947-67.641-7.642-67.641\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(67.317 7.483)\">\u003Cpath d=\"M-25.315-57.844L-27.300-57.844L-27.300-58.141Q-27.026-58.141-26.858-58.188Q-26.690-58.235-26.690-58.403L-26.690-60.996L-27.331-60.996L-27.331-61.293L-26.690-61.293L-26.690-62.227Q-26.690-62.492-26.573-62.729Q-26.456-62.965-26.263-63.129Q-26.069-63.293-25.821-63.385Q-25.573-63.477-25.308-63.477Q-25.022-63.477-24.798-63.319Q-24.573-63.160-24.573-62.883Q-24.573-62.727-24.679-62.617Q-24.784-62.508-24.948-62.508Q-25.104-62.508-25.214-62.617Q-25.323-62.727-25.323-62.883Q-25.323-63.090-25.163-63.196Q-25.261-63.219-25.354-63.219Q-25.585-63.219-25.757-63.063Q-25.929-62.907-26.015-62.670Q-26.100-62.434-26.100-62.211L-26.100-61.293L-25.132-61.293L-25.132-60.996L-26.077-60.996L-26.077-58.403Q-26.077-58.235-25.850-58.188Q-25.624-58.141-25.315-58.141\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(67.317 7.483)\">\u003Cpath d=\"M-22.293-57.844L-24.071-57.844L-24.071-58.141Q-23.797-58.141-23.629-58.188Q-23.461-58.235-23.461-58.403L-23.461-60.539Q-23.461-60.754-23.518-60.850Q-23.575-60.946-23.688-60.967Q-23.801-60.989-24.047-60.989L-24.047-61.285L-22.848-61.371L-22.848-58.403Q-22.848-58.235-22.702-58.188Q-22.555-58.141-22.293-58.141L-22.293-57.844M-23.735-62.766Q-23.735-62.957-23.600-63.088Q-23.465-63.219-23.270-63.219Q-23.149-63.219-23.045-63.157Q-22.942-63.094-22.879-62.990Q-22.817-62.887-22.817-62.766Q-22.817-62.571-22.948-62.436Q-23.078-62.301-23.270-62.301Q-23.469-62.301-23.602-62.434Q-23.735-62.567-23.735-62.766M-19.879-57.844L-21.711-57.844L-21.711-58.141Q-21.438-58.141-21.270-58.188Q-21.102-58.235-21.102-58.403L-21.102-62.563Q-21.102-62.778-21.164-62.873Q-21.227-62.969-21.346-62.990Q-21.465-63.012-21.711-63.012L-21.711-63.309L-20.489-63.395L-20.489-58.403Q-20.489-58.235-20.321-58.188Q-20.153-58.141-19.879-58.141L-19.879-57.844M-19.434-59.598Q-19.434-60.078-19.202-60.494Q-18.969-60.910-18.559-61.160Q-18.149-61.410-17.672-61.410Q-16.942-61.410-16.543-60.969Q-16.145-60.528-16.145-59.797Q-16.145-59.692-16.239-59.668L-18.688-59.668L-18.688-59.598Q-18.688-59.188-18.567-58.832Q-18.446-58.477-18.174-58.260Q-17.903-58.043-17.473-58.043Q-17.110-58.043-16.813-58.272Q-16.516-58.500-16.414-58.852Q-16.407-58.899-16.321-58.914L-16.239-58.914Q-16.145-58.887-16.145-58.805Q-16.145-58.797-16.153-58.766Q-16.215-58.539-16.354-58.356Q-16.493-58.172-16.684-58.039Q-16.875-57.907-17.094-57.836Q-17.313-57.766-17.551-57.766Q-17.922-57.766-18.260-57.903Q-18.598-58.039-18.866-58.291Q-19.133-58.543-19.284-58.883Q-19.434-59.223-19.434-59.598M-18.680-59.907L-16.719-59.907Q-16.719-60.211-16.821-60.502Q-16.922-60.793-17.139-60.975Q-17.356-61.157-17.672-61.157Q-17.973-61.157-18.203-60.969Q-18.434-60.782-18.557-60.490Q-18.680-60.199-18.680-59.907\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M99.623-43.617h56.905V-72.07H99.623Z\"\u002F>\u003Cg transform=\"translate(156.005 2.733)\">\u003Cpath d=\"M-34.912-57.844L-36.662-57.844L-36.662-58.141Q-35.963-58.141-35.775-58.621L-33.974-63.446Q-33.920-63.555-33.806-63.555L-33.736-63.555Q-33.623-63.555-33.568-63.446L-31.678-58.403Q-31.599-58.235-31.396-58.188Q-31.193-58.141-30.881-58.141L-30.881-57.844L-33.103-57.844L-33.103-58.141Q-32.463-58.141-32.463-58.356Q-32.463-58.375-32.465-58.385Q-32.467-58.395-32.471-58.403L-32.935-59.637L-35.080-59.637L-35.463-58.621Q-35.467-58.606-35.472-58.576Q-35.478-58.547-35.478-58.524Q-35.478-58.383-35.389-58.299Q-35.299-58.215-35.166-58.178Q-35.033-58.141-34.912-58.141L-34.912-57.844M-34.006-62.500L-34.974-59.934L-33.049-59.934L-34.006-62.500M-25.873-57.844L-30.256-57.844L-30.256-58.141Q-29.935-58.141-29.691-58.188Q-29.447-58.235-29.447-58.403L-29.447-62.746Q-29.447-62.918-29.691-62.965Q-29.935-63.012-30.256-63.012L-30.256-63.309L-27.670-63.309L-27.670-63.012Q-28.681-63.012-28.681-62.746L-28.681-58.403Q-28.681-58.231-28.590-58.186Q-28.498-58.141-28.279-58.141L-27.592-58.141Q-27.119-58.141-26.810-58.266Q-26.502-58.391-26.324-58.621Q-26.146-58.852-26.055-59.178Q-25.963-59.504-25.920-59.957L-25.639-59.957L-25.873-57.844M-24.142-59.653L-24.142-62.746Q-24.142-62.918-24.387-62.965Q-24.631-63.012-24.951-63.012L-24.951-63.309L-22.568-63.309L-22.568-63.012Q-22.889-63.012-23.133-62.963Q-23.377-62.914-23.377-62.746L-23.377-59.676Q-23.377-58.953-23.033-58.463Q-22.689-57.973-21.990-57.973Q-21.525-57.973-21.154-58.203Q-20.783-58.434-20.574-58.826Q-20.365-59.219-20.365-59.676L-20.365-62.532Q-20.365-63.012-21.174-63.012L-21.174-63.309L-19.264-63.309L-19.264-63.012Q-20.072-63.012-20.072-62.532L-20.072-59.653Q-20.072-59.133-20.326-58.676Q-20.580-58.219-21.021-57.948Q-21.463-57.676-21.990-57.676Q-22.400-57.676-22.781-57.819Q-23.162-57.961-23.474-58.231Q-23.787-58.500-23.965-58.867Q-24.142-59.235-24.142-59.653\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M182.135-43.617h56.906V-72.07h-56.906Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(232.542 6.706)\">\u003Cpath d=\"M-27.687-67.344L-30.749-67.344L-30.749-67.641Q-30.425-67.641-30.183-67.688Q-29.941-67.735-29.941-67.903L-29.941-72.246Q-29.941-72.418-30.183-72.465Q-30.425-72.512-30.749-72.512L-30.749-72.809L-27.687-72.809Q-27.136-72.809-26.658-72.582Q-26.179-72.356-25.826-71.961Q-25.472-71.567-25.283-71.067Q-25.093-70.567-25.093-70.024Q-25.093-69.317-25.437-68.699Q-25.781-68.082-26.376-67.713Q-26.972-67.344-27.687-67.344M-29.199-72.246L-29.199-67.903Q-29.199-67.731-29.107-67.686Q-29.015-67.641-28.796-67.641L-27.902-67.641Q-27.456-67.641-27.064-67.811Q-26.671-67.981-26.400-68.305Q-26.128-68.629-26.031-69.049Q-25.933-69.469-25.933-70.024Q-25.933-70.379-25.970-70.692Q-26.007-71.004-26.113-71.299Q-26.218-71.594-26.398-71.817Q-26.581-72.051-26.820-72.201Q-27.058-72.352-27.339-72.432Q-27.621-72.512-27.902-72.512L-28.796-72.512Q-29.015-72.512-29.107-72.469Q-29.199-72.426-29.199-72.246M-24.277-68.176Q-24.277-68.660-23.874-68.955Q-23.472-69.250-22.921-69.369Q-22.371-69.489-21.878-69.489L-21.878-69.778Q-21.878-70.004-21.994-70.211Q-22.109-70.418-22.306-70.537Q-22.503-70.656-22.734-70.656Q-23.160-70.656-23.445-70.551Q-23.374-70.524-23.328-70.469Q-23.281-70.414-23.255-70.344Q-23.230-70.274-23.230-70.199Q-23.230-70.094-23.281-70.002Q-23.331-69.910-23.423-69.860Q-23.515-69.809-23.621-69.809Q-23.726-69.809-23.818-69.860Q-23.910-69.910-23.960-70.002Q-24.011-70.094-24.011-70.199Q-24.011-70.617-23.622-70.764Q-23.234-70.910-22.734-70.910Q-22.402-70.910-22.048-70.780Q-21.695-70.649-21.466-70.395Q-21.238-70.141-21.238-69.793L-21.238-67.992Q-21.238-67.860-21.165-67.750Q-21.093-67.641-20.964-67.641Q-20.839-67.641-20.771-67.746Q-20.703-67.852-20.703-67.992L-20.703-68.504L-20.421-68.504L-20.421-67.992Q-20.421-67.789-20.538-67.631Q-20.656-67.473-20.837-67.389Q-21.019-67.305-21.222-67.305Q-21.453-67.305-21.605-67.477Q-21.757-67.649-21.788-67.879Q-21.949-67.598-22.257-67.432Q-22.566-67.266-22.917-67.266Q-23.429-67.266-23.853-67.489Q-24.277-67.711-24.277-68.176M-23.589-68.176Q-23.589-67.891-23.363-67.705Q-23.136-67.520-22.843-67.520Q-22.597-67.520-22.372-67.637Q-22.148-67.754-22.013-67.957Q-21.878-68.160-21.878-68.414L-21.878-69.246Q-22.144-69.246-22.429-69.192Q-22.714-69.137-22.986-69.008Q-23.257-68.879-23.423-68.672Q-23.589-68.465-23.589-68.176M-19.503-68.305L-19.503-70.496L-20.206-70.496L-20.206-70.750Q-19.851-70.750-19.609-70.983Q-19.367-71.215-19.255-71.563Q-19.144-71.910-19.144-72.266L-18.863-72.266L-18.863-70.793L-17.687-70.793L-17.687-70.496L-18.863-70.496L-18.863-68.321Q-18.863-68-18.744-67.772Q-18.624-67.543-18.343-67.543Q-18.163-67.543-18.046-67.666Q-17.929-67.789-17.876-67.969Q-17.824-68.149-17.824-68.321L-17.824-68.793L-17.542-68.793L-17.542-68.305Q-17.542-68.051-17.648-67.811Q-17.753-67.571-17.951-67.418Q-18.148-67.266-18.406-67.266Q-18.722-67.266-18.974-67.389Q-19.226-67.512-19.365-67.746Q-19.503-67.981-19.503-68.305M-16.726-68.176Q-16.726-68.660-16.324-68.955Q-15.921-69.250-15.371-69.369Q-14.820-69.489-14.328-69.489L-14.328-69.778Q-14.328-70.004-14.443-70.211Q-14.558-70.418-14.755-70.537Q-14.953-70.656-15.183-70.656Q-15.609-70.656-15.894-70.551Q-15.824-70.524-15.777-70.469Q-15.730-70.414-15.705-70.344Q-15.679-70.274-15.679-70.199Q-15.679-70.094-15.730-70.002Q-15.781-69.910-15.872-69.860Q-15.964-69.809-16.070-69.809Q-16.175-69.809-16.267-69.860Q-16.359-69.910-16.410-70.002Q-16.460-70.094-16.460-70.199Q-16.460-70.617-16.072-70.764Q-15.683-70.910-15.183-70.910Q-14.851-70.910-14.497-70.780Q-14.144-70.649-13.915-70.395Q-13.687-70.141-13.687-69.793L-13.687-67.992Q-13.687-67.860-13.615-67.750Q-13.542-67.641-13.413-67.641Q-13.288-67.641-13.220-67.746Q-13.152-67.852-13.152-67.992L-13.152-68.504L-12.871-68.504L-12.871-67.992Q-12.871-67.789-12.988-67.631Q-13.105-67.473-13.287-67.389Q-13.468-67.305-13.671-67.305Q-13.902-67.305-14.054-67.477Q-14.206-67.649-14.238-67.879Q-14.398-67.598-14.706-67.432Q-15.015-67.266-15.367-67.266Q-15.878-67.266-16.302-67.489Q-16.726-67.711-16.726-68.176M-16.038-68.176Q-16.038-67.891-15.812-67.705Q-15.585-67.520-15.292-67.520Q-15.046-67.520-14.822-67.637Q-14.597-67.754-14.462-67.957Q-14.328-68.160-14.328-68.414L-14.328-69.246Q-14.593-69.246-14.878-69.192Q-15.163-69.137-15.435-69.008Q-15.706-68.879-15.872-68.672Q-16.038-68.465-16.038-68.176\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(232.542 6.706)\">\u003Cpath d=\"M-34.783-57.844L-36.639-57.844L-36.639-58.141Q-36.365-58.141-36.197-58.188Q-36.029-58.235-36.029-58.403L-36.029-60.539Q-36.029-60.754-36.092-60.850Q-36.154-60.946-36.273-60.967Q-36.392-60.989-36.639-60.989L-36.639-61.285L-35.447-61.371L-35.447-60.637Q-35.334-60.852-35.140-61.020Q-34.947-61.188-34.709-61.280Q-34.471-61.371-34.217-61.371Q-33.256-61.371-33.080-60.660Q-32.896-60.989-32.568-61.180Q-32.240-61.371-31.861-61.371Q-30.685-61.371-30.685-60.293L-30.685-58.403Q-30.685-58.235-30.517-58.188Q-30.349-58.141-30.080-58.141L-30.080-57.844L-31.935-57.844L-31.935-58.141Q-31.662-58.141-31.494-58.186Q-31.326-58.231-31.326-58.403L-31.326-60.278Q-31.326-60.664-31.451-60.891Q-31.576-61.117-31.928-61.117Q-32.232-61.117-32.488-60.955Q-32.744-60.793-32.892-60.524Q-33.041-60.254-33.041-59.957L-33.041-58.403Q-33.041-58.235-32.871-58.188Q-32.701-58.141-32.431-58.141L-32.431-57.844L-34.287-57.844L-34.287-58.141Q-34.014-58.141-33.846-58.188Q-33.678-58.235-33.678-58.403L-33.678-60.278Q-33.678-60.664-33.803-60.891Q-33.928-61.117-34.279-61.117Q-34.584-61.117-34.840-60.955Q-35.096-60.793-35.244-60.524Q-35.392-60.254-35.392-59.957L-35.392-58.403Q-35.392-58.235-35.222-58.188Q-35.053-58.141-34.783-58.141L-34.783-57.844M-29.635-59.598Q-29.635-60.078-29.402-60.494Q-29.170-60.910-28.760-61.160Q-28.349-61.410-27.873-61.410Q-27.142-61.410-26.744-60.969Q-26.346-60.528-26.346-59.797Q-26.346-59.692-26.439-59.668L-28.889-59.668L-28.889-59.598Q-28.889-59.188-28.767-58.832Q-28.646-58.477-28.375-58.260Q-28.103-58.043-27.674-58.043Q-27.310-58.043-27.014-58.272Q-26.717-58.500-26.615-58.852Q-26.607-58.899-26.521-58.914L-26.439-58.914Q-26.346-58.887-26.346-58.805Q-26.346-58.797-26.353-58.766Q-26.416-58.539-26.555-58.356Q-26.693-58.172-26.885-58.039Q-27.076-57.907-27.295-57.836Q-27.514-57.766-27.752-57.766Q-28.123-57.766-28.461-57.903Q-28.799-58.039-29.066-58.291Q-29.334-58.543-29.484-58.883Q-29.635-59.223-29.635-59.598M-28.881-59.907L-26.920-59.907Q-26.920-60.211-27.021-60.502Q-27.123-60.793-27.340-60.975Q-27.556-61.157-27.873-61.157Q-28.174-61.157-28.404-60.969Q-28.635-60.782-28.758-60.490Q-28.881-60.199-28.881-59.907M-23.928-57.844L-25.783-57.844L-25.783-58.141Q-25.510-58.141-25.342-58.188Q-25.174-58.235-25.174-58.403L-25.174-60.539Q-25.174-60.754-25.236-60.850Q-25.299-60.946-25.418-60.967Q-25.537-60.989-25.783-60.989L-25.783-61.285L-24.592-61.371L-24.592-60.637Q-24.478-60.852-24.285-61.020Q-24.092-61.188-23.853-61.280Q-23.615-61.371-23.361-61.371Q-22.400-61.371-22.224-60.660Q-22.041-60.989-21.713-61.180Q-21.385-61.371-21.006-61.371Q-19.830-61.371-19.830-60.293L-19.830-58.403Q-19.830-58.235-19.662-58.188Q-19.494-58.141-19.224-58.141L-19.224-57.844L-21.080-57.844L-21.080-58.141Q-20.806-58.141-20.639-58.186Q-20.471-58.231-20.471-58.403L-20.471-60.278Q-20.471-60.664-20.596-60.891Q-20.721-61.117-21.072-61.117Q-21.377-61.117-21.633-60.955Q-21.889-60.793-22.037-60.524Q-22.185-60.254-22.185-59.957L-22.185-58.403Q-22.185-58.235-22.015-58.188Q-21.846-58.141-21.576-58.141L-21.576-57.844L-23.431-57.844L-23.431-58.141Q-23.158-58.141-22.990-58.188Q-22.822-58.235-22.822-58.403L-22.822-60.278Q-22.822-60.664-22.947-60.891Q-23.072-61.117-23.424-61.117Q-23.728-61.117-23.984-60.955Q-24.240-60.793-24.389-60.524Q-24.537-60.254-24.537-59.957L-24.537-58.403Q-24.537-58.235-24.367-58.188Q-24.197-58.141-23.928-58.141L-23.928-57.844M-18.779-59.539Q-18.779-60.043-18.523-60.475Q-18.267-60.907-17.832-61.158Q-17.396-61.410-16.896-61.410Q-16.510-61.410-16.168-61.266Q-15.826-61.121-15.564-60.860Q-15.303-60.598-15.160-60.262Q-15.017-59.926-15.017-59.539Q-15.017-59.047-15.281-58.637Q-15.545-58.227-15.974-57.996Q-16.404-57.766-16.896-57.766Q-17.389-57.766-17.822-57.998Q-18.256-58.231-18.517-58.639Q-18.779-59.047-18.779-59.539M-16.896-58.043Q-16.439-58.043-16.187-58.266Q-15.935-58.489-15.847-58.840Q-15.760-59.192-15.760-59.637Q-15.760-60.067-15.853-60.405Q-15.947-60.742-16.201-60.949Q-16.455-61.157-16.896-61.157Q-17.545-61.157-17.789-60.740Q-18.033-60.324-18.033-59.637Q-18.033-59.192-17.945-58.840Q-17.857-58.489-17.605-58.266Q-17.353-58.043-16.896-58.043M-12.525-57.844L-14.506-57.844L-14.506-58.141Q-14.236-58.141-14.068-58.186Q-13.900-58.231-13.900-58.403L-13.900-60.539Q-13.900-60.754-13.963-60.850Q-14.025-60.946-14.142-60.967Q-14.260-60.989-14.506-60.989L-14.506-61.285L-13.338-61.371L-13.338-60.586Q-13.260-60.797-13.107-60.983Q-12.955-61.168-12.756-61.270Q-12.556-61.371-12.330-61.371Q-12.084-61.371-11.892-61.227Q-11.701-61.082-11.701-60.852Q-11.701-60.696-11.806-60.586Q-11.912-60.477-12.068-60.477Q-12.224-60.477-12.334-60.586Q-12.443-60.696-12.443-60.852Q-12.443-61.012-12.338-61.117Q-12.662-61.117-12.877-60.889Q-13.092-60.660-13.187-60.321Q-13.283-59.981-13.283-59.676L-13.283-58.403Q-13.283-58.235-13.056-58.188Q-12.830-58.141-12.525-58.141L-12.525-57.844M-10.803-56.547Q-10.689-56.469-10.514-56.469Q-10.224-56.469-10.004-56.682Q-9.783-56.895-9.658-57.196L-9.369-57.844L-10.642-60.731Q-10.724-60.907-10.869-60.951Q-11.014-60.996-11.283-60.996L-11.283-61.293L-9.564-61.293L-9.564-60.996Q-9.986-60.996-9.986-60.813Q-9.986-60.801-9.971-60.731L-9.033-58.606L-8.201-60.516Q-8.162-60.606-8.162-60.684Q-8.162-60.824-8.264-60.910Q-8.365-60.996-8.506-60.996L-8.506-61.293L-7.154-61.293L-7.154-60.996Q-7.408-60.996-7.601-60.871Q-7.795-60.746-7.900-60.516L-9.346-57.196Q-9.459-56.942-9.625-56.719Q-9.791-56.496-10.019-56.354Q-10.248-56.211-10.514-56.211Q-10.810-56.211-11.051-56.403Q-11.291-56.594-11.291-56.883Q-11.291-57.039-11.185-57.141Q-11.080-57.242-10.931-57.242Q-10.826-57.242-10.746-57.196Q-10.666-57.149-10.619-57.071Q-10.572-56.992-10.572-56.883Q-10.572-56.762-10.633-56.674Q-10.693-56.586-10.803-56.547\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M264.649-43.617h56.905V-72.07H264.65Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(314.534 7.483)\">\u003Cpath d=\"M-34.693-67.344L-36.615-67.344L-36.615-67.641Q-35.806-67.641-35.806-68.121L-35.806-72.465Q-36.064-72.512-36.615-72.512L-36.615-72.809L-35.119-72.809Q-35.060-72.789-35.049-72.778L-32.041-68.590L-32.041-72.031Q-32.041-72.512-32.846-72.512L-32.846-72.809L-30.928-72.809L-30.928-72.512Q-31.736-72.512-31.736-72.031L-31.736-67.449Q-31.756-67.364-31.830-67.344L-31.935-67.344Q-31.990-67.356-32.006-67.383L-35.502-72.239L-35.502-68.121Q-35.502-67.641-34.693-67.641L-34.693-67.344M-30.353-69.098Q-30.353-69.578-30.121-69.994Q-29.889-70.410-29.478-70.660Q-29.068-70.910-28.592-70.910Q-27.861-70.910-27.463-70.469Q-27.064-70.028-27.064-69.297Q-27.064-69.192-27.158-69.168L-29.607-69.168L-29.607-69.098Q-29.607-68.688-29.486-68.332Q-29.365-67.977-29.094-67.760Q-28.822-67.543-28.392-67.543Q-28.029-67.543-27.732-67.772Q-27.435-68-27.334-68.352Q-27.326-68.399-27.240-68.414L-27.158-68.414Q-27.064-68.387-27.064-68.305Q-27.064-68.297-27.072-68.266Q-27.135-68.039-27.273-67.856Q-27.412-67.672-27.603-67.539Q-27.795-67.406-28.014-67.336Q-28.232-67.266-28.471-67.266Q-28.842-67.266-29.180-67.403Q-29.517-67.539-29.785-67.791Q-30.053-68.043-30.203-68.383Q-30.353-68.723-30.353-69.098M-29.599-69.406L-27.639-69.406Q-27.639-69.711-27.740-70.002Q-27.842-70.293-28.058-70.475Q-28.275-70.656-28.592-70.656Q-28.892-70.656-29.123-70.469Q-29.353-70.281-29.476-69.990Q-29.599-69.699-29.599-69.406M-24.990-67.375L-26.060-70.231Q-26.127-70.410-26.258-70.453Q-26.389-70.496-26.646-70.496L-26.646-70.793L-24.967-70.793L-24.967-70.496Q-25.416-70.496-25.416-70.297Q-25.412-70.281-25.410-70.264Q-25.408-70.246-25.408-70.231L-24.615-68.137L-23.904-70.047Q-23.939-70.141-23.939-70.186Q-23.939-70.231-23.974-70.231Q-24.041-70.410-24.172-70.453Q-24.303-70.496-24.556-70.496L-24.556-70.793L-22.967-70.793L-22.967-70.496Q-23.416-70.496-23.416-70.297Q-23.412-70.278-23.410-70.260Q-23.408-70.242-23.408-70.231L-22.576-68.016L-21.822-70.016Q-21.799-70.074-21.799-70.145Q-21.799-70.305-21.935-70.401Q-22.072-70.496-22.240-70.496L-22.240-70.793L-20.853-70.793L-20.853-70.496Q-21.088-70.496-21.265-70.369Q-21.443-70.242-21.525-70.016L-22.510-67.375Q-22.564-67.266-22.678-67.266L-22.736-67.266Q-22.849-67.266-22.892-67.375L-23.752-69.649L-24.607-67.375Q-24.646-67.266-24.767-67.266L-24.822-67.266Q-24.935-67.266-24.990-67.375M-18.326-68.793L-20.580-68.793L-20.580-69.344L-18.326-69.344L-18.326-68.793M-15.111-67.344L-17.494-67.344L-17.494-67.641Q-17.170-67.641-16.928-67.688Q-16.685-67.735-16.685-67.903L-16.685-72.246Q-16.685-72.418-16.928-72.465Q-17.170-72.512-17.494-72.512L-17.494-72.809L-14.549-72.809Q-14.205-72.809-13.849-72.709Q-13.494-72.610-13.199-72.418Q-12.904-72.227-12.722-71.942Q-12.541-71.656-12.541-71.297Q-12.541-70.824-12.851-70.489Q-13.162-70.153-13.627-69.981Q-14.092-69.809-14.549-69.809L-15.916-69.809L-15.916-67.903Q-15.916-67.735-15.674-67.688Q-15.431-67.641-15.111-67.641L-15.111-67.344M-15.943-72.246L-15.943-70.078L-14.767-70.078Q-14.080-70.078-13.742-70.354Q-13.404-70.629-13.404-71.297Q-13.404-71.961-13.742-72.237Q-14.080-72.512-14.767-72.512L-15.541-72.512Q-15.760-72.512-15.851-72.469Q-15.943-72.426-15.943-72.246M-11.596-70.078Q-11.596-70.672-11.363-71.203Q-11.131-71.735-10.715-72.135Q-10.299-72.535-9.765-72.756Q-9.232-72.977-8.627-72.977Q-8.189-72.977-7.791-72.795Q-7.392-72.614-7.084-72.281L-6.611-72.946Q-6.580-72.977-6.549-72.977L-6.502-72.977Q-6.474-72.977-6.443-72.946Q-6.412-72.914-6.412-72.887L-6.412-70.750Q-6.412-70.727-6.443-70.696Q-6.474-70.664-6.502-70.664L-6.619-70.664Q-6.646-70.664-6.678-70.696Q-6.709-70.727-6.709-70.750Q-6.709-71.016-6.851-71.369Q-6.994-71.723-7.174-71.961Q-7.428-72.293-7.777-72.487Q-8.127-72.680-8.533-72.680Q-9.037-72.680-9.490-72.461Q-9.943-72.242-10.236-71.848Q-10.732-71.180-10.732-70.078Q-10.732-69.547-10.596-69.080Q-10.459-68.614-10.183-68.248Q-9.908-67.883-9.488-67.678Q-9.068-67.473-8.525-67.473Q-8.037-67.473-7.613-67.717Q-7.189-67.961-6.941-68.381Q-6.693-68.801-6.693-69.297Q-6.693-69.332-6.664-69.358Q-6.635-69.383-6.603-69.383L-6.502-69.383Q-6.459-69.383-6.435-69.354Q-6.412-69.324-6.412-69.281Q-6.412-68.844-6.588-68.455Q-6.764-68.067-7.074-67.783Q-7.385-67.500-7.795-67.338Q-8.205-67.176-8.627-67.176Q-9.217-67.176-9.758-67.397Q-10.299-67.617-10.715-68.022Q-11.131-68.426-11.363-68.955Q-11.596-69.485-11.596-70.078\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(314.534 7.483)\">\u003Cpath d=\"M-27.292-57.844L-29.148-57.844L-29.148-58.141Q-28.874-58.141-28.706-58.188Q-28.538-58.235-28.538-58.403L-28.538-60.539Q-28.538-60.754-28.601-60.850Q-28.663-60.946-28.782-60.967Q-28.901-60.989-29.148-60.989L-29.148-61.285L-27.956-61.371L-27.956-60.637Q-27.843-60.852-27.649-61.020Q-27.456-61.188-27.218-61.280Q-26.980-61.371-26.726-61.371Q-25.765-61.371-25.589-60.660Q-25.405-60.989-25.077-61.180Q-24.749-61.371-24.370-61.371Q-23.194-61.371-23.194-60.293L-23.194-58.403Q-23.194-58.235-23.026-58.188Q-22.858-58.141-22.589-58.141L-22.589-57.844L-24.444-57.844L-24.444-58.141Q-24.171-58.141-24.003-58.186Q-23.835-58.231-23.835-58.403L-23.835-60.278Q-23.835-60.664-23.960-60.891Q-24.085-61.117-24.437-61.117Q-24.741-61.117-24.997-60.955Q-25.253-60.793-25.401-60.524Q-25.550-60.254-25.550-59.957L-25.550-58.403Q-25.550-58.235-25.380-58.188Q-25.210-58.141-24.940-58.141L-24.940-57.844L-26.796-57.844L-26.796-58.141Q-26.523-58.141-26.355-58.188Q-26.187-58.235-26.187-58.403L-26.187-60.278Q-26.187-60.664-26.312-60.891Q-26.437-61.117-26.788-61.117Q-27.093-61.117-27.349-60.955Q-27.605-60.793-27.753-60.524Q-27.901-60.254-27.901-59.957L-27.901-58.403Q-27.901-58.235-27.731-58.188Q-27.562-58.141-27.292-58.141\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(314.534 7.483)\">\u003Cpath d=\"M-21.691-58.797L-21.691-60.539Q-21.691-60.754-21.754-60.850Q-21.816-60.946-21.935-60.967Q-22.054-60.989-22.300-60.989L-22.300-61.285L-21.054-61.371L-21.054-58.821L-21.054-58.797Q-21.054-58.485-21-58.323Q-20.945-58.160-20.795-58.090Q-20.644-58.020-20.324-58.020Q-19.894-58.020-19.621-58.358Q-19.347-58.696-19.347-59.141L-19.347-60.539Q-19.347-60.754-19.410-60.850Q-19.472-60.946-19.592-60.967Q-19.711-60.989-19.957-60.989L-19.957-61.285L-18.711-61.371L-18.711-58.586Q-18.711-58.375-18.648-58.280Q-18.586-58.184-18.467-58.162Q-18.347-58.141-18.101-58.141L-18.101-57.844L-19.324-57.766L-19.324-58.387Q-19.492-58.098-19.773-57.932Q-20.054-57.766-20.375-57.766Q-21.691-57.766-21.691-58.797M-16.269-57.844L-17.765-57.844L-17.765-58.141Q-17.133-58.141-16.711-58.621L-15.941-59.532L-16.933-60.731Q-17.090-60.910-17.252-60.953Q-17.414-60.996-17.718-60.996L-17.718-61.293L-16.031-61.293L-16.031-60.996Q-16.125-60.996-16.201-60.953Q-16.277-60.910-16.277-60.821Q-16.277-60.778-16.246-60.731L-15.590-59.942L-15.109-60.516Q-14.992-60.653-14.992-60.789Q-14.992-60.879-15.043-60.938Q-15.093-60.996-15.175-60.996L-15.175-61.293L-13.687-61.293L-13.687-60.996Q-14.324-60.996-14.734-60.516L-15.414-59.715L-14.328-58.403Q-14.168-58.227-14.008-58.184Q-13.847-58.141-13.543-58.141L-13.543-57.844L-15.230-57.844L-15.230-58.141Q-15.140-58.141-15.062-58.184Q-14.984-58.227-14.984-58.317Q-14.984-58.340-15.015-58.403L-15.758-59.309L-16.343-58.621Q-16.461-58.485-16.461-58.348Q-16.461-58.262-16.410-58.201Q-16.359-58.141-16.269-58.141\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M-8.298-57.844H14.31\"\u002F>\u003Cpath stroke=\"none\" d=\"m16.91-57.844-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M74.215-57.844h22.608\"\u002F>\u003Cpath stroke=\"none\" d=\"m99.423-57.844-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M156.728-57.844h22.607\"\u002F>\u003Cpath stroke=\"none\" d=\"m181.935-57.844-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M239.24-57.844h22.609\"\u002F>\u003Cpath stroke=\"none\" d=\"m264.449-57.844-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M321.754-57.844h31.543\"\u002F>\u003Cpath stroke=\"none\" d=\"m355.897-57.844-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003Cg transform=\"translate(396.58 2.733)\">\u003Cpath d=\"M-34.783-57.844L-36.639-57.844L-36.639-58.141Q-36.365-58.141-36.197-58.188Q-36.029-58.235-36.029-58.403L-36.029-60.539Q-36.029-60.754-36.092-60.850Q-36.154-60.946-36.273-60.967Q-36.392-60.989-36.639-60.989L-36.639-61.285L-35.447-61.371L-35.447-60.637Q-35.334-60.852-35.140-61.020Q-34.947-61.188-34.709-61.280Q-34.471-61.371-34.217-61.371Q-33.049-61.371-33.049-60.293L-33.049-58.403Q-33.049-58.235-32.879-58.188Q-32.709-58.141-32.439-58.141L-32.439-57.844L-34.295-57.844L-34.295-58.141Q-34.021-58.141-33.853-58.188Q-33.685-58.235-33.685-58.403L-33.685-60.278Q-33.685-60.660-33.806-60.889Q-33.928-61.117-34.279-61.117Q-34.592-61.117-34.846-60.955Q-35.099-60.793-35.246-60.524Q-35.392-60.254-35.392-59.957L-35.392-58.403Q-35.392-58.235-35.222-58.188Q-35.053-58.141-34.783-58.141L-34.783-57.844M-31.994-59.598Q-31.994-60.078-31.762-60.494Q-31.529-60.910-31.119-61.160Q-30.709-61.410-30.232-61.410Q-29.502-61.410-29.103-60.969Q-28.705-60.528-28.705-59.797Q-28.705-59.692-28.799-59.668L-31.248-59.668L-31.248-59.598Q-31.248-59.188-31.127-58.832Q-31.006-58.477-30.734-58.260Q-30.463-58.043-30.033-58.043Q-29.670-58.043-29.373-58.272Q-29.076-58.500-28.974-58.852Q-28.967-58.899-28.881-58.914L-28.799-58.914Q-28.705-58.887-28.705-58.805Q-28.705-58.797-28.713-58.766Q-28.775-58.539-28.914-58.356Q-29.053-58.172-29.244-58.039Q-29.435-57.907-29.654-57.836Q-29.873-57.766-30.111-57.766Q-30.482-57.766-30.820-57.903Q-31.158-58.039-31.426-58.291Q-31.693-58.543-31.844-58.883Q-31.994-59.223-31.994-59.598M-31.240-59.907L-29.279-59.907Q-29.279-60.211-29.381-60.502Q-29.482-60.793-29.699-60.975Q-29.916-61.157-30.232-61.157Q-30.533-61.157-30.764-60.969Q-30.994-60.782-31.117-60.490Q-31.240-60.199-31.240-59.907M-26.631-57.875L-27.701-60.731Q-27.767-60.910-27.898-60.953Q-28.029-60.996-28.287-60.996L-28.287-61.293L-26.607-61.293L-26.607-60.996Q-27.056-60.996-27.056-60.797Q-27.053-60.782-27.051-60.764Q-27.049-60.746-27.049-60.731L-26.256-58.637L-25.545-60.547Q-25.580-60.641-25.580-60.686Q-25.580-60.731-25.615-60.731Q-25.681-60.910-25.812-60.953Q-25.943-60.996-26.197-60.996L-26.197-61.293L-24.607-61.293L-24.607-60.996Q-25.056-60.996-25.056-60.797Q-25.053-60.778-25.051-60.760Q-25.049-60.742-25.049-60.731L-24.217-58.516L-23.463-60.516Q-23.439-60.574-23.439-60.645Q-23.439-60.805-23.576-60.901Q-23.713-60.996-23.881-60.996L-23.881-61.293L-22.494-61.293L-22.494-60.996Q-22.728-60.996-22.906-60.869Q-23.084-60.742-23.166-60.516L-24.150-57.875Q-24.205-57.766-24.318-57.766L-24.377-57.766Q-24.490-57.766-24.533-57.875L-25.392-60.149L-26.248-57.875Q-26.287-57.766-26.408-57.766L-26.463-57.766Q-26.576-57.766-26.631-57.875M-19.584-57.844L-21.967-57.844L-21.967-58.141Q-21.642-58.141-21.400-58.188Q-21.158-58.235-21.158-58.403L-21.158-62.746Q-21.158-62.918-21.400-62.965Q-21.642-63.012-21.967-63.012L-21.967-63.309L-19.021-63.309Q-18.678-63.309-18.322-63.209Q-17.967-63.110-17.672-62.918Q-17.377-62.727-17.195-62.442Q-17.014-62.157-17.014-61.797Q-17.014-61.324-17.324-60.989Q-17.635-60.653-18.099-60.481Q-18.564-60.309-19.021-60.309L-20.389-60.309L-20.389-58.403Q-20.389-58.235-20.146-58.188Q-19.904-58.141-19.584-58.141L-19.584-57.844M-20.416-62.746L-20.416-60.578L-19.240-60.578Q-18.553-60.578-18.215-60.854Q-17.877-61.129-17.877-61.797Q-17.877-62.461-18.215-62.737Q-18.553-63.012-19.240-63.012L-20.014-63.012Q-20.232-63.012-20.324-62.969Q-20.416-62.926-20.416-62.746M-16.068-60.578Q-16.068-61.172-15.836-61.703Q-15.603-62.235-15.187-62.635Q-14.771-63.035-14.238-63.256Q-13.705-63.477-13.099-63.477Q-12.662-63.477-12.264-63.295Q-11.865-63.114-11.556-62.782L-11.084-63.446Q-11.053-63.477-11.021-63.477L-10.974-63.477Q-10.947-63.477-10.916-63.446Q-10.885-63.414-10.885-63.387L-10.885-61.250Q-10.885-61.227-10.916-61.196Q-10.947-61.164-10.974-61.164L-11.092-61.164Q-11.119-61.164-11.150-61.196Q-11.181-61.227-11.181-61.250Q-11.181-61.516-11.324-61.869Q-11.467-62.223-11.646-62.461Q-11.900-62.793-12.250-62.987Q-12.599-63.180-13.006-63.180Q-13.510-63.180-13.963-62.961Q-14.416-62.742-14.709-62.348Q-15.205-61.680-15.205-60.578Q-15.205-60.047-15.068-59.580Q-14.931-59.114-14.656-58.748Q-14.381-58.383-13.961-58.178Q-13.541-57.973-12.998-57.973Q-12.510-57.973-12.086-58.217Q-11.662-58.461-11.414-58.881Q-11.166-59.301-11.166-59.797Q-11.166-59.832-11.137-59.858Q-11.107-59.883-11.076-59.883L-10.974-59.883Q-10.931-59.883-10.908-59.854Q-10.885-59.824-10.885-59.782Q-10.885-59.344-11.060-58.955Q-11.236-58.567-11.547-58.283Q-11.857-58-12.267-57.838Q-12.678-57.676-13.099-57.676Q-13.689-57.676-14.230-57.897Q-14.771-58.117-15.187-58.522Q-15.603-58.926-15.836-59.455Q-16.068-59.985-16.068-60.578\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-9.126 29.384)\">\u003Cpath d=\"M-35.977-58.158Q-35.857-58.042-35.680-58Q-35.502-57.957-35.286-57.957Q-35.047-57.957-34.837-58.066Q-34.627-58.176-34.473-58.358Q-34.319-58.541-34.220-58.774Q-34.053-59.201-34.053-60.021Q-34.203-59.727-34.466-59.548Q-34.729-59.368-35.047-59.368Q-35.481-59.368-35.828-59.577Q-36.175-59.785-36.373-60.146Q-36.572-60.507-36.572-60.930Q-36.572-61.265-36.442-61.554Q-36.312-61.843-36.081-62.057Q-35.850-62.270-35.551-62.381Q-35.252-62.492-34.921-62.492Q-34.063-62.492-33.707-61.778Q-33.352-61.064-33.352-60.107Q-33.352-59.690-33.480-59.262Q-33.608-58.835-33.865-58.480Q-34.121-58.124-34.483-57.914Q-34.846-57.704-35.286-57.704Q-35.741-57.704-36.059-57.892Q-36.377-58.080-36.377-58.504Q-36.377-58.654-36.278-58.753Q-36.179-58.852-36.028-58.852Q-35.960-58.852-35.893-58.825Q-35.826-58.798-35.782-58.753Q-35.738-58.709-35.710-58.642Q-35.683-58.575-35.683-58.504Q-35.683-58.374-35.763-58.276Q-35.844-58.179-35.977-58.158M-35.006-59.594Q-34.712-59.594-34.497-59.772Q-34.282-59.949-34.174-60.225Q-34.066-60.500-34.066-60.790Q-34.066-60.835-34.068-60.862Q-34.070-60.889-34.073-60.924Q-34.070-60.934-34.068-60.941Q-34.066-60.948-34.066-60.958Q-34.066-61.460-34.264-61.860Q-34.463-62.260-34.921-62.260Q-35.488-62.260-35.681-61.901Q-35.874-61.542-35.874-60.930Q-35.874-60.544-35.820-60.261Q-35.765-59.977-35.570-59.785Q-35.375-59.594-35.006-59.594M-30.980-57.704Q-31.616-57.704-31.980-58.049Q-32.344-58.394-32.479-58.919Q-32.614-59.444-32.614-60.069Q-32.614-61.094-32.258-61.793Q-31.903-62.492-30.980-62.492Q-30.054-62.492-29.701-61.793Q-29.349-61.094-29.349-60.069Q-29.349-59.444-29.484-58.919Q-29.619-58.394-29.982-58.049Q-30.344-57.704-30.980-57.704M-30.980-57.929Q-30.542-57.929-30.329-58.304Q-30.115-58.678-30.066-59.145Q-30.016-59.611-30.016-60.189Q-30.016-60.742-30.066-61.170Q-30.115-61.597-30.327-61.932Q-30.539-62.267-30.980-62.267Q-31.322-62.267-31.525-62.060Q-31.728-61.853-31.816-61.541Q-31.903-61.228-31.925-60.912Q-31.947-60.595-31.947-60.189Q-31.947-59.772-31.925-59.430Q-31.903-59.088-31.814-58.740Q-31.725-58.391-31.520-58.160Q-31.315-57.929-30.980-57.929\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-9.126 29.384)\">\u003Cpath d=\"M-24.326-56.487L-25.956-56.487L-25.956-56.767Q-25.727-56.767-25.578-56.802Q-25.430-56.836-25.430-56.976L-25.430-60.322Q-25.430-60.493-25.566-60.534Q-25.703-60.575-25.956-60.575L-25.956-60.855L-24.876-60.930L-24.876-60.524Q-24.654-60.725-24.367-60.828Q-24.079-60.930-23.772-60.930Q-23.345-60.930-22.981-60.717Q-22.617-60.503-22.403-60.139Q-22.189-59.775-22.189-59.355Q-22.189-58.910-22.429-58.546Q-22.668-58.182-23.061-57.979Q-23.454-57.776-23.898-57.776Q-24.165-57.776-24.413-57.876Q-24.660-57.977-24.848-58.158L-24.848-56.976Q-24.848-56.839-24.700-56.803Q-24.551-56.767-24.326-56.767L-24.326-56.487M-24.848-60.175L-24.848-58.565Q-24.715-58.312-24.472-58.155Q-24.230-57.998-23.953-57.998Q-23.625-57.998-23.372-58.199Q-23.119-58.401-22.986-58.719Q-22.852-59.037-22.852-59.355Q-22.852-59.584-22.917-59.813Q-22.982-60.042-23.110-60.240Q-23.239-60.438-23.433-60.558Q-23.628-60.677-23.861-60.677Q-24.155-60.677-24.423-60.548Q-24.691-60.418-24.848-60.175M-21.554-57.851L-21.554-58.914Q-21.554-58.938-21.526-58.965Q-21.499-58.992-21.475-58.992L-21.366-58.992Q-21.301-58.992-21.287-58.934Q-21.191-58.500-20.945-58.249Q-20.699-57.998-20.285-57.998Q-19.944-57.998-19.691-58.131Q-19.438-58.264-19.438-58.572Q-19.438-58.729-19.532-58.844Q-19.626-58.958-19.764-59.027Q-19.903-59.095-20.070-59.133L-20.651-59.232Q-21.007-59.300-21.280-59.521Q-21.554-59.741-21.554-60.083Q-21.554-60.332-21.442-60.507Q-21.331-60.681-21.145-60.780Q-20.959-60.879-20.743-60.922Q-20.528-60.965-20.285-60.965Q-19.872-60.965-19.592-60.783L-19.376-60.958Q-19.366-60.961-19.359-60.963Q-19.352-60.965-19.342-60.965L-19.291-60.965Q-19.263-60.965-19.240-60.941Q-19.216-60.917-19.216-60.889L-19.216-60.042Q-19.216-60.021-19.240-59.994Q-19.263-59.967-19.291-59.967L-19.404-59.967Q-19.431-59.967-19.457-59.992Q-19.482-60.018-19.482-60.042Q-19.482-60.278-19.588-60.442Q-19.694-60.606-19.877-60.688Q-20.060-60.770-20.292-60.770Q-20.620-60.770-20.877-60.667Q-21.133-60.565-21.133-60.288Q-21.133-60.093-20.950-59.984Q-20.767-59.874-20.538-59.833L-19.964-59.727Q-19.718-59.679-19.504-59.551Q-19.291-59.423-19.154-59.220Q-19.017-59.016-19.017-58.767Q-19.017-58.254-19.383-58.015Q-19.749-57.776-20.285-57.776Q-20.781-57.776-21.113-58.070L-21.379-57.796Q-21.400-57.776-21.427-57.776L-21.475-57.776Q-21.499-57.776-21.526-57.803Q-21.554-57.830-21.554-57.851\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(73.387 29.384)\">\u003Cpath d=\"M-34.962-57.704Q-35.420-57.704-35.738-57.919Q-36.055-58.135-36.237-58.487Q-36.418-58.839-36.495-59.259Q-36.572-59.679-36.572-60.107Q-36.572-60.691-36.319-61.247Q-36.066-61.802-35.596-62.147Q-35.126-62.492-34.528-62.492Q-34.118-62.492-33.834-62.294Q-33.550-62.096-33.550-61.693Q-33.550-61.597-33.596-61.518Q-33.642-61.440-33.723-61.395Q-33.803-61.351-33.892-61.351Q-34.039-61.351-34.140-61.448Q-34.241-61.546-34.241-61.693Q-34.241-61.823-34.150-61.930Q-34.059-62.038-33.926-62.038Q-34.114-62.260-34.528-62.260Q-34.842-62.260-35.116-62.096Q-35.389-61.932-35.556-61.658Q-35.744-61.368-35.809-61.002Q-35.874-60.636-35.874-60.182Q-35.724-60.476-35.459-60.654Q-35.194-60.831-34.880-60.831Q-34.449-60.831-34.100-60.625Q-33.752-60.418-33.552-60.062Q-33.352-59.707-33.352-59.280Q-33.352-58.835-33.569-58.475Q-33.786-58.114-34.159-57.909Q-34.531-57.704-34.962-57.704M-34.962-57.957Q-34.586-57.957-34.382-58.140Q-34.179-58.323-34.116-58.606Q-34.053-58.890-34.053-59.280Q-34.053-59.666-34.107-59.946Q-34.162-60.226-34.357-60.418Q-34.552-60.609-34.921-60.609Q-35.211-60.609-35.423-60.433Q-35.635-60.257-35.743-59.984Q-35.850-59.710-35.850-59.427L-35.850-59.286L-35.850-59.245Q-35.850-58.740-35.639-58.348Q-35.427-57.957-34.962-57.957M-30.980-57.704Q-31.616-57.704-31.980-58.049Q-32.344-58.394-32.479-58.919Q-32.614-59.444-32.614-60.069Q-32.614-61.094-32.258-61.793Q-31.903-62.492-30.980-62.492Q-30.054-62.492-29.701-61.793Q-29.349-61.094-29.349-60.069Q-29.349-59.444-29.484-58.919Q-29.619-58.394-29.982-58.049Q-30.344-57.704-30.980-57.704M-30.980-57.929Q-30.542-57.929-30.329-58.304Q-30.115-58.678-30.066-59.145Q-30.016-59.611-30.016-60.189Q-30.016-60.742-30.066-61.170Q-30.115-61.597-30.327-61.932Q-30.539-62.267-30.980-62.267Q-31.322-62.267-31.525-62.060Q-31.728-61.853-31.816-61.541Q-31.903-61.228-31.925-60.912Q-31.947-60.595-31.947-60.189Q-31.947-59.772-31.925-59.430Q-31.903-59.088-31.814-58.740Q-31.725-58.391-31.520-58.160Q-31.315-57.929-30.980-57.929\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(73.387 29.384)\">\u003Cpath d=\"M-24.326-56.487L-25.956-56.487L-25.956-56.767Q-25.727-56.767-25.578-56.802Q-25.430-56.836-25.430-56.976L-25.430-60.322Q-25.430-60.493-25.566-60.534Q-25.703-60.575-25.956-60.575L-25.956-60.855L-24.876-60.930L-24.876-60.524Q-24.654-60.725-24.367-60.828Q-24.079-60.930-23.772-60.930Q-23.345-60.930-22.981-60.717Q-22.617-60.503-22.403-60.139Q-22.189-59.775-22.189-59.355Q-22.189-58.910-22.429-58.546Q-22.668-58.182-23.061-57.979Q-23.454-57.776-23.898-57.776Q-24.165-57.776-24.413-57.876Q-24.660-57.977-24.848-58.158L-24.848-56.976Q-24.848-56.839-24.700-56.803Q-24.551-56.767-24.326-56.767L-24.326-56.487M-24.848-60.175L-24.848-58.565Q-24.715-58.312-24.472-58.155Q-24.230-57.998-23.953-57.998Q-23.625-57.998-23.372-58.199Q-23.119-58.401-22.986-58.719Q-22.852-59.037-22.852-59.355Q-22.852-59.584-22.917-59.813Q-22.982-60.042-23.110-60.240Q-23.239-60.438-23.433-60.558Q-23.628-60.677-23.861-60.677Q-24.155-60.677-24.423-60.548Q-24.691-60.418-24.848-60.175M-21.554-57.851L-21.554-58.914Q-21.554-58.938-21.526-58.965Q-21.499-58.992-21.475-58.992L-21.366-58.992Q-21.301-58.992-21.287-58.934Q-21.191-58.500-20.945-58.249Q-20.699-57.998-20.285-57.998Q-19.944-57.998-19.691-58.131Q-19.438-58.264-19.438-58.572Q-19.438-58.729-19.532-58.844Q-19.626-58.958-19.764-59.027Q-19.903-59.095-20.070-59.133L-20.651-59.232Q-21.007-59.300-21.280-59.521Q-21.554-59.741-21.554-60.083Q-21.554-60.332-21.442-60.507Q-21.331-60.681-21.145-60.780Q-20.959-60.879-20.743-60.922Q-20.528-60.965-20.285-60.965Q-19.872-60.965-19.592-60.783L-19.376-60.958Q-19.366-60.961-19.359-60.963Q-19.352-60.965-19.342-60.965L-19.291-60.965Q-19.263-60.965-19.240-60.941Q-19.216-60.917-19.216-60.889L-19.216-60.042Q-19.216-60.021-19.240-59.994Q-19.263-59.967-19.291-59.967L-19.404-59.967Q-19.431-59.967-19.457-59.992Q-19.482-60.018-19.482-60.042Q-19.482-60.278-19.588-60.442Q-19.694-60.606-19.877-60.688Q-20.060-60.770-20.292-60.770Q-20.620-60.770-20.877-60.667Q-21.133-60.565-21.133-60.288Q-21.133-60.093-20.950-59.984Q-20.767-59.874-20.538-59.833L-19.964-59.727Q-19.718-59.679-19.504-59.551Q-19.291-59.423-19.154-59.220Q-19.017-59.016-19.017-58.767Q-19.017-58.254-19.383-58.015Q-19.749-57.776-20.285-57.776Q-20.781-57.776-21.113-58.070L-21.379-57.796Q-21.400-57.776-21.427-57.776L-21.475-57.776Q-21.499-57.776-21.526-57.803Q-21.554-57.830-21.554-57.851\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(155.9 29.384)\">\u003Cpath d=\"M-36.572-58.921Q-36.572-59.362-36.269-59.683Q-35.967-60.004-35.515-60.196L-35.755-60.336Q-36.025-60.496-36.191-60.754Q-36.356-61.012-36.356-61.310Q-36.356-61.662-36.151-61.934Q-35.946-62.205-35.625-62.349Q-35.304-62.492-34.962-62.492Q-34.640-62.492-34.317-62.376Q-33.994-62.260-33.783-62.019Q-33.571-61.778-33.571-61.443Q-33.571-61.081-33.815-60.818Q-34.059-60.554-34.439-60.377L-34.039-60.141Q-33.844-60.028-33.685-59.859Q-33.526-59.690-33.439-59.481Q-33.352-59.273-33.352-59.040Q-33.352-58.637-33.586-58.333Q-33.820-58.029-34.194-57.866Q-34.569-57.704-34.962-57.704Q-35.348-57.704-35.717-57.841Q-36.086-57.977-36.329-58.254Q-36.572-58.531-36.572-58.921M-36.124-58.921Q-36.124-58.634-35.955-58.411Q-35.785-58.189-35.517-58.073Q-35.249-57.957-34.962-57.957Q-34.524-57.957-34.162-58.174Q-33.800-58.391-33.800-58.798Q-33.800-58.999-33.928-59.177Q-34.056-59.355-34.234-59.454L-35.256-60.049Q-35.495-59.939-35.693-59.773Q-35.891-59.608-36.008-59.392Q-36.124-59.177-36.124-58.921M-35.601-61.050L-34.681-60.517Q-34.374-60.677-34.172-60.910Q-33.971-61.142-33.971-61.443Q-33.971-61.682-34.116-61.872Q-34.261-62.062-34.493-62.161Q-34.726-62.260-34.962-62.260Q-35.184-62.260-35.413-62.190Q-35.642-62.120-35.799-61.963Q-35.956-61.805-35.956-61.576Q-35.956-61.262-35.601-61.050M-30.980-57.704Q-31.616-57.704-31.980-58.049Q-32.344-58.394-32.479-58.919Q-32.614-59.444-32.614-60.069Q-32.614-61.094-32.258-61.793Q-31.903-62.492-30.980-62.492Q-30.054-62.492-29.701-61.793Q-29.349-61.094-29.349-60.069Q-29.349-59.444-29.484-58.919Q-29.619-58.394-29.982-58.049Q-30.344-57.704-30.980-57.704M-30.980-57.929Q-30.542-57.929-30.329-58.304Q-30.115-58.678-30.066-59.145Q-30.016-59.611-30.016-60.189Q-30.016-60.742-30.066-61.170Q-30.115-61.597-30.327-61.932Q-30.539-62.267-30.980-62.267Q-31.322-62.267-31.525-62.060Q-31.728-61.853-31.816-61.541Q-31.903-61.228-31.925-60.912Q-31.947-60.595-31.947-60.189Q-31.947-59.772-31.925-59.430Q-31.903-59.088-31.814-58.740Q-31.725-58.391-31.520-58.160Q-31.315-57.929-30.980-57.929\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(155.9 29.384)\">\u003Cpath d=\"M-24.326-56.487L-25.956-56.487L-25.956-56.767Q-25.727-56.767-25.578-56.802Q-25.430-56.836-25.430-56.976L-25.430-60.322Q-25.430-60.493-25.566-60.534Q-25.703-60.575-25.956-60.575L-25.956-60.855L-24.876-60.930L-24.876-60.524Q-24.654-60.725-24.367-60.828Q-24.079-60.930-23.772-60.930Q-23.345-60.930-22.981-60.717Q-22.617-60.503-22.403-60.139Q-22.189-59.775-22.189-59.355Q-22.189-58.910-22.429-58.546Q-22.668-58.182-23.061-57.979Q-23.454-57.776-23.898-57.776Q-24.165-57.776-24.413-57.876Q-24.660-57.977-24.848-58.158L-24.848-56.976Q-24.848-56.839-24.700-56.803Q-24.551-56.767-24.326-56.767L-24.326-56.487M-24.848-60.175L-24.848-58.565Q-24.715-58.312-24.472-58.155Q-24.230-57.998-23.953-57.998Q-23.625-57.998-23.372-58.199Q-23.119-58.401-22.986-58.719Q-22.852-59.037-22.852-59.355Q-22.852-59.584-22.917-59.813Q-22.982-60.042-23.110-60.240Q-23.239-60.438-23.433-60.558Q-23.628-60.677-23.861-60.677Q-24.155-60.677-24.423-60.548Q-24.691-60.418-24.848-60.175M-21.554-57.851L-21.554-58.914Q-21.554-58.938-21.526-58.965Q-21.499-58.992-21.475-58.992L-21.366-58.992Q-21.301-58.992-21.287-58.934Q-21.191-58.500-20.945-58.249Q-20.699-57.998-20.285-57.998Q-19.944-57.998-19.691-58.131Q-19.438-58.264-19.438-58.572Q-19.438-58.729-19.532-58.844Q-19.626-58.958-19.764-59.027Q-19.903-59.095-20.070-59.133L-20.651-59.232Q-21.007-59.300-21.280-59.521Q-21.554-59.741-21.554-60.083Q-21.554-60.332-21.442-60.507Q-21.331-60.681-21.145-60.780Q-20.959-60.879-20.743-60.922Q-20.528-60.965-20.285-60.965Q-19.872-60.965-19.592-60.783L-19.376-60.958Q-19.366-60.961-19.359-60.963Q-19.352-60.965-19.342-60.965L-19.291-60.965Q-19.263-60.965-19.240-60.941Q-19.216-60.917-19.216-60.889L-19.216-60.042Q-19.216-60.021-19.240-59.994Q-19.263-59.967-19.291-59.967L-19.404-59.967Q-19.431-59.967-19.457-59.992Q-19.482-60.018-19.482-60.042Q-19.482-60.278-19.588-60.442Q-19.694-60.606-19.877-60.688Q-20.060-60.770-20.292-60.770Q-20.620-60.770-20.877-60.667Q-21.133-60.565-21.133-60.288Q-21.133-60.093-20.950-59.984Q-20.767-59.874-20.538-59.833L-19.964-59.727Q-19.718-59.679-19.504-59.551Q-19.291-59.423-19.154-59.220Q-19.017-59.016-19.017-58.767Q-19.017-58.254-19.383-58.015Q-19.749-57.776-20.285-57.776Q-20.781-57.776-21.113-58.070L-21.379-57.796Q-21.400-57.776-21.427-57.776L-21.475-57.776Q-21.499-57.776-21.526-57.803Q-21.554-57.830-21.554-57.851\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(236.42 29.384)\">\u003Cpath d=\"M-33.625-57.844L-36.155-57.844L-36.155-58.124Q-35.187-58.124-35.187-58.333L-35.187-61.952Q-35.580-61.764-36.202-61.764L-36.202-62.045Q-35.785-62.045-35.421-62.146Q-35.057-62.246-34.801-62.492L-34.675-62.492Q-34.610-62.475-34.593-62.407L-34.593-58.333Q-34.593-58.124-33.625-58.124L-33.625-57.844M-29.643-57.844L-32.528-57.844L-32.528-58.046Q-32.528-58.076-32.501-58.104L-31.253-59.321Q-31.181-59.396-31.139-59.438Q-31.096-59.481-31.017-59.560Q-30.604-59.973-30.373-60.331Q-30.142-60.688-30.142-61.112Q-30.142-61.344-30.221-61.547Q-30.300-61.751-30.441-61.901Q-30.583-62.052-30.778-62.132Q-30.973-62.212-31.205-62.212Q-31.516-62.212-31.774-62.053Q-32.033-61.894-32.162-61.617L-32.142-61.617Q-31.974-61.617-31.867-61.506Q-31.759-61.395-31.759-61.231Q-31.759-61.074-31.868-60.961Q-31.978-60.848-32.142-60.848Q-32.303-60.848-32.415-60.961Q-32.528-61.074-32.528-61.231Q-32.528-61.607-32.320-61.894Q-32.111-62.181-31.776-62.337Q-31.441-62.492-31.086-62.492Q-30.662-62.492-30.283-62.334Q-29.903-62.175-29.669-61.858Q-29.435-61.542-29.435-61.112Q-29.435-60.801-29.575-60.532Q-29.715-60.264-29.920-60.059Q-30.125-59.854-30.488-59.572Q-30.850-59.290-30.959-59.194L-31.814-58.466L-31.171-58.466Q-30.908-58.466-30.619-58.468Q-30.330-58.469-30.112-58.478Q-29.893-58.487-29.876-58.504Q-29.814-58.569-29.777-58.736Q-29.739-58.904-29.701-59.146L-29.435-59.146L-29.643-57.844M-26.998-57.704Q-27.634-57.704-27.998-58.049Q-28.362-58.394-28.497-58.919Q-28.632-59.444-28.632-60.069Q-28.632-61.094-28.276-61.793Q-27.921-62.492-26.998-62.492Q-26.072-62.492-25.720-61.793Q-25.368-61.094-25.368-60.069Q-25.368-59.444-25.503-58.919Q-25.638-58.394-26-58.049Q-26.362-57.704-26.998-57.704M-26.998-57.929Q-26.560-57.929-26.347-58.304Q-26.133-58.678-26.084-59.145Q-26.034-59.611-26.034-60.189Q-26.034-60.742-26.084-61.170Q-26.133-61.597-26.345-61.932Q-26.557-62.267-26.998-62.267Q-27.340-62.267-27.543-62.060Q-27.746-61.853-27.834-61.541Q-27.921-61.228-27.943-60.912Q-27.965-60.595-27.965-60.189Q-27.965-59.772-27.943-59.430Q-27.921-59.088-27.832-58.740Q-27.743-58.391-27.538-58.160Q-27.333-57.929-26.998-57.929\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(236.42 29.384)\">\u003Cpath d=\"M-20.340-56.487L-21.970-56.487L-21.970-56.767Q-21.741-56.767-21.592-56.802Q-21.444-56.836-21.444-56.976L-21.444-60.322Q-21.444-60.493-21.580-60.534Q-21.717-60.575-21.970-60.575L-21.970-60.855L-20.890-60.930L-20.890-60.524Q-20.668-60.725-20.381-60.828Q-20.093-60.930-19.786-60.930Q-19.359-60.930-18.995-60.717Q-18.631-60.503-18.417-60.139Q-18.203-59.775-18.203-59.355Q-18.203-58.910-18.443-58.546Q-18.682-58.182-19.075-57.979Q-19.468-57.776-19.912-57.776Q-20.179-57.776-20.427-57.876Q-20.674-57.977-20.862-58.158L-20.862-56.976Q-20.862-56.839-20.714-56.803Q-20.565-56.767-20.340-56.767L-20.340-56.487M-20.862-60.175L-20.862-58.565Q-20.729-58.312-20.486-58.155Q-20.244-57.998-19.967-57.998Q-19.639-57.998-19.386-58.199Q-19.133-58.401-19-58.719Q-18.866-59.037-18.866-59.355Q-18.866-59.584-18.931-59.813Q-18.996-60.042-19.124-60.240Q-19.253-60.438-19.447-60.558Q-19.642-60.677-19.875-60.677Q-20.169-60.677-20.437-60.548Q-20.705-60.418-20.862-60.175M-17.568-57.851L-17.568-58.914Q-17.568-58.938-17.540-58.965Q-17.513-58.992-17.489-58.992L-17.380-58.992Q-17.315-58.992-17.301-58.934Q-17.205-58.500-16.959-58.249Q-16.713-57.998-16.299-57.998Q-15.958-57.998-15.705-58.131Q-15.452-58.264-15.452-58.572Q-15.452-58.729-15.546-58.844Q-15.640-58.958-15.778-59.027Q-15.917-59.095-16.084-59.133L-16.665-59.232Q-17.021-59.300-17.294-59.521Q-17.568-59.741-17.568-60.083Q-17.568-60.332-17.456-60.507Q-17.345-60.681-17.159-60.780Q-16.973-60.879-16.757-60.922Q-16.542-60.965-16.299-60.965Q-15.886-60.965-15.606-60.783L-15.390-60.958Q-15.380-60.961-15.373-60.963Q-15.366-60.965-15.356-60.965L-15.305-60.965Q-15.277-60.965-15.254-60.941Q-15.230-60.917-15.230-60.889L-15.230-60.042Q-15.230-60.021-15.254-59.994Q-15.277-59.967-15.305-59.967L-15.418-59.967Q-15.445-59.967-15.471-59.992Q-15.496-60.018-15.496-60.042Q-15.496-60.278-15.602-60.442Q-15.708-60.606-15.891-60.688Q-16.074-60.770-16.306-60.770Q-16.634-60.770-16.891-60.667Q-17.147-60.565-17.147-60.288Q-17.147-60.093-16.964-59.984Q-16.781-59.874-16.552-59.833L-15.978-59.727Q-15.732-59.679-15.518-59.551Q-15.305-59.423-15.168-59.220Q-15.031-59.016-15.031-58.767Q-15.031-58.254-15.397-58.015Q-15.763-57.776-16.299-57.776Q-16.795-57.776-17.127-58.070L-17.393-57.796Q-17.414-57.776-17.441-57.776L-17.489-57.776Q-17.513-57.776-17.540-57.803Q-17.568-57.830-17.568-57.851\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(320.926 29.384)\">\u003Cpath d=\"M-33.625-57.844L-36.510-57.844L-36.510-58.046Q-36.510-58.076-36.483-58.104L-35.235-59.321Q-35.163-59.396-35.121-59.438Q-35.078-59.481-34.999-59.560Q-34.586-59.973-34.355-60.331Q-34.124-60.688-34.124-61.112Q-34.124-61.344-34.203-61.547Q-34.282-61.751-34.423-61.901Q-34.565-62.052-34.760-62.132Q-34.955-62.212-35.187-62.212Q-35.498-62.212-35.756-62.053Q-36.014-61.894-36.144-61.617L-36.124-61.617Q-35.956-61.617-35.849-61.506Q-35.741-61.395-35.741-61.231Q-35.741-61.074-35.850-60.961Q-35.960-60.848-36.124-60.848Q-36.284-60.848-36.397-60.961Q-36.510-61.074-36.510-61.231Q-36.510-61.607-36.302-61.894Q-36.093-62.181-35.758-62.337Q-35.423-62.492-35.068-62.492Q-34.644-62.492-34.264-62.334Q-33.885-62.175-33.651-61.858Q-33.417-61.542-33.417-61.112Q-33.417-60.801-33.557-60.532Q-33.697-60.264-33.902-60.059Q-34.107-59.854-34.470-59.572Q-34.832-59.290-34.941-59.194L-35.796-58.466L-35.153-58.466Q-34.890-58.466-34.601-58.468Q-34.312-58.469-34.094-58.478Q-33.875-58.487-33.858-58.504Q-33.796-58.569-33.759-58.736Q-33.721-58.904-33.683-59.146L-33.417-59.146L-33.625-57.844M-30.980-57.704Q-31.616-57.704-31.980-58.049Q-32.344-58.394-32.479-58.919Q-32.614-59.444-32.614-60.069Q-32.614-61.094-32.258-61.793Q-31.903-62.492-30.980-62.492Q-30.054-62.492-29.701-61.793Q-29.349-61.094-29.349-60.069Q-29.349-59.444-29.484-58.919Q-29.619-58.394-29.982-58.049Q-30.344-57.704-30.980-57.704M-30.980-57.929Q-30.542-57.929-30.329-58.304Q-30.115-58.678-30.066-59.145Q-30.016-59.611-30.016-60.189Q-30.016-60.742-30.066-61.170Q-30.115-61.597-30.327-61.932Q-30.539-62.267-30.980-62.267Q-31.322-62.267-31.525-62.060Q-31.728-61.853-31.816-61.541Q-31.903-61.228-31.925-60.912Q-31.947-60.595-31.947-60.189Q-31.947-59.772-31.925-59.430Q-31.903-59.088-31.814-58.740Q-31.725-58.391-31.520-58.160Q-31.315-57.929-30.980-57.929\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(320.926 29.384)\">\u003Cpath d=\"M-24.326-56.487L-25.956-56.487L-25.956-56.767Q-25.727-56.767-25.578-56.802Q-25.430-56.836-25.430-56.976L-25.430-60.322Q-25.430-60.493-25.566-60.534Q-25.703-60.575-25.956-60.575L-25.956-60.855L-24.876-60.930L-24.876-60.524Q-24.654-60.725-24.367-60.828Q-24.079-60.930-23.772-60.930Q-23.345-60.930-22.981-60.717Q-22.617-60.503-22.403-60.139Q-22.189-59.775-22.189-59.355Q-22.189-58.910-22.429-58.546Q-22.668-58.182-23.061-57.979Q-23.454-57.776-23.898-57.776Q-24.165-57.776-24.413-57.876Q-24.660-57.977-24.848-58.158L-24.848-56.976Q-24.848-56.839-24.700-56.803Q-24.551-56.767-24.326-56.767L-24.326-56.487M-24.848-60.175L-24.848-58.565Q-24.715-58.312-24.472-58.155Q-24.230-57.998-23.953-57.998Q-23.625-57.998-23.372-58.199Q-23.119-58.401-22.986-58.719Q-22.852-59.037-22.852-59.355Q-22.852-59.584-22.917-59.813Q-22.982-60.042-23.110-60.240Q-23.239-60.438-23.433-60.558Q-23.628-60.677-23.861-60.677Q-24.155-60.677-24.423-60.548Q-24.691-60.418-24.848-60.175M-21.554-57.851L-21.554-58.914Q-21.554-58.938-21.526-58.965Q-21.499-58.992-21.475-58.992L-21.366-58.992Q-21.301-58.992-21.287-58.934Q-21.191-58.500-20.945-58.249Q-20.699-57.998-20.285-57.998Q-19.944-57.998-19.691-58.131Q-19.438-58.264-19.438-58.572Q-19.438-58.729-19.532-58.844Q-19.626-58.958-19.764-59.027Q-19.903-59.095-20.070-59.133L-20.651-59.232Q-21.007-59.300-21.280-59.521Q-21.554-59.741-21.554-60.083Q-21.554-60.332-21.442-60.507Q-21.331-60.681-21.145-60.780Q-20.959-60.879-20.743-60.922Q-20.528-60.965-20.285-60.965Q-19.872-60.965-19.592-60.783L-19.376-60.958Q-19.366-60.961-19.359-60.963Q-19.352-60.965-19.342-60.965L-19.291-60.965Q-19.263-60.965-19.240-60.941Q-19.216-60.917-19.216-60.889L-19.216-60.042Q-19.216-60.021-19.240-59.994Q-19.263-59.967-19.291-59.967L-19.404-59.967Q-19.431-59.967-19.457-59.992Q-19.482-60.018-19.482-60.042Q-19.482-60.278-19.588-60.442Q-19.694-60.606-19.877-60.688Q-20.060-60.770-20.292-60.770Q-20.620-60.770-20.877-60.667Q-21.133-60.565-21.133-60.288Q-21.133-60.093-20.950-59.984Q-20.767-59.874-20.538-59.833L-19.964-59.727Q-19.718-59.679-19.504-59.551Q-19.291-59.423-19.154-59.220Q-19.017-59.016-19.017-58.767Q-19.017-58.254-19.383-58.015Q-19.749-57.776-20.285-57.776Q-20.781-57.776-21.113-58.070L-21.379-57.796Q-21.400-57.776-21.427-57.776L-21.475-57.776Q-21.499-57.776-21.526-57.803Q-21.554-57.830-21.554-57.851\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(3.533 44.43)\">\u003Cpath d=\"M-36.637-59.355Q-36.637-59.683-36.502-59.984Q-36.367-60.284-36.131-60.505Q-35.895-60.725-35.591-60.845Q-35.286-60.965-34.962-60.965Q-34.456-60.965-34.107-60.862Q-33.759-60.760-33.759-60.384Q-33.759-60.237-33.856-60.136Q-33.953-60.035-34.100-60.035Q-34.254-60.035-34.353-60.134Q-34.452-60.233-34.452-60.384Q-34.452-60.572-34.312-60.664Q-34.514-60.715-34.955-60.715Q-35.310-60.715-35.539-60.519Q-35.768-60.322-35.869-60.013Q-35.970-59.703-35.970-59.355Q-35.970-59.006-35.844-58.700Q-35.717-58.394-35.462-58.210Q-35.208-58.025-34.852-58.025Q-34.630-58.025-34.446-58.109Q-34.261-58.193-34.126-58.348Q-33.991-58.504-33.933-58.712Q-33.919-58.767-33.865-58.767L-33.752-58.767Q-33.721-58.767-33.699-58.743Q-33.677-58.719-33.677-58.685L-33.677-58.664Q-33.762-58.377-33.950-58.179Q-34.138-57.981-34.403-57.878Q-34.668-57.776-34.962-57.776Q-35.392-57.776-35.780-57.982Q-36.168-58.189-36.402-58.552Q-36.637-58.914-36.637-59.355M-31.421-57.844L-33.024-57.844L-33.024-58.124Q-32.798-58.124-32.649-58.158Q-32.501-58.193-32.501-58.333L-32.501-61.952Q-32.501-62.222-32.608-62.284Q-32.716-62.345-33.024-62.345L-33.024-62.626L-31.947-62.701L-31.947-58.333Q-31.947-58.196-31.797-58.160Q-31.646-58.124-31.421-58.124L-31.421-57.844M-30.867-59.327Q-30.867-59.669-30.732-59.968Q-30.597-60.267-30.358-60.491Q-30.118-60.715-29.801-60.840Q-29.483-60.965-29.151-60.965Q-28.707-60.965-28.307-60.749Q-27.907-60.534-27.673-60.156Q-27.439-59.779-27.439-59.327Q-27.439-58.986-27.581-58.702Q-27.722-58.418-27.967-58.211Q-28.211-58.005-28.521-57.890Q-28.830-57.776-29.151-57.776Q-29.582-57.776-29.983-57.977Q-30.385-58.179-30.626-58.531Q-30.867-58.883-30.867-59.327M-29.151-58.025Q-28.550-58.025-28.326-58.403Q-28.102-58.781-28.102-59.413Q-28.102-60.025-28.336-60.384Q-28.570-60.742-29.151-60.742Q-30.204-60.742-30.204-59.413Q-30.204-58.781-29.978-58.403Q-29.753-58.025-29.151-58.025\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 44.43)\">\u003Cpath d=\"M-26.616-59.355Q-26.616-59.683-26.481-59.984Q-26.346-60.284-26.110-60.505Q-25.874-60.725-25.570-60.845Q-25.265-60.965-24.941-60.965Q-24.435-60.965-24.086-60.862Q-23.738-60.760-23.738-60.384Q-23.738-60.237-23.835-60.136Q-23.932-60.035-24.079-60.035Q-24.233-60.035-24.332-60.134Q-24.431-60.233-24.431-60.384Q-24.431-60.572-24.291-60.664Q-24.493-60.715-24.934-60.715Q-25.289-60.715-25.518-60.519Q-25.747-60.322-25.848-60.013Q-25.949-59.703-25.949-59.355Q-25.949-59.006-25.823-58.700Q-25.696-58.394-25.441-58.210Q-25.187-58.025-24.831-58.025Q-24.609-58.025-24.425-58.109Q-24.240-58.193-24.105-58.348Q-23.970-58.504-23.912-58.712Q-23.898-58.767-23.844-58.767L-23.731-58.767Q-23.700-58.767-23.678-58.743Q-23.656-58.719-23.656-58.685L-23.656-58.664Q-23.741-58.377-23.929-58.179Q-24.117-57.981-24.382-57.878Q-24.647-57.776-24.941-57.776Q-25.371-57.776-25.759-57.982Q-26.147-58.189-26.381-58.552Q-26.616-58.914-26.616-59.355\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 44.43)\">\u003Cpath d=\"M-21.678-57.844L-23.261-57.844L-23.261-58.124Q-23.032-58.124-22.883-58.158Q-22.735-58.193-22.735-58.333L-22.735-61.952Q-22.735-62.222-22.842-62.284Q-22.950-62.345-23.261-62.345L-23.261-62.626L-22.181-62.701L-22.181-59.413L-21.196-60.182Q-20.991-60.319-20.991-60.469Q-20.991-60.513-21.032-60.548Q-21.073-60.582-21.118-60.582L-21.118-60.862L-19.754-60.862L-19.754-60.582Q-20.243-60.582-20.762-60.182L-21.319-59.748L-20.342-58.524Q-20.140-58.278-20.007-58.201Q-19.874-58.124-19.587-58.124L-19.587-57.844L-21.019-57.844L-21.019-58.124Q-20.831-58.124-20.831-58.237Q-20.831-58.333-20.985-58.524L-21.719-59.433L-22.201-59.054L-22.201-58.333Q-22.201-58.196-22.053-58.160Q-21.904-58.124-21.678-58.124\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 44.43)\">\u003Cpath d=\"M-14.736-56.487L-16.366-56.487L-16.366-56.767Q-16.137-56.767-15.988-56.802Q-15.840-56.836-15.840-56.976L-15.840-60.322Q-15.840-60.493-15.976-60.534Q-16.113-60.575-16.366-60.575L-16.366-60.855L-15.286-60.930L-15.286-60.524Q-15.064-60.725-14.777-60.828Q-14.489-60.930-14.182-60.930Q-13.755-60.930-13.391-60.717Q-13.027-60.503-12.813-60.139Q-12.599-59.775-12.599-59.355Q-12.599-58.910-12.839-58.546Q-13.078-58.182-13.471-57.979Q-13.864-57.776-14.308-57.776Q-14.575-57.776-14.823-57.876Q-15.070-57.977-15.258-58.158L-15.258-56.976Q-15.258-56.839-15.110-56.803Q-14.961-56.767-14.736-56.767L-14.736-56.487M-15.258-60.175L-15.258-58.565Q-15.125-58.312-14.882-58.155Q-14.640-57.998-14.363-57.998Q-14.035-57.998-13.782-58.199Q-13.529-58.401-13.396-58.719Q-13.262-59.037-13.262-59.355Q-13.262-59.584-13.327-59.813Q-13.392-60.042-13.520-60.240Q-13.649-60.438-13.843-60.558Q-14.038-60.677-14.271-60.677Q-14.565-60.677-14.833-60.548Q-15.101-60.418-15.258-60.175\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 44.43)\">\u003Cpath d=\"M-11.789-59.379Q-11.789-59.700-11.664-59.989Q-11.539-60.278-11.313-60.501Q-11.088-60.725-10.792-60.845Q-10.497-60.965-10.179-60.965Q-9.851-60.965-9.589-60.865Q-9.328-60.766-9.152-60.584Q-8.976-60.401-8.882-60.143Q-8.788-59.885-8.788-59.553Q-8.788-59.461-8.870-59.440L-11.125-59.440L-11.125-59.379Q-11.125-58.791-10.842-58.408Q-10.558-58.025-9.991-58.025Q-9.669-58.025-9.401-58.218Q-9.133-58.411-9.044-58.726Q-9.037-58.767-8.962-58.781L-8.870-58.781Q-8.788-58.757-8.788-58.685Q-8.788-58.678-8.794-58.651Q-8.907-58.254-9.278-58.015Q-9.649-57.776-10.073-57.776Q-10.510-57.776-10.910-57.984Q-11.310-58.193-11.549-58.560Q-11.789-58.927-11.789-59.379M-11.119-59.649L-9.304-59.649Q-9.304-59.926-9.401-60.178Q-9.499-60.431-9.697-60.587Q-9.895-60.742-10.179-60.742Q-10.456-60.742-10.669-60.584Q-10.883-60.425-11.001-60.170Q-11.119-59.915-11.119-59.649M-6.450-57.844L-8.186-57.844L-8.186-58.124Q-7.957-58.124-7.808-58.158Q-7.660-58.193-7.660-58.333L-7.660-60.182Q-7.660-60.452-7.767-60.513Q-7.875-60.575-8.186-60.575L-8.186-60.855L-7.157-60.930L-7.157-60.223Q-7.027-60.531-6.785-60.730Q-6.542-60.930-6.224-60.930Q-6.005-60.930-5.834-60.806Q-5.664-60.681-5.664-60.469Q-5.664-60.332-5.763-60.233Q-5.862-60.134-5.995-60.134Q-6.132-60.134-6.231-60.233Q-6.330-60.332-6.330-60.469Q-6.330-60.609-6.231-60.708Q-6.521-60.708-6.721-60.512Q-6.921-60.315-7.014-60.021Q-7.106-59.727-7.106-59.447L-7.106-58.333Q-7.106-58.124-6.450-58.124L-6.450-57.844M-3.462-57.844L-5.014-57.844L-5.014-58.124Q-4.789-58.124-4.640-58.158Q-4.491-58.193-4.491-58.333L-4.491-60.182Q-4.491-60.370-4.539-60.454Q-4.587-60.537-4.684-60.556Q-4.782-60.575-4.994-60.575L-4.994-60.855L-3.937-60.930L-3.937-58.333Q-3.937-58.193-3.806-58.158Q-3.674-58.124-3.462-58.124L-3.462-57.844M-4.734-62.151Q-4.734-62.322-4.611-62.441Q-4.488-62.561-4.317-62.561Q-4.149-62.561-4.026-62.441Q-3.903-62.322-3.903-62.151Q-3.903-61.976-4.026-61.853Q-4.149-61.730-4.317-61.730Q-4.488-61.730-4.611-61.853Q-4.734-61.976-4.734-62.151M-2.857-59.327Q-2.857-59.669-2.722-59.968Q-2.587-60.267-2.348-60.491Q-2.109-60.715-1.791-60.840Q-1.473-60.965-1.142-60.965Q-0.697-60.965-0.297-60.749Q0.103-60.534 0.337-60.156Q0.571-59.779 0.571-59.327Q0.571-58.986 0.429-58.702Q0.287-58.418 0.043-58.211Q-0.202-58.005-0.511-57.890Q-0.820-57.776-1.142-57.776Q-1.572-57.776-1.974-57.977Q-2.375-58.179-2.616-58.531Q-2.857-58.883-2.857-59.327M-1.142-58.025Q-0.540-58.025-0.316-58.403Q-0.092-58.781-0.092-59.413Q-0.092-60.025-0.326-60.384Q-0.561-60.742-1.142-60.742Q-2.194-60.742-2.194-59.413Q-2.194-58.781-1.969-58.403Q-1.743-58.025-1.142-58.025\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 44.43)\">\u003Cpath d=\"M1.398-59.355Q1.398-59.693 1.539-59.984Q1.679-60.274 1.923-60.488Q2.167-60.701 2.472-60.816Q2.776-60.930 3.101-60.930Q3.371-60.930 3.634-60.831Q3.897-60.732 4.088-60.554L4.088-61.952Q4.088-62.222 3.981-62.284Q3.873-62.345 3.562-62.345L3.562-62.626L4.639-62.701L4.639-58.517Q4.639-58.329 4.693-58.246Q4.748-58.162 4.849-58.143Q4.950-58.124 5.165-58.124L5.165-57.844L4.058-57.776L4.058-58.193Q3.641-57.776 3.015-57.776Q2.584-57.776 2.212-57.988Q1.839-58.199 1.619-58.560Q1.398-58.921 1.398-59.355M3.073-57.998Q3.282-57.998 3.468-58.070Q3.654-58.141 3.808-58.278Q3.962-58.415 4.058-58.593L4.058-60.202Q3.972-60.349 3.827-60.469Q3.682-60.589 3.512-60.648Q3.343-60.708 3.162-60.708Q2.602-60.708 2.333-60.319Q2.065-59.929 2.065-59.348Q2.065-58.777 2.299-58.387Q2.533-57.998 3.073-57.998\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 44.43)\">\u003Cpath d=\"M8.568-58.572Q8.568-58.904 8.791-59.131Q9.015-59.358 9.359-59.486Q9.702-59.615 10.075-59.667Q10.447-59.720 10.752-59.720L10.752-59.973Q10.752-60.178 10.644-60.358Q10.536-60.537 10.355-60.640Q10.174-60.742 9.966-60.742Q9.559-60.742 9.323-60.650Q9.412-60.613 9.458-60.529Q9.504-60.445 9.504-60.343Q9.504-60.247 9.458-60.168Q9.412-60.090 9.331-60.045Q9.251-60.001 9.162-60.001Q9.012-60.001 8.911-60.098Q8.810-60.196 8.810-60.343Q8.810-60.965 9.966-60.965Q10.177-60.965 10.427-60.901Q10.676-60.838 10.878-60.719Q11.080-60.599 11.206-60.414Q11.333-60.230 11.333-59.987L11.333-58.411Q11.333-58.295 11.394-58.199Q11.456-58.104 11.569-58.104Q11.678-58.104 11.743-58.198Q11.808-58.292 11.808-58.411L11.808-58.859L12.074-58.859L12.074-58.411Q12.074-58.141 11.847-57.976Q11.620-57.810 11.340-57.810Q11.131-57.810 10.994-57.964Q10.858-58.117 10.834-58.333Q10.687-58.066 10.405-57.921Q10.123-57.776 9.798-57.776Q9.521-57.776 9.237-57.851Q8.954-57.926 8.761-58.105Q8.568-58.285 8.568-58.572M9.183-58.572Q9.183-58.398 9.284-58.268Q9.384-58.138 9.540-58.068Q9.695-57.998 9.860-57.998Q10.078-57.998 10.287-58.095Q10.495-58.193 10.623-58.374Q10.752-58.555 10.752-58.781L10.752-59.509Q10.427-59.509 10.061-59.418Q9.695-59.327 9.439-59.115Q9.183-58.904 9.183-58.572M13.018-58.685L13.018-60.582L12.379-60.582L12.379-60.804Q12.696-60.804 12.914-61.014Q13.131-61.224 13.231-61.534Q13.332-61.843 13.332-62.151L13.599-62.151L13.599-60.862L14.675-60.862L14.675-60.582L13.599-60.582L13.599-58.698Q13.599-58.422 13.703-58.223Q13.807-58.025 14.067-58.025Q14.224-58.025 14.330-58.129Q14.436-58.234 14.486-58.387Q14.535-58.541 14.535-58.698L14.535-59.112L14.802-59.112L14.802-58.685Q14.802-58.459 14.703-58.249Q14.604-58.039 14.419-57.907Q14.235-57.776 14.006-57.776Q13.568-57.776 13.293-58.013Q13.018-58.251 13.018-58.685\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 44.43)\">\u003Cpath d=\"M19.983-57.844L18.380-57.844L18.380-58.124Q18.606-58.124 18.755-58.158Q18.903-58.193 18.903-58.333L18.903-61.952Q18.903-62.222 18.796-62.284Q18.688-62.345 18.380-62.345L18.380-62.626L19.457-62.701L19.457-58.333Q19.457-58.196 19.607-58.160Q19.758-58.124 19.983-58.124L19.983-57.844M20.537-59.379Q20.537-59.700 20.662-59.989Q20.787-60.278 21.012-60.501Q21.238-60.725 21.533-60.845Q21.829-60.965 22.147-60.965Q22.475-60.965 22.737-60.865Q22.998-60.766 23.174-60.584Q23.350-60.401 23.444-60.143Q23.538-59.885 23.538-59.553Q23.538-59.461 23.456-59.440L21.200-59.440L21.200-59.379Q21.200-58.791 21.484-58.408Q21.768-58.025 22.335-58.025Q22.656-58.025 22.925-58.218Q23.193-58.411 23.282-58.726Q23.289-58.767 23.364-58.781L23.456-58.781Q23.538-58.757 23.538-58.685Q23.538-58.678 23.531-58.651Q23.418-58.254 23.048-58.015Q22.677-57.776 22.253-57.776Q21.815-57.776 21.416-57.984Q21.016-58.193 20.776-58.560Q20.537-58.927 20.537-59.379M21.207-59.649L23.022-59.649Q23.022-59.926 22.925-60.178Q22.827-60.431 22.629-60.587Q22.431-60.742 22.147-60.742Q21.870-60.742 21.657-60.584Q21.443-60.425 21.325-60.170Q21.207-59.915 21.207-59.649M24.184-58.572Q24.184-58.904 24.408-59.131Q24.632-59.358 24.975-59.486Q25.319-59.615 25.691-59.667Q26.064-59.720 26.368-59.720L26.368-59.973Q26.368-60.178 26.261-60.358Q26.153-60.537 25.972-60.640Q25.791-60.742 25.582-60.742Q25.175-60.742 24.939-60.650Q25.028-60.613 25.074-60.529Q25.121-60.445 25.121-60.343Q25.121-60.247 25.074-60.168Q25.028-60.090 24.948-60.045Q24.868-60.001 24.779-60.001Q24.628-60.001 24.528-60.098Q24.427-60.196 24.427-60.343Q24.427-60.965 25.582-60.965Q25.794-60.965 26.043-60.901Q26.293-60.838 26.495-60.719Q26.696-60.599 26.823-60.414Q26.949-60.230 26.949-59.987L26.949-58.411Q26.949-58.295 27.011-58.199Q27.072-58.104 27.185-58.104Q27.294-58.104 27.359-58.198Q27.424-58.292 27.424-58.411L27.424-58.859L27.691-58.859L27.691-58.411Q27.691-58.141 27.464-57.976Q27.236-57.810 26.956-57.810Q26.748-57.810 26.611-57.964Q26.474-58.117 26.450-58.333Q26.303-58.066 26.021-57.921Q25.739-57.776 25.415-57.776Q25.138-57.776 24.854-57.851Q24.570-57.926 24.377-58.105Q24.184-58.285 24.184-58.572M24.799-58.572Q24.799-58.398 24.900-58.268Q25.001-58.138 25.157-58.068Q25.312-57.998 25.476-57.998Q25.695-57.998 25.903-58.095Q26.112-58.193 26.240-58.374Q26.368-58.555 26.368-58.781L26.368-59.509Q26.043-59.509 25.678-59.418Q25.312-59.327 25.056-59.115Q24.799-58.904 24.799-58.572M28.108-57.851L28.108-58.914Q28.108-58.938 28.135-58.965Q28.163-58.992 28.187-58.992L28.296-58.992Q28.361-58.992 28.375-58.934Q28.470-58.500 28.716-58.249Q28.962-57.998 29.376-57.998Q29.718-57.998 29.971-58.131Q30.224-58.264 30.224-58.572Q30.224-58.729 30.130-58.844Q30.036-58.958 29.897-59.027Q29.759-59.095 29.591-59.133L29.010-59.232Q28.655-59.300 28.381-59.521Q28.108-59.741 28.108-60.083Q28.108-60.332 28.219-60.507Q28.330-60.681 28.516-60.780Q28.703-60.879 28.918-60.922Q29.133-60.965 29.376-60.965Q29.790-60.965 30.070-60.783L30.285-60.958Q30.295-60.961 30.302-60.963Q30.309-60.965 30.319-60.965L30.371-60.965Q30.398-60.965 30.422-60.941Q30.446-60.917 30.446-60.889L30.446-60.042Q30.446-60.021 30.422-59.994Q30.398-59.967 30.371-59.967L30.258-59.967Q30.230-59.967 30.205-59.992Q30.179-60.018 30.179-60.042Q30.179-60.278 30.073-60.442Q29.967-60.606 29.784-60.688Q29.602-60.770 29.369-60.770Q29.041-60.770 28.785-60.667Q28.528-60.565 28.528-60.288Q28.528-60.093 28.711-59.984Q28.894-59.874 29.123-59.833L29.697-59.727Q29.943-59.679 30.157-59.551Q30.371-59.423 30.507-59.220Q30.644-59.016 30.644-58.767Q30.644-58.254 30.278-58.015Q29.913-57.776 29.376-57.776Q28.880-57.776 28.549-58.070L28.282-57.796Q28.262-57.776 28.234-57.776L28.187-57.776Q28.163-57.776 28.135-57.803Q28.108-57.830 28.108-57.851M31.799-58.685L31.799-60.582L31.160-60.582L31.160-60.804Q31.478-60.804 31.695-61.014Q31.912-61.224 32.013-61.534Q32.114-61.843 32.114-62.151L32.380-62.151L32.380-60.862L33.457-60.862L33.457-60.582L32.380-60.582L32.380-58.698Q32.380-58.422 32.485-58.223Q32.589-58.025 32.849-58.025Q33.006-58.025 33.112-58.129Q33.218-58.234 33.267-58.387Q33.317-58.541 33.317-58.698L33.317-59.112L33.584-59.112L33.584-58.685Q33.584-58.459 33.484-58.249Q33.385-58.039 33.201-57.907Q33.016-57.776 32.787-57.776Q32.350-57.776 32.074-58.013Q31.799-58.251 31.799-58.685\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 44.43)\">\u003Cpath d=\"M37.590-58.391Q37.710-58.234 37.901-58.135Q38.093-58.035 38.308-57.996Q38.523-57.957 38.746-57.957Q39.043-57.957 39.238-58.112Q39.433-58.268 39.523-58.522Q39.614-58.777 39.614-59.061Q39.614-59.355 39.522-59.606Q39.429-59.857 39.231-60.013Q39.033-60.168 38.739-60.168L38.223-60.168Q38.195-60.168 38.170-60.194Q38.144-60.219 38.144-60.243L38.144-60.315Q38.144-60.346 38.170-60.368Q38.195-60.390 38.223-60.390L38.664-60.421Q39.026-60.421 39.246-60.778Q39.467-61.136 39.467-61.525Q39.467-61.853 39.272-62.057Q39.077-62.260 38.746-62.260Q38.459-62.260 38.206-62.176Q37.953-62.093 37.789-61.905Q37.936-61.905 38.036-61.790Q38.137-61.676 38.137-61.525Q38.137-61.375 38.031-61.265Q37.925-61.156 37.768-61.156Q37.607-61.156 37.498-61.265Q37.389-61.375 37.389-61.525Q37.389-61.850 37.597-62.069Q37.806-62.287 38.122-62.390Q38.438-62.492 38.746-62.492Q39.064-62.492 39.392-62.388Q39.720-62.284 39.947-62.062Q40.174-61.840 40.174-61.525Q40.174-61.091 39.887-60.766Q39.600-60.442 39.166-60.295Q39.477-60.230 39.757-60.064Q40.038-59.898 40.215-59.640Q40.393-59.382 40.393-59.061Q40.393-58.651 40.149-58.341Q39.904-58.032 39.523-57.868Q39.142-57.704 38.746-57.704Q38.377-57.704 38.019-57.817Q37.662-57.929 37.418-58.179Q37.173-58.428 37.173-58.798Q37.173-58.969 37.290-59.081Q37.406-59.194 37.577-59.194Q37.686-59.194 37.777-59.143Q37.867-59.092 37.922-58.999Q37.977-58.907 37.977-58.798Q37.977-58.630 37.864-58.511Q37.751-58.391 37.590-58.391M42.211-58.052Q42.211-58.558 42.341-59.066Q42.471-59.573 42.709-60.035Q42.946-60.496 43.281-60.917L43.927-61.730L43.114-61.730Q42.529-61.730 42.133-61.722Q41.736-61.713 41.712-61.693Q41.610-61.576 41.531-61.050L41.265-61.050L41.511-62.574L41.777-62.574L41.777-62.554Q41.777-62.486 41.853-62.443Q41.928-62.400 42.006-62.393Q42.198-62.369 42.393-62.363Q42.587-62.356 42.779-62.354Q42.970-62.352 43.169-62.352L44.590-62.352L44.590-62.164Q44.580-62.116 44.570-62.106L43.514-60.783Q43.295-60.510 43.172-60.197Q43.049-59.885 42.991-59.536Q42.933-59.187 42.919-58.856Q42.905-58.524 42.905-58.052Q42.905-57.902 42.806-57.803Q42.707-57.704 42.560-57.704Q42.410-57.704 42.311-57.803Q42.211-57.902 42.211-58.052M46.747-57.704Q46.111-57.704 45.747-58.049Q45.383-58.394 45.248-58.919Q45.113-59.444 45.113-60.069Q45.113-61.094 45.469-61.793Q45.824-62.492 46.747-62.492Q47.673-62.492 48.025-61.793Q48.377-61.094 48.377-60.069Q48.377-59.444 48.242-58.919Q48.107-58.394 47.745-58.049Q47.383-57.704 46.747-57.704M46.747-57.929Q47.185-57.929 47.398-58.304Q47.612-58.678 47.661-59.145Q47.711-59.611 47.711-60.189Q47.711-60.742 47.661-61.170Q47.612-61.597 47.400-61.932Q47.188-62.267 46.747-62.267Q46.405-62.267 46.202-62.060Q45.999-61.853 45.911-61.541Q45.824-61.228 45.802-60.912Q45.780-60.595 45.780-60.189Q45.780-59.772 45.802-59.430Q45.824-59.088 45.913-58.740Q46.002-58.391 46.207-58.160Q46.412-57.929 46.747-57.929\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 44.43)\">\u003Cpath d=\"M53.405-56.487L51.775-56.487L51.775-56.767Q52.004-56.767 52.153-56.802Q52.301-56.836 52.301-56.976L52.301-60.322Q52.301-60.493 52.165-60.534Q52.028-60.575 51.775-60.575L51.775-60.855L52.855-60.930L52.855-60.524Q53.077-60.725 53.364-60.828Q53.652-60.930 53.959-60.930Q54.386-60.930 54.750-60.717Q55.114-60.503 55.328-60.139Q55.542-59.775 55.542-59.355Q55.542-58.910 55.302-58.546Q55.063-58.182 54.670-57.979Q54.277-57.776 53.833-57.776Q53.566-57.776 53.318-57.876Q53.071-57.977 52.883-58.158L52.883-56.976Q52.883-56.839 53.031-56.803Q53.180-56.767 53.405-56.767L53.405-56.487M52.883-60.175L52.883-58.565Q53.016-58.312 53.259-58.155Q53.501-57.998 53.778-57.998Q54.106-57.998 54.359-58.199Q54.612-58.401 54.745-58.719Q54.879-59.037 54.879-59.355Q54.879-59.584 54.814-59.813Q54.749-60.042 54.621-60.240Q54.492-60.438 54.298-60.558Q54.103-60.677 53.870-60.677Q53.576-60.677 53.308-60.548Q53.040-60.418 52.883-60.175M56.177-57.851L56.177-58.914Q56.177-58.938 56.205-58.965Q56.232-58.992 56.256-58.992L56.365-58.992Q56.430-58.992 56.444-58.934Q56.540-58.500 56.786-58.249Q57.032-57.998 57.446-57.998Q57.787-57.998 58.040-58.131Q58.293-58.264 58.293-58.572Q58.293-58.729 58.199-58.844Q58.105-58.958 57.967-59.027Q57.828-59.095 57.661-59.133L57.080-59.232Q56.724-59.300 56.451-59.521Q56.177-59.741 56.177-60.083Q56.177-60.332 56.289-60.507Q56.400-60.681 56.586-60.780Q56.772-60.879 56.988-60.922Q57.203-60.965 57.446-60.965Q57.859-60.965 58.139-60.783L58.355-60.958Q58.365-60.961 58.372-60.963Q58.379-60.965 58.389-60.965L58.440-60.965Q58.468-60.965 58.491-60.941Q58.515-60.917 58.515-60.889L58.515-60.042Q58.515-60.021 58.491-59.994Q58.468-59.967 58.440-59.967L58.327-59.967Q58.300-59.967 58.274-59.992Q58.249-60.018 58.249-60.042Q58.249-60.278 58.143-60.442Q58.037-60.606 57.854-60.688Q57.671-60.770 57.439-60.770Q57.111-60.770 56.854-60.667Q56.598-60.565 56.598-60.288Q56.598-60.093 56.781-59.984Q56.964-59.874 57.193-59.833L57.767-59.727Q58.013-59.679 58.227-59.551Q58.440-59.423 58.577-59.220Q58.714-59.016 58.714-58.767Q58.714-58.254 58.348-58.015Q57.982-57.776 57.446-57.776Q56.950-57.776 56.618-58.070L56.352-57.796Q56.331-57.776 56.304-57.776L56.256-57.776Q56.232-57.776 56.205-57.803Q56.177-57.830 56.177-57.851\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 44.43)\">\u003Cpath d=\"M64.624-57.164L64.624-59.420L62.375-59.420Q62.307-59.430 62.261-59.476Q62.215-59.522 62.215-59.594Q62.215-59.738 62.375-59.761L64.624-59.761L64.624-62.017Q64.635-62.086 64.681-62.132Q64.727-62.178 64.799-62.178Q64.942-62.178 64.966-62.017L64.966-59.761L67.208-59.761Q67.369-59.738 67.369-59.594Q67.369-59.522 67.323-59.476Q67.277-59.430 67.208-59.420L64.966-59.420L64.966-57.164Q64.942-57.003 64.799-57.003Q64.727-57.003 64.681-57.049Q64.635-57.095 64.624-57.164\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 44.43)\">\u003Cpath d=\"M70.874-57.851L70.874-58.914Q70.874-58.938 70.902-58.965Q70.929-58.992 70.953-58.992L71.062-58.992Q71.127-58.992 71.141-58.934Q71.237-58.500 71.483-58.249Q71.729-57.998 72.143-57.998Q72.484-57.998 72.737-58.131Q72.990-58.264 72.990-58.572Q72.990-58.729 72.896-58.844Q72.802-58.958 72.664-59.027Q72.525-59.095 72.358-59.133L71.777-59.232Q71.421-59.300 71.148-59.521Q70.874-59.741 70.874-60.083Q70.874-60.332 70.986-60.507Q71.097-60.681 71.283-60.780Q71.469-60.879 71.685-60.922Q71.900-60.965 72.143-60.965Q72.556-60.965 72.836-60.783L73.052-60.958Q73.062-60.961 73.069-60.963Q73.076-60.965 73.086-60.965L73.137-60.965Q73.164-60.965 73.188-60.941Q73.212-60.917 73.212-60.889L73.212-60.042Q73.212-60.021 73.188-59.994Q73.164-59.967 73.137-59.967L73.024-59.967Q72.997-59.967 72.971-59.992Q72.946-60.018 72.946-60.042Q72.946-60.278 72.840-60.442Q72.734-60.606 72.551-60.688Q72.368-60.770 72.136-60.770Q71.808-60.770 71.551-60.667Q71.295-60.565 71.295-60.288Q71.295-60.093 71.478-59.984Q71.661-59.874 71.890-59.833L72.464-59.727Q72.710-59.679 72.924-59.551Q73.137-59.423 73.274-59.220Q73.411-59.016 73.411-58.767Q73.411-58.254 73.045-58.015Q72.679-57.776 72.143-57.776Q71.647-57.776 71.315-58.070L71.049-57.796Q71.028-57.776 71.001-57.776L70.953-57.776Q70.929-57.776 70.902-57.803Q70.874-57.830 70.874-57.851M73.998-59.379Q73.998-59.700 74.123-59.989Q74.248-60.278 74.474-60.501Q74.699-60.725 74.995-60.845Q75.290-60.965 75.608-60.965Q75.936-60.965 76.198-60.865Q76.459-60.766 76.635-60.584Q76.811-60.401 76.905-60.143Q76.999-59.885 76.999-59.553Q76.999-59.461 76.917-59.440L74.662-59.440L74.662-59.379Q74.662-58.791 74.945-58.408Q75.229-58.025 75.796-58.025Q76.118-58.025 76.386-58.218Q76.654-58.411 76.743-58.726Q76.750-58.767 76.825-58.781L76.917-58.781Q76.999-58.757 76.999-58.685Q76.999-58.678 76.993-58.651Q76.880-58.254 76.509-58.015Q76.138-57.776 75.714-57.776Q75.277-57.776 74.877-57.984Q74.477-58.193 74.238-58.560Q73.998-58.927 73.998-59.379M74.668-59.649L76.483-59.649Q76.483-59.926 76.386-60.178Q76.289-60.431 76.090-60.587Q75.892-60.742 75.608-60.742Q75.331-60.742 75.118-60.584Q74.904-60.425 74.786-60.170Q74.668-59.915 74.668-59.649M78.114-58.685L78.114-60.582L77.475-60.582L77.475-60.804Q77.792-60.804 78.009-61.014Q78.227-61.224 78.327-61.534Q78.428-61.843 78.428-62.151L78.695-62.151L78.695-60.862L79.771-60.862L79.771-60.582L78.695-60.582L78.695-58.698Q78.695-58.422 78.799-58.223Q78.903-58.025 79.163-58.025Q79.320-58.025 79.426-58.129Q79.532-58.234 79.582-58.387Q79.631-58.541 79.631-58.698L79.631-59.112L79.898-59.112L79.898-58.685Q79.898-58.459 79.799-58.249Q79.700-58.039 79.515-57.907Q79.331-57.776 79.102-57.776Q78.664-57.776 78.389-58.013Q78.114-58.251 78.114-58.685M81.282-58.678L81.282-60.182Q81.282-60.452 81.175-60.513Q81.067-60.575 80.756-60.575L80.756-60.855L81.863-60.930L81.863-58.698L81.863-58.678Q81.863-58.398 81.914-58.254Q81.966-58.111 82.108-58.054Q82.249-57.998 82.537-57.998Q82.789-57.998 82.995-58.138Q83.200-58.278 83.316-58.504Q83.432-58.729 83.432-58.979L83.432-60.182Q83.432-60.452 83.324-60.513Q83.217-60.575 82.906-60.575L82.906-60.855L84.013-60.930L84.013-58.517Q84.013-58.326 84.066-58.244Q84.119-58.162 84.220-58.143Q84.321-58.124 84.536-58.124L84.536-57.844L83.459-57.776L83.459-58.340Q83.350-58.158 83.205-58.035Q83.060-57.912 82.873-57.844Q82.687-57.776 82.485-57.776Q81.282-57.776 81.282-58.678M86.768-56.487L85.138-56.487L85.138-56.767Q85.367-56.767 85.515-56.802Q85.664-56.836 85.664-56.976L85.664-60.322Q85.664-60.493 85.527-60.534Q85.391-60.575 85.138-60.575L85.138-60.855L86.218-60.930L86.218-60.524Q86.440-60.725 86.727-60.828Q87.014-60.930 87.322-60.930Q87.749-60.930 88.113-60.717Q88.477-60.503 88.691-60.139Q88.904-59.775 88.904-59.355Q88.904-58.910 88.665-58.546Q88.426-58.182 88.033-57.979Q87.640-57.776 87.195-57.776Q86.929-57.776 86.681-57.876Q86.433-57.977 86.245-58.158L86.245-56.976Q86.245-56.839 86.394-56.803Q86.542-56.767 86.768-56.767L86.768-56.487M86.245-60.175L86.245-58.565Q86.378-58.312 86.621-58.155Q86.864-57.998 87.141-57.998Q87.469-57.998 87.722-58.199Q87.975-58.401 88.108-58.719Q88.241-59.037 88.241-59.355Q88.241-59.584 88.176-59.813Q88.111-60.042 87.983-60.240Q87.855-60.438 87.660-60.558Q87.465-60.677 87.233-60.677Q86.939-60.677 86.671-60.548Q86.402-60.418 86.245-60.175M90.039-56.614Q90.039-56.648 90.060-56.668Q90.299-56.907 90.434-57.234Q90.569-57.560 90.569-57.892Q90.483-57.844 90.360-57.844Q90.179-57.844 90.060-57.964Q89.940-58.083 89.940-58.264Q89.940-58.439 90.060-58.558Q90.179-58.678 90.360-58.678Q90.531-58.678 90.629-58.555Q90.726-58.432 90.760-58.256Q90.794-58.080 90.794-57.906Q90.794-57.523 90.647-57.159Q90.500-56.795 90.227-56.514Q90.200-56.487 90.162-56.487Q90.121-56.487 90.080-56.528Q90.039-56.569 90.039-56.614M89.940-60.448Q89.940-60.616 90.063-60.739Q90.186-60.862 90.360-60.862Q90.528-60.862 90.651-60.739Q90.774-60.616 90.774-60.448Q90.774-60.274 90.651-60.151Q90.528-60.028 90.360-60.028Q90.186-60.028 90.063-60.151Q89.940-60.274 89.940-60.448\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 44.43)\">\u003Cpath d=\"M94.473-59.379Q94.473-59.700 94.598-59.989Q94.723-60.278 94.949-60.501Q95.174-60.725 95.470-60.845Q95.765-60.965 96.083-60.965Q96.411-60.965 96.673-60.865Q96.934-60.766 97.110-60.584Q97.286-60.401 97.380-60.143Q97.474-59.885 97.474-59.553Q97.474-59.461 97.392-59.440L95.137-59.440L95.137-59.379Q95.137-58.791 95.420-58.408Q95.704-58.025 96.271-58.025Q96.593-58.025 96.861-58.218Q97.129-58.411 97.218-58.726Q97.225-58.767 97.300-58.781L97.392-58.781Q97.474-58.757 97.474-58.685Q97.474-58.678 97.468-58.651Q97.355-58.254 96.984-58.015Q96.613-57.776 96.189-57.776Q95.752-57.776 95.352-57.984Q94.952-58.193 94.713-58.560Q94.473-58.927 94.473-59.379M95.143-59.649L96.958-59.649Q96.958-59.926 96.861-60.178Q96.763-60.431 96.565-60.587Q96.367-60.742 96.083-60.742Q95.806-60.742 95.593-60.584Q95.379-60.425 95.261-60.170Q95.143-59.915 95.143-59.649M99.652-57.871L98.524-60.370Q98.452-60.517 98.322-60.549Q98.192-60.582 97.963-60.582L97.963-60.862L99.477-60.862L99.477-60.582Q99.125-60.582 99.125-60.435Q99.125-60.390 99.136-60.370L100-58.452L100.780-60.182Q100.814-60.250 100.814-60.329Q100.814-60.442 100.730-60.512Q100.646-60.582 100.527-60.582L100.527-60.862L101.723-60.862L101.723-60.582Q101.504-60.582 101.333-60.479Q101.162-60.377 101.074-60.182L100.038-57.871Q99.990-57.776 99.884-57.776L99.805-57.776Q99.700-57.776 99.652-57.871\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 44.43)\">\u003Cpath d=\"M102.015-59.379Q102.015-59.700 102.140-59.989Q102.265-60.278 102.491-60.501Q102.716-60.725 103.012-60.845Q103.307-60.965 103.625-60.965Q103.953-60.965 104.215-60.865Q104.476-60.766 104.652-60.584Q104.828-60.401 104.922-60.143Q105.016-59.885 105.016-59.553Q105.016-59.461 104.934-59.440L102.679-59.440L102.679-59.379Q102.679-58.791 102.962-58.408Q103.246-58.025 103.813-58.025Q104.135-58.025 104.403-58.218Q104.671-58.411 104.760-58.726Q104.767-58.767 104.842-58.781L104.934-58.781Q105.016-58.757 105.016-58.685Q105.016-58.678 105.010-58.651Q104.897-58.254 104.526-58.015Q104.155-57.776 103.731-57.776Q103.294-57.776 102.894-57.984Q102.494-58.193 102.255-58.560Q102.015-58.927 102.015-59.379M102.685-59.649L104.500-59.649Q104.500-59.926 104.403-60.178Q104.305-60.431 104.107-60.587Q103.909-60.742 103.625-60.742Q103.348-60.742 103.135-60.584Q102.921-60.425 102.803-60.170Q102.685-59.915 102.685-59.649M107.354-57.844L105.618-57.844L105.618-58.124Q105.847-58.124 105.996-58.158Q106.144-58.193 106.144-58.333L106.144-60.182Q106.144-60.452 106.037-60.513Q105.929-60.575 105.618-60.575L105.618-60.855L106.647-60.930L106.647-60.223Q106.777-60.531 107.019-60.730Q107.262-60.930 107.580-60.930Q107.799-60.930 107.970-60.806Q108.140-60.681 108.140-60.469Q108.140-60.332 108.041-60.233Q107.942-60.134 107.809-60.134Q107.672-60.134 107.573-60.233Q107.474-60.332 107.474-60.469Q107.474-60.609 107.573-60.708Q107.283-60.708 107.083-60.512Q106.883-60.315 106.790-60.021Q106.698-59.727 106.698-59.447L106.698-58.333Q106.698-58.124 107.354-58.124L107.354-57.844M109.060-56.709Q109.190-56.641 109.326-56.641Q109.497-56.641 109.648-56.730Q109.798-56.819 109.909-56.964Q110.020-57.109 110.099-57.277L110.362-57.844L109.193-60.370Q109.118-60.517 108.988-60.549Q108.858-60.582 108.626-60.582L108.626-60.862L110.147-60.862L110.147-60.582Q109.798-60.582 109.798-60.435Q109.802-60.414 109.803-60.397Q109.805-60.380 109.805-60.370L110.663-58.511L111.435-60.182Q111.470-60.250 111.470-60.329Q111.470-60.442 111.386-60.512Q111.302-60.582 111.189-60.582L111.189-60.862L112.386-60.862L112.386-60.582Q112.167-60.582 111.994-60.478Q111.822-60.373 111.729-60.182L110.393-57.277Q110.222-56.907 109.952-56.661Q109.682-56.415 109.326-56.415Q109.056-56.415 108.838-56.581Q108.619-56.747 108.619-57.010Q108.619-57.147 108.711-57.236Q108.804-57.324 108.944-57.324Q109.080-57.324 109.169-57.236Q109.258-57.147 109.258-57.010Q109.258-56.907 109.205-56.829Q109.152-56.750 109.060-56.709\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 44.43)\">\u003Cpath d=\"M117.249-57.844L115.697-57.844L115.697-58.124Q115.923-58.124 116.072-58.158Q116.220-58.193 116.220-58.333L116.220-60.182Q116.220-60.370 116.172-60.454Q116.125-60.537 116.027-60.556Q115.930-60.575 115.718-60.575L115.718-60.855L116.774-60.930L116.774-58.333Q116.774-58.193 116.906-58.158Q117.037-58.124 117.249-58.124L117.249-57.844M115.978-62.151Q115.978-62.322 116.101-62.441Q116.224-62.561 116.395-62.561Q116.562-62.561 116.685-62.441Q116.808-62.322 116.808-62.151Q116.808-61.976 116.685-61.853Q116.562-61.730 116.395-61.730Q116.224-61.730 116.101-61.853Q115.978-61.976 115.978-62.151M119.577-57.844L117.943-57.844L117.943-58.124Q118.172-58.124 118.321-58.158Q118.469-58.193 118.469-58.333L118.469-60.182Q118.469-60.452 118.362-60.513Q118.254-60.575 117.943-60.575L117.943-60.855L119.003-60.930L119.003-60.281Q119.173-60.589 119.478-60.760Q119.782-60.930 120.127-60.930Q120.633-60.930 120.917-60.707Q121.200-60.483 121.200-59.987L121.200-58.333Q121.200-58.196 121.349-58.160Q121.498-58.124 121.723-58.124L121.723-57.844L120.093-57.844L120.093-58.124Q120.322-58.124 120.471-58.158Q120.619-58.193 120.619-58.333L120.619-59.973Q120.619-60.308 120.500-60.508Q120.380-60.708 120.066-60.708Q119.796-60.708 119.561-60.572Q119.327-60.435 119.189-60.201Q119.050-59.967 119.050-59.693L119.050-58.333Q119.050-58.196 119.201-58.160Q119.351-58.124 119.577-58.124L119.577-57.844M122.311-57.851L122.311-58.914Q122.311-58.938 122.339-58.965Q122.366-58.992 122.390-58.992L122.499-58.992Q122.564-58.992 122.578-58.934Q122.673-58.500 122.920-58.249Q123.166-57.998 123.579-57.998Q123.921-57.998 124.174-58.131Q124.427-58.264 124.427-58.572Q124.427-58.729 124.333-58.844Q124.239-58.958 124.100-59.027Q123.962-59.095 123.795-59.133L123.214-59.232Q122.858-59.300 122.585-59.521Q122.311-59.741 122.311-60.083Q122.311-60.332 122.422-60.507Q122.533-60.681 122.720-60.780Q122.906-60.879 123.121-60.922Q123.337-60.965 123.579-60.965Q123.993-60.965 124.273-60.783L124.488-60.958Q124.499-60.961 124.505-60.963Q124.512-60.965 124.523-60.965L124.574-60.965Q124.601-60.965 124.625-60.941Q124.649-60.917 124.649-60.889L124.649-60.042Q124.649-60.021 124.625-59.994Q124.601-59.967 124.574-59.967L124.461-59.967Q124.434-59.967 124.408-59.992Q124.382-60.018 124.382-60.042Q124.382-60.278 124.276-60.442Q124.171-60.606 123.988-60.688Q123.805-60.770 123.572-60.770Q123.244-60.770 122.988-60.667Q122.732-60.565 122.732-60.288Q122.732-60.093 122.914-59.984Q123.097-59.874 123.326-59.833L123.901-59.727Q124.147-59.679 124.360-59.551Q124.574-59.423 124.711-59.220Q124.847-59.016 124.847-58.767Q124.847-58.254 124.482-58.015Q124.116-57.776 123.579-57.776Q123.084-57.776 122.752-58.070L122.485-57.796Q122.465-57.776 122.438-57.776L122.390-57.776Q122.366-57.776 122.339-57.803Q122.311-57.830 122.311-57.851M126.003-58.685L126.003-60.582L125.363-60.582L125.363-60.804Q125.681-60.804 125.898-61.014Q126.115-61.224 126.216-61.534Q126.317-61.843 126.317-62.151L126.584-62.151L126.584-60.862L127.660-60.862L127.660-60.582L126.584-60.582L126.584-58.698Q126.584-58.422 126.688-58.223Q126.792-58.025 127.052-58.025Q127.209-58.025 127.315-58.129Q127.421-58.234 127.471-58.387Q127.520-58.541 127.520-58.698L127.520-59.112L127.787-59.112L127.787-58.685Q127.787-58.459 127.688-58.249Q127.589-58.039 127.404-57.907Q127.219-57.776 126.990-57.776Q126.553-57.776 126.278-58.013Q126.003-58.251 126.003-58.685M130.347-57.844L128.610-57.844L128.610-58.124Q128.839-58.124 128.988-58.158Q129.137-58.193 129.137-58.333L129.137-60.182Q129.137-60.452 129.029-60.513Q128.922-60.575 128.610-60.575L128.610-60.855L129.639-60.930L129.639-60.223Q129.769-60.531 130.012-60.730Q130.255-60.930 130.572-60.930Q130.791-60.930 130.962-60.806Q131.133-60.681 131.133-60.469Q131.133-60.332 131.034-60.233Q130.935-60.134 130.801-60.134Q130.665-60.134 130.566-60.233Q130.466-60.332 130.466-60.469Q130.466-60.609 130.566-60.708Q130.275-60.708 130.075-60.512Q129.875-60.315 129.783-60.021Q129.691-59.727 129.691-59.447L129.691-58.333Q129.691-58.124 130.347-58.124L130.347-57.844M132.292-58.678L132.292-60.182Q132.292-60.452 132.184-60.513Q132.076-60.575 131.765-60.575L131.765-60.855L132.873-60.930L132.873-58.698L132.873-58.678Q132.873-58.398 132.924-58.254Q132.975-58.111 133.117-58.054Q133.259-57.998 133.546-57.998Q133.799-57.998 134.004-58.138Q134.209-58.278 134.325-58.504Q134.442-58.729 134.442-58.979L134.442-60.182Q134.442-60.452 134.334-60.513Q134.226-60.575 133.915-60.575L133.915-60.855L135.023-60.930L135.023-58.517Q135.023-58.326 135.076-58.244Q135.129-58.162 135.229-58.143Q135.330-58.124 135.546-58.124L135.546-57.844L134.469-57.776L134.469-58.340Q134.360-58.158 134.214-58.035Q134.069-57.912 133.883-57.844Q133.696-57.776 133.495-57.776Q132.292-57.776 132.292-58.678M136.133-59.355Q136.133-59.683 136.268-59.984Q136.403-60.284 136.639-60.505Q136.875-60.725 137.179-60.845Q137.484-60.965 137.808-60.965Q138.314-60.965 138.663-60.862Q139.011-60.760 139.011-60.384Q139.011-60.237 138.914-60.136Q138.817-60.035 138.670-60.035Q138.516-60.035 138.417-60.134Q138.318-60.233 138.318-60.384Q138.318-60.572 138.458-60.664Q138.256-60.715 137.815-60.715Q137.460-60.715 137.231-60.519Q137.002-60.322 136.901-60.013Q136.800-59.703 136.800-59.355Q136.800-59.006 136.926-58.700Q137.053-58.394 137.308-58.210Q137.562-58.025 137.918-58.025Q138.140-58.025 138.324-58.109Q138.509-58.193 138.644-58.348Q138.779-58.504 138.837-58.712Q138.851-58.767 138.905-58.767L139.018-58.767Q139.049-58.767 139.071-58.743Q139.093-58.719 139.093-58.685L139.093-58.664Q139.008-58.377 138.820-58.179Q138.632-57.981 138.367-57.878Q138.102-57.776 137.808-57.776Q137.378-57.776 136.990-57.982Q136.602-58.189 136.368-58.552Q136.133-58.914 136.133-59.355M140.208-58.685L140.208-60.582L139.568-60.582L139.568-60.804Q139.886-60.804 140.103-61.014Q140.320-61.224 140.421-61.534Q140.522-61.843 140.522-62.151L140.789-62.151L140.789-60.862L141.865-60.862L141.865-60.582L140.789-60.582L140.789-58.698Q140.789-58.422 140.893-58.223Q140.997-58.025 141.257-58.025Q141.414-58.025 141.520-58.129Q141.626-58.234 141.676-58.387Q141.725-58.541 141.725-58.698L141.725-59.112L141.992-59.112L141.992-58.685Q141.992-58.459 141.893-58.249Q141.794-58.039 141.609-57.907Q141.424-57.776 141.195-57.776Q140.758-57.776 140.483-58.013Q140.208-58.251 140.208-58.685M144.419-57.844L142.867-57.844L142.867-58.124Q143.092-58.124 143.241-58.158Q143.390-58.193 143.390-58.333L143.390-60.182Q143.390-60.370 143.342-60.454Q143.294-60.537 143.197-60.556Q143.099-60.575 142.887-60.575L142.887-60.855L143.943-60.930L143.943-58.333Q143.943-58.193 144.075-58.158Q144.207-58.124 144.419-58.124L144.419-57.844M143.147-62.151Q143.147-62.322 143.270-62.441Q143.393-62.561 143.564-62.561Q143.732-62.561 143.855-62.441Q143.978-62.322 143.978-62.151Q143.978-61.976 143.855-61.853Q143.732-61.730 143.564-61.730Q143.393-61.730 143.270-61.853Q143.147-61.976 143.147-62.151M145.024-59.327Q145.024-59.669 145.159-59.968Q145.294-60.267 145.533-60.491Q145.772-60.715 146.090-60.840Q146.408-60.965 146.739-60.965Q147.184-60.965 147.584-60.749Q147.984-60.534 148.218-60.156Q148.452-59.779 148.452-59.327Q148.452-58.986 148.310-58.702Q148.168-58.418 147.924-58.211Q147.679-58.005 147.370-57.890Q147.061-57.776 146.739-57.776Q146.309-57.776 145.907-57.977Q145.505-58.179 145.265-58.531Q145.024-58.883 145.024-59.327M146.739-58.025Q147.341-58.025 147.565-58.403Q147.789-58.781 147.789-59.413Q147.789-60.025 147.555-60.384Q147.320-60.742 146.739-60.742Q145.687-60.742 145.687-59.413Q145.687-58.781 145.912-58.403Q146.138-58.025 146.739-58.025M150.728-57.844L149.094-57.844L149.094-58.124Q149.323-58.124 149.472-58.158Q149.621-58.193 149.621-58.333L149.621-60.182Q149.621-60.452 149.513-60.513Q149.405-60.575 149.094-60.575L149.094-60.855L150.154-60.930L150.154-60.281Q150.325-60.589 150.629-60.760Q150.933-60.930 151.278-60.930Q151.784-60.930 152.068-60.707Q152.352-60.483 152.352-59.987L152.352-58.333Q152.352-58.196 152.500-58.160Q152.649-58.124 152.875-58.124L152.875-57.844L151.244-57.844L151.244-58.124Q151.473-58.124 151.622-58.158Q151.771-58.193 151.771-58.333L151.771-59.973Q151.771-60.308 151.651-60.508Q151.531-60.708 151.217-60.708Q150.947-60.708 150.713-60.572Q150.479-60.435 150.340-60.201Q150.202-59.967 150.202-59.693L150.202-58.333Q150.202-58.196 150.352-58.160Q150.503-58.124 150.728-58.124\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 44.43)\">\u003Cpath d=\"M156.148-57.311Q156.148-57.557 156.345-57.741Q156.542-57.926 156.798-58.005Q156.661-58.117 156.589-58.278Q156.518-58.439 156.518-58.620Q156.518-58.941 156.729-59.187Q156.395-59.485 156.395-59.895Q156.395-60.356 156.784-60.643Q157.174-60.930 157.652-60.930Q158.124-60.930 158.459-60.684Q158.633-60.838 158.844-60.920Q159.054-61.002 159.283-61.002Q159.447-61.002 159.568-60.895Q159.689-60.787 159.689-60.623Q159.689-60.527 159.618-60.455Q159.546-60.384 159.454-60.384Q159.354-60.384 159.284-60.457Q159.214-60.531 159.214-60.630Q159.214-60.684 159.228-60.715L159.235-60.729Q159.242-60.749 159.250-60.760Q159.259-60.770 159.262-60.777Q158.907-60.777 158.620-60.554Q158.907-60.261 158.907-59.895Q158.907-59.580 158.722-59.348Q158.538-59.115 158.249-58.987Q157.960-58.859 157.652-58.859Q157.451-58.859 157.259-58.909Q157.068-58.958 156.890-59.068Q156.798-58.941 156.798-58.798Q156.798-58.616 156.926-58.481Q157.054-58.346 157.239-58.346L157.871-58.346Q158.319-58.346 158.688-58.275Q159.057-58.203 159.317-57.974Q159.577-57.745 159.577-57.311Q159.577-56.990 159.281-56.788Q158.985-56.586 158.582-56.497Q158.179-56.408 157.864-56.408Q157.546-56.408 157.143-56.497Q156.740-56.586 156.444-56.788Q156.148-56.990 156.148-57.311M156.603-57.311Q156.603-57.082 156.822-56.933Q157.041-56.784 157.333-56.716Q157.625-56.648 157.864-56.648Q158.028-56.648 158.237-56.684Q158.445-56.719 158.652-56.800Q158.859-56.880 158.990-57.008Q159.122-57.136 159.122-57.311Q159.122-57.663 158.741-57.757Q158.360-57.851 157.857-57.851L157.239-57.851Q157-57.851 156.801-57.700Q156.603-57.550 156.603-57.311M157.652-59.098Q158.319-59.098 158.319-59.895Q158.319-60.695 157.652-60.695Q156.982-60.695 156.982-59.895Q156.982-59.098 157.652-59.098M160.130-59.379Q160.130-59.700 160.255-59.989Q160.380-60.278 160.605-60.501Q160.831-60.725 161.127-60.845Q161.422-60.965 161.740-60.965Q162.068-60.965 162.330-60.865Q162.591-60.766 162.767-60.584Q162.943-60.401 163.037-60.143Q163.131-59.885 163.131-59.553Q163.131-59.461 163.049-59.440L160.793-59.440L160.793-59.379Q160.793-58.791 161.077-58.408Q161.361-58.025 161.928-58.025Q162.250-58.025 162.518-58.218Q162.786-58.411 162.875-58.726Q162.882-58.767 162.957-58.781L163.049-58.781Q163.131-58.757 163.131-58.685Q163.131-58.678 163.125-58.651Q163.012-58.254 162.641-58.015Q162.270-57.776 161.846-57.776Q161.409-57.776 161.009-57.984Q160.609-58.193 160.370-58.560Q160.130-58.927 160.130-59.379M160.800-59.649L162.615-59.649Q162.615-59.926 162.518-60.178Q162.420-60.431 162.222-60.587Q162.024-60.742 161.740-60.742Q161.463-60.742 161.250-60.584Q161.036-60.425 160.918-60.170Q160.800-59.915 160.800-59.649M164.246-58.685L164.246-60.582L163.606-60.582L163.606-60.804Q163.924-60.804 164.141-61.014Q164.358-61.224 164.459-61.534Q164.560-61.843 164.560-62.151L164.827-62.151L164.827-60.862L165.903-60.862L165.903-60.582L164.827-60.582L164.827-58.698Q164.827-58.422 164.931-58.223Q165.035-58.025 165.295-58.025Q165.452-58.025 165.558-58.129Q165.664-58.234 165.714-58.387Q165.763-58.541 165.763-58.698L165.763-59.112L166.030-59.112L166.030-58.685Q166.030-58.459 165.931-58.249Q165.832-58.039 165.647-57.907Q165.462-57.776 165.233-57.776Q164.796-57.776 164.521-58.013Q164.246-58.251 164.246-58.685M166.840-57.851L166.840-58.914Q166.840-58.938 166.867-58.965Q166.895-58.992 166.918-58.992L167.028-58.992Q167.093-58.992 167.106-58.934Q167.202-58.500 167.448-58.249Q167.694-57.998 168.108-57.998Q168.450-57.998 168.703-58.131Q168.956-58.264 168.956-58.572Q168.956-58.729 168.862-58.844Q168.768-58.958 168.629-59.027Q168.491-59.095 168.323-59.133L167.742-59.232Q167.387-59.300 167.113-59.521Q166.840-59.741 166.840-60.083Q166.840-60.332 166.951-60.507Q167.062-60.681 167.248-60.780Q167.435-60.879 167.650-60.922Q167.865-60.965 168.108-60.965Q168.521-60.965 168.802-60.783L169.017-60.958Q169.027-60.961 169.034-60.963Q169.041-60.965 169.051-60.965L169.103-60.965Q169.130-60.965 169.154-60.941Q169.178-60.917 169.178-60.889L169.178-60.042Q169.178-60.021 169.154-59.994Q169.130-59.967 169.103-59.967L168.990-59.967Q168.962-59.967 168.937-59.992Q168.911-60.018 168.911-60.042Q168.911-60.278 168.805-60.442Q168.699-60.606 168.516-60.688Q168.333-60.770 168.101-60.770Q167.773-60.770 167.517-60.667Q167.260-60.565 167.260-60.288Q167.260-60.093 167.443-59.984Q167.626-59.874 167.855-59.833L168.429-59.727Q168.675-59.679 168.889-59.551Q169.103-59.423 169.239-59.220Q169.376-59.016 169.376-58.767Q169.376-58.254 169.010-58.015Q168.645-57.776 168.108-57.776Q167.612-57.776 167.281-58.070L167.014-57.796Q166.994-57.776 166.966-57.776L166.918-57.776Q166.895-57.776 166.867-57.803Q166.840-57.830 166.840-57.851\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 44.43)\">\u003Cpath d=\"M173.246-58.685L173.246-60.582L172.607-60.582L172.607-60.804Q172.925-60.804 173.142-61.014Q173.359-61.224 173.459-61.534Q173.560-61.843 173.560-62.151L173.827-62.151L173.827-60.862L174.904-60.862L174.904-60.582L173.827-60.582L173.827-58.698Q173.827-58.422 173.931-58.223Q174.035-58.025 174.295-58.025Q174.452-58.025 174.558-58.129Q174.664-58.234 174.714-58.387Q174.763-58.541 174.763-58.698L174.763-59.112L175.030-59.112L175.030-58.685Q175.030-58.459 174.931-58.249Q174.832-58.039 174.647-57.907Q174.463-57.776 174.234-57.776Q173.796-57.776 173.521-58.013Q173.246-58.251 173.246-58.685M177.522-57.844L175.888-57.844L175.888-58.124Q176.117-58.124 176.266-58.158Q176.414-58.193 176.414-58.333L176.414-61.952Q176.414-62.222 176.307-62.284Q176.199-62.345 175.888-62.345L175.888-62.626L176.968-62.701L176.968-60.315Q177.074-60.500 177.252-60.642Q177.429-60.783 177.638-60.857Q177.846-60.930 178.072-60.930Q178.578-60.930 178.862-60.707Q179.145-60.483 179.145-59.987L179.145-58.333Q179.145-58.196 179.294-58.160Q179.443-58.124 179.668-58.124L179.668-57.844L178.038-57.844L178.038-58.124Q178.267-58.124 178.415-58.158Q178.564-58.193 178.564-58.333L178.564-59.973Q178.564-60.308 178.445-60.508Q178.325-60.708 178.010-60.708Q177.740-60.708 177.506-60.572Q177.272-60.435 177.134-60.201Q176.995-59.967 176.995-59.693L176.995-58.333Q176.995-58.196 177.146-58.160Q177.296-58.124 177.522-58.124L177.522-57.844M180.215-59.379Q180.215-59.700 180.340-59.989Q180.465-60.278 180.690-60.501Q180.916-60.725 181.211-60.845Q181.507-60.965 181.825-60.965Q182.153-60.965 182.415-60.865Q182.676-60.766 182.852-60.584Q183.028-60.401 183.122-60.143Q183.216-59.885 183.216-59.553Q183.216-59.461 183.134-59.440L180.878-59.440L180.878-59.379Q180.878-58.791 181.162-58.408Q181.446-58.025 182.013-58.025Q182.334-58.025 182.603-58.218Q182.871-58.411 182.960-58.726Q182.967-58.767 183.042-58.781L183.134-58.781Q183.216-58.757 183.216-58.685Q183.216-58.678 183.209-58.651Q183.096-58.254 182.726-58.015Q182.355-57.776 181.931-57.776Q181.493-57.776 181.093-57.984Q180.694-58.193 180.454-58.560Q180.215-58.927 180.215-59.379M180.885-59.649L182.700-59.649Q182.700-59.926 182.603-60.178Q182.505-60.431 182.307-60.587Q182.109-60.742 181.825-60.742Q181.548-60.742 181.334-60.584Q181.121-60.425 181.003-60.170Q180.885-59.915 180.885-59.649\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 44.43)\">\u003Cpath d=\"M186.510-57.851L186.510-58.914Q186.510-58.938 186.538-58.965Q186.565-58.992 186.589-58.992L186.698-58.992Q186.763-58.992 186.777-58.934Q186.873-58.500 187.119-58.249Q187.365-57.998 187.779-57.998Q188.120-57.998 188.373-58.131Q188.626-58.264 188.626-58.572Q188.626-58.729 188.532-58.844Q188.438-58.958 188.300-59.027Q188.161-59.095 187.994-59.133L187.413-59.232Q187.057-59.300 186.784-59.521Q186.510-59.741 186.510-60.083Q186.510-60.332 186.622-60.507Q186.733-60.681 186.919-60.780Q187.105-60.879 187.321-60.922Q187.536-60.965 187.779-60.965Q188.192-60.965 188.472-60.783L188.688-60.958Q188.698-60.961 188.705-60.963Q188.712-60.965 188.722-60.965L188.773-60.965Q188.800-60.965 188.824-60.941Q188.848-60.917 188.848-60.889L188.848-60.042Q188.848-60.021 188.824-59.994Q188.800-59.967 188.773-59.967L188.660-59.967Q188.633-59.967 188.607-59.992Q188.582-60.018 188.582-60.042Q188.582-60.278 188.476-60.442Q188.370-60.606 188.187-60.688Q188.004-60.770 187.772-60.770Q187.444-60.770 187.187-60.667Q186.931-60.565 186.931-60.288Q186.931-60.093 187.114-59.984Q187.297-59.874 187.526-59.833L188.100-59.727Q188.346-59.679 188.560-59.551Q188.773-59.423 188.910-59.220Q189.047-59.016 189.047-58.767Q189.047-58.254 188.681-58.015Q188.315-57.776 187.779-57.776Q187.283-57.776 186.951-58.070L186.685-57.796Q186.664-57.776 186.637-57.776L186.589-57.776Q186.565-57.776 186.538-57.803Q186.510-57.830 186.510-57.851M189.734-58.572Q189.734-58.904 189.957-59.131Q190.181-59.358 190.525-59.486Q190.868-59.615 191.241-59.667Q191.613-59.720 191.918-59.720L191.918-59.973Q191.918-60.178 191.810-60.358Q191.702-60.537 191.521-60.640Q191.340-60.742 191.132-60.742Q190.725-60.742 190.489-60.650Q190.578-60.613 190.624-60.529Q190.670-60.445 190.670-60.343Q190.670-60.247 190.624-60.168Q190.578-60.090 190.498-60.045Q190.417-60.001 190.328-60.001Q190.178-60.001 190.077-60.098Q189.976-60.196 189.976-60.343Q189.976-60.965 191.132-60.965Q191.343-60.965 191.593-60.901Q191.842-60.838 192.044-60.719Q192.246-60.599 192.372-60.414Q192.499-60.230 192.499-59.987L192.499-58.411Q192.499-58.295 192.560-58.199Q192.622-58.104 192.735-58.104Q192.844-58.104 192.909-58.198Q192.974-58.292 192.974-58.411L192.974-58.859L193.240-58.859L193.240-58.411Q193.240-58.141 193.013-57.976Q192.786-57.810 192.506-57.810Q192.297-57.810 192.160-57.964Q192.024-58.117 192-58.333Q191.853-58.066 191.571-57.921Q191.289-57.776 190.964-57.776Q190.687-57.776 190.404-57.851Q190.120-57.926 189.927-58.105Q189.734-58.285 189.734-58.572M190.349-58.572Q190.349-58.398 190.450-58.268Q190.550-58.138 190.706-58.068Q190.862-57.998 191.026-57.998Q191.244-57.998 191.453-58.095Q191.661-58.193 191.790-58.374Q191.918-58.555 191.918-58.781L191.918-59.509Q191.593-59.509 191.227-59.418Q190.862-59.327 190.605-59.115Q190.349-58.904 190.349-58.572M195.339-57.844L193.705-57.844L193.705-58.124Q193.934-58.124 194.083-58.158Q194.232-58.193 194.232-58.333L194.232-60.182Q194.232-60.452 194.124-60.513Q194.016-60.575 193.705-60.575L193.705-60.855L194.765-60.930L194.765-60.281Q194.936-60.589 195.240-60.760Q195.544-60.930 195.889-60.930Q196.289-60.930 196.566-60.790Q196.843-60.650 196.928-60.302Q197.096-60.595 197.395-60.763Q197.694-60.930 198.039-60.930Q198.545-60.930 198.829-60.707Q199.113-60.483 199.113-59.987L199.113-58.333Q199.113-58.196 199.261-58.160Q199.410-58.124 199.635-58.124L199.635-57.844L198.005-57.844L198.005-58.124Q198.231-58.124 198.381-58.160Q198.531-58.196 198.531-58.333L198.531-59.973Q198.531-60.308 198.412-60.508Q198.292-60.708 197.978-60.708Q197.708-60.708 197.474-60.572Q197.239-60.435 197.101-60.201Q196.963-59.967 196.963-59.693L196.963-58.333Q196.963-58.196 197.111-58.160Q197.260-58.124 197.486-58.124L197.486-57.844L195.855-57.844L195.855-58.124Q196.084-58.124 196.233-58.158Q196.382-58.193 196.382-58.333L196.382-59.973Q196.382-60.308 196.262-60.508Q196.142-60.708 195.828-60.708Q195.558-60.708 195.324-60.572Q195.090-60.435 194.951-60.201Q194.813-59.967 194.813-59.693L194.813-58.333Q194.813-58.196 194.963-58.160Q195.113-58.124 195.339-58.124L195.339-57.844M200.182-59.379Q200.182-59.700 200.307-59.989Q200.432-60.278 200.657-60.501Q200.883-60.725 201.179-60.845Q201.474-60.965 201.792-60.965Q202.120-60.965 202.382-60.865Q202.643-60.766 202.819-60.584Q202.995-60.401 203.089-60.143Q203.183-59.885 203.183-59.553Q203.183-59.461 203.101-59.440L200.845-59.440L200.845-59.379Q200.845-58.791 201.129-58.408Q201.413-58.025 201.980-58.025Q202.301-58.025 202.570-58.218Q202.838-58.411 202.927-58.726Q202.934-58.767 203.009-58.781L203.101-58.781Q203.183-58.757 203.183-58.685Q203.183-58.678 203.176-58.651Q203.064-58.254 202.693-58.015Q202.322-57.776 201.898-57.776Q201.461-57.776 201.061-57.984Q200.661-58.193 200.422-58.560Q200.182-58.927 200.182-59.379M200.852-59.649L202.667-59.649Q202.667-59.926 202.570-60.178Q202.472-60.431 202.274-60.587Q202.076-60.742 201.792-60.742Q201.515-60.742 201.302-60.584Q201.088-60.425 200.970-60.170Q200.852-59.915 200.852-59.649\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 44.43)\">\u003Cpath d=\"M206.484-59.355Q206.484-59.683 206.619-59.984Q206.754-60.284 206.990-60.505Q207.226-60.725 207.530-60.845Q207.835-60.965 208.159-60.965Q208.665-60.965 209.014-60.862Q209.362-60.760 209.362-60.384Q209.362-60.237 209.265-60.136Q209.168-60.035 209.021-60.035Q208.867-60.035 208.768-60.134Q208.669-60.233 208.669-60.384Q208.669-60.572 208.809-60.664Q208.607-60.715 208.166-60.715Q207.811-60.715 207.582-60.519Q207.353-60.322 207.252-60.013Q207.151-59.703 207.151-59.355Q207.151-59.006 207.277-58.700Q207.404-58.394 207.659-58.210Q207.913-58.025 208.269-58.025Q208.491-58.025 208.675-58.109Q208.860-58.193 208.995-58.348Q209.130-58.504 209.188-58.712Q209.202-58.767 209.256-58.767L209.369-58.767Q209.400-58.767 209.422-58.743Q209.444-58.719 209.444-58.685L209.444-58.664Q209.359-58.377 209.171-58.179Q208.983-57.981 208.718-57.878Q208.453-57.776 208.159-57.776Q207.729-57.776 207.341-57.982Q206.953-58.189 206.719-58.552Q206.484-58.914 206.484-59.355M210.367-56.709Q210.497-56.641 210.634-56.641Q210.805-56.641 210.955-56.730Q211.106-56.819 211.217-56.964Q211.328-57.109 211.406-57.277L211.670-57.844L210.501-60.370Q210.425-60.517 210.295-60.549Q210.166-60.582 209.933-60.582L209.933-60.862L211.454-60.862L211.454-60.582Q211.106-60.582 211.106-60.435Q211.109-60.414 211.111-60.397Q211.112-60.380 211.112-60.370L211.970-58.511L212.743-60.182Q212.777-60.250 212.777-60.329Q212.777-60.442 212.693-60.512Q212.609-60.582 212.497-60.582L212.497-60.862L213.693-60.862L213.693-60.582Q213.474-60.582 213.302-60.478Q213.129-60.373 213.037-60.182L211.700-57.277Q211.529-56.907 211.259-56.661Q210.989-56.415 210.634-56.415Q210.364-56.415 210.145-56.581Q209.926-56.747 209.926-57.010Q209.926-57.147 210.019-57.236Q210.111-57.324 210.251-57.324Q210.388-57.324 210.477-57.236Q210.566-57.147 210.566-57.010Q210.566-56.907 210.513-56.829Q210.460-56.750 210.367-56.709M214.233-59.355Q214.233-59.683 214.368-59.984Q214.503-60.284 214.739-60.505Q214.975-60.725 215.279-60.845Q215.583-60.965 215.908-60.965Q216.414-60.965 216.762-60.862Q217.111-60.760 217.111-60.384Q217.111-60.237 217.014-60.136Q216.916-60.035 216.769-60.035Q216.615-60.035 216.516-60.134Q216.417-60.233 216.417-60.384Q216.417-60.572 216.557-60.664Q216.356-60.715 215.915-60.715Q215.559-60.715 215.330-60.519Q215.101-60.322 215-60.013Q214.899-59.703 214.899-59.355Q214.899-59.006 215.026-58.700Q215.152-58.394 215.407-58.210Q215.662-58.025 216.017-58.025Q216.239-58.025 216.424-58.109Q216.608-58.193 216.743-58.348Q216.878-58.504 216.937-58.712Q216.950-58.767 217.005-58.767L217.118-58.767Q217.149-58.767 217.171-58.743Q217.193-58.719 217.193-58.685L217.193-58.664Q217.107-58.377 216.920-58.179Q216.732-57.981 216.467-57.878Q216.202-57.776 215.908-57.776Q215.477-57.776 215.089-57.982Q214.701-58.189 214.467-58.552Q214.233-58.914 214.233-59.355M219.449-57.844L217.846-57.844L217.846-58.124Q218.071-58.124 218.220-58.158Q218.369-58.193 218.369-58.333L218.369-61.952Q218.369-62.222 218.261-62.284Q218.153-62.345 217.846-62.345L217.846-62.626L218.922-62.701L218.922-58.333Q218.922-58.196 219.073-58.160Q219.223-58.124 219.449-58.124L219.449-57.844M220.003-59.379Q220.003-59.700 220.127-59.989Q220.252-60.278 220.478-60.501Q220.703-60.725 220.999-60.845Q221.295-60.965 221.612-60.965Q221.941-60.965 222.202-60.865Q222.463-60.766 222.639-60.584Q222.816-60.401 222.910-60.143Q223.003-59.885 223.003-59.553Q223.003-59.461 222.921-59.440L220.666-59.440L220.666-59.379Q220.666-58.791 220.949-58.408Q221.233-58.025 221.800-58.025Q222.122-58.025 222.390-58.218Q222.658-58.411 222.747-58.726Q222.754-58.767 222.829-58.781L222.921-58.781Q223.003-58.757 223.003-58.685Q223.003-58.678 222.997-58.651Q222.884-58.254 222.513-58.015Q222.142-57.776 221.718-57.776Q221.281-57.776 220.881-57.984Q220.481-58.193 220.242-58.560Q220.003-58.927 220.003-59.379M220.672-59.649L222.487-59.649Q222.487-59.926 222.390-60.178Q222.293-60.431 222.094-60.587Q221.896-60.742 221.612-60.742Q221.336-60.742 221.122-60.584Q220.908-60.425 220.790-60.170Q220.672-59.915 220.672-59.649\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The critical path through SEQ, with illustrative delays. A ret must ripple through instruction memory, the register file, the ALU, data memory, and the New-PC mux before newPC may clock into the PC; the sum, plus register setup time, is the minimum clock period. Faster instructions (an OPq stops at the ALU) still wait out the full cycle.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:365.990px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 274.492 202.724\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.403-46.463h113.81V-72.07h-113.81Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-10.092 2.778)\">\u003Cpath d=\"M-5.576-59.266L-8.162-59.266L-8.162-59.563Q-7.842-59.563-7.598-59.610Q-7.353-59.657-7.353-59.825L-7.353-64.168Q-7.353-64.340-7.598-64.387Q-7.842-64.434-8.162-64.434L-8.162-64.731L-3.545-64.731L-3.314-62.883L-3.596-62.883Q-3.682-63.567-3.844-63.887Q-4.006-64.207-4.346-64.321Q-4.685-64.434-5.377-64.434L-6.185-64.434Q-6.404-64.434-6.496-64.391Q-6.588-64.348-6.588-64.168L-6.588-62.145L-5.978-62.145Q-5.553-62.145-5.355-62.211Q-5.158-62.278-5.076-62.471Q-4.994-62.664-4.994-63.082L-4.713-63.082L-4.713-60.914L-4.994-60.914Q-4.994-61.332-5.076-61.526Q-5.158-61.719-5.355-61.786Q-5.553-61.852-5.978-61.852L-6.588-61.852L-6.588-59.825Q-6.588-59.661-6.269-59.612Q-5.951-59.563-5.576-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-10.092 2.778)\">\u003Cpath d=\"M-3.424-61.020Q-3.424-61.500-3.191-61.916Q-2.959-62.332-2.549-62.582Q-2.139-62.832-1.662-62.832Q-0.932-62.832-0.533-62.391Q-0.135-61.950-0.135-61.219Q-0.135-61.114-0.228-61.090L-2.678-61.090L-2.678-61.020Q-2.678-60.610-2.557-60.254Q-2.435-59.899-2.164-59.682Q-1.892-59.465-1.463-59.465Q-1.099-59.465-0.803-59.694Q-0.506-59.922-0.404-60.274Q-0.396-60.321-0.310-60.336L-0.228-60.336Q-0.135-60.309-0.135-60.227Q-0.135-60.219-0.142-60.188Q-0.205-59.961-0.344-59.778Q-0.482-59.594-0.674-59.461Q-0.865-59.328-1.084-59.258Q-1.303-59.188-1.541-59.188Q-1.912-59.188-2.250-59.325Q-2.588-59.461-2.855-59.713Q-3.123-59.965-3.273-60.305Q-3.424-60.645-3.424-61.020M-2.670-61.328L-0.709-61.328Q-0.709-61.633-0.810-61.924Q-0.912-62.215-1.129-62.397Q-1.346-62.578-1.662-62.578Q-1.963-62.578-2.193-62.391Q-2.424-62.203-2.547-61.912Q-2.670-61.621-2.670-61.328M0.979-60.227L0.979-62.418L0.276-62.418L0.276-62.672Q0.631-62.672 0.873-62.905Q1.115-63.137 1.227-63.485Q1.338-63.832 1.338-64.188L1.619-64.188L1.619-62.715L2.795-62.715L2.795-62.418L1.619-62.418L1.619-60.243Q1.619-59.922 1.738-59.694Q1.858-59.465 2.139-59.465Q2.318-59.465 2.436-59.588Q2.553-59.711 2.606-59.891Q2.658-60.071 2.658-60.243L2.658-60.715L2.940-60.715L2.940-60.227Q2.940-59.973 2.834-59.733Q2.729-59.493 2.531-59.340Q2.334-59.188 2.076-59.188Q1.760-59.188 1.508-59.311Q1.256-59.434 1.117-59.668Q0.979-59.903 0.979-60.227M3.701-60.993Q3.701-61.489 3.951-61.914Q4.201-62.340 4.621-62.586Q5.041-62.832 5.541-62.832Q6.080-62.832 6.471-62.707Q6.861-62.582 6.861-62.168Q6.861-62.063 6.811-61.971Q6.760-61.879 6.668-61.828Q6.576-61.778 6.467-61.778Q6.361-61.778 6.270-61.828Q6.178-61.879 6.127-61.971Q6.076-62.063 6.076-62.168Q6.076-62.391 6.244-62.496Q6.022-62.555 5.549-62.555Q5.252-62.555 5.037-62.416Q4.822-62.278 4.692-62.047Q4.561-61.817 4.502-61.547Q4.443-61.278 4.443-60.993Q4.443-60.598 4.576-60.248Q4.709-59.899 4.981-59.682Q5.252-59.465 5.651-59.465Q6.026-59.465 6.301-59.682Q6.576-59.899 6.678-60.258Q6.693-60.321 6.756-60.321L6.861-60.321Q6.897-60.321 6.922-60.293Q6.947-60.266 6.947-60.227L6.947-60.203Q6.815-59.723 6.430-59.455Q6.045-59.188 5.541-59.188Q5.178-59.188 4.844-59.325Q4.510-59.461 4.250-59.711Q3.990-59.961 3.846-60.297Q3.701-60.633 3.701-60.993\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-10.092 2.778)\">\u003Cpath d=\"M9.131-59.266L7.276-59.266L7.276-59.563Q7.549-59.563 7.717-59.610Q7.885-59.657 7.885-59.825L7.885-63.985Q7.885-64.200 7.822-64.295Q7.760-64.391 7.641-64.412Q7.522-64.434 7.276-64.434L7.276-64.731L8.498-64.817L8.498-62.114Q8.623-62.325 8.811-62.475Q8.998-62.625 9.225-62.709Q9.451-62.793 9.697-62.793Q10.865-62.793 10.865-61.715L10.865-59.825Q10.865-59.657 11.035-59.610Q11.205-59.563 11.475-59.563L11.475-59.266L9.619-59.266L9.619-59.563Q9.893-59.563 10.061-59.610Q10.229-59.657 10.229-59.825L10.229-61.700Q10.229-62.082 10.108-62.311Q9.986-62.539 9.635-62.539Q9.322-62.539 9.068-62.377Q8.815-62.215 8.668-61.946Q8.522-61.676 8.522-61.379L8.522-59.825Q8.522-59.657 8.692-59.610Q8.861-59.563 9.131-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.403-3.783h113.81v-25.608h-113.81Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-13.515 45.457)\">\u003Cpath d=\"M-5.084-59.266L-8.146-59.266L-8.146-59.563Q-7.822-59.563-7.580-59.610Q-7.338-59.657-7.338-59.825L-7.338-64.168Q-7.338-64.340-7.580-64.387Q-7.822-64.434-8.146-64.434L-8.146-64.731L-5.084-64.731Q-4.533-64.731-4.055-64.504Q-3.576-64.278-3.223-63.883Q-2.869-63.489-2.680-62.989Q-2.490-62.489-2.490-61.946Q-2.490-61.239-2.834-60.621Q-3.178-60.004-3.773-59.635Q-4.369-59.266-5.084-59.266M-6.596-64.168L-6.596-59.825Q-6.596-59.653-6.504-59.608Q-6.412-59.563-6.193-59.563L-5.299-59.563Q-4.853-59.563-4.461-59.733Q-4.068-59.903-3.797-60.227Q-3.525-60.551-3.428-60.971Q-3.330-61.391-3.330-61.946Q-3.330-62.301-3.367-62.614Q-3.404-62.926-3.510-63.221Q-3.615-63.516-3.795-63.739Q-3.978-63.973-4.217-64.123Q-4.455-64.274-4.736-64.354Q-5.018-64.434-5.299-64.434L-6.193-64.434Q-6.412-64.434-6.504-64.391Q-6.596-64.348-6.596-64.168M-1.771-61.020Q-1.771-61.500-1.539-61.916Q-1.307-62.332-0.896-62.582Q-0.486-62.832-0.010-62.832Q0.721-62.832 1.119-62.391Q1.518-61.950 1.518-61.219Q1.518-61.114 1.424-61.090L-1.025-61.090L-1.025-61.020Q-1.025-60.610-0.904-60.254Q-0.783-59.899-0.512-59.682Q-0.240-59.465 0.190-59.465Q0.553-59.465 0.850-59.694Q1.147-59.922 1.248-60.274Q1.256-60.321 1.342-60.336L1.424-60.336Q1.518-60.309 1.518-60.227Q1.518-60.219 1.510-60.188Q1.447-59.961 1.309-59.778Q1.170-59.594 0.979-59.461Q0.787-59.328 0.568-59.258Q0.350-59.188 0.111-59.188Q-0.260-59.188-0.598-59.325Q-0.935-59.461-1.203-59.713Q-1.471-59.965-1.621-60.305Q-1.771-60.645-1.771-61.020M-1.018-61.328L0.943-61.328Q0.943-61.633 0.842-61.924Q0.740-62.215 0.523-62.397Q0.307-62.578-0.010-62.578Q-0.310-62.578-0.541-62.391Q-0.771-62.203-0.894-61.912Q-1.018-61.621-1.018-61.328M2.049-60.993Q2.049-61.489 2.299-61.914Q2.549-62.340 2.969-62.586Q3.389-62.832 3.889-62.832Q4.428-62.832 4.818-62.707Q5.209-62.582 5.209-62.168Q5.209-62.063 5.158-61.971Q5.107-61.879 5.016-61.828Q4.924-61.778 4.815-61.778Q4.709-61.778 4.617-61.828Q4.525-61.879 4.475-61.971Q4.424-62.063 4.424-62.168Q4.424-62.391 4.592-62.496Q4.369-62.555 3.897-62.555Q3.600-62.555 3.385-62.416Q3.170-62.278 3.039-62.047Q2.908-61.817 2.850-61.547Q2.791-61.278 2.791-60.993Q2.791-60.598 2.924-60.248Q3.057-59.899 3.328-59.682Q3.600-59.465 3.998-59.465Q4.373-59.465 4.648-59.682Q4.924-59.899 5.025-60.258Q5.041-60.321 5.104-60.321L5.209-60.321Q5.244-60.321 5.270-60.293Q5.295-60.266 5.295-60.227L5.295-60.203Q5.162-59.723 4.777-59.455Q4.393-59.188 3.889-59.188Q3.525-59.188 3.191-59.325Q2.857-59.461 2.598-59.711Q2.338-59.961 2.193-60.297Q2.049-60.633 2.049-60.993M5.783-60.961Q5.783-61.465 6.039-61.897Q6.295-62.328 6.731-62.580Q7.166-62.832 7.666-62.832Q8.053-62.832 8.395-62.688Q8.736-62.543 8.998-62.282Q9.260-62.020 9.402-61.684Q9.545-61.348 9.545-60.961Q9.545-60.469 9.281-60.059Q9.018-59.649 8.588-59.418Q8.158-59.188 7.666-59.188Q7.174-59.188 6.740-59.420Q6.307-59.653 6.045-60.061Q5.783-60.469 5.783-60.961M7.666-59.465Q8.123-59.465 8.375-59.688Q8.627-59.911 8.715-60.262Q8.803-60.614 8.803-61.059Q8.803-61.489 8.709-61.827Q8.615-62.164 8.361-62.371Q8.107-62.578 7.666-62.578Q7.018-62.578 6.773-62.162Q6.529-61.746 6.529-61.059Q6.529-60.614 6.617-60.262Q6.705-59.911 6.957-59.688Q7.209-59.465 7.666-59.465\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-13.515 45.457)\">\u003Cpath d=\"M12.088-59.188Q11.607-59.188 11.199-59.432Q10.791-59.676 10.553-60.090Q10.314-60.504 10.314-60.993Q10.314-61.485 10.572-61.901Q10.830-62.317 11.262-62.555Q11.693-62.793 12.185-62.793Q12.806-62.793 13.256-62.356L13.256-63.985Q13.256-64.200 13.193-64.295Q13.131-64.391 13.013-64.412Q12.896-64.434 12.650-64.434L12.650-64.731L13.873-64.817L13.873-60.008Q13.873-59.797 13.935-59.702Q13.998-59.606 14.115-59.584Q14.232-59.563 14.482-59.563L14.482-59.266L13.232-59.188L13.232-59.672Q12.767-59.188 12.088-59.188M12.154-59.442Q12.494-59.442 12.787-59.633Q13.080-59.825 13.232-60.121L13.232-61.953Q13.084-62.227 12.822-62.383Q12.560-62.539 12.248-62.539Q11.623-62.539 11.340-62.092Q11.056-61.645 11.056-60.985Q11.056-60.340 11.308-59.891Q11.560-59.442 12.154-59.442M14.990-61.020Q14.990-61.500 15.222-61.916Q15.455-62.332 15.865-62.582Q16.275-62.832 16.752-62.832Q17.482-62.832 17.881-62.391Q18.279-61.950 18.279-61.219Q18.279-61.114 18.185-61.090L15.736-61.090L15.736-61.020Q15.736-60.610 15.857-60.254Q15.978-59.899 16.250-59.682Q16.521-59.465 16.951-59.465Q17.314-59.465 17.611-59.694Q17.908-59.922 18.010-60.274Q18.017-60.321 18.103-60.336L18.185-60.336Q18.279-60.309 18.279-60.227Q18.279-60.219 18.271-60.188Q18.209-59.961 18.070-59.778Q17.931-59.594 17.740-59.461Q17.549-59.328 17.330-59.258Q17.111-59.188 16.873-59.188Q16.502-59.188 16.164-59.325Q15.826-59.461 15.558-59.713Q15.291-59.965 15.140-60.305Q14.990-60.645 14.990-61.020M15.744-61.328L17.705-61.328Q17.705-61.633 17.603-61.924Q17.502-62.215 17.285-62.397Q17.068-62.578 16.752-62.578Q16.451-62.578 16.221-62.391Q15.990-62.203 15.867-61.912Q15.744-61.621 15.744-61.328\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.403 38.896h113.81V13.288h-113.81Z\"\u002F>\u003Cg transform=\"translate(-14.814 88.092)\">\u003Cpath d=\"M-3.314-59.266L-8.162-59.266L-8.162-59.563Q-7.842-59.563-7.598-59.610Q-7.353-59.657-7.353-59.825L-7.353-64.168Q-7.353-64.340-7.598-64.387Q-7.842-64.434-8.162-64.434L-8.162-64.731L-3.428-64.731L-3.193-62.883L-3.475-62.883Q-3.557-63.578-3.732-63.899Q-3.908-64.219-4.256-64.327Q-4.603-64.434-5.322-64.434L-6.185-64.434Q-6.404-64.434-6.496-64.391Q-6.588-64.348-6.588-64.168L-6.588-62.250L-5.955-62.250Q-5.529-62.250-5.322-62.313Q-5.115-62.375-5.027-62.571Q-4.939-62.766-4.939-63.188L-4.658-63.188L-4.658-61.020L-4.939-61.020Q-4.939-61.442-5.027-61.635Q-5.115-61.828-5.322-61.891Q-5.529-61.953-5.955-61.953L-6.588-61.953L-6.588-59.825Q-6.588-59.653-6.496-59.608Q-6.404-59.563-6.185-59.563L-5.260-59.563Q-4.678-59.563-4.324-59.645Q-3.971-59.727-3.766-59.924Q-3.560-60.121-3.447-60.459Q-3.334-60.797-3.240-61.379L-2.963-61.379L-3.314-59.266M-1.096-59.266L-2.592-59.266L-2.592-59.563Q-1.959-59.563-1.537-60.043L-0.768-60.953L-1.760-62.153Q-1.916-62.332-2.078-62.375Q-2.240-62.418-2.545-62.418L-2.545-62.715L-0.857-62.715L-0.857-62.418Q-0.951-62.418-1.027-62.375Q-1.103-62.332-1.103-62.243Q-1.103-62.200-1.072-62.153L-0.416-61.364L0.065-61.938Q0.182-62.075 0.182-62.211Q0.182-62.301 0.131-62.360Q0.080-62.418-0.002-62.418L-0.002-62.715L1.486-62.715L1.486-62.418Q0.850-62.418 0.440-61.938L-0.240-61.137L0.846-59.825Q1.006-59.649 1.166-59.606Q1.326-59.563 1.631-59.563L1.631-59.266L-0.057-59.266L-0.057-59.563Q0.033-59.563 0.111-59.606Q0.190-59.649 0.190-59.739Q0.190-59.762 0.158-59.825L-0.584-60.731L-1.170-60.043Q-1.287-59.907-1.287-59.770Q-1.287-59.684-1.236-59.623Q-1.185-59.563-1.096-59.563L-1.096-59.266M1.998-61.020Q1.998-61.500 2.231-61.916Q2.463-62.332 2.873-62.582Q3.283-62.832 3.760-62.832Q4.490-62.832 4.889-62.391Q5.287-61.950 5.287-61.219Q5.287-61.114 5.193-61.090L2.744-61.090L2.744-61.020Q2.744-60.610 2.865-60.254Q2.986-59.899 3.258-59.682Q3.529-59.465 3.959-59.465Q4.322-59.465 4.619-59.694Q4.916-59.922 5.018-60.274Q5.025-60.321 5.111-60.336L5.193-60.336Q5.287-60.309 5.287-60.227Q5.287-60.219 5.279-60.188Q5.217-59.961 5.078-59.778Q4.940-59.594 4.748-59.461Q4.557-59.328 4.338-59.258Q4.119-59.188 3.881-59.188Q3.510-59.188 3.172-59.325Q2.834-59.461 2.566-59.713Q2.299-59.965 2.148-60.305Q1.998-60.645 1.998-61.020M2.752-61.328L4.713-61.328Q4.713-61.633 4.611-61.924Q4.510-62.215 4.293-62.397Q4.076-62.578 3.760-62.578Q3.459-62.578 3.229-62.391Q2.998-62.203 2.875-61.912Q2.752-61.621 2.752-61.328M5.818-60.993Q5.818-61.489 6.068-61.914Q6.318-62.340 6.738-62.586Q7.158-62.832 7.658-62.832Q8.197-62.832 8.588-62.707Q8.979-62.582 8.979-62.168Q8.979-62.063 8.928-61.971Q8.877-61.879 8.785-61.828Q8.693-61.778 8.584-61.778Q8.479-61.778 8.387-61.828Q8.295-61.879 8.244-61.971Q8.193-62.063 8.193-62.168Q8.193-62.391 8.361-62.496Q8.139-62.555 7.666-62.555Q7.369-62.555 7.154-62.416Q6.940-62.278 6.809-62.047Q6.678-61.817 6.619-61.547Q6.561-61.278 6.561-60.993Q6.561-60.598 6.693-60.248Q6.826-59.899 7.098-59.682Q7.369-59.465 7.768-59.465Q8.143-59.465 8.418-59.682Q8.693-59.899 8.795-60.258Q8.811-60.321 8.873-60.321L8.979-60.321Q9.014-60.321 9.039-60.293Q9.065-60.266 9.065-60.227L9.065-60.203Q8.932-59.723 8.547-59.455Q8.162-59.188 7.658-59.188Q7.295-59.188 6.961-59.325Q6.627-59.461 6.367-59.711Q6.107-59.961 5.963-60.297Q5.818-60.633 5.818-60.993M10.236-60.219L10.236-61.961Q10.236-62.176 10.174-62.272Q10.111-62.368 9.992-62.389Q9.873-62.411 9.627-62.411L9.627-62.707L10.873-62.793L10.873-60.243L10.873-60.219Q10.873-59.907 10.928-59.745Q10.982-59.582 11.133-59.512Q11.283-59.442 11.604-59.442Q12.033-59.442 12.307-59.780Q12.580-60.118 12.580-60.563L12.580-61.961Q12.580-62.176 12.518-62.272Q12.455-62.368 12.336-62.389Q12.217-62.411 11.971-62.411L11.971-62.707L13.217-62.793L13.217-60.008Q13.217-59.797 13.279-59.702Q13.342-59.606 13.461-59.584Q13.580-59.563 13.826-59.563L13.826-59.266L12.604-59.188L12.604-59.809Q12.436-59.520 12.154-59.354Q11.873-59.188 11.553-59.188Q10.236-59.188 10.236-60.219M14.897-60.227L14.897-62.418L14.193-62.418L14.193-62.672Q14.549-62.672 14.791-62.905Q15.033-63.137 15.145-63.485Q15.256-63.832 15.256-64.188L15.537-64.188L15.537-62.715L16.713-62.715L16.713-62.418L15.537-62.418L15.537-60.243Q15.537-59.922 15.656-59.694Q15.775-59.465 16.057-59.465Q16.236-59.465 16.354-59.588Q16.471-59.711 16.523-59.891Q16.576-60.071 16.576-60.243L16.576-60.715L16.857-60.715L16.857-60.227Q16.857-59.973 16.752-59.733Q16.647-59.493 16.449-59.340Q16.252-59.188 15.994-59.188Q15.678-59.188 15.426-59.311Q15.174-59.434 15.035-59.668Q14.897-59.903 14.897-60.227M17.576-61.020Q17.576-61.500 17.809-61.916Q18.041-62.332 18.451-62.582Q18.861-62.832 19.338-62.832Q20.068-62.832 20.467-62.391Q20.865-61.950 20.865-61.219Q20.865-61.114 20.772-61.090L18.322-61.090L18.322-61.020Q18.322-60.610 18.443-60.254Q18.565-59.899 18.836-59.682Q19.107-59.465 19.537-59.465Q19.900-59.465 20.197-59.694Q20.494-59.922 20.596-60.274Q20.604-60.321 20.690-60.336L20.772-60.336Q20.865-60.309 20.865-60.227Q20.865-60.219 20.857-60.188Q20.795-59.961 20.656-59.778Q20.518-59.594 20.326-59.461Q20.135-59.328 19.916-59.258Q19.697-59.188 19.459-59.188Q19.088-59.188 18.750-59.325Q18.412-59.461 18.145-59.713Q17.877-59.965 17.727-60.305Q17.576-60.645 17.576-61.020M18.330-61.328L20.291-61.328Q20.291-61.633 20.190-61.924Q20.088-62.215 19.871-62.397Q19.654-62.578 19.338-62.578Q19.037-62.578 18.807-62.391Q18.576-62.203 18.453-61.912Q18.330-61.621 18.330-61.328\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.403 81.575h113.81V55.967h-113.81Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-20.305 130.815)\">\u003Cpath d=\"M-5.924-59.211L-7.627-64.168Q-7.693-64.344-7.869-64.389Q-8.045-64.434-8.338-64.434L-8.338-64.731L-6.193-64.731L-6.193-64.434Q-6.850-64.434-6.850-64.219Q-6.846-64.207-6.844-64.198Q-6.842-64.188-6.842-64.168L-5.490-60.235L-4.291-63.739L-4.435-64.168Q-4.506-64.344-4.680-64.389Q-4.853-64.434-5.146-64.434L-5.146-64.731L-3.010-64.731L-3.010-64.434Q-3.658-64.434-3.658-64.219Q-3.658-64.176-3.650-64.168L-2.299-60.235L-1.025-63.953Q-1.010-64-1.010-64.036Q-1.010-64.176-1.119-64.268Q-1.228-64.360-1.385-64.397Q-1.541-64.434-1.674-64.434L-1.674-64.731L0.061-64.731L0.061-64.434Q-0.557-64.434-0.728-63.953L-2.353-59.211Q-2.373-59.161-2.416-59.129Q-2.459-59.098-2.514-59.098L-2.568-59.098Q-2.689-59.098-2.728-59.211L-4.139-63.305L-5.545-59.211Q-5.564-59.161-5.607-59.129Q-5.650-59.098-5.705-59.098L-5.764-59.098Q-5.877-59.098-5.924-59.211\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-20.305 130.815)\">\u003Cpath d=\"M1.768-59.266L-0.212-59.266L-0.212-59.563Q0.057-59.563 0.225-59.608Q0.393-59.653 0.393-59.825L0.393-61.961Q0.393-62.176 0.331-62.272Q0.268-62.368 0.151-62.389Q0.034-62.411-0.212-62.411L-0.212-62.707L0.956-62.793L0.956-62.008Q1.034-62.219 1.186-62.405Q1.338-62.590 1.538-62.692Q1.737-62.793 1.963-62.793Q2.210-62.793 2.401-62.649Q2.592-62.504 2.592-62.274Q2.592-62.118 2.487-62.008Q2.381-61.899 2.225-61.899Q2.069-61.899 1.960-62.008Q1.850-62.118 1.850-62.274Q1.850-62.434 1.956-62.539Q1.631-62.539 1.417-62.311Q1.202-62.082 1.106-61.743Q1.010-61.403 1.010-61.098L1.010-59.825Q1.010-59.657 1.237-59.610Q1.463-59.563 1.768-59.563L1.768-59.266M4.932-59.266L3.155-59.266L3.155-59.563Q3.428-59.563 3.596-59.610Q3.764-59.657 3.764-59.825L3.764-61.961Q3.764-62.176 3.708-62.272Q3.651-62.368 3.538-62.389Q3.424-62.411 3.178-62.411L3.178-62.707L4.377-62.793L4.377-59.825Q4.377-59.657 4.524-59.610Q4.670-59.563 4.932-59.563L4.932-59.266M3.491-64.188Q3.491-64.379 3.626-64.510Q3.760-64.641 3.956-64.641Q4.077-64.641 4.180-64.578Q4.284-64.516 4.346-64.412Q4.409-64.309 4.409-64.188Q4.409-63.993 4.278-63.858Q4.147-63.723 3.956-63.723Q3.756-63.723 3.624-63.856Q3.491-63.989 3.491-64.188M6.057-60.227L6.057-62.418L5.354-62.418L5.354-62.672Q5.710-62.672 5.952-62.905Q6.194-63.137 6.305-63.485Q6.417-63.832 6.417-64.188L6.698-64.188L6.698-62.715L7.874-62.715L7.874-62.418L6.698-62.418L6.698-60.243Q6.698-59.922 6.817-59.694Q6.936-59.465 7.217-59.465Q7.397-59.465 7.514-59.588Q7.631-59.711 7.684-59.891Q7.737-60.071 7.737-60.243L7.737-60.715L8.018-60.715L8.018-60.227Q8.018-59.973 7.913-59.733Q7.807-59.493 7.610-59.340Q7.413-59.188 7.155-59.188Q6.838-59.188 6.586-59.311Q6.335-59.434 6.196-59.668Q6.057-59.903 6.057-60.227M8.737-61.020Q8.737-61.500 8.969-61.916Q9.202-62.332 9.612-62.582Q10.022-62.832 10.499-62.832Q11.229-62.832 11.627-62.391Q12.026-61.950 12.026-61.219Q12.026-61.114 11.932-61.090L9.483-61.090L9.483-61.020Q9.483-60.610 9.604-60.254Q9.725-59.899 9.997-59.682Q10.268-59.465 10.698-59.465Q11.061-59.465 11.358-59.694Q11.655-59.922 11.756-60.274Q11.764-60.321 11.850-60.336L11.932-60.336Q12.026-60.309 12.026-60.227Q12.026-60.219 12.018-60.188Q11.956-59.961 11.817-59.778Q11.678-59.594 11.487-59.461Q11.295-59.328 11.077-59.258Q10.858-59.188 10.620-59.188Q10.249-59.188 9.911-59.325Q9.573-59.461 9.305-59.713Q9.038-59.965 8.887-60.305Q8.737-60.645 8.737-61.020M9.491-61.328L11.452-61.328Q11.452-61.633 11.350-61.924Q11.249-62.215 11.032-62.397Q10.815-62.578 10.499-62.578Q10.198-62.578 9.967-62.391Q9.737-62.203 9.614-61.912Q9.491-61.621 9.491-61.328M14.627-60.715L12.374-60.715L12.374-61.266L14.627-61.266L14.627-60.715M16.260-59.266L15.979-59.266L15.979-63.985Q15.979-64.200 15.917-64.295Q15.854-64.391 15.737-64.412Q15.620-64.434 15.374-64.434L15.374-64.731L16.596-64.817L16.596-62.328Q17.073-62.793 17.772-62.793Q18.252-62.793 18.661-62.549Q19.069-62.305 19.305-61.891Q19.542-61.477 19.542-60.993Q19.542-60.618 19.393-60.289Q19.245-59.961 18.975-59.709Q18.706-59.457 18.362-59.323Q18.018-59.188 17.659-59.188Q17.338-59.188 17.040-59.336Q16.741-59.485 16.534-59.746L16.260-59.266M16.620-61.938L16.620-60.098Q16.772-59.801 17.032-59.621Q17.292-59.442 17.604-59.442Q18.030-59.442 18.297-59.661Q18.565-59.879 18.680-60.225Q18.795-60.571 18.795-60.993Q18.795-61.641 18.547-62.090Q18.299-62.539 17.702-62.539Q17.366-62.539 17.077-62.381Q16.788-62.223 16.620-61.938M20.163-60.098Q20.163-60.582 20.565-60.877Q20.967-61.172 21.518-61.291Q22.069-61.411 22.561-61.411L22.561-61.700Q22.561-61.926 22.446-62.133Q22.331-62.340 22.133-62.459Q21.936-62.578 21.706-62.578Q21.280-62.578 20.995-62.473Q21.065-62.446 21.112-62.391Q21.159-62.336 21.184-62.266Q21.209-62.196 21.209-62.121Q21.209-62.016 21.159-61.924Q21.108-61.832 21.016-61.782Q20.924-61.731 20.819-61.731Q20.713-61.731 20.622-61.782Q20.530-61.832 20.479-61.924Q20.428-62.016 20.428-62.121Q20.428-62.539 20.817-62.686Q21.206-62.832 21.706-62.832Q22.038-62.832 22.391-62.702Q22.745-62.571 22.973-62.317Q23.202-62.063 23.202-61.715L23.202-59.914Q23.202-59.782 23.274-59.672Q23.346-59.563 23.475-59.563Q23.600-59.563 23.668-59.668Q23.737-59.774 23.737-59.914L23.737-60.426L24.018-60.426L24.018-59.914Q24.018-59.711 23.901-59.553Q23.784-59.395 23.602-59.311Q23.420-59.227 23.217-59.227Q22.987-59.227 22.834-59.399Q22.682-59.571 22.651-59.801Q22.491-59.520 22.182-59.354Q21.874-59.188 21.522-59.188Q21.010-59.188 20.586-59.411Q20.163-59.633 20.163-60.098M20.850-60.098Q20.850-59.813 21.077-59.627Q21.303-59.442 21.596-59.442Q21.842-59.442 22.067-59.559Q22.292-59.676 22.426-59.879Q22.561-60.082 22.561-60.336L22.561-61.168Q22.295-61.168 22.010-61.114Q21.725-61.059 21.454-60.930Q21.182-60.801 21.016-60.594Q20.850-60.387 20.850-60.098M24.354-60.993Q24.354-61.489 24.604-61.914Q24.854-62.340 25.274-62.586Q25.694-62.832 26.194-62.832Q26.733-62.832 27.124-62.707Q27.514-62.582 27.514-62.168Q27.514-62.063 27.463-61.971Q27.413-61.879 27.321-61.828Q27.229-61.778 27.120-61.778Q27.014-61.778 26.922-61.828Q26.831-61.879 26.780-61.971Q26.729-62.063 26.729-62.168Q26.729-62.391 26.897-62.496Q26.674-62.555 26.202-62.555Q25.905-62.555 25.690-62.416Q25.475-62.278 25.344-62.047Q25.213-61.817 25.155-61.547Q25.096-61.278 25.096-60.993Q25.096-60.598 25.229-60.248Q25.362-59.899 25.633-59.682Q25.905-59.465 26.303-59.465Q26.678-59.465 26.954-59.682Q27.229-59.899 27.331-60.258Q27.346-60.321 27.409-60.321L27.514-60.321Q27.549-60.321 27.575-60.293Q27.600-60.266 27.600-60.227L27.600-60.203Q27.467-59.723 27.083-59.455Q26.698-59.188 26.194-59.188Q25.831-59.188 25.497-59.325Q25.163-59.461 24.903-59.711Q24.643-59.961 24.499-60.297Q24.354-60.633 24.354-60.993\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-20.305 130.815)\">\u003Cpath d=\"M29.689-59.266L27.892-59.266L27.892-59.563Q28.161-59.563 28.329-59.608Q28.497-59.653 28.497-59.825L28.497-63.985Q28.497-64.200 28.435-64.295Q28.372-64.391 28.255-64.412Q28.138-64.434 27.892-64.434L27.892-64.731L29.114-64.817L29.114-61.051L30.212-61.938Q30.419-62.118 30.419-62.266Q30.419-62.332 30.366-62.375Q30.314-62.418 30.243-62.418L30.243-62.715L31.778-62.715L31.778-62.418Q31.247-62.418 30.649-61.938L30.040-61.442L31.114-60.043Q31.251-59.868 31.358-59.760Q31.466-59.653 31.601-59.608Q31.735-59.563 31.962-59.563L31.962-59.266L30.337-59.266L30.337-59.563Q30.579-59.563 30.579-59.715Q30.579-59.793 30.536-59.864Q30.493-59.934 30.411-60.043L29.610-61.090L29.083-60.664L29.083-59.825Q29.083-59.657 29.251-59.610Q29.419-59.563 29.689-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.403 124.254h113.81V98.646h-113.81Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-20.245 172.716)\">\u003Cpath d=\"M-5.764-59.266L-8.146-59.266L-8.146-59.563Q-7.822-59.563-7.580-59.610Q-7.338-59.657-7.338-59.825L-7.338-64.168Q-7.338-64.340-7.580-64.387Q-7.822-64.434-8.146-64.434L-8.146-64.731L-5.201-64.731Q-4.857-64.731-4.502-64.631Q-4.146-64.532-3.852-64.340Q-3.557-64.149-3.375-63.864Q-3.193-63.578-3.193-63.219Q-3.193-62.746-3.504-62.411Q-3.814-62.075-4.279-61.903Q-4.744-61.731-5.201-61.731L-6.568-61.731L-6.568-59.825Q-6.568-59.657-6.326-59.610Q-6.084-59.563-5.764-59.563L-5.764-59.266M-6.596-64.168L-6.596-62L-5.420-62Q-4.732-62-4.394-62.276Q-4.057-62.551-4.057-63.219Q-4.057-63.883-4.394-64.159Q-4.732-64.434-5.420-64.434L-6.193-64.434Q-6.412-64.434-6.504-64.391Q-6.596-64.348-6.596-64.168M-2.248-62Q-2.248-62.594-2.016-63.125Q-1.783-63.657-1.367-64.057Q-0.951-64.457-0.418-64.678Q0.115-64.899 0.721-64.899Q1.158-64.899 1.557-64.717Q1.955-64.536 2.264-64.203L2.736-64.868Q2.768-64.899 2.799-64.899L2.846-64.899Q2.873-64.899 2.904-64.868Q2.936-64.836 2.936-64.809L2.936-62.672Q2.936-62.649 2.904-62.618Q2.873-62.586 2.846-62.586L2.729-62.586Q2.701-62.586 2.670-62.618Q2.639-62.649 2.639-62.672Q2.639-62.938 2.496-63.291Q2.354-63.645 2.174-63.883Q1.920-64.215 1.570-64.409Q1.221-64.602 0.815-64.602Q0.311-64.602-0.143-64.383Q-0.596-64.164-0.889-63.770Q-1.385-63.102-1.385-62Q-1.385-61.469-1.248-61.002Q-1.111-60.536-0.836-60.170Q-0.560-59.805-0.141-59.600Q0.279-59.395 0.822-59.395Q1.311-59.395 1.734-59.639Q2.158-59.883 2.406-60.303Q2.654-60.723 2.654-61.219Q2.654-61.254 2.684-61.280Q2.713-61.305 2.744-61.305L2.846-61.305Q2.889-61.305 2.912-61.276Q2.936-61.246 2.936-61.203Q2.936-60.766 2.760-60.377Q2.584-59.989 2.273-59.705Q1.963-59.422 1.553-59.260Q1.143-59.098 0.721-59.098Q0.131-59.098-0.410-59.319Q-0.951-59.539-1.367-59.944Q-1.783-60.348-2.016-60.877Q-2.248-61.407-2.248-62\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-20.245 172.716)\">\u003Cpath d=\"M7.177-60.219L7.177-61.961Q7.177-62.176 7.114-62.272Q7.052-62.368 6.933-62.389Q6.814-62.411 6.567-62.411L6.567-62.707L7.814-62.793L7.814-60.243L7.814-60.219Q7.814-59.907 7.868-59.745Q7.923-59.582 8.073-59.512Q8.224-59.442 8.544-59.442Q8.974-59.442 9.247-59.780Q9.521-60.118 9.521-60.563L9.521-61.961Q9.521-62.176 9.458-62.272Q9.396-62.368 9.276-62.389Q9.157-62.411 8.911-62.411L8.911-62.707L10.157-62.793L10.157-60.008Q10.157-59.797 10.220-59.702Q10.282-59.606 10.401-59.584Q10.521-59.563 10.767-59.563L10.767-59.266L9.544-59.188L9.544-59.809Q9.376-59.520 9.095-59.354Q8.814-59.188 8.493-59.188Q7.177-59.188 7.177-60.219M13.095-57.715L11.239-57.715L11.239-58.008Q11.509-58.008 11.677-58.053Q11.845-58.098 11.845-58.274L11.845-62.098Q11.845-62.305 11.689-62.358Q11.532-62.411 11.239-62.411L11.239-62.707L12.462-62.793L12.462-62.328Q12.692-62.551 13.007-62.672Q13.321-62.793 13.661-62.793Q14.134-62.793 14.538-62.547Q14.942-62.301 15.175-61.885Q15.407-61.469 15.407-60.993Q15.407-60.618 15.259-60.289Q15.110-59.961 14.841-59.709Q14.571-59.457 14.228-59.323Q13.884-59.188 13.525-59.188Q13.235-59.188 12.964-59.309Q12.692-59.430 12.485-59.641L12.485-58.274Q12.485-58.098 12.653-58.053Q12.821-58.008 13.095-58.008L13.095-57.715M12.485-61.930L12.485-60.090Q12.638-59.801 12.900-59.621Q13.161-59.442 13.470-59.442Q13.755-59.442 13.978-59.580Q14.200-59.719 14.353-59.950Q14.505-60.180 14.583-60.452Q14.661-60.723 14.661-60.993Q14.661-61.325 14.536-61.682Q14.411-62.039 14.163-62.276Q13.915-62.512 13.567-62.512Q13.243-62.512 12.948-62.356Q12.653-62.200 12.485-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-20.245 172.716)\">\u003Cpath d=\"M17.991-59.188Q17.510-59.188 17.102-59.432Q16.694-59.676 16.456-60.090Q16.217-60.504 16.217-60.993Q16.217-61.485 16.475-61.901Q16.733-62.317 17.165-62.555Q17.596-62.793 18.088-62.793Q18.709-62.793 19.159-62.356L19.159-63.985Q19.159-64.200 19.096-64.295Q19.034-64.391 18.916-64.412Q18.799-64.434 18.553-64.434L18.553-64.731L19.776-64.817L19.776-60.008Q19.776-59.797 19.838-59.702Q19.901-59.606 20.018-59.584Q20.135-59.563 20.385-59.563L20.385-59.266L19.135-59.188L19.135-59.672Q18.670-59.188 17.991-59.188M18.057-59.442Q18.397-59.442 18.690-59.633Q18.983-59.825 19.135-60.121L19.135-61.953Q18.987-62.227 18.725-62.383Q18.463-62.539 18.151-62.539Q17.526-62.539 17.243-62.092Q16.959-61.645 16.959-60.985Q16.959-60.340 17.211-59.891Q17.463-59.442 18.057-59.442M20.991-60.098Q20.991-60.582 21.393-60.877Q21.795-61.172 22.346-61.291Q22.897-61.411 23.389-61.411L23.389-61.700Q23.389-61.926 23.274-62.133Q23.159-62.340 22.961-62.459Q22.764-62.578 22.534-62.578Q22.108-62.578 21.823-62.473Q21.893-62.446 21.940-62.391Q21.987-62.336 22.012-62.266Q22.038-62.196 22.038-62.121Q22.038-62.016 21.987-61.924Q21.936-61.832 21.844-61.782Q21.752-61.731 21.647-61.731Q21.541-61.731 21.450-61.782Q21.358-61.832 21.307-61.924Q21.256-62.016 21.256-62.121Q21.256-62.539 21.645-62.686Q22.034-62.832 22.534-62.832Q22.866-62.832 23.219-62.702Q23.573-62.571 23.801-62.317Q24.030-62.063 24.030-61.715L24.030-59.914Q24.030-59.782 24.102-59.672Q24.174-59.563 24.303-59.563Q24.428-59.563 24.497-59.668Q24.565-59.774 24.565-59.914L24.565-60.426L24.846-60.426L24.846-59.914Q24.846-59.711 24.729-59.553Q24.612-59.395 24.430-59.311Q24.248-59.227 24.045-59.227Q23.815-59.227 23.663-59.399Q23.510-59.571 23.479-59.801Q23.319-59.520 23.010-59.354Q22.702-59.188 22.350-59.188Q21.838-59.188 21.415-59.411Q20.991-59.633 20.991-60.098M21.678-60.098Q21.678-59.813 21.905-59.627Q22.131-59.442 22.424-59.442Q22.670-59.442 22.895-59.559Q23.120-59.676 23.254-59.879Q23.389-60.082 23.389-60.336L23.389-61.168Q23.123-61.168 22.838-61.114Q22.553-61.059 22.282-60.930Q22.010-60.801 21.844-60.594Q21.678-60.387 21.678-60.098M25.764-60.227L25.764-62.418L25.061-62.418L25.061-62.672Q25.416-62.672 25.659-62.905Q25.901-63.137 26.012-63.485Q26.123-63.832 26.123-64.188L26.405-64.188L26.405-62.715L27.581-62.715L27.581-62.418L26.405-62.418L26.405-60.243Q26.405-59.922 26.524-59.694Q26.643-59.465 26.924-59.465Q27.104-59.465 27.221-59.588Q27.338-59.711 27.391-59.891Q27.444-60.071 27.444-60.243L27.444-60.715L27.725-60.715L27.725-60.227Q27.725-59.973 27.620-59.733Q27.514-59.493 27.317-59.340Q27.120-59.188 26.862-59.188Q26.545-59.188 26.293-59.311Q26.041-59.434 25.903-59.668Q25.764-59.903 25.764-60.227M28.444-61.020Q28.444-61.500 28.676-61.916Q28.909-62.332 29.319-62.582Q29.729-62.832 30.206-62.832Q30.936-62.832 31.334-62.391Q31.733-61.950 31.733-61.219Q31.733-61.114 31.639-61.090L29.190-61.090L29.190-61.020Q29.190-60.610 29.311-60.254Q29.432-59.899 29.704-59.682Q29.975-59.465 30.405-59.465Q30.768-59.465 31.065-59.694Q31.362-59.922 31.463-60.274Q31.471-60.321 31.557-60.336L31.639-60.336Q31.733-60.309 31.733-60.227Q31.733-60.219 31.725-60.188Q31.663-59.961 31.524-59.778Q31.385-59.594 31.194-59.461Q31.002-59.328 30.784-59.258Q30.565-59.188 30.327-59.188Q29.956-59.188 29.618-59.325Q29.280-59.461 29.012-59.713Q28.745-59.965 28.594-60.305Q28.444-60.645 28.444-61.020M29.198-61.328L31.159-61.328Q31.159-61.633 31.057-61.924Q30.956-62.215 30.739-62.397Q30.522-62.578 30.206-62.578Q29.905-62.578 29.674-62.391Q29.444-62.203 29.321-61.912Q29.198-61.621 29.198-61.328\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-8.498-46.263v14.672\"\u002F>\u003Cpath stroke=\"none\" d=\"m-8.498-29.59 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M-8.498-3.583v14.671\"\u002F>\u003Cpath stroke=\"none\" d=\"m-8.498 13.088 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M-8.498 39.096v14.671\"\u002F>\u003Cpath stroke=\"none\" d=\"m-8.498 55.767 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M-8.498 81.775v14.671\"\u002F>\u003Cpath stroke=\"none\" d=\"m-8.498 98.446 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(77.51 1.8)\">\u003Cpath d=\"M-7.881-59.504L-7.881-59.594Q-7.830-59.801-7.635-59.825L-6.596-59.825L-6.596-62.153L-7.568-62.153Q-7.768-62.176-7.818-62.395L-7.818-62.481Q-7.768-62.692-7.568-62.715L-6.201-62.715Q-6.006-62.696-5.955-62.481L-5.955-59.825L-5.041-59.825Q-4.846-59.801-4.795-59.594L-4.795-59.504Q-4.846-59.289-5.041-59.266L-7.635-59.266Q-7.830-59.289-7.881-59.504M-6.850-63.692L-6.850-63.746Q-6.850-63.918-6.713-64.039Q-6.576-64.161-6.400-64.161Q-6.228-64.161-6.092-64.039Q-5.955-63.918-5.955-63.746L-5.955-63.692Q-5.955-63.516-6.092-63.395Q-6.228-63.274-6.400-63.274Q-6.576-63.274-6.713-63.395Q-6.850-63.516-6.850-63.692M-3.693-60.993Q-3.693-61.473-3.449-61.887Q-3.205-62.301-2.789-62.539Q-2.373-62.778-1.893-62.778Q-1.338-62.778-0.959-62.668Q-0.580-62.559-0.580-62.153Q-0.580-61.985-0.693-61.862Q-0.807-61.739-0.978-61.739Q-1.150-61.739-1.269-61.854Q-1.389-61.969-1.389-62.137L-1.389-62.196Q-1.549-62.219-1.885-62.219Q-2.213-62.219-2.480-62.049Q-2.748-61.879-2.900-61.596Q-3.053-61.313-3.053-60.993Q-3.053-60.672-2.881-60.391Q-2.709-60.110-2.424-59.948Q-2.139-59.786-1.810-59.786Q-1.498-59.786-1.371-59.889Q-1.244-59.993-1.127-60.182Q-1.010-60.371-0.893-60.387L-0.725-60.387Q-0.619-60.375-0.555-60.307Q-0.490-60.239-0.490-60.137Q-0.490-60.090-0.510-60.051Q-0.619-59.758-0.822-59.578Q-1.025-59.399-1.301-59.313Q-1.576-59.227-1.893-59.227Q-2.377-59.227-2.793-59.465Q-3.209-59.703-3.451-60.106Q-3.693-60.508-3.693-60.993M2.115-59.227Q1.643-59.227 1.258-59.471Q0.873-59.715 0.650-60.125Q0.428-60.536 0.428-60.993Q0.428-61.336 0.553-61.659Q0.678-61.981 0.908-62.235Q1.139-62.489 1.445-62.633Q1.752-62.778 2.115-62.778Q2.479-62.778 2.791-62.631Q3.104-62.485 3.326-62.239Q3.549-61.993 3.676-61.672Q3.803-61.352 3.803-60.993Q3.803-60.536 3.578-60.123Q3.354-59.711 2.969-59.469Q2.584-59.227 2.115-59.227M2.115-59.786Q2.580-59.786 2.871-60.180Q3.162-60.575 3.162-61.059Q3.162-61.352 3.027-61.620Q2.893-61.887 2.652-62.053Q2.412-62.219 2.115-62.219Q1.811-62.219 1.572-62.053Q1.334-61.887 1.199-61.620Q1.065-61.352 1.065-61.059Q1.065-60.578 1.357-60.182Q1.650-59.786 2.115-59.786M6.104-59.227Q5.639-59.227 5.273-59.477Q4.908-59.727 4.703-60.131Q4.498-60.536 4.498-60.993Q4.498-61.336 4.623-61.657Q4.748-61.977 4.981-62.227Q5.213-62.477 5.518-62.616Q5.822-62.754 6.178-62.754Q6.690-62.754 7.096-62.434L7.096-63.594L6.674-63.594Q6.463-63.618 6.424-63.832L6.424-63.922Q6.463-64.129 6.674-64.153L7.486-64.153Q7.686-64.129 7.736-63.922L7.736-59.825L8.162-59.825Q8.369-59.801 8.408-59.594L8.408-59.504Q8.369-59.289 8.162-59.266L7.346-59.266Q7.147-59.289 7.096-59.504L7.096-59.633Q6.900-59.442 6.639-59.334Q6.377-59.227 6.104-59.227M6.143-59.786Q6.502-59.786 6.754-60.055Q7.006-60.325 7.096-60.700L7.096-61.532Q7.037-61.719 6.910-61.870Q6.783-62.020 6.606-62.108Q6.428-62.196 6.232-62.196Q5.924-62.196 5.674-62.026Q5.424-61.856 5.279-61.571Q5.135-61.286 5.135-60.985Q5.135-60.536 5.420-60.161Q5.705-59.786 6.143-59.786M11.998-60.754L9.557-60.754Q9.611-60.477 9.809-60.254Q10.006-60.032 10.283-59.909Q10.561-59.786 10.846-59.786Q11.318-59.786 11.541-60.075Q11.549-60.086 11.606-60.192Q11.662-60.297 11.711-60.340Q11.760-60.383 11.854-60.395L11.998-60.395Q12.190-60.375 12.248-60.161L12.248-60.106Q12.182-59.805 11.951-59.608Q11.721-59.411 11.408-59.319Q11.096-59.227 10.791-59.227Q10.307-59.227 9.867-59.455Q9.428-59.684 9.160-60.084Q8.893-60.485 8.893-60.977L8.893-61.036Q8.893-61.504 9.139-61.907Q9.385-62.309 9.793-62.543Q10.201-62.778 10.670-62.778Q11.174-62.778 11.527-62.555Q11.881-62.332 12.065-61.944Q12.248-61.555 12.248-61.051L12.248-60.993Q12.190-60.778 11.998-60.754M9.565-61.305L11.592-61.305Q11.545-61.715 11.307-61.967Q11.068-62.219 10.670-62.219Q10.275-62.219 9.969-61.957Q9.662-61.696 9.565-61.305\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 1.8)\">\u003Cpath d=\"M13.471-59.731Q13.471-59.914 13.607-60.051Q13.744-60.188 13.936-60.188Q14.127-60.188 14.260-60.055Q14.393-59.922 14.393-59.731Q14.393-59.532 14.260-59.399Q14.127-59.266 13.936-59.266Q13.744-59.266 13.607-59.403Q13.471-59.539 13.471-59.731M13.471-62.258Q13.471-62.442 13.607-62.578Q13.744-62.715 13.936-62.715Q14.127-62.715 14.260-62.582Q14.393-62.450 14.393-62.258Q14.393-62.059 14.260-61.926Q14.127-61.793 13.936-61.793Q13.744-61.793 13.607-61.930Q13.471-62.067 13.471-62.258\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 1.8)\">\u003Cpath d=\"M15.731-59.504L15.731-59.594Q15.782-59.801 15.977-59.825L17.016-59.825L17.016-62.153L16.044-62.153Q15.844-62.176 15.794-62.395L15.794-62.481Q15.844-62.692 16.044-62.715L17.411-62.715Q17.606-62.696 17.657-62.481L17.657-59.825L18.571-59.825Q18.766-59.801 18.817-59.594L18.817-59.504Q18.766-59.289 18.571-59.266L15.977-59.266Q15.782-59.289 15.731-59.504M16.762-63.692L16.762-63.746Q16.762-63.918 16.899-64.039Q17.036-64.161 17.212-64.161Q17.384-64.161 17.520-64.039Q17.657-63.918 17.657-63.746L17.657-63.692Q17.657-63.516 17.520-63.395Q17.384-63.274 17.212-63.274Q17.036-63.274 16.899-63.395Q16.762-63.516 16.762-63.692M19.680-59.504L19.680-59.594Q19.731-59.801 19.927-59.825L20.809-59.825L20.809-62.153L19.954-62.153Q19.755-62.176 19.704-62.395L19.704-62.481Q19.755-62.692 19.954-62.715L20.809-62.715L20.809-63.168Q20.809-63.633 21.216-63.914Q21.622-64.196 22.102-64.196Q22.415-64.196 22.659-64.075Q22.903-63.953 22.903-63.672Q22.903-63.508 22.794-63.391Q22.684-63.274 22.520-63.274Q22.372-63.274 22.251-63.379Q22.130-63.485 22.130-63.633L22.048-63.633Q21.895-63.633 21.759-63.573Q21.622-63.512 21.536-63.397Q21.450-63.282 21.450-63.137L21.450-62.715L22.481-62.715Q22.677-62.696 22.727-62.481L22.727-62.395Q22.677-62.176 22.481-62.153L21.450-62.153L21.450-59.825L22.329-59.825Q22.524-59.801 22.575-59.594L22.575-59.504Q22.524-59.289 22.329-59.266L19.927-59.266Q19.731-59.289 19.680-59.504M24.348-60.121L24.348-62.153L23.927-62.153Q23.719-62.176 23.677-62.395L23.677-62.481Q23.723-62.692 23.927-62.715L24.743-62.715Q24.938-62.692 24.989-62.481L24.989-60.153Q24.989-59.918 25.159-59.852Q25.329-59.786 25.614-59.786Q25.821-59.786 26.016-59.862Q26.212-59.938 26.337-60.088Q26.462-60.239 26.462-60.450L26.462-62.153L26.040-62.153Q25.829-62.176 25.790-62.395L25.790-62.481Q25.829-62.692 26.040-62.715L26.852-62.715Q27.052-62.692 27.102-62.481L27.102-59.825L27.528-59.825Q27.735-59.801 27.774-59.594L27.774-59.504Q27.735-59.289 27.528-59.266L26.712-59.266Q26.512-59.289 26.462-59.489Q26.059-59.227 25.552-59.227Q25.317-59.227 25.102-59.268Q24.887-59.309 24.721-59.411Q24.555-59.512 24.452-59.690Q24.348-59.868 24.348-60.121M27.923-59.504L27.923-59.594Q27.966-59.801 28.173-59.825L28.594-59.825L28.594-62.153L28.173-62.153Q27.966-62.176 27.923-62.395L27.923-62.481Q27.969-62.692 28.173-62.715L28.989-62.715Q29.184-62.692 29.235-62.481L29.235-62.395L29.227-62.371Q29.454-62.551 29.727-62.653Q30.001-62.754 30.294-62.754Q30.641-62.754 30.880-62.614Q31.118-62.473 31.233-62.215Q31.348-61.957 31.348-61.602L31.348-59.825L31.774-59.825Q31.981-59.801 32.020-59.594L32.020-59.504Q31.981-59.289 31.774-59.266L30.380-59.266Q30.184-59.289 30.134-59.504L30.134-59.594Q30.184-59.805 30.380-59.825L30.708-59.825L30.708-61.571Q30.708-61.879 30.618-62.037Q30.528-62.196 30.235-62.196Q29.966-62.196 29.737-62.065Q29.509-61.934 29.372-61.705Q29.235-61.477 29.235-61.211L29.235-59.825L29.661-59.825Q29.868-59.801 29.907-59.594L29.907-59.504Q29.868-59.289 29.661-59.266L28.173-59.266Q27.966-59.289 27.923-59.504\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 1.8)\">\u003Cpath d=\"M40.436-60.243L35.123-60.243Q35.045-60.250 34.996-60.299Q34.948-60.348 34.948-60.426Q34.948-60.496 34.995-60.547Q35.041-60.598 35.123-60.610L40.436-60.610Q40.510-60.598 40.557-60.547Q40.604-60.496 40.604-60.426Q40.604-60.348 40.555-60.299Q40.506-60.250 40.436-60.243M40.436-61.930L35.123-61.930Q35.045-61.938 34.996-61.987Q34.948-62.036 34.948-62.114Q34.948-62.184 34.995-62.235Q35.041-62.286 35.123-62.297L40.436-62.297Q40.510-62.286 40.557-62.235Q40.604-62.184 40.604-62.114Q40.604-62.036 40.555-61.987Q40.506-61.938 40.436-61.930\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 1.8)\">\u003Cpath d=\"M45.568-59.098Q44.896-59.098 44.500-59.522Q44.103-59.946 43.951-60.565Q43.799-61.184 43.799-61.852Q43.799-62.512 44.070-63.145Q44.342-63.778 44.855-64.182Q45.369-64.586 46.041-64.586Q46.330-64.586 46.578-64.487Q46.826-64.387 46.972-64.186Q47.119-63.985 47.119-63.680Q47.119-63.575 47.068-63.483Q47.017-63.391 46.926-63.340Q46.834-63.289 46.728-63.289Q46.560-63.289 46.447-63.403Q46.334-63.516 46.334-63.680Q46.334-63.840 46.443-63.957Q46.552-64.075 46.720-64.075Q46.521-64.344 46.041-64.344Q45.623-64.344 45.291-64.067Q44.959-63.789 44.783-63.371Q44.584-62.871 44.584-61.969Q44.748-62.293 45.027-62.493Q45.306-62.692 45.654-62.692Q46.138-62.692 46.523-62.446Q46.908-62.200 47.121-61.791Q47.334-61.383 47.334-60.899Q47.334-60.407 47.103-59.995Q46.873-59.582 46.463-59.340Q46.052-59.098 45.568-59.098M45.568-59.371Q45.994-59.371 46.211-59.592Q46.427-59.813 46.490-60.139Q46.552-60.465 46.552-60.899Q46.552-61.211 46.527-61.461Q46.502-61.711 46.412-61.936Q46.322-62.161 46.127-62.297Q45.931-62.434 45.615-62.434Q45.287-62.434 45.054-62.225Q44.822-62.016 44.711-61.698Q44.599-61.379 44.599-61.067Q44.603-61.028 44.605-60.995Q44.607-60.961 44.607-60.907Q44.607-60.891 44.605-60.883Q44.603-60.875 44.599-60.868Q44.599-60.293 44.826-59.832Q45.052-59.371 45.568-59.371\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 1.8)\">\u003Cpath d=\"M48.416-59.731Q48.416-59.914 48.552-60.051Q48.689-60.188 48.881-60.188Q49.072-60.188 49.205-60.055Q49.338-59.922 49.338-59.731Q49.338-59.532 49.205-59.399Q49.072-59.266 48.881-59.266Q48.689-59.266 48.552-59.403Q48.416-59.539 48.416-59.731M48.416-62.258Q48.416-62.442 48.552-62.578Q48.689-62.715 48.881-62.715Q49.072-62.715 49.205-62.582Q49.338-62.450 49.338-62.258Q49.338-62.059 49.205-61.926Q49.072-61.793 48.881-61.793Q48.689-61.793 48.552-61.930Q48.416-62.067 48.416-62.258\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 1.8)\">\u003Cpath d=\"M53.653-59.266L50.860-59.266L50.860-59.563Q51.922-59.563 51.922-59.825L51.922-63.993Q51.493-63.778 50.813-63.778L50.813-64.075Q51.832-64.075 52.348-64.586L52.493-64.586Q52.567-64.567 52.586-64.489L52.586-59.825Q52.586-59.563 53.653-59.563L53.653-59.266M55.129-57.860Q55.129-57.883 55.161-57.930Q55.454-58.192 55.620-58.559Q55.786-58.926 55.786-59.313L55.786-59.371Q55.657-59.266 55.489-59.266Q55.297-59.266 55.161-59.399Q55.024-59.532 55.024-59.731Q55.024-59.922 55.161-60.055Q55.297-60.188 55.489-60.188Q55.789-60.188 55.914-59.918Q56.039-59.649 56.039-59.313Q56.039-58.864 55.858-58.450Q55.676-58.036 55.336-57.739Q55.313-57.715 55.274-57.715Q55.227-57.715 55.178-57.760Q55.129-57.805 55.129-57.860\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 1.8)\">\u003Cpath d=\"M59.726-59.504L59.726-59.594Q59.784-59.801 59.976-59.825L60.687-59.825L60.687-62.153L59.976-62.153Q59.780-62.176 59.726-62.395L59.726-62.481Q59.784-62.692 59.976-62.715L61.077-62.715Q61.276-62.696 61.327-62.481L61.327-62.153Q61.589-62.438 61.944-62.596Q62.300-62.754 62.687-62.754Q62.980-62.754 63.214-62.620Q63.448-62.485 63.448-62.219Q63.448-62.051 63.339-61.934Q63.230-61.817 63.062-61.817Q62.909-61.817 62.794-61.928Q62.679-62.039 62.679-62.196Q62.304-62.196 61.989-61.995Q61.675-61.793 61.501-61.459Q61.327-61.125 61.327-60.746L61.327-59.825L62.273-59.825Q62.480-59.801 62.519-59.594L62.519-59.504Q62.480-59.289 62.273-59.266L59.976-59.266Q59.784-59.289 59.726-59.504M63.980-59.504L63.980-59.594Q64.038-59.805 64.230-59.825L64.452-59.825L65.405-64.008Q65.429-64.125 65.524-64.200Q65.620-64.274 65.733-64.274L66.007-64.274Q66.120-64.274 66.216-64.198Q66.312-64.121 66.335-64.008L67.284-59.825L67.511-59.825Q67.718-59.801 67.757-59.594L67.757-59.504Q67.706-59.289 67.511-59.266L66.429-59.266Q66.233-59.289 66.183-59.504L66.183-59.594Q66.233-59.801 66.429-59.825L66.628-59.825Q66.499-60.391 66.476-60.473L65.261-60.473Q65.218-60.289 65.108-59.825L65.308-59.825Q65.507-59.801 65.558-59.594L65.558-59.504Q65.507-59.289 65.308-59.266L64.230-59.266Q64.023-59.289 63.980-59.504M65.382-61.036L66.358-61.036Q65.878-63.168 65.878-63.512L65.870-63.512Q65.870-63.328 65.730-62.645Q65.589-61.961 65.382-61.036\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 1.8)\">\u003Cpath d=\"M68.722-59.731Q68.722-59.914 68.858-60.051Q68.995-60.188 69.187-60.188Q69.378-60.188 69.511-60.055Q69.644-59.922 69.644-59.731Q69.644-59.532 69.511-59.399Q69.378-59.266 69.187-59.266Q68.995-59.266 68.858-59.403Q68.722-59.539 68.722-59.731M68.722-62.258Q68.722-62.442 68.858-62.578Q68.995-62.715 69.187-62.715Q69.378-62.715 69.511-62.582Q69.644-62.450 69.644-62.258Q69.644-62.059 69.511-61.926Q69.378-61.793 69.187-61.793Q68.995-61.793 68.858-61.930Q68.722-62.067 68.722-62.258\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 1.8)\">\u003Cpath d=\"M70.587-59.504L70.587-59.594Q70.645-59.801 70.837-59.825L71.548-59.825L71.548-62.153L70.837-62.153Q70.641-62.176 70.587-62.395L70.587-62.481Q70.645-62.692 70.837-62.715L71.938-62.715Q72.137-62.696 72.188-62.481L72.188-62.153Q72.450-62.438 72.805-62.596Q73.161-62.754 73.548-62.754Q73.841-62.754 74.075-62.620Q74.309-62.485 74.309-62.219Q74.309-62.051 74.200-61.934Q74.091-61.817 73.923-61.817Q73.770-61.817 73.655-61.928Q73.540-62.039 73.540-62.196Q73.165-62.196 72.850-61.995Q72.536-61.793 72.362-61.459Q72.188-61.125 72.188-60.746L72.188-59.825L73.134-59.825Q73.341-59.801 73.380-59.594L73.380-59.504Q73.341-59.289 73.134-59.266L70.837-59.266Q70.645-59.289 70.587-59.504M74.778-59.504L74.778-59.594Q74.817-59.801 75.024-59.825L75.313-59.825L75.313-63.594L75.024-63.594Q74.817-63.618 74.778-63.832L74.778-63.922Q74.817-64.129 75.024-64.153L76.985-64.153Q77.255-64.153 77.495-64.057Q77.735-63.961 77.927-63.791Q78.118-63.621 78.227-63.393Q78.337-63.164 78.337-62.899Q78.337-62.532 78.096-62.243Q77.856-61.953 77.489-61.825Q77.770-61.762 78.003-61.588Q78.235-61.414 78.370-61.159Q78.505-60.903 78.505-60.618Q78.505-60.258 78.323-59.948Q78.141-59.637 77.827-59.452Q77.512-59.266 77.153-59.266L75.024-59.266Q74.817-59.289 74.778-59.504M75.954-61.532L75.954-59.825L76.985-59.825Q77.212-59.825 77.415-59.928Q77.618-60.032 77.743-60.211Q77.868-60.391 77.868-60.618Q77.868-60.848 77.766-61.057Q77.665-61.266 77.483-61.399Q77.302-61.532 77.075-61.532L75.954-61.532M75.954-63.594L75.954-62.090L76.817-62.090Q77.161-62.090 77.430-62.325Q77.700-62.559 77.700-62.899Q77.700-63.086 77.602-63.246Q77.505-63.407 77.339-63.500Q77.173-63.594 76.985-63.594\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 1.8)\">\u003Cpath d=\"M87.187-60.243L81.874-60.243Q81.796-60.250 81.747-60.299Q81.699-60.348 81.699-60.426Q81.699-60.496 81.746-60.547Q81.792-60.598 81.874-60.610L87.187-60.610Q87.261-60.598 87.308-60.547Q87.355-60.496 87.355-60.426Q87.355-60.348 87.306-60.299Q87.257-60.250 87.187-60.243M87.187-61.930L81.874-61.930Q81.796-61.938 81.747-61.987Q81.699-62.036 81.699-62.114Q81.699-62.184 81.746-62.235Q81.792-62.286 81.874-62.297L87.187-62.297Q87.261-62.286 87.308-62.235Q87.355-62.184 87.355-62.114Q87.355-62.036 87.306-61.987Q87.257-61.938 87.187-61.930\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 1.8)\">\u003Cpath d=\"M93.784-59.266L90.624-59.266L90.624-59.473Q90.624-59.500 90.647-59.532L91.999-60.930Q92.378-61.317 92.626-61.606Q92.874-61.895 93.048-62.252Q93.221-62.610 93.221-63Q93.221-63.348 93.089-63.641Q92.956-63.934 92.702-64.112Q92.448-64.289 92.093-64.289Q91.733-64.289 91.442-64.094Q91.151-63.899 91.007-63.571L91.061-63.571Q91.245-63.571 91.370-63.450Q91.495-63.328 91.495-63.137Q91.495-62.957 91.370-62.828Q91.245-62.700 91.061-62.700Q90.882-62.700 90.753-62.828Q90.624-62.957 90.624-63.137Q90.624-63.539 90.844-63.875Q91.065-64.211 91.430-64.399Q91.796-64.586 92.198-64.586Q92.678-64.586 93.094-64.399Q93.510-64.211 93.762-63.850Q94.014-63.489 94.014-63Q94.014-62.641 93.860-62.338Q93.706-62.036 93.454-61.776Q93.202-61.516 92.852-61.231Q92.503-60.946 92.335-60.793L91.405-59.953L92.120-59.953Q93.495-59.953 93.534-59.993Q93.604-60.071 93.647-60.256Q93.690-60.442 93.733-60.731L94.014-60.731\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 1.8)\">\u003Cpath d=\"M95.167-59.731Q95.167-59.914 95.303-60.051Q95.440-60.188 95.632-60.188Q95.823-60.188 95.956-60.055Q96.089-59.922 96.089-59.731Q96.089-59.532 95.956-59.399Q95.823-59.266 95.632-59.266Q95.440-59.266 95.303-59.403Q95.167-59.539 95.167-59.731M95.167-62.258Q95.167-62.442 95.303-62.578Q95.440-62.715 95.632-62.715Q95.823-62.715 95.956-62.582Q96.089-62.450 96.089-62.258Q96.089-62.059 95.956-61.926Q95.823-61.793 95.632-61.793Q95.440-61.793 95.303-61.930Q95.167-62.067 95.167-62.258\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 1.8)\">\u003Cpath d=\"M97.602-59.899Q97.793-59.625 98.149-59.498Q98.504-59.371 98.887-59.371Q99.223-59.371 99.432-59.557Q99.641-59.743 99.737-60.036Q99.832-60.328 99.832-60.641Q99.832-60.965 99.735-61.260Q99.637-61.555 99.424-61.739Q99.211-61.922 98.879-61.922L98.313-61.922Q98.282-61.922 98.252-61.952Q98.223-61.981 98.223-62.008L98.223-62.090Q98.223-62.125 98.252-62.151Q98.282-62.176 98.313-62.176L98.793-62.211Q99.079-62.211 99.276-62.416Q99.473-62.621 99.569-62.916Q99.664-63.211 99.664-63.489Q99.664-63.868 99.465-64.106Q99.266-64.344 98.887-64.344Q98.567-64.344 98.278-64.237Q97.989-64.129 97.825-63.907Q98.004-63.907 98.127-63.780Q98.250-63.653 98.250-63.481Q98.250-63.309 98.125-63.184Q98-63.059 97.825-63.059Q97.653-63.059 97.528-63.184Q97.403-63.309 97.403-63.481Q97.403-63.848 97.627-64.096Q97.852-64.344 98.192-64.465Q98.532-64.586 98.887-64.586Q99.235-64.586 99.598-64.465Q99.961-64.344 100.209-64.094Q100.457-63.844 100.457-63.489Q100.457-63.004 100.139-62.621Q99.821-62.239 99.344-62.067Q99.895-61.957 100.295-61.571Q100.696-61.184 100.696-60.649Q100.696-60.192 100.432-59.836Q100.168-59.481 99.746-59.289Q99.325-59.098 98.887-59.098Q98.477-59.098 98.084-59.233Q97.692-59.368 97.426-59.653Q97.161-59.938 97.161-60.356Q97.161-60.551 97.293-60.680Q97.426-60.809 97.618-60.809Q97.743-60.809 97.846-60.750Q97.950-60.692 98.012-60.586Q98.075-60.481 98.075-60.356Q98.075-60.161 97.940-60.030Q97.805-59.899 97.602-59.899\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(77.51 44.68)\">\u003Cpath d=\"M-6.842-59.489L-7.728-62.153L-8.049-62.153Q-8.248-62.176-8.299-62.395L-8.299-62.481Q-8.248-62.692-8.049-62.715L-6.889-62.715Q-6.693-62.696-6.643-62.481L-6.643-62.395Q-6.693-62.176-6.889-62.153L-7.170-62.153L-6.377-59.778L-5.588-62.153L-5.865-62.153Q-6.064-62.176-6.115-62.395L-6.115-62.481Q-6.064-62.692-5.865-62.715L-4.705-62.715Q-4.510-62.692-4.459-62.481L-4.459-62.395Q-4.510-62.176-4.705-62.153L-5.025-62.153L-5.912-59.489Q-5.955-59.375-6.057-59.301Q-6.158-59.227-6.283-59.227L-6.475-59.227Q-6.592-59.227-6.695-59.299Q-6.799-59.371-6.842-59.489M-3.846-60.379Q-3.846-60.825-3.432-61.082Q-3.018-61.340-2.477-61.440Q-1.935-61.539-1.428-61.547Q-1.428-61.762-1.562-61.914Q-1.697-62.067-1.904-62.143Q-2.111-62.219-2.322-62.219Q-2.666-62.219-2.826-62.196L-2.826-62.137Q-2.826-61.969-2.945-61.854Q-3.064-61.739-3.228-61.739Q-3.404-61.739-3.519-61.862Q-3.635-61.985-3.635-62.153Q-3.635-62.559-3.254-62.668Q-2.873-62.778-2.314-62.778Q-2.045-62.778-1.777-62.700Q-1.510-62.621-1.285-62.471Q-1.060-62.321-0.924-62.100Q-0.787-61.879-0.787-61.602L-0.787-59.883Q-0.787-59.825-0.260-59.825Q-0.064-59.805-0.014-59.594L-0.014-59.504Q-0.064-59.289-0.260-59.266L-0.404-59.266Q-0.748-59.266-0.977-59.313Q-1.205-59.360-1.350-59.547Q-1.810-59.227-2.518-59.227Q-2.853-59.227-3.158-59.368Q-3.463-59.508-3.654-59.770Q-3.846-60.032-3.846-60.379M-3.205-60.371Q-3.205-60.098-2.963-59.942Q-2.721-59.786-2.435-59.786Q-2.217-59.786-1.984-59.844Q-1.752-59.903-1.590-60.041Q-1.428-60.180-1.428-60.403L-1.428-60.993Q-1.709-60.993-2.125-60.936Q-2.541-60.879-2.873-60.741Q-3.205-60.602-3.205-60.371M0.443-59.504L0.443-59.594Q0.494-59.801 0.690-59.825L1.795-59.825L1.795-63.594L0.690-63.594Q0.494-63.618 0.443-63.832L0.443-63.922Q0.494-64.129 0.690-64.153L2.186-64.153Q2.377-64.129 2.436-63.922L2.436-59.825L3.537-59.825Q3.736-59.801 3.787-59.594L3.787-59.504Q3.736-59.289 3.537-59.266L0.690-59.266Q0.494-59.289 0.443-59.504M4.471-59.504L4.471-59.594Q4.529-59.805 4.721-59.825L4.943-59.825L5.897-64.008Q5.920-64.125 6.016-64.200Q6.111-64.274 6.225-64.274L6.498-64.274Q6.611-64.274 6.707-64.198Q6.803-64.121 6.826-64.008L7.775-59.825L8.002-59.825Q8.209-59.801 8.248-59.594L8.248-59.504Q8.197-59.289 8.002-59.266L6.920-59.266Q6.725-59.289 6.674-59.504L6.674-59.594Q6.725-59.801 6.920-59.825L7.119-59.825Q6.990-60.391 6.967-60.473L5.752-60.473Q5.709-60.289 5.600-59.825L5.799-59.825Q5.998-59.801 6.049-59.594L6.049-59.504Q5.998-59.289 5.799-59.266L4.721-59.266Q4.514-59.289 4.471-59.504M5.873-61.036L6.850-61.036Q6.369-63.168 6.369-63.512L6.361-63.512Q6.361-63.328 6.221-62.645Q6.080-61.961 5.873-61.036\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 44.68)\">\u003Cpath d=\"M16.825-60.243L11.512-60.243Q11.434-60.250 11.385-60.299Q11.337-60.348 11.337-60.426Q11.337-60.496 11.384-60.547Q11.430-60.598 11.512-60.610L16.825-60.610Q16.899-60.598 16.946-60.547Q16.993-60.496 16.993-60.426Q16.993-60.348 16.944-60.299Q16.895-60.250 16.825-60.243M16.825-61.930L11.512-61.930Q11.434-61.938 11.385-61.987Q11.337-62.036 11.337-62.114Q11.337-62.184 11.384-62.235Q11.430-62.286 11.512-62.297L16.825-62.297Q16.899-62.286 16.946-62.235Q16.993-62.184 16.993-62.114Q16.993-62.036 16.944-61.987Q16.895-61.938 16.825-61.930\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 44.68)\">\u003Cpath d=\"M22.461-59.266L20.324-59.266Q20.289-59.266 20.258-59.307Q20.227-59.348 20.227-59.395L20.250-59.496Q20.262-59.547 20.348-59.563Q20.789-59.563 20.947-59.602Q21.106-59.641 21.148-59.868L22.227-64.188Q22.250-64.258 22.250-64.321Q22.250-64.383 22.188-64.403Q22.043-64.434 21.621-64.434Q21.516-64.461 21.516-64.563L21.547-64.664Q21.555-64.711 21.637-64.731L24.148-64.731Q24.555-64.731 24.998-64.608Q25.441-64.485 25.746-64.209Q26.051-63.934 26.051-63.512Q26.051-63.125 25.781-62.809Q25.512-62.493 25.113-62.284Q24.715-62.075 24.340-61.985Q24.648-61.860 24.846-61.621Q25.043-61.383 25.043-61.067Q25.043-61.024 25.041-60.996Q25.039-60.969 25.035-60.938L24.957-60.243Q24.926-59.953 24.926-59.832Q24.926-59.618 24.994-59.487Q25.063-59.356 25.270-59.356Q25.523-59.356 25.719-59.580Q25.914-59.805 25.981-60.082Q25.988-60.129 26.074-60.145L26.156-60.145Q26.250-60.118 26.250-60.036Q26.250-60.028 26.242-59.993Q26.191-59.778 26.047-59.567Q25.902-59.356 25.695-59.227Q25.488-59.098 25.262-59.098Q24.957-59.098 24.688-59.184Q24.418-59.270 24.246-59.469Q24.074-59.668 24.074-59.977Q24.074-60.086 24.117-60.266L24.293-60.961Q24.316-61.082 24.316-61.176Q24.316-61.512 24.055-61.694Q23.793-61.875 23.430-61.875L22.379-61.875L21.859-59.809Q21.844-59.715 21.844-59.672Q21.844-59.633 21.857-59.620Q21.871-59.606 21.906-59.594Q22.051-59.563 22.477-59.563Q22.570-59.536 22.570-59.442L22.547-59.336Q22.539-59.286 22.461-59.266M22.941-64.129L22.445-62.129L23.387-62.129Q23.731-62.129 24.047-62.198Q24.363-62.266 24.637-62.434Q24.824-62.559 24.961-62.760Q25.098-62.961 25.166-63.194Q25.234-63.426 25.234-63.649Q25.234-64.106 24.867-64.270Q24.500-64.434 23.965-64.434L23.348-64.434Q23.176-64.434 23.113-64.420Q23.051-64.407 23.018-64.348Q22.984-64.289 22.941-64.129\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 44.68)\">\u003Cpath d=\"M28.455-57.266L27.279-57.266L27.279-65.266L28.455-65.266L28.455-64.899L27.646-64.899L27.646-57.633L28.455-57.633\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 44.68)\">\u003Cpath d=\"M29.832-59Q29.832-59.063 29.863-59.106L33.609-64.364Q33.152-64.129 32.585-64.129Q31.933-64.129 31.328-64.450Q31.472-64.102 31.472-63.657Q31.472-63.297 31.351-62.926Q31.230-62.555 30.980-62.299Q30.730-62.043 30.367-62.043Q29.980-62.043 29.697-62.287Q29.414-62.532 29.267-62.905Q29.121-63.278 29.121-63.657Q29.121-64.036 29.267-64.407Q29.414-64.778 29.697-65.022Q29.980-65.266 30.367-65.266Q30.683-65.266 30.953-65.028Q31.289-64.723 31.718-64.551Q32.148-64.379 32.585-64.379Q33.078-64.379 33.496-64.592Q33.914-64.805 34.214-65.203Q34.257-65.266 34.351-65.266Q34.425-65.266 34.480-65.211Q34.535-65.157 34.535-65.082Q34.535-65.020 34.503-64.977L30.160-58.883Q30.113-58.817 30.015-58.817Q29.933-58.817 29.882-58.868Q29.832-58.918 29.832-59M30.367-62.297Q30.640-62.297 30.828-62.522Q31.015-62.746 31.103-63.069Q31.191-63.391 31.191-63.657Q31.191-63.914 31.103-64.237Q31.015-64.559 30.828-64.784Q30.640-65.008 30.367-65.008Q29.980-65.008 29.837-64.580Q29.695-64.153 29.695-63.657Q29.695-63.149 29.835-62.723Q29.976-62.297 30.367-62.297M34.144-58.817Q33.757-58.817 33.474-59.063Q33.191-59.309 33.043-59.682Q32.894-60.055 32.894-60.434Q32.894-60.707 32.980-60.995Q33.066-61.282 33.220-61.516Q33.375-61.750 33.611-61.897Q33.847-62.043 34.144-62.043Q34.425-62.043 34.632-61.891Q34.839-61.739 34.978-61.496Q35.117-61.254 35.183-60.973Q35.250-60.692 35.250-60.434Q35.250-60.075 35.128-59.702Q35.007-59.328 34.757-59.073Q34.507-58.817 34.144-58.817M34.144-59.075Q34.418-59.075 34.605-59.299Q34.793-59.524 34.880-59.846Q34.968-60.168 34.968-60.434Q34.968-60.692 34.880-61.014Q34.793-61.336 34.605-61.561Q34.418-61.786 34.144-61.786Q33.753-61.786 33.613-61.356Q33.472-60.926 33.472-60.434Q33.472-59.926 33.609-59.500Q33.746-59.075 34.144-59.075\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 44.68)\">\u003Cpath d=\"M35.955-59.504L35.955-59.594Q36.013-59.801 36.205-59.825L36.916-59.825L36.916-62.153L36.205-62.153Q36.009-62.176 35.955-62.395L35.955-62.481Q36.013-62.692 36.205-62.715L37.306-62.715Q37.505-62.696 37.556-62.481L37.556-62.153Q37.818-62.438 38.173-62.596Q38.529-62.754 38.916-62.754Q39.209-62.754 39.443-62.620Q39.677-62.485 39.677-62.219Q39.677-62.051 39.568-61.934Q39.459-61.817 39.291-61.817Q39.138-61.817 39.023-61.928Q38.908-62.039 38.908-62.196Q38.533-62.196 38.218-61.995Q37.904-61.793 37.730-61.459Q37.556-61.125 37.556-60.746L37.556-59.825L38.502-59.825Q38.709-59.801 38.748-59.594L38.748-59.504Q38.709-59.289 38.502-59.266L36.205-59.266Q36.013-59.289 35.955-59.504M41.841-59.227Q41.377-59.227 41.011-59.477Q40.646-59.727 40.441-60.131Q40.236-60.536 40.236-60.993Q40.236-61.336 40.361-61.657Q40.486-61.977 40.718-62.227Q40.951-62.477 41.255-62.616Q41.560-62.754 41.916-62.754Q42.427-62.754 42.834-62.434L42.834-63.594L42.412-63.594Q42.201-63.618 42.162-63.832L42.162-63.922Q42.201-64.129 42.412-64.153L43.224-64.153Q43.423-64.129 43.474-63.922L43.474-59.825L43.900-59.825Q44.107-59.801 44.146-59.594L44.146-59.504Q44.107-59.289 43.900-59.266L43.084-59.266Q42.884-59.289 42.834-59.504L42.834-59.633Q42.638-59.442 42.377-59.334Q42.115-59.227 41.841-59.227M41.880-59.786Q42.240-59.786 42.492-60.055Q42.744-60.325 42.834-60.700L42.834-61.532Q42.775-61.719 42.648-61.870Q42.521-62.020 42.343-62.108Q42.166-62.196 41.970-62.196Q41.662-62.196 41.412-62.026Q41.162-61.856 41.017-61.571Q40.873-61.286 40.873-60.985Q40.873-60.536 41.158-60.161Q41.443-59.786 41.880-59.786M44.482-59.504L44.482-59.594Q44.521-59.801 44.728-59.825L45.134-59.825L46.064-61.043L45.193-62.153L44.775-62.153Q44.580-62.172 44.529-62.395L44.529-62.481Q44.580-62.692 44.775-62.715L45.935-62.715Q46.134-62.692 46.185-62.481L46.185-62.395Q46.134-62.176 45.935-62.153L45.826-62.153L46.322-61.496L46.798-62.153L46.681-62.153Q46.482-62.176 46.431-62.395L46.431-62.481Q46.482-62.692 46.681-62.715L47.841-62.715Q48.037-62.696 48.087-62.481L48.087-62.395Q48.037-62.176 47.841-62.153L47.431-62.153L46.584-61.043L47.544-59.825L47.951-59.825Q48.150-59.801 48.201-59.594L48.201-59.504Q48.162-59.289 47.951-59.266L46.798-59.266Q46.591-59.289 46.552-59.504L46.552-59.594Q46.591-59.801 46.798-59.825L46.927-59.825L46.322-60.680L45.736-59.825L45.880-59.825Q46.087-59.801 46.127-59.594L46.127-59.504Q46.087-59.289 45.880-59.266L44.728-59.266Q44.533-59.286 44.482-59.504\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 44.68)\">\u003Cpath d=\"M49.841-57.266L48.666-57.266L48.666-57.633L49.474-57.633L49.474-64.899L48.666-64.899L48.666-65.266L49.841-65.266L49.841-57.266M51.666-57.860Q51.666-57.883 51.697-57.930Q51.990-58.192 52.156-58.559Q52.322-58.926 52.322-59.313L52.322-59.371Q52.193-59.266 52.025-59.266Q51.834-59.266 51.697-59.399Q51.560-59.532 51.560-59.731Q51.560-59.922 51.697-60.055Q51.834-60.188 52.025-60.188Q52.326-60.188 52.451-59.918Q52.576-59.649 52.576-59.313Q52.576-58.864 52.394-58.450Q52.212-58.036 51.873-57.739Q51.849-57.715 51.810-57.715Q51.763-57.715 51.714-57.760Q51.666-57.805 51.666-57.860\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 44.68)\">\u003Cpath d=\"M57.694-59.489L56.808-62.153L56.487-62.153Q56.288-62.176 56.237-62.395L56.237-62.481Q56.288-62.692 56.487-62.715L57.647-62.715Q57.843-62.696 57.893-62.481L57.893-62.395Q57.843-62.176 57.647-62.153L57.366-62.153L58.159-59.778L58.948-62.153L58.671-62.153Q58.472-62.176 58.421-62.395L58.421-62.481Q58.472-62.692 58.671-62.715L59.831-62.715Q60.026-62.692 60.077-62.481L60.077-62.395Q60.026-62.176 59.831-62.153L59.511-62.153L58.624-59.489Q58.581-59.375 58.479-59.301Q58.378-59.227 58.253-59.227L58.061-59.227Q57.944-59.227 57.841-59.299Q57.737-59.371 57.694-59.489M60.690-60.379Q60.690-60.825 61.104-61.082Q61.518-61.340 62.059-61.440Q62.600-61.539 63.108-61.547Q63.108-61.762 62.974-61.914Q62.839-62.067 62.632-62.143Q62.425-62.219 62.214-62.219Q61.870-62.219 61.710-62.196L61.710-62.137Q61.710-61.969 61.591-61.854Q61.472-61.739 61.308-61.739Q61.132-61.739 61.017-61.862Q60.901-61.985 60.901-62.153Q60.901-62.559 61.282-62.668Q61.663-62.778 62.222-62.778Q62.491-62.778 62.759-62.700Q63.026-62.621 63.251-62.471Q63.475-62.321 63.612-62.100Q63.749-61.879 63.749-61.602L63.749-59.883Q63.749-59.825 64.276-59.825Q64.472-59.805 64.522-59.594L64.522-59.504Q64.472-59.289 64.276-59.266L64.132-59.266Q63.788-59.266 63.559-59.313Q63.331-59.360 63.186-59.547Q62.725-59.227 62.018-59.227Q61.683-59.227 61.378-59.368Q61.073-59.508 60.882-59.770Q60.690-60.032 60.690-60.379M61.331-60.371Q61.331-60.098 61.573-59.942Q61.815-59.786 62.100-59.786Q62.319-59.786 62.552-59.844Q62.784-59.903 62.946-60.041Q63.108-60.180 63.108-60.403L63.108-60.993Q62.827-60.993 62.411-60.936Q61.995-60.879 61.663-60.741Q61.331-60.602 61.331-60.371M64.979-59.504L64.979-59.594Q65.030-59.801 65.225-59.825L66.331-59.825L66.331-63.594L65.225-63.594Q65.030-63.618 64.979-63.832L64.979-63.922Q65.030-64.129 65.225-64.153L66.722-64.153Q66.913-64.129 66.972-63.922L66.972-59.825L68.073-59.825Q68.272-59.801 68.323-59.594L68.323-59.504Q68.272-59.289 68.073-59.266L65.225-59.266Q65.030-59.289 64.979-59.504M68.944-59.504L68.944-59.594Q68.983-59.801 69.190-59.825L69.479-59.825L69.479-63.594L69.190-63.594Q68.983-63.618 68.944-63.832L68.944-63.922Q68.983-64.129 69.190-64.153L71.151-64.153Q71.421-64.153 71.661-64.057Q71.901-63.961 72.093-63.791Q72.284-63.621 72.393-63.393Q72.503-63.164 72.503-62.899Q72.503-62.532 72.263-62.243Q72.022-61.953 71.655-61.825Q71.936-61.762 72.169-61.588Q72.401-61.414 72.536-61.159Q72.671-60.903 72.671-60.618Q72.671-60.258 72.489-59.948Q72.308-59.637 71.993-59.452Q71.679-59.266 71.319-59.266L69.190-59.266Q68.983-59.289 68.944-59.504M70.120-61.532L70.120-59.825L71.151-59.825Q71.378-59.825 71.581-59.928Q71.784-60.032 71.909-60.211Q72.034-60.391 72.034-60.618Q72.034-60.848 71.933-61.057Q71.831-61.266 71.649-61.399Q71.468-61.532 71.241-61.532L70.120-61.532M70.120-63.594L70.120-62.090L70.983-62.090Q71.327-62.090 71.597-62.325Q71.866-62.559 71.866-62.899Q71.866-63.086 71.768-63.246Q71.671-63.407 71.505-63.500Q71.339-63.594 71.151-63.594\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 44.68)\">\u003Cpath d=\"M81.360-60.243L76.047-60.243Q75.969-60.250 75.920-60.299Q75.872-60.348 75.872-60.426Q75.872-60.496 75.919-60.547Q75.965-60.598 76.047-60.610L81.360-60.610Q81.434-60.598 81.481-60.547Q81.528-60.496 81.528-60.426Q81.528-60.348 81.479-60.299Q81.430-60.250 81.360-60.243M81.360-61.930L76.047-61.930Q75.969-61.938 75.920-61.987Q75.872-62.036 75.872-62.114Q75.872-62.184 75.919-62.235Q75.965-62.286 76.047-62.297L81.360-62.297Q81.434-62.286 81.481-62.235Q81.528-62.184 81.528-62.114Q81.528-62.036 81.479-61.987Q81.430-61.938 81.360-61.930\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 44.68)\">\u003Cpath d=\"M86.997-59.266L84.860-59.266Q84.825-59.266 84.794-59.307Q84.763-59.348 84.763-59.395L84.786-59.496Q84.798-59.547 84.884-59.563Q85.325-59.563 85.483-59.602Q85.642-59.641 85.684-59.868L86.763-64.188Q86.786-64.258 86.786-64.321Q86.786-64.383 86.724-64.403Q86.579-64.434 86.157-64.434Q86.052-64.461 86.052-64.563L86.083-64.664Q86.091-64.711 86.173-64.731L88.684-64.731Q89.091-64.731 89.534-64.608Q89.977-64.485 90.282-64.209Q90.587-63.934 90.587-63.512Q90.587-63.125 90.317-62.809Q90.048-62.493 89.649-62.284Q89.251-62.075 88.876-61.985Q89.184-61.860 89.382-61.621Q89.579-61.383 89.579-61.067Q89.579-61.024 89.577-60.996Q89.575-60.969 89.571-60.938L89.493-60.243Q89.462-59.953 89.462-59.832Q89.462-59.618 89.530-59.487Q89.599-59.356 89.806-59.356Q90.059-59.356 90.255-59.580Q90.450-59.805 90.517-60.082Q90.524-60.129 90.610-60.145L90.692-60.145Q90.786-60.118 90.786-60.036Q90.786-60.028 90.778-59.993Q90.727-59.778 90.583-59.567Q90.438-59.356 90.231-59.227Q90.024-59.098 89.798-59.098Q89.493-59.098 89.224-59.184Q88.954-59.270 88.782-59.469Q88.610-59.668 88.610-59.977Q88.610-60.086 88.653-60.266L88.829-60.961Q88.852-61.082 88.852-61.176Q88.852-61.512 88.591-61.694Q88.329-61.875 87.966-61.875L86.915-61.875L86.395-59.809Q86.380-59.715 86.380-59.672Q86.380-59.633 86.393-59.620Q86.407-59.606 86.442-59.594Q86.587-59.563 87.013-59.563Q87.106-59.536 87.106-59.442L87.083-59.336Q87.075-59.286 86.997-59.266M87.477-64.129L86.981-62.129L87.923-62.129Q88.267-62.129 88.583-62.198Q88.899-62.266 89.173-62.434Q89.360-62.559 89.497-62.760Q89.634-62.961 89.702-63.194Q89.770-63.426 89.770-63.649Q89.770-64.106 89.403-64.270Q89.036-64.434 88.501-64.434L87.884-64.434Q87.712-64.434 87.649-64.420Q87.587-64.407 87.554-64.348Q87.520-64.289 87.477-64.129\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 44.68)\">\u003Cpath d=\"M92.991-57.266L91.815-57.266L91.815-65.266L92.991-65.266L92.991-64.899L92.182-64.899L92.182-57.633L92.991-57.633\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 44.68)\">\u003Cpath d=\"M94.368-59Q94.368-59.063 94.399-59.106L98.145-64.364Q97.688-64.129 97.121-64.129Q96.469-64.129 95.864-64.450Q96.008-64.102 96.008-63.657Q96.008-63.297 95.887-62.926Q95.766-62.555 95.516-62.299Q95.266-62.043 94.903-62.043Q94.516-62.043 94.233-62.287Q93.950-62.532 93.803-62.905Q93.657-63.278 93.657-63.657Q93.657-64.036 93.803-64.407Q93.950-64.778 94.233-65.022Q94.516-65.266 94.903-65.266Q95.219-65.266 95.489-65.028Q95.825-64.723 96.254-64.551Q96.684-64.379 97.121-64.379Q97.614-64.379 98.032-64.592Q98.450-64.805 98.750-65.203Q98.793-65.266 98.887-65.266Q98.961-65.266 99.016-65.211Q99.071-65.157 99.071-65.082Q99.071-65.020 99.039-64.977L94.696-58.883Q94.649-58.817 94.551-58.817Q94.469-58.817 94.418-58.868Q94.368-58.918 94.368-59M94.903-62.297Q95.176-62.297 95.364-62.522Q95.551-62.746 95.639-63.069Q95.727-63.391 95.727-63.657Q95.727-63.914 95.639-64.237Q95.551-64.559 95.364-64.784Q95.176-65.008 94.903-65.008Q94.516-65.008 94.373-64.580Q94.231-64.153 94.231-63.657Q94.231-63.149 94.371-62.723Q94.512-62.297 94.903-62.297M98.680-58.817Q98.293-58.817 98.010-59.063Q97.727-59.309 97.579-59.682Q97.430-60.055 97.430-60.434Q97.430-60.707 97.516-60.995Q97.602-61.282 97.756-61.516Q97.911-61.750 98.147-61.897Q98.383-62.043 98.680-62.043Q98.961-62.043 99.168-61.891Q99.375-61.739 99.514-61.496Q99.653-61.254 99.719-60.973Q99.786-60.692 99.786-60.434Q99.786-60.075 99.664-59.702Q99.543-59.328 99.293-59.073Q99.043-58.817 98.680-58.817M98.680-59.075Q98.954-59.075 99.141-59.299Q99.329-59.524 99.416-59.846Q99.504-60.168 99.504-60.434Q99.504-60.692 99.416-61.014Q99.329-61.336 99.141-61.561Q98.954-61.786 98.680-61.786Q98.289-61.786 98.149-61.356Q98.008-60.926 98.008-60.434Q98.008-59.926 98.145-59.500Q98.282-59.075 98.680-59.075\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 44.68)\">\u003Cpath d=\"M100.491-59.504L100.491-59.594Q100.549-59.801 100.741-59.825L101.452-59.825L101.452-62.153L100.741-62.153Q100.545-62.176 100.491-62.395L100.491-62.481Q100.549-62.692 100.741-62.715L101.842-62.715Q102.041-62.696 102.092-62.481L102.092-62.153Q102.354-62.438 102.709-62.596Q103.065-62.754 103.452-62.754Q103.745-62.754 103.979-62.620Q104.213-62.485 104.213-62.219Q104.213-62.051 104.104-61.934Q103.995-61.817 103.827-61.817Q103.674-61.817 103.559-61.928Q103.444-62.039 103.444-62.196Q103.069-62.196 102.754-61.995Q102.440-61.793 102.266-61.459Q102.092-61.125 102.092-60.746L102.092-59.825L103.038-59.825Q103.245-59.801 103.284-59.594L103.284-59.504Q103.245-59.289 103.038-59.266L100.741-59.266Q100.549-59.289 100.491-59.504M105.256-59.504L105.256-63.594L104.834-63.594Q104.627-63.618 104.584-63.832L104.584-63.922Q104.627-64.129 104.834-64.153L105.651-64.153Q105.846-64.129 105.897-63.922L105.897-62.411Q106.108-62.578 106.372-62.666Q106.635-62.754 106.905-62.754Q107.245-62.754 107.541-62.610Q107.838-62.465 108.053-62.213Q108.268-61.961 108.383-61.649Q108.498-61.336 108.498-60.993Q108.498-60.528 108.272-60.118Q108.045-59.707 107.659-59.467Q107.272-59.227 106.803-59.227Q106.284-59.227 105.897-59.594L105.897-59.504Q105.846-59.286 105.651-59.266L105.506-59.266Q105.315-59.289 105.256-59.504M106.760-59.786Q107.069-59.786 107.319-59.955Q107.569-60.125 107.713-60.407Q107.858-60.688 107.858-60.993Q107.858-61.282 107.733-61.561Q107.608-61.840 107.375-62.018Q107.143-62.196 106.842-62.196Q106.522-62.196 106.260-62.010Q105.998-61.825 105.897-61.524L105.897-60.672Q105.987-60.305 106.207-60.045Q106.428-59.786 106.760-59.786M109.018-59.504L109.018-59.594Q109.057-59.801 109.264-59.825L109.670-59.825L110.600-61.043L109.729-62.153L109.311-62.153Q109.116-62.172 109.065-62.395L109.065-62.481Q109.116-62.692 109.311-62.715L110.471-62.715Q110.670-62.692 110.721-62.481L110.721-62.395Q110.670-62.176 110.471-62.153L110.362-62.153L110.858-61.496L111.334-62.153L111.217-62.153Q111.018-62.176 110.967-62.395L110.967-62.481Q111.018-62.692 111.217-62.715L112.377-62.715Q112.573-62.696 112.623-62.481L112.623-62.395Q112.573-62.176 112.377-62.153L111.967-62.153L111.120-61.043L112.081-59.825L112.487-59.825Q112.686-59.801 112.737-59.594L112.737-59.504Q112.698-59.289 112.487-59.266L111.334-59.266Q111.127-59.289 111.088-59.504L111.088-59.594Q111.127-59.801 111.334-59.825L111.463-59.825L110.858-60.680L110.272-59.825L110.416-59.825Q110.623-59.801 110.663-59.594L110.663-59.504Q110.623-59.289 110.416-59.266L109.264-59.266Q109.069-59.286 109.018-59.504\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 44.68)\">\u003Cpath d=\"M114.377-57.266L113.202-57.266L113.202-57.633L114.010-57.633L114.010-64.899L113.202-64.899L113.202-65.266L114.377-65.266\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(77.51 87.314)\">\u003Cpath d=\"M-6.842-59.489L-7.728-62.153L-8.049-62.153Q-8.248-62.176-8.299-62.395L-8.299-62.481Q-8.248-62.692-8.049-62.715L-6.889-62.715Q-6.693-62.696-6.643-62.481L-6.643-62.395Q-6.693-62.176-6.889-62.153L-7.170-62.153L-6.377-59.778L-5.588-62.153L-5.865-62.153Q-6.064-62.176-6.115-62.395L-6.115-62.481Q-6.064-62.692-5.865-62.715L-4.705-62.715Q-4.510-62.692-4.459-62.481L-4.459-62.395Q-4.510-62.176-4.705-62.153L-5.025-62.153L-5.912-59.489Q-5.955-59.375-6.057-59.301Q-6.158-59.227-6.283-59.227L-6.475-59.227Q-6.592-59.227-6.695-59.299Q-6.799-59.371-6.842-59.489M-3.846-60.379Q-3.846-60.825-3.432-61.082Q-3.018-61.340-2.477-61.440Q-1.935-61.539-1.428-61.547Q-1.428-61.762-1.562-61.914Q-1.697-62.067-1.904-62.143Q-2.111-62.219-2.322-62.219Q-2.666-62.219-2.826-62.196L-2.826-62.137Q-2.826-61.969-2.945-61.854Q-3.064-61.739-3.228-61.739Q-3.404-61.739-3.519-61.862Q-3.635-61.985-3.635-62.153Q-3.635-62.559-3.254-62.668Q-2.873-62.778-2.314-62.778Q-2.045-62.778-1.777-62.700Q-1.510-62.621-1.285-62.471Q-1.060-62.321-0.924-62.100Q-0.787-61.879-0.787-61.602L-0.787-59.883Q-0.787-59.825-0.260-59.825Q-0.064-59.805-0.014-59.594L-0.014-59.504Q-0.064-59.289-0.260-59.266L-0.404-59.266Q-0.748-59.266-0.977-59.313Q-1.205-59.360-1.350-59.547Q-1.810-59.227-2.518-59.227Q-2.853-59.227-3.158-59.368Q-3.463-59.508-3.654-59.770Q-3.846-60.032-3.846-60.379M-3.205-60.371Q-3.205-60.098-2.963-59.942Q-2.721-59.786-2.435-59.786Q-2.217-59.786-1.984-59.844Q-1.752-59.903-1.590-60.041Q-1.428-60.180-1.428-60.403L-1.428-60.993Q-1.709-60.993-2.125-60.936Q-2.541-60.879-2.873-60.741Q-3.205-60.602-3.205-60.371M0.443-59.504L0.443-59.594Q0.494-59.801 0.690-59.825L1.795-59.825L1.795-63.594L0.690-63.594Q0.494-63.618 0.443-63.832L0.443-63.922Q0.494-64.129 0.690-64.153L2.186-64.153Q2.377-64.129 2.436-63.922L2.436-59.825L3.537-59.825Q3.736-59.801 3.787-59.594L3.787-59.504Q3.736-59.289 3.537-59.266L0.690-59.266Q0.494-59.289 0.443-59.504M4.424-59.504L4.424-59.594Q4.463-59.801 4.674-59.825L4.982-59.825L4.982-63.594L4.674-63.594Q4.463-63.618 4.424-63.832L4.424-63.922Q4.463-64.129 4.674-64.153L7.881-64.153Q8.076-64.129 8.127-63.922L8.127-63.082Q8.076-62.868 7.881-62.840L7.736-62.840Q7.541-62.868 7.486-63.082L7.486-63.594L5.623-63.594L5.623-62.075L6.600-62.075L6.600-62.289Q6.650-62.496 6.850-62.524L6.994-62.524Q7.190-62.496 7.240-62.289L7.240-61.305Q7.190-61.090 6.994-61.067L6.850-61.067Q6.650-61.090 6.600-61.305L6.600-61.512L5.623-61.512L5.623-59.825L7.666-59.825L7.666-60.465Q7.717-60.672 7.912-60.700L8.057-60.700Q8.252-60.672 8.303-60.465L8.303-59.504Q8.252-59.286 8.057-59.266L4.674-59.266Q4.463-59.289 4.424-59.504\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 87.314)\">\u003Cpath d=\"M16.825-60.243L11.512-60.243Q11.434-60.250 11.385-60.299Q11.337-60.348 11.337-60.426Q11.337-60.496 11.384-60.547Q11.430-60.598 11.512-60.610L16.825-60.610Q16.899-60.598 16.946-60.547Q16.993-60.496 16.993-60.426Q16.993-60.348 16.944-60.299Q16.895-60.250 16.825-60.243M16.825-61.930L11.512-61.930Q11.434-61.938 11.385-61.987Q11.337-62.036 11.337-62.114Q11.337-62.184 11.384-62.235Q11.430-62.286 11.512-62.297L16.825-62.297Q16.899-62.286 16.946-62.235Q16.993-62.184 16.993-62.114Q16.993-62.036 16.944-61.987Q16.895-61.938 16.825-61.930\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 87.314)\">\u003Cpath d=\"M21.492-59.489L20.606-62.153L20.285-62.153Q20.086-62.176 20.035-62.395L20.035-62.481Q20.086-62.692 20.285-62.715L21.445-62.715Q21.641-62.696 21.691-62.481L21.691-62.395Q21.641-62.176 21.445-62.153L21.164-62.153L21.957-59.778L22.746-62.153L22.469-62.153Q22.270-62.176 22.219-62.395L22.219-62.481Q22.270-62.692 22.469-62.715L23.629-62.715Q23.824-62.692 23.875-62.481L23.875-62.395Q23.824-62.176 23.629-62.153L23.309-62.153L22.422-59.489Q22.379-59.375 22.277-59.301Q22.176-59.227 22.051-59.227L21.859-59.227Q21.742-59.227 21.639-59.299Q21.535-59.371 21.492-59.489M24.488-60.379Q24.488-60.825 24.902-61.082Q25.316-61.340 25.857-61.440Q26.398-61.539 26.906-61.547Q26.906-61.762 26.772-61.914Q26.637-62.067 26.430-62.143Q26.223-62.219 26.012-62.219Q25.668-62.219 25.508-62.196L25.508-62.137Q25.508-61.969 25.389-61.854Q25.270-61.739 25.106-61.739Q24.930-61.739 24.815-61.862Q24.699-61.985 24.699-62.153Q24.699-62.559 25.080-62.668Q25.461-62.778 26.020-62.778Q26.289-62.778 26.557-62.700Q26.824-62.621 27.049-62.471Q27.273-62.321 27.410-62.100Q27.547-61.879 27.547-61.602L27.547-59.883Q27.547-59.825 28.074-59.825Q28.270-59.805 28.320-59.594L28.320-59.504Q28.270-59.289 28.074-59.266L27.930-59.266Q27.586-59.266 27.357-59.313Q27.129-59.360 26.984-59.547Q26.523-59.227 25.816-59.227Q25.481-59.227 25.176-59.368Q24.871-59.508 24.680-59.770Q24.488-60.032 24.488-60.379M25.129-60.371Q25.129-60.098 25.371-59.942Q25.613-59.786 25.898-59.786Q26.117-59.786 26.350-59.844Q26.582-59.903 26.744-60.041Q26.906-60.180 26.906-60.403L26.906-60.993Q26.625-60.993 26.209-60.936Q25.793-60.879 25.461-60.741Q25.129-60.602 25.129-60.371M28.777-59.504L28.777-59.594Q28.828-59.801 29.023-59.825L30.129-59.825L30.129-63.594L29.023-63.594Q28.828-63.618 28.777-63.832L28.777-63.922Q28.828-64.129 29.023-64.153L30.520-64.153Q30.711-64.129 30.770-63.922L30.770-59.825L31.871-59.825Q32.070-59.801 32.121-59.594L32.121-59.504Q32.070-59.289 31.871-59.266L29.023-59.266Q28.828-59.289 28.777-59.504M32.742-59.504L32.742-59.594Q32.781-59.801 32.988-59.825L33.277-59.825L33.277-63.594L32.988-63.594Q32.781-63.618 32.742-63.832L32.742-63.922Q32.781-64.129 32.988-64.153L34.949-64.153Q35.219-64.153 35.459-64.057Q35.699-63.961 35.891-63.791Q36.082-63.621 36.191-63.393Q36.301-63.164 36.301-62.899Q36.301-62.532 36.061-62.243Q35.820-61.953 35.453-61.825Q35.734-61.762 35.967-61.588Q36.199-61.414 36.334-61.159Q36.469-60.903 36.469-60.618Q36.469-60.258 36.287-59.948Q36.106-59.637 35.791-59.452Q35.477-59.266 35.117-59.266L32.988-59.266Q32.781-59.289 32.742-59.504M33.918-61.532L33.918-59.825L34.949-59.825Q35.176-59.825 35.379-59.928Q35.582-60.032 35.707-60.211Q35.832-60.391 35.832-60.618Q35.832-60.848 35.731-61.057Q35.629-61.266 35.447-61.399Q35.266-61.532 35.039-61.532L33.918-61.532M33.918-63.594L33.918-62.090L34.781-62.090Q35.125-62.090 35.395-62.325Q35.664-62.559 35.664-62.899Q35.664-63.086 35.566-63.246Q35.469-63.407 35.303-63.500Q35.137-63.594 34.949-63.594\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 87.314)\">\u003Cpath d=\"M42.022-60.715L39.768-60.715L39.768-61.266L42.022-61.266\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 87.314)\">\u003Cpath d=\"M46.992-59.489L46.106-62.153L45.785-62.153Q45.586-62.176 45.535-62.395L45.535-62.481Q45.586-62.692 45.785-62.715L46.945-62.715Q47.141-62.696 47.191-62.481L47.191-62.395Q47.141-62.176 46.945-62.153L46.664-62.153L47.457-59.778L48.246-62.153L47.969-62.153Q47.770-62.176 47.719-62.395L47.719-62.481Q47.770-62.692 47.969-62.715L49.129-62.715Q49.324-62.692 49.375-62.481L49.375-62.395Q49.324-62.176 49.129-62.153L48.809-62.153L47.922-59.489Q47.879-59.375 47.777-59.301Q47.676-59.227 47.551-59.227L47.359-59.227Q47.242-59.227 47.139-59.299Q47.035-59.371 46.992-59.489M49.988-60.379Q49.988-60.825 50.402-61.082Q50.816-61.340 51.357-61.440Q51.898-61.539 52.406-61.547Q52.406-61.762 52.272-61.914Q52.137-62.067 51.930-62.143Q51.723-62.219 51.512-62.219Q51.168-62.219 51.008-62.196L51.008-62.137Q51.008-61.969 50.889-61.854Q50.770-61.739 50.606-61.739Q50.430-61.739 50.315-61.862Q50.199-61.985 50.199-62.153Q50.199-62.559 50.580-62.668Q50.961-62.778 51.520-62.778Q51.789-62.778 52.057-62.700Q52.324-62.621 52.549-62.471Q52.773-62.321 52.910-62.100Q53.047-61.879 53.047-61.602L53.047-59.883Q53.047-59.825 53.574-59.825Q53.770-59.805 53.820-59.594L53.820-59.504Q53.770-59.289 53.574-59.266L53.430-59.266Q53.086-59.266 52.857-59.313Q52.629-59.360 52.484-59.547Q52.023-59.227 51.316-59.227Q50.981-59.227 50.676-59.368Q50.371-59.508 50.180-59.770Q49.988-60.032 49.988-60.379M50.629-60.371Q50.629-60.098 50.871-59.942Q51.113-59.786 51.398-59.786Q51.617-59.786 51.850-59.844Q52.082-59.903 52.244-60.041Q52.406-60.180 52.406-60.403L52.406-60.993Q52.125-60.993 51.709-60.936Q51.293-60.879 50.961-60.741Q50.629-60.602 50.629-60.371M54.277-59.504L54.277-59.594Q54.328-59.801 54.523-59.825L55.629-59.825L55.629-63.594L54.523-63.594Q54.328-63.618 54.277-63.832L54.277-63.922Q54.328-64.129 54.523-64.153L56.020-64.153Q56.211-64.129 56.270-63.922L56.270-59.825L57.371-59.825Q57.570-59.801 57.621-59.594L57.621-59.504Q57.570-59.289 57.371-59.266L54.523-59.266Q54.328-59.289 54.277-59.504M58.305-59.504L58.305-59.594Q58.363-59.805 58.555-59.825L58.777-59.825L59.731-64.008Q59.754-64.125 59.850-64.200Q59.945-64.274 60.059-64.274L60.332-64.274Q60.445-64.274 60.541-64.198Q60.637-64.121 60.660-64.008L61.609-59.825L61.836-59.825Q62.043-59.801 62.082-59.594L62.082-59.504Q62.031-59.289 61.836-59.266L60.754-59.266Q60.559-59.289 60.508-59.504L60.508-59.594Q60.559-59.801 60.754-59.825L60.953-59.825Q60.824-60.391 60.801-60.473L59.586-60.473Q59.543-60.289 59.434-59.825L59.633-59.825Q59.832-59.801 59.883-59.594L59.883-59.504Q59.832-59.289 59.633-59.266L58.555-59.266Q58.348-59.289 58.305-59.504M59.707-61.036L60.684-61.036Q60.203-63.168 60.203-63.512L60.195-63.512Q60.195-63.328 60.055-62.645Q59.914-61.961 59.707-61.036\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 87.314)\">\u003Cpath d=\"M63.161-57.860Q63.161-57.899 63.185-57.922Q63.458-58.207 63.601-58.571Q63.743-58.934 63.743-59.321Q63.646-59.266 63.521-59.266Q63.329-59.266 63.192-59.399Q63.056-59.532 63.056-59.731Q63.056-59.922 63.192-60.055Q63.329-60.188 63.521-60.188Q64.001-60.188 64.001-59.313Q64.001-59.024 63.929-58.743Q63.857-58.461 63.714-58.207Q63.571-57.953 63.376-57.746Q63.345-57.715 63.306-57.715Q63.259-57.715 63.210-57.760Q63.161-57.805 63.161-57.860M63.056-62.258Q63.056-62.442 63.192-62.578Q63.329-62.715 63.521-62.715Q63.712-62.715 63.845-62.582Q63.978-62.450 63.978-62.258Q63.978-62.059 63.845-61.926Q63.712-61.793 63.521-61.793Q63.329-61.793 63.192-61.930Q63.056-62.067 63.056-62.258\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 87.314)\">\u003Cpath d=\"M67.812-59.274L67.812-60.496Q67.812-60.524 67.844-60.555Q67.875-60.586 67.898-60.586L68.004-60.586Q68.074-60.586 68.090-60.524Q68.152-60.203 68.291-59.963Q68.429-59.723 68.662-59.582Q68.894-59.442 69.203-59.442Q69.441-59.442 69.650-59.502Q69.859-59.563 69.996-59.711Q70.133-59.860 70.133-60.106Q70.133-60.360 69.922-60.526Q69.711-60.692 69.441-60.746L68.820-60.860Q68.414-60.938 68.113-61.194Q67.812-61.450 67.812-61.825Q67.812-62.192 68.013-62.414Q68.215-62.637 68.539-62.735Q68.863-62.832 69.203-62.832Q69.668-62.832 69.965-62.625L70.187-62.809Q70.211-62.832 70.242-62.832L70.293-62.832Q70.324-62.832 70.351-62.805Q70.379-62.778 70.379-62.746L70.379-61.762Q70.379-61.731 70.353-61.702Q70.328-61.672 70.293-61.672L70.187-61.672Q70.152-61.672 70.125-61.700Q70.097-61.727 70.097-61.762Q70.097-62.161 69.845-62.381Q69.594-62.602 69.195-62.602Q68.840-62.602 68.556-62.479Q68.273-62.356 68.273-62.051Q68.273-61.832 68.474-61.700Q68.676-61.567 68.922-61.524L69.547-61.411Q69.976-61.321 70.285-61.024Q70.594-60.727 70.594-60.313Q70.594-59.743 70.195-59.465Q69.797-59.188 69.203-59.188Q68.652-59.188 68.301-59.524L68.004-59.211Q67.980-59.188 67.945-59.188L67.898-59.188Q67.875-59.188 67.844-59.219Q67.812-59.250 67.812-59.274M71.121-61.020Q71.121-61.500 71.353-61.916Q71.586-62.332 71.996-62.582Q72.406-62.832 72.883-62.832Q73.613-62.832 74.011-62.391Q74.410-61.950 74.410-61.219Q74.410-61.114 74.316-61.090L71.867-61.090L71.867-61.020Q71.867-60.610 71.988-60.254Q72.109-59.899 72.381-59.682Q72.652-59.465 73.082-59.465Q73.445-59.465 73.742-59.694Q74.039-59.922 74.140-60.274Q74.148-60.321 74.234-60.336L74.316-60.336Q74.410-60.309 74.410-60.227Q74.410-60.219 74.402-60.188Q74.340-59.961 74.201-59.778Q74.062-59.594 73.871-59.461Q73.679-59.328 73.461-59.258Q73.242-59.188 73.004-59.188Q72.633-59.188 72.295-59.325Q71.957-59.461 71.689-59.713Q71.422-59.965 71.271-60.305Q71.121-60.645 71.121-61.020M71.875-61.328L73.836-61.328Q73.836-61.633 73.734-61.924Q73.633-62.215 73.416-62.397Q73.199-62.578 72.883-62.578Q72.582-62.578 72.351-62.391Q72.121-62.203 71.998-61.912Q71.875-61.621 71.875-61.328M75.523-60.227L75.523-62.418L74.820-62.418L74.820-62.672Q75.176-62.672 75.418-62.905Q75.660-63.137 75.771-63.485Q75.883-63.832 75.883-64.188L76.164-64.188L76.164-62.715L77.340-62.715L77.340-62.418L76.164-62.418L76.164-60.243Q76.164-59.922 76.283-59.694Q76.402-59.465 76.683-59.465Q76.863-59.465 76.980-59.588Q77.097-59.711 77.150-59.891Q77.203-60.071 77.203-60.243L77.203-60.715L77.484-60.715L77.484-60.227Q77.484-59.973 77.379-59.733Q77.273-59.493 77.076-59.340Q76.879-59.188 76.621-59.188Q76.304-59.188 76.052-59.311Q75.801-59.434 75.662-59.668Q75.523-59.903 75.523-60.227\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 87.314)\">\u003Cpath d=\"M81.274-62Q81.274-62.594 81.506-63.125Q81.739-63.657 82.155-64.057Q82.571-64.457 83.104-64.678Q83.637-64.899 84.242-64.899Q84.680-64.899 85.078-64.717Q85.477-64.536 85.785-64.203L86.258-64.868Q86.289-64.899 86.321-64.899L86.367-64.899Q86.395-64.899 86.426-64.868Q86.457-64.836 86.457-64.809L86.457-62.672Q86.457-62.649 86.426-62.618Q86.395-62.586 86.367-62.586L86.250-62.586Q86.223-62.586 86.192-62.618Q86.160-62.649 86.160-62.672Q86.160-62.938 86.018-63.291Q85.875-63.645 85.696-63.883Q85.442-64.215 85.092-64.409Q84.742-64.602 84.336-64.602Q83.832-64.602 83.379-64.383Q82.926-64.164 82.633-63.770Q82.137-63.102 82.137-62Q82.137-61.469 82.274-61.002Q82.410-60.536 82.686-60.170Q82.961-59.805 83.381-59.600Q83.801-59.395 84.344-59.395Q84.832-59.395 85.256-59.639Q85.680-59.883 85.928-60.303Q86.176-60.723 86.176-61.219Q86.176-61.254 86.205-61.280Q86.235-61.305 86.266-61.305L86.367-61.305Q86.410-61.305 86.434-61.276Q86.457-61.246 86.457-61.203Q86.457-60.766 86.281-60.377Q86.106-59.989 85.795-59.705Q85.485-59.422 85.074-59.260Q84.664-59.098 84.242-59.098Q83.653-59.098 83.112-59.319Q82.571-59.539 82.155-59.944Q81.739-60.348 81.506-60.877Q81.274-61.407 81.274-62M87.410-62Q87.410-62.594 87.643-63.125Q87.875-63.657 88.291-64.057Q88.707-64.457 89.240-64.678Q89.774-64.899 90.379-64.899Q90.817-64.899 91.215-64.717Q91.614-64.536 91.922-64.203L92.395-64.868Q92.426-64.899 92.457-64.899L92.504-64.899Q92.531-64.899 92.563-64.868Q92.594-64.836 92.594-64.809L92.594-62.672Q92.594-62.649 92.563-62.618Q92.531-62.586 92.504-62.586L92.387-62.586Q92.360-62.586 92.328-62.618Q92.297-62.649 92.297-62.672Q92.297-62.938 92.155-63.291Q92.012-63.645 91.832-63.883Q91.578-64.215 91.229-64.409Q90.879-64.602 90.473-64.602Q89.969-64.602 89.516-64.383Q89.063-64.164 88.770-63.770Q88.274-63.102 88.274-62Q88.274-61.469 88.410-61.002Q88.547-60.536 88.822-60.170Q89.098-59.805 89.518-59.600Q89.938-59.395 90.481-59.395Q90.969-59.395 91.393-59.639Q91.817-59.883 92.065-60.303Q92.313-60.723 92.313-61.219Q92.313-61.254 92.342-61.280Q92.371-61.305 92.403-61.305L92.504-61.305Q92.547-61.305 92.571-61.276Q92.594-61.246 92.594-61.203Q92.594-60.766 92.418-60.377Q92.242-59.989 91.932-59.705Q91.621-59.422 91.211-59.260Q90.801-59.098 90.379-59.098Q89.789-59.098 89.248-59.319Q88.707-59.539 88.291-59.944Q87.875-60.348 87.643-60.877Q87.410-61.407 87.410-62\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(77.51 130.037)\">\u003Cpath d=\"M-5.873-59.266L-8.010-59.266Q-8.045-59.266-8.076-59.307Q-8.107-59.348-8.107-59.395L-8.084-59.496Q-8.072-59.547-7.986-59.563Q-7.545-59.563-7.387-59.602Q-7.228-59.641-7.185-59.868L-6.107-64.188Q-6.084-64.258-6.084-64.321Q-6.084-64.383-6.146-64.403Q-6.291-64.434-6.713-64.434Q-6.818-64.461-6.818-64.563L-6.787-64.664Q-6.779-64.711-6.697-64.731L-4.185-64.731Q-3.779-64.731-3.336-64.608Q-2.893-64.485-2.588-64.209Q-2.283-63.934-2.283-63.512Q-2.283-63.125-2.553-62.809Q-2.822-62.493-3.221-62.284Q-3.619-62.075-3.994-61.985Q-3.685-61.860-3.488-61.621Q-3.291-61.383-3.291-61.067Q-3.291-61.024-3.293-60.996Q-3.295-60.969-3.299-60.938L-3.377-60.243Q-3.408-59.953-3.408-59.832Q-3.408-59.618-3.340-59.487Q-3.271-59.356-3.064-59.356Q-2.810-59.356-2.615-59.580Q-2.420-59.805-2.353-60.082Q-2.346-60.129-2.260-60.145L-2.178-60.145Q-2.084-60.118-2.084-60.036Q-2.084-60.028-2.092-59.993Q-2.143-59.778-2.287-59.567Q-2.432-59.356-2.639-59.227Q-2.846-59.098-3.072-59.098Q-3.377-59.098-3.646-59.184Q-3.916-59.270-4.088-59.469Q-4.260-59.668-4.260-59.977Q-4.260-60.086-4.217-60.266L-4.041-60.961Q-4.018-61.082-4.018-61.176Q-4.018-61.512-4.279-61.694Q-4.541-61.875-4.904-61.875L-5.955-61.875L-6.475-59.809Q-6.490-59.715-6.490-59.672Q-6.490-59.633-6.477-59.620Q-6.463-59.606-6.428-59.594Q-6.283-59.563-5.857-59.563Q-5.764-59.536-5.764-59.442L-5.787-59.336Q-5.795-59.286-5.873-59.266M-5.393-64.129L-5.889-62.129L-4.947-62.129Q-4.603-62.129-4.287-62.198Q-3.971-62.266-3.697-62.434Q-3.510-62.559-3.373-62.760Q-3.236-62.961-3.168-63.194Q-3.100-63.426-3.100-63.649Q-3.100-64.106-3.467-64.270Q-3.834-64.434-4.369-64.434L-4.986-64.434Q-5.158-64.434-5.221-64.420Q-5.283-64.407-5.316-64.348Q-5.350-64.289-5.393-64.129\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 130.037)\">\u003Cpath d=\"M0.122-57.266L-1.054-57.266L-1.054-65.266L0.122-65.266L0.122-64.899L-0.687-64.899L-0.687-57.633L0.122-57.633\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 130.037)\">\u003Cpath d=\"M1.499-59Q1.499-59.063 1.530-59.106L5.276-64.364Q4.819-64.129 4.253-64.129Q3.600-64.129 2.995-64.450Q3.139-64.102 3.139-63.657Q3.139-63.297 3.018-62.926Q2.897-62.555 2.647-62.299Q2.397-62.043 2.034-62.043Q1.647-62.043 1.364-62.287Q1.081-62.532 0.934-62.905Q0.788-63.278 0.788-63.657Q0.788-64.036 0.934-64.407Q1.081-64.778 1.364-65.022Q1.647-65.266 2.034-65.266Q2.350-65.266 2.620-65.028Q2.956-64.723 3.385-64.551Q3.815-64.379 4.253-64.379Q4.745-64.379 5.163-64.592Q5.581-64.805 5.881-65.203Q5.924-65.266 6.018-65.266Q6.092-65.266 6.147-65.211Q6.202-65.157 6.202-65.082Q6.202-65.020 6.170-64.977L1.827-58.883Q1.780-58.817 1.682-58.817Q1.600-58.817 1.549-58.868Q1.499-58.918 1.499-59M2.034-62.297Q2.307-62.297 2.495-62.522Q2.682-62.746 2.770-63.069Q2.858-63.391 2.858-63.657Q2.858-63.914 2.770-64.237Q2.682-64.559 2.495-64.784Q2.307-65.008 2.034-65.008Q1.647-65.008 1.504-64.580Q1.362-64.153 1.362-63.657Q1.362-63.149 1.503-62.723Q1.643-62.297 2.034-62.297M5.811-58.817Q5.424-58.817 5.141-59.063Q4.858-59.309 4.710-59.682Q4.561-60.055 4.561-60.434Q4.561-60.707 4.647-60.995Q4.733-61.282 4.887-61.516Q5.042-61.750 5.278-61.897Q5.514-62.043 5.811-62.043Q6.092-62.043 6.299-61.891Q6.506-61.739 6.645-61.496Q6.784-61.254 6.850-60.973Q6.917-60.692 6.917-60.434Q6.917-60.075 6.795-59.702Q6.674-59.328 6.424-59.073Q6.174-58.817 5.811-58.817M5.811-59.075Q6.085-59.075 6.272-59.299Q6.460-59.524 6.547-59.846Q6.635-60.168 6.635-60.434Q6.635-60.692 6.547-61.014Q6.460-61.336 6.272-61.561Q6.085-61.786 5.811-61.786Q5.420-61.786 5.280-61.356Q5.139-60.926 5.139-60.434Q5.139-59.926 5.276-59.500Q5.413-59.075 5.811-59.075\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 130.037)\">\u003Cpath d=\"M7.621-59.504L7.621-59.594Q7.679-59.801 7.871-59.825L8.582-59.825L8.582-62.153L7.871-62.153Q7.675-62.176 7.621-62.395L7.621-62.481Q7.679-62.692 7.871-62.715L8.972-62.715Q9.171-62.696 9.222-62.481L9.222-62.153Q9.484-62.438 9.839-62.596Q10.195-62.754 10.582-62.754Q10.875-62.754 11.109-62.620Q11.343-62.485 11.343-62.219Q11.343-62.051 11.234-61.934Q11.125-61.817 10.957-61.817Q10.804-61.817 10.689-61.928Q10.574-62.039 10.574-62.196Q10.199-62.196 9.884-61.995Q9.570-61.793 9.396-61.459Q9.222-61.125 9.222-60.746L9.222-59.825L10.168-59.825Q10.375-59.801 10.414-59.594L10.414-59.504Q10.375-59.289 10.168-59.266L7.871-59.266Q7.679-59.289 7.621-59.504M12.386-59.504L12.386-63.594L11.964-63.594Q11.757-63.618 11.714-63.832L11.714-63.922Q11.757-64.129 11.964-64.153L12.781-64.153Q12.976-64.129 13.027-63.922L13.027-62.411Q13.238-62.578 13.502-62.666Q13.765-62.754 14.035-62.754Q14.375-62.754 14.671-62.610Q14.968-62.465 15.183-62.213Q15.398-61.961 15.513-61.649Q15.628-61.336 15.628-60.993Q15.628-60.528 15.402-60.118Q15.175-59.707 14.789-59.467Q14.402-59.227 13.933-59.227Q13.414-59.227 13.027-59.594L13.027-59.504Q12.976-59.286 12.781-59.266L12.636-59.266Q12.445-59.289 12.386-59.504M13.890-59.786Q14.199-59.786 14.449-59.955Q14.699-60.125 14.843-60.407Q14.988-60.688 14.988-60.993Q14.988-61.282 14.863-61.561Q14.738-61.840 14.505-62.018Q14.273-62.196 13.972-62.196Q13.652-62.196 13.390-62.010Q13.128-61.825 13.027-61.524L13.027-60.672Q13.117-60.305 13.337-60.045Q13.558-59.786 13.890-59.786M16.148-59.504L16.148-59.594Q16.187-59.801 16.394-59.825L16.800-59.825L17.730-61.043L16.859-62.153L16.441-62.153Q16.246-62.172 16.195-62.395L16.195-62.481Q16.246-62.692 16.441-62.715L17.601-62.715Q17.800-62.692 17.851-62.481L17.851-62.395Q17.800-62.176 17.601-62.153L17.492-62.153L17.988-61.496L18.464-62.153L18.347-62.153Q18.148-62.176 18.097-62.395L18.097-62.481Q18.148-62.692 18.347-62.715L19.507-62.715Q19.703-62.696 19.753-62.481L19.753-62.395Q19.703-62.176 19.507-62.153L19.097-62.153L18.250-61.043L19.210-59.825L19.617-59.825Q19.816-59.801 19.867-59.594L19.867-59.504Q19.828-59.289 19.617-59.266L18.464-59.266Q18.257-59.289 18.218-59.504L18.218-59.594Q18.257-59.801 18.464-59.825L18.593-59.825L17.988-60.680L17.402-59.825L17.546-59.825Q17.753-59.801 17.793-59.594L17.793-59.504Q17.753-59.289 17.546-59.266L16.394-59.266Q16.199-59.286 16.148-59.504\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 130.037)\">\u003Cpath d=\"M21.507-57.266L20.332-57.266L20.332-57.633L21.140-57.633L21.140-64.899L20.332-64.899L20.332-65.266L21.507-65.266\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 130.037)\">\u003Cpath d=\"M30.832-60.243L25.519-60.243Q25.441-60.250 25.392-60.299Q25.344-60.348 25.344-60.426Q25.344-60.496 25.391-60.547Q25.437-60.598 25.519-60.610L30.832-60.610Q30.906-60.598 30.953-60.547Q31-60.496 31-60.426Q31-60.348 30.951-60.299Q30.902-60.250 30.832-60.243M30.832-61.930L25.519-61.930Q25.441-61.938 25.392-61.987Q25.344-62.036 25.344-62.114Q25.344-62.184 25.391-62.235Q25.437-62.286 25.519-62.297L30.832-62.297Q30.906-62.286 30.953-62.235Q31-62.184 31-62.114Q31-62.036 30.951-61.987Q30.902-61.938 30.832-61.930\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 130.037)\">\u003Cpath d=\"M35.499-59.489L34.613-62.153L34.292-62.153Q34.093-62.176 34.042-62.395L34.042-62.481Q34.093-62.692 34.292-62.715L35.452-62.715Q35.648-62.696 35.698-62.481L35.698-62.395Q35.648-62.176 35.452-62.153L35.171-62.153L35.964-59.778L36.753-62.153L36.476-62.153Q36.277-62.176 36.226-62.395L36.226-62.481Q36.277-62.692 36.476-62.715L37.636-62.715Q37.831-62.692 37.882-62.481L37.882-62.395Q37.831-62.176 37.636-62.153L37.316-62.153L36.429-59.489Q36.386-59.375 36.284-59.301Q36.183-59.227 36.058-59.227L35.866-59.227Q35.749-59.227 35.646-59.299Q35.542-59.371 35.499-59.489M38.495-60.379Q38.495-60.825 38.909-61.082Q39.323-61.340 39.864-61.440Q40.406-61.539 40.913-61.547Q40.913-61.762 40.779-61.914Q40.644-62.067 40.437-62.143Q40.230-62.219 40.019-62.219Q39.675-62.219 39.515-62.196L39.515-62.137Q39.515-61.969 39.396-61.854Q39.277-61.739 39.113-61.739Q38.937-61.739 38.822-61.862Q38.706-61.985 38.706-62.153Q38.706-62.559 39.087-62.668Q39.468-62.778 40.027-62.778Q40.296-62.778 40.564-62.700Q40.831-62.621 41.056-62.471Q41.281-62.321 41.417-62.100Q41.554-61.879 41.554-61.602L41.554-59.883Q41.554-59.825 42.081-59.825Q42.277-59.805 42.327-59.594L42.327-59.504Q42.277-59.289 42.081-59.266L41.937-59.266Q41.593-59.266 41.364-59.313Q41.136-59.360 40.991-59.547Q40.531-59.227 39.823-59.227Q39.488-59.227 39.183-59.368Q38.878-59.508 38.687-59.770Q38.495-60.032 38.495-60.379M39.136-60.371Q39.136-60.098 39.378-59.942Q39.620-59.786 39.906-59.786Q40.124-59.786 40.357-59.844Q40.589-59.903 40.751-60.041Q40.913-60.180 40.913-60.403L40.913-60.993Q40.632-60.993 40.216-60.936Q39.800-60.879 39.468-60.741Q39.136-60.602 39.136-60.371M42.784-59.504L42.784-59.594Q42.835-59.801 43.031-59.825L44.136-59.825L44.136-63.594L43.031-63.594Q42.835-63.618 42.784-63.832L42.784-63.922Q42.835-64.129 43.031-64.153L44.527-64.153Q44.718-64.129 44.777-63.922L44.777-59.825L45.878-59.825Q46.077-59.801 46.128-59.594L46.128-59.504Q46.077-59.289 45.878-59.266L43.031-59.266Q42.835-59.289 42.784-59.504M46.765-59.504L46.765-59.594Q46.804-59.801 47.015-59.825L47.323-59.825L47.323-63.594L47.015-63.594Q46.804-63.618 46.765-63.832L46.765-63.922Q46.804-64.129 47.015-64.153L50.222-64.153Q50.417-64.129 50.468-63.922L50.468-63.082Q50.417-62.868 50.222-62.840L50.077-62.840Q49.882-62.868 49.827-63.082L49.827-63.594L47.964-63.594L47.964-62.075L48.941-62.075L48.941-62.289Q48.991-62.496 49.191-62.524L49.335-62.524Q49.531-62.496 49.581-62.289L49.581-61.305Q49.531-61.090 49.335-61.067L49.191-61.067Q48.991-61.090 48.941-61.305L48.941-61.512L47.964-61.512L47.964-59.825L50.007-59.825L50.007-60.465Q50.058-60.672 50.253-60.700L50.398-60.700Q50.593-60.672 50.644-60.465L50.644-59.504Q50.593-59.286 50.398-59.266L47.015-59.266Q46.804-59.289 46.765-59.504\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(77.51 173.16)\">\u003Cpath d=\"M-8.314-59.504L-8.314-59.594Q-8.275-59.801-8.064-59.825L-7.756-59.825L-7.756-63.594L-8.064-63.594Q-8.275-63.618-8.314-63.832L-8.314-63.922Q-8.275-64.129-8.064-64.153L-6.115-64.153Q-5.717-64.153-5.371-63.952Q-5.025-63.750-4.818-63.405Q-4.611-63.059-4.611-62.657Q-4.611-62.250-4.816-61.907Q-5.021-61.563-5.367-61.358Q-5.713-61.153-6.115-61.153L-7.115-61.153L-7.115-59.825L-6.803-59.825Q-6.592-59.801-6.553-59.594L-6.553-59.504Q-6.592-59.289-6.803-59.266L-8.064-59.266Q-8.275-59.289-8.314-59.504M-7.115-63.594L-7.115-61.715L-6.275-61.715Q-6.014-61.715-5.777-61.838Q-5.541-61.961-5.396-62.176Q-5.252-62.391-5.252-62.657Q-5.252-62.926-5.396-63.137Q-5.541-63.348-5.777-63.471Q-6.014-63.594-6.275-63.594L-7.115-63.594M-1.986-59.188Q-2.435-59.188-2.801-59.412Q-3.166-59.637-3.420-60.020Q-3.674-60.403-3.799-60.846Q-3.924-61.289-3.924-61.715Q-3.924-62.141-3.799-62.580Q-3.674-63.020-3.420-63.403Q-3.166-63.786-2.807-64.010Q-2.447-64.235-1.986-64.235Q-1.709-64.235-1.451-64.143Q-1.193-64.051-0.978-63.883L-0.846-64.121Q-0.818-64.172-0.764-64.203Q-0.709-64.235-0.650-64.235L-0.572-64.235Q-0.478-64.223-0.416-64.164Q-0.353-64.106-0.342-64L-0.342-62.672Q-0.353-62.571-0.416-62.508Q-0.478-62.446-0.572-62.434L-0.740-62.434Q-0.842-62.446-0.904-62.512Q-0.967-62.578-0.978-62.672Q-1.018-62.938-1.141-63.162Q-1.264-63.387-1.467-63.530Q-1.670-63.672-1.932-63.672Q-2.264-63.672-2.516-63.489Q-2.768-63.305-2.939-63.004Q-3.111-62.703-3.197-62.362Q-3.283-62.020-3.283-61.715Q-3.283-61.411-3.199-61.069Q-3.115-60.727-2.943-60.424Q-2.771-60.121-2.514-59.934Q-2.256-59.746-1.924-59.746Q-1.541-59.746-1.260-60.020Q-0.978-60.293-0.978-60.680Q-0.951-60.891-0.740-60.914L-0.572-60.914Q-0.342-60.875-0.342-60.649Q-0.342-60.332-0.478-60.061Q-0.615-59.789-0.850-59.592Q-1.084-59.395-1.375-59.291Q-1.666-59.188-1.986-59.188\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 173.16)\">\u003Cpath d=\"M8.324-60.243L3.011-60.243Q2.933-60.250 2.884-60.299Q2.836-60.348 2.836-60.426Q2.836-60.496 2.883-60.547Q2.929-60.598 3.011-60.610L8.324-60.610Q8.398-60.598 8.445-60.547Q8.492-60.496 8.492-60.426Q8.492-60.348 8.443-60.299Q8.394-60.250 8.324-60.243M8.324-61.930L3.011-61.930Q2.933-61.938 2.884-61.987Q2.836-62.036 2.836-62.114Q2.836-62.184 2.883-62.235Q2.929-62.286 3.011-62.297L8.324-62.297Q8.398-62.286 8.445-62.235Q8.492-62.184 8.492-62.114Q8.492-62.036 8.443-61.987Q8.394-61.938 8.324-61.930\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(77.51 173.16)\">\u003Cpath d=\"M12.992-59.489L12.106-62.153L11.785-62.153Q11.586-62.176 11.535-62.395L11.535-62.481Q11.586-62.692 11.785-62.715L12.945-62.715Q13.141-62.696 13.191-62.481L13.191-62.395Q13.141-62.176 12.945-62.153L12.664-62.153L13.457-59.778L14.246-62.153L13.969-62.153Q13.770-62.176 13.719-62.395L13.719-62.481Q13.770-62.692 13.969-62.715L15.129-62.715Q15.324-62.692 15.375-62.481L15.375-62.395Q15.324-62.176 15.129-62.153L14.809-62.153L13.922-59.489Q13.879-59.375 13.777-59.301Q13.676-59.227 13.551-59.227L13.359-59.227Q13.242-59.227 13.139-59.299Q13.035-59.371 12.992-59.489M15.988-60.379Q15.988-60.825 16.402-61.082Q16.816-61.340 17.357-61.440Q17.898-61.539 18.406-61.547Q18.406-61.762 18.272-61.914Q18.137-62.067 17.930-62.143Q17.723-62.219 17.512-62.219Q17.168-62.219 17.008-62.196L17.008-62.137Q17.008-61.969 16.889-61.854Q16.770-61.739 16.606-61.739Q16.430-61.739 16.315-61.862Q16.199-61.985 16.199-62.153Q16.199-62.559 16.580-62.668Q16.961-62.778 17.520-62.778Q17.789-62.778 18.057-62.700Q18.324-62.621 18.549-62.471Q18.773-62.321 18.910-62.100Q19.047-61.879 19.047-61.602L19.047-59.883Q19.047-59.825 19.574-59.825Q19.770-59.805 19.820-59.594L19.820-59.504Q19.770-59.289 19.574-59.266L19.430-59.266Q19.086-59.266 18.857-59.313Q18.629-59.360 18.484-59.547Q18.023-59.227 17.316-59.227Q16.981-59.227 16.676-59.368Q16.371-59.508 16.180-59.770Q15.988-60.032 15.988-60.379M16.629-60.371Q16.629-60.098 16.871-59.942Q17.113-59.786 17.398-59.786Q17.617-59.786 17.850-59.844Q18.082-59.903 18.244-60.041Q18.406-60.180 18.406-60.403L18.406-60.993Q18.125-60.993 17.709-60.936Q17.293-60.879 16.961-60.741Q16.629-60.602 16.629-60.371M20.277-59.504L20.277-59.594Q20.328-59.801 20.523-59.825L21.629-59.825L21.629-63.594L20.523-63.594Q20.328-63.618 20.277-63.832L20.277-63.922Q20.328-64.129 20.523-64.153L22.020-64.153Q22.211-64.129 22.270-63.922L22.270-59.825L23.371-59.825Q23.570-59.801 23.621-59.594L23.621-59.504Q23.570-59.289 23.371-59.266L20.523-59.266Q20.328-59.289 20.277-59.504M24.258-59.504L24.258-59.594Q24.297-59.801 24.508-59.825L24.816-59.825L24.816-63.594L24.508-63.594Q24.297-63.618 24.258-63.832L24.258-63.922Q24.297-64.129 24.508-64.153L26.457-64.153Q26.856-64.153 27.201-63.952Q27.547-63.750 27.754-63.405Q27.961-63.059 27.961-62.657Q27.961-62.250 27.756-61.907Q27.551-61.563 27.205-61.358Q26.859-61.153 26.457-61.153L25.457-61.153L25.457-59.825L25.770-59.825Q25.981-59.801 26.020-59.594L26.020-59.504Q25.981-59.289 25.770-59.266L24.508-59.266Q24.297-59.289 24.258-59.504M25.457-63.594L25.457-61.715L26.297-61.715Q26.559-61.715 26.795-61.838Q27.031-61.961 27.176-62.176Q27.320-62.391 27.320-62.657Q27.320-62.926 27.176-63.137Q27.031-63.348 26.795-63.471Q26.559-63.594 26.297-63.594\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">Signal flow for subq %rdx,%rbx through SEQ. The live values on the key wires: Fetch yields icode 6:1 and rA:rB 2:3; Decode reads valA,valB; the ALU subtracts and sets CC; Write-back stores valE into %rbx; PC takes valP.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:497.840px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 373.380 91.826\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg transform=\"translate(-30.845 1.711)\">\u003Cpath d=\"M-24.798-60.559L-24.798-62.132Q-24.798-62.159-24.773-62.185Q-24.747-62.210-24.720-62.210L-24.607-62.210Q-24.579-62.210-24.556-62.183Q-24.532-62.156-24.532-62.132Q-24.532-61.787-24.400-61.523Q-24.268-61.260-24.039-61.091Q-23.810-60.922-23.508-60.841Q-23.205-60.761-22.864-60.761Q-22.597-60.761-22.361-60.889Q-22.125-61.017-21.980-61.240Q-21.835-61.462-21.835-61.728Q-21.835-61.951-21.941-62.147Q-22.047-62.344-22.228-62.479Q-22.409-62.614-22.635-62.665L-23.663-62.897Q-23.974-62.969-24.234-63.155Q-24.494-63.342-24.646-63.613Q-24.798-63.885-24.798-64.200Q-24.798-64.586-24.585-64.893Q-24.371-65.201-24.024-65.372Q-23.677-65.543-23.298-65.543Q-23.069-65.543-22.840-65.490Q-22.611-65.437-22.412-65.329Q-22.214-65.222-22.060-65.058L-21.766-65.498Q-21.743-65.543-21.702-65.543L-21.654-65.543Q-21.623-65.543-21.601-65.517Q-21.579-65.492-21.579-65.464L-21.579-63.889Q-21.579-63.868-21.602-63.841Q-21.626-63.813-21.654-63.813L-21.766-63.813Q-21.828-63.813-21.842-63.889Q-21.883-64.302-22.064-64.622Q-22.245-64.941-22.556-65.116Q-22.867-65.290-23.298-65.290Q-23.547-65.290-23.787-65.179Q-24.026-65.068-24.176-64.870Q-24.327-64.671-24.327-64.408Q-24.327-64.196-24.219-64.015Q-24.111-63.834-23.935-63.714Q-23.759-63.595-23.551-63.554L-22.522-63.325Q-22.204-63.253-21.937-63.048Q-21.671-62.843-21.519-62.549Q-21.367-62.255-21.367-61.923Q-21.367-61.530-21.572-61.195Q-21.777-60.860-22.122-60.671Q-22.467-60.481-22.864-60.481Q-23.284-60.481-23.663-60.594Q-24.043-60.706-24.313-60.956L-24.607-60.522Q-24.634-60.481-24.672-60.481L-24.720-60.481Q-24.747-60.481-24.773-60.506Q-24.798-60.532-24.798-60.559M-16.089-60.621L-20.492-60.621L-20.492-60.901Q-19.770-60.901-19.770-61.110L-19.770-64.911Q-19.770-65.122-20.492-65.122L-20.492-65.403L-16.202-65.403L-15.994-63.766L-16.257-63.766Q-16.315-64.237-16.417-64.502Q-16.520-64.767-16.704-64.900Q-16.889-65.034-17.161-65.078Q-17.433-65.122-17.932-65.122L-18.714-65.122Q-18.902-65.122-18.991-65.088Q-19.080-65.054-19.080-64.911L-19.080-63.246L-18.506-63.246Q-18.116-63.246-17.933-63.297Q-17.750-63.349-17.668-63.521Q-17.586-63.694-17.586-64.066L-17.323-64.066L-17.323-62.145L-17.586-62.145Q-17.586-62.518-17.668-62.691Q-17.750-62.863-17.933-62.914Q-18.116-62.966-18.506-62.966L-19.080-62.966L-19.080-61.110Q-19.080-60.970-18.991-60.935Q-18.902-60.901-18.714-60.901L-17.867-60.901Q-17.337-60.901-17.027-60.970Q-16.718-61.038-16.530-61.205Q-16.342-61.373-16.235-61.675Q-16.127-61.978-16.041-62.491L-15.775-62.491L-16.089-60.621M-12.435-60.481Q-12.948-60.481-13.416-60.674Q-13.885-60.867-14.244-61.209Q-14.602-61.551-14.808-62.012Q-15.013-62.474-15.013-62.986Q-15.013-63.673-14.664-64.263Q-14.315-64.852-13.721-65.198Q-13.126-65.543-12.435-65.543Q-11.745-65.543-11.150-65.198Q-10.556-64.852-10.207-64.263Q-9.858-63.673-9.858-62.986Q-9.858-62.621-9.969-62.268Q-10.080-61.916-10.289-61.607Q-10.497-61.298-10.781-61.065Q-11.065-60.833-11.420-60.683Q-11.335-60.508-11.237-60.365Q-11.140-60.221-11.010-60.131Q-10.880-60.040-10.706-60.040Q-10.436-60.040-10.224-60.207Q-10.012-60.375-10.012-60.635Q-9.988-60.720-9.916-60.720Q-9.869-60.720-9.843-60.689Q-9.817-60.659-9.817-60.607Q-9.817-60.300-9.915-59.990Q-10.012-59.681-10.222-59.473Q-10.433-59.264-10.754-59.264Q-11.154-59.264-11.342-59.538Q-11.530-59.811-11.653-60.293L-11.721-60.580Q-12.077-60.481-12.435-60.481M-12.863-61.096Q-12.863-60.929-12.736-60.831Q-12.610-60.734-12.435-60.734Q-12.097-60.734-11.800-60.860Q-11.892-61.144-12.032-61.306Q-12.172-61.469-12.435-61.469Q-12.603-61.469-12.733-61.363Q-12.863-61.257-12.863-61.096M-13.085-61.096Q-13.085-61.349-12.888-61.520Q-12.692-61.691-12.435-61.691Q-12.128-61.691-11.928-61.499Q-11.728-61.308-11.560-60.976Q-11.222-61.182-11.012-61.494Q-10.802-61.807-10.704-62.188Q-10.607-62.569-10.607-62.986Q-10.607-63.424-10.716-63.832Q-10.826-64.241-11.055-64.572Q-11.284-64.904-11.631-65.097Q-11.977-65.290-12.435-65.290Q-12.890-65.290-13.239-65.095Q-13.587-64.900-13.813-64.572Q-14.038-64.244-14.151-63.834Q-14.264-63.424-14.264-62.986Q-14.264-62.521-14.138-62.091Q-14.011-61.660-13.731-61.329Q-13.451-60.997-13.023-60.836Q-13.085-60.953-13.085-61.096\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-14.106-49.24h68.687v-22.762h-68.687Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(13.181 6.75)\">\u003Cpath d=\"M-10.076-71.082L-10.076-73.273L-10.779-73.273L-10.779-73.527Q-10.423-73.527-10.181-73.760Q-9.939-73.992-9.828-74.340Q-9.716-74.687-9.716-75.043L-9.435-75.043L-9.435-73.570L-8.259-73.570L-8.259-73.273L-9.435-73.273L-9.435-71.098Q-9.435-70.777-9.316-70.549Q-9.197-70.320-8.916-70.320Q-8.736-70.320-8.619-70.443Q-8.502-70.566-8.449-70.746Q-8.396-70.926-8.396-71.098L-8.396-71.570L-8.115-71.570L-8.115-71.082Q-8.115-70.828-8.220-70.588Q-8.326-70.348-8.523-70.195Q-8.720-70.043-8.978-70.043Q-9.294-70.043-9.546-70.166Q-9.798-70.289-9.937-70.523Q-10.076-70.758-10.076-71.082M-5.466-70.121L-7.322-70.121L-7.322-70.418Q-7.048-70.418-6.880-70.465Q-6.712-70.512-6.712-70.680L-6.712-74.840Q-6.712-75.055-6.775-75.150Q-6.837-75.246-6.957-75.267Q-7.076-75.289-7.322-75.289L-7.322-75.586L-6.099-75.672L-6.099-72.969Q-5.974-73.180-5.787-73.330Q-5.599-73.480-5.373-73.564Q-5.146-73.648-4.900-73.648Q-3.732-73.648-3.732-72.570L-3.732-70.680Q-3.732-70.512-3.562-70.465Q-3.392-70.418-3.123-70.418L-3.123-70.121L-4.978-70.121L-4.978-70.418Q-4.705-70.418-4.537-70.465Q-4.369-70.512-4.369-70.680L-4.369-72.555Q-4.369-72.937-4.490-73.166Q-4.611-73.394-4.962-73.394Q-5.275-73.394-5.529-73.232Q-5.783-73.070-5.929-72.801Q-6.076-72.531-6.076-72.234L-6.076-70.680Q-6.076-70.512-5.906-70.465Q-5.736-70.418-5.466-70.418L-5.466-70.121M-0.818-70.121L-2.595-70.121L-2.595-70.418Q-2.322-70.418-2.154-70.465Q-1.986-70.512-1.986-70.680L-1.986-72.816Q-1.986-73.031-2.043-73.127Q-2.099-73.223-2.212-73.244Q-2.326-73.266-2.572-73.266L-2.572-73.562L-1.373-73.648L-1.373-70.680Q-1.373-70.512-1.226-70.465Q-1.080-70.418-0.818-70.418L-0.818-70.121M-2.259-75.043Q-2.259-75.234-2.125-75.365Q-1.990-75.496-1.794-75.496Q-1.673-75.496-1.570-75.433Q-1.466-75.371-1.404-75.267Q-1.341-75.164-1.341-75.043Q-1.341-74.848-1.472-74.713Q-1.603-74.578-1.794-74.578Q-1.994-74.578-2.127-74.711Q-2.259-74.844-2.259-75.043M-0.275-70.129L-0.275-71.351Q-0.275-71.379-0.244-71.410Q-0.212-71.441-0.189-71.441L-0.084-71.441Q-0.013-71.441 0.002-71.379Q0.065-71.058 0.204-70.818Q0.342-70.578 0.575-70.437Q0.807-70.297 1.116-70.297Q1.354-70.297 1.563-70.357Q1.772-70.418 1.909-70.566Q2.045-70.715 2.045-70.961Q2.045-71.215 1.834-71.381Q1.623-71.547 1.354-71.601L0.733-71.715Q0.327-71.793 0.026-72.049Q-0.275-72.305-0.275-72.680Q-0.275-73.047-0.074-73.269Q0.127-73.492 0.452-73.590Q0.776-73.687 1.116-73.687Q1.581-73.687 1.877-73.480L2.100-73.664Q2.123-73.687 2.155-73.687L2.206-73.687Q2.237-73.687 2.264-73.660Q2.291-73.633 2.291-73.601L2.291-72.617Q2.291-72.586 2.266-72.557Q2.241-72.527 2.206-72.527L2.100-72.527Q2.065-72.527 2.038-72.555Q2.010-72.582 2.010-72.617Q2.010-73.016 1.758-73.236Q1.506-73.457 1.108-73.457Q0.752-73.457 0.469-73.334Q0.186-73.211 0.186-72.906Q0.186-72.687 0.387-72.555Q0.588-72.422 0.834-72.379L1.459-72.266Q1.889-72.176 2.198-71.879Q2.506-71.582 2.506-71.168Q2.506-70.598 2.108-70.320Q1.709-70.043 1.116-70.043Q0.565-70.043 0.213-70.379L-0.084-70.066Q-0.107-70.043-0.142-70.043L-0.189-70.043Q-0.212-70.043-0.244-70.074Q-0.275-70.105-0.275-70.129\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(13.181 6.75)\">\u003Cpath d=\"M7.734-70.121L5.956-70.121L5.956-70.418Q6.230-70.418 6.398-70.465Q6.566-70.512 6.566-70.680L6.566-72.816Q6.566-73.031 6.509-73.127Q6.452-73.223 6.339-73.244Q6.226-73.266 5.980-73.266L5.980-73.562L7.179-73.648L7.179-70.680Q7.179-70.512 7.325-70.465Q7.472-70.418 7.734-70.418L7.734-70.121M6.292-75.043Q6.292-75.234 6.427-75.365Q6.562-75.496 6.757-75.496Q6.878-75.496 6.982-75.433Q7.085-75.371 7.148-75.267Q7.210-75.164 7.210-75.043Q7.210-74.848 7.079-74.713Q6.949-74.578 6.757-74.578Q6.558-74.578 6.425-74.711Q6.292-74.844 6.292-75.043M10.163-70.121L8.308-70.121L8.308-70.418Q8.581-70.418 8.749-70.465Q8.917-70.512 8.917-70.680L8.917-72.816Q8.917-73.031 8.855-73.127Q8.792-73.223 8.673-73.244Q8.554-73.266 8.308-73.266L8.308-73.562L9.499-73.648L9.499-72.914Q9.613-73.129 9.806-73.297Q9.999-73.465 10.238-73.557Q10.476-73.648 10.730-73.648Q11.898-73.648 11.898-72.570L11.898-70.680Q11.898-70.512 12.068-70.465Q12.238-70.418 12.507-70.418L12.507-70.121L10.652-70.121L10.652-70.418Q10.925-70.418 11.093-70.465Q11.261-70.512 11.261-70.680L11.261-72.555Q11.261-72.937 11.140-73.166Q11.019-73.394 10.667-73.394Q10.355-73.394 10.101-73.232Q9.847-73.070 9.700-72.801Q9.554-72.531 9.554-72.234L9.554-70.680Q9.554-70.512 9.724-70.465Q9.894-70.418 10.163-70.418L10.163-70.121M12.995-70.129L12.995-71.351Q12.995-71.379 13.027-71.410Q13.058-71.441 13.081-71.441L13.187-71.441Q13.257-71.441 13.273-71.379Q13.335-71.058 13.474-70.818Q13.613-70.578 13.845-70.437Q14.077-70.297 14.386-70.297Q14.624-70.297 14.833-70.357Q15.042-70.418 15.179-70.566Q15.316-70.715 15.316-70.961Q15.316-71.215 15.105-71.381Q14.894-71.547 14.624-71.601L14.003-71.715Q13.597-71.793 13.296-72.049Q12.995-72.305 12.995-72.680Q12.995-73.047 13.197-73.269Q13.398-73.492 13.722-73.590Q14.046-73.687 14.386-73.687Q14.851-73.687 15.148-73.480L15.370-73.664Q15.394-73.687 15.425-73.687L15.476-73.687Q15.507-73.687 15.534-73.660Q15.562-73.633 15.562-73.601L15.562-72.617Q15.562-72.586 15.536-72.557Q15.511-72.527 15.476-72.527L15.370-72.527Q15.335-72.527 15.308-72.555Q15.281-72.582 15.281-72.617Q15.281-73.016 15.029-73.236Q14.777-73.457 14.378-73.457Q14.023-73.457 13.740-73.334Q13.456-73.211 13.456-72.906Q13.456-72.687 13.657-72.555Q13.859-72.422 14.105-72.379L14.730-72.266Q15.159-72.176 15.468-71.879Q15.777-71.582 15.777-71.168Q15.777-70.598 15.378-70.320Q14.980-70.043 14.386-70.043Q13.835-70.043 13.484-70.379L13.187-70.066Q13.163-70.043 13.128-70.043L13.081-70.043Q13.058-70.043 13.027-70.074Q12.995-70.105 12.995-70.129M16.929-71.082L16.929-73.273L16.226-73.273L16.226-73.527Q16.581-73.527 16.823-73.760Q17.066-73.992 17.177-74.340Q17.288-74.687 17.288-75.043L17.570-75.043L17.570-73.570L18.745-73.570L18.745-73.273L17.570-73.273L17.570-71.098Q17.570-70.777 17.689-70.549Q17.808-70.320 18.089-70.320Q18.269-70.320 18.386-70.443Q18.503-70.566 18.556-70.746Q18.609-70.926 18.609-71.098L18.609-71.570L18.890-71.570L18.890-71.082Q18.890-70.828 18.784-70.588Q18.679-70.348 18.482-70.195Q18.284-70.043 18.027-70.043Q17.710-70.043 17.458-70.166Q17.206-70.289 17.068-70.523Q16.929-70.758 16.929-71.082M21.616-70.121L19.636-70.121L19.636-70.418Q19.906-70.418 20.073-70.463Q20.241-70.508 20.241-70.680L20.241-72.816Q20.241-73.031 20.179-73.127Q20.116-73.223 19.999-73.244Q19.882-73.266 19.636-73.266L19.636-73.562L20.804-73.648L20.804-72.863Q20.882-73.074 21.034-73.260Q21.187-73.445 21.386-73.547Q21.585-73.648 21.812-73.648Q22.058-73.648 22.249-73.504Q22.441-73.359 22.441-73.129Q22.441-72.973 22.335-72.863Q22.230-72.754 22.073-72.754Q21.917-72.754 21.808-72.863Q21.698-72.973 21.698-73.129Q21.698-73.289 21.804-73.394Q21.480-73.394 21.265-73.166Q21.050-72.937 20.954-72.598Q20.859-72.258 20.859-71.953L20.859-70.680Q20.859-70.512 21.085-70.465Q21.312-70.418 21.616-70.418L21.616-70.121M23.402-70.586Q23.402-70.769 23.538-70.906Q23.675-71.043 23.866-71.043Q24.058-71.043 24.191-70.910Q24.323-70.777 24.323-70.586Q24.323-70.387 24.191-70.254Q24.058-70.121 23.866-70.121Q23.675-70.121 23.538-70.258Q23.402-70.394 23.402-70.586M23.402-73.113Q23.402-73.297 23.538-73.433Q23.675-73.570 23.866-73.570Q24.058-73.570 24.191-73.437Q24.323-73.305 24.323-73.113Q24.323-72.914 24.191-72.781Q24.058-72.648 23.866-72.648Q23.675-72.648 23.538-72.785Q23.402-72.922 23.402-73.113\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(13.181 6.75)\">\u003Cpath d=\"M-23.189-60.621L-24.967-60.621L-24.967-60.918Q-24.693-60.918-24.525-60.965Q-24.357-61.012-24.357-61.180L-24.357-63.316Q-24.357-63.531-24.414-63.627Q-24.471-63.723-24.584-63.744Q-24.697-63.766-24.943-63.766L-24.943-64.062L-23.744-64.148L-23.744-61.180Q-23.744-61.012-23.598-60.965Q-23.451-60.918-23.189-60.918L-23.189-60.621M-24.631-65.543Q-24.631-65.734-24.496-65.865Q-24.361-65.996-24.166-65.996Q-24.045-65.996-23.941-65.934Q-23.838-65.871-23.775-65.767Q-23.713-65.664-23.713-65.543Q-23.713-65.348-23.844-65.213Q-23.974-65.078-24.166-65.078Q-24.365-65.078-24.498-65.211Q-24.631-65.344-24.631-65.543M-22.646-62.348Q-22.646-62.844-22.396-63.269Q-22.146-63.695-21.726-63.941Q-21.307-64.187-20.807-64.187Q-20.267-64.187-19.877-64.062Q-19.486-63.937-19.486-63.523Q-19.486-63.418-19.537-63.326Q-19.588-63.234-19.680-63.184Q-19.771-63.133-19.881-63.133Q-19.986-63.133-20.078-63.184Q-20.170-63.234-20.221-63.326Q-20.271-63.418-20.271-63.523Q-20.271-63.746-20.103-63.851Q-20.326-63.910-20.799-63.910Q-21.096-63.910-21.310-63.771Q-21.525-63.633-21.656-63.402Q-21.787-63.172-21.846-62.902Q-21.904-62.633-21.904-62.348Q-21.904-61.953-21.771-61.603Q-21.639-61.254-21.367-61.037Q-21.096-60.820-20.697-60.820Q-20.322-60.820-20.047-61.037Q-19.771-61.254-19.670-61.613Q-19.654-61.676-19.592-61.676L-19.486-61.676Q-19.451-61.676-19.426-61.648Q-19.400-61.621-19.400-61.582L-19.400-61.559Q-19.533-61.078-19.918-60.810Q-20.303-60.543-20.807-60.543Q-21.170-60.543-21.504-60.680Q-21.838-60.816-22.098-61.066Q-22.357-61.316-22.502-61.652Q-22.646-61.988-22.646-62.348M-18.912-62.316Q-18.912-62.820-18.656-63.252Q-18.400-63.684-17.965-63.935Q-17.529-64.187-17.029-64.187Q-16.642-64.187-16.301-64.043Q-15.959-63.898-15.697-63.637Q-15.435-63.375-15.293-63.039Q-15.150-62.703-15.150-62.316Q-15.150-61.824-15.414-61.414Q-15.678-61.004-16.107-60.773Q-16.537-60.543-17.029-60.543Q-17.521-60.543-17.955-60.775Q-18.389-61.008-18.650-61.416Q-18.912-61.824-18.912-62.316M-17.029-60.820Q-16.572-60.820-16.320-61.043Q-16.068-61.266-15.980-61.617Q-15.892-61.969-15.892-62.414Q-15.892-62.844-15.986-63.182Q-16.080-63.519-16.334-63.726Q-16.588-63.934-17.029-63.934Q-17.678-63.934-17.922-63.517Q-18.166-63.101-18.166-62.414Q-18.166-61.969-18.078-61.617Q-17.990-61.266-17.738-61.043Q-17.486-60.820-17.029-60.820\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(13.181 6.75)\">\u003Cpath d=\"M-12.607-60.543Q-13.088-60.543-13.496-60.787Q-13.904-61.031-14.142-61.445Q-14.381-61.859-14.381-62.348Q-14.381-62.840-14.123-63.256Q-13.865-63.672-13.433-63.910Q-13.002-64.148-12.510-64.148Q-11.889-64.148-11.439-63.711L-11.439-65.340Q-11.439-65.555-11.502-65.650Q-11.564-65.746-11.682-65.767Q-11.799-65.789-12.045-65.789L-12.045-66.086L-10.822-66.172L-10.822-61.363Q-10.822-61.152-10.760-61.057Q-10.697-60.961-10.580-60.939Q-10.463-60.918-10.213-60.918L-10.213-60.621L-11.463-60.543L-11.463-61.027Q-11.928-60.543-12.607-60.543M-12.541-60.797Q-12.201-60.797-11.908-60.988Q-11.615-61.180-11.463-61.476L-11.463-63.309Q-11.611-63.582-11.873-63.738Q-12.135-63.894-12.447-63.894Q-13.072-63.894-13.355-63.447Q-13.639-63-13.639-62.340Q-13.639-61.695-13.387-61.246Q-13.135-60.797-12.541-60.797M-9.705-62.375Q-9.705-62.855-9.473-63.271Q-9.240-63.687-8.830-63.937Q-8.420-64.187-7.943-64.187Q-7.213-64.187-6.814-63.746Q-6.416-63.305-6.416-62.574Q-6.416-62.469-6.510-62.445L-8.959-62.445L-8.959-62.375Q-8.959-61.965-8.838-61.609Q-8.717-61.254-8.445-61.037Q-8.174-60.820-7.744-60.820Q-7.381-60.820-7.084-61.049Q-6.787-61.277-6.685-61.629Q-6.678-61.676-6.592-61.691L-6.510-61.691Q-6.416-61.664-6.416-61.582Q-6.416-61.574-6.424-61.543Q-6.486-61.316-6.625-61.133Q-6.764-60.949-6.955-60.816Q-7.146-60.684-7.365-60.613Q-7.584-60.543-7.822-60.543Q-8.193-60.543-8.531-60.680Q-8.869-60.816-9.137-61.068Q-9.404-61.320-9.555-61.660Q-9.705-62-9.705-62.375M-8.951-62.684L-6.990-62.684Q-6.990-62.988-7.092-63.279Q-7.193-63.570-7.410-63.752Q-7.627-63.934-7.943-63.934Q-8.244-63.934-8.475-63.746Q-8.705-63.559-8.828-63.267Q-8.951-62.976-8.951-62.684M-5.342-59.215Q-5.342-59.238-5.310-59.285Q-5.017-59.547-4.851-59.914Q-4.685-60.281-4.685-60.668L-4.685-60.726Q-4.814-60.621-4.982-60.621Q-5.174-60.621-5.310-60.754Q-5.447-60.887-5.447-61.086Q-5.447-61.277-5.310-61.410Q-5.174-61.543-4.982-61.543Q-4.682-61.543-4.557-61.273Q-4.432-61.004-4.432-60.668Q-4.432-60.219-4.613-59.805Q-4.795-59.391-5.135-59.094Q-5.158-59.070-5.197-59.070Q-5.244-59.070-5.293-59.115Q-5.342-59.160-5.342-59.215\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(13.181 6.75)\">\u003Cpath d=\"M1.072-60.652L-0.151-63.508Q-0.233-63.684-0.377-63.728Q-0.522-63.773-0.791-63.773L-0.791-64.070L0.920-64.070L0.920-63.773Q0.498-63.773 0.498-63.590Q0.498-63.555 0.513-63.508L1.459-61.316L2.299-63.293Q2.338-63.371 2.338-63.461Q2.338-63.601 2.232-63.687Q2.127-63.773 1.986-63.773L1.986-64.070L3.338-64.070L3.338-63.773Q2.814-63.773 2.599-63.293L1.474-60.652Q1.412-60.543 1.306-60.543L1.240-60.543Q1.127-60.543 1.072-60.652\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(13.181 6.75)\">\u003Cpath d=\"M3.383-61.453Q3.383-61.937 3.785-62.232Q4.188-62.527 4.738-62.646Q5.289-62.766 5.781-62.766L5.781-63.055Q5.781-63.281 5.666-63.488Q5.551-63.695 5.354-63.814Q5.156-63.934 4.926-63.934Q4.500-63.934 4.215-63.828Q4.285-63.801 4.332-63.746Q4.379-63.691 4.404-63.621Q4.430-63.551 4.430-63.476Q4.430-63.371 4.379-63.279Q4.328-63.187 4.236-63.137Q4.145-63.086 4.039-63.086Q3.934-63.086 3.842-63.137Q3.750-63.187 3.699-63.279Q3.649-63.371 3.649-63.476Q3.649-63.894 4.037-64.041Q4.426-64.187 4.926-64.187Q5.258-64.187 5.611-64.057Q5.965-63.926 6.193-63.672Q6.422-63.418 6.422-63.070L6.422-61.269Q6.422-61.137 6.494-61.027Q6.567-60.918 6.695-60.918Q6.820-60.918 6.889-61.023Q6.957-61.129 6.957-61.269L6.957-61.781L7.238-61.781L7.238-61.269Q7.238-61.066 7.121-60.908Q7.004-60.750 6.822-60.666Q6.641-60.582 6.438-60.582Q6.207-60.582 6.055-60.754Q5.902-60.926 5.871-61.156Q5.711-60.875 5.402-60.709Q5.094-60.543 4.742-60.543Q4.231-60.543 3.807-60.766Q3.383-60.988 3.383-61.453M4.070-61.453Q4.070-61.168 4.297-60.982Q4.524-60.797 4.817-60.797Q5.063-60.797 5.287-60.914Q5.512-61.031 5.647-61.234Q5.781-61.437 5.781-61.691L5.781-62.523Q5.516-62.523 5.231-62.469Q4.945-62.414 4.674-62.285Q4.402-62.156 4.236-61.949Q4.070-61.742 4.070-61.453M9.445-60.621L7.613-60.621L7.613-60.918Q7.887-60.918 8.055-60.965Q8.223-61.012 8.223-61.180L8.223-65.340Q8.223-65.555 8.160-65.650Q8.098-65.746 7.979-65.767Q7.860-65.789 7.613-65.789L7.613-66.086L8.836-66.172L8.836-61.180Q8.836-61.012 9.004-60.965Q9.172-60.918 9.445-60.918L9.445-60.621M10.125-63.355Q10.125-63.949 10.358-64.480Q10.590-65.012 11.006-65.412Q11.422-65.812 11.955-66.033Q12.488-66.254 13.094-66.254Q13.531-66.254 13.930-66.072Q14.328-65.891 14.637-65.559L15.110-66.223Q15.141-66.254 15.172-66.254L15.219-66.254Q15.246-66.254 15.277-66.223Q15.309-66.191 15.309-66.164L15.309-64.027Q15.309-64.004 15.277-63.973Q15.246-63.941 15.219-63.941L15.102-63.941Q15.074-63.941 15.043-63.973Q15.012-64.004 15.012-64.027Q15.012-64.293 14.869-64.646Q14.727-65 14.547-65.238Q14.293-65.570 13.943-65.764Q13.594-65.957 13.188-65.957Q12.684-65.957 12.231-65.738Q11.777-65.519 11.485-65.125Q10.988-64.457 10.988-63.355Q10.988-62.824 11.125-62.357Q11.262-61.891 11.537-61.525Q11.813-61.160 12.233-60.955Q12.652-60.750 13.195-60.750Q13.684-60.750 14.108-60.994Q14.531-61.238 14.779-61.658Q15.027-62.078 15.027-62.574Q15.027-62.609 15.057-62.635Q15.086-62.660 15.117-62.660L15.219-62.660Q15.262-62.660 15.285-62.631Q15.309-62.601 15.309-62.559Q15.309-62.121 15.133-61.732Q14.957-61.344 14.647-61.060Q14.336-60.777 13.926-60.615Q13.516-60.453 13.094-60.453Q12.504-60.453 11.963-60.674Q11.422-60.894 11.006-61.299Q10.590-61.703 10.358-62.232Q10.125-62.762 10.125-63.355M16.613-59.215Q16.613-59.238 16.645-59.285Q16.938-59.547 17.104-59.914Q17.270-60.281 17.270-60.668L17.270-60.726Q17.141-60.621 16.973-60.621Q16.781-60.621 16.645-60.754Q16.508-60.887 16.508-61.086Q16.508-61.277 16.645-61.410Q16.781-61.543 16.973-61.543Q17.274-61.543 17.399-61.273Q17.524-61.004 17.524-60.668Q17.524-60.219 17.342-59.805Q17.160-59.391 16.820-59.094Q16.797-59.070 16.758-59.070Q16.711-59.070 16.662-59.115Q16.613-59.160 16.613-59.215\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(13.181 6.75)\">\u003Cpath d=\"M23.030-60.652L21.807-63.508Q21.725-63.684 21.581-63.728Q21.436-63.773 21.167-63.773L21.167-64.070L22.878-64.070L22.878-63.773Q22.456-63.773 22.456-63.590Q22.456-63.555 22.471-63.508L23.417-61.316L24.257-63.293Q24.296-63.371 24.296-63.461Q24.296-63.601 24.190-63.687Q24.085-63.773 23.944-63.773L23.944-64.070L25.296-64.070L25.296-63.773Q24.772-63.773 24.557-63.293L23.432-60.652Q23.370-60.543 23.264-60.543L23.198-60.543Q23.085-60.543 23.030-60.652\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(13.181 6.75)\">\u003Cpath d=\"M25.341-61.453Q25.341-61.937 25.743-62.232Q26.146-62.527 26.696-62.646Q27.247-62.766 27.739-62.766L27.739-63.055Q27.739-63.281 27.624-63.488Q27.509-63.695 27.312-63.814Q27.114-63.934 26.884-63.934Q26.458-63.934 26.173-63.828Q26.243-63.801 26.290-63.746Q26.337-63.691 26.362-63.621Q26.388-63.551 26.388-63.476Q26.388-63.371 26.337-63.279Q26.286-63.187 26.194-63.137Q26.103-63.086 25.997-63.086Q25.892-63.086 25.800-63.137Q25.708-63.187 25.657-63.279Q25.607-63.371 25.607-63.476Q25.607-63.894 25.995-64.041Q26.384-64.187 26.884-64.187Q27.216-64.187 27.569-64.057Q27.923-63.926 28.151-63.672Q28.380-63.418 28.380-63.070L28.380-61.269Q28.380-61.137 28.452-61.027Q28.525-60.918 28.653-60.918Q28.778-60.918 28.847-61.023Q28.915-61.129 28.915-61.269L28.915-61.781L29.196-61.781L29.196-61.269Q29.196-61.066 29.079-60.908Q28.962-60.750 28.780-60.666Q28.599-60.582 28.396-60.582Q28.165-60.582 28.013-60.754Q27.860-60.926 27.829-61.156Q27.669-60.875 27.360-60.709Q27.052-60.543 26.700-60.543Q26.189-60.543 25.765-60.766Q25.341-60.988 25.341-61.453M26.028-61.453Q26.028-61.168 26.255-60.982Q26.482-60.797 26.775-60.797Q27.021-60.797 27.245-60.914Q27.470-61.031 27.605-61.234Q27.739-61.437 27.739-61.691L27.739-62.523Q27.474-62.523 27.189-62.469Q26.903-62.414 26.632-62.285Q26.360-62.156 26.194-61.949Q26.028-61.742 26.028-61.453M31.403-60.621L29.571-60.621L29.571-60.918Q29.845-60.918 30.013-60.965Q30.181-61.012 30.181-61.180L30.181-65.340Q30.181-65.555 30.118-65.650Q30.056-65.746 29.937-65.767Q29.817-65.789 29.571-65.789L29.571-66.086L30.794-66.172L30.794-61.180Q30.794-61.012 30.962-60.965Q31.130-60.918 31.403-60.918L31.403-60.621M33.907-60.621L31.985-60.621L31.985-60.918Q32.794-60.918 32.794-61.398L32.794-65.523Q32.794-65.695 32.552-65.742Q32.310-65.789 31.985-65.789L31.985-66.086L33.482-66.086Q33.591-66.086 33.650-65.973L35.497-61.430L37.337-65.973Q37.400-66.086 37.505-66.086L39.009-66.086L39.009-65.789Q38.689-65.789 38.446-65.742Q38.204-65.695 38.204-65.523L38.204-61.180Q38.204-61.012 38.446-60.965Q38.689-60.918 39.009-60.918L39.009-60.621L36.708-60.621L36.708-60.918Q37.513-60.918 37.513-61.180L37.513-65.773L35.466-60.734Q35.431-60.621 35.298-60.621Q35.157-60.621 35.122-60.734L33.099-65.711L33.099-61.398Q33.099-60.918 33.907-60.918\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M97.06-49.24h51.215v-22.762H97.06Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(133.258 6.706)\">\u003Cpath d=\"M-23.119-70.121L-24.974-70.121L-24.974-70.418Q-24.701-70.418-24.533-70.465Q-24.365-70.512-24.365-70.680L-24.365-72.816Q-24.365-73.031-24.428-73.127Q-24.490-73.223-24.609-73.244Q-24.728-73.266-24.974-73.266L-24.974-73.562L-23.783-73.648L-23.783-72.914Q-23.670-73.129-23.476-73.297Q-23.283-73.465-23.045-73.557Q-22.807-73.648-22.553-73.648Q-21.385-73.648-21.385-72.570L-21.385-70.680Q-21.385-70.512-21.215-70.465Q-21.045-70.418-20.775-70.418L-20.775-70.121L-22.631-70.121L-22.631-70.418Q-22.357-70.418-22.189-70.465Q-22.021-70.512-22.021-70.680L-22.021-72.555Q-22.021-72.937-22.142-73.166Q-22.264-73.394-22.615-73.394Q-22.928-73.394-23.182-73.232Q-23.435-73.070-23.582-72.801Q-23.728-72.531-23.728-72.234L-23.728-70.680Q-23.728-70.512-23.558-70.465Q-23.389-70.418-23.119-70.418L-23.119-70.121M-20.330-71.875Q-20.330-72.355-20.098-72.771Q-19.865-73.187-19.455-73.437Q-19.045-73.687-18.568-73.687Q-17.838-73.687-17.439-73.246Q-17.041-72.805-17.041-72.074Q-17.041-71.969-17.135-71.945L-19.584-71.945L-19.584-71.875Q-19.584-71.465-19.463-71.109Q-19.342-70.754-19.070-70.537Q-18.799-70.320-18.369-70.320Q-18.006-70.320-17.709-70.549Q-17.412-70.777-17.310-71.129Q-17.303-71.176-17.217-71.191L-17.135-71.191Q-17.041-71.164-17.041-71.082Q-17.041-71.074-17.049-71.043Q-17.111-70.816-17.250-70.633Q-17.389-70.449-17.580-70.316Q-17.771-70.183-17.990-70.113Q-18.209-70.043-18.447-70.043Q-18.818-70.043-19.156-70.180Q-19.494-70.316-19.762-70.568Q-20.029-70.820-20.180-71.160Q-20.330-71.500-20.330-71.875M-19.576-72.183L-17.615-72.183Q-17.615-72.488-17.717-72.779Q-17.818-73.070-18.035-73.252Q-18.252-73.433-18.568-73.433Q-18.869-73.433-19.099-73.246Q-19.330-73.058-19.453-72.767Q-19.576-72.476-19.576-72.183M-14.967-70.152L-16.037-73.008Q-16.103-73.187-16.234-73.230Q-16.365-73.273-16.623-73.273L-16.623-73.570L-14.943-73.570L-14.943-73.273Q-15.392-73.273-15.392-73.074Q-15.389-73.058-15.387-73.041Q-15.385-73.023-15.385-73.008L-14.592-70.914L-13.881-72.824Q-13.916-72.918-13.916-72.963Q-13.916-73.008-13.951-73.008Q-14.017-73.187-14.148-73.230Q-14.279-73.273-14.533-73.273L-14.533-73.570L-12.943-73.570L-12.943-73.273Q-13.392-73.273-13.392-73.074Q-13.389-73.055-13.387-73.037Q-13.385-73.019-13.385-73.008L-12.553-70.793L-11.799-72.793Q-11.775-72.851-11.775-72.922Q-11.775-73.082-11.912-73.178Q-12.049-73.273-12.217-73.273L-12.217-73.570L-10.830-73.570L-10.830-73.273Q-11.064-73.273-11.242-73.146Q-11.420-73.019-11.502-72.793L-12.486-70.152Q-12.541-70.043-12.654-70.043L-12.713-70.043Q-12.826-70.043-12.869-70.152L-13.728-72.426L-14.584-70.152Q-14.623-70.043-14.744-70.043L-14.799-70.043Q-14.912-70.043-14.967-70.152M-8.303-71.570L-10.557-71.570L-10.557-72.121L-8.303-72.121L-8.303-71.570M-5.088-70.121L-7.471-70.121L-7.471-70.418Q-7.146-70.418-6.904-70.465Q-6.662-70.512-6.662-70.680L-6.662-75.023Q-6.662-75.195-6.904-75.242Q-7.146-75.289-7.471-75.289L-7.471-75.586L-4.525-75.586Q-4.182-75.586-3.826-75.486Q-3.471-75.387-3.176-75.195Q-2.881-75.004-2.699-74.719Q-2.517-74.433-2.517-74.074Q-2.517-73.601-2.828-73.266Q-3.139-72.930-3.603-72.758Q-4.068-72.586-4.525-72.586L-5.892-72.586L-5.892-70.680Q-5.892-70.512-5.650-70.465Q-5.408-70.418-5.088-70.418L-5.088-70.121M-5.920-75.023L-5.920-72.855L-4.744-72.855Q-4.057-72.855-3.719-73.131Q-3.381-73.406-3.381-74.074Q-3.381-74.738-3.719-75.014Q-4.057-75.289-4.744-75.289L-5.517-75.289Q-5.736-75.289-5.828-75.246Q-5.920-75.203-5.920-75.023M-1.572-72.855Q-1.572-73.449-1.340-73.980Q-1.107-74.512-0.691-74.912Q-0.275-75.312 0.258-75.533Q0.791-75.754 1.397-75.754Q1.834-75.754 2.233-75.572Q2.631-75.391 2.940-75.058L3.412-75.723Q3.443-75.754 3.475-75.754L3.522-75.754Q3.549-75.754 3.580-75.723Q3.611-75.691 3.611-75.664L3.611-73.527Q3.611-73.504 3.580-73.473Q3.549-73.441 3.522-73.441L3.404-73.441Q3.377-73.441 3.346-73.473Q3.315-73.504 3.315-73.527Q3.315-73.793 3.172-74.146Q3.029-74.500 2.850-74.738Q2.596-75.070 2.246-75.264Q1.897-75.457 1.490-75.457Q0.986-75.457 0.533-75.238Q0.080-75.019-0.213-74.625Q-0.709-73.957-0.709-72.855Q-0.709-72.324-0.572-71.857Q-0.435-71.391-0.160-71.025Q0.115-70.660 0.535-70.455Q0.955-70.250 1.498-70.250Q1.986-70.250 2.410-70.494Q2.834-70.738 3.082-71.158Q3.330-71.578 3.330-72.074Q3.330-72.109 3.359-72.135Q3.389-72.160 3.420-72.160L3.522-72.160Q3.565-72.160 3.588-72.131Q3.611-72.101 3.611-72.058Q3.611-71.621 3.436-71.232Q3.260-70.844 2.949-70.560Q2.639-70.277 2.229-70.115Q1.818-69.953 1.397-69.953Q0.807-69.953 0.266-70.174Q-0.275-70.394-0.691-70.799Q-1.107-71.203-1.340-71.732Q-1.572-72.262-1.572-72.855\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(133.258 6.706)\">\u003Cpath d=\"M-16.939-60.621L-18.771-60.621L-18.771-60.918Q-18.497-60.918-18.329-60.965Q-18.161-61.012-18.161-61.180L-18.161-65.340Q-18.161-65.555-18.224-65.650Q-18.286-65.746-18.405-65.767Q-18.525-65.789-18.771-65.789L-18.771-66.086L-17.548-66.172L-17.548-61.180Q-17.548-61.012-17.380-60.965Q-17.212-60.918-16.939-60.918L-16.939-60.621M-16.493-62.316Q-16.493-62.820-16.237-63.252Q-15.982-63.684-15.546-63.935Q-15.111-64.187-14.611-64.187Q-14.224-64.187-13.882-64.043Q-13.540-63.898-13.279-63.637Q-13.017-63.375-12.874-63.039Q-12.732-62.703-12.732-62.316Q-12.732-61.824-12.995-61.414Q-13.259-61.004-13.689-60.773Q-14.118-60.543-14.611-60.543Q-15.103-60.543-15.536-60.775Q-15.970-61.008-16.232-61.416Q-16.493-61.824-16.493-62.316M-14.611-60.820Q-14.154-60.820-13.902-61.043Q-13.650-61.266-13.562-61.617Q-13.474-61.969-13.474-62.414Q-13.474-62.844-13.568-63.182Q-13.661-63.519-13.915-63.726Q-14.169-63.934-14.611-63.934Q-15.259-63.934-15.503-63.517Q-15.747-63.101-15.747-62.414Q-15.747-61.969-15.659-61.617Q-15.571-61.266-15.320-61.043Q-15.068-60.820-14.611-60.820M-12.247-60.012Q-12.247-60.293-12.036-60.504Q-11.825-60.715-11.540-60.805Q-11.696-60.930-11.775-61.119Q-11.853-61.309-11.853-61.508Q-11.853-61.863-11.622-62.156Q-11.989-62.496-11.989-62.965Q-11.989-63.316-11.786-63.586Q-11.583-63.855-11.263-64.002Q-10.943-64.148-10.599-64.148Q-10.079-64.148-9.708-63.867Q-9.345-64.238-8.798-64.238Q-8.618-64.238-8.491-64.111Q-8.364-63.984-8.364-63.805Q-8.364-63.699-8.443-63.621Q-8.521-63.543-8.630-63.543Q-8.739-63.543-8.816-63.619Q-8.892-63.695-8.892-63.805Q-8.892-63.906-8.853-63.957Q-8.845-63.965-8.841-63.971Q-8.837-63.976-8.837-63.980Q-9.212-63.980-9.532-63.726Q-9.212-63.387-9.212-62.965Q-9.212-62.695-9.329-62.478Q-9.446-62.262-9.652-62.103Q-9.857-61.945-10.099-61.863Q-10.341-61.781-10.599-61.781Q-10.818-61.781-11.030-61.840Q-11.243-61.898-11.439-62.019Q-11.532-61.879-11.532-61.699Q-11.532-61.492-11.396-61.340Q-11.259-61.187-11.052-61.187L-10.357-61.187Q-9.868-61.187-9.456-61.103Q-9.044-61.019-8.765-60.762Q-8.486-60.504-8.486-60.012Q-8.486-59.648-8.806-59.416Q-9.126-59.184-9.568-59.082Q-10.009-58.980-10.364-58.980Q-10.720-58.980-11.163-59.082Q-11.607-59.184-11.927-59.416Q-12.247-59.648-12.247-60.012M-11.743-60.012Q-11.743-59.816-11.599-59.668Q-11.454-59.519-11.241-59.430Q-11.029-59.340-10.788-59.293Q-10.548-59.246-10.364-59.246Q-10.122-59.246-9.792-59.324Q-9.462-59.402-9.226-59.576Q-8.989-59.750-8.989-60.012Q-8.989-60.418-9.400-60.527Q-9.810-60.637-10.372-60.637L-11.052-60.637Q-11.321-60.637-11.532-60.459Q-11.743-60.281-11.743-60.012M-10.599-62.047Q-9.876-62.047-9.876-62.965Q-9.876-63.887-10.599-63.887Q-11.325-63.887-11.325-62.965Q-11.325-62.047-10.599-62.047M-6.142-60.621L-7.919-60.621L-7.919-60.918Q-7.646-60.918-7.478-60.965Q-7.310-61.012-7.310-61.180L-7.310-63.316Q-7.310-63.531-7.366-63.627Q-7.423-63.723-7.536-63.744Q-7.650-63.766-7.896-63.766L-7.896-64.062L-6.696-64.148L-6.696-61.180Q-6.696-61.012-6.550-60.965Q-6.404-60.918-6.142-60.918L-6.142-60.621M-7.583-65.543Q-7.583-65.734-7.448-65.865Q-7.314-65.996-7.118-65.996Q-6.997-65.996-6.894-65.934Q-6.790-65.871-6.728-65.767Q-6.665-65.664-6.665-65.543Q-6.665-65.348-6.796-65.213Q-6.927-65.078-7.118-65.078Q-7.318-65.078-7.450-65.211Q-7.583-65.344-7.583-65.543M-5.599-62.348Q-5.599-62.844-5.349-63.269Q-5.099-63.695-4.679-63.941Q-4.259-64.187-3.759-64.187Q-3.220-64.187-2.829-64.062Q-2.439-63.937-2.439-63.523Q-2.439-63.418-2.489-63.326Q-2.540-63.234-2.632-63.184Q-2.724-63.133-2.833-63.133Q-2.939-63.133-3.030-63.184Q-3.122-63.234-3.173-63.326Q-3.224-63.418-3.224-63.523Q-3.224-63.746-3.056-63.851Q-3.279-63.910-3.751-63.910Q-4.048-63.910-4.263-63.771Q-4.478-63.633-4.609-63.402Q-4.739-63.172-4.798-62.902Q-4.857-62.633-4.857-62.348Q-4.857-61.953-4.724-61.603Q-4.591-61.254-4.320-61.037Q-4.048-60.820-3.650-60.820Q-3.275-60.820-2.999-61.037Q-2.724-61.254-2.622-61.613Q-2.607-61.676-2.544-61.676L-2.439-61.676Q-2.404-61.676-2.378-61.648Q-2.353-61.621-2.353-61.582L-2.353-61.559Q-2.486-61.078-2.870-60.810Q-3.255-60.543-3.759-60.543Q-4.122-60.543-4.456-60.680Q-4.790-60.816-5.050-61.066Q-5.310-61.316-5.454-61.652Q-5.599-61.988-5.599-62.348\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M188.109-49.24h39.833v-22.762H188.11Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(219.587 6.706)\">\u003Cpath d=\"M-14.788-70.121L-17.170-70.121L-17.170-70.418Q-16.846-70.418-16.604-70.465Q-16.362-70.512-16.362-70.680L-16.362-75.023Q-16.362-75.195-16.604-75.242Q-16.846-75.289-17.170-75.289L-17.170-75.586L-14.225-75.586Q-13.881-75.586-13.526-75.486Q-13.170-75.387-12.876-75.195Q-12.581-75.004-12.399-74.719Q-12.217-74.433-12.217-74.074Q-12.217-73.601-12.528-73.266Q-12.838-72.930-13.303-72.758Q-13.768-72.586-14.225-72.586L-15.592-72.586L-15.592-70.680Q-15.592-70.512-15.350-70.465Q-15.108-70.418-14.788-70.418L-14.788-70.121M-15.620-75.023L-15.620-72.855L-14.444-72.855Q-13.756-72.855-13.418-73.131Q-13.081-73.406-13.081-74.074Q-13.081-74.738-13.418-75.014Q-13.756-75.289-14.444-75.289L-15.217-75.289Q-15.436-75.289-15.528-75.246Q-15.620-75.203-15.620-75.023M-11.272-72.855Q-11.272-73.449-11.040-73.980Q-10.807-74.512-10.391-74.912Q-9.975-75.312-9.442-75.533Q-8.909-75.754-8.303-75.754Q-7.866-75.754-7.467-75.572Q-7.069-75.391-6.760-75.058L-6.288-75.723Q-6.256-75.754-6.225-75.754L-6.178-75.754Q-6.151-75.754-6.120-75.723Q-6.088-75.691-6.088-75.664L-6.088-73.527Q-6.088-73.504-6.120-73.473Q-6.151-73.441-6.178-73.441L-6.295-73.441Q-6.323-73.441-6.354-73.473Q-6.385-73.504-6.385-73.527Q-6.385-73.793-6.528-74.146Q-6.670-74.500-6.850-74.738Q-7.104-75.070-7.454-75.264Q-7.803-75.457-8.209-75.457Q-8.713-75.457-9.167-75.238Q-9.620-75.019-9.913-74.625Q-10.409-73.957-10.409-72.855Q-10.409-72.324-10.272-71.857Q-10.135-71.391-9.860-71.025Q-9.584-70.660-9.165-70.455Q-8.745-70.250-8.202-70.250Q-7.713-70.250-7.290-70.494Q-6.866-70.738-6.618-71.158Q-6.370-71.578-6.370-72.074Q-6.370-72.109-6.340-72.135Q-6.311-72.160-6.280-72.160L-6.178-72.160Q-6.135-72.160-6.112-72.131Q-6.088-72.101-6.088-72.058Q-6.088-71.621-6.264-71.232Q-6.440-70.844-6.751-70.560Q-7.061-70.277-7.471-70.115Q-7.881-69.953-8.303-69.953Q-8.893-69.953-9.434-70.174Q-9.975-70.394-10.391-70.799Q-10.807-71.203-11.040-71.732Q-11.272-72.262-11.272-72.855\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.587 6.706)\">\u003Cpath d=\"M-23.041-60.621L-25.021-60.621L-25.021-60.918Q-24.752-60.918-24.584-60.963Q-24.416-61.008-24.416-61.180L-24.416-63.316Q-24.416-63.531-24.478-63.627Q-24.541-63.723-24.658-63.744Q-24.775-63.766-25.021-63.766L-25.021-64.062L-23.853-64.148L-23.853-63.363Q-23.775-63.574-23.623-63.760Q-23.471-63.945-23.271-64.047Q-23.072-64.148-22.846-64.148Q-22.599-64.148-22.408-64.004Q-22.217-63.859-22.217-63.629Q-22.217-63.473-22.322-63.363Q-22.428-63.254-22.584-63.254Q-22.740-63.254-22.849-63.363Q-22.959-63.473-22.959-63.629Q-22.959-63.789-22.853-63.894Q-23.178-63.894-23.392-63.666Q-23.607-63.437-23.703-63.098Q-23.799-62.758-23.799-62.453L-23.799-61.180Q-23.799-61.012-23.572-60.965Q-23.346-60.918-23.041-60.918L-23.041-60.621M-21.736-62.375Q-21.736-62.855-21.504-63.271Q-21.271-63.687-20.861-63.937Q-20.451-64.187-19.974-64.187Q-19.244-64.187-18.846-63.746Q-18.447-63.305-18.447-62.574Q-18.447-62.469-18.541-62.445L-20.990-62.445L-20.990-62.375Q-20.990-61.965-20.869-61.609Q-20.748-61.254-20.476-61.037Q-20.205-60.820-19.775-60.820Q-19.412-60.820-19.115-61.049Q-18.818-61.277-18.717-61.629Q-18.709-61.676-18.623-61.691L-18.541-61.691Q-18.447-61.664-18.447-61.582Q-18.447-61.574-18.455-61.543Q-18.517-61.316-18.656-61.133Q-18.795-60.949-18.986-60.816Q-19.178-60.684-19.396-60.613Q-19.615-60.543-19.853-60.543Q-20.224-60.543-20.562-60.680Q-20.900-60.816-21.168-61.068Q-21.435-61.320-21.586-61.660Q-21.736-62-21.736-62.375M-20.982-62.684L-19.021-62.684Q-19.021-62.988-19.123-63.279Q-19.224-63.570-19.441-63.752Q-19.658-63.934-19.974-63.934Q-20.275-63.934-20.506-63.746Q-20.736-63.559-20.859-63.267Q-20.982-62.976-20.982-62.684M-17.959-60.012Q-17.959-60.293-17.748-60.504Q-17.537-60.715-17.252-60.805Q-17.408-60.930-17.486-61.119Q-17.564-61.309-17.564-61.508Q-17.564-61.863-17.334-62.156Q-17.701-62.496-17.701-62.965Q-17.701-63.316-17.498-63.586Q-17.295-63.855-16.974-64.002Q-16.654-64.148-16.310-64.148Q-15.791-64.148-15.420-63.867Q-15.057-64.238-14.510-64.238Q-14.330-64.238-14.203-64.111Q-14.076-63.984-14.076-63.805Q-14.076-63.699-14.154-63.621Q-14.232-63.543-14.342-63.543Q-14.451-63.543-14.527-63.619Q-14.603-63.695-14.603-63.805Q-14.603-63.906-14.564-63.957Q-14.557-63.965-14.553-63.971Q-14.549-63.976-14.549-63.980Q-14.924-63.980-15.244-63.726Q-14.924-63.387-14.924-62.965Q-14.924-62.695-15.041-62.478Q-15.158-62.262-15.363-62.103Q-15.568-61.945-15.810-61.863Q-16.053-61.781-16.310-61.781Q-16.529-61.781-16.742-61.840Q-16.955-61.898-17.150-62.019Q-17.244-61.879-17.244-61.699Q-17.244-61.492-17.107-61.340Q-16.971-61.187-16.764-61.187L-16.068-61.187Q-15.580-61.187-15.168-61.103Q-14.756-61.019-14.476-60.762Q-14.197-60.504-14.197-60.012Q-14.197-59.648-14.517-59.416Q-14.838-59.184-15.279-59.082Q-15.721-58.980-16.076-58.980Q-16.432-58.980-16.875-59.082Q-17.318-59.184-17.639-59.416Q-17.959-59.648-17.959-60.012M-17.455-60.012Q-17.455-59.816-17.310-59.668Q-17.166-59.519-16.953-59.430Q-16.740-59.340-16.500-59.293Q-16.260-59.246-16.076-59.246Q-15.834-59.246-15.504-59.324Q-15.174-59.402-14.937-59.576Q-14.701-59.750-14.701-60.012Q-14.701-60.418-15.111-60.527Q-15.521-60.637-16.084-60.637L-16.764-60.637Q-17.033-60.637-17.244-60.459Q-17.455-60.281-17.455-60.012M-16.310-62.047Q-15.588-62.047-15.588-62.965Q-15.588-63.887-16.310-63.887Q-17.037-63.887-17.037-62.965Q-17.037-62.047-16.310-62.047M-11.853-60.621L-13.631-60.621L-13.631-60.918Q-13.357-60.918-13.189-60.965Q-13.021-61.012-13.021-61.180L-13.021-63.316Q-13.021-63.531-13.078-63.627Q-13.135-63.723-13.248-63.744Q-13.361-63.766-13.607-63.766L-13.607-64.062L-12.408-64.148L-12.408-61.180Q-12.408-61.012-12.262-60.965Q-12.115-60.918-11.853-60.918L-11.853-60.621M-13.295-65.543Q-13.295-65.734-13.160-65.865Q-13.025-65.996-12.830-65.996Q-12.709-65.996-12.605-65.934Q-12.502-65.871-12.439-65.767Q-12.377-65.664-12.377-65.543Q-12.377-65.348-12.508-65.213Q-12.639-65.078-12.830-65.078Q-13.029-65.078-13.162-65.211Q-13.295-65.344-13.295-65.543M-11.310-60.629L-11.310-61.851Q-11.310-61.879-11.279-61.910Q-11.248-61.941-11.224-61.941L-11.119-61.941Q-11.049-61.941-11.033-61.879Q-10.971-61.559-10.832-61.318Q-10.693-61.078-10.461-60.937Q-10.228-60.797-9.920-60.797Q-9.682-60.797-9.473-60.857Q-9.264-60.918-9.127-61.066Q-8.990-61.215-8.990-61.461Q-8.990-61.715-9.201-61.881Q-9.412-62.047-9.682-62.101L-10.303-62.215Q-10.709-62.293-11.010-62.549Q-11.310-62.805-11.310-63.180Q-11.310-63.547-11.109-63.769Q-10.908-63.992-10.584-64.090Q-10.260-64.187-9.920-64.187Q-9.455-64.187-9.158-63.980L-8.935-64.164Q-8.912-64.187-8.881-64.187L-8.830-64.187Q-8.799-64.187-8.771-64.160Q-8.744-64.133-8.744-64.101L-8.744-63.117Q-8.744-63.086-8.769-63.057Q-8.795-63.027-8.830-63.027L-8.935-63.027Q-8.971-63.027-8.998-63.055Q-9.025-63.082-9.025-63.117Q-9.025-63.516-9.277-63.736Q-9.529-63.957-9.928-63.957Q-10.283-63.957-10.566-63.834Q-10.849-63.711-10.849-63.406Q-10.849-63.187-10.648-63.055Q-10.447-62.922-10.201-62.879L-9.576-62.766Q-9.146-62.676-8.838-62.379Q-8.529-62.082-8.529-61.668Q-8.529-61.098-8.928-60.820Q-9.326-60.543-9.920-60.543Q-10.471-60.543-10.822-60.879L-11.119-60.566Q-11.142-60.543-11.178-60.543L-11.224-60.543Q-11.248-60.543-11.279-60.574Q-11.310-60.605-11.310-60.629M-7.377-61.582L-7.377-63.773L-8.080-63.773L-8.080-64.027Q-7.724-64.027-7.482-64.260Q-7.240-64.492-7.129-64.840Q-7.017-65.187-7.017-65.543L-6.736-65.543L-6.736-64.070L-5.560-64.070L-5.560-63.773L-6.736-63.773L-6.736-61.598Q-6.736-61.277-6.617-61.049Q-6.498-60.820-6.217-60.820Q-6.037-60.820-5.920-60.943Q-5.803-61.066-5.750-61.246Q-5.697-61.426-5.697-61.598L-5.697-62.070L-5.416-62.070L-5.416-61.582Q-5.416-61.328-5.521-61.088Q-5.627-60.848-5.824-60.695Q-6.021-60.543-6.279-60.543Q-6.596-60.543-6.848-60.666Q-7.099-60.789-7.238-61.023Q-7.377-61.258-7.377-61.582M-4.697-62.375Q-4.697-62.855-4.465-63.271Q-4.232-63.687-3.822-63.937Q-3.412-64.187-2.935-64.187Q-2.205-64.187-1.807-63.746Q-1.408-63.305-1.408-62.574Q-1.408-62.469-1.502-62.445L-3.951-62.445L-3.951-62.375Q-3.951-61.965-3.830-61.609Q-3.709-61.254-3.437-61.037Q-3.166-60.820-2.736-60.820Q-2.373-60.820-2.076-61.049Q-1.779-61.277-1.678-61.629Q-1.670-61.676-1.584-61.691L-1.502-61.691Q-1.408-61.664-1.408-61.582Q-1.408-61.574-1.416-61.543Q-1.478-61.316-1.617-61.133Q-1.756-60.949-1.947-60.816Q-2.139-60.684-2.357-60.613Q-2.576-60.543-2.814-60.543Q-3.185-60.543-3.523-60.680Q-3.861-60.816-4.129-61.068Q-4.396-61.320-4.547-61.660Q-4.697-62-4.697-62.375M-3.943-62.684L-1.982-62.684Q-1.982-62.988-2.084-63.279Q-2.185-63.570-2.402-63.752Q-2.619-63.934-2.935-63.934Q-3.236-63.934-3.467-63.746Q-3.697-63.559-3.820-63.267Q-3.943-62.976-3.943-62.684M1.088-60.621L-0.892-60.621L-0.892-60.918Q-0.623-60.918-0.455-60.963Q-0.287-61.008-0.287-61.180L-0.287-63.316Q-0.287-63.531-0.349-63.627Q-0.412-63.723-0.529-63.744Q-0.646-63.766-0.892-63.766L-0.892-64.062L0.276-64.148L0.276-63.363Q0.354-63.574 0.506-63.760Q0.658-63.945 0.858-64.047Q1.057-64.148 1.283-64.148Q1.529-64.148 1.721-64.004Q1.912-63.859 1.912-63.629Q1.912-63.473 1.807-63.363Q1.701-63.254 1.545-63.254Q1.389-63.254 1.279-63.363Q1.170-63.473 1.170-63.629Q1.170-63.789 1.276-63.894Q0.951-63.894 0.736-63.666Q0.522-63.437 0.426-63.098Q0.330-62.758 0.330-62.453L0.330-61.180Q0.330-61.012 0.557-60.965Q0.783-60.918 1.088-60.918\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M54.781-60.62H94.86\"\u002F>\u003Cpath stroke=\"none\" d=\"m96.86-60.62-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cpath fill=\"none\" d=\"M148.475-60.62h37.434\"\u002F>\u003Cpath stroke=\"none\" d=\"m187.909-60.62-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg transform=\"translate(181.097 -3.533)\">\u003Cpath d=\"M-23.291-60.621L-24.925-60.621L-24.925-60.901Q-24.696-60.901-24.547-60.935Q-24.398-60.970-24.398-61.110L-24.398-62.959Q-24.398-63.229-24.506-63.290Q-24.614-63.352-24.925-63.352L-24.925-63.632L-23.865-63.707L-23.865-63.058Q-23.694-63.366-23.390-63.537Q-23.086-63.707-22.741-63.707Q-22.235-63.707-21.951-63.484Q-21.667-63.260-21.667-62.764L-21.667-61.110Q-21.667-60.973-21.519-60.937Q-21.370-60.901-21.144-60.901L-21.144-60.621L-22.775-60.621L-22.775-60.901Q-22.546-60.901-22.397-60.935Q-22.248-60.970-22.248-61.110L-22.248-62.750Q-22.248-63.085-22.368-63.285Q-22.488-63.485-22.802-63.485Q-23.072-63.485-23.306-63.349Q-23.540-63.212-23.679-62.978Q-23.817-62.744-23.817-62.470L-23.817-61.110Q-23.817-60.973-23.667-60.937Q-23.516-60.901-23.291-60.901L-23.291-60.621M-20.598-62.156Q-20.598-62.477-20.473-62.766Q-20.348-63.055-20.122-63.278Q-19.897-63.502-19.601-63.622Q-19.306-63.742-18.988-63.742Q-18.660-63.742-18.398-63.642Q-18.137-63.543-17.961-63.361Q-17.785-63.178-17.691-62.920Q-17.597-62.662-17.597-62.330Q-17.597-62.238-17.679-62.217L-19.934-62.217L-19.934-62.156Q-19.934-61.568-19.651-61.185Q-19.367-60.802-18.800-60.802Q-18.478-60.802-18.210-60.995Q-17.942-61.188-17.853-61.503Q-17.846-61.544-17.771-61.558L-17.679-61.558Q-17.597-61.534-17.597-61.462Q-17.597-61.455-17.603-61.428Q-17.716-61.031-18.087-60.792Q-18.458-60.553-18.882-60.553Q-19.319-60.553-19.719-60.761Q-20.119-60.970-20.358-61.337Q-20.598-61.704-20.598-62.156M-19.928-62.426L-18.113-62.426Q-18.113-62.703-18.210-62.955Q-18.308-63.208-18.506-63.364Q-18.704-63.519-18.988-63.519Q-19.265-63.519-19.478-63.361Q-19.692-63.202-19.810-62.947Q-19.928-62.692-19.928-62.426M-15.621-60.648L-16.602-63.147Q-16.663-63.290-16.781-63.325Q-16.899-63.359-17.115-63.359L-17.115-63.639L-15.635-63.639L-15.635-63.359Q-16.014-63.359-16.014-63.198Q-16.014-63.188-16-63.147L-15.286-61.315L-14.613-63.020Q-14.643-63.092-14.643-63.120Q-14.643-63.147-14.671-63.147Q-14.732-63.294-14.850-63.326Q-14.968-63.359-15.180-63.359L-15.180-63.639L-13.782-63.639L-13.782-63.359Q-14.158-63.359-14.158-63.198Q-14.158-63.167-14.151-63.147L-13.396-61.209L-12.709-62.959Q-12.688-63.010-12.688-63.065Q-12.688-63.205-12.801-63.282Q-12.914-63.359-13.054-63.359L-13.054-63.639L-11.834-63.639L-11.834-63.359Q-12.039-63.359-12.194-63.253Q-12.350-63.147-12.422-62.959L-13.328-60.648Q-13.362-60.553-13.474-60.553L-13.543-60.553Q-13.652-60.553-13.690-60.648L-14.473-62.651L-15.259-60.648Q-15.293-60.553-15.406-60.553L-15.474-60.553Q-15.583-60.553-15.621-60.648M-9.093-60.621L-11.225-60.621L-11.225-60.901Q-10.504-60.901-10.504-61.110L-10.504-64.911Q-10.504-65.122-11.225-65.122L-11.225-65.403L-8.559-65.403Q-8.149-65.403-7.729-65.249Q-7.308-65.095-7.025-64.791Q-6.741-64.487-6.741-64.073Q-6.741-63.755-6.909-63.509Q-7.076-63.263-7.353-63.097Q-7.630-62.932-7.951-62.848Q-8.272-62.764-8.559-62.764L-9.814-62.764L-9.814-61.110Q-9.814-60.901-9.093-60.901L-9.093-60.621M-9.841-64.911L-9.841-63.014L-8.754-63.014Q-8.146-63.014-7.831-63.251Q-7.517-63.489-7.517-64.073Q-7.517-64.466-7.662-64.700Q-7.808-64.934-8.079-65.028Q-8.351-65.122-8.754-65.122L-9.475-65.122Q-9.663-65.122-9.752-65.088Q-9.841-65.054-9.841-64.911M-5.760-63.014Q-5.760-63.540-5.543-64.008Q-5.326-64.476-4.943-64.822Q-4.560-65.167-4.077-65.355Q-3.593-65.543-3.063-65.543Q-2.660-65.543-2.296-65.386Q-1.932-65.228-1.648-64.934L-1.224-65.516Q-1.190-65.543-1.166-65.543L-1.119-65.543Q-1.088-65.543-1.064-65.519Q-1.040-65.495-1.040-65.464L-1.040-63.601Q-1.040-63.578-1.066-63.552Q-1.091-63.526-1.119-63.526L-1.245-63.526Q-1.307-63.526-1.320-63.601Q-1.351-63.916-1.486-64.220Q-1.621-64.524-1.836-64.758Q-2.052-64.993-2.340-65.128Q-2.629-65.263-2.957-65.263Q-3.600-65.263-4.058-64.969Q-4.516-64.675-4.748-64.162Q-4.981-63.649-4.981-63.014Q-4.981-62.542-4.851-62.133Q-4.721-61.725-4.461-61.412Q-4.202-61.100-3.822-60.930Q-3.443-60.761-2.951-60.761Q-2.622-60.761-2.329-60.877Q-2.035-60.994-1.800-61.209Q-1.566-61.424-1.436-61.713Q-1.307-62.002-1.307-62.330Q-1.307-62.357-1.279-62.381Q-1.252-62.405-1.231-62.405L-1.119-62.405Q-1.081-62.405-1.060-62.380Q-1.040-62.354-1.040-62.316Q-1.040-61.920-1.206-61.583Q-1.371-61.246-1.659-60.999Q-1.946-60.751-2.315-60.616Q-2.684-60.481-3.063-60.481Q-3.583-60.481-4.075-60.671Q-4.567-60.860-4.947-61.204Q-5.326-61.547-5.543-62.016Q-5.760-62.484-5.760-63.014\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(265.298 1.75)\">\u003Cpath d=\"M-22.843-58.871Q-23.393-59.271-23.764-59.826Q-24.135-60.382-24.316-61.028Q-24.497-61.674-24.497-62.371Q-24.497-62.884-24.397-63.379Q-24.296-63.875-24.091-64.326Q-23.886-64.777-23.573-65.169Q-23.260-65.560-22.843-65.864Q-22.833-65.868-22.826-65.869Q-22.819-65.871-22.809-65.871L-22.741-65.871Q-22.706-65.871-22.684-65.847Q-22.662-65.823-22.662-65.786Q-22.662-65.741-22.689-65.724Q-23.038-65.423-23.291-65.039Q-23.544-64.654-23.696-64.213Q-23.848-63.772-23.920-63.316Q-23.992-62.860-23.992-62.371Q-23.992-61.370-23.682-60.483Q-23.373-59.596-22.689-59.011Q-22.662-58.994-22.662-58.950Q-22.662-58.912-22.684-58.888Q-22.706-58.864-22.741-58.864L-22.809-58.864Q-22.816-58.868-22.824-58.869Q-22.833-58.871-22.843-58.871M-21.893-62.156Q-21.893-62.477-21.768-62.766Q-21.643-63.055-21.418-63.278Q-21.192-63.502-20.897-63.622Q-20.601-63.742-20.283-63.742Q-19.955-63.742-19.693-63.642Q-19.432-63.543-19.256-63.361Q-19.080-63.178-18.986-62.920Q-18.892-62.662-18.892-62.330Q-18.892-62.238-18.974-62.217L-21.230-62.217L-21.230-62.156Q-21.230-61.568-20.946-61.185Q-20.662-60.802-20.095-60.802Q-19.774-60.802-19.506-60.995Q-19.237-61.188-19.148-61.503Q-19.141-61.544-19.066-61.558L-18.974-61.558Q-18.892-61.534-18.892-61.462Q-18.892-61.455-18.899-61.428Q-19.012-61.031-19.382-60.792Q-19.753-60.553-20.177-60.553Q-20.615-60.553-21.015-60.761Q-21.414-60.970-21.654-61.337Q-21.893-61.704-21.893-62.156M-21.223-62.426L-19.408-62.426Q-19.408-62.703-19.506-62.955Q-19.603-63.208-19.801-63.364Q-19.999-63.519-20.283-63.519Q-20.560-63.519-20.774-63.361Q-20.987-63.202-21.105-62.947Q-21.223-62.692-21.223-62.426M-16.622-60.621L-18.256-60.621L-18.256-60.901Q-18.027-60.901-17.879-60.935Q-17.730-60.970-17.730-61.110L-17.730-62.959Q-17.730-63.229-17.838-63.290Q-17.945-63.352-18.256-63.352L-18.256-63.632L-17.197-63.707L-17.197-63.058Q-17.026-63.366-16.722-63.537Q-16.417-63.707-16.072-63.707Q-15.566-63.707-15.283-63.484Q-14.999-63.260-14.999-62.764L-14.999-61.110Q-14.999-60.973-14.850-60.937Q-14.702-60.901-14.476-60.901L-14.476-60.621L-16.106-60.621L-16.106-60.901Q-15.877-60.901-15.729-60.935Q-15.580-60.970-15.580-61.110L-15.580-62.750Q-15.580-63.085-15.700-63.285Q-15.819-63.485-16.134-63.485Q-16.404-63.485-16.638-63.349Q-16.872-63.212-17.010-62.978Q-17.149-62.744-17.149-62.470L-17.149-61.110Q-17.149-60.973-16.998-60.937Q-16.848-60.901-16.622-60.901L-16.622-60.621M-13.888-62.132Q-13.888-62.470-13.748-62.761Q-13.608-63.051-13.363-63.265Q-13.119-63.478-12.815-63.593Q-12.511-63.707-12.186-63.707Q-11.916-63.707-11.653-63.608Q-11.390-63.509-11.198-63.331L-11.198-64.729Q-11.198-64.999-11.306-65.061Q-11.413-65.122-11.724-65.122L-11.724-65.403L-10.648-65.478L-10.648-61.294Q-10.648-61.106-10.593-61.023Q-10.538-60.939-10.438-60.920Q-10.337-60.901-10.121-60.901L-10.121-60.621L-11.229-60.553L-11.229-60.970Q-11.646-60.553-12.271-60.553Q-12.702-60.553-13.075-60.765Q-13.447-60.976-13.668-61.337Q-13.888-61.698-13.888-62.132M-12.213-60.775Q-12.005-60.775-11.818-60.847Q-11.632-60.918-11.478-61.055Q-11.325-61.192-11.229-61.370L-11.229-62.979Q-11.314-63.126-11.460-63.246Q-11.605-63.366-11.774-63.425Q-11.943-63.485-12.124-63.485Q-12.685-63.485-12.953-63.096Q-13.222-62.706-13.222-62.125Q-13.222-61.554-12.987-61.164Q-12.753-60.775-12.213-60.775\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(265.298 1.75)\">\u003Cpath d=\"M-6.806-62.104Q-6.806-62.446-6.671-62.745Q-6.536-63.044-6.296-63.268Q-6.057-63.492-5.739-63.617Q-5.421-63.742-5.090-63.742Q-4.645-63.742-4.246-63.526Q-3.846-63.311-3.611-62.933Q-3.377-62.556-3.377-62.104Q-3.377-61.763-3.519-61.479Q-3.661-61.195-3.905-60.988Q-4.150-60.782-4.459-60.667Q-4.768-60.553-5.090-60.553Q-5.520-60.553-5.922-60.754Q-6.324-60.956-6.565-61.308Q-6.806-61.660-6.806-62.104M-5.090-60.802Q-4.488-60.802-4.264-61.180Q-4.040-61.558-4.040-62.190Q-4.040-62.802-4.275-63.161Q-4.509-63.519-5.090-63.519Q-6.142-63.519-6.142-62.190Q-6.142-61.558-5.917-61.180Q-5.691-60.802-5.090-60.802M-0.985-60.621L-2.718-60.621L-2.718-60.901Q-2.492-60.901-2.343-60.935Q-2.195-60.970-2.195-61.110L-2.195-63.359L-2.783-63.359L-2.783-63.639L-2.195-63.639L-2.195-64.456Q-2.195-64.774-2.017-65.022Q-1.839-65.269-1.549-65.410Q-1.258-65.550-0.947-65.550Q-0.691-65.550-0.487-65.408Q-0.284-65.266-0.284-65.023Q-0.284-64.887-0.383-64.788Q-0.482-64.688-0.619-64.688Q-0.756-64.688-0.855-64.788Q-0.954-64.887-0.954-65.023Q-0.954-65.204-0.814-65.297Q-0.892-65.324-0.992-65.324Q-1.200-65.324-1.354-65.191Q-1.508-65.058-1.588-64.854Q-1.668-64.651-1.668-64.442L-1.668-63.639L-0.780-63.639L-0.780-63.359L-1.641-63.359L-1.641-61.110Q-1.641-60.901-0.985-60.901\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(265.298 1.75)\">\u003Cpath d=\"M2.395-62.132Q2.395-62.460 2.530-62.761Q2.665-63.061 2.901-63.282Q3.137-63.502 3.441-63.622Q3.746-63.742 4.070-63.742Q4.576-63.742 4.925-63.639Q5.273-63.537 5.273-63.161Q5.273-63.014 5.176-62.913Q5.079-62.812 4.932-62.812Q4.778-62.812 4.679-62.911Q4.580-63.010 4.580-63.161Q4.580-63.349 4.720-63.441Q4.518-63.492 4.077-63.492Q3.722-63.492 3.493-63.296Q3.264-63.099 3.163-62.790Q3.062-62.480 3.062-62.132Q3.062-61.783 3.188-61.477Q3.315-61.171 3.570-60.987Q3.824-60.802 4.180-60.802Q4.402-60.802 4.586-60.886Q4.771-60.970 4.906-61.125Q5.041-61.281 5.099-61.489Q5.113-61.544 5.167-61.544L5.280-61.544Q5.311-61.544 5.333-61.520Q5.355-61.496 5.355-61.462L5.355-61.441Q5.270-61.154 5.082-60.956Q4.894-60.758 4.629-60.655Q4.364-60.553 4.070-60.553Q3.640-60.553 3.252-60.759Q2.864-60.966 2.630-61.329Q2.395-61.691 2.395-62.132M6.278-59.486Q6.408-59.418 6.545-59.418Q6.716-59.418 6.866-59.507Q7.017-59.596 7.128-59.741Q7.239-59.886 7.317-60.054L7.581-60.621L6.412-63.147Q6.336-63.294 6.206-63.326Q6.077-63.359 5.844-63.359L5.844-63.639L7.365-63.639L7.365-63.359Q7.017-63.359 7.017-63.212Q7.020-63.191 7.022-63.174Q7.023-63.157 7.023-63.147L7.881-61.288L8.654-62.959Q8.688-63.027 8.688-63.106Q8.688-63.219 8.604-63.289Q8.520-63.359 8.408-63.359L8.408-63.639L9.604-63.639L9.604-63.359Q9.385-63.359 9.213-63.255Q9.040-63.150 8.948-62.959L7.611-60.054Q7.440-59.684 7.170-59.438Q6.900-59.192 6.545-59.192Q6.275-59.192 6.056-59.358Q5.837-59.524 5.837-59.787Q5.837-59.924 5.930-60.013Q6.022-60.101 6.162-60.101Q6.299-60.101 6.388-60.013Q6.477-59.924 6.477-59.787Q6.477-59.684 6.424-59.606Q6.371-59.527 6.278-59.486M10.144-62.132Q10.144-62.460 10.279-62.761Q10.414-63.061 10.650-63.282Q10.886-63.502 11.190-63.622Q11.494-63.742 11.819-63.742Q12.325-63.742 12.673-63.639Q13.022-63.537 13.022-63.161Q13.022-63.014 12.925-62.913Q12.827-62.812 12.680-62.812Q12.526-62.812 12.427-62.911Q12.328-63.010 12.328-63.161Q12.328-63.349 12.468-63.441Q12.267-63.492 11.826-63.492Q11.470-63.492 11.241-63.296Q11.012-63.099 10.911-62.790Q10.810-62.480 10.810-62.132Q10.810-61.783 10.937-61.477Q11.063-61.171 11.318-60.987Q11.573-60.802 11.928-60.802Q12.150-60.802 12.335-60.886Q12.519-60.970 12.654-61.125Q12.789-61.281 12.848-61.489Q12.861-61.544 12.916-61.544L13.029-61.544Q13.060-61.544 13.082-61.520Q13.104-61.496 13.104-61.462L13.104-61.441Q13.018-61.154 12.831-60.956Q12.643-60.758 12.378-60.655Q12.113-60.553 11.819-60.553Q11.388-60.553 11-60.759Q10.612-60.966 10.378-61.329Q10.144-61.691 10.144-62.132M15.360-60.621L13.757-60.621L13.757-60.901Q13.982-60.901 14.131-60.935Q14.280-60.970 14.280-61.110L14.280-64.729Q14.280-64.999 14.172-65.061Q14.064-65.122 13.757-65.122L13.757-65.403L14.833-65.478L14.833-61.110Q14.833-60.973 14.984-60.937Q15.134-60.901 15.360-60.901L15.360-60.621M15.914-62.156Q15.914-62.477 16.038-62.766Q16.163-63.055 16.389-63.278Q16.614-63.502 16.910-63.622Q17.206-63.742 17.523-63.742Q17.852-63.742 18.113-63.642Q18.374-63.543 18.550-63.361Q18.727-63.178 18.821-62.920Q18.914-62.662 18.914-62.330Q18.914-62.238 18.832-62.217L16.577-62.217L16.577-62.156Q16.577-61.568 16.860-61.185Q17.144-60.802 17.711-60.802Q18.033-60.802 18.301-60.995Q18.569-61.188 18.658-61.503Q18.665-61.544 18.740-61.558L18.832-61.558Q18.914-61.534 18.914-61.462Q18.914-61.455 18.908-61.428Q18.795-61.031 18.424-60.792Q18.053-60.553 17.629-60.553Q17.192-60.553 16.792-60.761Q16.392-60.970 16.153-61.337Q15.914-61.704 15.914-62.156M16.583-62.426L18.398-62.426Q18.398-62.703 18.301-62.955Q18.204-63.208 18.005-63.364Q17.807-63.519 17.523-63.519Q17.247-63.519 17.033-63.361Q16.819-63.202 16.701-62.947Q16.583-62.692 16.583-62.426M19.824-58.864L19.755-58.864Q19.721-58.864 19.699-58.890Q19.677-58.915 19.677-58.950Q19.677-58.994 19.707-59.011Q20.063-59.315 20.312-59.705Q20.562-60.095 20.714-60.527Q20.866-60.959 20.936-61.428Q21.006-61.896 21.006-62.371Q21.006-62.850 20.936-63.316Q20.866-63.783 20.712-64.218Q20.559-64.654 20.307-65.042Q20.056-65.430 19.707-65.724Q19.677-65.741 19.677-65.786Q19.677-65.820 19.699-65.845Q19.721-65.871 19.755-65.871L19.824-65.871Q19.834-65.871 19.842-65.869Q19.851-65.868 19.861-65.864Q20.405-65.464 20.777-64.911Q21.150-64.357 21.331-63.711Q21.512-63.065 21.512-62.371Q21.512-61.670 21.331-61.023Q21.150-60.375 20.776-59.821Q20.401-59.267 19.861-58.871Q19.851-58.871 19.842-58.869Q19.834-58.868 19.824-58.864\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-36.983 64.307)\">\u003Cpath d=\"M-24.798-60.559L-24.798-62.132Q-24.798-62.159-24.773-62.185Q-24.747-62.210-24.720-62.210L-24.607-62.210Q-24.579-62.210-24.556-62.183Q-24.532-62.156-24.532-62.132Q-24.532-61.787-24.400-61.523Q-24.268-61.260-24.039-61.091Q-23.810-60.922-23.508-60.841Q-23.205-60.761-22.864-60.761Q-22.597-60.761-22.361-60.889Q-22.125-61.017-21.980-61.240Q-21.835-61.462-21.835-61.728Q-21.835-61.951-21.941-62.147Q-22.047-62.344-22.228-62.479Q-22.409-62.614-22.635-62.665L-23.663-62.897Q-23.974-62.969-24.234-63.155Q-24.494-63.342-24.646-63.613Q-24.798-63.885-24.798-64.200Q-24.798-64.586-24.585-64.893Q-24.371-65.201-24.024-65.372Q-23.677-65.543-23.298-65.543Q-23.069-65.543-22.840-65.490Q-22.611-65.437-22.412-65.329Q-22.214-65.222-22.060-65.058L-21.766-65.498Q-21.743-65.543-21.702-65.543L-21.654-65.543Q-21.623-65.543-21.601-65.517Q-21.579-65.492-21.579-65.464L-21.579-63.889Q-21.579-63.868-21.602-63.841Q-21.626-63.813-21.654-63.813L-21.766-63.813Q-21.828-63.813-21.842-63.889Q-21.883-64.302-22.064-64.622Q-22.245-64.941-22.556-65.116Q-22.867-65.290-23.298-65.290Q-23.547-65.290-23.787-65.179Q-24.026-65.068-24.176-64.870Q-24.327-64.671-24.327-64.408Q-24.327-64.196-24.219-64.015Q-24.111-63.834-23.935-63.714Q-23.759-63.595-23.551-63.554L-22.522-63.325Q-22.204-63.253-21.937-63.048Q-21.671-62.843-21.519-62.549Q-21.367-62.255-21.367-61.923Q-21.367-61.530-21.572-61.195Q-21.777-60.860-22.122-60.671Q-22.467-60.481-22.864-60.481Q-23.284-60.481-23.663-60.594Q-24.043-60.706-24.313-60.956L-24.607-60.522Q-24.634-60.481-24.672-60.481L-24.720-60.481Q-24.747-60.481-24.773-60.506Q-24.798-60.532-24.798-60.559M-16.089-60.621L-20.492-60.621L-20.492-60.901Q-19.770-60.901-19.770-61.110L-19.770-64.911Q-19.770-65.122-20.492-65.122L-20.492-65.403L-16.202-65.403L-15.994-63.766L-16.257-63.766Q-16.315-64.237-16.417-64.502Q-16.520-64.767-16.704-64.900Q-16.889-65.034-17.161-65.078Q-17.433-65.122-17.932-65.122L-18.714-65.122Q-18.902-65.122-18.991-65.088Q-19.080-65.054-19.080-64.911L-19.080-63.246L-18.506-63.246Q-18.116-63.246-17.933-63.297Q-17.750-63.349-17.668-63.521Q-17.586-63.694-17.586-64.066L-17.323-64.066L-17.323-62.145L-17.586-62.145Q-17.586-62.518-17.668-62.691Q-17.750-62.863-17.933-62.914Q-18.116-62.966-18.506-62.966L-19.080-62.966L-19.080-61.110Q-19.080-60.970-18.991-60.935Q-18.902-60.901-18.714-60.901L-17.867-60.901Q-17.337-60.901-17.027-60.970Q-16.718-61.038-16.530-61.205Q-16.342-61.373-16.235-61.675Q-16.127-61.978-16.041-62.491L-15.775-62.491L-16.089-60.621M-12.435-60.481Q-12.948-60.481-13.416-60.674Q-13.885-60.867-14.244-61.209Q-14.602-61.551-14.808-62.012Q-15.013-62.474-15.013-62.986Q-15.013-63.673-14.664-64.263Q-14.315-64.852-13.721-65.198Q-13.126-65.543-12.435-65.543Q-11.745-65.543-11.150-65.198Q-10.556-64.852-10.207-64.263Q-9.858-63.673-9.858-62.986Q-9.858-62.621-9.969-62.268Q-10.080-61.916-10.289-61.607Q-10.497-61.298-10.781-61.065Q-11.065-60.833-11.420-60.683Q-11.335-60.508-11.237-60.365Q-11.140-60.221-11.010-60.131Q-10.880-60.040-10.706-60.040Q-10.436-60.040-10.224-60.207Q-10.012-60.375-10.012-60.635Q-9.988-60.720-9.916-60.720Q-9.869-60.720-9.843-60.689Q-9.817-60.659-9.817-60.607Q-9.817-60.300-9.915-59.990Q-10.012-59.681-10.222-59.473Q-10.433-59.264-10.754-59.264Q-11.154-59.264-11.342-59.538Q-11.530-59.811-11.653-60.293L-11.721-60.580Q-12.077-60.481-12.435-60.481M-12.863-61.096Q-12.863-60.929-12.736-60.831Q-12.610-60.734-12.435-60.734Q-12.097-60.734-11.800-60.860Q-11.892-61.144-12.032-61.306Q-12.172-61.469-12.435-61.469Q-12.603-61.469-12.733-61.363Q-12.863-61.257-12.863-61.096M-13.085-61.096Q-13.085-61.349-12.888-61.520Q-12.692-61.691-12.435-61.691Q-12.128-61.691-11.928-61.499Q-11.728-61.308-11.560-60.976Q-11.222-61.182-11.012-61.494Q-10.802-61.807-10.704-62.188Q-10.607-62.569-10.607-62.986Q-10.607-63.424-10.716-63.832Q-10.826-64.241-11.055-64.572Q-11.284-64.904-11.631-65.097Q-11.977-65.290-12.435-65.290Q-12.890-65.290-13.239-65.095Q-13.587-64.900-13.813-64.572Q-14.038-64.244-14.151-63.834Q-14.264-63.424-14.264-62.986Q-14.264-62.521-14.138-62.091Q-14.011-61.660-13.731-61.329Q-13.451-60.997-13.023-60.836Q-13.085-60.953-13.085-61.096M-6.464-59.941L-6.464-62.197L-8.713-62.197Q-8.782-62.207-8.828-62.253Q-8.874-62.299-8.874-62.371Q-8.874-62.515-8.713-62.538L-6.464-62.538L-6.464-64.794Q-6.454-64.863-6.408-64.909Q-6.362-64.955-6.290-64.955Q-6.146-64.955-6.122-64.794L-6.122-62.538L-3.880-62.538Q-3.720-62.515-3.720-62.371Q-3.720-62.299-3.766-62.253Q-3.812-62.207-3.880-62.197L-6.122-62.197L-6.122-59.941Q-6.146-59.780-6.290-59.780Q-6.362-59.780-6.408-59.826Q-6.454-59.872-6.464-59.941\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-14.338 13.356h69.151V-9.406h-69.15Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(12.95 69.346)\">\u003Cpath d=\"M-12.433-70.129L-12.433-71.351Q-12.433-71.379-12.402-71.410Q-12.370-71.441-12.347-71.441L-12.241-71.441Q-12.171-71.441-12.155-71.379Q-12.093-71.058-11.954-70.818Q-11.816-70.578-11.583-70.437Q-11.351-70.297-11.042-70.297Q-10.804-70.297-10.595-70.357Q-10.386-70.418-10.249-70.566Q-10.112-70.715-10.112-70.961Q-10.112-71.215-10.323-71.381Q-10.534-71.547-10.804-71.601L-11.425-71.715Q-11.831-71.793-12.132-72.049Q-12.433-72.305-12.433-72.680Q-12.433-73.047-12.232-73.269Q-12.030-73.492-11.706-73.590Q-11.382-73.687-11.042-73.687Q-10.577-73.687-10.280-73.480L-10.058-73.664Q-10.034-73.687-10.003-73.687L-9.952-73.687Q-9.921-73.687-9.894-73.660Q-9.866-73.633-9.866-73.601L-9.866-72.617Q-9.866-72.586-9.892-72.557Q-9.917-72.527-9.952-72.527L-10.058-72.527Q-10.093-72.527-10.120-72.555Q-10.148-72.582-10.148-72.617Q-10.148-73.016-10.400-73.236Q-10.652-73.457-11.050-73.457Q-11.405-73.457-11.689-73.334Q-11.972-73.211-11.972-72.906Q-11.972-72.687-11.771-72.555Q-11.569-72.422-11.323-72.379L-10.698-72.266Q-10.269-72.176-9.960-71.879Q-9.652-71.582-9.652-71.168Q-9.652-70.598-10.050-70.320Q-10.448-70.043-11.042-70.043Q-11.593-70.043-11.944-70.379L-12.241-70.066Q-12.265-70.043-12.300-70.043L-12.347-70.043Q-12.370-70.043-12.402-70.074Q-12.433-70.105-12.433-70.129M-9.027-70.953Q-9.027-71.437-8.624-71.732Q-8.222-72.027-7.671-72.146Q-7.120-72.266-6.628-72.266L-6.628-72.555Q-6.628-72.781-6.743-72.988Q-6.859-73.195-7.056-73.314Q-7.253-73.433-7.484-73.433Q-7.909-73.433-8.194-73.328Q-8.124-73.301-8.077-73.246Q-8.030-73.191-8.005-73.121Q-7.980-73.051-7.980-72.976Q-7.980-72.871-8.030-72.779Q-8.081-72.687-8.173-72.637Q-8.265-72.586-8.370-72.586Q-8.476-72.586-8.568-72.637Q-8.659-72.687-8.710-72.779Q-8.761-72.871-8.761-72.976Q-8.761-73.394-8.372-73.541Q-7.984-73.687-7.484-73.687Q-7.152-73.687-6.798-73.557Q-6.444-73.426-6.216-73.172Q-5.987-72.918-5.987-72.570L-5.987-70.769Q-5.987-70.637-5.915-70.527Q-5.843-70.418-5.714-70.418Q-5.589-70.418-5.521-70.523Q-5.452-70.629-5.452-70.769L-5.452-71.281L-5.171-71.281L-5.171-70.769Q-5.171-70.566-5.288-70.408Q-5.405-70.250-5.587-70.166Q-5.769-70.082-5.972-70.082Q-6.202-70.082-6.355-70.254Q-6.507-70.426-6.538-70.656Q-6.698-70.375-7.007-70.209Q-7.316-70.043-7.667-70.043Q-8.179-70.043-8.603-70.266Q-9.027-70.488-9.027-70.953M-8.339-70.953Q-8.339-70.668-8.112-70.482Q-7.886-70.297-7.593-70.297Q-7.347-70.297-7.122-70.414Q-6.898-70.531-6.763-70.734Q-6.628-70.937-6.628-71.191L-6.628-72.023Q-6.894-72.023-7.179-71.969Q-7.464-71.914-7.735-71.785Q-8.007-71.656-8.173-71.449Q-8.339-71.242-8.339-70.953\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.95 69.346)\">\u003Cpath d=\"M-3.308-70.152L-4.531-73.008Q-4.613-73.183-4.757-73.228Q-4.902-73.273-5.171-73.273L-5.171-73.570L-3.460-73.570L-3.460-73.273Q-3.882-73.273-3.882-73.090Q-3.882-73.055-3.867-73.008L-2.921-70.816L-2.081-72.793Q-2.042-72.871-2.042-72.961Q-2.042-73.101-2.148-73.187Q-2.253-73.273-2.394-73.273L-2.394-73.570L-1.042-73.570L-1.042-73.273Q-1.566-73.273-1.781-72.793L-2.906-70.152Q-2.968-70.043-3.074-70.043L-3.140-70.043Q-3.253-70.043-3.308-70.152\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.95 69.346)\">\u003Cpath d=\"M-0.859-71.875Q-0.859-72.355-0.626-72.771Q-0.394-73.187 0.016-73.437Q0.426-73.687 0.903-73.687Q1.633-73.687 2.032-73.246Q2.430-72.805 2.430-72.074Q2.430-71.969 2.337-71.945L-0.113-71.945L-0.113-71.875Q-0.113-71.465 0.008-71.109Q0.130-70.754 0.401-70.537Q0.673-70.320 1.102-70.320Q1.466-70.320 1.762-70.549Q2.059-70.777 2.161-71.129Q2.169-71.176 2.255-71.191L2.337-71.191Q2.430-71.164 2.430-71.082Q2.430-71.074 2.423-71.043Q2.360-70.816 2.221-70.633Q2.083-70.449 1.891-70.316Q1.700-70.183 1.481-70.113Q1.262-70.043 1.024-70.043Q0.653-70.043 0.315-70.180Q-0.023-70.316-0.290-70.568Q-0.558-70.820-0.708-71.160Q-0.859-71.500-0.859-71.875M-0.105-72.183L1.856-72.183Q1.856-72.488 1.755-72.779Q1.653-73.070 1.436-73.252Q1.219-73.433 0.903-73.433Q0.602-73.433 0.372-73.246Q0.141-73.058 0.018-72.767Q-0.105-72.476-0.105-72.183M4.735-70.043Q4.255-70.043 3.846-70.287Q3.438-70.531 3.200-70.945Q2.962-71.359 2.962-71.848Q2.962-72.340 3.219-72.756Q3.477-73.172 3.909-73.410Q4.341-73.648 4.833-73.648Q5.454-73.648 5.903-73.211L5.903-74.840Q5.903-75.055 5.841-75.150Q5.778-75.246 5.661-75.267Q5.544-75.289 5.298-75.289L5.298-75.586L6.520-75.672L6.520-70.863Q6.520-70.652 6.583-70.557Q6.645-70.461 6.762-70.439Q6.880-70.418 7.130-70.418L7.130-70.121L5.880-70.043L5.880-70.527Q5.415-70.043 4.735-70.043M4.801-70.297Q5.141-70.297 5.434-70.488Q5.727-70.680 5.880-70.976L5.880-72.808Q5.731-73.082 5.469-73.238Q5.208-73.394 4.895-73.394Q4.270-73.394 3.987-72.947Q3.704-72.500 3.704-71.840Q3.704-71.195 3.956-70.746Q4.208-70.297 4.801-70.297\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.95 69.346)\">\u003Cpath d=\"M12.482-70.121L10.502-70.121L10.502-70.418Q10.771-70.418 10.939-70.463Q11.107-70.508 11.107-70.680L11.107-72.816Q11.107-73.031 11.045-73.127Q10.982-73.223 10.865-73.244Q10.748-73.266 10.502-73.266L10.502-73.562L11.670-73.648L11.670-72.863Q11.748-73.074 11.900-73.260Q12.052-73.445 12.252-73.547Q12.451-73.648 12.677-73.648Q12.924-73.648 13.115-73.504Q13.306-73.359 13.306-73.129Q13.306-72.973 13.201-72.863Q13.095-72.754 12.939-72.754Q12.783-72.754 12.674-72.863Q12.564-72.973 12.564-73.129Q12.564-73.289 12.670-73.394Q12.345-73.394 12.131-73.166Q11.916-72.937 11.820-72.598Q11.724-72.258 11.724-71.953L11.724-70.680Q11.724-70.512 11.951-70.465Q12.177-70.418 12.482-70.418L12.482-70.121M13.787-71.875Q13.787-72.355 14.019-72.771Q14.252-73.187 14.662-73.437Q15.072-73.687 15.549-73.687Q16.279-73.687 16.677-73.246Q17.076-72.805 17.076-72.074Q17.076-71.969 16.982-71.945L14.533-71.945L14.533-71.875Q14.533-71.465 14.654-71.109Q14.775-70.754 15.047-70.537Q15.318-70.320 15.748-70.320Q16.111-70.320 16.408-70.549Q16.705-70.777 16.806-71.129Q16.814-71.176 16.900-71.191L16.982-71.191Q17.076-71.164 17.076-71.082Q17.076-71.074 17.068-71.043Q17.006-70.816 16.867-70.633Q16.728-70.449 16.537-70.316Q16.345-70.183 16.127-70.113Q15.908-70.043 15.670-70.043Q15.299-70.043 14.961-70.180Q14.623-70.316 14.355-70.568Q14.088-70.820 13.937-71.160Q13.787-71.500 13.787-71.875M14.541-72.183L16.502-72.183Q16.502-72.488 16.400-72.779Q16.299-73.070 16.082-73.252Q15.865-73.433 15.549-73.433Q15.248-73.433 15.017-73.246Q14.787-73.058 14.664-72.767Q14.541-72.476 14.541-72.183M17.564-69.512Q17.564-69.793 17.775-70.004Q17.986-70.215 18.271-70.305Q18.115-70.430 18.037-70.619Q17.959-70.808 17.959-71.008Q17.959-71.363 18.189-71.656Q17.822-71.996 17.822-72.465Q17.822-72.816 18.025-73.086Q18.228-73.355 18.549-73.502Q18.869-73.648 19.213-73.648Q19.732-73.648 20.103-73.367Q20.466-73.738 21.013-73.738Q21.193-73.738 21.320-73.611Q21.447-73.484 21.447-73.305Q21.447-73.199 21.369-73.121Q21.291-73.043 21.181-73.043Q21.072-73.043 20.996-73.119Q20.920-73.195 20.920-73.305Q20.920-73.406 20.959-73.457Q20.966-73.465 20.970-73.471Q20.974-73.476 20.974-73.480Q20.599-73.480 20.279-73.226Q20.599-72.887 20.599-72.465Q20.599-72.195 20.482-71.978Q20.365-71.762 20.160-71.603Q19.955-71.445 19.713-71.363Q19.470-71.281 19.213-71.281Q18.994-71.281 18.781-71.340Q18.568-71.398 18.373-71.519Q18.279-71.379 18.279-71.199Q18.279-70.992 18.416-70.840Q18.552-70.687 18.759-70.687L19.455-70.687Q19.943-70.687 20.355-70.603Q20.767-70.519 21.047-70.262Q21.326-70.004 21.326-69.512Q21.326-69.148 21.006-68.916Q20.685-68.683 20.244-68.582Q19.802-68.480 19.447-68.480Q19.091-68.480 18.648-68.582Q18.205-68.683 17.884-68.916Q17.564-69.148 17.564-69.512M18.068-69.512Q18.068-69.316 18.213-69.168Q18.357-69.019 18.570-68.930Q18.783-68.840 19.023-68.793Q19.263-68.746 19.447-68.746Q19.689-68.746 20.019-68.824Q20.349-68.902 20.586-69.076Q20.822-69.250 20.822-69.512Q20.822-69.918 20.412-70.027Q20.002-70.137 19.439-70.137L18.759-70.137Q18.490-70.137 18.279-69.959Q18.068-69.781 18.068-69.512M19.213-71.547Q19.935-71.547 19.935-72.465Q19.935-73.387 19.213-73.387Q18.486-73.387 18.486-72.465Q18.486-71.547 19.213-71.547M21.853-70.129L21.853-71.351Q21.853-71.379 21.884-71.410Q21.916-71.441 21.939-71.441L22.045-71.441Q22.115-71.441 22.131-71.379Q22.193-71.058 22.332-70.818Q22.470-70.578 22.703-70.437Q22.935-70.297 23.244-70.297Q23.482-70.297 23.691-70.357Q23.900-70.418 24.037-70.566Q24.174-70.715 24.174-70.961Q24.174-71.215 23.963-71.381Q23.752-71.547 23.482-71.601L22.861-71.715Q22.455-71.793 22.154-72.049Q21.853-72.305 21.853-72.680Q21.853-73.047 22.054-73.269Q22.256-73.492 22.580-73.590Q22.904-73.687 23.244-73.687Q23.709-73.687 24.006-73.480L24.228-73.664Q24.252-73.687 24.283-73.687L24.334-73.687Q24.365-73.687 24.392-73.660Q24.420-73.633 24.420-73.601L24.420-72.617Q24.420-72.586 24.394-72.557Q24.369-72.527 24.334-72.527L24.228-72.527Q24.193-72.527 24.166-72.555Q24.138-72.582 24.138-72.617Q24.138-73.016 23.886-73.236Q23.634-73.457 23.236-73.457Q22.881-73.457 22.597-73.334Q22.314-73.211 22.314-72.906Q22.314-72.687 22.515-72.555Q22.716-72.422 22.963-72.379L23.588-72.266Q24.017-72.176 24.326-71.879Q24.634-71.582 24.634-71.168Q24.634-70.598 24.236-70.320Q23.838-70.043 23.244-70.043Q22.693-70.043 22.341-70.379L22.045-70.066Q22.021-70.043 21.986-70.043L21.939-70.043Q21.916-70.043 21.884-70.074Q21.853-70.105 21.853-70.129M25.642-70.586Q25.642-70.769 25.779-70.906Q25.916-71.043 26.107-71.043Q26.299-71.043 26.431-70.910Q26.564-70.777 26.564-70.586Q26.564-70.387 26.431-70.254Q26.299-70.121 26.107-70.121Q25.916-70.121 25.779-70.258Q25.642-70.394 25.642-70.586M25.642-73.113Q25.642-73.297 25.779-73.433Q25.916-73.570 26.107-73.570Q26.299-73.570 26.431-73.437Q26.564-73.305 26.564-73.113Q26.564-72.914 26.431-72.781Q26.299-72.648 26.107-72.648Q25.916-72.648 25.779-72.785Q25.642-72.922 25.642-73.113\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.95 69.346)\">\u003Cpath d=\"M-23.166-59.070L-25.021-59.070L-25.021-59.363Q-24.752-59.363-24.584-59.408Q-24.416-59.453-24.416-59.629L-24.416-63.453Q-24.416-63.660-24.572-63.713Q-24.728-63.766-25.021-63.766L-25.021-64.062L-23.799-64.148L-23.799-63.684Q-23.568-63.906-23.254-64.027Q-22.939-64.148-22.599-64.148Q-22.127-64.148-21.723-63.902Q-21.318-63.656-21.086-63.240Q-20.853-62.824-20.853-62.348Q-20.853-61.973-21.002-61.644Q-21.150-61.316-21.420-61.064Q-21.689-60.812-22.033-60.678Q-22.377-60.543-22.736-60.543Q-23.025-60.543-23.297-60.664Q-23.568-60.785-23.775-60.996L-23.775-59.629Q-23.775-59.453-23.607-59.408Q-23.439-59.363-23.166-59.363L-23.166-59.070M-23.775-63.285L-23.775-61.445Q-23.623-61.156-23.361-60.976Q-23.099-60.797-22.791-60.797Q-22.506-60.797-22.283-60.935Q-22.060-61.074-21.908-61.305Q-21.756-61.535-21.678-61.807Q-21.599-62.078-21.599-62.348Q-21.599-62.680-21.724-63.037Q-21.849-63.394-22.098-63.631Q-22.346-63.867-22.693-63.867Q-23.017-63.867-23.312-63.711Q-23.607-63.555-23.775-63.285M-17.807-60.621L-20.271-60.621L-20.271-60.918Q-19.939-60.918-19.682-60.965Q-19.424-61.012-19.424-61.180L-19.424-65.523Q-19.424-65.789-20.271-65.789L-20.271-66.086L-17.807-66.086L-17.807-65.789Q-18.658-65.789-18.658-65.523L-18.658-61.180Q-18.658-60.918-17.807-60.918L-17.807-60.621M-17.232-62.348Q-17.232-62.844-16.982-63.269Q-16.732-63.695-16.312-63.941Q-15.892-64.187-15.392-64.187Q-14.853-64.187-14.463-64.062Q-14.072-63.937-14.072-63.523Q-14.072-63.418-14.123-63.326Q-14.174-63.234-14.266-63.184Q-14.357-63.133-14.467-63.133Q-14.572-63.133-14.664-63.184Q-14.756-63.234-14.807-63.326Q-14.857-63.418-14.857-63.523Q-14.857-63.746-14.689-63.851Q-14.912-63.910-15.385-63.910Q-15.682-63.910-15.896-63.771Q-16.111-63.633-16.242-63.402Q-16.373-63.172-16.432-62.902Q-16.490-62.633-16.490-62.348Q-16.490-61.953-16.357-61.603Q-16.224-61.254-15.953-61.037Q-15.682-60.820-15.283-60.820Q-14.908-60.820-14.633-61.037Q-14.357-61.254-14.256-61.613Q-14.240-61.676-14.178-61.676L-14.072-61.676Q-14.037-61.676-14.012-61.648Q-13.986-61.621-13.986-61.582L-13.986-61.559Q-14.119-61.078-14.504-60.810Q-14.889-60.543-15.392-60.543Q-15.756-60.543-16.090-60.680Q-16.424-60.816-16.683-61.066Q-16.943-61.316-17.088-61.652Q-17.232-61.988-17.232-62.348M-13.498-62.316Q-13.498-62.820-13.242-63.252Q-12.986-63.684-12.551-63.935Q-12.115-64.187-11.615-64.187Q-11.228-64.187-10.887-64.043Q-10.545-63.898-10.283-63.637Q-10.021-63.375-9.879-63.039Q-9.736-62.703-9.736-62.316Q-9.736-61.824-10-61.414Q-10.264-61.004-10.693-60.773Q-11.123-60.543-11.615-60.543Q-12.107-60.543-12.541-60.775Q-12.974-61.008-13.236-61.416Q-13.498-61.824-13.498-62.316M-11.615-60.820Q-11.158-60.820-10.906-61.043Q-10.654-61.266-10.566-61.617Q-10.478-61.969-10.478-62.414Q-10.478-62.844-10.572-63.182Q-10.666-63.519-10.920-63.726Q-11.174-63.934-11.615-63.934Q-12.264-63.934-12.508-63.517Q-12.752-63.101-12.752-62.414Q-12.752-61.969-12.664-61.617Q-12.576-61.266-12.324-61.043Q-12.072-60.820-11.615-60.820\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.95 69.346)\">\u003Cpath d=\"M-7.185-60.543Q-7.666-60.543-8.074-60.787Q-8.482-61.031-8.720-61.445Q-8.959-61.859-8.959-62.348Q-8.959-62.840-8.701-63.256Q-8.443-63.672-8.011-63.910Q-7.580-64.148-7.088-64.148Q-6.467-64.148-6.017-63.711L-6.017-65.340Q-6.017-65.555-6.080-65.650Q-6.142-65.746-6.260-65.767Q-6.377-65.789-6.623-65.789L-6.623-66.086L-5.400-66.172L-5.400-61.363Q-5.400-61.152-5.338-61.057Q-5.275-60.961-5.158-60.939Q-5.041-60.918-4.791-60.918L-4.791-60.621L-6.041-60.543L-6.041-61.027Q-6.506-60.543-7.185-60.543M-7.119-60.797Q-6.779-60.797-6.486-60.988Q-6.193-61.180-6.041-61.476L-6.041-63.309Q-6.189-63.582-6.451-63.738Q-6.713-63.894-7.025-63.894Q-7.650-63.894-7.933-63.447Q-8.217-63-8.217-62.340Q-8.217-61.695-7.965-61.246Q-7.713-60.797-7.119-60.797M-4.283-62.375Q-4.283-62.855-4.051-63.271Q-3.818-63.687-3.408-63.937Q-2.998-64.187-2.521-64.187Q-1.791-64.187-1.392-63.746Q-0.994-63.305-0.994-62.574Q-0.994-62.469-1.088-62.445L-3.537-62.445L-3.537-62.375Q-3.537-61.965-3.416-61.609Q-3.295-61.254-3.023-61.037Q-2.752-60.820-2.322-60.820Q-1.959-60.820-1.662-61.049Q-1.365-61.277-1.263-61.629Q-1.256-61.676-1.170-61.691L-1.088-61.691Q-0.994-61.664-0.994-61.582Q-0.994-61.574-1.002-61.543Q-1.064-61.316-1.203-61.133Q-1.342-60.949-1.533-60.816Q-1.724-60.684-1.943-60.613Q-2.162-60.543-2.400-60.543Q-2.771-60.543-3.109-60.680Q-3.447-60.816-3.715-61.068Q-3.982-61.320-4.133-61.660Q-4.283-62-4.283-62.375M-3.529-62.684L-1.568-62.684Q-1.568-62.988-1.670-63.279Q-1.771-63.570-1.988-63.752Q-2.205-63.934-2.521-63.934Q-2.822-63.934-3.053-63.746Q-3.283-63.559-3.406-63.267Q-3.529-62.976-3.529-62.684M0.080-59.215Q0.080-59.238 0.112-59.285Q0.405-59.547 0.571-59.914Q0.737-60.281 0.737-60.668L0.737-60.726Q0.608-60.621 0.440-60.621Q0.248-60.621 0.112-60.754Q-0.025-60.887-0.025-61.086Q-0.025-61.277 0.112-61.410Q0.248-61.543 0.440-61.543Q0.740-61.543 0.865-61.273Q0.990-61.004 0.990-60.668Q0.990-60.219 0.809-59.805Q0.627-59.391 0.287-59.094Q0.264-59.070 0.225-59.070Q0.178-59.070 0.129-59.115Q0.080-59.160 0.080-59.215\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.95 69.346)\">\u003Cpath d=\"M6.576-59.070L4.721-59.070L4.721-59.363Q4.990-59.363 5.158-59.408Q5.326-59.453 5.326-59.629L5.326-63.453Q5.326-63.660 5.170-63.713Q5.014-63.766 4.721-63.766L4.721-64.062L5.943-64.148L5.943-63.684Q6.174-63.906 6.488-64.027Q6.803-64.148 7.143-64.148Q7.615-64.148 8.019-63.902Q8.424-63.656 8.656-63.240Q8.889-62.824 8.889-62.348Q8.889-61.973 8.740-61.644Q8.592-61.316 8.322-61.064Q8.053-60.812 7.709-60.678Q7.365-60.543 7.006-60.543Q6.717-60.543 6.445-60.664Q6.174-60.785 5.967-60.996L5.967-59.629Q5.967-59.453 6.135-59.408Q6.303-59.363 6.576-59.363L6.576-59.070M5.967-63.285L5.967-61.445Q6.119-61.156 6.381-60.976Q6.643-60.797 6.951-60.797Q7.236-60.797 7.459-60.935Q7.682-61.074 7.834-61.305Q7.986-61.535 8.064-61.807Q8.143-62.078 8.143-62.348Q8.143-62.680 8.018-63.037Q7.893-63.394 7.644-63.631Q7.396-63.867 7.049-63.867Q6.725-63.867 6.430-63.711Q6.135-63.555 5.967-63.285M12.150-60.566L10.127-65.523Q10.045-65.695 9.851-65.742Q9.658-65.789 9.350-65.789L9.350-66.086L11.541-66.086L11.541-65.789Q10.916-65.789 10.916-65.574Q10.920-65.559 10.922-65.545Q10.924-65.531 10.928-65.523L12.588-61.430L14.174-65.309Q14.197-65.355 14.197-65.422Q14.197-65.605 14.027-65.697Q13.857-65.789 13.646-65.789L13.646-66.086L15.357-66.086L15.357-65.789Q15.060-65.789 14.830-65.674Q14.600-65.559 14.494-65.309L12.557-60.566Q12.518-60.453 12.389-60.453L12.318-60.453Q12.189-60.453 12.150-60.566\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.95 69.346)\">\u003Cpath d=\"M15.172-61.453Q15.172-61.937 15.574-62.232Q15.977-62.527 16.527-62.646Q17.078-62.766 17.570-62.766L17.570-63.055Q17.570-63.281 17.455-63.488Q17.340-63.695 17.143-63.814Q16.945-63.934 16.715-63.934Q16.289-63.934 16.004-63.828Q16.074-63.801 16.121-63.746Q16.168-63.691 16.193-63.621Q16.219-63.551 16.219-63.476Q16.219-63.371 16.168-63.279Q16.117-63.187 16.025-63.137Q15.934-63.086 15.828-63.086Q15.723-63.086 15.631-63.137Q15.539-63.187 15.488-63.279Q15.438-63.371 15.438-63.476Q15.438-63.894 15.826-64.041Q16.215-64.187 16.715-64.187Q17.047-64.187 17.400-64.057Q17.754-63.926 17.982-63.672Q18.211-63.418 18.211-63.070L18.211-61.269Q18.211-61.137 18.283-61.027Q18.356-60.918 18.484-60.918Q18.609-60.918 18.678-61.023Q18.746-61.129 18.746-61.269L18.746-61.781L19.027-61.781L19.027-61.269Q19.027-61.066 18.910-60.908Q18.793-60.750 18.611-60.666Q18.430-60.582 18.227-60.582Q17.996-60.582 17.844-60.754Q17.691-60.926 17.660-61.156Q17.500-60.875 17.191-60.709Q16.883-60.543 16.531-60.543Q16.020-60.543 15.596-60.766Q15.172-60.988 15.172-61.453M15.859-61.453Q15.859-61.168 16.086-60.982Q16.313-60.797 16.606-60.797Q16.852-60.797 17.076-60.914Q17.301-61.031 17.436-61.234Q17.570-61.437 17.570-61.691L17.570-62.523Q17.305-62.523 17.020-62.469Q16.734-62.414 16.463-62.285Q16.191-62.156 16.025-61.949Q15.859-61.742 15.859-61.453M21.234-60.621L19.402-60.621L19.402-60.918Q19.676-60.918 19.844-60.965Q20.012-61.012 20.012-61.180L20.012-65.340Q20.012-65.555 19.949-65.650Q19.887-65.746 19.768-65.767Q19.648-65.789 19.402-65.789L19.402-66.086L20.625-66.172L20.625-61.180Q20.625-61.012 20.793-60.965Q20.961-60.918 21.234-60.918L21.234-60.621M21.914-63.355Q21.914-63.949 22.147-64.480Q22.379-65.012 22.795-65.412Q23.211-65.812 23.744-66.033Q24.277-66.254 24.883-66.254Q25.320-66.254 25.719-66.072Q26.117-65.891 26.426-65.559L26.898-66.223Q26.930-66.254 26.961-66.254L27.008-66.254Q27.035-66.254 27.066-66.223Q27.098-66.191 27.098-66.164L27.098-64.027Q27.098-64.004 27.066-63.973Q27.035-63.941 27.008-63.941L26.891-63.941Q26.863-63.941 26.832-63.973Q26.801-64.004 26.801-64.027Q26.801-64.293 26.658-64.646Q26.516-65 26.336-65.238Q26.082-65.570 25.732-65.764Q25.383-65.957 24.977-65.957Q24.473-65.957 24.020-65.738Q23.566-65.519 23.273-65.125Q22.777-64.457 22.777-63.355Q22.777-62.824 22.914-62.357Q23.051-61.891 23.326-61.525Q23.602-61.160 24.022-60.955Q24.441-60.750 24.984-60.750Q25.473-60.750 25.897-60.994Q26.320-61.238 26.568-61.658Q26.816-62.078 26.816-62.574Q26.816-62.609 26.846-62.635Q26.875-62.660 26.906-62.660L27.008-62.660Q27.051-62.660 27.074-62.631Q27.098-62.601 27.098-62.559Q27.098-62.121 26.922-61.732Q26.746-61.344 26.436-61.060Q26.125-60.777 25.715-60.615Q25.305-60.453 24.883-60.453Q24.293-60.453 23.752-60.674Q23.211-60.894 22.795-61.299Q22.379-61.703 22.147-62.232Q21.914-62.762 21.914-63.355M28.402-59.215Q28.402-59.238 28.434-59.285Q28.727-59.547 28.893-59.914Q29.059-60.281 29.059-60.668L29.059-60.726Q28.930-60.621 28.762-60.621Q28.570-60.621 28.434-60.754Q28.297-60.887 28.297-61.086Q28.297-61.277 28.434-61.410Q28.570-61.543 28.762-61.543Q29.063-61.543 29.188-61.273Q29.313-61.004 29.313-60.668Q29.313-60.219 29.131-59.805Q28.949-59.391 28.609-59.094Q28.586-59.070 28.547-59.070Q28.500-59.070 28.451-59.115Q28.402-59.160 28.402-59.215\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.95 69.346)\">\u003Cpath d=\"M33.500-61.086Q33.500-61.269 33.636-61.406Q33.773-61.543 33.965-61.543Q34.156-61.543 34.289-61.410Q34.422-61.277 34.422-61.086Q34.422-60.887 34.289-60.754Q34.156-60.621 33.965-60.621Q33.773-60.621 33.636-60.758Q33.500-60.894 33.500-61.086M35.859-61.086Q35.859-61.269 35.996-61.406Q36.133-61.543 36.324-61.543Q36.515-61.543 36.648-61.410Q36.781-61.277 36.781-61.086Q36.781-60.887 36.648-60.754Q36.515-60.621 36.324-60.621Q36.133-60.621 35.996-60.758Q35.859-60.894 35.859-61.086M38.218-61.086Q38.218-61.269 38.355-61.406Q38.492-61.543 38.683-61.543Q38.875-61.543 39.008-61.410Q39.140-61.277 39.140-61.086Q39.140-60.887 39.008-60.754Q38.875-60.621 38.683-60.621Q38.492-60.621 38.355-60.758Q38.218-60.894 38.218-61.086\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M97.06 13.356h51.215V-9.406H97.06Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(130.401 69.346)\">\u003Cpath d=\"M-22.553-70.121L-24.935-70.121L-24.935-70.418Q-24.611-70.418-24.369-70.465Q-24.127-70.512-24.127-70.680L-24.127-75.023Q-24.127-75.195-24.369-75.242Q-24.611-75.289-24.935-75.289L-24.935-75.586L-21.990-75.586Q-21.646-75.586-21.291-75.486Q-20.935-75.387-20.641-75.195Q-20.346-75.004-20.164-74.719Q-19.982-74.433-19.982-74.074Q-19.982-73.601-20.293-73.266Q-20.603-72.930-21.068-72.758Q-21.533-72.586-21.990-72.586L-23.357-72.586L-23.357-70.680Q-23.357-70.512-23.115-70.465Q-22.873-70.418-22.553-70.418L-22.553-70.121M-23.385-75.023L-23.385-72.855L-22.209-72.855Q-21.521-72.855-21.183-73.131Q-20.846-73.406-20.846-74.074Q-20.846-74.738-21.183-75.014Q-21.521-75.289-22.209-75.289L-22.982-75.289Q-23.201-75.289-23.293-75.246Q-23.385-75.203-23.385-75.023M-19.037-72.855Q-19.037-73.449-18.805-73.980Q-18.572-74.512-18.156-74.912Q-17.740-75.312-17.207-75.533Q-16.674-75.754-16.068-75.754Q-15.631-75.754-15.232-75.572Q-14.834-75.391-14.525-75.058L-14.053-75.723Q-14.021-75.754-13.990-75.754L-13.943-75.754Q-13.916-75.754-13.885-75.723Q-13.853-75.691-13.853-75.664L-13.853-73.527Q-13.853-73.504-13.885-73.473Q-13.916-73.441-13.943-73.441L-14.060-73.441Q-14.088-73.441-14.119-73.473Q-14.150-73.504-14.150-73.527Q-14.150-73.793-14.293-74.146Q-14.435-74.500-14.615-74.738Q-14.869-75.070-15.219-75.264Q-15.568-75.457-15.974-75.457Q-16.478-75.457-16.932-75.238Q-17.385-75.019-17.678-74.625Q-18.174-73.957-18.174-72.855Q-18.174-72.324-18.037-71.857Q-17.900-71.391-17.625-71.025Q-17.349-70.660-16.930-70.455Q-16.510-70.250-15.967-70.250Q-15.478-70.250-15.055-70.494Q-14.631-70.738-14.383-71.158Q-14.135-71.578-14.135-72.074Q-14.135-72.109-14.105-72.135Q-14.076-72.160-14.045-72.160L-13.943-72.160Q-13.900-72.160-13.877-72.131Q-13.853-72.101-13.853-72.058Q-13.853-71.621-14.029-71.232Q-14.205-70.844-14.516-70.560Q-14.826-70.277-15.236-70.115Q-15.646-69.953-16.068-69.953Q-16.658-69.953-17.199-70.174Q-17.740-70.394-18.156-70.799Q-18.572-71.203-18.805-71.732Q-19.037-72.262-19.037-72.855M-11.021-71.570L-13.275-71.570L-13.275-72.121L-11.021-72.121L-11.021-71.570M-10.260-70.129L-10.260-71.351Q-10.260-71.379-10.228-71.410Q-10.197-71.441-10.174-71.441L-10.068-71.441Q-9.998-71.441-9.982-71.379Q-9.920-71.058-9.781-70.818Q-9.642-70.578-9.410-70.437Q-9.178-70.297-8.869-70.297Q-8.631-70.297-8.422-70.357Q-8.213-70.418-8.076-70.566Q-7.939-70.715-7.939-70.961Q-7.939-71.215-8.150-71.381Q-8.361-71.547-8.631-71.601L-9.252-71.715Q-9.658-71.793-9.959-72.049Q-10.260-72.305-10.260-72.680Q-10.260-73.047-10.058-73.269Q-9.857-73.492-9.533-73.590Q-9.209-73.687-8.869-73.687Q-8.404-73.687-8.107-73.480L-7.885-73.664Q-7.861-73.687-7.830-73.687L-7.779-73.687Q-7.748-73.687-7.721-73.660Q-7.693-73.633-7.693-73.601L-7.693-72.617Q-7.693-72.586-7.719-72.557Q-7.744-72.527-7.779-72.527L-7.885-72.527Q-7.920-72.527-7.947-72.555Q-7.974-72.582-7.974-72.617Q-7.974-73.016-8.226-73.236Q-8.478-73.457-8.877-73.457Q-9.232-73.457-9.516-73.334Q-9.799-73.211-9.799-72.906Q-9.799-72.687-9.598-72.555Q-9.396-72.422-9.150-72.379L-8.525-72.266Q-8.096-72.176-7.787-71.879Q-7.478-71.582-7.478-71.168Q-7.478-70.598-7.877-70.320Q-8.275-70.043-8.869-70.043Q-9.420-70.043-9.771-70.379L-10.068-70.066Q-10.092-70.043-10.127-70.043L-10.174-70.043Q-10.197-70.043-10.228-70.074Q-10.260-70.105-10.260-70.129M-6.951-71.875Q-6.951-72.355-6.719-72.771Q-6.486-73.187-6.076-73.437Q-5.666-73.687-5.189-73.687Q-4.459-73.687-4.060-73.246Q-3.662-72.805-3.662-72.074Q-3.662-71.969-3.756-71.945L-6.205-71.945L-6.205-71.875Q-6.205-71.465-6.084-71.109Q-5.963-70.754-5.691-70.537Q-5.420-70.320-4.990-70.320Q-4.627-70.320-4.330-70.549Q-4.033-70.777-3.932-71.129Q-3.924-71.176-3.838-71.191L-3.756-71.191Q-3.662-71.164-3.662-71.082Q-3.662-71.074-3.670-71.043Q-3.732-70.816-3.871-70.633Q-4.010-70.449-4.201-70.316Q-4.392-70.183-4.611-70.113Q-4.830-70.043-5.068-70.043Q-5.439-70.043-5.777-70.180Q-6.115-70.316-6.383-70.568Q-6.650-70.820-6.801-71.160Q-6.951-71.500-6.951-71.875M-6.197-72.183L-4.236-72.183Q-4.236-72.488-4.338-72.779Q-4.439-73.070-4.656-73.252Q-4.873-73.433-5.189-73.433Q-5.490-73.433-5.721-73.246Q-5.951-73.058-6.074-72.767Q-6.197-72.476-6.197-72.183M-1.260-70.121L-3.092-70.121L-3.092-70.418Q-2.818-70.418-2.650-70.465Q-2.482-70.512-2.482-70.680L-2.482-74.840Q-2.482-75.055-2.545-75.150Q-2.607-75.246-2.726-75.267Q-2.846-75.289-3.092-75.289L-3.092-75.586L-1.869-75.672L-1.869-70.680Q-1.869-70.512-1.701-70.465Q-1.533-70.418-1.260-70.418L-1.260-70.121M-0.814-71.875Q-0.814-72.355-0.582-72.771Q-0.349-73.187 0.061-73.437Q0.471-73.687 0.947-73.687Q1.678-73.687 2.076-73.246Q2.475-72.805 2.475-72.074Q2.475-71.969 2.381-71.945L-0.068-71.945L-0.068-71.875Q-0.068-71.465 0.053-71.109Q0.174-70.754 0.445-70.537Q0.717-70.320 1.147-70.320Q1.510-70.320 1.807-70.549Q2.104-70.777 2.205-71.129Q2.213-71.176 2.299-71.191L2.381-71.191Q2.475-71.164 2.475-71.082Q2.475-71.074 2.467-71.043Q2.404-70.816 2.266-70.633Q2.127-70.449 1.936-70.316Q1.744-70.183 1.526-70.113Q1.307-70.043 1.068-70.043Q0.697-70.043 0.359-70.180Q0.022-70.316-0.246-70.568Q-0.514-70.820-0.664-71.160Q-0.814-71.500-0.814-71.875M-0.060-72.183L1.901-72.183Q1.901-72.488 1.799-72.779Q1.697-73.070 1.481-73.252Q1.264-73.433 0.947-73.433Q0.647-73.433 0.416-73.246Q0.186-73.058 0.063-72.767Q-0.060-72.476-0.060-72.183M3.006-71.848Q3.006-72.344 3.256-72.769Q3.506-73.195 3.926-73.441Q4.346-73.687 4.846-73.687Q5.385-73.687 5.776-73.562Q6.166-73.437 6.166-73.023Q6.166-72.918 6.115-72.826Q6.065-72.734 5.973-72.683Q5.881-72.633 5.772-72.633Q5.666-72.633 5.574-72.683Q5.483-72.734 5.432-72.826Q5.381-72.918 5.381-73.023Q5.381-73.246 5.549-73.351Q5.326-73.410 4.854-73.410Q4.557-73.410 4.342-73.271Q4.127-73.133 3.996-72.902Q3.865-72.672 3.807-72.402Q3.748-72.133 3.748-71.848Q3.748-71.453 3.881-71.103Q4.014-70.754 4.285-70.537Q4.557-70.320 4.955-70.320Q5.330-70.320 5.606-70.537Q5.881-70.754 5.983-71.113Q5.998-71.176 6.061-71.176L6.166-71.176Q6.201-71.176 6.227-71.148Q6.252-71.121 6.252-71.082L6.252-71.058Q6.119-70.578 5.734-70.310Q5.350-70.043 4.846-70.043Q4.483-70.043 4.149-70.180Q3.815-70.316 3.555-70.566Q3.295-70.816 3.151-71.152Q3.006-71.488 3.006-71.848M7.365-71.082L7.365-73.273L6.662-73.273L6.662-73.527Q7.018-73.527 7.260-73.760Q7.502-73.992 7.613-74.340Q7.725-74.687 7.725-75.043L8.006-75.043L8.006-73.570L9.182-73.570L9.182-73.273L8.006-73.273L8.006-71.098Q8.006-70.777 8.125-70.549Q8.244-70.320 8.526-70.320Q8.705-70.320 8.822-70.443Q8.940-70.566 8.992-70.746Q9.045-70.926 9.045-71.098L9.045-71.570L9.326-71.570L9.326-71.082Q9.326-70.828 9.221-70.588Q9.115-70.348 8.918-70.195Q8.721-70.043 8.463-70.043Q8.147-70.043 7.895-70.166Q7.643-70.289 7.504-70.523Q7.365-70.758 7.365-71.082\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(130.401 69.346)\">\u003Cpath d=\"M-14.082-60.621L-15.914-60.621L-15.914-60.918Q-15.640-60.918-15.472-60.965Q-15.304-61.012-15.304-61.180L-15.304-65.340Q-15.304-65.555-15.367-65.650Q-15.429-65.746-15.548-65.767Q-15.668-65.789-15.914-65.789L-15.914-66.086L-14.691-66.172L-14.691-61.180Q-14.691-61.012-14.523-60.965Q-14.355-60.918-14.082-60.918L-14.082-60.621M-13.636-62.316Q-13.636-62.820-13.380-63.252Q-13.125-63.684-12.689-63.935Q-12.254-64.187-11.754-64.187Q-11.367-64.187-11.025-64.043Q-10.683-63.898-10.422-63.637Q-10.160-63.375-10.017-63.039Q-9.875-62.703-9.875-62.316Q-9.875-61.824-10.138-61.414Q-10.402-61.004-10.832-60.773Q-11.261-60.543-11.754-60.543Q-12.246-60.543-12.679-60.775Q-13.113-61.008-13.375-61.416Q-13.636-61.824-13.636-62.316M-11.754-60.820Q-11.297-60.820-11.045-61.043Q-10.793-61.266-10.705-61.617Q-10.617-61.969-10.617-62.414Q-10.617-62.844-10.711-63.182Q-10.804-63.519-11.058-63.726Q-11.312-63.934-11.754-63.934Q-12.402-63.934-12.646-63.517Q-12.890-63.101-12.890-62.414Q-12.890-61.969-12.802-61.617Q-12.714-61.266-12.463-61.043Q-12.211-60.820-11.754-60.820M-9.390-60.012Q-9.390-60.293-9.179-60.504Q-8.968-60.715-8.683-60.805Q-8.839-60.930-8.918-61.119Q-8.996-61.309-8.996-61.508Q-8.996-61.863-8.765-62.156Q-9.132-62.496-9.132-62.965Q-9.132-63.316-8.929-63.586Q-8.726-63.855-8.406-64.002Q-8.086-64.148-7.742-64.148Q-7.222-64.148-6.851-63.867Q-6.488-64.238-5.941-64.238Q-5.761-64.238-5.634-64.111Q-5.507-63.984-5.507-63.805Q-5.507-63.699-5.586-63.621Q-5.664-63.543-5.773-63.543Q-5.882-63.543-5.959-63.619Q-6.035-63.695-6.035-63.805Q-6.035-63.906-5.996-63.957Q-5.988-63.965-5.984-63.971Q-5.980-63.976-5.980-63.980Q-6.355-63.980-6.675-63.726Q-6.355-63.387-6.355-62.965Q-6.355-62.695-6.472-62.478Q-6.589-62.262-6.795-62.103Q-7-61.945-7.242-61.863Q-7.484-61.781-7.742-61.781Q-7.961-61.781-8.173-61.840Q-8.386-61.898-8.582-62.019Q-8.675-61.879-8.675-61.699Q-8.675-61.492-8.539-61.340Q-8.402-61.187-8.195-61.187L-7.500-61.187Q-7.011-61.187-6.599-61.103Q-6.187-61.019-5.908-60.762Q-5.629-60.504-5.629-60.012Q-5.629-59.648-5.949-59.416Q-6.269-59.184-6.711-59.082Q-7.152-58.980-7.507-58.980Q-7.863-58.980-8.306-59.082Q-8.750-59.184-9.070-59.416Q-9.390-59.648-9.390-60.012M-8.886-60.012Q-8.886-59.816-8.742-59.668Q-8.597-59.519-8.384-59.430Q-8.172-59.340-7.931-59.293Q-7.691-59.246-7.507-59.246Q-7.265-59.246-6.935-59.324Q-6.605-59.402-6.369-59.576Q-6.132-59.750-6.132-60.012Q-6.132-60.418-6.543-60.527Q-6.953-60.637-7.515-60.637L-8.195-60.637Q-8.464-60.637-8.675-60.459Q-8.886-60.281-8.886-60.012M-7.742-62.047Q-7.019-62.047-7.019-62.965Q-7.019-63.887-7.742-63.887Q-8.468-63.887-8.468-62.965Q-8.468-62.047-7.742-62.047M-3.285-60.621L-5.062-60.621L-5.062-60.918Q-4.789-60.918-4.621-60.965Q-4.453-61.012-4.453-61.180L-4.453-63.316Q-4.453-63.531-4.509-63.627Q-4.566-63.723-4.679-63.744Q-4.793-63.766-5.039-63.766L-5.039-64.062L-3.839-64.148L-3.839-61.180Q-3.839-61.012-3.693-60.965Q-3.547-60.918-3.285-60.918L-3.285-60.621M-4.726-65.543Q-4.726-65.734-4.591-65.865Q-4.457-65.996-4.261-65.996Q-4.140-65.996-4.037-65.934Q-3.933-65.871-3.871-65.767Q-3.808-65.664-3.808-65.543Q-3.808-65.348-3.939-65.213Q-4.070-65.078-4.261-65.078Q-4.461-65.078-4.593-65.211Q-4.726-65.344-4.726-65.543M-2.742-62.348Q-2.742-62.844-2.492-63.269Q-2.242-63.695-1.822-63.941Q-1.402-64.187-0.902-64.187Q-0.363-64.187 0.028-64.062Q0.418-63.937 0.418-63.523Q0.418-63.418 0.368-63.326Q0.317-63.234 0.225-63.184Q0.133-63.133 0.024-63.133Q-0.082-63.133-0.173-63.184Q-0.265-63.234-0.316-63.326Q-0.367-63.418-0.367-63.523Q-0.367-63.746-0.199-63.851Q-0.422-63.910-0.894-63.910Q-1.191-63.910-1.406-63.771Q-1.621-63.633-1.752-63.402Q-1.882-63.172-1.941-62.902Q-2-62.633-2-62.348Q-2-61.953-1.867-61.603Q-1.734-61.254-1.463-61.037Q-1.191-60.820-0.793-60.820Q-0.418-60.820-0.142-61.037Q0.133-61.254 0.235-61.613Q0.250-61.676 0.313-61.676L0.418-61.676Q0.453-61.676 0.479-61.648Q0.504-61.621 0.504-61.582L0.504-61.559Q0.371-61.078-0.013-60.810Q-0.398-60.543-0.902-60.543Q-1.265-60.543-1.599-60.680Q-1.933-60.816-2.193-61.066Q-2.453-61.316-2.597-61.652Q-2.742-61.988-2.742-62.348\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M188.109 13.356h39.833V-9.406H188.11Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(216.66 69.08)\">\u003Cpath d=\"M-11.860-70.121L-14.242-70.121L-14.242-70.418Q-13.918-70.418-13.676-70.465Q-13.434-70.512-13.434-70.680L-13.434-75.023Q-13.434-75.195-13.676-75.242Q-13.918-75.289-14.242-75.289L-14.242-75.586L-11.297-75.586Q-10.953-75.586-10.598-75.486Q-10.242-75.387-9.948-75.195Q-9.653-75.004-9.471-74.719Q-9.289-74.433-9.289-74.074Q-9.289-73.601-9.600-73.266Q-9.910-72.930-10.375-72.758Q-10.840-72.586-11.297-72.586L-12.664-72.586L-12.664-70.680Q-12.664-70.512-12.422-70.465Q-12.180-70.418-11.860-70.418L-11.860-70.121M-12.692-75.023L-12.692-72.855L-11.516-72.855Q-10.828-72.855-10.490-73.131Q-10.153-73.406-10.153-74.074Q-10.153-74.738-10.490-75.014Q-10.828-75.289-11.516-75.289L-12.289-75.289Q-12.508-75.289-12.600-75.246Q-12.692-75.203-12.692-75.023M-8.344-72.855Q-8.344-73.449-8.112-73.980Q-7.879-74.512-7.463-74.912Q-7.047-75.312-6.514-75.533Q-5.981-75.754-5.375-75.754Q-4.938-75.754-4.539-75.572Q-4.141-75.391-3.832-75.058L-3.360-75.723Q-3.328-75.754-3.297-75.754L-3.250-75.754Q-3.223-75.754-3.192-75.723Q-3.160-75.691-3.160-75.664L-3.160-73.527Q-3.160-73.504-3.192-73.473Q-3.223-73.441-3.250-73.441L-3.367-73.441Q-3.395-73.441-3.426-73.473Q-3.457-73.504-3.457-73.527Q-3.457-73.793-3.600-74.146Q-3.742-74.500-3.922-74.738Q-4.176-75.070-4.526-75.264Q-4.875-75.457-5.281-75.457Q-5.785-75.457-6.239-75.238Q-6.692-75.019-6.985-74.625Q-7.481-73.957-7.481-72.855Q-7.481-72.324-7.344-71.857Q-7.207-71.391-6.932-71.025Q-6.656-70.660-6.237-70.455Q-5.817-70.250-5.274-70.250Q-4.785-70.250-4.362-70.494Q-3.938-70.738-3.690-71.158Q-3.442-71.578-3.442-72.074Q-3.442-72.109-3.412-72.135Q-3.383-72.160-3.352-72.160L-3.250-72.160Q-3.207-72.160-3.184-72.131Q-3.160-72.101-3.160-72.058Q-3.160-71.621-3.336-71.232Q-3.512-70.844-3.823-70.560Q-4.133-70.277-4.543-70.115Q-4.953-69.953-5.375-69.953Q-5.965-69.953-6.506-70.174Q-7.047-70.394-7.463-70.799Q-7.879-71.203-8.112-71.732Q-8.344-72.262-8.344-72.855\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.66 69.08)\">\u003Cpath d=\"M-22.670-58.629Q-23.283-59.086-23.685-59.721Q-24.088-60.355-24.283-61.101Q-24.478-61.848-24.478-62.621Q-24.478-63.394-24.283-64.141Q-24.088-64.887-23.685-65.521Q-23.283-66.156-22.670-66.613Q-22.658-66.617-22.650-66.619Q-22.642-66.621-22.631-66.621L-22.553-66.621Q-22.514-66.621-22.488-66.594Q-22.463-66.566-22.463-66.523Q-22.463-66.473-22.494-66.453Q-23.002-66-23.324-65.377Q-23.646-64.754-23.787-64.059Q-23.928-63.363-23.928-62.621Q-23.928-61.887-23.789-61.187Q-23.650-60.488-23.326-59.863Q-23.002-59.238-22.494-58.789Q-22.463-58.769-22.463-58.719Q-22.463-58.676-22.488-58.648Q-22.514-58.621-22.553-58.621L-22.631-58.621Q-22.639-58.625-22.648-58.627Q-22.658-58.629-22.670-58.629M-21.701-62.348Q-21.701-62.844-21.451-63.269Q-21.201-63.695-20.781-63.941Q-20.361-64.187-19.861-64.187Q-19.322-64.187-18.932-64.062Q-18.541-63.937-18.541-63.523Q-18.541-63.418-18.592-63.326Q-18.642-63.234-18.734-63.184Q-18.826-63.133-18.935-63.133Q-19.041-63.133-19.133-63.184Q-19.224-63.234-19.275-63.326Q-19.326-63.418-19.326-63.523Q-19.326-63.746-19.158-63.851Q-19.381-63.910-19.853-63.910Q-20.150-63.910-20.365-63.771Q-20.580-63.633-20.711-63.402Q-20.842-63.172-20.900-62.902Q-20.959-62.633-20.959-62.348Q-20.959-61.953-20.826-61.603Q-20.693-61.254-20.422-61.037Q-20.150-60.820-19.752-60.820Q-19.377-60.820-19.101-61.037Q-18.826-61.254-18.724-61.613Q-18.709-61.676-18.646-61.676L-18.541-61.676Q-18.506-61.676-18.480-61.648Q-18.455-61.621-18.455-61.582L-18.455-61.559Q-18.588-61.078-18.973-60.810Q-19.357-60.543-19.861-60.543Q-20.224-60.543-20.558-60.680Q-20.892-60.816-21.152-61.066Q-21.412-61.316-21.557-61.652Q-21.701-61.988-21.701-62.348M-17.283-61.574L-17.283-63.316Q-17.283-63.531-17.346-63.627Q-17.408-63.723-17.527-63.744Q-17.646-63.766-17.892-63.766L-17.892-64.062L-16.646-64.148L-16.646-61.598L-16.646-61.574Q-16.646-61.262-16.592-61.100Q-16.537-60.937-16.387-60.867Q-16.236-60.797-15.916-60.797Q-15.486-60.797-15.213-61.135Q-14.939-61.473-14.939-61.918L-14.939-63.316Q-14.939-63.531-15.002-63.627Q-15.064-63.723-15.183-63.744Q-15.303-63.766-15.549-63.766L-15.549-64.062L-14.303-64.148L-14.303-61.363Q-14.303-61.152-14.240-61.057Q-14.178-60.961-14.058-60.939Q-13.939-60.918-13.693-60.918L-13.693-60.621L-14.916-60.543L-14.916-61.164Q-15.084-60.875-15.365-60.709Q-15.646-60.543-15.967-60.543Q-17.283-60.543-17.283-61.574M-11.240-60.621L-13.221-60.621L-13.221-60.918Q-12.951-60.918-12.783-60.963Q-12.615-61.008-12.615-61.180L-12.615-63.316Q-12.615-63.531-12.678-63.627Q-12.740-63.723-12.857-63.744Q-12.974-63.766-13.221-63.766L-13.221-64.062L-12.053-64.148L-12.053-63.363Q-11.974-63.574-11.822-63.760Q-11.670-63.945-11.471-64.047Q-11.271-64.148-11.045-64.148Q-10.799-64.148-10.607-64.004Q-10.416-63.859-10.416-63.629Q-10.416-63.473-10.521-63.363Q-10.627-63.254-10.783-63.254Q-10.939-63.254-11.049-63.363Q-11.158-63.473-11.158-63.629Q-11.158-63.789-11.053-63.894Q-11.377-63.894-11.592-63.666Q-11.807-63.437-11.902-63.098Q-11.998-62.758-11.998-62.453L-11.998-61.180Q-11.998-61.012-11.771-60.965Q-11.545-60.918-11.240-60.918L-11.240-60.621M-7.928-60.621L-9.908-60.621L-9.908-60.918Q-9.639-60.918-9.471-60.963Q-9.303-61.008-9.303-61.180L-9.303-63.316Q-9.303-63.531-9.365-63.627Q-9.428-63.723-9.545-63.744Q-9.662-63.766-9.908-63.766L-9.908-64.062L-8.740-64.148L-8.740-63.363Q-8.662-63.574-8.510-63.760Q-8.357-63.945-8.158-64.047Q-7.959-64.148-7.732-64.148Q-7.486-64.148-7.295-64.004Q-7.103-63.859-7.103-63.629Q-7.103-63.473-7.209-63.363Q-7.314-63.254-7.471-63.254Q-7.627-63.254-7.736-63.363Q-7.846-63.473-7.846-63.629Q-7.846-63.789-7.740-63.894Q-8.064-63.894-8.279-63.666Q-8.494-63.437-8.590-63.098Q-8.685-62.758-8.685-62.453L-8.685-61.180Q-8.685-61.012-8.459-60.965Q-8.232-60.918-7.928-60.918L-7.928-60.621M-6.623-62.375Q-6.623-62.855-6.391-63.271Q-6.158-63.687-5.748-63.937Q-5.338-64.187-4.861-64.187Q-4.131-64.187-3.732-63.746Q-3.334-63.305-3.334-62.574Q-3.334-62.469-3.428-62.445L-5.877-62.445L-5.877-62.375Q-5.877-61.965-5.756-61.609Q-5.635-61.254-5.363-61.037Q-5.092-60.820-4.662-60.820Q-4.299-60.820-4.002-61.049Q-3.705-61.277-3.603-61.629Q-3.596-61.676-3.510-61.691L-3.428-61.691Q-3.334-61.664-3.334-61.582Q-3.334-61.574-3.342-61.543Q-3.404-61.316-3.543-61.133Q-3.682-60.949-3.873-60.816Q-4.064-60.684-4.283-60.613Q-4.502-60.543-4.740-60.543Q-5.111-60.543-5.449-60.680Q-5.787-60.816-6.055-61.068Q-6.322-61.320-6.473-61.660Q-6.623-62-6.623-62.375M-5.869-62.684L-3.908-62.684Q-3.908-62.988-4.010-63.279Q-4.111-63.570-4.328-63.752Q-4.545-63.934-4.861-63.934Q-5.162-63.934-5.392-63.746Q-5.623-63.559-5.746-63.267Q-5.869-62.976-5.869-62.684M-0.916-60.621L-2.771-60.621L-2.771-60.918Q-2.498-60.918-2.330-60.965Q-2.162-61.012-2.162-61.180L-2.162-63.316Q-2.162-63.531-2.224-63.627Q-2.287-63.723-2.406-63.744Q-2.525-63.766-2.771-63.766L-2.771-64.062L-1.580-64.148L-1.580-63.414Q-1.467-63.629-1.273-63.797Q-1.080-63.965-0.842-64.057Q-0.603-64.148-0.349-64.148Q0.818-64.148 0.818-63.070L0.818-61.180Q0.818-61.012 0.988-60.965Q1.158-60.918 1.428-60.918L1.428-60.621L-0.428-60.621L-0.428-60.918Q-0.154-60.918 0.014-60.965Q0.182-61.012 0.182-61.180L0.182-63.055Q0.182-63.437 0.061-63.666Q-0.060-63.894-0.412-63.894Q-0.724-63.894-0.978-63.732Q-1.232-63.570-1.379-63.301Q-1.525-63.031-1.525-62.734L-1.525-61.180Q-1.525-61.012-1.355-60.965Q-1.185-60.918-0.916-60.918\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(216.66 69.08)\">\u003Cpath d=\"M2.271-61.582L2.271-63.773L1.568-63.773L1.568-64.027Q1.924-64.027 2.166-64.260Q2.408-64.492 2.519-64.840Q2.631-65.187 2.631-65.543L2.912-65.543L2.912-64.070L4.088-64.070L4.088-63.773L2.912-63.773L2.912-61.598Q2.912-61.277 3.031-61.049Q3.150-60.820 3.431-60.820Q3.611-60.820 3.728-60.943Q3.845-61.066 3.898-61.246Q3.951-61.426 3.951-61.598L3.951-62.070L4.232-62.070L4.232-61.582Q4.232-61.328 4.127-61.088Q4.021-60.848 3.824-60.695Q3.627-60.543 3.369-60.543Q3.053-60.543 2.801-60.666Q2.549-60.789 2.410-61.023Q2.271-61.258 2.271-61.582M5.353-58.621L5.271-58.621Q5.236-58.621 5.211-58.650Q5.185-58.680 5.185-58.719Q5.185-58.769 5.217-58.789Q5.603-59.125 5.887-59.574Q6.170-60.023 6.336-60.523Q6.502-61.023 6.576-61.541Q6.650-62.059 6.650-62.621Q6.650-63.191 6.576-63.707Q6.502-64.223 6.336-64.719Q6.170-65.215 5.890-65.662Q5.611-66.109 5.217-66.453Q5.185-66.473 5.185-66.523Q5.185-66.562 5.211-66.592Q5.236-66.621 5.271-66.621L5.353-66.621Q5.365-66.621 5.375-66.619Q5.385-66.617 5.392-66.613Q6.006-66.156 6.408-65.521Q6.810-64.887 7.006-64.141Q7.201-63.394 7.201-62.621Q7.201-61.848 7.006-61.101Q6.810-60.355 6.408-59.721Q6.006-59.086 5.392-58.629Q5.381-58.629 5.373-58.627Q5.365-58.625 5.353-58.621\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M55.013 1.975H94.86\"\u002F>\u003Cpath stroke=\"none\" d=\"m96.86 1.975-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cpath fill=\"none\" d=\"M148.475 1.975h37.434\"\u002F>\u003Cpath stroke=\"none\" d=\"m187.909 1.975-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg transform=\"translate(187.937 59.063)\">\u003Cpath d=\"M-22.761-60.621L-24.894-60.621L-24.894-60.901Q-24.173-60.901-24.173-61.110L-24.173-64.911Q-24.173-65.122-24.894-65.122L-24.894-65.403L-22.228-65.403Q-21.818-65.403-21.397-65.249Q-20.977-65.095-20.693-64.791Q-20.410-64.487-20.410-64.073Q-20.410-63.755-20.577-63.509Q-20.745-63.263-21.021-63.097Q-21.298-62.932-21.620-62.848Q-21.941-62.764-22.228-62.764L-23.482-62.764L-23.482-61.110Q-23.482-60.901-22.761-60.901L-22.761-60.621M-23.510-64.911L-23.510-63.014L-22.423-63.014Q-21.814-63.014-21.500-63.251Q-21.185-63.489-21.185-64.073Q-21.185-64.466-21.331-64.700Q-21.476-64.934-21.748-65.028Q-22.019-65.122-22.423-65.122L-23.144-65.122Q-23.332-65.122-23.421-65.088Q-23.510-65.054-23.510-64.911M-19.429-63.014Q-19.429-63.540-19.212-64.008Q-18.995-64.476-18.612-64.822Q-18.229-65.167-17.745-65.355Q-17.262-65.543-16.732-65.543Q-16.329-65.543-15.964-65.386Q-15.600-65.228-15.317-64.934L-14.893-65.516Q-14.859-65.543-14.835-65.543L-14.787-65.543Q-14.756-65.543-14.732-65.519Q-14.708-65.495-14.708-65.464L-14.708-63.601Q-14.708-63.578-14.734-63.552Q-14.760-63.526-14.787-63.526L-14.913-63.526Q-14.975-63.526-14.989-63.601Q-15.019-63.916-15.154-64.220Q-15.289-64.524-15.505-64.758Q-15.720-64.993-16.009-65.128Q-16.298-65.263-16.626-65.263Q-17.268-65.263-17.726-64.969Q-18.184-64.675-18.417-64.162Q-18.649-63.649-18.649-63.014Q-18.649-62.542-18.519-62.133Q-18.390-61.725-18.130-61.412Q-17.870-61.100-17.491-60.930Q-17.111-60.761-16.619-60.761Q-16.291-60.761-15.997-60.877Q-15.703-60.994-15.469-61.209Q-15.235-61.424-15.105-61.713Q-14.975-62.002-14.975-62.330Q-14.975-62.357-14.948-62.381Q-14.920-62.405-14.900-62.405L-14.787-62.405Q-14.749-62.405-14.729-62.380Q-14.708-62.354-14.708-62.316Q-14.708-61.920-14.874-61.583Q-15.040-61.246-15.327-60.999Q-15.614-60.751-15.983-60.616Q-16.352-60.481-16.732-60.481Q-17.251-60.481-17.744-60.671Q-18.236-60.860-18.615-61.204Q-18.995-61.547-19.212-62.016Q-19.429-62.484-19.429-63.014\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(265.298 64.346)\">\u003Cpath d=\"M-22.843-58.871Q-23.393-59.271-23.764-59.826Q-24.135-60.382-24.316-61.028Q-24.497-61.674-24.497-62.371Q-24.497-62.884-24.397-63.379Q-24.296-63.875-24.091-64.326Q-23.886-64.777-23.573-65.169Q-23.260-65.560-22.843-65.864Q-22.833-65.868-22.826-65.869Q-22.819-65.871-22.809-65.871L-22.741-65.871Q-22.706-65.871-22.684-65.847Q-22.662-65.823-22.662-65.786Q-22.662-65.741-22.689-65.724Q-23.038-65.423-23.291-65.039Q-23.544-64.654-23.696-64.213Q-23.848-63.772-23.920-63.316Q-23.992-62.860-23.992-62.371Q-23.992-61.370-23.682-60.483Q-23.373-59.596-22.689-59.011Q-22.662-58.994-22.662-58.950Q-22.662-58.912-22.684-58.888Q-22.706-58.864-22.741-58.864L-22.809-58.864Q-22.816-58.868-22.824-58.869Q-22.833-58.871-22.843-58.871M-21.852-60.628L-21.852-61.691Q-21.852-61.715-21.825-61.742Q-21.797-61.769-21.773-61.769L-21.664-61.769Q-21.599-61.769-21.585-61.711Q-21.490-61.277-21.244-61.026Q-20.997-60.775-20.584-60.775Q-20.242-60.775-19.989-60.908Q-19.736-61.041-19.736-61.349Q-19.736-61.506-19.830-61.621Q-19.924-61.735-20.063-61.804Q-20.201-61.872-20.369-61.910L-20.950-62.009Q-21.305-62.077-21.579-62.298Q-21.852-62.518-21.852-62.860Q-21.852-63.109-21.741-63.284Q-21.630-63.458-21.443-63.557Q-21.257-63.656-21.042-63.699Q-20.827-63.742-20.584-63.742Q-20.170-63.742-19.890-63.560L-19.675-63.735Q-19.664-63.738-19.658-63.740Q-19.651-63.742-19.641-63.742L-19.589-63.742Q-19.562-63.742-19.538-63.718Q-19.514-63.694-19.514-63.666L-19.514-62.819Q-19.514-62.798-19.538-62.771Q-19.562-62.744-19.589-62.744L-19.702-62.744Q-19.729-62.744-19.755-62.769Q-19.781-62.795-19.781-62.819Q-19.781-63.055-19.887-63.219Q-19.993-63.383-20.175-63.465Q-20.358-63.547-20.591-63.547Q-20.919-63.547-21.175-63.444Q-21.432-63.342-21.432-63.065Q-21.432-62.870-21.249-62.761Q-21.066-62.651-20.837-62.610L-20.263-62.504Q-20.016-62.456-19.803-62.328Q-19.589-62.200-19.453-61.997Q-19.316-61.793-19.316-61.544Q-19.316-61.031-19.682-60.792Q-20.047-60.553-20.584-60.553Q-21.079-60.553-21.411-60.847L-21.678-60.573Q-21.698-60.553-21.725-60.553L-21.773-60.553Q-21.797-60.553-21.825-60.580Q-21.852-60.607-21.852-60.628M-18.161-61.462L-18.161-63.359L-18.800-63.359L-18.800-63.581Q-18.482-63.581-18.265-63.791Q-18.048-64.001-17.947-64.311Q-17.846-64.620-17.846-64.928L-17.579-64.928L-17.579-63.639L-16.503-63.639L-16.503-63.359L-17.579-63.359L-17.579-61.475Q-17.579-61.199-17.475-61Q-17.371-60.802-17.111-60.802Q-16.954-60.802-16.848-60.906Q-16.742-61.011-16.693-61.164Q-16.643-61.318-16.643-61.475L-16.643-61.889L-16.376-61.889L-16.376-61.462Q-16.376-61.236-16.475-61.026Q-16.575-60.816-16.759-60.684Q-16.944-60.553-17.173-60.553Q-17.610-60.553-17.885-60.790Q-18.161-61.028-18.161-61.462M-15.508-61.349Q-15.508-61.681-15.284-61.908Q-15.060-62.135-14.717-62.263Q-14.373-62.392-14.001-62.444Q-13.628-62.497-13.324-62.497L-13.324-62.750Q-13.324-62.955-13.432-63.135Q-13.539-63.314-13.721-63.417Q-13.902-63.519-14.110-63.519Q-14.517-63.519-14.753-63.427Q-14.664-63.390-14.618-63.306Q-14.572-63.222-14.572-63.120Q-14.572-63.024-14.618-62.945Q-14.664-62.867-14.744-62.822Q-14.825-62.778-14.913-62.778Q-15.064-62.778-15.165-62.875Q-15.266-62.973-15.266-63.120Q-15.266-63.742-14.110-63.742Q-13.898-63.742-13.649-63.678Q-13.399-63.615-13.198-63.496Q-12.996-63.376-12.870-63.191Q-12.743-63.007-12.743-62.764L-12.743-61.188Q-12.743-61.072-12.682-60.976Q-12.620-60.881-12.507-60.881Q-12.398-60.881-12.333-60.975Q-12.268-61.069-12.268-61.188L-12.268-61.636L-12.001-61.636L-12.001-61.188Q-12.001-60.918-12.229-60.753Q-12.456-60.587-12.736-60.587Q-12.945-60.587-13.081-60.741Q-13.218-60.894-13.242-61.110Q-13.389-60.843-13.671-60.698Q-13.953-60.553-14.278-60.553Q-14.555-60.553-14.838-60.628Q-15.122-60.703-15.315-60.882Q-15.508-61.062-15.508-61.349M-14.893-61.349Q-14.893-61.175-14.792-61.045Q-14.691-60.915-14.536-60.845Q-14.380-60.775-14.216-60.775Q-13.997-60.775-13.789-60.872Q-13.580-60.970-13.452-61.151Q-13.324-61.332-13.324-61.558L-13.324-62.286Q-13.649-62.286-14.015-62.195Q-14.380-62.104-14.637-61.892Q-14.893-61.681-14.893-61.349M-9.834-60.621L-11.571-60.621L-11.571-60.901Q-11.342-60.901-11.193-60.935Q-11.044-60.970-11.044-61.110L-11.044-62.959Q-11.044-63.229-11.152-63.290Q-11.260-63.352-11.571-63.352L-11.571-63.632L-10.542-63.707L-10.542-63Q-10.412-63.308-10.169-63.507Q-9.927-63.707-9.609-63.707Q-9.390-63.707-9.219-63.583Q-9.048-63.458-9.048-63.246Q-9.048-63.109-9.147-63.010Q-9.246-62.911-9.380-62.911Q-9.516-62.911-9.616-63.010Q-9.715-63.109-9.715-63.246Q-9.715-63.386-9.616-63.485Q-9.906-63.485-10.106-63.289Q-10.306-63.092-10.398-62.798Q-10.491-62.504-10.491-62.224L-10.491-61.110Q-10.491-60.901-9.834-60.901L-9.834-60.621M-7.937-61.462L-7.937-63.359L-8.577-63.359L-8.577-63.581Q-8.259-63.581-8.042-63.791Q-7.825-64.001-7.724-64.311Q-7.623-64.620-7.623-64.928L-7.356-64.928L-7.356-63.639L-6.280-63.639L-6.280-63.359L-7.356-63.359L-7.356-61.475Q-7.356-61.199-7.252-61Q-7.148-60.802-6.888-60.802Q-6.731-60.802-6.625-60.906Q-6.519-61.011-6.469-61.164Q-6.420-61.318-6.420-61.475L-6.420-61.889L-6.153-61.889L-6.153-61.462Q-6.153-61.236-6.252-61.026Q-6.351-60.816-6.536-60.684Q-6.721-60.553-6.950-60.553Q-7.387-60.553-7.662-60.790Q-7.937-61.028-7.937-61.462\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(265.298 64.346)\">\u003Cpath d=\"M-2.665-62.104Q-2.665-62.446-2.530-62.745Q-2.395-63.044-2.155-63.268Q-1.916-63.492-1.598-63.617Q-1.280-63.742-0.949-63.742Q-0.504-63.742-0.105-63.526Q0.295-63.311 0.530-62.933Q0.764-62.556 0.764-62.104Q0.764-61.763 0.622-61.479Q0.480-61.195 0.236-60.988Q-0.009-60.782-0.318-60.667Q-0.627-60.553-0.949-60.553Q-1.379-60.553-1.781-60.754Q-2.183-60.956-2.424-61.308Q-2.665-61.660-2.665-62.104M-0.949-60.802Q-0.347-60.802-0.123-61.180Q0.101-61.558 0.101-62.190Q0.101-62.802-0.134-63.161Q-0.368-63.519-0.949-63.519Q-2.001-63.519-2.001-62.190Q-2.001-61.558-1.776-61.180Q-1.550-60.802-0.949-60.802M3.156-60.621L1.423-60.621L1.423-60.901Q1.649-60.901 1.798-60.935Q1.946-60.970 1.946-61.110L1.946-63.359L1.358-63.359L1.358-63.639L1.946-63.639L1.946-64.456Q1.946-64.774 2.124-65.022Q2.302-65.269 2.592-65.410Q2.883-65.550 3.194-65.550Q3.450-65.550 3.654-65.408Q3.857-65.266 3.857-65.023Q3.857-64.887 3.758-64.788Q3.659-64.688 3.522-64.688Q3.385-64.688 3.286-64.788Q3.187-64.887 3.187-65.023Q3.187-65.204 3.327-65.297Q3.249-65.324 3.149-65.324Q2.941-65.324 2.787-65.191Q2.633-65.058 2.553-64.854Q2.473-64.651 2.473-64.442L2.473-63.639L3.361-63.639L3.361-63.359L2.500-63.359L2.500-61.110Q2.500-60.901 3.156-60.901\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(265.298 64.346)\">\u003Cpath d=\"M6.536-62.132Q6.536-62.460 6.671-62.761Q6.806-63.061 7.042-63.282Q7.278-63.502 7.582-63.622Q7.887-63.742 8.211-63.742Q8.717-63.742 9.066-63.639Q9.414-63.537 9.414-63.161Q9.414-63.014 9.317-62.913Q9.220-62.812 9.073-62.812Q8.919-62.812 8.820-62.911Q8.721-63.010 8.721-63.161Q8.721-63.349 8.861-63.441Q8.659-63.492 8.218-63.492Q7.863-63.492 7.634-63.296Q7.405-63.099 7.304-62.790Q7.203-62.480 7.203-62.132Q7.203-61.783 7.329-61.477Q7.456-61.171 7.711-60.987Q7.965-60.802 8.321-60.802Q8.543-60.802 8.727-60.886Q8.912-60.970 9.047-61.125Q9.182-61.281 9.240-61.489Q9.254-61.544 9.308-61.544L9.421-61.544Q9.452-61.544 9.474-61.520Q9.496-61.496 9.496-61.462L9.496-61.441Q9.411-61.154 9.223-60.956Q9.035-60.758 8.770-60.655Q8.505-60.553 8.211-60.553Q7.781-60.553 7.393-60.759Q7.005-60.966 6.771-61.329Q6.536-61.691 6.536-62.132M10.419-59.486Q10.549-59.418 10.686-59.418Q10.857-59.418 11.007-59.507Q11.158-59.596 11.269-59.741Q11.380-59.886 11.458-60.054L11.722-60.621L10.553-63.147Q10.477-63.294 10.347-63.326Q10.218-63.359 9.985-63.359L9.985-63.639L11.506-63.639L11.506-63.359Q11.158-63.359 11.158-63.212Q11.161-63.191 11.163-63.174Q11.164-63.157 11.164-63.147L12.022-61.288L12.795-62.959Q12.829-63.027 12.829-63.106Q12.829-63.219 12.745-63.289Q12.661-63.359 12.549-63.359L12.549-63.639L13.745-63.639L13.745-63.359Q13.526-63.359 13.354-63.255Q13.181-63.150 13.089-62.959L11.752-60.054Q11.581-59.684 11.311-59.438Q11.041-59.192 10.686-59.192Q10.416-59.192 10.197-59.358Q9.978-59.524 9.978-59.787Q9.978-59.924 10.071-60.013Q10.163-60.101 10.303-60.101Q10.440-60.101 10.529-60.013Q10.618-59.924 10.618-59.787Q10.618-59.684 10.565-59.606Q10.512-59.527 10.419-59.486M14.285-62.132Q14.285-62.460 14.420-62.761Q14.555-63.061 14.791-63.282Q15.027-63.502 15.331-63.622Q15.635-63.742 15.960-63.742Q16.466-63.742 16.814-63.639Q17.163-63.537 17.163-63.161Q17.163-63.014 17.066-62.913Q16.968-62.812 16.821-62.812Q16.667-62.812 16.568-62.911Q16.469-63.010 16.469-63.161Q16.469-63.349 16.609-63.441Q16.408-63.492 15.967-63.492Q15.611-63.492 15.382-63.296Q15.153-63.099 15.052-62.790Q14.951-62.480 14.951-62.132Q14.951-61.783 15.078-61.477Q15.204-61.171 15.459-60.987Q15.714-60.802 16.069-60.802Q16.291-60.802 16.476-60.886Q16.660-60.970 16.795-61.125Q16.930-61.281 16.989-61.489Q17.002-61.544 17.057-61.544L17.170-61.544Q17.201-61.544 17.223-61.520Q17.245-61.496 17.245-61.462L17.245-61.441Q17.160-61.154 16.972-60.956Q16.784-60.758 16.519-60.655Q16.254-60.553 15.960-60.553Q15.529-60.553 15.141-60.759Q14.753-60.966 14.519-61.329Q14.285-61.691 14.285-62.132M19.501-60.621L17.898-60.621L17.898-60.901Q18.123-60.901 18.272-60.935Q18.421-60.970 18.421-61.110L18.421-64.729Q18.421-64.999 18.313-65.061Q18.205-65.122 17.898-65.122L17.898-65.403L18.974-65.478L18.974-61.110Q18.974-60.973 19.125-60.937Q19.275-60.901 19.501-60.901L19.501-60.621M20.055-62.156Q20.055-62.477 20.179-62.766Q20.304-63.055 20.530-63.278Q20.755-63.502 21.051-63.622Q21.347-63.742 21.664-63.742Q21.993-63.742 22.254-63.642Q22.515-63.543 22.691-63.361Q22.868-63.178 22.962-62.920Q23.055-62.662 23.055-62.330Q23.055-62.238 22.973-62.217L20.718-62.217L20.718-62.156Q20.718-61.568 21.001-61.185Q21.285-60.802 21.852-60.802Q22.174-60.802 22.442-60.995Q22.710-61.188 22.799-61.503Q22.806-61.544 22.881-61.558L22.973-61.558Q23.055-61.534 23.055-61.462Q23.055-61.455 23.049-61.428Q22.936-61.031 22.565-60.792Q22.194-60.553 21.770-60.553Q21.333-60.553 20.933-60.761Q20.533-60.970 20.294-61.337Q20.055-61.704 20.055-62.156M20.724-62.426L22.539-62.426Q22.539-62.703 22.442-62.955Q22.345-63.208 22.146-63.364Q21.948-63.519 21.664-63.519Q21.388-63.519 21.174-63.361Q20.960-63.202 20.842-62.947Q20.724-62.692 20.724-62.426M23.965-58.864L23.896-58.864Q23.862-58.864 23.840-58.890Q23.818-58.915 23.818-58.950Q23.818-58.994 23.848-59.011Q24.204-59.315 24.453-59.705Q24.703-60.095 24.855-60.527Q25.007-60.959 25.077-61.428Q25.147-61.896 25.147-62.371Q25.147-62.850 25.077-63.316Q25.007-63.783 24.853-64.218Q24.700-64.654 24.448-65.042Q24.197-65.430 23.848-65.724Q23.818-65.741 23.818-65.786Q23.818-65.820 23.840-65.845Q23.862-65.871 23.896-65.871L23.965-65.871Q23.975-65.871 23.983-65.869Q23.992-65.868 24.002-65.864Q24.546-65.464 24.918-64.911Q25.291-64.357 25.472-63.711Q25.653-63.065 25.653-62.371Q25.653-61.670 25.472-61.023Q25.291-60.375 24.917-59.821Q24.542-59.267 24.002-58.871Q23.992-58.871 23.983-58.869Q23.975-58.868 23.965-58.864\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">SEQ computes newPC at the end of the cycle from this instruction&#39;s signals (top). SEQ+ saves those signals in small registers (pIcode, pValC, ...) and computes the current PC at the start of the next cycle from them (bottom) -- the same logic, relocated. This is circuit retiming.\u003C\u002Ffigcaption>",1785117687783]