123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076 |
- <UserControl x:Class="ProximaAnalizer.Controls.GasPanel.GasPanelTIN"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:ProximaAnalizer.Controls.GasPanel"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <Canvas Height="2820" x:Name="GasMap">
- <Canvas.RenderTransform>
- <TranslateTransform X="-2500" Y="2020"/>
- </Canvas.RenderTransform>
- <Canvas x:Name="Text">
- <TextBlock Text="Ti Source" FontSize="32" Foreground="#FF000000" Canvas.Left="2754" Canvas.Top="500" />
- <TextBlock Text="Auto Refill" FontSize="32" Foreground="#FF000000" Canvas.Left="2740" Canvas.Top="540" />
- <TextBlock Text="System" FontSize="32" Foreground="#FF000000" Canvas.Left="2754" Canvas.Top="580" />
- <TextBlock Text="DEPO" FontSize="32" Foreground="#FF000000" Canvas.Left="3375" Canvas.Top="424" />
- <TextBlock Text="F2 CLEAN" FontSize="32" Foreground="#FF000000" Canvas.Left="3814" Canvas.Top="424" />
- <TextBlock Text="TANK2 LEVEL" FontSize="32" Foreground="#FF000000" Canvas.Left="1710" Canvas.Top="-558" />
- <TextBlock Text="LIQUID SOURCE CONT 2" FontSize="32" Foreground="#FF000000" Canvas.Left="1620" Canvas.Top="-645" />
- <TextBlock Text="BUFFER RACK" FontSize="32" Foreground="#FF000000" Canvas.Left="1739" Canvas.Top="-58" />
- <TextBlock Text="SUB RACK" FontSize="32" Foreground="#FF000000" Canvas.Left="1739" Canvas.Top="-1" />
- <TextBlock Text="N2 PURGE" FontSize="32" Foreground="#FF000000" Canvas.Left="1739" Canvas.Top="56" />
- <TextBlock Text="UNIT" FontSize="32" Foreground="#FF000000" Canvas.Left="1739" Canvas.Top="113" />
- <TextBlock Text="EXHAUST-1" FontSize="32" Foreground="#FF0000FF" Canvas.Left="929" Canvas.Top="659" />
- <!--<TextBlock Text="68" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1493" Canvas.Top="-1125" />-->
- <TextBlock Text="F2/N2" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3348" Canvas.Top="292" />
- <TextBlock Text="NF3" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3466" Canvas.Top="292" />
- <TextBlock Text="N2-2" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3571" Canvas.Top="290" />
- <TextBlock Text="SiH4" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3693" Canvas.Top="292" />
- <TextBlock Text="NH3-1" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3920" Canvas.Top="292" />
- <TextBlock Text="N2-1" FontSize="32" Foreground="#FF0000FF" Canvas.Left="4430" Canvas.Top="292" />
- <TextBlock Text="REC-1" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2012" Canvas.Top="-1454" />
- <TextBlock Text="REC-2" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2012" Canvas.Top="-1397" />
- <TextBlock Text="REC-3" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2012" Canvas.Top="-1341" />
- <TextBlock Text="ATM" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1774" Canvas.Top="-1896" />
- <TextBlock Text="EV-TANK2" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2872" Canvas.Top="-238" />
- <TextBlock Text="Z-PURGE" FontSize="28" HorizontalAlignment="Center" Foreground="#FF0000FF" Canvas.Left="2949" Canvas.Top="-200" />
- <TextBlock Text="-OUT" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2062" Canvas.Top="-1171" />
- <TextBlock Text="BG-1" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2184" Canvas.Top="-2051" />
- <TextBlock Text="BG-2" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2184" Canvas.Top="-1995" />
- <TextBlock Text="BG-3" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2184" Canvas.Top="-1938" />
- <TextBlock Text="BG-4" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2184" Canvas.Top="-955" />
- <TextBlock Text="BG-5" FontSize="32" Foreground="#FFFF0000" Canvas.Left="2183" Canvas.Top="-1881" />
- <TextBlock Text="N2-10" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2226" Canvas.Top="659" />
- <TextBlock Text="EXHAUST-2" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1340" Canvas.Top="659" />
- <TextBlock Text="N2-9" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1208" Canvas.Top="659" />
- <TextBlock Text="N2-12" FontSize="32" Foreground="#FF0000FF" Canvas.Left="821" Canvas.Top="659" />
- <TextBlock Text="N2-14" FontSize="32" Foreground="#FF0000FF" Canvas.Left="707" Canvas.Top="659" />
- <TextBlock Text="H.REF" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2620" Canvas.Top="653" />
- <TextBlock Text="REF.ACT" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2762" Canvas.Top="653" />
- <TextBlock Text="D.GAS" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2917" Canvas.Top="653" />
- <TextBlock Text="OK" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3490" Canvas.Top="466" />
- <TextBlock Text="OK" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3963" Canvas.Top="466" />
- <TextBlock Text="OK" FontSize="32" Foreground="#FF0000FF" Canvas.Left="4435" Canvas.Top="466" />
- <TextBlock Text="VAC 1" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3286" Canvas.Top="651" />
- <TextBlock Text="VAC 2" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3475" Canvas.Top="651" />
- <TextBlock Text="VAC 3" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3664" Canvas.Top="651" />
- <TextBlock Text="VAC 4" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3853" Canvas.Top="651" />
- <TextBlock Text="VAC 5" FontSize="32" Foreground="#FF0000FF" Canvas.Left="4042" Canvas.Top="651" />
- <TextBlock Text="VAC 6" FontSize="32" Foreground="#FF0000FF" Canvas.Left="4231" Canvas.Top="651" />
- <TextBlock Text="VAC 7" FontSize="32" Foreground="#FF0000FF" Canvas.Left="4420" Canvas.Top="651" />
- <TextBlock Text="WAT-R" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1651" Canvas.Top="-870" />
- <TextBlock Text="WAT-F" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1878" Canvas.Top="-870" />
- <TextBlock Text="C.EXH" FontSize="32" Foreground="#FF0000FF" Canvas.Left="904" Canvas.Top="-1719" />
- <TextBlock Text="P.ZERO" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1093" Canvas.Top="-1719" />
- <TextBlock Text="HH" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1644" Canvas.Top="-502" />
- <TextBlock Text="H" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1757" Canvas.Top="-502" />
- <TextBlock Text="M" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1871" Canvas.Top="-502" />
- <TextBlock Text="L" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1984" Canvas.Top="-502" />
- <TextBlock Text="Ti.MNT" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1651" Canvas.Top="-319" />
- <TextBlock Text="Ti.ZERO" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1868" Canvas.Top="-319" />
- <TextBlock Text="NH3-2" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3796" Canvas.Top="292" />
- <TextBlock Text="N2-11" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2415" Canvas.Top="659" />
- <TextBlock Text="BG-1" FontSize="32" Foreground="#FF0000FF" Canvas.Left="417" Canvas.Top="-634" />
- <TextBlock Text="BG-2" FontSize="32" Foreground="#FF0000FF" Canvas.Left="417" Canvas.Top="-747" />
- <TextBlock Text="BG-3" FontSize="32" Foreground="#FF0000FF" Canvas.Left="417" Canvas.Top="-861" />
- <TextBlock Text="BG-4" FontSize="32" Foreground="#FF0000FF" Canvas.Left="417" Canvas.Top="-407" />
- <TextBlock Text="BG-5" FontSize="32" Foreground="#FFFF0000" Canvas.Left="417" Canvas.Top="-513" />
- <TextBlock Text="HCL 20%" FontSize="32" Foreground="#FF0000FF" Canvas.Left="3192" Canvas.Top="292" />
- <TextBlock Text="PUMP RUN" FontSize="32" Foreground="#FF0000FF" Canvas.Left="505" Canvas.Top="220" />
- <TextBlock Text="N2-70" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1776" Canvas.Top="659" />
- <TextBlock Text="N2-7" FontSize="32" Foreground="#FF0000FF" Canvas.Left="2003" Canvas.Top="659" />
- <TextBlock Text="FOUP" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1570" Canvas.Top="-35" />
- <TextBlock Text="N2 OFF" FontSize="32" Foreground="#FF0000FF" Canvas.Left="1557" Canvas.Top="0" />
- <TextBlock Text="PUMP ECO" FontSize="32" Foreground="#FF0000FF" Canvas.Left="307" Canvas.Top="394" />
- <TextBlock Text="DEPO" FontSize="32" Foreground="#FF000000" Canvas.Left="3375" Canvas.Top="424" />
- <TextBlock Text="F2 CLEAN" FontSize="32" Foreground="#FF000000" Canvas.Left="3814" Canvas.Top="424" />
- <TextBlock Text="PIPE HEATER" FontSize="32" Foreground="#FF000000" Canvas.Left="693" Canvas.Top="-2002" />
- <TextBlock Text="HEATER COOL" FontSize="32" Foreground="#FF000000" Canvas.Left="470" Canvas.Top="-1718" />
- <TextBlock Text="BUFFER RACK" FontSize="32" Foreground="#FF000000" Canvas.Left="1739" Canvas.Top="-58" />
- <TextBlock Text="SUB RACK" FontSize="32" Foreground="#FF000000" Canvas.Left="1739" Canvas.Top="-1" />
- <TextBlock Text="N2 PURGE" FontSize="32" Foreground="#FF000000" Canvas.Left="1739" Canvas.Top="56" />
- <TextBlock Text="UNIT" FontSize="32" Foreground="#FF000000" Canvas.Left="1739" Canvas.Top="113" />
- <TextBlock Text="NF3 CLEAN" FontSize="32" Foreground="#FF000000" Canvas.Left="4272" Canvas.Top="424" />
- </Canvas>
-
- <Canvas x:Name="RecButton" Panel.ZIndex="1">
- <Button x:Name="SensorDP" Width="91" Height="91" Canvas.Left="937.4493408203125" Canvas.Top="472" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="DP" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorMBP" Width="91" Height="91" Canvas.Left="937.4493408203125" Canvas.Top="359" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="MBP" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorAPC" Width="91" Height="91" Canvas.Left="937.4492797851562" Canvas.Top="-1380" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="APC" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorAGV" Width="91" Height="53" Canvas.Left="937.4493408203125" Canvas.Top="265" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="AGV" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="MFC1" Width="91" Height="91" Canvas.Left="4414.56884765625" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Grid Width="91">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="8"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Text="1" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
- <TextBlock Grid.Row="2" x:Name="MFC1_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
- </Grid>
- </Button>
- <Button x:Name="MFC2" Width="91" Height="91" Canvas.Left="4357.865234375" Canvas.Top="-737" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Grid Width="91">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="8"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Text="2" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
- <TextBlock Grid.Row="2" x:Name="MFC2_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
- </Grid>
- </Button>
- <Button x:Name="MFC3" Width="91" Height="91" Canvas.Left="4301.1826171875" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Grid Width="91">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="8"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Text="3" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
- <TextBlock Grid.Row="2" x:Name="MFC3_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
- </Grid>
- </Button>
- <Button x:Name="MFC4" Width="91" Height="91" Canvas.Left="4244.47998046875" Canvas.Top="-737" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Grid Width="91">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="8"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Text="4" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
- <TextBlock Grid.Row="2" x:Name="MFC4_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
- </Grid>
- </Button>
- <Button x:Name="MFC5" Width="91" Height="91" Canvas.Left="4187.796875" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Grid Width="91">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="8"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Text="5" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
- <TextBlock Grid.Row="2" x:Name="MFC5_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
- </Grid>
- </Button>
- <Button x:Name="MFC7" Width="91" Height="91" Canvas.Left="4074.4111328125" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Grid Width="91">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="8"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Text="7" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
- <TextBlock Grid.Row="2" x:Name="MFC7_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
- </Grid>
- </Button>
- <Button x:Name="MFC9" Width="91" Height="91" Canvas.Left="3904.32421875" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Grid Width="91">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="8"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Text="9" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
- <TextBlock Grid.Row="2" x:Name="MFC9_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
- </Grid>
- </Button>
- <Button x:Name="MFC10" Width="91" Height="91" Canvas.Left="3790.936279296875" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Grid Width="91">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="8"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Text="10" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
- <TextBlock Grid.Row="2" x:Name="MFC10_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
- </Grid>
- </Button>
- <Button x:Name="MFC11" Width="91" Height="91" Canvas.Left="3677.55078125" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Grid Width="91">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="8"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Text="11" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
- <TextBlock Grid.Row="2" x:Name="MFC11_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
- </Grid>
- </Button>
- <Button x:Name="MFC12" Width="91" Height="91" Canvas.Left="3564.165771484375" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Grid Width="91">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="8"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Text="12" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
- <TextBlock Grid.Row="2" x:Name="MFC12_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
- </Grid>
- </Button>
- <Button x:Name="MFC13" Width="91" Height="91" Canvas.Left="3450.780029296875" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Grid Width="91">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="8"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Text="13" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
- <TextBlock Grid.Row="2" x:Name="MFC13_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
- </Grid>
- </Button>
- <Button x:Name="MFC14" Width="91" Height="91" Canvas.Left="3337.394287109375" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Grid Width="91">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="8"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Text="14" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
- <TextBlock Grid.Row="2" x:Name="MFC14_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
- </Grid>
- </Button>
- <Button x:Name="RBU_NoName_0" Width="76" Height="60" Canvas.Left="1776.5045166015625" Canvas.Top="-1054" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="" FontSize="28" Foreground="#000000"/>
- </Button>
- <Button x:Name="MFC17" Width="91" Height="91" Canvas.Left="2959.489990234375" Canvas.Top="-567" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Grid Width="91">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="8"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Text="17" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
- <TextBlock Grid.Row="2" x:Name="MFC17_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
- </Grid>
- </Button>
- <Button x:Name="RBU_FL" Width="60" Height="132" Canvas.Left="3012.4033203125" Canvas.Top="-115" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="FL" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="MFM16" Width="91" Height="91" Canvas.Left="2275.275634765625" Canvas.Top="152" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Grid Width="91">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="8"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Text="MFM16" FontSize="24" Foreground="#FF000000" HorizontalAlignment="Center" />
- <TextBlock Grid.Row="2" x:Name="MFM16_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
- </Grid>
- </Button>
- <Button x:Name="MFC16" Width="91" Height="91" Canvas.Left="2180.787353515625" Canvas.Top="38" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Grid Width="91">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="8"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Text="16" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
- <TextBlock Grid.Row="2" x:Name="MFC16_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
- </Grid>
- </Button>
- <Button x:Name="VG11" Width="94" Height="53" Canvas.Left="1133.9786376953125" Canvas.Top="-1398" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="VG11" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="VG13" Width="94" Height="53" Canvas.Left="1133.9786376953125" Canvas.Top="-1285" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="VG13" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="PS13" Width="94" Height="53" Canvas.Left="1133.9786376953125" Canvas.Top="-1172" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="PS13" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="VG14" Width="94" Height="53" Canvas.Left="680.4337158203125" Canvas.Top="-94" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="VG14" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="RBU_FL_1" Width="60" Height="132" Canvas.Left="1273.826904296875" Canvas.Top="-370" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="FL" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorHREF" Width="91" Height="91" Canvas.Left="2615.443359375" Canvas.Top="699" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="REF" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorDEPO" Width="91" Height="91" Canvas.Left="3280.88134765625" Canvas.Top="510" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="DPO" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorF2CLN" Width="91" Height="91" Canvas.Left="3753.0810546875" Canvas.Top="510" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="CLN" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorHTR1" Width="91" Height="91" Canvas.Left="342.0500793457031" Canvas.Top="-1916" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="HTR1" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorHTR2" Width="91" Height="91" Canvas.Left="531.0264892578125" Canvas.Top="-1916" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="HTR2" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorHTR3" Width="91" Height="91" Canvas.Left="720.0028686523438" Canvas.Top="-1916" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="HTR3" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorBWR" Width="91" Height="91" Canvas.Left="342.0500793457031" Canvas.Top="-1633" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="BWR" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorDPR1" Width="91" Height="91" Canvas.Left="531.0264892578125" Canvas.Top="-1633" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="DPR1" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorCEXH" Width="91" Height="91" Canvas.Left="908.979248046875" Canvas.Top="-1633" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="EXH" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorTMNT" Width="91" Height="91" Canvas.Left="1655.4329833984375" Canvas.Top="-272" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="MNT" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorTADJ" Width="91" Height="91" Canvas.Left="1882.2047119140625" Canvas.Top="-272" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="ADJ" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorNF3Cln" Width="91" Height="91" Canvas.Left="4225.51171875" Canvas.Top="510" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="CLN" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="MFC6" Width="91" Height="91" Canvas.Left="4131.06787109375" Canvas.Top="-737" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Grid Width="91">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="8"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Text="6" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
- <TextBlock Grid.Row="2" x:Name="MFC6_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
- </Grid>
- </Button>
- <Button x:Name="TANK3" Width="132" Height="53" Canvas.Left="2919.81103515625" Canvas.Top="-1720" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="TANK-3" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="TANK2" Width="132" Height="53" Canvas.Left="2919.81103515625" Canvas.Top="-1776" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="TANK-2" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="HEX1" Width="132" Height="53" Canvas.Left="2919.81103515625" Canvas.Top="-1663" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="H-EX 1" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="HEX2" Width="132" Height="53" Canvas.Left="2919.81103515625" Canvas.Top="-1493" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="H-EX 2" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="HEX3" Width="132" Height="53" Canvas.Left="2919.81103515625" Canvas.Top="-1380" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="H-EX 3" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="TANK1" Width="132" Height="53" Canvas.Left="2813.998291015625" Canvas.Top="-1020" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="TANK-1" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="VG31" Width="94" Height="53" Canvas.Left="2832.896240234375" Canvas.Top="-964" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="VG31" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="RBU_71" Width="91" Height="91" Canvas.Left="805.1658935546875" Canvas.Top="-1380" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Grid Width="91">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="8"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Text="71" FontSize="28" Foreground="#FF0000FF" HorizontalAlignment="Center" />
- <TextBlock Grid.Row="2" x:Name="RBU_71_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
- </Grid>
- </Button>
- <Button x:Name="SensorHTR4" Width="91" Height="91" Canvas.Left="908.979248046875" Canvas.Top="-1916" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="HTR4" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorHTR5" Width="91" Height="91" Canvas.Left="1097.95556640625" Canvas.Top="-1916" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="HTR5" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorDPR2" Width="91" Height="91" Canvas.Left="720.0028686523438" Canvas.Top="-1633" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="DPR2" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorPZERO" Width="91" Height="91" Canvas.Left="1097.955810546875" Canvas.Top="-1633" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="ZERO" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="MFC19" Width="91" Height="91" Canvas.Left="3224.00830078125" Canvas.Top="-624" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Grid Width="91">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="8"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Text="19" FontSize="28" Foreground="#FFFF0000" HorizontalAlignment="Center" />
- <TextBlock Grid.Row="2" x:Name="MFC19_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
- </Grid>
- </Button>
- <Button x:Name="SensorSP1" Width="91" Height="91" Canvas.Left="550.0493774414062" Canvas.Top="472" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="SP1" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorWATR" Width="91" Height="91" Canvas.Left="1655.4381103515625" Canvas.Top="-826" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="WAT1" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorWATF" Width="91" Height="91" Canvas.Left="1882.2047119140625" Canvas.Top="-826" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="WAT2" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="RBU_FL_2" Width="60" Height="132" Canvas.Left="1746.1414794921875" Canvas.Top="310" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="FL" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="RBU_FL_3" Width="60" Height="132" Canvas.Left="1972.9124755859375" Canvas.Top="310" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="FL" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorFN" Width="91" Height="91" Canvas.Left="1568.50390625" Canvas.Top="38" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="F.N" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="SensorECO" Width="91" Height="91" Canvas.Left="342.04718017578125" Canvas.Top="472" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <TextBlock Text="ECO" FontSize="28" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="MFC18" Width="91" Height="91" Canvas.Left="4017.68212890625" Canvas.Top="-737" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Grid Width="91">
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="8"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <TextBlock Text="18" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Center" />
- <TextBlock Grid.Row="2" x:Name="MFC18_Value" Text="" FontSize="28" Foreground="#FF000000" HorizontalAlignment="Left" />
- </Grid>
- </Button>
- </Canvas>
- <Canvas x:Name="RecBorder" Panel.ZIndex="0">
- <Border x:Name="RBO_NoName_1" Width="491" Height="529" Canvas.Left="1569" Canvas.Top="-673" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="0" BorderThickness="2" >
- <TextBlock Text="" FontSize="28" Foreground="#000000"/>
- </Border>
- <Border x:Name="RBO_NoName_2" Width="321" Height="227" Canvas.Left="1739" Canvas.Top="-68" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="0" BorderThickness="2" >
- <TextBlock Text="" FontSize="28" Foreground="#000000"/>
- </Border>
- <Border x:Name="RBO_NoName_3" Width="265" Height="435" Canvas.Left="2816" Canvas.Top="-597" BorderBrush="#FF0000FF" Background="Transparent" Panel.ZIndex="0" BorderThickness="2" >
- <TextBlock Text="" FontSize="28" Foreground="#000000"/>
- </Border>
- <Border x:Name="RBO_NoName_4" Width="113" Height="246" Canvas.Left="926" Canvas.Top="-1391" BorderBrush="#FF0000FF" Background="Transparent" Panel.ZIndex="0" BorderThickness="2" >
- <TextBlock Text="" FontSize="28" Foreground="#000000"/>
- </Border>
- </Canvas>
- <Canvas x:Name="CirButton" Panel.ZIndex="1">
- <Button x:Name="ValveAV67" Width="76" Height="76" Canvas.Left="1455" Canvas.Top="-1372" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="67" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV1_1" Width="76" Height="76" Canvas.Left="4422" Canvas.Top="-276" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="1" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV11_1" Width="76" Height="76" Canvas.Left="3969" Canvas.Top="-389" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="11" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV12_1" Width="76" Height="76" Canvas.Left="3912" Canvas.Top="-276" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="12" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV16_2" Width="76" Height="76" Canvas.Left="3798" Canvas.Top="-276" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="16" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV15" Width="76" Height="76" Canvas.Left="3855" Canvas.Top="-389" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="15" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV19_1" Width="76" Height="76" Canvas.Left="3742" Canvas.Top="-389" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="19" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV20" Width="76" Height="76" Canvas.Left="3685" Canvas.Top="-276" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="20" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV25" Width="76" Height="76" Canvas.Left="3515" Canvas.Top="-389" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="25" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV26" Width="76" Height="76" Canvas.Left="3458" Canvas.Top="-276" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="26" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV29" Width="76" Height="76" Canvas.Left="3402" Canvas.Top="-389" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="29" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV30" Width="76" Height="76" Canvas.Left="3345" Canvas.Top="-276" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="30" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV3_1" Width="76" Height="76" Canvas.Left="4422" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="3" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV4_1" Width="76" Height="76" Canvas.Left="4365" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="4" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV5_1" Width="76" Height="76" Canvas.Left="4309" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="5" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV6_1" Width="76" Height="76" Canvas.Left="4252" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="6" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV7_1" Width="76" Height="76" Canvas.Left="4195" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="7" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV8" Width="76" Height="76" Canvas.Left="4139" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="8" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV9_1" Width="76" Height="76" Canvas.Left="4082" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="9" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV13_1" Width="76" Height="76" Canvas.Left="3969" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="13" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV14_1" Width="76" Height="76" Canvas.Left="3912" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="14" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV17_1" Width="76" Height="76" Canvas.Left="3855" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="17" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV18_1" Width="76" Height="76" Canvas.Left="3798" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="18" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV22" Width="76" Height="76" Canvas.Left="3685" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="22" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV21" Width="76" Height="76" Canvas.Left="3742" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="21" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV27" Width="76" Height="76" Canvas.Left="3515" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="27" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV28" Width="76" Height="76" Canvas.Left="3458" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="28" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV31" Width="76" Height="76" Canvas.Left="3402" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="31" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV32" Width="76" Height="76" Canvas.Left="3345" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="32" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV23" Width="76" Height="76" Canvas.Left="3572" Canvas.Top="-276" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="23" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV24" Width="76" Height="76" Canvas.Left="3572" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="24" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV121" Width="76" Height="76" Canvas.Left="2684" Canvas.Top="-1788" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="121" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV123" Width="76" Height="76" Canvas.Left="2778" Canvas.Top="-1731" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="123" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV125" Width="76" Height="76" Canvas.Left="2400" Canvas.Top="-1674" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="125" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV126" Width="76" Height="76" Canvas.Left="2495" Canvas.Top="-1618" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="126" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV127" Width="76" Height="76" Canvas.Left="2495" Canvas.Top="-1504" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="127" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV128" Width="76" Height="76" Canvas.Left="2400" Canvas.Top="-1448" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="128" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV101" Width="76" Height="76" Canvas.Left="2967" Canvas.Top="-351" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="101" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV100" Width="76" Height="76" Canvas.Left="2854" Canvas.Top="-351" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="100" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV102" Width="76" Height="76" Canvas.Left="2854" Canvas.Top="-465" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="102" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV112" Width="76" Height="76" Canvas.Left="2472" Canvas.Top="45" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="112" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV105" Width="76" Height="76" Canvas.Left="2873" Canvas.Top="-786" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="105" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV104" Width="76" Height="76" Canvas.Left="2188" Canvas.Top="348" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="104" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV103" Width="76" Height="76" Canvas.Left="2967" Canvas.Top="-711" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="103" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV75" Width="76" Height="76" Canvas.Left="1266" Canvas.Top="-1296" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="75" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV60" Width="76" Height="76" Canvas.Left="1266" Canvas.Top="-1183" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="60" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV74" Width="76" Height="76" Canvas.Left="1342" Canvas.Top="-786" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="74" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV77" Width="76" Height="76" Canvas.Left="813" Canvas.Top="-106" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="77" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV73" Width="76" Height="76" Canvas.Left="813" Canvas.Top="-786" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="73" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV120" Width="76" Height="76" Canvas.Left="3118" Canvas.Top="-1788" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="120" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV122" Width="76" Height="76" Canvas.Left="3213" Canvas.Top="-1731" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="122" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV124" Width="76" Height="76" Canvas.Left="2495" Canvas.Top="-1731" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="124" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV129" Width="76" Height="76" Canvas.Left="2495" Canvas.Top="-1391" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="129" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV130" Width="76" Height="76" Canvas.Left="2400" Canvas.Top="-1334" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="130" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV131" Width="76" Height="76" Canvas.Left="2495" Canvas.Top="-1277" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="131" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV52" Width="76" Height="76" Canvas.Left="2495" Canvas.Top="-1164" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="52" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV136" Width="76" Height="76" Canvas.Left="2400" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="136" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV137" Width="76" Height="76" Canvas.Left="2495" Canvas.Top="-975" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="137" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV107" Width="76" Height="76" Canvas.Left="2400" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="107" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV110" Width="76" Height="76" Canvas.Left="2721" Canvas.Top="-975" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="110" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV106" Width="76" Height="76" Canvas.Left="3118" Canvas.Top="83" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="106" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAVDG1" Width="76" Height="76" Canvas.Left="1455" Canvas.Top="-1259" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="DG1" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV68" Width="76" Height="76" Canvas.Left="1455" Canvas.Top="-1144" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="68" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV72" Width="76" Height="76" Canvas.Left="680" Canvas.Top="-1372" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="72" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV87" Width="76" Height="76" Canvas.Left="558" Canvas.Top="-881" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="87" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV86" Width="76" Height="76" Canvas.Left="558" Canvas.Top="-767" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="86" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV85" Width="76" Height="76" Canvas.Left="558" Canvas.Top="-654" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="85" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV88" Width="76" Height="76" Canvas.Left="558" Canvas.Top="-427" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="88" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV40" Width="76" Height="76" Canvas.Left="3288" Canvas.Top="-389" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="40" FontSize="32" Foreground="#FFFF0000"/>
- </Button>
- <Button x:Name="ValveAV42" Width="76" Height="76" Canvas.Left="3288" Canvas.Top="-918" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="42" FontSize="32" Foreground="#FFFF0000"/>
- </Button>
- <Button x:Name="ValveAV43" Width="76" Height="76" Canvas.Left="3232" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="43" FontSize="32" Foreground="#FFFF0000"/>
- </Button>
- <Button x:Name="ValveAV41" Width="76" Height="76" Canvas.Left="3232" Canvas.Top="-276" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="41" FontSize="32" Foreground="#FFFF0000"/>
- </Button>
- <Button x:Name="ValveAV133" Width="76" Height="76" Canvas.Left="2400" Canvas.Top="-1221" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="133" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV39" Width="76" Height="76" Canvas.Left="4025" Canvas.Top="-1032" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="39" FontSize="32" Foreground="#FFFF0000"/>
- </Button>
- <Button x:Name="ValveAV79" Width="76" Height="76" Canvas.Left="945" Canvas.Top="-1240" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="79" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV540" Width="76" Height="76" Canvas.Left="1739" Canvas.Top="197" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="540" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV54" Width="76" Height="76" Canvas.Left="1965" Canvas.Top="197" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="54" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV111" Width="76" Height="76" Canvas.Left="2661" Canvas.Top="234" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="111" FontSize="32" Foreground="#FF0000FF"/>
- </Button>
- <Button x:Name="ValveAV89" Width="76" Height="76" Canvas.Left="558" Canvas.Top="-533" BorderBrush="#FF000000" Background="Transparent" Panel.ZIndex="1" BorderThickness="2" Click="BTN_Click">
- <Button.Resources>
- <Style TargetType="{x:Type Border}">
- <Setter Property="CornerRadius" Value="75"/>
- </Style>
- </Button.Resources>
- <TextBlock Text="89" FontSize="32" Foreground="#FFFF0000"/>
- </Button>
- </Canvas>
- <Canvas x:Name="CirBorder" Panel.ZIndex="0">
- <Border x:Name="CBO_NoName_5" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="968" Canvas.Top="-280"/>
- <Border x:Name="CBO_NoName_6" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="1489" Canvas.Top="-1440" />
- <Border x:Name="CBO_NoName_7" BorderBrush="#FF000000" Width="11" Height="11" CornerRadius="11" BorderThickness="2" Canvas.Left="2357" Canvas.Top="-1415" />
- <Border x:Name="CBO_NoName_8" BorderBrush="#FF000000" Width="11" Height="11" CornerRadius="11" BorderThickness="2" Canvas.Left="2289" Canvas.Top="-1302" />
- <Border x:Name="CBO_NoName_9" BorderBrush="#FF000000" Width="11" Height="11" CornerRadius="11" BorderThickness="2" Canvas.Left="2357" Canvas.Top="-1642" />
- <Border x:Name="CBO_NoName_10" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="3992" Canvas.Top="-158" />
- <Border x:Name="CBO_NoName_11" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="3879" Canvas.Top="-158" />
- <Border x:Name="CBO_NoName_12" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="3765" Canvas.Top="-158" />
- <Border x:Name="CBO_NoName_13" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="3539" Canvas.Top="-158" />
- <Border x:Name="CBO_NoName_14" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="3425" Canvas.Top="-158" />
- <Border x:Name="CBO_NoName_15" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="1584" Canvas.Top="-1036" />
- <Border x:Name="CBO_NoName_16" BorderBrush="#FF000000" Width="11" Height="11" CornerRadius="11" BorderThickness="2" Canvas.Left="3037" Canvas.Top="-168" />
- <Border x:Name="CBO_NoName_17" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="2306" Canvas.Top="-164" />
- <Border x:Name="CBO_NoName_18" BorderBrush="#FF000000" Width="6" Height="6" CornerRadius="6" BorderThickness="2" Canvas.Left="2305" Canvas.Top="-44" />
- <Border x:Name="CBO_NoName_19" BorderBrush="#FF000000" Width="6" Height="6" CornerRadius="6" BorderThickness="2" Canvas.Left="2305" Canvas.Top="-22" />
- <Border x:Name="CBO_NoName_20" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="1376" Canvas.Top="-1376" />
- <Border x:Name="CBO_NoName_21" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="1376" Canvas.Top="-1149" />
- <Border x:Name="CBO_NoName_22" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="1376" Canvas.Top="-1262" />
- <Border x:Name="CBO_NoName_23" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="1376" Canvas.Top="-1440" />
- <Border x:Name="CBO_NoName_24" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="1365" Canvas.Top="-630" />
- <Border x:Name="CBO_NoName_25" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="1376" Canvas.Top="-499" />
- <Border x:Name="CBO_NoName_26" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="968" Canvas.Top="-72" />
- <Border x:Name="CBO_NoName_27" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="968" Canvas.Top="117" />
- <Border x:Name="CBO_NoName_28" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="1290" Canvas.Top="-441" />
- <Border x:Name="CBO_NoName_29" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="1225" Canvas.Top="-204" />
- <Border x:Name="CBO_NoName_30" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="714" Canvas.Top="-847" />
- <Border x:Name="CBO_NoName_31" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="836" Canvas.Top="-668" />
- <Border x:Name="CBO_NoName_32" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="1225" Canvas.Top="-204" />
- <Border x:Name="CBO_NoName_33" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="1376" Canvas.Top="-1206" />
- <Border x:Name="CBO_NoName_34" BorderBrush="#FF000000" Width="11" Height="11" CornerRadius="11" BorderThickness="2" Canvas.Left="4455" Canvas.Top="-489" />
- <Border x:Name="CBO_NoName_35" BorderBrush="#FF000000" Width="11" Height="11" CornerRadius="11" BorderThickness="2" Canvas.Left="2357" Canvas.Top="-1302" />
- <Border x:Name="CBO_NoName_36" BorderBrush="#FF000000" Width="11" Height="11" CornerRadius="11" BorderThickness="2" Canvas.Left="2221" Canvas.Top="-1415" />
- <Border x:Name="CBO_NoName_37" BorderBrush="#FF000000" Width="11" Height="11" CornerRadius="11" BorderThickness="2" Canvas.Left="2357" Canvas.Top="-943" />
- <Border x:Name="CBO_NoName_38" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="2212" Canvas.Top="-164" />
- <Border x:Name="CBO_NoName_39" BorderBrush="#FF000000" Width="6" Height="6" CornerRadius="6" BorderThickness="2" Canvas.Left="2683" Canvas.Top="-250" />
- <Border x:Name="CBO_NoName_40" BorderBrush="#FF000000" Width="6" Height="6" CornerRadius="6" BorderThickness="2" Canvas.Left="2683" Canvas.Top="-228" />
- <Border x:Name="CBO_NoName_41" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="968" Canvas.Top="-1451" />
- <Border x:Name="CBO_NoName_42" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="968" Canvas.Top="-1036" />
- <Border x:Name="CBO_NoName_43" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="847" Canvas.Top="-1036" />
- <Border x:Name="CBO_NoName_44" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="847" Canvas.Top="-1451" />
- <Border x:Name="CBO_NoName_45" BorderBrush="#FF000000" Width="6" Height="6" CornerRadius="6" BorderThickness="2" Canvas.Left="704" Canvas.Top="-1156" />
- <Border x:Name="CBO_NoName_46" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="714" Canvas.Top="-393" />
- <Border x:Name="CBO_NoName_47" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="714" Canvas.Top="-499" />
- <Border x:Name="CBO_NoName_48" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="714" Canvas.Top="-620" />
- <Border x:Name="CBO_NoName_49" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="714" Canvas.Top="-733" />
- <Border x:Name="CBO_NoName_50" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="714" Canvas.Top="-733" />
- <Border x:Name="CBO_NoName_51" BorderBrush="#FF000000" Width="8" Height="8" CornerRadius="8" BorderThickness="2" Canvas.Left="714" Canvas.Top="-620" />
- <Border x:Name="CBO_NoName_52" BorderBrush="#FF000000" Width="28" Height="28" CornerRadius="28" BorderThickness="2" Canvas.Left="3312" Canvas.Top="-158" />
- <Border x:Name="CBO_NoName_53" BorderBrush="#FF000000" Width="11" Height="11" CornerRadius="11" BorderThickness="2" Canvas.Left="2357" Canvas.Top="-1245"/>
- <Border x:Name="SensorATM" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="1769" Canvas.Top="-1852" />
- <Border x:Name="SensorNoName_54" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="1776" Canvas.Top="-1844" />
- <Border x:Name="SensorREFACT" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="2767" Canvas.Top="699" />
- <Border x:Name="SensorNoName_55" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="2774" Canvas.Top="707" />
- <Border x:Name="SensorDEPOOK" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="3470" Canvas.Top="510" />
- <Border x:Name="SensorNoName_56" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="3477" Canvas.Top="518" />
- <Border x:Name="SensorF2ClnOK" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="3942" Canvas.Top="510" />
- <Border x:Name="SensorNoName_57" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="3950" Canvas.Top="518" />
- <Border x:Name="SensorVAC1" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="3281" Canvas.Top="699" />
- <Border x:Name="SensorNoName_58" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="3288" Canvas.Top="707" />
- <Border x:Name="SensorVAC2" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="3470" Canvas.Top="699" />
- <Border x:Name="SensorNoName_59" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="3477" Canvas.Top="707" />
- <Border x:Name="SensorVAC3" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="3659" Canvas.Top="699" />
- <Border x:Name="SensorNoName_60" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="3666" Canvas.Top="707" />
- <Border x:Name="SensorVAC4" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="3848" Canvas.Top="699" />
- <Border x:Name="SensorNoName_61" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="3855" Canvas.Top="707" />
- <Border x:Name="SensorVAC5" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="4037" Canvas.Top="699" />
- <Border x:Name="SensorNoName_62" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="4044" Canvas.Top="707" />
- <Border x:Name="SensorHHOK" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="1599" Canvas.Top="-454" />
- <Border x:Name="SensorNoName_63" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="1606" Canvas.Top="-446" />
- <Border x:Name="SensorHOK" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="1712" Canvas.Top="-454" />
- <Border x:Name="SensorNoName_64" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="1720" Canvas.Top="-446" />
- <Border x:Name="SensorMOK" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="1826" Canvas.Top="-454" />
- <Border x:Name="SensorNoName_65" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="1833" Canvas.Top="-446" />
- <Border x:Name="SensorLOK" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="1939" Canvas.Top="-454" />
- <Border x:Name="SensorNoName_66" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="1946" Canvas.Top="-446" />
- <Border x:Name="SensorNF3OK" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="4414" Canvas.Top="510" />
- <Border x:Name="SensorNoName_67" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="4422" Canvas.Top="518" />
- <Border x:Name="SensorVAC6" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="4226" Canvas.Top="699" />
- <Border x:Name="SensorNoName_68" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="4233" Canvas.Top="707" />
- <Border x:Name="SensorDGASOK" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="2918" Canvas.Top="699" />
- <Border x:Name="SensorNoName_69" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="2925" Canvas.Top="707" />
- <Border x:Name="SensorPRUN" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="550" Canvas.Top="265" />
- <Border x:Name="SensorNoName_70" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="558" Canvas.Top="272" />
- <Border x:Name="SensorVAC7" BorderBrush="#FF0000FF" Width="91" Height="91" CornerRadius="91" BorderThickness="2" Canvas.Left="4414" Canvas.Top="699" />
- <Border x:Name="SensorNoName_71" BorderBrush="#FF0000FF" Width="76" Height="76" CornerRadius="76" BorderThickness="2" Canvas.Left="4422" Canvas.Top="707" />
- </Canvas>
- <Canvas x:Name="Line" Panel.ZIndex="0">
- <Line X1="2294.3" Y1="-1636.53" X2="2362.33" Y2="-1636.53" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2362.33" Y1="-1693.23" X2="2362.33" Y2="-1636.53" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4459.84" Y1="173.852" X2="4459.84" Y2="-200.315" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4063.12" Y1="-483.778" X2="4459.96" Y2="-483.788" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4459.9" Y1="-483.788" X2="4459.9" Y2="-275.905" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4119.75" Y1="-1239.69" X2="2570.21" Y2="-1239.68" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2226.27" Y1="-1309.61" X2="2226.27" Y2="-1409.76" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2226.27" Y1="-1139.53" X2="2226.27" Y2="-1283.15" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2226.27" Y1="-994.015" X2="2226.27" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2294.3" Y1="-1636.53" X2="2294.3" Y2="-1579.83" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2362.33" Y1="-1409.76" X2="2324.54" Y2="-1409.76" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2362.33" Y1="-1466.46" X2="2362.33" Y2="-1409.76" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2400.12" Y1="-1409.76" X2="2352.88" Y2="-1409.76" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2362.33" Y1="-1353.07" X2="2362.33" Y2="-1296.38" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4119.75" Y1="-483.779" X2="4119.76" Y2="-532.914" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1493.04" Y1="-1031.81" X2="1587.53" Y2="-1031.81" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1625.32" Y1="-1436.22" X2="994.142" Y2="-1436.21" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1625.32" Y1="-1458.89" X2="971.465" Y2="-1458.89" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="994.142" Y1="-1436.21" X2="994.143" Y2="-1379.53" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="971.465" Y1="-1458.89" X2="971.465" Y2="-1379.53" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="971.467" Y1="-1165.8" X2="971.468" Y2="-929.758" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="971.466" Y1="-1288.82" X2="971.466" Y2="-1237.98" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="971.468" Y1="-907.081" X2="971.469" Y2="-671.015" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="971.469" Y1="-671.015" X2="971.472" Y2="264.563" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="971.473" Y1="317.476" X2="971.473" Y2="359.051" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="994.144" Y1="-1165.88" X2="994.146" Y2="-671.013" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="994.143" Y1="-1288.82" X2="994.143" Y2="-1237.9" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="994.146" Y1="-671.013" X2="994.149" Y2="264.563" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="994.15" Y1="317.476" X2="994.15" Y2="359.051" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="971.473" Y1="563.146" X2="971.474" Y2="612.287" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="994.15" Y1="563.146" X2="994.151" Y2="612.287" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1493.04" Y1="-1182.99" X2="1493.04" Y2="-1145.19" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1493.04" Y1="-1296.38" X2="1493.04" Y2="-1258.57" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1493.04" Y1="-1069.61" X2="1493.04" Y2="-1031.81" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1493.04" Y1="-1371.97" X2="1493.04" Y2="-1436.22" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="963.906" Y1="347.713" X2="907.213" Y2="347.713" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="907.213" Y1="347.713" X2="907.213" Y2="574.484" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="907.213" Y1="574.484" X2="963.906" Y2="574.484" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1001.7" Y1="347.713" X2="1054.62" Y2="347.713" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1054.62" Y1="347.713" X2="1054.62" Y2="574.484" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1054.62" Y1="574.484" X2="1001.7" Y2="574.484" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="971.473" Y1="449.76" X2="971.473" Y2="472.437" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="994.15" Y1="449.76" X2="994.15" Y2="472.437" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="971.474" Y1="612.287" X2="962.007" Y2="631.177" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="994.151" Y1="612.287" X2="1003.6" Y2="631.177" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4459.84" Y1="272.126" X2="4459.84" Y2="219.206" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4459.9" Y1="-483.779" X2="4459.91" Y2="-532.913" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4459.9" Y1="-918.431" X2="4459.84" Y2="-1749.92" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4403.21" Y1="-483.779" X2="4403.21" Y2="-646.299" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4403.21" Y1="-1031.82" X2="4403.15" Y2="-1636.54" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4346.52" Y1="-483.779" X2="4346.53" Y2="-532.913" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4346.52" Y1="-918.432" X2="4346.52" Y2="-1466.47" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4289.82" Y1="-483.779" X2="4289.82" Y2="-646.299" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4289.82" Y1="-1031.82" X2="4289.82" Y2="-1353.08" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4233.13" Y1="-483.779" X2="4233.14" Y2="-532.914" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4233.07" Y1="-1649.77" X2="4233.07" Y2="-1693.23" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4233.13" Y1="-1479.7" X2="4233.07" Y2="-1623.31" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4233.13" Y1="-1366.31" X2="4233.13" Y2="-1453.24" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4233.13" Y1="-918.432" X2="4233.13" Y2="-1339.85" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4176.44" Y1="-1031.82" X2="4176.44" Y2="-1126.3" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4119.75" Y1="-918.432" X2="4119.75" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4119.75" Y1="-1139.53" X2="4119.75" Y2="-1239.69" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3949.67" Y1="173.852" X2="3949.67" Y2="77.4806" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3949.67" Y1="51.0239" X2="3949.67" Y2="-200.321" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3949.67" Y1="-275.912" X2="3949.67" Y2="-532.914" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3949.67" Y1="-623.622" X2="3949.67" Y2="-956.223" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4006.43" Y1="-1088.5" X2="4006.43" Y2="-1113.06" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4006.36" Y1="-1574.39" X2="4006.36" Y2="-1579.84" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3892.97" Y1="-389.298" X2="3892.97" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3949.67" Y1="-1031.81" X2="3949.67" Y2="-1056.38" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3949.6" Y1="-1706.46" X2="3949.6" Y2="-1749.92" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3949.6" Y1="-1649.77" X2="3949.6" Y2="-1680" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3949.67" Y1="-1479.7" X2="3949.6" Y2="-1623.31" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3949.67" Y1="-1366.31" X2="3949.67" Y2="-1453.24" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3949.67" Y1="-1252.92" X2="3949.67" Y2="-1339.85" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3949.67" Y1="-1139.53" X2="3949.67" Y2="-1169.76" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3949.67" Y1="-1196.22" X2="3949.67" Y2="-1226.46" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3949.67" Y1="-1082.83" X2="3949.67" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3836.28" Y1="120.945" X2="3836.28" Y2="77.4806" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3836.28" Y1="51.0239" X2="3836.28" Y2="-200.321" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3836.28" Y1="-275.912" X2="3836.28" Y2="-532.913" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3836.28" Y1="-623.621" X2="3836.28" Y2="-956.227" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3892.97" Y1="-918.422" X2="3892.97" Y2="-1069.58" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3779.59" Y1="-389.298" X2="3779.59" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3836.22" Y1="-1649.77" X2="3836.22" Y2="-1693.23" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3836.28" Y1="-1479.7" X2="3836.22" Y2="-1623.31" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3836.28" Y1="-1366.31" X2="3836.28" Y2="-1453.24" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3836.28" Y1="-1252.92" X2="3836.28" Y2="-1339.85" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3836.28" Y1="-1139.53" X2="3836.28" Y2="-1169.76" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3836.28" Y1="-1196.22" X2="3836.28" Y2="-1226.46" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3836.28" Y1="-1031.82" X2="3836.28" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3722.89" Y1="272.126" X2="3722.89" Y2="219.206" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3722.89" Y1="173.852" X2="3722.89" Y2="134.174" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3722.89" Y1="134.174" X2="3722.89" Y2="77.4806" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3722.89" Y1="51.0241" X2="3722.89" Y2="-200.321" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3722.91" Y1="-623.621" X2="3722.89" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3779.59" Y1="-918.422" X2="3779.59" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3779.65" Y1="-1761.26" X2="3779.65" Y2="-1976.69" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3779.52" Y1="-1706.46" X2="3779.52" Y2="-1736.69" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3779.52" Y1="-1649.77" X2="3779.52" Y2="-1680" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3779.59" Y1="-1479.7" X2="3779.52" Y2="-1623.31" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3779.59" Y1="-1366.31" X2="3779.59" Y2="-1453.24" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3779.59" Y1="-1252.92" X2="3779.59" Y2="-1339.85" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3779.59" Y1="-1139.53" X2="3779.59" Y2="-1169.76" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3779.59" Y1="-1196.22" X2="3779.59" Y2="-1226.46" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3722.89" Y1="-1031.82" X2="3722.89" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3722.89" Y1="-1139.53" X2="3722.89" Y2="-1169.76" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3722.89" Y1="-1196.22" X2="3722.89" Y2="-1239.69" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3609.51" Y1="173.852" X2="3609.51" Y2="77.4798" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3609.51" Y1="51.0241" X2="3609.51" Y2="-30.2324" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3609.51" Y1="-30.2324" X2="3609.51" Y2="-200.321" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3609.51" Y1="-275.912" X2="3609.51" Y2="-532.913" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3609.51" Y1="-1031.82" X2="3609.51" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3609.51" Y1="-1479.7" X2="3609.51" Y2="-1579.84" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3609.51" Y1="-1366.31" X2="3609.51" Y2="-1453.24" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3609.51" Y1="-1252.92" X2="3609.51" Y2="-1339.85" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3609.51" Y1="-1139.53" X2="3609.51" Y2="-1169.76" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3609.51" Y1="-1196.22" X2="3609.51" Y2="-1226.46" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3552.82" Y1="-389.298" X2="3552.82" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3496.12" Y1="173.852" X2="3496.12" Y2="134.174" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3496.12" Y1="134.174" X2="3496.12" Y2="77.4798" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3496.12" Y1="51.0241" X2="3496.12" Y2="-17.0072" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3496.12" Y1="-43.4639" X2="3496.12" Y2="-200.321" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3496.12" Y1="-275.912" X2="3496.12" Y2="-532.913" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3496.12" Y1="-623.622" X2="3496.13" Y2="-956.226" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3439.43" Y1="-389.298" X2="3439.43" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3496.12" Y1="-1479.7" X2="3496.12" Y2="-1536.38" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3496.12" Y1="-1366.31" X2="3496.12" Y2="-1453.24" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3496.12" Y1="-1252.92" X2="3496.12" Y2="-1339.85" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3496.12" Y1="-1139.53" X2="3496.12" Y2="-1169.76" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3496.12" Y1="-1196.22" X2="3496.12" Y2="-1226.46" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3496.12" Y1="-1082.83" X2="3496.12" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3496.12" Y1="-1031.82" X2="3496.12" Y2="-1056.38" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3496.12" Y1="-1536.38" X2="3496.12" Y2="-1579.84" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3382.74" Y1="173.852" X2="3382.74" Y2="134.174" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3382.74" Y1="134.174" X2="3382.74" Y2="77.481" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3382.74" Y1="51.0243" X2="3382.74" Y2="-200.321" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3439.43" Y1="-918.421" X2="3439.43" Y2="-1069.57" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3382.74" Y1="-623.621" X2="3382.74" Y2="-956.226" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3326.04" Y1="64.252" X2="4459.84" Y2="64.252" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3382.74" Y1="-427.086" X2="3439.43" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3496.12" Y1="-427.086" X2="3552.82" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3722.89" Y1="-427.086" X2="3779.59" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3836.28" Y1="-427.086" X2="3892.97" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3949.67" Y1="-427.086" X2="4006.36" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3382.74" Y1="-786.148" X2="3439.43" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3496.12" Y1="-786.148" X2="3552.82" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3722.89" Y1="-786.148" X2="3779.59" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3836.28" Y1="-786.148" X2="3892.97" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3949.67" Y1="-786.148" X2="4006.43" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3496.12" Y1="219.206" X2="3496.12" Y2="272.126" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3382.73" Y1="219.206" X2="3382.73" Y2="272.126" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3609.51" Y1="219.206" X2="3609.51" Y2="272.126" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3949.66" Y1="219.206" X2="3949.66" Y2="272.126" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3722.89" Y1="-786.148" X2="3722.9" Y2="-956.227" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3552.82" Y1="-75.5902" X2="3552.82" Y2="-30.2322" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3779.59" Y1="-285.36" X2="3779.59" Y2="-200.321" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3779.59" Y1="15.1245" X2="3779.59" Y2="64.2523" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3892.97" Y1="-285.36" X2="3892.97" Y2="-200.321" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3892.97" Y1="15.1246" X2="3892.97" Y2="64.2523" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4006.36" Y1="-285.36" X2="4006.36" Y2="-200.321" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4006.36" Y1="15.1184" X2="4006.36" Y2="64.2522" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4119.75" Y1="-842.841" X2="4119.75" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3609.51" Y1="-623.622" X2="3609.51" Y2="-956.227" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4459.91" Y1="-842.841" X2="4459.91" Y2="-623.622" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4403.21" Y1="-956.227" X2="4403.21" Y2="-737.008" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4346.52" Y1="-842.841" X2="4346.53" Y2="-623.622" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4289.82" Y1="-956.226" X2="4289.82" Y2="-737.008" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4233.13" Y1="-842.841" X2="4233.14" Y2="-623.622" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4176.44" Y1="-956.227" X2="4176.44" Y2="-737.008" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4119.75" Y1="-842.841" X2="4119.76" Y2="-623.622" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4176.42" Y1="-646.299" X2="4176.44" Y2="-483.779" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4006.43" Y1="-842.823" X2="4006.43" Y2="-786.139" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3892.97" Y1="-842.831" X2="3892.97" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3722.89" Y1="-532.913" X2="3722.89" Y2="-275.912" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3779.59" Y1="-842.831" X2="3779.59" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3382.74" Y1="-532.913" X2="3382.74" Y2="-275.912" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3382.74" Y1="-1479.7" X2="3382.74" Y2="-1536.38" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3382.74" Y1="-1366.31" X2="3382.74" Y2="-1453.24" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3382.74" Y1="-1252.92" X2="3382.74" Y2="-1339.85" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3382.74" Y1="-1139.53" X2="3382.74" Y2="-1169.76" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3382.74" Y1="-1196.22" X2="3382.74" Y2="-1226.46" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3382.74" Y1="-1031.82" X2="3382.74" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3382.74" Y1="-1536.38" X2="3382.74" Y2="-1579.84" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3439.43" Y1="-842.831" X2="3439.43" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3552.82" Y1="-842.831" X2="3552.82" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4006.36" Y1="-313.707" X2="4006.36" Y2="-157.795" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4006.36" Y1="-118.911" X2="4006.36" Y2="15.1184" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3892.97" Y1="-313.707" X2="3892.97" Y2="-157.795" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3892.97" Y1="-118.911" X2="3892.97" Y2="15.1246" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3779.59" Y1="-313.707" X2="3779.59" Y2="-157.795" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3779.59" Y1="-118.911" X2="3779.59" Y2="15.1245" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3552.82" Y1="-313.707" X2="3552.82" Y2="-157.795" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3552.82" Y1="-118.911" X2="3552.82" Y2="-75.5902" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3439.43" Y1="-313.707" X2="3439.43" Y2="-157.795" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3439.43" Y1="-118.911" X2="3439.43" Y2="-30.2341" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3552.76" Y1="-1920" X2="2834.77" Y2="-1920" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4006.3" Y1="-2033.39" X2="2834.77" Y2="-2033.39" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2834.77" Y1="-1976.69" X2="2381.23" Y2="-1976.69" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3779.65" Y1="-1976.69" X2="2834.77" Y2="-1976.69" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2834.77" Y1="-1920" X2="2480.44" Y2="-1920" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2480.44" Y1="-1920" X2="2381.23" Y2="-1920" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2683.59" Y1="-1749.92" X2="2664.69" Y2="-1749.92" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2919.81" Y1="-1749.92" X2="2759.18" Y2="-1749.92" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3118.22" Y1="-1749.92" X2="3052.09" Y2="-1749.92" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4459.84" Y1="-1749.92" X2="3193.81" Y2="-1749.92" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2778.08" Y1="-1693.23" X2="2664.69" Y2="-1693.23" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2919.81" Y1="-1693.23" X2="2853.67" Y2="-1693.23" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3212.71" Y1="-1693.23" X2="3052.09" Y2="-1693.23" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4233.07" Y1="-1693.23" X2="3288.3" Y2="-1693.23" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2494.62" Y1="-1693.24" X2="2362.33" Y2="-1693.23" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2645.79" Y1="-1693.23" X2="2570.21" Y2="-1693.23" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3609.51" Y1="-1579.84" X2="3118.24" Y2="-1579.84" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2400.13" Y1="-1636.54" X2="2362.33" Y2="-1636.54" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4006.36" Y1="-427.086" X2="4006.36" Y2="-389.298" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2645.79" Y1="-1693.23" X2="2645.79" Y2="-1749.93" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2834.77" Y1="-2033.39" X2="2381.23" Y2="-2033.39" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2664.69" Y1="-1749.92" X2="2645.79" Y2="-1749.93" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2702.49" Y1="-1693.23" X2="2645.8" Y2="-1693.23" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2154.46" Y1="-1579.84" X2="2494.62" Y2="-1579.84" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2919.81" Y1="-1636.54" X2="2475.72" Y2="-1636.54" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3118.24" Y1="-1579.84" X2="2570.21" Y2="-1579.84" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2919.81" Y1="-1466.46" X2="2570.21" Y2="-1466.46" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2494.61" Y1="-1466.46" X2="2362.33" Y2="-1466.46" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2367.78" Y1="-1636.54" X2="2373.45" Y2="-1636.54" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2494.61" Y1="-1126.3" X2="2116.66" Y2="-1126.3" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4176.44" Y1="-1126.3" X2="2570.21" Y2="-1126.3" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4006.36" Y1="-1763.14" X2="4006.36" Y2="-2033.38" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4006.36" Y1="-1706.45" X2="4006.36" Y2="-1736.68" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4006.36" Y1="-1649.76" X2="4006.36" Y2="-1679.99" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4006.43" Y1="-1479.69" X2="4006.36" Y2="-1623.3" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4006.43" Y1="-1366.3" X2="4006.43" Y2="-1453.23" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4006.43" Y1="-1252.91" X2="4006.43" Y2="-1339.85" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4006.43" Y1="-1139.52" X2="4006.43" Y2="-1169.76" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4006.43" Y1="-1196.21" X2="4006.43" Y2="-1226.45" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3552.93" Y1="-918.421" X2="3552.82" Y2="-1069.59" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3552.76" Y1="-1763.15" X2="3552.76" Y2="-1920" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3552.76" Y1="-1706.46" X2="3552.76" Y2="-1736.69" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3552.76" Y1="-1649.77" X2="3552.76" Y2="-1680" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3552.82" Y1="-1593.07" X2="3552.76" Y2="-1623.31" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3552.82" Y1="-1479.7" X2="3552.82" Y2="-1566.61" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3552.83" Y1="-1366.31" X2="3552.83" Y2="-1453.24" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3552.84" Y1="-1252.92" X2="3552.83" Y2="-1339.85" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3552.84" Y1="-1139.53" X2="3552.84" Y2="-1169.76" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3552.84" Y1="-1196.22" X2="3552.84" Y2="-1226.46" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3552.82" Y1="-1069.59" X2="3552.85" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2116.66" Y1="-1126.3" X2="2059.97" Y2="-1126.3" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2324.54" Y1="-1409.76" X2="2003.28" Y2="-1409.76" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2154.46" Y1="-1353.07" X2="2003.28" Y2="-1353.07" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2400.12" Y1="-1296.38" X2="2286.74" Y2="-1296.38" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2343.43" Y1="-1296.38" X2="2003.28" Y2="-1296.38" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2154.46" Y1="-1396.54" X2="2154.46" Y2="-1353.07" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2154.46" Y1="-1579.84" X2="2154.46" Y2="-1422.99" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2294.3" Y1="-1239.68" X2="2294.3" Y2="-1296.38" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2154.46" Y1="-1353.07" X2="2078.87" Y2="-1353.08" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4414.56" Y1="-578.267" X2="4505.27" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4475.03" Y1="-532.913" X2="4475.03" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4357.86" Y1="-691.654" X2="4448.56" Y2="-691.654" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4418.33" Y1="-646.299" X2="4418.33" Y2="-691.654" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4301.17" Y1="-578.267" X2="4391.88" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4361.64" Y1="-532.913" X2="4361.64" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4244.47" Y1="-691.654" X2="4335.18" Y2="-691.654" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4304.94" Y1="-646.299" X2="4304.94" Y2="-691.654" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4187.79" Y1="-578.268" X2="4278.5" Y2="-578.268" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4248.26" Y1="-532.914" X2="4248.26" Y2="-578.268" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4074.4" Y1="-578.268" X2="4165.11" Y2="-578.268" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4134.87" Y1="-532.914" X2="4134.87" Y2="-578.268" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3904.31" Y1="-578.268" X2="3995.02" Y2="-578.268" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3964.79" Y1="-532.914" X2="3964.79" Y2="-578.268" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3790.93" Y1="-578.267" X2="3881.63" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3851.4" Y1="-532.913" X2="3851.4" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3677.54" Y1="-578.267" X2="3768.25" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3738.01" Y1="-532.913" X2="3738.01" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3564.16" Y1="-578.268" X2="3654.86" Y2="-578.268" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3624.63" Y1="-532.913" X2="3624.63" Y2="-578.268" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3450.77" Y1="-578.267" X2="3541.48" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3511.24" Y1="-532.913" X2="3511.24" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3337.38" Y1="-578.267" X2="3428.09" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3397.86" Y1="-532.913" X2="3397.86" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3984.09" Y1="-150.708" X2="4006.36" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4028.62" Y1="-150.708" X2="4006.36" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3870.71" Y1="-150.708" X2="3892.97" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3915.24" Y1="-150.708" X2="3892.97" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3757.32" Y1="-150.708" X2="3779.59" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3801.85" Y1="-150.708" X2="3779.59" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3530.55" Y1="-150.708" X2="3552.82" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3575.08" Y1="-150.708" X2="3552.82" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3417.17" Y1="-150.708" X2="3439.43" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3461.69" Y1="-150.708" X2="3439.43" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2645.79" Y1="-1409.76" X2="2475.71" Y2="-1409.76" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2003.28" Y1="-1145.18" X2="2003.28" Y2="-1880.62" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1625.32" Y1="-1145.18" X2="1625.32" Y2="-1880.62" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2041.07" Y1="-1107.39" X2="1587.53" Y2="-1107.39" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1663.12" Y1="-1107.39" X2="1663.12" Y2="-1145.18" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1965.48" Y1="-1107.39" X2="1965.48" Y2="-1145.18" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1587.53" Y1="-1107.39" X2="1587.53" Y2="-1088.49" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1587.53" Y1="-1088.49" X2="2041.07" Y2="-1088.49" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2041.07" Y1="-1088.49" X2="2041.07" Y2="-1107.39" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1587.53" Y1="-1088.49" X2="1587.53" Y2="-1088.49" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1587.53" Y1="-1088.49" X2="1587.53" Y2="-918.429" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2041.07" Y1="-1088.49" X2="2041.07" Y2="-1088.49" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2041.07" Y1="-1088.49" X2="2041.07" Y2="-918.429" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1984.38" Y1="-1069.6" X2="1644.22" Y2="-1069.59" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1984.38" Y1="-1054.48" X2="1644.22" Y2="-1054.48" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1984.38" Y1="-1069.6" X2="1984.38" Y2="-1054.48" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1644.22" Y1="-1069.59" X2="1644.22" Y2="-1054.48" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1806.74" Y1="-1088.49" X2="1806.74" Y2="-1069.59" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1821.86" Y1="-1088.49" X2="1821.86" Y2="-1069.59" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2003.28" Y1="-1145.18" X2="1625.32" Y2="-1145.18" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1587.53" Y1="-918.429" X2="2041.07" Y2="-918.429" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1965.48" Y1="-1126.3" X2="2059.97" Y2="-1126.3" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3004.84" Y1="-351.49" X2="3004.84" Y2="-427.08" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2929.25" Y1="-427.08" X2="3004.84" Y2="-427.08" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2891.46" Y1="-275.899" X2="2891.46" Y2="-238.104" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3004.84" Y1="-275.899" X2="3004.84" Y2="-238.104" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2853.66" Y1="-313.695" X2="2698.58" Y2="-313.694" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2959.48" Y1="-521.569" X2="3050.19" Y2="-521.569" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3019.95" Y1="-476.214" X2="3019.95" Y2="-521.569" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3004.84" Y1="-566.923" X2="3004.84" Y2="-634.96" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3004.84" Y1="-710.551" X2="3004.84" Y2="-748.343" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2853.66" Y1="-238.102" X2="3050.2" Y2="-238.102" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2853.66" Y1="-200.312" X2="3050.2" Y2="-200.312" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2853.66" Y1="-238.102" X2="2853.66" Y2="-200.312" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3050.2" Y1="-238.102" X2="3050.2" Y2="-200.312" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3004.84" Y1="-748.343" X2="2948.15" Y2="-748.343" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2872.56" Y1="-748.343" X2="2565.47" Y2="-748.343" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3042.64" Y1="17.0111" X2="3042.64" Y2="88.441" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3012.4" Y1="-49.1305" X2="3072.88" Y2="-49.1308" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3042.64" Y1="-115.272" X2="3042.64" Y2="-162.514" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2698.58" Y1="75.2127" X2="2698.58" Y2="-103.931" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2698.58" Y1="234.331" X2="2698.58" Y2="101.669" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2698.58" Y1="332.599" X2="2698.58" Y2="309.922" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2698.58" Y1="-171.963" X2="2698.58" Y2="-213.537" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2698.58" Y1="-258.892" X2="2698.58" Y2="-313.695" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3004.84" Y1="-427.08" X2="3004.84" Y2="-476.214" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2581.42" Y1="158.743" X2="2509.61" Y2="158.743" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2626.77" Y1="158.743" X2="2698.58" Y2="158.743" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2415.12" Y1="-299.905" X2="2415.12" Y2="-7.556" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2415.12" Y1="-370.388" X2="2415.12" Y2="-326.362" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2415.12" Y1="-30.236" X2="2415.12" Y2="-30.2303" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2415.12" Y1="-7.556" X2="2415.12" Y2="151.184" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2298.37" Y1="-156.515" X2="2320.63" Y2="-124.718" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2342.89" Y1="-156.515" X2="2320.63" Y2="-124.718" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2275.27" Y1="197.657" X2="2365.97" Y2="197.657" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2335.74" Y1="243.011" X2="2335.74" Y2="197.657" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2180.78" Y1="83.4681" X2="2271.49" Y2="83.4681" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2241.25" Y1="128.822" X2="2241.25" Y2="83.4681" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2320.63" Y1="-163.602" X2="2320.63" Y2="-427.08" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2320.63" Y1="-52.9103" X2="2320.63" Y2="-124.718" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2320.63" Y1="152.302" X2="2320.63" Y2="-7.556" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2320.63" Y1="309.924" X2="2226.14" Y2="309.924" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2226.14" Y1="128.822" X2="2226.14" Y2="309.924" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2320.63" Y1="243.011" X2="2320.63" Y2="309.924" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2415.12" Y1="151.184" X2="2415.12" Y2="464.885" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2226.14" Y1="309.924" X2="2226.14" Y2="347.72" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2226.14" Y1="423.31" X2="2226.14" Y2="476.224" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2853.66" Y1="-427.08" X2="2320.63" Y2="-427.08" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2509.61" Y1="120.945" X2="2509.61" Y2="158.743" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2509.61" Y1="45.3548" X2="2509.61" Y2="-313.133" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2059.97" Y1="-1126.3" X2="2059.97" Y2="-1126.3" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2400.12" Y1="-994.016" X2="2226.27" Y2="-994.015" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2814" Y1="-994.015" X2="2475.71" Y2="-994.015" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3004.84" Y1="-994.015" X2="2946.28" Y2="-994.015" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2226.14" Y1="521.578" X2="2226.14" Y2="612.281" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1341.86" Y1="-1145.19" X2="1379.66" Y2="-1145.19" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1266.27" Y1="-1145.19" X2="1228.47" Y2="-1145.19" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1379.66" Y1="-786.143" X2="1379.65" Y2="-1436.21" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1228.47" Y1="-1371.97" X2="1379.65" Y2="-1371.97" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1228.47" Y1="-1258.58" X2="1266.27" Y2="-1258.58" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1341.86" Y1="-1258.58" X2="1379.65" Y2="-1258.58" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1357.39" Y1="-608.976" X2="1379.66" Y2="-640.773" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1401.92" Y1="-608.976" X2="1379.66" Y2="-640.773" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1379.66" Y1="-495.118" X2="1304.06" Y2="-495.118" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1379.66" Y1="612.28" X2="1379.66" Y2="-601.89" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1379.66" Y1="-640.773" X2="1379.66" Y2="-710.552" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1069.74" Y1="-907.081" X2="1069.74" Y2="-907.081" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="994.145" Y1="-929.758" X2="994.145" Y2="-929.758" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="718.237" Y1="-495.114" X2="718.237" Y2="-842.834" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="687.993" Y1="-616.063" X2="718.237" Y2="-616.063" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="718.238" Y1="-408.192" X2="718.238" Y2="-408.186" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="718.238" Y1="-408.186" X2="718.237" Y2="-275.905" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="888.315" Y1="-275.905" X2="971.47" Y2="-275.905" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="718.237" Y1="-495.114" X2="718.238" Y2="-408.186" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="888.315" Y1="-68.0352" X2="971.47" Y2="-68.0352" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="774.922" Y1="-68.0351" X2="812.726" Y2="-68.0352" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="888.315" Y1="-275.905" X2="718.237" Y2="-275.906" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="786.268" Y1="136.059" X2="786.268" Y2="105.823" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="778.709" Y1="136.059" X2="778.709" Y2="105.823" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="786.268" Y1="120.941" X2="827.843" Y2="120.941" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="790.048" Y1="109.603" X2="790.048" Y2="102.044" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="790.048" Y1="102.044" X2="774.93" Y2="102.044" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="774.93" Y1="102.044" X2="774.93" Y2="109.603" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="790.048" Y1="132.28" X2="790.048" Y2="139.839" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="774.93" Y1="139.839" X2="774.93" Y2="132.28" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="873.198" Y1="120.941" X2="971.471" Y2="120.941" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1304.06" Y1="-495.118" X2="1304.07" Y2="-441.26" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1304.07" Y1="-200.315" X2="1304.07" Y2="-238.11" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1228.47" Y1="-200.315" X2="1304.07" Y2="-200.315" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1304.07" Y1="-402.384" X2="1304.07" Y2="-370.394" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1281.8" Y1="-434.173" X2="1304.06" Y2="-402.376" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1326.33" Y1="-434.173" X2="1304.06" Y2="-402.376" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1273.83" Y1="-304.252" X2="1334.3" Y2="-304.252" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="718.237" Y1="-842.834" X2="850.52" Y2="-842.834" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="850.52" Y1="-842.834" X2="850.52" Y2="-786.141" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="850.52" Y1="-710.551" X2="850.52" Y2="-668.031" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="850.52" Y1="-629.148" X2="850.52" Y2="-582.036" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="850.52" Y1="-574.477" X2="850.52" Y2="-495.115" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="828.256" Y1="-660.945" X2="850.52" Y2="-629.148" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="872.785" Y1="-660.945" X2="850.52" Y2="-629.148" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="859.975" Y1="-582.036" X2="841.077" Y2="-582.036" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="859.975" Y1="-574.477" X2="841.077" Y2="-574.477" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1228.47" Y1="476.224" X2="1228.47" Y2="-200.315" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1228.47" Y1="612.284" X2="1228.47" Y2="521.578" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1413.67" Y1="-1211.34" X2="1413.68" Y2="-1192.45" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1411.78" Y1="-1215.12" X2="1419.34" Y2="-1215.13" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1419.34" Y1="-1215.13" X2="1419.35" Y2="-1188.67" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1419.35" Y1="-1188.67" X2="1411.79" Y2="-1188.67" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1413.68" Y1="-1201.9" X2="1379.66" Y2="-1201.89" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="926.105" Y1="517.796" X2="850.52" Y2="517.797" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="850.52" Y1="517.797" X2="850.521" Y2="631.177" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="926.105" Y1="404.41" X2="756.032" Y2="404.412" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="756.032" Y1="404.412" X2="756.032" Y2="631.182" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2604.09" Y1="423.307" X2="2604.09" Y2="801.26" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2698.58" Y1="389.292" X2="2698.58" Y2="423.307" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3250.63" Y1="517.804" X2="3250.63" Y2="442.214" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3250.63" Y1="442.214" X2="3364.02" Y2="442.214" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3477.41" Y1="442.214" X2="3590.79" Y2="442.214" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3590.79" Y1="442.214" X2="3590.79" Y2="517.804" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3722.83" Y1="517.796" X2="3722.83" Y2="442.205" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3722.83" Y1="442.205" X2="3809.76" Y2="442.205" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3976.06" Y1="442.205" X2="4062.99" Y2="442.205" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4062.99" Y1="442.205" X2="4062.99" Y2="517.796" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3809.76" Y1="434.646" X2="3809.76" Y2="449.764" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3976.06" Y1="434.646" X2="3976.06" Y2="449.764" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3364.02" Y1="434.655" X2="3364.02" Y2="449.773" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3477.41" Y1="434.655" X2="3477.41" Y2="449.773" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="311.804" Y1="-1908.68" X2="311.804" Y2="-1984.27" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="311.804" Y1="-1984.27" X2="655.751" Y2="-1984.27" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="655.751" Y1="-1991.82" X2="655.751" Y2="-1976.71" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="311.804" Y1="-1625.21" X2="311.804" Y2="-1700.8" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="311.804" Y1="-1700.8" X2="462.995" Y2="-1700.8" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="462.995" Y1="-1708.35" X2="462.995" Y2="-1693.24" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1587.4" Y1="-464.882" X2="1587.4" Y2="-540.472" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1587.4" Y1="-540.472" X2="1693.23" Y2="-540.472" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1935.12" Y1="-540.472" X2="2040.94" Y2="-540.472" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2040.94" Y1="-540.472" X2="2040.94" Y2="-464.882" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1693.23" Y1="-548.031" X2="1693.23" Y2="-532.913" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1935.12" Y1="-548.031" X2="1935.12" Y2="-532.913" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4195.28" Y1="517.796" X2="4195.28" Y2="442.205" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4535.43" Y1="442.205" X2="4535.43" Y2="517.796" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4131.06" Y1="-691.654" X2="4221.77" Y2="-691.654" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4191.53" Y1="-646.299" X2="4191.53" Y2="-691.654" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4463.6" Y1="-275.705" X2="4463.6" Y2="-275.678" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3836.28" Y1="173.852" X2="3836.28" Y2="77.4806" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3836.28" Y1="219.206" X2="3836.28" Y2="272.126" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3892.97" Y1="-1069.58" X2="4006.36" Y2="-1069.58" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3552.82" Y1="-30.2322" X2="3609.51" Y2="-30.2324" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3439.43" Y1="-30.2341" X2="3552.82" Y2="-30.2324" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3439.43" Y1="-1069.57" X2="3552.82" Y2="-1069.57" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4006.43" Y1="-918.413" X2="4006.43" Y2="-1113.06" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4346.52" Y1="-1466.47" X2="3052.09" Y2="-1466.47" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2919.81" Y1="-1353.07" X2="2570.21" Y2="-1353.07" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2494.61" Y1="-1353.07" X2="2362.33" Y2="-1353.07" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2645.79" Y1="-1296.38" X2="2475.71" Y2="-1296.38" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4289.82" Y1="-1353.08" X2="3052.09" Y2="-1353.08" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2645.79" Y1="-1341.73" X2="2645.79" Y2="-1296.38" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2645.79" Y1="-1453.23" X2="2645.79" Y2="-1366.3" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2645.79" Y1="-1579.84" X2="2645.79" Y2="-1479.69" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2494.61" Y1="-1239.68" X2="2294.3" Y2="-1239.68" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3052.09" Y1="-1636.54" X2="4403.15" Y2="-1636.54" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3949.6" Y1="-1680" X2="3949.6" Y2="-1680" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2381.23" Y1="-2033.39" X2="2267.84" Y2="-2033.39" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2381.23" Y1="-1976.69" X2="2267.84" Y2="-1976.69" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2381.23" Y1="-1920" X2="2267.84" Y2="-1920" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2494.61" Y1="-937.323" X2="2267.84" Y2="-937.317" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2611.79" Y1="-937.321" X2="2570.21" Y2="-937.321" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2611.79" Y1="-994.015" X2="2611.79" Y2="-937.323" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2362.34" Y1="-880.621" X2="2362.34" Y2="-937.319" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2400.13" Y1="-880.625" X2="2362.34" Y2="-880.625" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2475.72" Y1="-880.623" X2="3156.02" Y2="-880.623" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2796.98" Y1="-937.323" X2="2832.9" Y2="-937.323" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2679.81" Y1="-994.016" X2="2679.81" Y2="-937.323" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2679.81" Y1="-937.323" X2="2721.39" Y2="-937.323" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2702.49" Y1="-937.323" X2="2721.39" Y2="-937.323" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3004.84" Y1="-867.395" X2="3004.84" Y2="-748.343" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3004.84" Y1="-994.015" X2="3004.84" Y2="-893.851" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3156.02" Y1="-880.623" X2="3155.91" Y2="83.4919" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2226.14" Y1="-163.602" X2="2226.14" Y2="-748.343" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2226.14" Y1="38.1138" X2="2226.14" Y2="-124.718" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2226.14" Y1="-748.343" X2="2565.47" Y2="-748.343" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2415.12" Y1="521.578" X2="2415.12" Y2="612.281" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3155.91" Y1="196.535" X2="2698.58" Y2="196.535" Stroke="#FFFF0000" StrokeThickness="2"/>
- <Line X1="3155.91" Y1="196.535" X2="3155.91" Y2="159.083" Stroke="#FFFF0000" StrokeThickness="2"/>
- <Line X1="2203.88" Y1="-156.515" X2="2226.14" Y2="-124.718" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2248.41" Y1="-156.515" X2="2226.14" Y2="-124.718" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2415.12" Y1="-370.388" X2="2605.36" Y2="-370.388" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2605.36" Y1="-370.388" X2="2605.36" Y2="88.441" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2605.36" Y1="88.441" X2="3042.64" Y2="88.441" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2509.61" Y1="-313.133" X2="2320.63" Y2="-313.133" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2834.65" Y1="-48.5274" X2="2834.65" Y2="-78.7636" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2842.21" Y1="-48.5274" X2="2842.21" Y2="-78.7636" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2834.65" Y1="-63.6454" X2="2793.08" Y2="-63.6453" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2830.87" Y1="-74.984" X2="2830.87" Y2="-82.5431" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2830.87" Y1="-82.5431" X2="2845.99" Y2="-82.5432" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2845.99" Y1="-82.5432" X2="2845.99" Y2="-74.9841" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2830.87" Y1="-52.3069" X2="2830.87" Y2="-44.7478" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2830.87" Y1="-44.7478" X2="2845.99" Y2="-44.7479" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2845.99" Y1="-44.7479" X2="2845.99" Y2="-52.3069" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2747.72" Y1="-63.6452" X2="2698.58" Y2="-63.645" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2834.65" Y1="19.656" X2="2834.65" Y2="-10.5803" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2842.21" Y1="19.6559" X2="2842.21" Y2="-10.5803" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2834.65" Y1="4.53798" X2="2793.08" Y2="4.53807" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2830.87" Y1="-6.80071" X2="2830.87" Y2="-14.3598" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2830.87" Y1="-14.3598" X2="2845.99" Y2="-14.3598" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2845.99" Y1="-14.3598" X2="2845.99" Y2="-6.80077" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2830.87" Y1="15.8765" X2="2830.87" Y2="23.4355" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2830.87" Y1="23.4355" X2="2845.99" Y2="23.4354" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2845.99" Y1="23.4354" X2="2845.99" Y2="15.8764" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2747.72" Y1="4.53815" X2="2698.58" Y2="4.53836" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1379.66" Y1="-1145.19" X2="1379.66" Y2="-1201.89" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="971.468" Y1="-929.758" X2="971.468" Y2="-907.081" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="971.465" Y1="-1447.55" X2="850.52" Y2="-1447.55" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="850.52" Y1="-1288.82" X2="850.52" Y2="-1031.8" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="850.52" Y1="-1447.55" X2="850.52" Y2="-1379.53" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="850.52" Y1="-1031.8" X2="971.467" Y2="-1031.8" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="850.52" Y1="-1447.55" X2="718.237" Y2="-1447.55" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="718.237" Y1="-1141.42" X2="718.237" Y2="-1031.8" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="718.237" Y1="-1296.39" X2="718.237" Y2="-1186.77" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="718.237" Y1="-1447.55" X2="718.237" Y2="-1371.97" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="718.237" Y1="-1031.8" X2="850.52" Y2="-1031.8" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="718.237" Y1="-1164.1" X2="718.237" Y2="-1164.09" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="805.166" Y1="-1334.18" X2="895.875" Y2="-1334.18" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="790.048" Y1="140.18" X2="774.93" Y2="140.18" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="687.992" Y1="-729.448" X2="718.237" Y2="-729.449" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="687.992" Y1="-842.834" X2="718.237" Y2="-842.834" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="557.61" Y1="-842.834" X2="502.793" Y2="-842.834" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="694.604" Y1="-842.834" X2="718.237" Y2="-842.834" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="633.198" Y1="-842.834" X2="694.604" Y2="-842.834" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="557.61" Y1="-729.448" X2="502.793" Y2="-729.448" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="694.604" Y1="-729.448" X2="718.237" Y2="-729.449" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="633.198" Y1="-729.448" X2="694.604" Y2="-729.448" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="557.61" Y1="-616.062" X2="502.793" Y2="-616.062" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="694.604" Y1="-616.063" X2="718.237" Y2="-616.063" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="633.199" Y1="-616.062" X2="694.604" Y2="-616.063" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="557.61" Y1="-389.291" X2="502.793" Y2="-389.29" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="694.604" Y1="-389.291" X2="718.237" Y2="-389.291" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="633.198" Y1="-389.291" X2="694.604" Y2="-389.291" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1228.47" Y1="-200.315" X2="1228.47" Y2="-495.115" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="958.241" Y1="-495.115" X2="850.52" Y2="-495.115" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1228.47" Y1="-495.115" X2="1007.37" Y2="-495.115" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="901.42" Y1="-1984.27" X2="1218.89" Y2="-1984.27" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1218.89" Y1="-1984.27" X2="1218.89" Y2="-1908.67" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="901.42" Y1="-1991.82" X2="901.42" Y2="-1976.71" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="693.424" Y1="-1700.8" X2="840.937" Y2="-1700.8" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="840.937" Y1="-1700.8" X2="840.937" Y2="-1625.21" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="693.424" Y1="-1708.35" X2="693.424" Y2="-1693.24" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3326.04" Y1="-389.298" X2="3326.04" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3269.35" Y1="173.852" X2="3269.35" Y2="134.174" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3269.35" Y1="134.174" X2="3269.35" Y2="-200.321" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3269.35" Y1="-623.621" X2="3269.35" Y2="-956.226" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3269.35" Y1="-427.086" X2="3326.04" Y2="-427.086" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3269.35" Y1="-786.148" X2="3326.05" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3269.35" Y1="219.206" X2="3269.35" Y2="272.126" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3269.35" Y1="-532.913" X2="3269.35" Y2="-275.912" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3269.35" Y1="-1031.82" X2="3269.35" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3269.35" Y1="-1139.53" X2="3269.35" Y2="-1182.99" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3326.05" Y1="-842.831" X2="3326.05" Y2="-786.148" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3326.04" Y1="-313.707" X2="3326.04" Y2="-157.795" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3326.04" Y1="-118.911" X2="3326.04" Y2="64.252" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3224" Y1="-578.267" X2="3314.71" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3284.47" Y1="-532.913" X2="3284.47" Y2="-578.267" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3303.78" Y1="-150.708" X2="3326.04" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3348.31" Y1="-150.708" X2="3326.04" Y2="-118.911" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2362.33" Y1="-1239.68" X2="2362.33" Y2="-1182.99" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2362.33" Y1="-1182.99" X2="2400.12" Y2="-1182.99" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2475.71" Y1="-1182.99" X2="4063.05" Y2="-1182.99" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4063.05" Y1="-1031.82" X2="4063.05" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4063.05" Y1="-1139.53" X2="4063.05" Y2="-1182.99" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4063.05" Y1="-956.227" X2="4063.05" Y2="-737.008" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4063.12" Y1="-483.777" X2="4063.12" Y2="-646.299" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3326.05" Y1="-918.421" X2="3326.05" Y2="-1113.07" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3326.05" Y1="-1139.53" X2="3326.05" Y2="-1169.76" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3326.05" Y1="-1196.22" X2="3326.05" Y2="-1226.46" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3326.05" Y1="-1252.92" X2="3326.05" Y2="-1339.85" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3326.05" Y1="-1366.31" X2="3326.05" Y2="-1453.24" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3326.05" Y1="-1479.7" X2="3326.05" Y2="-1566.61" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3326.05" Y1="-1593.07" X2="3326.05" Y2="-1623.31" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3326.05" Y1="-1649.77" X2="3326.05" Y2="-1680" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3326.05" Y1="-1706.46" X2="3326.05" Y2="-1736.69" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3326.05" Y1="-1763.15" X2="3326.05" Y2="-1863.31" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1746.14" Y1="374.173" X2="1806.61" Y2="374.173" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1776.38" Y1="468.661" X2="1776.38" Y2="444.095" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1972.91" Y1="374.173" X2="2033.39" Y2="374.173" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2003.15" Y1="468.661" X2="2003.15" Y2="444.095" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2003.15" Y1="158.74" X2="2003.15" Y2="196.536" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2003.15" Y1="272.126" X2="2003.15" Y2="309.921" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1776.38" Y1="158.74" X2="1776.38" Y2="196.536" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1776.38" Y1="272.126" X2="1776.38" Y2="309.921" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="1776.38" Y1="521.575" X2="1776.38" Y2="612.281" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="2003.15" Y1="521.575" X2="2003.15" Y2="612.281" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4195.28" Y1="442.205" X2="4251.84" Y2="442.205" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4478.62" Y1="442.205" X2="4535.43" Y2="442.205" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4251.84" Y1="434.646" X2="4251.84" Y2="449.764" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4478.62" Y1="434.646" X2="4478.62" Y2="449.764" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="687.992" Y1="-495.114" X2="718.236" Y2="-495.114" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="557.61" Y1="-495.114" X2="502.793" Y2="-495.114" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="633.198" Y1="-495.114" X2="694.604" Y2="-495.114" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="3326.05" Y1="-1863.31" X2="2267.72" Y2="-1863.31" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4017.67" Y1="-691.654" X2="4108.38" Y2="-691.654" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="4078.14" Y1="-646.299" X2="4078.14" Y2="-691.654" Stroke="#FF000000" StrokeThickness="2"/>
- <Line X1="979.018" Y1="604.721" X2="986.577" Y2="604.721" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="986.577" Y1="604.721" X2="986.577" Y2="631.177" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="986.577" Y1="631.177" X2="997.916" Y2="631.177" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="997.916" Y1="631.177" X2="982.798" Y2="642.516" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="982.798" Y1="642.516" X2="967.679" Y2="631.177" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="967.679" Y1="631.177" X2="979.018" Y2="631.177" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="979.018" Y1="631.177" X2="979.018" Y2="604.721" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="1394.78" Y1="631.177" X2="1379.66" Y2="642.516" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="1379.66" Y1="642.516" X2="1364.54" Y2="631.177" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="1213.35" Y1="616.064" X2="1228.47" Y2="604.725" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="1228.47" Y1="604.725" X2="1243.59" Y2="616.064" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="1761.26" Y1="616.063" X2="1776.38" Y2="604.724" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="1776.38" Y1="604.724" X2="1791.5" Y2="616.063" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="1988.03" Y1="616.063" X2="2003.15" Y2="604.724" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="2003.15" Y1="604.724" X2="2018.27" Y2="616.063" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="740.787" Y1="616.063" X2="755.906" Y2="604.724" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="755.906" Y1="604.724" X2="771.024" Y2="616.063" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="835.276" Y1="616.063" X2="850.394" Y2="604.724" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="850.394" Y1="604.724" X2="865.512" Y2="616.063" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="2210.9" Y1="616.063" X2="2226.02" Y2="604.724" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="2226.02" Y1="604.724" X2="2241.13" Y2="616.063" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="2399.87" Y1="616.063" X2="2414.99" Y2="604.724" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="2414.99" Y1="604.724" X2="2430.11" Y2="616.063" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="3254.23" Y1="253.232" X2="3269.35" Y2="241.894" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="3269.35" Y1="241.894" X2="3284.47" Y2="253.232" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="3367.62" Y1="253.232" X2="3382.73" Y2="241.894" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="3382.73" Y1="241.894" X2="3397.85" Y2="253.232" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="3481" Y1="253.232" X2="3496.12" Y2="241.894" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="3496.12" Y1="241.894" X2="3511.24" Y2="253.232" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="3594.39" Y1="253.232" X2="3609.51" Y2="241.894" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="3609.51" Y1="241.894" X2="3624.62" Y2="253.232" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="3707.78" Y1="253.232" X2="3722.89" Y2="241.894" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="3722.89" Y1="241.894" X2="3738.01" Y2="253.232" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="3934.54" Y1="253.232" X2="3949.66" Y2="241.894" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="3949.66" Y1="241.894" X2="3964.78" Y2="253.232" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="3821.16" Y1="253.232" X2="3836.28" Y2="241.894" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="3836.28" Y1="241.894" X2="3851.39" Y2="253.232" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="4444.72" Y1="253.232" X2="4459.84" Y2="241.894" Stroke="#FF0000FF" StrokeThickness="2"/>
- <Line X1="4459.84" Y1="241.894" X2="4474.96" Y2="253.232" Stroke="#FF0000FF" StrokeThickness="2"/>
- </Canvas>
- <Canvas x:Name="RawPath" Panel.ZIndex="0">
- <Path Name="path1009" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 975.248324 -275.905214 L 967.689268 -275.905214 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path1013" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 1496.819512 -1436.215151 L 1489.260457 -1436.215151 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path1707" Stroke="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 2003.276205 -1880.616289 A 269.938716 269.938716 0.000000 0 0 1625.323449 -1880.616289" FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path1747" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 1591.307701 -1031.809149 L 1583.748646 -1031.809149 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path1889" Fill="#FF0000FF">
- <Path.Data>
- <PathGeometry Figures="M 2310.993336 -41.571671 L 2305.324044 -41.571671 z M 2310.993519 -18.894506 L 2305.324228 -18.894506 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path1935" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 1383.433903 -1371.965790 L 1375.874848 -1371.965790 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path1939" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 1383.434672 -1145.194124 L 1375.875617 -1145.194124 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path1943" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 1383.434287 -1258.579951 L 1375.875232 -1258.579951 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path1947" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 1383.433685 -1436.214681 L 1375.874630 -1436.214681 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path1965" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 1383.436501 -495.118199 L 1375.877446 -495.118199 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path1985" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 975.248365 -68.035152 L 967.689310 -68.035152 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2019" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 975.248365 120.941144 L 967.689310 120.941144 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2041" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 1232.249064 -200.315097 L 1224.690009 -200.315097 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2055" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 722.016306 -842.834347 L 714.457251 -842.834347 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2075" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 1232.252416 -200.315097 L 1224.693360 -200.315097 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2089" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 1383.438858 -1201.887037 L 1375.879803 -1201.887037 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2101" Stroke="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 2604.094591 423.307385 L 3038.729916 423.307121 L 3038.729916 801.259877 L 2604.094591 801.260141" FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2395" Fill="#FF0000FF">
- <Path.Data>
- <PathGeometry Figures="M 2688.947632 -247.552991 L 2683.278341 -247.552991 z M 2688.947816 -224.875826 L 2683.278524 -224.875826 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2471" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 975.242791 -1447.551246 L 967.683736 -1447.551246 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2475" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 975.245384 -1031.803459 L 967.686329 -1031.803459 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2479" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 854.298295 -1031.800441 L 846.739240 -1031.800441 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2483" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 854.298295 -1447.549982 L 846.739240 -1447.549982 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2493" Fill="#FF0000FF">
- <Path.Data>
- <PathGeometry Figures="M 709.429495 -1175.430986 L 703.760204 -1175.430986 z M 709.429678 -1152.753820 L 703.760387 -1152.753820 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2503" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 722.016064 -389.291040 L 714.457009 -389.291040 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2507" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 722.015925 -495.114139 L 714.456870 -495.114139 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2511" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 722.016388 -616.062694 L 714.457333 -616.062694 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2517" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 722.016328 -729.448521 L 714.457273 -729.448521 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2523" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 722.016306 -842.834347 L 714.457251 -842.834347 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2535" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 722.016307 -842.834347 L 714.457252 -842.834347 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2547" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 722.016456 -729.448521 L 714.457401 -729.448521 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2559" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 722.016605 -616.062694 L 714.457550 -616.062694 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path2571" Fill="#FF000000">
- <Path.Data>
- <PathGeometry Figures="M 722.016064 -389.291040 L 714.457009 -389.291040 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path3093" Fill="#FF0000FF">
- <Path.Data>
- <PathGeometry Figures="M 967.679410 631.177278 L 982.797520 642.515861 L 997.915631 631.177278 L 986.577048 631.177278 L 986.577048 604.720585 L 979.017993 604.720585 L 979.017993 631.177278 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path3143" Fill="#FF0000FF">
- <Path.Data>
- <PathGeometry Figures="M 1364.541373 631.177278 L 1379.659483 642.515861 L 1394.777593 631.177278 L 1383.439010 631.177278 L 1383.439010 604.720585 L 1375.879955 604.720585 L 1375.879955 631.177278 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path3207" Fill="#FF0000FF">
- <Path.Data>
- <PathGeometry Figures="M 1243.590982 616.063522 L 1228.472872 604.724940 L 1213.354761 616.063522 L 1224.693344 616.063522 L 1224.693344 642.520215 L 1232.252399 642.520215 L 1232.252399 616.063522 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path3209" Fill="#FF0000FF">
- <Path.Data>
- <PathGeometry Figures="M 1791.496063 616.062992 L 1776.377953 604.724409 L 1761.259843 616.062992 L 1772.598425 616.062992 L 1772.598425 642.519685 L 1780.157480 642.519685 L 1780.157480 616.062992 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path3211" Fill="#FF0000FF">
- <Path.Data>
- <PathGeometry Figures="M 2018.267717 616.062992 L 2003.149606 604.724409 L 1988.031496 616.062992 L 1999.370079 616.062992 L 1999.370079 642.519685 L 2006.929134 642.519685 L 2006.929134 616.062992 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path3213" Fill="#FF0000FF">
- <Path.Data>
- <PathGeometry Figures="M 771.023622 616.062992 L 755.905512 604.724409 L 740.787402 616.062992 L 752.125984 616.062992 L 752.125984 642.519685 L 759.685039 642.519685 L 759.685039 616.062992 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path3215" Fill="#FF0000FF">
- <Path.Data>
- <PathGeometry Figures="M 865.511811 616.062992 L 850.393701 604.724409 L 835.275591 616.062992 L 846.614173 616.062992 L 846.614173 642.519685 L 854.173228 642.519685 L 854.173228 616.062992 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path3217" Fill="#FF0000FF">
- <Path.Data>
- <PathGeometry Figures="M 2241.133347 616.062992 L 2226.015237 604.724409 L 2210.897127 616.062992 L 2222.235709 616.062992 L 2222.235709 642.519685 L 2229.794764 642.519685 L 2229.794764 616.062992 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path3219" Fill="#FF0000FF">
- <Path.Data>
- <PathGeometry Figures="M 2430.109725 616.062992 L 2414.991615 604.724409 L 2399.873504 616.062992 L 2411.212087 616.062992 L 2411.212087 642.519685 L 2418.771142 642.519685 L 2418.771142 616.062992 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path3221" Fill="#FF0000FF">
- <Path.Data>
- <PathGeometry Figures="M 3284.466207 253.232171 L 3269.348097 241.893588 L 3254.229987 253.232171 L 3265.568570 253.232171 L 3265.568570 279.688864 L 3273.127625 279.688864 L 3273.127625 253.232171 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path3223" Fill="#FF0000FF">
- <Path.Data>
- <PathGeometry Figures="M 3397.852034 253.232171 L 3382.733924 241.893588 L 3367.615814 253.232171 L 3378.954396 253.232171 L 3378.954396 279.688864 L 3386.513452 279.688864 L 3386.513452 253.232171 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path3225" Fill="#FF0000FF">
- <Path.Data>
- <PathGeometry Figures="M 3511.237861 253.232171 L 3496.119751 241.893588 L 3481.001641 253.232171 L 3492.340223 253.232171 L 3492.340223 279.688864 L 3499.899278 279.688864 L 3499.899278 253.232171 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path3227" Fill="#FF0000FF">
- <Path.Data>
- <PathGeometry Figures="M 3624.623833 253.232171 L 3609.505723 241.893588 L 3594.387613 253.232171 L 3605.726195 253.232171 L 3605.726195 279.688864 L 3613.285250 279.688864 L 3613.285250 253.232171 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path3229" Fill="#FF0000FF">
- <Path.Data>
- <PathGeometry Figures="M 3738.012754 253.232171 L 3722.894644 241.893588 L 3707.776534 253.232171 L 3719.115116 253.232171 L 3719.115116 279.688864 L 3726.674172 279.688864 L 3726.674172 253.232171 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path3231" Fill="#FF0000FF">
- <Path.Data>
- <PathGeometry Figures="M 3964.781168 253.232171 L 3949.663058 241.893588 L 3934.544948 253.232171 L 3945.883530 253.232171 L 3945.883530 279.688864 L 3953.442585 279.688864 L 3953.442585 253.232171 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path3233" Fill="#FF0000FF">
- <Path.Data>
- <PathGeometry Figures="M 3851.393636 253.232171 L 3836.275526 241.893588 L 3821.157416 253.232171 L 3832.495999 253.232171 L 3832.495999 279.688864 L 3840.055054 279.688864 L 3840.055054 253.232171 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- <Path Name="path3235" Fill="#FF0000FF">
- <Path.Data>
- <PathGeometry Figures="M 4474.957423 253.232171 L 4459.839313 241.893588 L 4444.721202 253.232171 L 4456.059785 253.232171 L 4456.059785 279.688864 L 4463.618840 279.688864 L 4463.618840 253.232171 z " FillRule="NonZero"/>
- </Path.Data>
- </Path>
- </Canvas>
- </Canvas>
- </UserControl>
|