nss.vue 324 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432
  1. <template>
  2. <div>
  3. <el-row :gutter="10">
  4. <el-col :span="24">
  5. <previewPicture>
  6. <template v-slot:svg>
  7. <svg class="svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
  8. version="1.1" id="图层_1" x="0px" y="0px" width="1932.596px" height="894.189px"
  9. viewBox="-30 0 1920.596 914.189" enable-background="new 0 0 1922.596 894.189"
  10. xml:space="preserve">
  11. <g id="other">
  12. <g xmlns="http://www.w3.org/2000/svg" id="add">
  13. <g id="_x31_11">
  14. <g id="newMWsvg">
  15. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" cx="744.836" cy="35.147" r="8.612"/>
  16. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" cx="730.26" cy="21.228" r="8.611"/>
  17. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" points="733.683,25.549 730.685,22.389 727.703,25.359 "/>
  18. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" x1="730.623" y1="22.305" x2="730.794" y2="16.907"/>
  19. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" points="743.067,39.21 748.728,36.279 743.327,33.154 "/>
  20. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" cx="744.836" cy="21.228" r="8.611"/>
  21. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" points="748.259,25.549 745.26,22.389 742.279,25.359 "/>
  22. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" x1="745.199" y1="22.305" x2="745.37" y2="16.907"/>
  23. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" cx="730.26" cy="35.147" r="8.611"/>
  24. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" points="733.683,39.468 730.685,36.308 727.703,39.278 "/>
  25. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" x1="730.623" y1="36.224" x2="730.794" y2="30.826"/>
  26. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" cx="738.09" cy="48.393" r="8.611"/>
  27. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" points="741.513,52.714 738.515,49.554 735.533,52.524 "/>
  28. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" x1="738.453" y1="49.47" x2="738.624" y2="44.072"/>
  29. </g>
  30. <g>
  31. <rect x="673.431" y="70.988" transform="matrix(1 0.0082 -0.0082 1 0.6161 -5.6702)" fill="#9F1A59" width="39.991" height="2.981"/>
  32. <g>
  33. <g>
  34. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10" x1="783.15" y1="78.717" x2="783.249" y2="66.687"/>
  35. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10" x1="786.483" y1="76.26" x2="786.54" y2="69.197"/>
  36. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10" x1="789.805" y1="74.908" x2="789.84" y2="70.604"/>
  37. </g>
  38. </g>
  39. <rect x="712.146" y="63.072" transform="matrix(1 0.0084 -0.0084 1 0.6393 -6.0142)" fill="#CAA51A" width="2.547" height="19.448"/>
  40. <rect x="752.134" y="63.399" transform="matrix(1 0.0082 -0.0082 1 0.6283 -6.2071)" fill="#CAA51A" width="2.547" height="19.449"/>
  41. <rect x="721.916" y="71.343" transform="matrix(1 0.0082 -0.0082 1 0.6215 -6.0342)" fill="#9F1A59" width="29.617" height="2.981"/>
  42. <rect x="737.579" y="57.119" transform="matrix(1 0.0086 -0.0086 1 0.5744 -6.3162)" fill="#9F1A59" width="1.941" height="13.726"/>
  43. <rect x="761.681" y="71.087" transform="matrix(1 0.0082 -0.0082 1 0.62 -6.2882)" fill="#9F1A59" width="13.239" height="2.98"/>
  44. <rect x="774.921" y="71.175" transform="matrix(1 0.0082 -0.0082 1 0.6219 -6.385)" fill="#40B9B0" width="8.278" height="2.98"/>
  45. <rect x="759.958" y="63.463" transform="matrix(1 0.008 -0.008 1 0.6135 -6.1223)" fill="#CAA51A" width="2.549" height="19.449"/>
  46. <rect x="719.971" y="63.135" transform="matrix(1 0.0082 -0.0082 1 0.6248 -5.9398)" fill="#CAA51A" width="2.548" height="19.449"/>
  47. </g>
  48. </g>
  49. <g id="_x31_11_1_">
  50. <g id="newMWsvg_1_">
  51. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" cx="1331.365" cy="35.035" r="8.612"/>
  52. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" cx="1316.789" cy="21.116" r="8.611"/>
  53. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" points="1320.213,25.437 1317.214,22.277 1314.232,25.247 "/>
  54. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" x1="1317.152" y1="22.193" x2="1317.323" y2="16.795"/>
  55. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" points="1329.597,39.098 1335.258,36.167 1329.855,33.042 "/>
  56. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" cx="1331.365" cy="21.116" r="8.611"/>
  57. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" points="1334.788,25.437 1331.789,22.277 1328.809,25.247 "/>
  58. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" x1="1331.729" y1="22.193" x2="1331.898" y2="16.795"/>
  59. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" cx="1316.789" cy="35.035" r="8.611"/>
  60. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" points="1320.213,39.356 1317.214,36.196 1314.232,39.166 "/>
  61. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" x1="1317.152" y1="36.112" x2="1317.323" y2="30.714"/>
  62. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" cx="1324.619" cy="48.281" r="8.611"/>
  63. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" points="1328.043,52.602 1325.044,49.442 1322.063,52.412 "/>
  64. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" x1="1324.982" y1="49.358" x2="1325.153" y2="43.96"/>
  65. </g>
  66. <g>
  67. <rect x="1259.96" y="70.876" transform="matrix(1 0.0082 -0.0082 1 0.6348 -10.4684)" fill="#9F1A59" width="39.991" height="2.981"/>
  68. <g>
  69. <g>
  70. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10" x1="1369.68" y1="78.605" x2="1369.777" y2="66.575"/>
  71. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10" x1="1373.012" y1="76.148" x2="1373.069" y2="69.085"/>
  72. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10" x1="1376.334" y1="74.796" x2="1376.369" y2="70.493"/>
  73. </g>
  74. </g>
  75. <rect x="1298.675" y="62.96" transform="matrix(1 0.0084 -0.0084 1 0.6594 -10.9629)" fill="#CAA51A" width="2.547" height="19.448"/>
  76. <rect x="1338.664" y="63.287" transform="matrix(1 0.0082 -0.0082 1 0.6475 -11.0434)" fill="#CAA51A" width="2.547" height="19.449"/>
  77. <rect x="1308.445" y="71.231" transform="matrix(1 0.0082 -0.0082 1 0.6403 -10.8403)" fill="#9F1A59" width="29.616" height="2.981"/>
  78. <rect x="1324.108" y="57.007" transform="matrix(1 0.0086 -0.0086 1 0.595 -11.3341)" fill="#9F1A59" width="1.941" height="13.726"/>
  79. <rect x="1348.21" y="70.976" transform="matrix(1 0.0082 -0.0082 1 0.6387 -11.0901)" fill="#9F1A59" width="13.24" height="2.98"/>
  80. <rect x="1361.45" y="71.064" transform="matrix(1 0.0082 -0.0082 1 0.6407 -11.1932)" fill="#40B9B0" width="8.279" height="2.98"/>
  81. <rect x="1346.488" y="63.351" transform="matrix(1 0.008 -0.008 1 0.6316 -10.8414)" fill="#CAA51A" width="2.549" height="19.449"/>
  82. <rect x="1306.5" y="63.023" transform="matrix(1 0.0082 -0.0082 1 0.6436 -10.77)" fill="#CAA51A" width="2.549" height="19.449"/>
  83. </g>
  84. </g>
  85. </g>
  86. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  87. d="M1420.582,668.486"></path>
  88. <g>
  89. <rect x="8.646" y="72.742" opacity="0.9" fill="#162320" enable-background="new "
  90. width="103.188" height="18.492" />
  91. <rect x="8.646" y="93.24" opacity="0.9" fill="#162320" enable-background="new "
  92. width="103.188" height="18.49" />
  93. <rect x="8.646" y="113.736" opacity="0.9" fill="#162320" enable-background="new "
  94. width="103.188" height="18.49" />
  95. <rect x="8.646" y="134.232" opacity="0.9" fill="#162320" enable-background="new "
  96. width="103.188" height="18.49" />
  97. <g>
  98. <text transform="matrix(1 0 0 1 25.5896 86.6943)" fill="#97A1A2"
  99. font-family="'MicrosoftYaHei'" font-size="11.3899">
  100. Ua
  101. </text>
  102. <text transform="matrix(1 0 0 1 40.3884 86.6943)" fill="#97A1A2"
  103. font-family="'MicrosoftYaHei'" font-size="9.6234">
  104. (kV)
  105. </text>
  106. <text transform="matrix(1 0 0 1 58.5647 86.6943)" fill="#97A1A2"
  107. font-family="'MicrosoftYaHei'" font-size="11.3899">
  108. :
  109. </text>
  110. </g>
  111. <g>
  112. <text transform="matrix(1 0 0 1 18.3152 105.0537)" fill="#97A1A2"
  113. font-family="'MicrosoftYaHei'" font-size="11.3899">
  114. Uab
  115. </text>
  116. <text transform="matrix(1 0 0 1 40.3894 105.0537)" fill="#97A1A2"
  117. font-family="'MicrosoftYaHei'" font-size="9.6234">
  118. (kV)
  119. </text>
  120. <text transform="matrix(1 0 0 1 58.5642 105.0537)" fill="#97A1A2"
  121. font-family="'MicrosoftYaHei'" font-size="11.3899">
  122. :
  123. </text>
  124. </g>
  125. <g>
  126. <text transform="matrix(1 0 0 1 21.1628 127.3389)" fill="#97A1A2"
  127. font-family="'MicrosoftYaHei'" font-size="11.3899">
  128. 3UO
  129. </text>
  130. <text transform="matrix(1 0 0 1 45.6277 127.3389)" fill="#97A1A2"
  131. font-family="'MicrosoftYaHei'" font-size="9.6234">
  132. (V)
  133. </text>
  134. <text transform="matrix(1 0 0 1 58.5637 127.3389)" fill="#97A1A2"
  135. font-family="'MicrosoftYaHei'" font-size="11.3899">
  136. :
  137. </text>
  138. </g>
  139. <g>
  140. <text transform="matrix(1 0 0 1 33.9104 148.1729)" fill="#97A1A2"
  141. font-family="'MicrosoftYaHei'" font-size="11.3899">
  142. F
  143. </text>
  144. <text transform="matrix(1 0 0 1 39.9612 148.1729)" fill="#97A1A2"
  145. font-family="'MicrosoftYaHei'" font-size="9.6234">
  146. (Hz)
  147. </text>
  148. <text transform="matrix(1 0 0 1 58.5642 148.1729)" fill="#97A1A2"
  149. font-family="'MicrosoftYaHei'" font-size="11.3899">
  150. :
  151. </text>
  152. </g>
  153. </g>
  154. <g>
  155. <rect x="1716.857" y="82.518" opacity="0.9" fill="#162320"
  156. enable-background="new " width="103.188" height="18.492" />
  157. <rect x="1716.857" y="103.016" opacity="0.9" fill="#162320"
  158. enable-background="new " width="103.188" height="18.488" />
  159. <rect x="1716.857" y="123.512" opacity="0.9" fill="#162320"
  160. enable-background="new " width="103.188" height="18.488" />
  161. <rect x="1716.857" y="144.01" opacity="0.9" fill="#162320"
  162. enable-background="new " width="103.188" height="18.488" />
  163. <g>
  164. <text transform="matrix(1 0 0 1 1733.8 96.4697)" fill="#97A1A2"
  165. font-family="'MicrosoftYaHei'" font-size="11.3899">
  166. Ua
  167. </text>
  168. <text transform="matrix(1 0 0 1 1748.5989 96.4697)" fill="#97A1A2"
  169. font-family="'MicrosoftYaHei'" font-size="9.6234">
  170. (kV)
  171. </text>
  172. <text transform="matrix(1 0 0 1 1766.7747 96.4697)" fill="#97A1A2"
  173. font-family="'MicrosoftYaHei'" font-size="11.3899">
  174. :
  175. </text>
  176. </g>
  177. <g>
  178. <text transform="matrix(1 0 0 1 1726.5247 114.8291)" fill="#97A1A2"
  179. font-family="'MicrosoftYaHei'" font-size="11.3899">
  180. Uab
  181. </text>
  182. <text transform="matrix(1 0 0 1 1748.5989 114.8291)" fill="#97A1A2"
  183. font-family="'MicrosoftYaHei'" font-size="9.6234">
  184. (kV)
  185. </text>
  186. <text transform="matrix(1 0 0 1 1766.7747 114.8291)" fill="#97A1A2"
  187. font-family="'MicrosoftYaHei'" font-size="11.3899">
  188. :
  189. </text>
  190. </g>
  191. <g>
  192. <text transform="matrix(1 0 0 1 1729.3723 137.1143)" fill="#97A1A2"
  193. font-family="'MicrosoftYaHei'" font-size="11.3899">
  194. 3UO
  195. </text>
  196. <text transform="matrix(1 0 0 1 1753.8372 137.1143)" fill="#97A1A2"
  197. font-family="'MicrosoftYaHei'" font-size="9.6234">
  198. (V)
  199. </text>
  200. <text transform="matrix(1 0 0 1 1766.7727 137.1143)" fill="#97A1A2"
  201. font-family="'MicrosoftYaHei'" font-size="11.3899">
  202. :
  203. </text>
  204. </g>
  205. <g>
  206. <text transform="matrix(1 0 0 1 1742.1204 157.9482)" fill="#97A1A2"
  207. font-family="'MicrosoftYaHei'" font-size="11.3899">
  208. F
  209. </text>
  210. <text transform="matrix(1 0 0 1 1748.1711 157.9482)" fill="#97A1A2"
  211. font-family="'MicrosoftYaHei'" font-size="9.6234">
  212. (Hz)
  213. </text>
  214. <text transform="matrix(1 0 0 1 1766.7747 157.9482)" fill="#97A1A2"
  215. font-family="'MicrosoftYaHei'" font-size="11.3899">
  216. :
  217. </text>
  218. </g>
  219. </g>
  220. <rect x="0" y="215.455" fill="#9F1A59" width="1087.332" height="2.25" />
  221. <rect x="1125.332" y="215.455" fill="#9F1A59" width="748.181" height="2.25" />
  222. <g>
  223. <rect x="433.904" y="60.179" opacity="0.9" fill="#162320"
  224. enable-background="new " width="86.619" height="18.489" />
  225. <rect x="433.904" y="80.677" opacity="0.9" fill="#162320"
  226. enable-background="new " width="86.619" height="18.488" />
  227. <rect x="433.904" y="101.172" opacity="0.9" fill="#162320"
  228. enable-background="new " width="86.619" height="18.49" />
  229. <g>
  230. <text transform="matrix(1 0 0 1 452.6292 74.1299)" fill="#97A1A2"
  231. font-family="'MicrosoftYaHei'" font-size="11.3899">
  232. la
  233. </text>
  234. <text transform="matrix(1 0 0 1 461.9563 74.1299)" fill="#97A1A2"
  235. font-family="'MicrosoftYaHei'" font-size="9.6234">
  236. (A)
  237. </text>
  238. <text transform="matrix(1 0 0 1 475.155 74.1299)" fill="#97A1A2"
  239. font-family="'MicrosoftYaHei'" font-size="11.3899">
  240. :
  241. </text>
  242. </g>
  243. <g>
  244. <text transform="matrix(1 0 0 1 436.7263 92.4893)" fill="#97A1A2"
  245. font-family="'MicrosoftYaHei'" font-size="11.3899">
  246. P(MVar):
  247. </text>
  248. </g>
  249. <g>
  250. <text transform="matrix(1 0 0 1 436.7039 114.7744)" fill="#97A1A2"
  251. font-family="'MicrosoftYaHei'" font-size="11.3899">
  252. Q(MVar):
  253. </text>
  254. </g>
  255. <rect x="433.904" y="121.662" opacity="0.9" fill="#162320"
  256. enable-background="new " width="86.619" height="18.49" />
  257. <g>
  258. <text transform="matrix(1 0 0 1 443.2039 133.4756)" fill="#97A1A2"
  259. font-family="'MicrosoftYaHei'" font-size="11.3899">
  260. Ux
  261. </text>
  262. <text transform="matrix(1 0 0 1 456.9797 133.4756)" fill="#97A1A2"
  263. font-family="'MicrosoftYaHei'" font-size="9.6234">
  264. (kV)
  265. </text>
  266. <text transform="matrix(1 0 0 1 475.155 133.4756)" fill="#97A1A2"
  267. font-family="'MicrosoftYaHei'" font-size="11.3899">
  268. :
  269. </text>
  270. </g>
  271. <rect x="433.904" y="142.158" opacity="0.9" fill="#162320"
  272. enable-background="new " width="86.619" height="18.49" />
  273. <g>
  274. <text transform="matrix(1 0 0 1 440.6799 156.0986)" fill="#97A1A2"
  275. font-family="'MicrosoftYaHei'" font-size="11.3899">
  276. COSΦ:
  277. </text>
  278. </g>
  279. </g>
  280. <g>
  281. <rect x="482.332" y="348.68" opacity="0.9" fill="#162320"
  282. enable-background="new " width="103.089" height="18.491" />
  283. <rect x="482.332" y="369.177" opacity="0.9" fill="#162320"
  284. enable-background="new " width="103.089" height="18.489" />
  285. <rect x="482.332" y="389.675" opacity="0.9" fill="#162320"
  286. enable-background="new " width="103.089" height="18.488" />
  287. <g>
  288. <text transform="matrix(1 0 0 1 517.2732 362.6299)" fill="#97A1A2"
  289. font-family="'MicrosoftYaHei'" font-size="11.3899">
  290. 档位:
  291. </text>
  292. </g>
  293. <g>
  294. <text transform="matrix(1 0 0 1 487.8137 381.9912)" fill="#97A1A2"
  295. font-family="'MicrosoftYaHei'" font-size="11.3899">
  296. 油面温度1:
  297. </text>
  298. </g>
  299. <g>
  300. <text transform="matrix(1 0 0 1 487.8137 403.2764)" fill="#97A1A2"
  301. font-family="'MicrosoftYaHei'" font-size="11.3899">
  302. 油面温度2:
  303. </text>
  304. </g>
  305. <rect x="482.332" y="267.802" opacity="0.9" fill="#162320"
  306. enable-background="new " width="103.089" height="18.489" />
  307. <rect x="482.332" y="288.301" opacity="0.9" fill="#162320"
  308. enable-background="new " width="103.089" height="18.489" />
  309. <rect x="482.332" y="308.797" opacity="0.9" fill="#162320"
  310. enable-background="new " width="103.089" height="18.488" />
  311. <g>
  312. <text transform="matrix(1 0 0 1 517.5271 281.7529)" fill="#97A1A2"
  313. font-family="'MicrosoftYaHei'" font-size="11.3899">
  314. la
  315. </text>
  316. <text transform="matrix(1 0 0 1 526.8542 281.7529)" fill="#97A1A2"
  317. font-family="'MicrosoftYaHei'" font-size="9.6234">
  318. (A)
  319. </text>
  320. <text transform="matrix(1 0 0 1 540.053 281.7529)" fill="#97A1A2"
  321. font-family="'MicrosoftYaHei'" font-size="11.3899">
  322. :
  323. </text>
  324. </g>
  325. <g>
  326. <text transform="matrix(1 0 0 1 501.6243 300.1123)" fill="#97A1A2"
  327. font-family="'MicrosoftYaHei'" font-size="11.3899">
  328. P(MVar):
  329. </text>
  330. </g>
  331. <g>
  332. <text transform="matrix(1 0 0 1 501.6018 322.3975)" fill="#97A1A2"
  333. font-family="'MicrosoftYaHei'" font-size="11.3899">
  334. Q(MVar):
  335. </text>
  336. </g>
  337. <rect x="482.332" y="328.749" opacity="0.9" fill="#162320"
  338. enable-background="new " width="103.089" height="18.49" />
  339. <g>
  340. <text transform="matrix(1 0 0 1 506.5779 342.6904)" fill="#97A1A2"
  341. font-family="'MicrosoftYaHei'" font-size="11.3899">
  342. COSΦ:
  343. </text>
  344. </g>
  345. <rect x="482.332" y="408.813" opacity="0.9" fill="#162320"
  346. enable-background="new " width="103.089" height="18.491" />
  347. <rect x="482.332" y="429.311" opacity="0.9" fill="#162320"
  348. enable-background="new " width="103.089" height="18.49" />
  349. <rect x="482.332" y="449.807" opacity="0.9" fill="#162320"
  350. enable-background="new " width="103.089" height="18.49" />
  351. <g>
  352. <text transform="matrix(1 0 0 1 517.5271 422.7646)" fill="#97A1A2"
  353. font-family="'MicrosoftYaHei'" font-size="11.3899">
  354. la
  355. </text>
  356. <text transform="matrix(1 0 0 1 526.8542 422.7646)" fill="#97A1A2"
  357. font-family="'MicrosoftYaHei'" font-size="9.6234">
  358. (A)
  359. </text>
  360. <text transform="matrix(1 0 0 1 540.053 422.7646)" fill="#97A1A2"
  361. font-family="'MicrosoftYaHei'" font-size="11.3899">
  362. :
  363. </text>
  364. </g>
  365. <g>
  366. <text transform="matrix(1 0 0 1 501.6243 441.124)" fill="#97A1A2"
  367. font-family="'MicrosoftYaHei'" font-size="11.3899">
  368. P(MVar):
  369. </text>
  370. </g>
  371. <g>
  372. <text transform="matrix(1 0 0 1 501.6018 463.4092)" fill="#97A1A2"
  373. font-family="'MicrosoftYaHei'" font-size="11.3899">
  374. Q(MVar):
  375. </text>
  376. </g>
  377. <rect x="482.332" y="469.761" opacity="0.9" fill="#162320"
  378. enable-background="new " width="103.089" height="18.489" />
  379. <g>
  380. <text transform="matrix(1 0 0 1 506.5779 483.7021)" fill="#97A1A2"
  381. font-family="'MicrosoftYaHei'" font-size="11.3899">
  382. COSΦ:
  383. </text>
  384. </g>
  385. </g>
  386. <g>
  387. <rect x="657.886" y="398.79" opacity="0.9" fill="#162320"
  388. enable-background="new " width="86.619" height="18.491" />
  389. <rect x="657.886" y="419.287" opacity="0.9" fill="#162320"
  390. enable-background="new " width="86.619" height="18.49" />
  391. <rect x="657.886" y="439.783" opacity="0.9" fill="#162320"
  392. enable-background="new " width="86.619" height="18.49" />
  393. <g>
  394. <text transform="matrix(1 0 0 1 666.1624 412.7412)" fill="#97A1A2"
  395. font-family="'MicrosoftYaHei'" font-size="11.3899">
  396. Ua
  397. </text>
  398. <text transform="matrix(1 0 0 1 680.9612 412.7412)" fill="#97A1A2"
  399. font-family="'MicrosoftYaHei'" font-size="9.6234">
  400. (kV)
  401. </text>
  402. <text transform="matrix(1 0 0 1 699.1375 412.7412)" fill="#97A1A2"
  403. font-family="'MicrosoftYaHei'" font-size="11.3899">
  404. :
  405. </text>
  406. </g>
  407. <g>
  408. <text transform="matrix(1 0 0 1 658.8879 431.1006)" fill="#97A1A2"
  409. font-family="'MicrosoftYaHei'" font-size="11.3899">
  410. Uab
  411. </text>
  412. <text transform="matrix(1 0 0 1 680.9617 431.1006)" fill="#97A1A2"
  413. font-family="'MicrosoftYaHei'" font-size="9.6234">
  414. (kV)
  415. </text>
  416. <text transform="matrix(1 0 0 1 699.137 431.1006)" fill="#97A1A2"
  417. font-family="'MicrosoftYaHei'" font-size="11.3899">
  418. :
  419. </text>
  420. </g>
  421. <g>
  422. <text transform="matrix(1 0 0 1 661.7356 453.3857)" fill="#97A1A2"
  423. font-family="'MicrosoftYaHei'" font-size="11.3899">
  424. 3UO
  425. </text>
  426. <text transform="matrix(1 0 0 1 686.2004 453.3857)" fill="#97A1A2"
  427. font-family="'MicrosoftYaHei'" font-size="9.6234">
  428. (V)
  429. </text>
  430. <text transform="matrix(1 0 0 1 699.1365 453.3857)" fill="#97A1A2"
  431. font-family="'MicrosoftYaHei'" font-size="11.3899">
  432. :
  433. </text>
  434. </g>
  435. <rect x="657.886" y="460.273" opacity="0.9" fill="#162320"
  436. enable-background="new " width="86.619" height="18.489" />
  437. <g>
  438. <text transform="matrix(1 0 0 1 674.4832 472.0869)" fill="#97A1A2"
  439. font-family="'MicrosoftYaHei'" font-size="11.3899">
  440. F
  441. </text>
  442. <text transform="matrix(1 0 0 1 680.5339 472.0869)" fill="#97A1A2"
  443. font-family="'MicrosoftYaHei'" font-size="9.6234">
  444. (Hz)
  445. </text>
  446. <text transform="matrix(1 0 0 1 699.1375 472.0869)" fill="#97A1A2"
  447. font-family="'MicrosoftYaHei'" font-size="11.3899">
  448. :
  449. </text>
  450. </g>
  451. </g>
  452. <g>
  453. <rect x="15.902" y="398.79" opacity="0.9" fill="#162320" enable-background="new "
  454. width="86.619" height="18.491" />
  455. <rect x="15.902" y="419.287" opacity="0.9" fill="#162320"
  456. enable-background="new " width="86.619" height="18.49" />
  457. <rect x="15.902" y="439.783" opacity="0.9" fill="#162320"
  458. enable-background="new " width="86.619" height="18.49" />
  459. <g>
  460. <text transform="matrix(1 0 0 1 24.178 412.7412)" fill="#97A1A2"
  461. font-family="'MicrosoftYaHei'" font-size="11.3899">
  462. Ua
  463. </text>
  464. <text transform="matrix(1 0 0 1 38.9768 412.7412)" fill="#97A1A2"
  465. font-family="'MicrosoftYaHei'" font-size="9.6234">
  466. (kV)
  467. </text>
  468. <text transform="matrix(1 0 0 1 57.1531 412.7412)" fill="#97A1A2"
  469. font-family="'MicrosoftYaHei'" font-size="11.3899">
  470. :
  471. </text>
  472. </g>
  473. <g>
  474. <text transform="matrix(1 0 0 1 16.9036 431.1006)" fill="#97A1A2"
  475. font-family="'MicrosoftYaHei'" font-size="11.3899">
  476. Uab
  477. </text>
  478. <text transform="matrix(1 0 0 1 38.9773 431.1006)" fill="#97A1A2"
  479. font-family="'MicrosoftYaHei'" font-size="9.6234">
  480. (kV)
  481. </text>
  482. <text transform="matrix(1 0 0 1 57.1526 431.1006)" fill="#97A1A2"
  483. font-family="'MicrosoftYaHei'" font-size="11.3899">
  484. :
  485. </text>
  486. </g>
  487. <g>
  488. <text transform="matrix(1 0 0 1 19.7512 453.3857)" fill="#97A1A2"
  489. font-family="'MicrosoftYaHei'" font-size="11.3899">
  490. 3UO
  491. </text>
  492. <text transform="matrix(1 0 0 1 44.2166 453.3857)" fill="#97A1A2"
  493. font-family="'MicrosoftYaHei'" font-size="9.6234">
  494. (V)
  495. </text>
  496. <text transform="matrix(1 0 0 1 57.1521 453.3857)" fill="#97A1A2"
  497. font-family="'MicrosoftYaHei'" font-size="11.3899">
  498. :
  499. </text>
  500. </g>
  501. <rect x="15.902" y="460.273" opacity="0.9" fill="#162320"
  502. enable-background="new " width="86.619" height="18.489" />
  503. <g>
  504. <text transform="matrix(1 0 0 1 32.4988 472.0869)" fill="#97A1A2"
  505. font-family="'MicrosoftYaHei'" font-size="11.3899">
  506. F
  507. </text>
  508. <text transform="matrix(1 0 0 1 38.5496 472.0869)" fill="#97A1A2"
  509. font-family="'MicrosoftYaHei'" font-size="9.6234">
  510. (Hz)
  511. </text>
  512. <text transform="matrix(1 0 0 1 57.1526 472.0869)" fill="#97A1A2"
  513. font-family="'MicrosoftYaHei'" font-size="11.3899">
  514. :
  515. </text>
  516. </g>
  517. </g>
  518. <g>
  519. <rect x="1298.813" y="398.79" opacity="0.9" fill="#162320"
  520. enable-background="new " width="86.619" height="18.491" />
  521. <rect x="1298.813" y="419.287" opacity="0.9" fill="#162320"
  522. enable-background="new " width="86.619" height="18.49" />
  523. <rect x="1298.813" y="439.783" opacity="0.9" fill="#162320"
  524. enable-background="new " width="86.619" height="18.49" />
  525. <g>
  526. <text transform="matrix(1 0 0 1 1307.0872 412.7412)" fill="#97A1A2"
  527. font-family="'MicrosoftYaHei'" font-size="11.3899">
  528. Ua
  529. </text>
  530. <text transform="matrix(1 0 0 1 1321.886 412.7412)" fill="#97A1A2"
  531. font-family="'MicrosoftYaHei'" font-size="9.6234">
  532. (kV)
  533. </text>
  534. <text transform="matrix(1 0 0 1 1340.0637 412.7412)" fill="#97A1A2"
  535. font-family="'MicrosoftYaHei'" font-size="11.3899">
  536. :
  537. </text>
  538. </g>
  539. <g>
  540. <text transform="matrix(1 0 0 1 1299.8118 431.1006)" fill="#97A1A2"
  541. font-family="'MicrosoftYaHei'" font-size="11.3899">
  542. Uab
  543. </text>
  544. <text transform="matrix(1 0 0 1 1321.886 431.1006)" fill="#97A1A2"
  545. font-family="'MicrosoftYaHei'" font-size="9.6234">
  546. (kV)
  547. </text>
  548. <text transform="matrix(1 0 0 1 1340.0618 431.1006)" fill="#97A1A2"
  549. font-family="'MicrosoftYaHei'" font-size="11.3899">
  550. :
  551. </text>
  552. </g>
  553. <g>
  554. <text transform="matrix(1 0 0 1 1302.6594 453.3857)" fill="#97A1A2"
  555. font-family="'MicrosoftYaHei'" font-size="11.3899">
  556. 3UO
  557. </text>
  558. <text transform="matrix(1 0 0 1 1327.1243 453.3857)" fill="#97A1A2"
  559. font-family="'MicrosoftYaHei'" font-size="9.6234">
  560. (V)
  561. </text>
  562. <text transform="matrix(1 0 0 1 1340.0618 453.3857)" fill="#97A1A2"
  563. font-family="'MicrosoftYaHei'" font-size="11.3899">
  564. :
  565. </text>
  566. </g>
  567. <rect x="1298.813" y="460.273" opacity="0.9" fill="#162320"
  568. enable-background="new " width="86.619" height="18.489" />
  569. <g>
  570. <text transform="matrix(1 0 0 1 1315.4075 472.0869)" fill="#97A1A2"
  571. font-family="'MicrosoftYaHei'" font-size="11.3899">
  572. F
  573. </text>
  574. <text transform="matrix(1 0 0 1 1321.4583 472.0869)" fill="#97A1A2"
  575. font-family="'MicrosoftYaHei'" font-size="9.6234">
  576. (Hz)
  577. </text>
  578. <text transform="matrix(1 0 0 1 1340.0618 472.0869)" fill="#97A1A2"
  579. font-family="'MicrosoftYaHei'" font-size="11.3899">
  580. :
  581. </text>
  582. </g>
  583. </g>
  584. <g>
  585. <rect x="1006.239" y="60.179" opacity="0.9" fill="#162320"
  586. enable-background="new " width="86.619" height="18.489" />
  587. <rect x="1006.239" y="80.677" opacity="0.9" fill="#162320"
  588. enable-background="new " width="86.619" height="18.488" />
  589. <rect x="1006.239" y="101.172" opacity="0.9" fill="#162320"
  590. enable-background="new " width="86.619" height="18.49" />
  591. <g>
  592. <text transform="matrix(1 0 0 1 1024.9622 74.1299)" fill="#97A1A2"
  593. font-family="'MicrosoftYaHei'" font-size="11.3899">
  594. la
  595. </text>
  596. <text transform="matrix(1 0 0 1 1034.2883 74.1299)" fill="#97A1A2"
  597. font-family="'MicrosoftYaHei'" font-size="9.6234">
  598. (A)
  599. </text>
  600. <text transform="matrix(1 0 0 1 1047.4875 74.1299)" fill="#97A1A2"
  601. font-family="'MicrosoftYaHei'" font-size="11.3899">
  602. :
  603. </text>
  604. </g>
  605. <g>
  606. <text transform="matrix(1 0 0 1 1009.0598 92.4893)" fill="#97A1A2"
  607. font-family="'MicrosoftYaHei'" font-size="11.3899">
  608. P(MVar):
  609. </text>
  610. </g>
  611. <g>
  612. <text transform="matrix(1 0 0 1 1009.0364 114.7744)" fill="#97A1A2"
  613. font-family="'MicrosoftYaHei'" font-size="11.3899">
  614. Q(MVar):
  615. </text>
  616. </g>
  617. <rect x="1006.239" y="121.662" opacity="0.9" fill="#162320"
  618. enable-background="new " width="86.619" height="18.49" />
  619. <g>
  620. <text transform="matrix(1 0 0 1 1015.5364 133.4756)" fill="#97A1A2"
  621. font-family="'MicrosoftYaHei'" font-size="11.3899">
  622. Ux
  623. </text>
  624. <text transform="matrix(1 0 0 1 1029.3137 133.4756)" fill="#97A1A2"
  625. font-family="'MicrosoftYaHei'" font-size="9.6234">
  626. (kV)
  627. </text>
  628. <text transform="matrix(1 0 0 1 1047.4875 133.4756)" fill="#97A1A2"
  629. font-family="'MicrosoftYaHei'" font-size="11.3899">
  630. :
  631. </text>
  632. </g>
  633. <rect x="1006.239" y="142.158" opacity="0.9" fill="#162320"
  634. enable-background="new " width="86.619" height="18.49" />
  635. <g>
  636. <text transform="matrix(1 0 0 1 1024.0129 156.0986)" fill="#97A1A2"
  637. font-family="'MicrosoftYaHei'" font-size="11.3899">
  638. COS:
  639. </text>
  640. </g>
  641. </g>
  642. <rect x="349.882" y="200.97" fill="#9F1A59" width="3.047" height="15.61" />
  643. <text transform="matrix(1 0 0 1 367.1746 65.292)" fill="#FFFFFF"
  644. font-family="'MicrosoftYaHei'" font-size="11.9907">
  645. 101-3
  646. </text>
  647. <text transform="matrix(1 0 0 1 367.1746 130.0693)" fill="#FFFFFF"
  648. font-family="'MicrosoftYaHei'" font-size="11.9907">
  649. 101
  650. </text>
  651. <text transform="matrix(1 0 0 1 242.8196 44.4717)" fill="#FFFFFF"
  652. font-family="'MicrosoftYaHei'" font-size="11.9907">
  653. 101-0
  654. </text>
  655. <g>
  656. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  657. x1="297.239" y1="33.306" x2="297.239" y2="45.606" />
  658. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  659. x1="305.702" y1="39.456" x2="297.239" y2="39.456" />
  660. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  661. x1="293.854" y1="35.845" x2="293.854" y2="43.067" />
  662. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  663. x1="290.469" y1="37.257" x2="290.469" y2="41.655" />
  664. </g>
  665. <text transform="matrix(1 0 0 1 242.8196 88.4814)" fill="#FFFFFF"
  666. font-family="'MicrosoftYaHei'" font-size="11.9907">
  667. 101-03
  668. </text>
  669. <g>
  670. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  671. x1="297.239" y1="79.296" x2="297.239" y2="91.596" />
  672. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  673. x1="305.702" y1="85.445" x2="297.239" y2="85.445" />
  674. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  675. x1="293.854" y1="81.835" x2="293.854" y2="89.057" />
  676. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  677. x1="290.469" y1="83.246" x2="290.469" y2="87.646" />
  678. </g>
  679. <text transform="matrix(1 0 0 1 242.8196 168.2646)" fill="#FFFFFF"
  680. font-family="'MicrosoftYaHei'" font-size="11.9907">
  681. 101-01
  682. </text>
  683. <g>
  684. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  685. x1="298.14" y1="159.775" x2="298.14" y2="172.074" />
  686. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  687. x1="306.604" y1="165.927" x2="298.14" y2="165.927" />
  688. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  689. x1="294.754" y1="162.314" x2="294.754" y2="169.535" />
  690. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  691. x1="291.369" y1="163.725" x2="291.369" y2="168.125" />
  692. </g>
  693. <rect x="349.882" y="33.306" fill="#9F1A59" width="3.047" height="17.768" />
  694. <rect x="421.666" y="33.305" fill="#9F1A59" width="3.048" height="183.273" />
  695. <rect x="349.882" y="31.781" fill="#9F1A59" width="74.831" height="3.047" />
  696. <rect x="349.882" y="74.91" fill="#9F1A59" width="3.047" height="38.457" />
  697. <rect x="328.723" y="37.933" fill="#9F1A59" width="21.159" height="3.047" />
  698. <rect x="328.723" y="84.262" fill="#9F1A59" width="21.159" height="3.047" />
  699. <rect x="349.882" y="137.513" fill="#9F1A59" width="3.047" height="40.227" />
  700. <rect x="328.723" y="164.781" fill="#9F1A59" width="21.159" height="3.047" />
  701. <rect x="342.987" y="113.363" fill="#9F1A59" width="15.98" height="24.202" />
  702. <rect x="669.882" y="201.97" fill="#9F1A59" width="3.047" height="14.61" />
  703. <text transform="matrix(1 0 0 1 687.1746 103.1846)" fill="#FFFFFF"
  704. font-family="'MicrosoftYaHei'" font-size="11.9907">
  705. 102-3
  706. </text>
  707. <text transform="matrix(1 0 0 1 687.1746 148.2256)" fill="#FFFFFF"
  708. font-family="'MicrosoftYaHei'" font-size="11.9907">
  709. 111
  710. </text>
  711. <text transform="matrix(1 0 0 1 687.1746 192.9111)" fill="#FFFFFF"
  712. font-family="'MicrosoftYaHei'" font-size="11.9907">
  713. 111-1
  714. </text>
  715. <text transform="matrix(1 0 0 1 562.8196 74.4385)" fill="#FFFFFF"
  716. font-family="'MicrosoftYaHei'" font-size="11.9907">
  717. 111-0
  718. </text>
  719. <g>
  720. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  721. x1="617.239" y1="63.273" x2="617.239" y2="75.574" />
  722. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  723. x1="625.702" y1="69.424" x2="617.239" y2="69.424" />
  724. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  725. x1="613.854" y1="65.813" x2="613.854" y2="73.035" />
  726. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  727. x1="610.469" y1="67.225" x2="610.469" y2="71.623" />
  728. </g>
  729. <text transform="matrix(1 0 0 1 562.8196 123.5693)" fill="#FFFFFF"
  730. font-family="'MicrosoftYaHei'" font-size="11.9907">
  731. 111-03
  732. </text>
  733. <g>
  734. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  735. x1="617.239" y1="114.385" x2="617.239" y2="126.684" />
  736. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  737. x1="625.702" y1="120.533" x2="617.239" y2="120.533" />
  738. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  739. x1="613.854" y1="116.923" x2="613.854" y2="124.145" />
  740. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  741. x1="610.469" y1="118.334" x2="610.469" y2="122.733" />
  742. </g>
  743. <text transform="matrix(1 0 0 1 562.8196 169.2646)" fill="#FFFFFF"
  744. font-family="'MicrosoftYaHei'" font-size="11.9907">
  745. 111-01
  746. </text>
  747. <g>
  748. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  749. x1="618.14" y1="160.775" x2="618.14" y2="173.074" />
  750. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  751. x1="626.604" y1="166.927" x2="618.14" y2="166.927" />
  752. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  753. x1="614.754" y1="163.314" x2="614.754" y2="170.535" />
  754. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  755. x1="611.368" y1="164.725" x2="611.368" y2="169.125" />
  756. </g>
  757. <rect x="669.882" y="45.606" fill="#9F1A59" width="3.047" height="43.357" />
  758. <rect x="648.723" y="67.9" fill="#9F1A59" width="21.159" height="3.047" />
  759. <rect x="648.723" y="119.35" fill="#9F1A59" width="21.159" height="3.047" />
  760. <rect x="669.882" y="113.367" fill="#9F1A59" width="3.047" height="65.372" />
  761. <rect x="648.723" y="165.781" fill="#9F1A59" width="21.159" height="3.047" />
  762. <rect x="662.987" y="131.377" fill="#9F1A59" width="15.98" height="24.202" />
  763. <rect x="905.882" y="200.97" fill="#9F1A59" width="3.047" height="15.61" />
  764. <rect x="1256.821" y="202.907" fill="#9F1A59" width="3.047" height="13.675" />
  765. <text transform="matrix(1 0 0 1 919.1746 65.292)" fill="#FFFFFF"
  766. font-family="'MicrosoftYaHei'" font-size="11.9907">
  767. 102-3
  768. </text>
  769. <text transform="matrix(1 0 0 1 919.1746 130.0693)" fill="#FFFFFF"
  770. font-family="'MicrosoftYaHei'" font-size="11.9907">
  771. 102
  772. </text>
  773. <text transform="matrix(1 0 0 1 919.1746 191.9111)" fill="#FFFFFF"
  774. font-family="'MicrosoftYaHei'" font-size="11.9907">
  775. 102-1
  776. </text>
  777. <text transform="matrix(1 0 0 1 798.8201 44.4717)" fill="#FFFFFF"
  778. font-family="'MicrosoftYaHei'" font-size="11.9907">
  779. 102-0
  780. </text>
  781. <g>
  782. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  783. x1="853.24" y1="33.306" x2="853.24" y2="45.606" />
  784. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  785. x1="861.702" y1="39.456" x2="853.24" y2="39.456" />
  786. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  787. x1="849.854" y1="35.845" x2="849.854" y2="43.067" />
  788. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  789. x1="846.469" y1="37.257" x2="846.469" y2="41.655" />
  790. </g>
  791. <text transform="matrix(1 0 0 1 798.8201 88.4814)" fill="#FFFFFF"
  792. font-family="'MicrosoftYaHei'" font-size="11.9907">
  793. 102-03
  794. </text>
  795. <g>
  796. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  797. x1="853.24" y1="79.296" x2="853.24" y2="91.596" />
  798. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  799. x1="861.702" y1="85.445" x2="853.24" y2="85.445" />
  800. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  801. x1="849.854" y1="81.835" x2="849.854" y2="89.057" />
  802. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  803. x1="846.469" y1="83.246" x2="846.469" y2="87.646" />
  804. </g>
  805. <text transform="matrix(1 0 0 1 798.8201 168.2646)" fill="#FFFFFF"
  806. font-family="'MicrosoftYaHei'" font-size="11.9907">
  807. 102-01
  808. </text>
  809. <g>
  810. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  811. x1="854.141" y1="159.775" x2="854.141" y2="172.074" />
  812. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  813. x1="862.604" y1="165.927" x2="854.141" y2="165.927" />
  814. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  815. x1="850.755" y1="162.314" x2="850.755" y2="169.535" />
  816. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  817. x1="847.369" y1="163.725" x2="847.369" y2="168.125" />
  818. </g>
  819. <rect x="905.882" y="33.306" fill="#9F1A59" width="3.047" height="17.768" />
  820. <rect x="978.666" y="33.305" fill="#9F1A59" width="3.048" height="183.273" />
  821. <rect x="906.882" y="31.781" fill="#9F1A59" width="74.832" height="3.047" />
  822. <rect x="905.882" y="74.91" fill="#9F1A59" width="3.047" height="38.457" />
  823. <rect x="884.724" y="37.933" fill="#9F1A59" width="21.159" height="3.047" />
  824. <rect x="884.724" y="84.262" fill="#9F1A59" width="21.159" height="3.047" />
  825. <rect x="905.882" y="137.513" fill="#9F1A59" width="3.047" height="40.227" />
  826. <rect x="884.724" y="164.781" fill="#9F1A59" width="21.159" height="3.047" />
  827. <rect x="898.987" y="113.363" fill="#9F1A59" width="15.98" height="24.202" />
  828. <rect x="1484.502" y="200.97" fill="#9F1A59" width="3.047" height="15.61" />
  829. <text transform="matrix(1 0 0 1 1497.7942 65.292)" fill="#FFFFFF"
  830. font-family="'MicrosoftYaHei'" font-size="11.9907">
  831. 103-3
  832. </text>
  833. <text transform="matrix(1 0 0 1 1497.7942 130.0693)" fill="#FFFFFF"
  834. font-family="'MicrosoftYaHei'" font-size="11.9907">
  835. 103
  836. </text>
  837. <text transform="matrix(1 0 0 1 1497.7942 191.9111)" fill="#FFFFFF"
  838. font-family="'MicrosoftYaHei'" font-size="11.9907">
  839. 103-2
  840. </text>
  841. <text transform="matrix(1 0 0 1 1377.4387 44.4717)" fill="#FFFFFF"
  842. font-family="'MicrosoftYaHei'" font-size="11.9907">
  843. 103-0
  844. </text>
  845. <g>
  846. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  847. x1="1431.859" y1="33.306" x2="1431.859" y2="45.606" />
  848. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  849. x1="1440.323" y1="39.456" x2="1431.859" y2="39.456" />
  850. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  851. x1="1428.475" y1="35.845" x2="1428.475" y2="43.067" />
  852. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  853. x1="1425.088" y1="37.257" x2="1425.088" y2="41.655" />
  854. </g>
  855. <text transform="matrix(1 0 0 1 1377.4387 88.4814)" fill="#FFFFFF"
  856. font-family="'MicrosoftYaHei'" font-size="11.9907">
  857. 103-03
  858. </text>
  859. <g>
  860. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  861. x1="1431.859" y1="79.296" x2="1431.859" y2="91.596" />
  862. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  863. x1="1440.323" y1="85.445" x2="1431.859" y2="85.445" />
  864. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  865. x1="1428.475" y1="81.835" x2="1428.475" y2="89.057" />
  866. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  867. x1="1425.088" y1="83.246" x2="1425.088" y2="87.646" />
  868. </g>
  869. <text transform="matrix(1 0 0 1 1377.4387 168.2646)" fill="#FFFFFF"
  870. font-family="'MicrosoftYaHei'" font-size="11.9907">
  871. 103-02
  872. </text>
  873. <g>
  874. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  875. x1="1432.76" y1="159.775" x2="1432.76" y2="172.074" />
  876. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  877. x1="1441.225" y1="165.927" x2="1432.76" y2="165.927" />
  878. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  879. x1="1429.375" y1="162.314" x2="1429.375" y2="169.535" />
  880. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  881. x1="1425.989" y1="163.725" x2="1425.989" y2="168.125" />
  882. </g>
  883. <rect x="1484.502" y="33.306" fill="#9F1A59" width="3.047" height="17.768" />
  884. <rect x="1557.287" y="33.305" fill="#9F1A59" width="3.047" height="183.273" />
  885. <rect x="1485.502" y="31.781" fill="#9F1A59" width="74.832" height="3.047" />
  886. <rect x="1484.502" y="74.91" fill="#9F1A59" width="3.047" height="38.457" />
  887. <rect x="1463.344" y="37.933" fill="#9F1A59" width="21.158" height="3.047" />
  888. <rect x="1463.344" y="84.262" fill="#9F1A59" width="21.158" height="3.047" />
  889. <rect x="1484.502" y="137.513" fill="#9F1A59" width="3.047" height="40.227" />
  890. <rect x="1463.344" y="164.781" fill="#9F1A59" width="21.158" height="3.047" />
  891. <rect x="1477.607" y="113.363" fill="#9F1A59" width="15.98" height="24.202" />
  892. <polygon fill="#9F1A59" points="665.294,46.332 671.412,33.313 677.518,46.337 " />
  893. <rect x="621.097" y="1.334" fill="#44426C" width="97.569" height="20.818" />
  894. <text transform="matrix(1 0 0 1 638.4651 15.5264)" fill="#FFFFFF"
  895. font-family="'MicrosoftYaHei'" font-size="12.5667">
  896. 首风二甲线
  897. </text>
  898. <text transform="matrix(1 0 0 1 1275.636 103.1846)" fill="#FFFFFF"
  899. font-family="'MicrosoftYaHei'" font-size="11.9907">
  900. 121-3
  901. </text>
  902. <text transform="matrix(1 0 0 1 1275.636 148.2256)" fill="#FFFFFF"
  903. font-family="'MicrosoftYaHei'" font-size="11.9907">
  904. 121
  905. </text>
  906. <text transform="matrix(1 0 0 1 1275.636 192.9111)" fill="#FFFFFF"
  907. font-family="'MicrosoftYaHei'" font-size="11.9907">
  908. 121-2
  909. </text>
  910. <text transform="matrix(1 0 0 1 1151.2805 74.4385)" fill="#FFFFFF"
  911. font-family="'MicrosoftYaHei'" font-size="11.9907">
  912. 121-0
  913. </text>
  914. <g>
  915. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  916. x1="1205.701" y1="63.273" x2="1205.701" y2="75.574" />
  917. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  918. x1="1214.164" y1="69.424" x2="1205.701" y2="69.424" />
  919. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  920. x1="1202.314" y1="65.813" x2="1202.314" y2="73.035" />
  921. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  922. x1="1198.93" y1="67.225" x2="1198.93" y2="71.623" />
  923. </g>
  924. <text transform="matrix(1 0 0 1 1151.2805 123.5693)" fill="#FFFFFF"
  925. font-family="'MicrosoftYaHei'" font-size="11.9907">
  926. 121-03
  927. </text>
  928. <g>
  929. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  930. x1="1205.701" y1="114.385" x2="1205.701" y2="126.684" />
  931. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  932. x1="1214.164" y1="120.533" x2="1205.701" y2="120.533" />
  933. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  934. x1="1202.314" y1="116.923" x2="1202.314" y2="124.145" />
  935. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  936. x1="1198.93" y1="118.334" x2="1198.93" y2="122.733" />
  937. </g>
  938. <text transform="matrix(1 0 0 1 1151.2805 169.2646)" fill="#FFFFFF"
  939. font-family="'MicrosoftYaHei'" font-size="11.9907">
  940. 121-02
  941. </text>
  942. <g>
  943. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  944. x1="1206.604" y1="160.775" x2="1206.604" y2="173.074" />
  945. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  946. x1="1215.064" y1="166.927" x2="1206.604" y2="166.927" />
  947. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  948. x1="1203.215" y1="163.314" x2="1203.215" y2="170.535" />
  949. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  950. x1="1199.83" y1="164.725" x2="1199.83" y2="169.125" />
  951. </g>
  952. <rect x="1258.344" y="45.606" fill="#9F1A59" width="3.047" height="43.357" />
  953. <rect x="1237.186" y="67.9" fill="#9F1A59" width="21.158" height="3.047" />
  954. <rect x="1237.186" y="119.35" fill="#9F1A59" width="21.158" height="3.047" />
  955. <rect x="1258.344" y="113.029" fill="#9F1A59" width="3.047" height="65.71" />
  956. <rect x="1237.186" y="165.781" fill="#9F1A59" width="21.158" height="3.047" />
  957. <rect x="1251.448" y="131.377" fill="#9F1A59" width="15.981" height="24.202" />
  958. <polygon fill="#9F1A59" points="1253.756,46.332 1259.873,33.313 1265.979,46.337 " />
  959. <rect x="1204.278" fill="#44426C" width="97.567" height="20.818" />
  960. <text transform="matrix(1 0 0 1 1221.6438 14.1924)" fill="#FFFFFF"
  961. font-family="'MicrosoftYaHei'" font-size="12.5667">
  962. 首风二乙线
  963. </text>
  964. <text transform="matrix(0.9268 0 0 1 3.991 206.8857)" fill="#FFFFFF"
  965. font-family="'MicrosoftYaHei'" font-size="14">
  966. 110kV Ⅰ母线
  967. </text>
  968. <text transform="matrix(0.9268 0 0 1 1785.5315 206.8857)" fill="#FFFFFF"
  969. font-family="'MicrosoftYaHei'" font-size="14">
  970. 110kV Ⅱ母线
  971. </text>
  972. <g>
  973. <rect x="1035.789" y="348.68" opacity="0.9" fill="#162320"
  974. enable-background="new " width="103.089" height="18.491" />
  975. <rect x="1035.789" y="369.177" opacity="0.9" fill="#162320"
  976. enable-background="new " width="103.089" height="18.489" />
  977. <rect x="1035.789" y="389.675" opacity="0.9" fill="#162320"
  978. enable-background="new " width="103.089" height="18.488" />
  979. <g>
  980. <text transform="matrix(1 0 0 1 1070.7278 362.6299)" fill="#97A1A2"
  981. font-family="'MicrosoftYaHei'" font-size="11.3899">
  982. 档位:
  983. </text>
  984. </g>
  985. <g>
  986. <text transform="matrix(1 0 0 1 1041.2688 381.9912)" fill="#97A1A2"
  987. font-family="'MicrosoftYaHei'" font-size="11.3899">
  988. 油面温度1:
  989. </text>
  990. </g>
  991. <g>
  992. <text transform="matrix(1 0 0 1 1041.2688 403.2764)" fill="#97A1A2"
  993. font-family="'MicrosoftYaHei'" font-size="11.3899">
  994. 油面温度2:
  995. </text>
  996. </g>
  997. <rect x="1035.789" y="267.802" opacity="0.9" fill="#162320"
  998. enable-background="new " width="103.089" height="18.489" />
  999. <rect x="1035.789" y="288.301" opacity="0.9" fill="#162320"
  1000. enable-background="new " width="103.089" height="18.489" />
  1001. <rect x="1035.789" y="308.797" opacity="0.9" fill="#162320"
  1002. enable-background="new " width="103.089" height="18.488" />
  1003. <g>
  1004. <text transform="matrix(1 0 0 1 1070.9817 281.7529)" fill="#97A1A2"
  1005. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1006. la
  1007. </text>
  1008. <text transform="matrix(1 0 0 1 1080.3079 281.7529)" fill="#97A1A2"
  1009. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1010. (A)
  1011. </text>
  1012. <text transform="matrix(1 0 0 1 1093.5071 281.7529)" fill="#97A1A2"
  1013. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1014. :
  1015. </text>
  1016. </g>
  1017. <g>
  1018. <text transform="matrix(1 0 0 1 1055.0793 300.1123)" fill="#97A1A2"
  1019. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1020. P(MVar):
  1021. </text>
  1022. </g>
  1023. <g>
  1024. <text transform="matrix(1 0 0 1 1055.0559 322.3975)" fill="#97A1A2"
  1025. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1026. Q(MVar):
  1027. </text>
  1028. </g>
  1029. <rect x="1035.789" y="328.749" opacity="0.9" fill="#162320"
  1030. enable-background="new " width="103.089" height="18.49" />
  1031. <g>
  1032. <text transform="matrix(1 0 0 1 1060.0325 342.6904)" fill="#97A1A2"
  1033. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1034. COSΦ:
  1035. </text>
  1036. </g>
  1037. <rect x="1035.789" y="408.813" opacity="0.9" fill="#162320"
  1038. enable-background="new " width="103.089" height="18.491" />
  1039. <rect x="1035.789" y="429.311" opacity="0.9" fill="#162320"
  1040. enable-background="new " width="103.089" height="18.49" />
  1041. <rect x="1035.789" y="449.807" opacity="0.9" fill="#162320"
  1042. enable-background="new " width="103.089" height="18.49" />
  1043. <g>
  1044. <text transform="matrix(1 0 0 1 1070.9817 422.7646)" fill="#97A1A2"
  1045. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1046. la
  1047. </text>
  1048. <text transform="matrix(1 0 0 1 1080.3079 422.7646)" fill="#97A1A2"
  1049. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1050. (A)
  1051. </text>
  1052. <text transform="matrix(1 0 0 1 1093.5071 422.7646)" fill="#97A1A2"
  1053. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1054. :
  1055. </text>
  1056. </g>
  1057. <g>
  1058. <text transform="matrix(1 0 0 1 1055.0793 441.124)" fill="#97A1A2"
  1059. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1060. P(MVar):
  1061. </text>
  1062. </g>
  1063. <g>
  1064. <text transform="matrix(1 0 0 1 1055.0559 463.4092)" fill="#97A1A2"
  1065. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1066. Q(MVar):
  1067. </text>
  1068. </g>
  1069. <rect x="1035.789" y="469.761" opacity="0.9" fill="#162320"
  1070. enable-background="new " width="103.089" height="18.489" />
  1071. <g>
  1072. <text transform="matrix(1 0 0 1 1060.0325 483.7021)" fill="#97A1A2"
  1073. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1074. COSΦ:
  1075. </text>
  1076. </g>
  1077. </g>
  1078. <g>
  1079. <rect x="1578.688" y="348.68" opacity="0.9" fill="#162320"
  1080. enable-background="new " width="103.088" height="18.491" />
  1081. <rect x="1578.688" y="369.177" opacity="0.9" fill="#162320"
  1082. enable-background="new " width="103.088" height="18.489" />
  1083. <rect x="1578.688" y="389.675" opacity="0.9" fill="#162320"
  1084. enable-background="new " width="103.088" height="18.488" />
  1085. <g>
  1086. <text transform="matrix(1 0 0 1 1613.6262 362.6299)" fill="#97A1A2"
  1087. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1088. 档位:
  1089. </text>
  1090. </g>
  1091. <g>
  1092. <text transform="matrix(1 0 0 1 1584.1672 381.9912)" fill="#97A1A2"
  1093. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1094. 油面温度1:
  1095. </text>
  1096. </g>
  1097. <g>
  1098. <text transform="matrix(1 0 0 1 1584.1672 403.2764)" fill="#97A1A2"
  1099. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1100. 油面温度2:
  1101. </text>
  1102. </g>
  1103. <rect x="1578.688" y="408.813" opacity="0.9" fill="#162320"
  1104. enable-background="new " width="103.088" height="18.491" />
  1105. <rect x="1578.688" y="429.311" opacity="0.9" fill="#162320"
  1106. enable-background="new " width="103.088" height="18.49" />
  1107. <rect x="1578.688" y="449.807" opacity="0.9" fill="#162320"
  1108. enable-background="new " width="103.088" height="18.49" />
  1109. <g>
  1110. <text transform="matrix(1 0 0 1 1613.8801 422.7646)" fill="#97A1A2"
  1111. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1112. la
  1113. </text>
  1114. <text transform="matrix(1 0 0 1 1623.2063 422.7646)" fill="#97A1A2"
  1115. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1116. (A)
  1117. </text>
  1118. <text transform="matrix(1 0 0 1 1636.4055 422.7646)" fill="#97A1A2"
  1119. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1120. :
  1121. </text>
  1122. </g>
  1123. <g>
  1124. <text transform="matrix(1 0 0 1 1597.9778 441.124)" fill="#97A1A2"
  1125. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1126. P(MVar):
  1127. </text>
  1128. </g>
  1129. <g>
  1130. <text transform="matrix(1 0 0 1 1597.9543 463.4092)" fill="#97A1A2"
  1131. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1132. Q(MVar):
  1133. </text>
  1134. </g>
  1135. <rect x="1578.688" y="469.761" opacity="0.9" fill="#162320"
  1136. enable-background="new " width="103.088" height="18.489" />
  1137. <g>
  1138. <text transform="matrix(1 0 0 1 1602.9309 483.7021)" fill="#97A1A2"
  1139. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1140. COSΦ:
  1141. </text>
  1142. </g>
  1143. </g>
  1144. <rect x="107.059" y="216.582" fill="#9F1A59" width="3.047" height="21.63" />
  1145. <rect x="421.668" y="216.584" fill="#9F1A59" width="3.047" height="65.836" />
  1146. <rect x="339.832" y="297.287" fill="#9F1A59" width="69.889" height="3.048" />
  1147. <rect x="339.832" y="297.287" fill="#9F1A59" width="3.048" height="17.437" />
  1148. <rect x="110.105" y="228.885" fill="#9F1A59" width="15.612" height="3.047" />
  1149. <text transform="matrix(1 0 0 1 147.7556 252.0361)" fill="#FFFFFF"
  1150. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1151. 11-0
  1152. </text>
  1153. <text transform="matrix(1 0 0 1 285.2556 329.7568)" fill="#FFFFFF"
  1154. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1155. 011-0
  1156. </text>
  1157. <text transform="matrix(1 0 0 1 372.99 382.749)" fill="#FFFFFF"
  1158. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1159. 301-3
  1160. </text>
  1161. <text transform="matrix(1 0 0 1 385.2092 432.9873)" fill="#FFFFFF"
  1162. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1163. 301
  1164. </text>
  1165. <text transform="matrix(1 0 0 1 372.99 482.0693)" fill="#FFFFFF"
  1166. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1167. 301-1
  1168. </text>
  1169. <text transform="matrix(1 0 0 1 147.7556 296.0225)" fill="#FFFFFF"
  1170. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1171. 11-09
  1172. </text>
  1173. <text transform="matrix(1 0 0 1 65.2556 259.917)" fill="#FFFFFF"
  1174. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1175. 11-9
  1176. </text>
  1177. <g>
  1178. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1179. x1="336.351" y1="346.46" x2="348.65" y2="346.46" />
  1180. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1181. x1="342.501" y1="337.995" x2="342.501" y2="346.46" />
  1182. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1183. x1="338.89" y1="349.844" x2="346.111" y2="349.844" />
  1184. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1185. x1="340.3" y1="353.229" x2="344.7" y2="353.229" />
  1186. </g>
  1187. <g>
  1188. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1189. x1="155.396" y1="234.945" x2="155.396" y2="222.646" />
  1190. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1191. x1="146.933" y1="228.795" x2="155.396" y2="228.795" />
  1192. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1193. x1="158.782" y1="232.406" x2="158.782" y2="225.186" />
  1194. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1195. x1="162.167" y1="230.996" x2="162.167" y2="226.596" />
  1196. </g>
  1197. <rect x="84.829" y="271.109" fill="#9F1A59" width="40.885" height="3.047" />
  1198. <g>
  1199. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1200. x1="155.396" y1="277.173" x2="155.396" y2="264.874" />
  1201. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1202. x1="146.933" y1="271.022" x2="155.396" y2="271.022" />
  1203. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1204. x1="158.782" y1="274.635" x2="158.782" y2="267.413" />
  1205. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1206. x1="162.167" y1="273.224" x2="162.167" y2="268.823" />
  1207. </g>
  1208. <g>
  1209. <g>
  1210. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1211. x1="13.491" y1="267.007" x2="13.491" y2="279.306" />
  1212. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1213. x1="10.105" y1="269.546" x2="10.105" y2="276.767" />
  1214. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1215. x1="6.72" y1="270.956" x2="6.72" y2="275.356" />
  1216. </g>
  1217. </g>
  1218. <rect x="58.714" y="347.835" fill="#44426C" width="138.325" height="20.817" />
  1219. <text transform="matrix(1 0 0 1 76.7107 362.0264)" fill="#FFFFFF"
  1220. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1221. 110KV Ⅰ 母线 PT
  1222. </text>
  1223. <text transform="matrix(0.9268 0 0 1 6.72 513.4941)" fill="#FFFFFF"
  1224. font-family="'MicrosoftYaHei'" font-size="14">
  1225. 35kV Ⅰ母线
  1226. </text>
  1227. <text transform="matrix(0.9268 0 0 1 1292.3323 510.9951)" fill="#FFFFFF"
  1228. font-family="'MicrosoftYaHei'" font-size="14">
  1229. 35kV Ⅱ母线
  1230. </text>
  1231. <text transform="matrix(0.9268 0 0 1 649.0002 510.9951)" fill="#FFFFFF"
  1232. font-family="'MicrosoftYaHei'" font-size="14">
  1233. 35kV Ⅱ母线
  1234. </text>
  1235. <rect x="107.28" y="262.534" fill="#9F1A59" width="2.604" height="31.938" />
  1236. <rect x="83.526" y="262.534" fill="#CAA51A" width="2.605" height="19.884" />
  1237. <rect x="42.642" y="262.534" fill="#CAA51A" width="2.605" height="19.884" />
  1238. <rect x="45.864" y="271.109" fill="#9F1A59" width="30.279" height="3.047" />
  1239. <rect x="25.387" y="274.68" fill="#9F1A59" width="1.984" height="30.279" />
  1240. <rect x="58.22" y="274.68" fill="#9F1A59" width="1.984" height="20.857" />
  1241. <rect x="24.639" y="302.603" fill="#9F1A59" width="25.194" height="1.983" />
  1242. <rect x="21.956" y="271.635" fill="#9F1A59" width="13.536" height="3.047" />
  1243. <rect x="13.492" y="271.635" fill="#40B9B0" width="8.463" height="3.047" />
  1244. <rect x="34.642" y="262.534" fill="#CAA51A" width="2.605" height="19.884" />
  1245. <rect x="107.28" y="316.341" fill="#3EB9B0" width="2.604" height="4.477" />
  1246. <g>
  1247. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1248. x1="102.323" y1="321.807" x2="114.84" y2="321.807" />
  1249. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1250. x1="104.495" y1="325.126" x2="112.67" y2="325.126" />
  1251. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1252. x1="106.28" y1="328.632" x2="110.883" y2="328.632" />
  1253. </g>
  1254. <polygon fill="#9F1A59" points="111.827,294.364 108.579,303.595 105.336,294.362 " />
  1255. <rect x="103.467" y="284.641" fill="none" stroke="#A9165D" stroke-width="2.3"
  1256. stroke-miterlimit="10" width="10.229" height="32.139" />
  1257. <rect x="365.872" y="297.079" fill="#9F1A59" width="2.605" height="18.637" />
  1258. <rect x="365.872" y="337.581" fill="#3EB9B0" width="2.605" height="4.479" />
  1259. <g>
  1260. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1261. x1="360.915" y1="343.051" x2="373.434" y2="343.051" />
  1262. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1263. x1="363.088" y1="346.368" x2="371.264" y2="346.368" />
  1264. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1265. x1="364.872" y1="349.872" x2="369.477" y2="349.872" />
  1266. </g>
  1267. <rect x="389.911" y="338.021" fill="#3EB9B0" width="2.605" height="4.478" />
  1268. <g>
  1269. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1270. x1="384.955" y1="343.489" x2="397.473" y2="343.489" />
  1271. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1272. x1="387.127" y1="346.809" x2="395.303" y2="346.809" />
  1273. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1274. x1="388.912" y1="350.313" x2="393.516" y2="350.313" />
  1275. </g>
  1276. <polygon fill="#9F1A59" points="370.42,315.606 367.172,324.839 363.93,315.604 " />
  1277. <polygon fill="#9F1A59" points="383.593,337.98 391.222,324.835 398.836,337.983 " />
  1278. <rect x="389.911" y="300.532" fill="#9F1A59" width="2.605" height="4.479" />
  1279. <polygon fill="#9F1A59" points="398.836,305.052 391.206,318.195 383.593,305.049 " />
  1280. <rect x="362.061" y="305.885" fill="none" stroke="#A9165D" stroke-width="2.3"
  1281. stroke-miterlimit="10" width="10.229" height="32.139" />
  1282. <rect x="75.526" y="262.534" fill="#CAA51A" width="2.605" height="19.884" />
  1283. <g>
  1284. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1285. cx="66.944" cy="317.162" r="8.804" />
  1286. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1287. cx="51.667" cy="317.162" r="8.804" />
  1288. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1289. points="63.794,313.135 66.96,316.266 69.911,313.135 " />
  1290. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1291. x1="67.026" y1="316.349" x2="67.026" y2="321.87" />
  1292. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1293. points="48.515,312.794 51.681,315.927 54.632,312.794 " />
  1294. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1295. x1="51.748" y1="316.01" x2="51.748" y2="321.53" />
  1296. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1297. cx="58.863" cy="304.342" r="8.803" />
  1298. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1299. points="55.711,299.973 58.877,303.105 61.828,299.973 " />
  1300. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1301. x1="58.943" y1="303.188" x2="58.943" y2="308.71" />
  1302. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1303. cx="58.862" cy="330.085" r="8.803" />
  1304. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1305. points="61.551,334.275 61.551,327.758 56.174,331.193 " />
  1306. </g>
  1307. <rect x="1782.114" y="216.582" fill="#9F1A59" width="3.047" height="21.63" />
  1308. <rect x="1785.16" y="228.885" fill="#9F1A59" width="15.61" height="3.047" />
  1309. <text transform="matrix(1 0 0 1 1822.8098 252.0361)" fill="#FFFFFF"
  1310. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1311. 12-0
  1312. </text>
  1313. <text transform="matrix(1 0 0 1 1822.8098 296.0225)" fill="#FFFFFF"
  1314. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1315. 12-09
  1316. </text>
  1317. <text transform="matrix(1 0 0 1 1740.3098 259.917)" fill="#FFFFFF"
  1318. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1319. 12-9
  1320. </text>
  1321. <g>
  1322. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1323. x1="1830.451" y1="234.945" x2="1830.451" y2="222.646" />
  1324. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1325. x1="1821.989" y1="228.795" x2="1830.451" y2="228.795" />
  1326. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1327. x1="1833.836" y1="232.406" x2="1833.836" y2="225.186" />
  1328. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1329. x1="1837.223" y1="230.996" x2="1837.223" y2="226.596" />
  1330. </g>
  1331. <rect x="1759.883" y="271.109" fill="#9F1A59" width="40.887" height="3.047" />
  1332. <g>
  1333. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1334. x1="1830.451" y1="277.173" x2="1830.451" y2="264.874" />
  1335. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1336. x1="1821.989" y1="271.022" x2="1830.451" y2="271.022" />
  1337. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1338. x1="1833.836" y1="274.635" x2="1833.836" y2="267.413" />
  1339. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1340. x1="1837.223" y1="273.224" x2="1837.223" y2="268.823" />
  1341. </g>
  1342. <g>
  1343. <g>
  1344. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1345. x1="1688.545" y1="267.007" x2="1688.545" y2="279.306" />
  1346. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1347. x1="1685.16" y1="269.546" x2="1685.16" y2="276.767" />
  1348. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1349. x1="1681.775" y1="270.956" x2="1681.775" y2="275.356" />
  1350. </g>
  1351. </g>
  1352. <rect x="1733.77" y="347.835" fill="#44426C" width="138.324" height="20.817" />
  1353. <text transform="matrix(1 0 0 1 1751.7649 362.0264)" fill="#FFFFFF"
  1354. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1355. 110KV Ⅱ 母线 PT
  1356. </text>
  1357. <rect x="1782.334" y="262.534" fill="#9F1A59" width="2.604" height="31.938" />
  1358. <rect x="1758.58" y="262.534" fill="#CAA51A" width="2.604" height="19.884" />
  1359. <rect x="1717.696" y="262.534" fill="#CAA51A" width="2.604" height="19.884" />
  1360. <rect x="1720.918" y="271.109" fill="#9F1A59" width="30.278" height="3.047" />
  1361. <rect x="1700.441" y="274.68" fill="#9F1A59" width="1.982" height="30.279" />
  1362. <rect x="1733.273" y="274.68" fill="#9F1A59" width="1.984" height="20.857" />
  1363. <rect x="1699.693" y="302.603" fill="#9F1A59" width="25.193" height="1.983" />
  1364. <rect x="1697.01" y="271.635" fill="#9F1A59" width="13.537" height="3.047" />
  1365. <rect x="1688.547" y="271.635" fill="#40B9B0" width="8.463" height="3.047" />
  1366. <rect x="1709.696" y="262.534" fill="#CAA51A" width="2.604" height="19.884" />
  1367. <rect x="1782.334" y="316.341" fill="#3EB9B0" width="2.604" height="4.477" />
  1368. <g>
  1369. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1370. x1="1777.377" y1="321.807" x2="1789.896" y2="321.807" />
  1371. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1372. x1="1779.549" y1="325.126" x2="1787.727" y2="325.126" />
  1373. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1374. x1="1781.334" y1="328.632" x2="1785.938" y2="328.632" />
  1375. </g>
  1376. <polygon fill="#9F1A59" points="1786.881,294.364 1783.633,303.595 1780.393,294.362 " />
  1377. <rect x="1778.521" y="284.641" fill="none" stroke="#A9165D" stroke-width="2.3"
  1378. stroke-miterlimit="10" width="10.229" height="32.139" />
  1379. <rect x="1750.58" y="262.534" fill="#CAA51A" width="2.604" height="19.884" />
  1380. <g>
  1381. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1382. cx="1741.998" cy="317.162" r="8.804" />
  1383. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1384. cx="1726.723" cy="317.162" r="8.804" />
  1385. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1386. points="1738.85,313.135 1742.016,316.266 1744.965,313.135 " />
  1387. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1388. x1="1742.08" y1="316.349" x2="1742.08" y2="321.87" />
  1389. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1390. points="1723.571,312.794 1726.737,315.927 1729.688,312.794 " />
  1391. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1392. x1="1726.803" y1="316.01" x2="1726.803" y2="321.53" />
  1393. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1394. cx="1733.918" cy="304.342" r="8.803" />
  1395. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1396. points="1730.768,299.973 1733.934,303.105 1736.883,299.973 " />
  1397. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1398. x1="1733.998" y1="303.188" x2="1733.998" y2="308.71" />
  1399. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1400. cx="1733.916" cy="330.085" r="8.803" />
  1401. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1402. points="1736.605,334.275 1736.605,327.758 1731.229,331.193 " />
  1403. </g>
  1404. <g>
  1405. <rect x="253.347" y="290.499" fill="#44426C" width="72.313" height="20.818" />
  1406. <text transform="matrix(1 0 0 1 269.2424 305.0518)" fill="#FFFFFF"
  1407. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1408. #1主变
  1409. </text>
  1410. </g>
  1411. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="422.33"
  1412. cy="296.086" r="12.61" />
  1413. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="422.33"
  1414. cy="315.439" r="12.61" />
  1415. <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1416. points="427.573,302.829 421.982,298.932 417.322,302.194 " />
  1417. <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="422.448"
  1418. y1="298.811" x2="422.448" y2="290.901" />
  1419. <polygon fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1420. points="421.222,309.364 421.222,320.079 430.883,313.675 " />
  1421. <rect x="427.746" y="274.654"
  1422. transform="matrix(-0.3454 -0.9385 0.9385 -0.3454 290.7139 811.8297)" fill="#CB151D"
  1423. width="1.504" height="59.739" />
  1424. <polygon fill="#CB151D" points="453.896,288.797 468.365,289.242 458.775,300.089 " />
  1425. <rect x="422.391" y="392.729" fill="#CAA51A" width="2.25" height="79.358" />
  1426. <rect x="422.391" y="328.049" fill="#CAA51A" width="2.25" height="40.262" />
  1427. <rect x="975.213" y="328.049" fill="#CAA51A" width="2.25" height="40.262" />
  1428. <rect x="1555.83" y="328.049" fill="#CAA51A" width="2.25" height="40.262" />
  1429. <rect x="422.391" y="493.302" fill="#CAA51A" width="2.25" height="26.03" />
  1430. <rect x="414.965" y="416.03" fill="#9F1A59" width="15.981" height="24.203" />
  1431. <rect x="976.785" y="216.584" fill="#9F1A59" width="3.047" height="65.836" />
  1432. <rect x="894.949" y="297.287" fill="#9F1A59" width="69.889" height="3.048" />
  1433. <rect x="894.949" y="297.287" fill="#9F1A59" width="3.047" height="17.437" />
  1434. <text transform="matrix(1 0 0 1 840.3728 329.7568)" fill="#FFFFFF"
  1435. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1436. 012-0
  1437. </text>
  1438. <text transform="matrix(1 0 0 1 928.1072 382.749)" fill="#FFFFFF"
  1439. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1440. 302-3
  1441. </text>
  1442. <text transform="matrix(1 0 0 1 940.3269 432.9873)" fill="#FFFFFF"
  1443. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1444. 302
  1445. </text>
  1446. <text transform="matrix(1 0 0 1 928.1072 482.0693)" fill="#FFFFFF"
  1447. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1448. 302-2
  1449. </text>
  1450. <g>
  1451. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1452. x1="891.468" y1="346.46" x2="903.768" y2="346.46" />
  1453. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1454. x1="897.617" y1="337.995" x2="897.617" y2="346.46" />
  1455. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1456. x1="894.007" y1="349.844" x2="901.229" y2="349.844" />
  1457. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1458. x1="895.416" y1="353.229" x2="899.817" y2="353.229" />
  1459. </g>
  1460. <rect x="920.99" y="297.079" fill="#9F1A59" width="2.604" height="18.637" />
  1461. <rect x="920.99" y="337.581" fill="#3EB9B0" width="2.604" height="4.479" />
  1462. <g>
  1463. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1464. x1="916.032" y1="343.051" x2="928.551" y2="343.051" />
  1465. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1466. x1="918.204" y1="346.368" x2="926.381" y2="346.368" />
  1467. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1468. x1="919.99" y1="349.872" x2="924.594" y2="349.872" />
  1469. </g>
  1470. <rect x="945.028" y="338.021" fill="#3EB9B0" width="2.604" height="4.478" />
  1471. <g>
  1472. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1473. x1="940.073" y1="343.489" x2="952.59" y2="343.489" />
  1474. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1475. x1="942.244" y1="346.809" x2="950.42" y2="346.809" />
  1476. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1477. x1="944.03" y1="350.313" x2="948.633" y2="350.313" />
  1478. </g>
  1479. <polygon fill="#9F1A59" points="925.536,315.606 922.288,324.839 919.047,315.604 " />
  1480. <polygon fill="#9F1A59" points="938.71,337.98 946.338,324.835 953.953,337.983 " />
  1481. <rect x="945.028" y="300.532" fill="#9F1A59" width="2.604" height="4.479" />
  1482. <polygon fill="#9F1A59" points="953.953,305.052 946.324,318.195 938.71,305.049 " />
  1483. <rect x="917.178" y="305.885" fill="none" stroke="#A9165D" stroke-width="2.3"
  1484. stroke-miterlimit="10" width="10.229" height="32.139" />
  1485. <g>
  1486. <rect x="808.464" y="290.499" fill="#44426C" width="72.313" height="20.818" />
  1487. <text transform="matrix(1 0 0 1 824.3596 305.0518)" fill="#FFFFFF"
  1488. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1489. #2主变
  1490. </text>
  1491. </g>
  1492. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1493. cx="977.448" cy="296.086" r="12.609" />
  1494. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1495. cx="977.448" cy="315.439" r="12.609" />
  1496. <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1497. points="982.689,302.829 977.098,298.932 972.439,302.194 " />
  1498. <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="977.564"
  1499. y1="298.811" x2="977.564" y2="290.901" />
  1500. <polygon fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1501. points="976.338,309.364 976.338,320.079 986,313.675 " />
  1502. <rect x="982.872" y="274.671"
  1503. transform="matrix(-0.345 -0.9386 0.9386 -0.345 1037.0966 1332.8448)" fill="#CB151D"
  1504. width="1.506" height="59.743" />
  1505. <polygon fill="#CB151D" points="1009.012,288.797 1023.48,289.242 1013.893,300.089 " />
  1506. <rect x="977.508" y="392.729" fill="#CAA51A" width="2.25" height="79.358" />
  1507. <rect x="977.508" y="493.302" fill="#CAA51A" width="2.25" height="26.03" />
  1508. <rect x="970.082" y="416.03" fill="#9F1A59" width="15.981" height="24.203" />
  1509. <rect x="1557.402" y="216.584" fill="#9F1A59" width="3.048" height="65.836" />
  1510. <rect x="1475.566" y="297.287" fill="#9F1A59" width="69.89" height="3.048" />
  1511. <rect x="1475.566" y="297.287" fill="#9F1A59" width="3.048" height="17.437" />
  1512. <text transform="matrix(1 0 0 1 1420.9875 329.7568)" fill="#FFFFFF"
  1513. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1514. 013-0
  1515. </text>
  1516. <text transform="matrix(1 0 0 1 1508.7219 382.749)" fill="#FFFFFF"
  1517. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1518. 303-3
  1519. </text>
  1520. <text transform="matrix(1 0 0 1 1520.9407 432.9873)" fill="#FFFFFF"
  1521. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1522. 303
  1523. </text>
  1524. <text transform="matrix(1 0 0 1 1508.7219 482.0693)" fill="#FFFFFF"
  1525. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1526. 303-5
  1527. </text>
  1528. <g>
  1529. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1530. x1="1472.084" y1="346.46" x2="1484.383" y2="346.46" />
  1531. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1532. x1="1478.234" y1="337.995" x2="1478.234" y2="346.46" />
  1533. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1534. x1="1474.623" y1="349.844" x2="1481.844" y2="349.844" />
  1535. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1536. x1="1476.033" y1="353.229" x2="1480.434" y2="353.229" />
  1537. </g>
  1538. <rect x="1501.605" y="297.079" fill="#9F1A59" width="2.604" height="18.637" />
  1539. <rect x="1501.605" y="337.581" fill="#3EB9B0" width="2.604" height="4.479" />
  1540. <g>
  1541. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1542. x1="1496.648" y1="343.051" x2="1509.166" y2="343.051" />
  1543. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1544. x1="1498.821" y1="346.368" x2="1506.996" y2="346.368" />
  1545. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1546. x1="1500.605" y1="349.872" x2="1505.209" y2="349.872" />
  1547. </g>
  1548. <rect x="1525.645" y="338.021" fill="#3EB9B0" width="2.605" height="4.478" />
  1549. <g>
  1550. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1551. x1="1520.689" y1="343.489" x2="1533.207" y2="343.489" />
  1552. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1553. x1="1522.862" y1="346.809" x2="1531.037" y2="346.809" />
  1554. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1555. x1="1524.646" y1="350.313" x2="1529.25" y2="350.313" />
  1556. </g>
  1557. <polygon fill="#9F1A59" points="1506.152,315.606 1502.905,324.839 1499.662,315.604 " />
  1558. <polygon fill="#9F1A59" points="1519.326,337.98 1526.955,324.835 1534.568,337.983 " />
  1559. <rect x="1525.645" y="300.532" fill="#9F1A59" width="2.605" height="4.479" />
  1560. <polygon fill="#9F1A59" points="1534.568,305.052 1526.939,318.195 1519.326,305.049 " />
  1561. <rect x="1497.793" y="305.885" fill="none" stroke="#A9165D" stroke-width="2.3"
  1562. stroke-miterlimit="10" width="10.229" height="32.139" />
  1563. <g>
  1564. <rect x="1389.08" y="290.499" fill="#44426C" width="72.313" height="20.818" />
  1565. <text transform="matrix(1 0 0 1 1404.9739 305.0518)" fill="#FFFFFF"
  1566. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1567. #3主变
  1568. </text>
  1569. </g>
  1570. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1571. cx="1558.064" cy="296.086" r="12.609" />
  1572. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1573. cx="1558.064" cy="315.439" r="12.609" />
  1574. <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1575. points="1563.307,302.829 1557.715,298.932 1553.057,302.194 " />
  1576. <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="1558.182"
  1577. y1="298.811" x2="1558.182" y2="290.901" />
  1578. <polygon fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1579. points="1556.955,309.364 1556.955,320.079 1566.617,313.675 " />
  1580. <rect x="1563.498" y="274.673"
  1581. transform="matrix(-0.3453 -0.9385 0.9385 -0.3453 1818.5465 1877.7466)"
  1582. fill="#CB151D" width="1.505" height="59.744" />
  1583. <polygon fill="#CB151D" points="1589.629,288.797 1604.098,289.242 1594.508,300.089 " />
  1584. <rect x="1558.125" y="392.729" fill="#CAA51A" width="2.25" height="79.358" />
  1585. <rect x="1558.123" y="493.302" fill="#CAA51A" width="2.25" height="26.03" />
  1586. <rect x="1550.698" y="416.03" fill="#9F1A59" width="15.981" height="24.203" />
  1587. <text transform="matrix(1 0 0 1 2.948 665.5088)" fill="#FFFFFF"
  1588. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1589. 31-9
  1590. </text>
  1591. <text transform="matrix(1 0 0 1 90.802 612.1943)" fill="#FFFFFF"
  1592. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1593. 312
  1594. </text>
  1595. <text transform="matrix(1 0 0 1 54.8938 641.6475)" fill="#FFFFFF"
  1596. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1597. 31-0
  1598. </text>
  1599. <text transform="matrix(1 0 0 1 135.5364 550.1611)" fill="#FFFFFF"
  1600. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1601. 312-1
  1602. </text>
  1603. <g>
  1604. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1605. x1="56.822" y1="616.427" x2="69.121" y2="616.427" />
  1606. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1607. x1="62.973" y1="607.964" x2="62.973" y2="616.427" />
  1608. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1609. x1="59.361" y1="619.811" x2="66.582" y2="619.811" />
  1610. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1611. x1="60.771" y1="623.196" x2="65.172" y2="623.196" />
  1612. </g>
  1613. <text transform="matrix(1 0 0 1 135.5364 663.8584)" fill="#FFFFFF"
  1614. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1615. 312-3
  1616. </text>
  1617. <g>
  1618. <rect x="8.706" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  1619. <text transform="matrix(1 0 0 1 14.8298 816.4912)" fill="#FFFFFF"
  1620. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1621. 35KV Ⅰ母
  1622. </text>
  1623. </g>
  1624. <g>
  1625. <rect x="90.182" y="801.938" fill="#44426C" width="72.314" height="20.817" />
  1626. <text transform="matrix(1 0 0 1 94.9221 816.4912)" fill="#FFFFFF"
  1627. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1628. 集电线路一
  1629. </text>
  1630. </g>
  1631. <rect x="40.738" y="521.988" fill="#CAA51A" width="2.25" height="123.418" />
  1632. <rect x="123.332" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  1633. <rect x="123.339" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  1634. <rect x="61.846" y="564.406" fill="#CAA51A" width="2.25" height="20.5" />
  1635. <rect x="42.946" y="564.406" fill="#CAA51A" width="20.5" height="2.25" />
  1636. <text transform="matrix(1 0 0 1 138.4875 761.8877)" fill="#FFFFFF"
  1637. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1638. -0
  1639. </text>
  1640. <rect x="124.332" y="668.229" fill="#CAA51A" width="2.25" height="123.418" />
  1641. <rect x="145.439" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  1642. <rect x="126.54" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  1643. <rect x="40.737" y="670.113" fill="#CAA51A" width="2.25" height="22.741" />
  1644. <rect x="5.418" y="691.729" fill="#CAA51A" width="75.415" height="2.25" />
  1645. <rect x="3.991" y="519.333" fill="#CAA51A" width="584.841" height="2.655" />
  1646. <rect x="115.348" y="589.096" fill="#9F1A59" width="15.982" height="24.202" />
  1647. <rect x="5.418" y="692.854" fill="#CAA51A" width="2.604" height="19.663" />
  1648. <rect x="5.418" y="726.571" fill="#3EB9B0" width="2.604" height="6.479" />
  1649. <g>
  1650. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1651. x1="0.461" y1="733.039" x2="12.979" y2="733.039" />
  1652. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1653. x1="2.633" y1="736.358" x2="10.809" y2="736.358" />
  1654. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1655. x1="4.418" y1="739.862" x2="9.022" y2="739.862" />
  1656. </g>
  1657. <polygon fill="#CAA51A" points="9.965,712.411 6.717,721.642 3.475,712.409 " />
  1658. <polygon fill="#CAA51A" points="131.271,785.663 124.959,797.635 118.659,785.66 " />
  1659. <rect x="1.606" y="702.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  1660. stroke-miterlimit="10" width="10.229" height="24.323" />
  1661. <rect x="41.069" y="692.854" fill="#CAA51A" width="2.605" height="33.717" />
  1662. <rect x="78.228" y="692.854" fill="#CAA51A" width="2.605" height="18.219" />
  1663. <rect x="41.069" y="726.571" fill="#3EB9B0" width="2.605" height="6.479" />
  1664. <g>
  1665. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1666. x1="36.112" y1="733.039" x2="48.63" y2="733.039" />
  1667. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1668. x1="38.284" y1="736.358" x2="46.46" y2="736.358" />
  1669. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1670. x1="40.069" y1="739.862" x2="44.673" y2="739.862" />
  1671. </g>
  1672. <rect x="37.257" y="702.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  1673. stroke-miterlimit="10" width="10.229" height="24.323" />
  1674. <rect x="557.656" y="694.379" fill="#CAA51A" width="2.604" height="73.527" />
  1675. <rect x="557.656" y="766.261" fill="#3EB9B0" width="2.604" height="6.478" />
  1676. <g>
  1677. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1678. x1="552.698" y1="772.729" x2="565.217" y2="772.729" />
  1679. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1680. x1="554.87" y1="776.05" x2="563.047" y2="776.05" />
  1681. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1682. x1="556.656" y1="779.552" x2="561.26" y2="779.552" />
  1683. </g>
  1684. <rect x="553.844" y="731.635" fill="none" stroke="#CAA51A" stroke-width="2.3"
  1685. stroke-miterlimit="10" width="10.229" height="24.324" />
  1686. <rect x="345.477" y="772.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  1687. stroke-miterlimit="10" width="52.404" height="24.323" />
  1688. <g>
  1689. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1690. cx="78.279" cy="734.65" r="8.804" />
  1691. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1692. cx="78.278" cy="719.373" r="8.804" />
  1693. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1694. points="81.43,738.679 78.263,735.549 75.312,738.679 " />
  1695. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1696. x1="78.197" y1="735.466" x2="78.197" y2="729.942" />
  1697. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1698. points="81.43,723.741 78.263,720.609 75.312,723.741 " />
  1699. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1700. x1="78.197" y1="720.526" x2="78.197" y2="715.007" />
  1701. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1702. cx="91.099" cy="726.569" r="8.803" />
  1703. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1704. points="94.25,730.938 91.083,727.806 88.132,730.938 " />
  1705. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1706. x1="91.018" y1="727.723" x2="91.018" y2="722.201" />
  1707. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1708. cx="65.356" cy="726.569" r="8.803" />
  1709. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1710. points="67.113,729.829 67.113,723.31 61.737,726.747 " />
  1711. </g>
  1712. <g>
  1713. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1714. cx="535.896" cy="713.853" r="8.804" />
  1715. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1716. cx="535.896" cy="698.575" r="8.804" />
  1717. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1718. points="539.048,717.883 535.881,714.749 532.93,717.883 " />
  1719. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1720. x1="535.814" y1="714.667" x2="535.814" y2="709.146" />
  1721. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1722. points="539.048,702.943 535.881,699.812 532.93,702.943 " />
  1723. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1724. x1="535.814" y1="699.729" x2="535.814" y2="694.207" />
  1725. </g>
  1726. <g>
  1727. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1728. x1="140.434" y1="738.302" x2="152.732" y2="738.302" />
  1729. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1730. x1="146.584" y1="729.84" x2="146.584" y2="738.302" />
  1731. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1732. x1="142.973" y1="741.687" x2="150.193" y2="741.687" />
  1733. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1734. x1="144.383" y1="745.072" x2="148.783" y2="745.072" />
  1735. </g>
  1736. <text transform="matrix(1 0 0 1 173.302 612.1943)" fill="#FFFFFF"
  1737. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1738. 313
  1739. </text>
  1740. <text transform="matrix(1 0 0 1 218.0364 550.1611)" fill="#FFFFFF"
  1741. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1742. 313-1
  1743. </text>
  1744. <text transform="matrix(1 0 0 1 218.0364 663.8584)" fill="#FFFFFF"
  1745. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1746. 313-3
  1747. </text>
  1748. <g>
  1749. <rect x="172.682" y="801.938" fill="#44426C" width="72.314" height="20.817" />
  1750. <text transform="matrix(1 0 0 1 177.4221 816.4912)" fill="#FFFFFF"
  1751. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1752. 集电线路二
  1753. </text>
  1754. </g>
  1755. <rect x="205.832" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  1756. <rect x="205.839" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  1757. <text transform="matrix(1 0 0 1 220.9875 761.8877)" fill="#FFFFFF"
  1758. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1759. -0
  1760. </text>
  1761. <rect x="206.832" y="668.229" fill="#CAA51A" width="2.25" height="123.418" />
  1762. <rect x="227.939" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  1763. <rect x="209.04" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  1764. <rect x="197.848" y="589.096" fill="#9F1A59" width="15.982" height="24.202" />
  1765. <polygon fill="#CAA51A" points="213.771,785.663 207.459,797.635 201.159,785.66 " />
  1766. <g>
  1767. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1768. x1="222.934" y1="738.302" x2="235.232" y2="738.302" />
  1769. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1770. x1="229.084" y1="729.84" x2="229.084" y2="738.302" />
  1771. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1772. x1="225.473" y1="741.687" x2="232.693" y2="741.687" />
  1773. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1774. x1="226.883" y1="745.072" x2="231.283" y2="745.072" />
  1775. </g>
  1776. <text transform="matrix(1 0 0 1 254.2961 612.1943)" fill="#FFFFFF"
  1777. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1778. 314
  1779. </text>
  1780. <text transform="matrix(1 0 0 1 299.0305 550.1611)" fill="#FFFFFF"
  1781. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1782. 314-1
  1783. </text>
  1784. <text transform="matrix(1 0 0 1 299.0305 663.8584)" fill="#FFFFFF"
  1785. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1786. 314-3
  1787. </text>
  1788. <g>
  1789. <rect x="253.676" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  1790. <text transform="matrix(1 0 0 1 258.4163 816.4912)" fill="#FFFFFF"
  1791. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1792. 集电线路三
  1793. </text>
  1794. </g>
  1795. <rect x="286.826" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  1796. <rect x="286.833" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  1797. <text transform="matrix(1 0 0 1 301.9817 761.8877)" fill="#FFFFFF"
  1798. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1799. -0
  1800. </text>
  1801. <rect x="287.826" y="668.229" fill="#CAA51A" width="2.25" height="123.418" />
  1802. <rect x="308.934" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  1803. <rect x="290.034" y="688.646" fill="#CAA51A" width="20.499" height="2.25" />
  1804. <rect x="278.842" y="589.096" fill="#9F1A59" width="15.982" height="24.202" />
  1805. <polygon fill="#CAA51A" points="294.766,785.663 288.453,797.635 282.153,785.66 " />
  1806. <g>
  1807. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1808. x1="303.928" y1="738.302" x2="316.227" y2="738.302" />
  1809. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1810. x1="310.077" y1="729.84" x2="310.077" y2="738.302" />
  1811. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1812. x1="306.467" y1="741.687" x2="313.688" y2="741.687" />
  1813. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1814. x1="307.877" y1="745.072" x2="312.277" y2="745.072" />
  1815. </g>
  1816. <text transform="matrix(1 0 0 1 337.6106 612.1943)" fill="#FFFFFF"
  1817. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1818. 315
  1819. </text>
  1820. <text transform="matrix(1 0 0 1 382.345 550.1611)" fill="#FFFFFF"
  1821. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1822. 315-1
  1823. </text>
  1824. <text transform="matrix(1 0 0 1 382.345 663.8584)" fill="#FFFFFF"
  1825. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1826. 315-3
  1827. </text>
  1828. <g>
  1829. <rect x="335.99" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  1830. <text transform="matrix(1 0 0 1 345.6023 816.4912)" fill="#FFFFFF"
  1831. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1832. 315备用
  1833. </text>
  1834. </g>
  1835. <rect x="370.141" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  1836. <rect x="370.147" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  1837. <text transform="matrix(1 0 0 1 385.2961 761.8877)" fill="#FFFFFF"
  1838. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1839. -0
  1840. </text>
  1841. <rect x="371.141" y="668.229" fill="#CAA51A" width="2.25" height="104.678" />
  1842. <rect x="392.247" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  1843. <rect x="373.349" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  1844. <rect x="362.156" y="589.096" fill="#167C3B" width="15.98" height="24.202" />
  1845. <g>
  1846. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1847. x1="387.241" y1="738.302" x2="399.54" y2="738.302" />
  1848. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1849. x1="393.393" y1="729.84" x2="393.393" y2="738.302" />
  1850. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1851. x1="389.781" y1="741.687" x2="397.002" y2="741.687" />
  1852. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1853. x1="391.191" y1="745.072" x2="395.592" y2="745.072" />
  1854. </g>
  1855. <rect x="427.839" y="772.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  1856. stroke-miterlimit="10" width="52.403" height="24.323" />
  1857. <text transform="matrix(1 0 0 1 419.9729 612.1943)" fill="#FFFFFF"
  1858. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1859. 316
  1860. </text>
  1861. <text transform="matrix(1 0 0 1 464.7073 550.1611)" fill="#FFFFFF"
  1862. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1863. 316-1
  1864. </text>
  1865. <text transform="matrix(1 0 0 1 464.7073 663.8584)" fill="#FFFFFF"
  1866. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1867. 316-3
  1868. </text>
  1869. <g>
  1870. <rect x="418.353" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  1871. <text transform="matrix(1 0 0 1 427.9646 816.4912)" fill="#FFFFFF"
  1872. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1873. 316补偿器
  1874. </text>
  1875. </g>
  1876. <g>
  1877. <rect x="498.552" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  1878. <text transform="matrix(1 0 0 1 508.1638 816.4912)" fill="#FFFFFF"
  1879. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1880. #1接地变
  1881. </text>
  1882. </g>
  1883. <rect x="452.503" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  1884. <rect x="452.51" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  1885. <text transform="matrix(1 0 0 1 467.6584 761.8877)" fill="#FFFFFF"
  1886. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1887. -0
  1888. </text>
  1889. <rect x="453.503" y="668.229" fill="#CAA51A" width="2.25" height="104.678" />
  1890. <rect x="474.61" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  1891. <rect x="535.989" y="694.906" fill="#CAA51A" width="22.969" height="0.97" />
  1892. <rect x="535.989" y="712.885" fill="#CAA51A" width="22.969" height="0.97" />
  1893. <rect x="455.711" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  1894. <rect x="444.52" y="589.096" fill="#167C3B" width="15.98" height="24.202" />
  1895. <text transform="matrix(1 0 0 1 501.0461 612.1943)" fill="#FFFFFF"
  1896. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1897. 317
  1898. </text>
  1899. <text transform="matrix(1 0 0 1 545.7805 550.1611)" fill="#FFFFFF"
  1900. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1901. 317-1
  1902. </text>
  1903. <rect x="533.575" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  1904. <rect x="533.582" y="556.988" fill="#CAA51A" width="2.25" height="131.657" />
  1905. <rect x="525.592" y="589.096" fill="#167C3B" width="15.981" height="24.202" />
  1906. <g>
  1907. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1908. x1="469.604" y1="738.302" x2="481.903" y2="738.302" />
  1909. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1910. x1="475.755" y1="729.84" x2="475.755" y2="738.302" />
  1911. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1912. x1="472.145" y1="741.687" x2="479.364" y2="741.687" />
  1913. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1914. x1="473.554" y1="745.072" x2="477.953" y2="745.072" />
  1915. </g>
  1916. <text transform="matrix(1 0 0 1 650.5461 665.5088)" fill="#FFFFFF"
  1917. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1918. 32-9
  1919. </text>
  1920. <text transform="matrix(1 0 0 1 738.4001 612.1943)" fill="#FFFFFF"
  1921. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1922. 321
  1923. </text>
  1924. <text transform="matrix(1 0 0 1 702.4919 641.6475)" fill="#FFFFFF"
  1925. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1926. 32-0
  1927. </text>
  1928. <text transform="matrix(1 0 0 1 783.1345 550.1611)" fill="#FFFFFF"
  1929. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1930. 321-2
  1931. </text>
  1932. <g>
  1933. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1934. x1="704.42" y1="616.427" x2="716.719" y2="616.427" />
  1935. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1936. x1="710.571" y1="607.964" x2="710.571" y2="616.427" />
  1937. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1938. x1="706.959" y1="619.811" x2="714.18" y2="619.811" />
  1939. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1940. x1="708.369" y1="623.196" x2="712.77" y2="623.196" />
  1941. </g>
  1942. <text transform="matrix(1 0 0 1 783.1345 663.8584)" fill="#FFFFFF"
  1943. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1944. 321-3
  1945. </text>
  1946. <g>
  1947. <rect x="656.304" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  1948. <text transform="matrix(1 0 0 1 662.428 816.4912)" fill="#FFFFFF"
  1949. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1950. 35KV Ⅱ母
  1951. </text>
  1952. </g>
  1953. <g>
  1954. <rect x="737.78" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  1955. <text transform="matrix(1 0 0 1 742.5203 816.4912)" fill="#FFFFFF"
  1956. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1957. 集电线路四
  1958. </text>
  1959. </g>
  1960. <rect x="688.336" y="521.988" fill="#CAA51A" width="2.25" height="123.418" />
  1961. <rect x="770.93" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  1962. <rect x="770.938" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  1963. <rect x="709.444" y="564.406" fill="#CAA51A" width="2.25" height="20.5" />
  1964. <rect x="690.544" y="564.406" fill="#CAA51A" width="20.5" height="2.25" />
  1965. <text transform="matrix(1 0 0 1 786.0857 761.8877)" fill="#FFFFFF"
  1966. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1967. 321-0
  1968. </text>
  1969. <rect x="771.93" y="668.229" fill="#CAA51A" width="2.25" height="123.418" />
  1970. <rect x="793.037" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  1971. <rect x="774.138" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  1972. <rect x="688.335" y="670.113" fill="#CAA51A" width="2.25" height="22.741" />
  1973. <rect x="653.018" y="691.729" fill="#CAA51A" width="75.414" height="2.25" />
  1974. <rect x="651.589" y="519.333" fill="#CAA51A" width="584.841" height="2.655" />
  1975. <rect x="762.946" y="589.096" fill="#9F1A59" width="15.98" height="24.202" />
  1976. <rect x="653.018" y="692.854" fill="#CAA51A" width="2.604" height="19.663" />
  1977. <rect x="653.018" y="726.571" fill="#3EB9B0" width="2.604" height="6.479" />
  1978. <g>
  1979. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1980. x1="648.061" y1="733.039" x2="660.576" y2="733.039" />
  1981. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1982. x1="650.23" y1="736.358" x2="658.406" y2="736.358" />
  1983. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1984. x1="652.018" y1="739.862" x2="656.619" y2="739.862" />
  1985. </g>
  1986. <polygon fill="#CAA51A" points="657.563,712.411 654.314,721.642 651.073,712.409 " />
  1987. <polygon fill="#CAA51A" points="778.869,785.663 772.557,797.635 766.257,785.66 " />
  1988. <rect x="649.203" y="702.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  1989. stroke-miterlimit="10" width="10.229" height="24.323" />
  1990. <rect x="688.666" y="692.854" fill="#CAA51A" width="2.604" height="33.717" />
  1991. <rect x="725.825" y="692.854" fill="#CAA51A" width="2.604" height="18.219" />
  1992. <rect x="688.666" y="726.571" fill="#3EB9B0" width="2.604" height="6.479" />
  1993. <g>
  1994. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1995. x1="683.71" y1="733.039" x2="696.229" y2="733.039" />
  1996. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1997. x1="685.882" y1="736.358" x2="694.058" y2="736.358" />
  1998. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1999. x1="687.666" y1="739.862" x2="692.271" y2="739.862" />
  2000. </g>
  2001. <rect x="684.855" y="702.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  2002. stroke-miterlimit="10" width="10.229" height="24.323" />
  2003. <rect x="1205.254" y="694.379" fill="#CAA51A" width="2.604" height="73.527" />
  2004. <rect x="1205.254" y="766.261" fill="#3EB9B0" width="2.604" height="6.478" />
  2005. <g>
  2006. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2007. x1="1200.297" y1="772.729" x2="1212.814" y2="772.729" />
  2008. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2009. x1="1202.469" y1="776.05" x2="1210.646" y2="776.05" />
  2010. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2011. x1="1204.254" y1="779.552" x2="1208.857" y2="779.552" />
  2012. </g>
  2013. <rect x="1201.442" y="731.635" fill="none" stroke="#CAA51A" stroke-width="2.3"
  2014. stroke-miterlimit="10" width="10.229" height="24.324" />
  2015. <rect x="993.074" y="772.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  2016. stroke-miterlimit="10" width="52.403" height="24.323" />
  2017. <g>
  2018. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2019. cx="725.877" cy="734.65" r="8.804" />
  2020. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2021. cx="725.875" cy="719.373" r="8.804" />
  2022. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2023. points="729.028,738.679 725.861,735.549 722.909,738.679 " />
  2024. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2025. x1="725.795" y1="735.466" x2="725.795" y2="729.942" />
  2026. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2027. points="729.028,723.741 725.861,720.609 722.909,723.741 " />
  2028. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2029. x1="725.795" y1="720.526" x2="725.795" y2="715.007" />
  2030. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2031. cx="738.697" cy="726.569" r="8.803" />
  2032. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2033. points="741.849,730.938 738.682,727.806 735.73,730.938 " />
  2034. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2035. x1="738.615" y1="727.723" x2="738.615" y2="722.201" />
  2036. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2037. cx="712.954" cy="726.569" r="8.803" />
  2038. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2039. points="714.711,729.829 714.711,723.31 709.335,726.747 " />
  2040. </g>
  2041. <g>
  2042. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2043. cx="1183.494" cy="713.853" r="8.804" />
  2044. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2045. cx="1183.494" cy="698.575" r="8.804" />
  2046. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2047. points="1186.646,717.883 1183.479,714.749 1180.528,717.883 " />
  2048. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2049. x1="1183.412" y1="714.667" x2="1183.412" y2="709.146" />
  2050. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2051. points="1186.646,702.943 1183.479,699.812 1180.528,702.943 " />
  2052. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2053. x1="1183.412" y1="699.729" x2="1183.412" y2="694.207" />
  2054. </g>
  2055. <g>
  2056. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2057. x1="788.031" y1="738.302" x2="800.33" y2="738.302" />
  2058. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2059. x1="794.182" y1="729.84" x2="794.182" y2="738.302" />
  2060. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2061. x1="790.571" y1="741.687" x2="797.791" y2="741.687" />
  2062. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2063. x1="791.98" y1="745.072" x2="796.381" y2="745.072" />
  2064. </g>
  2065. <text transform="matrix(1 0 0 1 820.9001 612.1943)" fill="#FFFFFF"
  2066. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2067. 322
  2068. </text>
  2069. <text transform="matrix(1 0 0 1 865.6345 550.1611)" fill="#FFFFFF"
  2070. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2071. 322-2
  2072. </text>
  2073. <text transform="matrix(1 0 0 1 865.6345 663.8584)" fill="#FFFFFF"
  2074. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2075. 322-3
  2076. </text>
  2077. <g>
  2078. <rect x="820.28" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2079. <text transform="matrix(1 0 0 1 825.0203 816.4912)" fill="#FFFFFF"
  2080. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2081. 集电线路五
  2082. </text>
  2083. </g>
  2084. <rect x="853.43" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2085. <rect x="853.438" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  2086. <text transform="matrix(1 0 0 1 868.5857 761.8877)" fill="#FFFFFF"
  2087. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2088. 322-0
  2089. </text>
  2090. <rect x="854.43" y="668.229" fill="#CAA51A" width="2.25" height="123.418" />
  2091. <rect x="875.537" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  2092. <rect x="856.638" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  2093. <rect x="845.446" y="589.096" fill="#9F1A59" width="15.98" height="24.202" />
  2094. <polygon fill="#CAA51A" points="861.369,785.663 855.057,797.635 848.757,785.66 " />
  2095. <g>
  2096. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2097. x1="870.531" y1="738.302" x2="882.83" y2="738.302" />
  2098. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2099. x1="876.682" y1="729.84" x2="876.682" y2="738.302" />
  2100. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2101. x1="873.071" y1="741.687" x2="880.291" y2="741.687" />
  2102. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2103. x1="874.48" y1="745.072" x2="878.881" y2="745.072" />
  2104. </g>
  2105. <text transform="matrix(1 0 0 1 901.8943 612.1943)" fill="#FFFFFF"
  2106. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2107. 323
  2108. </text>
  2109. <text transform="matrix(1 0 0 1 946.6292 550.1611)" fill="#FFFFFF"
  2110. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2111. 323-2
  2112. </text>
  2113. <text transform="matrix(1 0 0 1 946.6292 663.8584)" fill="#FFFFFF"
  2114. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2115. 323-3
  2116. </text>
  2117. <g>
  2118. <rect x="901.273" y="801.938" fill="#44426C" width="72.314" height="20.817" />
  2119. <text transform="matrix(1 0 0 1 906.0144 816.4912)" fill="#FFFFFF"
  2120. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2121. 集电线路六
  2122. </text>
  2123. </g>
  2124. <rect x="934.425" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2125. <rect x="934.431" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  2126. <text transform="matrix(1 0 0 1 949.5803 761.8877)" fill="#FFFFFF"
  2127. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2128. 323-0
  2129. </text>
  2130. <rect x="935.425" y="668.229" fill="#CAA51A" width="2.25" height="123.418" />
  2131. <rect x="956.531" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  2132. <rect x="937.632" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  2133. <rect x="926.439" y="589.096" fill="#9F1A59" width="15.981" height="24.202" />
  2134. <polygon fill="#CAA51A" points="942.364,785.663 936.052,797.635 929.75,785.66 " />
  2135. <g>
  2136. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2137. x1="951.526" y1="738.302" x2="963.824" y2="738.302" />
  2138. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2139. x1="957.676" y1="729.84" x2="957.676" y2="738.302" />
  2140. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2141. x1="954.064" y1="741.687" x2="961.285" y2="741.687" />
  2142. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2143. x1="955.477" y1="745.072" x2="959.875" y2="745.072" />
  2144. </g>
  2145. <text transform="matrix(1 0 0 1 985.2083 612.1943)" fill="#FFFFFF"
  2146. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2147. 325
  2148. </text>
  2149. <text transform="matrix(1 0 0 1 1029.9426 550.1611)" fill="#FFFFFF"
  2150. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2151. 325-2
  2152. </text>
  2153. <text transform="matrix(1 0 0 1 1029.9426 663.8584)" fill="#FFFFFF"
  2154. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2155. 325-3
  2156. </text>
  2157. <g>
  2158. <rect x="983.588" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2159. <text transform="matrix(1 0 0 1 993.1985 816.4912)" fill="#FFFFFF"
  2160. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2161. 325备用
  2162. </text>
  2163. </g>
  2164. <rect x="1017.739" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2165. <rect x="1017.744" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  2166. <text transform="matrix(1 0 0 1 1032.8938 761.8877)" fill="#FFFFFF"
  2167. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2168. 325-0
  2169. </text>
  2170. <rect x="1018.739" y="668.229" fill="#CAA51A" width="2.25" height="104.678" />
  2171. <rect x="1039.846" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  2172. <rect x="1020.946" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  2173. <rect x="1009.754" y="589.096" fill="#167C3B" width="15.981" height="24.202" />
  2174. <g>
  2175. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2176. x1="1034.84" y1="738.302" x2="1047.139" y2="738.302" />
  2177. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2178. x1="1040.99" y1="729.84" x2="1040.99" y2="738.302" />
  2179. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2180. x1="1037.379" y1="741.687" x2="1044.6" y2="741.687" />
  2181. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2182. x1="1038.789" y1="745.072" x2="1043.189" y2="745.072" />
  2183. </g>
  2184. <rect x="1075.438" y="772.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  2185. stroke-miterlimit="10" width="52.402" height="24.323" />
  2186. <text transform="matrix(1 0 0 1 1067.5696 612.1943)" fill="#FFFFFF"
  2187. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2188. 326
  2189. </text>
  2190. <text transform="matrix(1 0 0 1 1112.304 550.1611)" fill="#FFFFFF"
  2191. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2192. 326-2
  2193. </text>
  2194. <text transform="matrix(1 0 0 1 1112.304 663.8584)" fill="#FFFFFF"
  2195. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2196. 326-3
  2197. </text>
  2198. <g>
  2199. <rect x="1065.949" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2200. <text transform="matrix(1 0 0 1 1075.5618 816.4912)" fill="#FFFFFF"
  2201. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2202. 326补偿器
  2203. </text>
  2204. </g>
  2205. <g>
  2206. <rect x="1146.149" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2207. <text transform="matrix(1 0 0 1 1155.761 816.4912)" fill="#FFFFFF"
  2208. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2209. #2接地变
  2210. </text>
  2211. </g>
  2212. <rect x="1100.1" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2213. <rect x="1100.108" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  2214. <text transform="matrix(1 0 0 1 1115.2551 761.8877)" fill="#FFFFFF"
  2215. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2216. 326-0
  2217. </text>
  2218. <rect x="1101.1" y="668.229" fill="#CAA51A" width="2.25" height="104.678" />
  2219. <rect x="1122.207" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  2220. <rect x="1183.586" y="694.906" fill="#CAA51A" width="22.969" height="0.97" />
  2221. <rect x="1183.586" y="712.885" fill="#CAA51A" width="22.969" height="0.97" />
  2222. <rect x="1103.311" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  2223. <rect x="1092.115" y="589.096" fill="#167C3B" width="15.981" height="24.202" />
  2224. <text transform="matrix(1 0 0 1 1148.6438 612.1943)" fill="#FFFFFF"
  2225. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2226. 327
  2227. </text>
  2228. <text transform="matrix(1 0 0 1 1193.3782 550.1611)" fill="#FFFFFF"
  2229. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2230. 327-2
  2231. </text>
  2232. <rect x="1181.174" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2233. <rect x="1181.182" y="556.988" fill="#CAA51A" width="2.25" height="131.657" />
  2234. <rect x="1173.189" y="589.096" fill="#167C3B" width="15.982" height="24.202" />
  2235. <g>
  2236. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2237. x1="1117.201" y1="738.302" x2="1129.5" y2="738.302" />
  2238. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2239. x1="1123.354" y1="729.84" x2="1123.354" y2="738.302" />
  2240. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2241. x1="1119.74" y1="741.687" x2="1126.961" y2="741.687" />
  2242. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2243. x1="1121.151" y1="745.072" x2="1125.551" y2="745.072" />
  2244. </g>
  2245. <text transform="matrix(1 0 0 1 1297.929 665.5088)" fill="#FFFFFF"
  2246. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2247. 35-9
  2248. </text>
  2249. <text transform="matrix(1 0 0 1 1385.7825 612.1943)" fill="#FFFFFF"
  2250. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2251. 351
  2252. </text>
  2253. <text transform="matrix(1 0 0 1 1349.8743 641.6475)" fill="#FFFFFF"
  2254. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2255. 35-0
  2256. </text>
  2257. <text transform="matrix(1 0 0 1 1430.5168 550.1611)" fill="#FFFFFF"
  2258. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2259. 351-5
  2260. </text>
  2261. <g>
  2262. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2263. x1="1351.803" y1="616.427" x2="1364.104" y2="616.427" />
  2264. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2265. x1="1357.953" y1="607.964" x2="1357.953" y2="616.427" />
  2266. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2267. x1="1354.342" y1="619.811" x2="1361.563" y2="619.811" />
  2268. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2269. x1="1355.752" y1="623.196" x2="1360.152" y2="623.196" />
  2270. </g>
  2271. <text transform="matrix(1 0 0 1 1430.5168 663.8584)" fill="#FFFFFF"
  2272. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2273. 351-3
  2274. </text>
  2275. <g>
  2276. <rect x="1303.688" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2277. <text transform="matrix(1 0 0 1 1309.8098 816.4912)" fill="#FFFFFF"
  2278. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2279. 35KV Ⅴ母
  2280. </text>
  2281. </g>
  2282. <g>
  2283. <rect x="1385.162" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2284. <text transform="matrix(1 0 0 1 1389.9036 816.4912)" fill="#FFFFFF"
  2285. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2286. 集电线路七
  2287. </text>
  2288. </g>
  2289. <rect x="1335.719" y="521.988" fill="#CAA51A" width="2.25" height="123.418" />
  2290. <rect x="1418.313" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2291. <rect x="1418.321" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  2292. <rect x="1356.826" y="564.406" fill="#CAA51A" width="2.25" height="20.5" />
  2293. <rect x="1337.928" y="564.406" fill="#CAA51A" width="20.5" height="2.25" />
  2294. <text transform="matrix(1 0 0 1 1433.468 761.8877)" fill="#FFFFFF"
  2295. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2296. 351-0
  2297. </text>
  2298. <rect x="1419.313" y="668.229" fill="#CAA51A" width="2.25" height="123.418" />
  2299. <rect x="1440.42" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  2300. <rect x="1421.521" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  2301. <rect x="1335.719" y="670.113" fill="#CAA51A" width="2.25" height="22.741" />
  2302. <rect x="1300.4" y="691.729" fill="#CAA51A" width="75.414" height="2.25" />
  2303. <rect x="1298.975" y="519.333" fill="#CAA51A" width="584.84" height="2.655" />
  2304. <rect x="1410.328" y="589.096" fill="#9F1A59" width="15.981" height="24.202" />
  2305. <rect x="1300.4" y="692.854" fill="#CAA51A" width="2.604" height="19.663" />
  2306. <rect x="1300.4" y="726.571" fill="#3EB9B0" width="2.604" height="6.479" />
  2307. <g>
  2308. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2309. x1="1295.443" y1="733.039" x2="1307.961" y2="733.039" />
  2310. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2311. x1="1297.615" y1="736.358" x2="1305.791" y2="736.358" />
  2312. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2313. x1="1299.4" y1="739.862" x2="1304.004" y2="739.862" />
  2314. </g>
  2315. <polygon fill="#CAA51A" points="1304.948,712.411 1301.699,721.642 1298.457,712.409 " />
  2316. <polygon fill="#CAA51A" points="1426.252,785.663 1419.939,797.635 1413.641,785.66 " />
  2317. <rect x="1296.588" y="702.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  2318. stroke-miterlimit="10" width="10.229" height="24.323" />
  2319. <rect x="1336.051" y="692.854" fill="#CAA51A" width="2.604" height="33.717" />
  2320. <rect x="1373.209" y="692.854" fill="#CAA51A" width="2.604" height="18.219" />
  2321. <rect x="1336.051" y="726.571" fill="#3EB9B0" width="2.604" height="6.479" />
  2322. <g>
  2323. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2324. x1="1331.094" y1="733.039" x2="1343.612" y2="733.039" />
  2325. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2326. x1="1333.268" y1="736.358" x2="1341.441" y2="736.358" />
  2327. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2328. x1="1335.051" y1="739.862" x2="1339.655" y2="739.862" />
  2329. </g>
  2330. <rect x="1332.239" y="702.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  2331. stroke-miterlimit="10" width="10.229" height="24.323" />
  2332. <rect x="1852.639" y="694.379" fill="#CAA51A" width="2.604" height="73.527" />
  2333. <rect x="1852.639" y="766.261" fill="#3EB9B0" width="2.604" height="6.478" />
  2334. <g>
  2335. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2336. x1="1847.682" y1="772.729" x2="1860.199" y2="772.729" />
  2337. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2338. x1="1849.854" y1="776.05" x2="1858.03" y2="776.05" />
  2339. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2340. x1="1851.639" y1="779.552" x2="1856.242" y2="779.552" />
  2341. </g>
  2342. <rect x="1848.826" y="731.635" fill="none" stroke="#CAA51A" stroke-width="2.3"
  2343. stroke-miterlimit="10" width="10.229" height="24.324" />
  2344. <rect x="1640.459" y="772.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  2345. stroke-miterlimit="10" width="52.403" height="24.323" />
  2346. <g>
  2347. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2348. cx="1373.26" cy="734.65" r="8.804" />
  2349. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2350. cx="1373.26" cy="719.373" r="8.804" />
  2351. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2352. points="1376.412,738.679 1373.244,735.549 1370.293,738.679 " />
  2353. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2354. x1="1373.178" y1="735.466" x2="1373.178" y2="729.942" />
  2355. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2356. points="1376.412,723.741 1373.244,720.609 1370.293,723.741 " />
  2357. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2358. x1="1373.178" y1="720.526" x2="1373.178" y2="715.007" />
  2359. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2360. cx="1386.08" cy="726.569" r="8.803" />
  2361. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2362. points="1389.232,730.938 1386.064,727.806 1383.114,730.938 " />
  2363. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2364. x1="1385.998" y1="727.723" x2="1385.998" y2="722.201" />
  2365. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2366. cx="1360.338" cy="726.569" r="8.803" />
  2367. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2368. points="1362.094,729.829 1362.094,723.31 1356.719,726.747 " />
  2369. </g>
  2370. <g>
  2371. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2372. cx="1830.879" cy="713.853" r="8.804" />
  2373. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2374. cx="1830.877" cy="698.575" r="8.804" />
  2375. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2376. points="1834.03,717.883 1830.864,714.749 1827.912,717.883 " />
  2377. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2378. x1="1830.797" y1="714.667" x2="1830.797" y2="709.146" />
  2379. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2380. points="1834.03,702.943 1830.864,699.812 1827.912,702.943 " />
  2381. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2382. x1="1830.797" y1="699.729" x2="1830.797" y2="694.207" />
  2383. </g>
  2384. <g>
  2385. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2386. x1="1435.414" y1="738.302" x2="1447.713" y2="738.302" />
  2387. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2388. x1="1441.564" y1="729.84" x2="1441.564" y2="738.302" />
  2389. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2390. x1="1437.953" y1="741.687" x2="1445.174" y2="741.687" />
  2391. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2392. x1="1439.364" y1="745.072" x2="1443.766" y2="745.072" />
  2393. </g>
  2394. <text transform="matrix(1 0 0 1 1468.2825 612.1943)" fill="#FFFFFF"
  2395. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2396. 353
  2397. </text>
  2398. <text transform="matrix(1 0 0 1 1513.0168 550.1611)" fill="#FFFFFF"
  2399. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2400. 353-5
  2401. </text>
  2402. <text transform="matrix(1 0 0 1 1513.0168 663.8584)" fill="#FFFFFF"
  2403. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2404. 353-3
  2405. </text>
  2406. <g>
  2407. <rect x="1467.662" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2408. <text transform="matrix(1 0 0 1 1472.4036 816.4912)" fill="#FFFFFF"
  2409. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2410. 集电线路八
  2411. </text>
  2412. </g>
  2413. <rect x="1500.813" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2414. <rect x="1500.821" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  2415. <text transform="matrix(1 0 0 1 1515.968 761.8877)" fill="#FFFFFF"
  2416. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2417. 353-0
  2418. </text>
  2419. <rect x="1501.813" y="668.229" fill="#CAA51A" width="2.25" height="123.418" />
  2420. <rect x="1522.92" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  2421. <rect x="1504.021" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  2422. <rect x="1492.828" y="589.096" fill="#9F1A59" width="15.981" height="24.202" />
  2423. <polygon fill="#CAA51A" points="1508.752,785.663 1502.439,797.635 1496.141,785.66 " />
  2424. <g>
  2425. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2426. x1="1517.914" y1="738.302" x2="1530.213" y2="738.302" />
  2427. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2428. x1="1524.064" y1="729.84" x2="1524.064" y2="738.302" />
  2429. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2430. x1="1520.453" y1="741.687" x2="1527.674" y2="741.687" />
  2431. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2432. x1="1521.864" y1="745.072" x2="1526.266" y2="745.072" />
  2433. </g>
  2434. <text transform="matrix(1 0 0 1 1549.2766 612.1943)" fill="#FFFFFF"
  2435. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2436. 354
  2437. </text>
  2438. <text transform="matrix(1 0 0 1 1594.011 550.1611)" fill="#FFFFFF"
  2439. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2440. 354-5
  2441. </text>
  2442. <text transform="matrix(1 0 0 1 1594.011 663.8584)" fill="#FFFFFF"
  2443. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2444. 354-3
  2445. </text>
  2446. <g>
  2447. <rect x="1548.656" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2448. <text transform="matrix(1 0 0 1 1553.3977 816.4912)" fill="#FFFFFF"
  2449. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2450. 集电线路九
  2451. </text>
  2452. </g>
  2453. <rect x="1581.809" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2454. <rect x="1581.814" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  2455. <text transform="matrix(1 0 0 1 1596.9622 761.8877)" fill="#FFFFFF"
  2456. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2457. 354-0
  2458. </text>
  2459. <rect x="1582.809" y="668.229" fill="#CAA51A" width="2.25" height="123.418" />
  2460. <rect x="1603.916" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  2461. <rect x="1585.016" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  2462. <rect x="1573.824" y="589.096" fill="#9F1A59" width="15.981" height="24.202" />
  2463. <polygon fill="#CAA51A" points="1589.748,785.663 1583.436,797.635 1577.135,785.66 " />
  2464. <g>
  2465. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2466. x1="1598.91" y1="738.302" x2="1611.209" y2="738.302" />
  2467. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2468. x1="1605.061" y1="729.84" x2="1605.061" y2="738.302" />
  2469. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2470. x1="1601.449" y1="741.687" x2="1608.67" y2="741.687" />
  2471. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2472. x1="1602.859" y1="745.072" x2="1607.26" y2="745.072" />
  2473. </g>
  2474. <text transform="matrix(1 0 0 1 1632.5911 612.1943)" fill="#FFFFFF"
  2475. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2476. 355
  2477. </text>
  2478. <text transform="matrix(1 0 0 1 1677.3254 550.1611)" fill="#FFFFFF"
  2479. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2480. 355-5
  2481. </text>
  2482. <text transform="matrix(1 0 0 1 1677.3254 663.8584)" fill="#FFFFFF"
  2483. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2484. 355-3
  2485. </text>
  2486. <g>
  2487. <rect x="1630.973" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2488. <text transform="matrix(1 0 0 1 1640.5833 816.4912)" fill="#FFFFFF"
  2489. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2490. 355备用
  2491. </text>
  2492. </g>
  2493. <rect x="1665.123" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2494. <rect x="1665.129" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  2495. <text transform="matrix(1 0 0 1 1680.2766 761.8877)" fill="#FFFFFF"
  2496. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2497. 355-0
  2498. </text>
  2499. <rect x="1666.123" y="668.229" fill="#CAA51A" width="2.25" height="104.678" />
  2500. <rect x="1687.23" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  2501. <rect x="1668.33" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  2502. <rect x="1657.139" y="589.096" fill="#167C3B" width="15.982" height="24.202" />
  2503. <g>
  2504. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2505. x1="1682.225" y1="738.302" x2="1694.523" y2="738.302" />
  2506. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2507. x1="1688.375" y1="729.84" x2="1688.375" y2="738.302" />
  2508. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2509. x1="1684.764" y1="741.687" x2="1691.984" y2="741.687" />
  2510. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2511. x1="1686.174" y1="745.072" x2="1690.574" y2="745.072" />
  2512. </g>
  2513. <rect x="1722.821" y="772.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  2514. stroke-miterlimit="10" width="52.403" height="24.323" />
  2515. <text transform="matrix(1 0 0 1 1714.9543 612.1943)" fill="#FFFFFF"
  2516. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2517. 356
  2518. </text>
  2519. <text transform="matrix(1 0 0 1 1759.6887 550.1611)" fill="#FFFFFF"
  2520. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2521. 356-1
  2522. </text>
  2523. <text transform="matrix(1 0 0 1 1759.6887 663.8584)" fill="#FFFFFF"
  2524. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2525. 356-3
  2526. </text>
  2527. <g>
  2528. <rect x="1713.334" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2529. <text transform="matrix(1 0 0 1 1722.9446 816.4912)" fill="#FFFFFF"
  2530. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2531. 356补偿器
  2532. </text>
  2533. </g>
  2534. <g>
  2535. <rect x="1793.533" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2536. <text transform="matrix(1 0 0 1 1803.1438 816.4912)" fill="#FFFFFF"
  2537. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2538. #3接地变
  2539. </text>
  2540. </g>
  2541. <rect x="1747.484" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2542. <rect x="1747.492" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  2543. <text transform="matrix(1 0 0 1 1762.6399 761.8877)" fill="#FFFFFF"
  2544. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2545. 356-0
  2546. </text>
  2547. <rect x="1748.484" y="668.229" fill="#CAA51A" width="2.25" height="104.678" />
  2548. <rect x="1769.592" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  2549. <rect x="1830.971" y="694.906" fill="#CAA51A" width="22.969" height="0.97" />
  2550. <rect x="1830.971" y="712.885" fill="#CAA51A" width="22.969" height="0.97" />
  2551. <rect x="1750.693" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  2552. <rect x="1739.5" y="589.096" fill="#167C3B" width="15.981" height="24.202" />
  2553. <text transform="matrix(1 0 0 1 1796.0266 612.1943)" fill="#FFFFFF"
  2554. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2555. 357
  2556. </text>
  2557. <text transform="matrix(1 0 0 1 1840.761 550.1611)" fill="#FFFFFF"
  2558. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2559. 357-5
  2560. </text>
  2561. <rect x="1828.559" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2562. <rect x="1828.564" y="556.988" fill="#CAA51A" width="2.25" height="131.657" />
  2563. <rect x="1820.574" y="589.096" fill="#167C3B" width="15.981" height="24.202" />
  2564. <g>
  2565. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2566. x1="1764.586" y1="738.302" x2="1776.885" y2="738.302" />
  2567. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2568. x1="1770.737" y1="729.84" x2="1770.737" y2="738.302" />
  2569. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2570. x1="1767.125" y1="741.687" x2="1774.346" y2="741.687" />
  2571. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2572. x1="1768.535" y1="745.072" x2="1772.936" y2="745.072" />
  2573. </g>
  2574. <g>
  2575. <g>
  2576. <text transform="matrix(1 0 0 1 -15.5959 841.4775)" fill="#FFFFFF"
  2577. font-family="'MicrosoftYaHei'" font-size="10.7648">
  2578. la(
  2579. </text>
  2580. <text transform="matrix(1 0 0 1 -3.1858 841.4775)" fill="#FFFFFF"
  2581. font-family="'MicrosoftYaHei'" font-size="8.6118">
  2582. A
  2583. </text>
  2584. <text transform="matrix(1 0 0 1 2.8728 841.4775)" fill="#FFFFFF"
  2585. font-family="'MicrosoftYaHei'" font-size="10.7648">
  2586. ):
  2587. </text>
  2588. <text transform="matrix(1 0 0 1 -28.76 867.3301)" fill="#FFFFFF"
  2589. font-family="'MicrosoftYaHei'" font-size="10.7648">
  2590. P(kVar):
  2591. </text>
  2592. <text transform="matrix(1 0 0 1 -28.0549 893.1807)" fill="#FFFFFF"
  2593. font-family="'MicrosoftYaHei'" font-size="10.7648">
  2594. Q(
  2595. </text>
  2596. <text transform="matrix(1 0 0 1 -15.6868 893.1807)" fill="#FFFFFF"
  2597. font-family="'MicrosoftYaHei'" font-size="8.6118">
  2598. kVar
  2599. </text>
  2600. <text transform="matrix(1 0 0 1 2.8728 893.1807)" fill="#FFFFFF"
  2601. font-family="'MicrosoftYaHei'" font-size="10.7648">
  2602. ):
  2603. </text>
  2604. </g>
  2605. </g>
  2606. <g>
  2607. <rect x="1586.239" y="81.515" opacity="0.9" fill="#162320"
  2608. enable-background="new " width="86.618" height="18.489" />
  2609. <rect x="1586.239" y="102.012" opacity="0.9" fill="#162320"
  2610. enable-background="new " width="86.618" height="18.488" />
  2611. <rect x="1586.239" y="122.51" opacity="0.9" fill="#162320"
  2612. enable-background="new " width="86.618" height="18.488" />
  2613. <g>
  2614. <text transform="matrix(1 0 0 1 1604.9622 95.4658)" fill="#97A1A2"
  2615. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2616. la
  2617. </text>
  2618. <text transform="matrix(1 0 0 1 1614.2883 95.4658)" fill="#97A1A2"
  2619. font-family="'MicrosoftYaHei'" font-size="9.6234">
  2620. (A)
  2621. </text>
  2622. <text transform="matrix(1 0 0 1 1627.4875 95.4658)" fill="#97A1A2"
  2623. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2624. :
  2625. </text>
  2626. </g>
  2627. <g>
  2628. <text transform="matrix(1 0 0 1 1589.0598 113.8252)" fill="#97A1A2"
  2629. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2630. P(MVar):
  2631. </text>
  2632. </g>
  2633. <g>
  2634. <text transform="matrix(1 0 0 1 1589.0364 136.1104)" fill="#97A1A2"
  2635. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2636. Q(MVar):
  2637. </text>
  2638. </g>
  2639. <rect x="1586.239" y="142.159" opacity="0.9" fill="#162320"
  2640. enable-background="new " width="86.618" height="18.49" />
  2641. <g>
  2642. <text transform="matrix(1 0 0 1 1604.0129 156.1006)" fill="#97A1A2"
  2643. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2644. COSΦ:
  2645. </text>
  2646. </g>
  2647. </g>
  2648. <g>
  2649. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2650. d="M1102.369,554.788" />
  2651. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2652. d="M1102.369,668.486" />
  2653. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2654. d="M1183.444,554.788" />
  2655. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2656. d="M1337.989,670.138" />
  2657. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2658. d="M1020.008,668.486" />
  2659. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2660. d="M1420.582,554.788" />
  2661. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2662. d="M1020.008,554.788" />
  2663. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2664. d="M936.694,668.486" />
  2665. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2666. d="M936.694,554.788" />
  2667. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2668. d="M855.699,668.486" />
  2669. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2670. d="M855.699,554.788" />
  2671. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2672. d="M773.199,554.788" />
  2673. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2674. d="M690.605,670.138" />
  2675. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2676. d="M535.846,554.788" />
  2677. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2678. d="M454.771,668.486" />
  2679. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2680. d="M454.771,554.788" />
  2681. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2682. d="M372.409,668.486" />
  2683. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2684. d="M372.409,554.788" />
  2685. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2686. d="M289.096,668.486" />
  2687. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2688. d="M289.096,554.788" />
  2689. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2690. d="M208.102,668.486" />
  2691. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2692. d="M208.102,554.788" />
  2693. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2694. d="M125.602,554.788" />
  2695. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2696. d="M43.008,670.138" />
  2697. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2698. d="M1559.326,493.303" />
  2699. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2700. d="M1559.326,391.677" />
  2701. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2702. d="M978.709,493.303" />
  2703. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2704. d="M978.709,391.677" />
  2705. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2706. d="M423.593,493.303" />
  2707. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2708. d="M423.593,391.677" />
  2709. </g>
  2710. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2711. d="M1749.754,554.788" />
  2712. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2713. d="M1749.754,668.486" />
  2714. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2715. d="M1584.078,668.486" />
  2716. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2717. d="M1503.082,668.486" />
  2718. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2719. d="M1584.078,554.788" />
  2720. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2721. d="M1667.393,668.486" />
  2722. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2723. d="M1667.393,554.788" />
  2724. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2725. d="M1830.828,554.788" />
  2726. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2727. d="M773.199,668.486" />
  2728. </g>
  2729. <g id="kg">
  2730. <g id="nsskg1011">
  2731. <g v-if="ajaxData.nsskg1011" id="_8_">
  2732. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2733. x1="340.064" y1="178.93" x2="357.329" y2="178.93"></line>
  2734. <path fill="#A61F24"
  2735. d="M349.204,192.946c1.418,0,2.574,1.156,2.574,2.571c0,1.418-1.157,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571S347.782,192.946,349.204,192.946 M349.204,190.916c-2.545,0-4.604,2.061-4.604,4.604 c0,2.545,2.061,4.604,4.604,4.604c2.544,0,4.604-2.061,4.604-4.604C353.809,192.973,351.748,190.916,349.204,190.916 L349.204,190.916z"
  2736. data-v-0c9672f3=""></path>
  2737. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2738. x1="349.204" y1="179.158" x2="349.204" y2="191.907"></line>
  2739. </g>
  2740. <g v-else-if="ajaxData.nsskg1011 == false" id="_4_">
  2741. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2742. x1="340.064" y1="178.93" x2="357.329" y2="178.93"></line>
  2743. <path fill="#1B9D3A"
  2744. d="M349.204,192.946c1.418,0,2.574,1.156,2.574,2.571c0,1.422-1.157,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571C346.628,194.099,347.782,192.946,349.204,192.946 M349.204,190.916 c-2.545,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604c2.544,0,4.604-2.061,4.604-4.604S351.748,190.916,349.204,190.916 L349.204,190.916z"
  2745. data-v-0c9672f3=""></path>
  2746. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2747. x1="355.66" y1="181.094" x2="348.697" y2="191.907"></line>
  2748. </g>
  2749. </g>
  2750. <g id="nsskg1013">
  2751. <g v-if="ajaxData.nsskg1013" id="off">
  2752. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2753. x1="340.064" y1="52.279" x2="357.329" y2="52.279"></line>
  2754. <path fill="#A61F24"
  2755. d="M349.204,66.295c1.418,0,2.574,1.158,2.574,2.574s-1.157,2.572-2.574,2.572 c-1.42,0-2.572-1.157-2.572-2.572C346.628,67.449,347.782,66.295,349.204,66.295 M349.204,64.265 c-2.545,0-4.604,2.06-4.604,4.604s2.061,4.604,4.604,4.604c2.544,0,4.604-2.063,4.604-4.604 C353.809,66.324,351.748,64.265,349.204,64.265L349.204,64.265z"
  2756. data-v-0c9672f3=""></path>
  2757. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2758. x1="349.204" y1="52.506" x2="349.204" y2="65.26"></line>
  2759. </g>
  2760. <g v-else-if="ajaxData.nsskg1013 == false" id="_3_">
  2761. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2762. x1="340.064" y1="52.279" x2="357.329" y2="52.279"></line>
  2763. <path fill="#1B9D3A"
  2764. d="M349.204,66.295c1.418,0,2.574,1.158,2.574,2.574s-1.157,2.572-2.574,2.572 c-1.42,0-2.572-1.157-2.572-2.572C346.628,67.449,347.782,66.295,349.204,66.295 M349.204,64.265 c-2.545,0-4.604,2.06-4.604,4.604c0,2.543,2.061,4.604,4.604,4.604c2.544,0,4.604-2.063,4.604-4.604 C353.809,66.324,351.748,64.265,349.204,64.265L349.204,64.265z"
  2765. data-v-0c9672f3=""></path>
  2766. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2767. x1="355.66" y1="54.44" x2="348.697" y2="65.26"></line>
  2768. </g>
  2769. </g>
  2770. <g id="nsskg1010">
  2771. <g v-if="ajaxData.nsskg1010" id="">
  2772. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2773. x1="327.819" y1="30.823" x2="327.819" y2="48.089"></line>
  2774. <path fill="#A61F24"
  2775. d="M311.23,37.388c1.42,0,2.573,1.155,2.573,2.571s-1.156,2.572-2.573,2.572s-2.572-1.156-2.572-2.572 S309.812,37.388,311.23,37.388 M311.23,35.356c-2.544,0-4.603,2.061-4.603,4.604c0,2.545,2.06,4.604,4.603,4.604 s4.604-2.061,4.604-4.604C315.835,37.417,313.775,35.356,311.23,35.356L311.23,35.356z"
  2776. data-v-0c9672f3=""></path>
  2777. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2778. x1="327.594" y1="39.964" x2="314.843" y2="39.964"></line>
  2779. </g>
  2780. <g v-else-if="ajaxData.nsskg1010 == false" id="">
  2781. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2782. x1="327.819" y1="30.823" x2="327.819" y2="48.089"></line>
  2783. <path fill="#1B9D3A"
  2784. d="M311.23,37.388c1.42,0,2.576,1.155,2.576,2.571s-1.157,2.572-2.576,2.572s-2.572-1.156-2.572-2.572 S309.812,37.388,311.23,37.388 M311.23,35.356c-2.543,0-4.603,2.061-4.603,4.604c0,2.545,2.06,4.604,4.603,4.604 c2.544,0,4.607-2.061,4.607-4.604C315.838,37.417,313.775,35.356,311.23,35.356L311.23,35.356z"
  2785. data-v-0c9672f3=""></path>
  2786. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2787. x1="325.66" y1="46.42" x2="314.843" y2="39.456"></line>
  2788. </g>
  2789. </g>
  2790. <g id="nsskg10103">
  2791. <g v-if="ajaxData.nsskg10103" id="_1_">
  2792. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2793. x1="327.819" y1="77.941" x2="327.819" y2="95.207"></line>
  2794. <path fill="#A61F24"
  2795. d="M311.23,84.51c1.42,0,2.573,1.155,2.573,2.571s-1.156,2.573-2.573,2.573s-2.572-1.155-2.572-2.573 C308.658,85.664,309.812,84.51,311.23,84.51 M311.23,82.477c-2.544,0-4.603,2.061-4.603,4.604s2.06,4.604,4.603,4.604 s4.604-2.063,4.604-4.604S313.775,82.477,311.23,82.477L311.23,82.477z"
  2796. data-v-0c9672f3=""></path>
  2797. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2798. x1="327.594" y1="87.082" x2="314.843" y2="87.082"></line>
  2799. </g>
  2800. <g v-else-if="ajaxData.nsskg10103 == false" id="_1_">
  2801. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2802. x1="327.819" y1="77.941" x2="327.819" y2="95.207"></line>
  2803. <path fill="#1B9D3A"
  2804. d="M311.23,84.51c1.42,0,2.576,1.155,2.576,2.571s-1.157,2.573-2.576,2.573s-2.572-1.155-2.572-2.573 C308.658,85.664,309.812,84.51,311.23,84.51 M311.23,82.477c-2.543,0-4.603,2.061-4.603,4.604s2.06,4.604,4.603,4.604 c2.544,0,4.607-2.063,4.607-4.604S313.775,82.477,311.23,82.477L311.23,82.477z"
  2805. data-v-0c9672f3=""></path>
  2806. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2807. x1="325.66" y1="93.541" x2="314.843" y2="86.574"></line>
  2808. </g>
  2809. </g>
  2810. <g id="nsskg10101">
  2811. <g v-if="ajaxData.nsskg10101" id="_2_">
  2812. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2813. x1="327.819" y1="156.148" x2="327.819" y2="173.414"></line>
  2814. <path fill="#A61F24"
  2815. d="M311.23,162.719c1.42,0,2.573,1.154,2.573,2.569c0,1.421-1.156,2.573-2.573,2.573 s-2.572-1.157-2.572-2.573C308.656,163.869,309.812,162.719,311.23,162.719 M311.23,160.686c-2.544,0-4.603,2.06-4.603,4.603 s2.06,4.604,4.603,4.604s4.604-2.063,4.604-4.604C315.835,162.742,313.775,160.686,311.23,160.686L311.23,160.686z"
  2816. data-v-0c9672f3=""></path>
  2817. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2818. x1="327.594" y1="165.289" x2="314.843" y2="165.289"></line>
  2819. </g>
  2820. <g v-else-if="ajaxData.nsskg10101 == false" id="_2_">
  2821. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2822. x1="327.819" y1="156.148" x2="327.819" y2="173.414"></line>
  2823. <path fill="#1B9D3A"
  2824. d="M311.23,162.719c1.42,0,2.576,1.154,2.576,2.569c0,1.421-1.157,2.573-2.576,2.573 s-2.572-1.157-2.572-2.573C308.656,163.869,309.812,162.719,311.23,162.719 M311.23,160.686c-2.543,0-4.603,2.06-4.603,4.603 s2.06,4.604,4.603,4.604c2.544,0,4.607-2.063,4.607-4.604C315.838,162.742,313.775,160.686,311.23,160.686L311.23,160.686z"
  2825. data-v-0c9672f3=""></path>
  2826. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2827. x1="325.66" y1="171.748" x2="314.843" y2="164.781"></line>
  2828. </g>
  2829. </g>
  2830. <g id="nsskg1023">
  2831. <g v-if="ajaxData.nsskg1023" id="_9_">
  2832. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2833. x1="660.064" y1="90.172" x2="677.329" y2="90.172"></line>
  2834. <path fill="#A61F24"
  2835. d="M669.204,104.188c1.419,0,2.574,1.158,2.574,2.574c0,1.416-1.157,2.57-2.574,2.57 c-1.42,0-2.572-1.155-2.572-2.57C666.628,105.344,667.782,104.188,669.204,104.188 M669.204,102.157 c-2.545,0-4.604,2.062-4.604,4.604s2.061,4.604,4.604,4.604c2.544,0,4.604-2.061,4.604-4.604 C673.809,104.218,671.748,102.157,669.204,102.157L669.204,102.157z"
  2836. data-v-0c9672f3=""></path>
  2837. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2838. x1="669.204" y1="90.398" x2="669.204" y2="103.15"></line>
  2839. </g>
  2840. <g v-else-if="ajaxData.nsskg1023 == false" id="_9_">
  2841. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2842. x1="660.064" y1="90.172" x2="677.329" y2="90.172"></line>
  2843. <path fill="#1B9D3A"
  2844. d="M669.204,104.188c1.419,0,2.574,1.158,2.574,2.574c0,1.416-1.157,2.57-2.574,2.57 c-1.42,0-2.572-1.155-2.572-2.57C666.628,105.344,667.782,104.188,669.204,104.188 M669.204,102.157 c-2.545,0-4.604,2.062-4.604,4.604s2.061,4.604,4.604,4.604c2.544,0,4.604-2.061,4.604-4.604 C673.809,104.218,671.748,102.157,669.204,102.157L669.204,102.157z"
  2845. data-v-0c9672f3=""></path>
  2846. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2847. x1="675.66" y1="92.333" x2="668.697" y2="103.15"></line>
  2848. </g>
  2849. </g>
  2850. <g id="nsskg1111">
  2851. <g v-if="ajaxData.nsskg1111" id="_6_">
  2852. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2853. x1="660.064" y1="179.93" x2="677.329" y2="179.93"></line>
  2854. <path fill="#A61F24"
  2855. d="M669.204,193.946c1.419,0,2.574,1.156,2.574,2.571c0,1.418-1.157,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571S667.782,193.946,669.204,193.946 M669.204,191.916c-2.545,0-4.604,2.061-4.604,4.604 c0,2.545,2.061,4.604,4.604,4.604c2.544,0,4.604-2.061,4.604-4.604C673.809,193.973,671.748,191.916,669.204,191.916 L669.204,191.916z"
  2856. data-v-0c9672f3=""></path>
  2857. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2858. x1="669.204" y1="180.158" x2="669.204" y2="192.907"></line>
  2859. </g>
  2860. <g v-else-if="ajaxData.nsskg1111 == false" id="_8_">
  2861. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2862. x1="660.064" y1="179.93" x2="677.329" y2="179.93"></line>
  2863. <path fill="#1B9D3A"
  2864. d="M669.204,193.946c1.419,0,2.574,1.156,2.574,2.571c0,1.422-1.157,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571C666.628,195.099,667.782,193.946,669.204,193.946 M669.204,191.916 c-2.545,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604c2.544,0,4.604-2.061,4.604-4.604S671.748,191.916,669.204,191.916 L669.204,191.916z"
  2865. data-v-0c9672f3=""></path>
  2866. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2867. x1="675.66" y1="182.094" x2="668.697" y2="192.907"></line>
  2868. </g>
  2869. </g>
  2870. <g id="nsskg1110">
  2871. <g v-if="ajaxData.nsskg1110" id="_5_">
  2872. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2873. x1="647.819" y1="60.791" x2="647.819" y2="78.057"></line>
  2874. <path fill="#A61F24"
  2875. d="M631.23,67.355c1.42,0,2.571,1.157,2.571,2.573c0,1.416-1.155,2.57-2.571,2.57 c-1.418,0-2.572-1.154-2.572-2.57C628.657,68.512,629.813,67.355,631.23,67.355 M631.23,65.324c-2.545,0-4.604,2.063-4.604,4.604 c0,2.545,2.063,4.604,4.604,4.604s4.604-2.059,4.604-4.604C635.835,67.385,633.775,65.324,631.23,65.324L631.23,65.324z"
  2876. data-v-0c9672f3=""></path>
  2877. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2878. x1="647.594" y1="69.932" x2="634.843" y2="69.932"></line>
  2879. </g>
  2880. <g v-else-if="ajaxData.nsskg1110 == false" id="_7_">
  2881. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2882. x1="647.819" y1="60.791" x2="647.819" y2="78.057"></line>
  2883. <path fill="#1B9D3A"
  2884. d="M631.23,67.355c1.42,0,2.574,1.157,2.574,2.573c0,1.416-1.156,2.57-2.574,2.57 c-1.42,0-2.572-1.154-2.572-2.57C628.657,68.512,629.813,67.355,631.23,67.355 M631.23,65.324c-2.543,0-4.604,2.063-4.604,4.604 c0,2.545,2.063,4.604,4.604,4.604s4.604-2.059,4.604-4.604C635.838,67.385,633.775,65.324,631.23,65.324L631.23,65.324z"
  2885. data-v-0c9672f3=""></path>
  2886. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2887. x1="645.66" y1="76.388" x2="634.843" y2="69.424"></line>
  2888. </g>
  2889. </g>
  2890. <g id="nsskg11103">
  2891. <g v-if="ajaxData.nsskg11103" id="_4_">
  2892. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2893. x1="647.819" y1="113.029" x2="647.819" y2="130.295"></line>
  2894. <path fill="#A61F24"
  2895. d="M631.23,119.596c1.42,0,2.571,1.155,2.571,2.571s-1.155,2.573-2.571,2.573 c-1.418,0-2.572-1.155-2.572-2.573C628.658,120.752,629.813,119.596,631.23,119.596 M631.23,117.564 c-2.545,0-4.604,2.061-4.604,4.604s2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604S633.775,117.564,631.23,117.564 L631.23,117.564z"
  2896. data-v-0c9672f3=""></path>
  2897. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2898. x1="647.594" y1="122.17" x2="634.843" y2="122.17"></line>
  2899. </g>
  2900. <g v-else-if="ajaxData.nsskg11103 == false" id="_6_">
  2901. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2902. x1="647.819" y1="113.029" x2="647.819" y2="130.295"></line>
  2903. <path fill="#1B9D3A"
  2904. d="M631.23,119.596c1.42,0,2.574,1.155,2.574,2.571s-1.156,2.573-2.574,2.573 c-1.42,0-2.572-1.155-2.572-2.573C628.658,120.752,629.813,119.596,631.23,119.596 M631.23,117.564 c-2.543,0-4.604,2.061-4.604,4.604s2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604S633.775,117.564,631.23,117.564 L631.23,117.564z"
  2905. data-v-0c9672f3=""></path>
  2906. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2907. x1="645.66" y1="128.629" x2="634.843" y2="121.662"></line>
  2908. </g>
  2909. </g>
  2910. <g id="nsskg11101">
  2911. <g v-if="ajaxData.nsskg11101" id="_3_">
  2912. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2913. x1="647.819" y1="157.148" x2="647.819" y2="174.414"></line>
  2914. <path fill="#A61F24"
  2915. d="M631.23,163.719c1.42,0,2.571,1.154,2.571,2.569c0,1.421-1.155,2.573-2.571,2.573 c-1.418,0-2.572-1.157-2.572-2.573C628.656,164.869,629.813,163.719,631.23,163.719 M631.23,161.686 c-2.545,0-4.604,2.06-4.604,4.603s2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604 C635.835,163.742,633.775,161.686,631.23,161.686L631.23,161.686z"
  2916. data-v-0c9672f3=""></path>
  2917. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2918. x1="647.594" y1="166.289" x2="634.843" y2="166.289"></line>
  2919. </g>
  2920. <g v-else-if="ajaxData.nsskg11101 == false" id="_5_">
  2921. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2922. x1="647.819" y1="157.148" x2="647.819" y2="174.414"></line>
  2923. <path fill="#1B9D3A"
  2924. d="M631.23,163.719c1.42,0,2.574,1.154,2.574,2.569c0,1.421-1.156,2.573-2.574,2.573 c-1.42,0-2.572-1.157-2.572-2.573C628.656,164.869,629.813,163.719,631.23,163.719 M631.23,161.686 c-2.543,0-4.604,2.06-4.604,4.603s2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604 C635.838,163.742,633.775,161.686,631.23,161.686L631.23,161.686z"
  2925. data-v-0c9672f3=""></path>
  2926. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2927. x1="645.66" y1="172.748" x2="634.843" y2="165.781"></line>
  2928. </g>
  2929. </g>
  2930. <g id="nsskg1023">
  2931. <g v-if="ajaxData.nsskg1023" id="_14_">
  2932. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2933. x1="897.064" y1="52.279" x2="914.329" y2="52.279"></line>
  2934. <path fill="#A61F24"
  2935. d="M906.204,66.295c1.419,0,2.574,1.158,2.574,2.574s-1.157,2.572-2.574,2.572 c-1.42,0-2.572-1.157-2.572-2.572C903.629,67.449,904.783,66.295,906.204,66.295 M906.204,64.265 c-2.545,0-4.604,2.06-4.604,4.604s2.061,4.604,4.604,4.604c2.544,0,4.604-2.063,4.604-4.604 C910.811,66.324,908.75,64.265,906.204,64.265L906.204,64.265z"
  2936. data-v-0c9672f3=""></path>
  2937. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2938. x1="906.204" y1="52.506" x2="906.204" y2="65.26"></line>
  2939. </g>
  2940. <g v-else-if="ajaxData.nsskg1023 == false" id="_14_">
  2941. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2942. x1="897.064" y1="52.279" x2="914.329" y2="52.279"></line>
  2943. <path fill="#1B9D3A"
  2944. d="M906.204,66.295c1.419,0,2.574,1.158,2.574,2.574s-1.157,2.572-2.574,2.572 c-1.42,0-2.572-1.157-2.572-2.572C903.629,67.449,904.783,66.295,906.204,66.295 M906.204,64.265 c-2.545,0-4.604,2.06-4.604,4.604c0,2.543,2.061,4.604,4.604,4.604c2.544,0,4.604-2.063,4.604-4.604 C910.811,66.324,908.75,64.265,906.204,64.265L906.204,64.265z"
  2945. data-v-0c9672f3=""></path>
  2946. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2947. x1="912.66" y1="54.44" x2="905.697" y2="65.26"></line>
  2948. </g>
  2949. </g>
  2950. <g id="nsskg1021">
  2951. <g v-if="ajaxData.nsskg1021" id="_13_">
  2952. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2953. x1="897.064" y1="178.93" x2="914.329" y2="178.93"></line>
  2954. <path fill="#A61F24"
  2955. d="M906.204,192.946c1.419,0,2.574,1.156,2.574,2.571c0,1.418-1.157,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571S904.783,192.946,906.204,192.946 M906.204,190.916c-2.545,0-4.604,2.061-4.604,4.604 c0,2.545,2.061,4.604,4.604,4.604c2.544,0,4.604-2.061,4.604-4.604C910.811,192.973,908.75,190.916,906.204,190.916 L906.204,190.916z"
  2956. data-v-0c9672f3=""></path>
  2957. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2958. x1="906.204" y1="179.158" x2="906.204" y2="191.907"></line>
  2959. </g>
  2960. <g v-else-if="ajaxData.nsskg1021 == false" id="_13_">
  2961. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2962. x1="897.064" y1="178.93" x2="914.329" y2="178.93"></line>
  2963. <path fill="#1B9D3A"
  2964. d="M906.204,192.946c1.419,0,2.574,1.156,2.574,2.571c0,1.422-1.157,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571C903.629,194.099,904.783,192.946,906.204,192.946 M906.204,190.916 c-2.545,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604c2.544,0,4.604-2.061,4.604-4.604 C910.811,192.975,908.75,190.916,906.204,190.916L906.204,190.916z"
  2965. data-v-0c9672f3=""></path>
  2966. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2967. x1="912.66" y1="181.094" x2="905.697" y2="191.907"></line>
  2968. </g>
  2969. </g>
  2970. <g id="nsskg1020">
  2971. <g v-if="ajaxData.nsskg1020" id="_12_">
  2972. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2973. x1="883.819" y1="30.823" x2="883.819" y2="48.089"></line>
  2974. <path fill="#A61F24"
  2975. d="M867.23,37.388c1.421,0,2.572,1.155,2.572,2.571s-1.154,2.572-2.572,2.572 c-1.416,0-2.571-1.156-2.571-2.572S865.813,37.388,867.23,37.388 M867.23,35.356c-2.543,0-4.604,2.061-4.604,4.604 c0,2.545,2.062,4.604,4.604,4.604s4.604-2.061,4.604-4.604C871.835,37.417,869.775,35.356,867.23,35.356L867.23,35.356z"
  2976. data-v-0c9672f3=""></path>
  2977. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2978. x1="883.595" y1="39.964" x2="870.844" y2="39.964"></line>
  2979. </g>
  2980. <g v-else-if="ajaxData.nsskg1020 == false" id="_12_">
  2981. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2982. x1="883.819" y1="30.823" x2="883.819" y2="48.089"></line>
  2983. <path fill="#1B9D3A"
  2984. d="M867.23,37.388c1.421,0,2.575,1.155,2.575,2.571s-1.155,2.572-2.575,2.572 c-1.418,0-2.571-1.156-2.571-2.572S865.813,37.388,867.23,37.388 M867.23,35.356c-2.543,0-4.604,2.061-4.604,4.604 c0,2.545,2.062,4.604,4.604,4.604c2.545,0,4.606-2.061,4.606-4.604C871.838,37.417,869.775,35.356,867.23,35.356L867.23,35.356z"
  2985. data-v-0c9672f3=""></path>
  2986. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2987. x1="881.66" y1="46.42" x2="870.844" y2="39.456"></line>
  2988. </g>
  2989. </g>
  2990. <g id="nsskg10203">
  2991. <g v-if="ajaxData.nsskg10203" id="_11_">
  2992. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2993. x1="883.819" y1="77.941" x2="883.819" y2="95.207"></line>
  2994. <path fill="#A61F24"
  2995. d="M867.23,84.51c1.421,0,2.572,1.155,2.572,2.571s-1.154,2.573-2.572,2.573 c-1.416,0-2.571-1.155-2.571-2.573C864.658,85.664,865.813,84.51,867.23,84.51 M867.23,82.477c-2.543,0-4.604,2.061-4.604,4.604 s2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604S869.775,82.477,867.23,82.477L867.23,82.477z"
  2996. data-v-0c9672f3=""></path>
  2997. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2998. x1="883.595" y1="87.082" x2="870.844" y2="87.082"></line>
  2999. </g>
  3000. <g v-else-if="ajaxData.nsskg10203 == false" id="_11_">
  3001. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3002. x1="883.819" y1="77.941" x2="883.819" y2="95.207"></line>
  3003. <path fill="#1B9D3A"
  3004. d="M867.23,84.51c1.421,0,2.575,1.155,2.575,2.571s-1.155,2.573-2.575,2.573 c-1.418,0-2.571-1.155-2.571-2.573C864.658,85.664,865.813,84.51,867.23,84.51 M867.23,82.477c-2.543,0-4.604,2.061-4.604,4.604 s2.062,4.604,4.604,4.604c2.545,0,4.606-2.063,4.606-4.604S869.775,82.477,867.23,82.477L867.23,82.477z"
  3005. data-v-0c9672f3=""></path>
  3006. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3007. x1="881.66" y1="93.541" x2="870.844" y2="86.574"></line>
  3008. </g>
  3009. </g>
  3010. <g id="nsskg10201">
  3011. <g v-if="ajaxData.nsskg10201" id="_10_">
  3012. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3013. x1="883.819" y1="156.148" x2="883.819" y2="173.414"></line>
  3014. <path fill="#A61F24"
  3015. d="M867.23,162.719c1.421,0,2.572,1.154,2.572,2.569c0,1.421-1.154,2.573-2.572,2.573 c-1.416,0-2.571-1.157-2.571-2.573C864.657,163.869,865.813,162.719,867.23,162.719 M867.23,160.686 c-2.543,0-4.604,2.06-4.604,4.603s2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604 C871.835,162.742,869.775,160.686,867.23,160.686L867.23,160.686z"
  3016. data-v-0c9672f3=""></path>
  3017. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3018. x1="883.595" y1="165.289" x2="870.844" y2="165.289"></line>
  3019. </g>
  3020. <g v-else-if="ajaxData.nsskg10201 == false" id="_10_">
  3021. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3022. x1="883.819" y1="156.148" x2="883.819" y2="173.414"></line>
  3023. <path fill="#1B9D3A"
  3024. d="M867.23,162.719c1.421,0,2.575,1.154,2.575,2.569c0,1.421-1.155,2.573-2.575,2.573 c-1.418,0-2.571-1.157-2.571-2.573C864.657,163.869,865.813,162.719,867.23,162.719 M867.23,160.686 c-2.543,0-4.604,2.06-4.604,4.603s2.062,4.604,4.604,4.604c2.545,0,4.606-2.063,4.606-4.604 C871.838,162.742,869.775,160.686,867.23,160.686L867.23,160.686z"
  3025. data-v-0c9672f3=""></path>
  3026. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3027. x1="881.66" y1="171.748" x2="870.844" y2="164.781"></line>
  3028. </g>
  3029. </g>
  3030. <g id="nsskg1033">
  3031. <g v-if="ajaxData.nsskg1033" id="_24_">
  3032. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3033. x1="1475.686" y1="52.279" x2="1492.949" y2="52.279"></line>
  3034. <path fill="#A61F24"
  3035. d="M1484.824,66.295c1.418,0,2.573,1.158,2.573,2.574s-1.157,2.572-2.573,2.572 c-1.421,0-2.572-1.157-2.572-2.572C1482.248,67.449,1483.402,66.295,1484.824,66.295 M1484.824,64.265 c-2.546,0-4.604,2.06-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604 C1489.43,66.324,1487.369,64.265,1484.824,64.265L1484.824,64.265z"
  3036. data-v-0c9672f3=""></path>
  3037. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3038. x1="1484.824" y1="52.506" x2="1484.824" y2="65.26"></line>
  3039. </g>
  3040. <g v-else-if="ajaxData.nsskg1033 == false" id="_24_">
  3041. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3042. x1="1475.686" y1="52.279" x2="1492.949" y2="52.279"></line>
  3043. <path fill="#1B9D3A"
  3044. d="M1484.824,66.295c1.418,0,2.573,1.158,2.573,2.574s-1.157,2.572-2.573,2.572 c-1.421,0-2.572-1.157-2.572-2.572C1482.248,67.449,1483.402,66.295,1484.824,66.295 M1484.824,64.265 c-2.546,0-4.604,2.06-4.604,4.604c0,2.543,2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604 C1489.43,66.324,1487.369,64.265,1484.824,64.265L1484.824,64.265z"
  3045. data-v-0c9672f3=""></path>
  3046. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3047. x1="1491.281" y1="54.44" x2="1484.316" y2="65.26"></line>
  3048. </g>
  3049. </g>
  3050. <g id="nsskg1032">
  3051. <g v-if="ajaxData.nsskg1032" id="_23_">
  3052. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3053. x1="1475.686" y1="178.93" x2="1492.949" y2="178.93"></line>
  3054. <path fill="#A61F24"
  3055. d="M1484.824,192.946c1.418,0,2.573,1.156,2.573,2.571c0,1.418-1.157,2.571-2.573,2.571 c-1.421,0-2.572-1.155-2.572-2.571S1483.402,192.946,1484.824,192.946 M1484.824,190.916c-2.546,0-4.604,2.061-4.604,4.604 c0,2.545,2.063,4.604,4.604,4.604c2.545,0,4.604-2.061,4.604-4.604C1489.43,192.973,1487.369,190.916,1484.824,190.916 L1484.824,190.916z"
  3056. data-v-0c9672f3=""></path>
  3057. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3058. x1="1484.824" y1="179.158" x2="1484.824" y2="191.907"></line>
  3059. </g>
  3060. <g v-else-if="ajaxData.nsskg1032 == false" id="_23_">
  3061. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3062. x1="1475.686" y1="178.93" x2="1492.949" y2="178.93"></line>
  3063. <path fill="#1B9D3A"
  3064. d="M1484.824,192.946c1.418,0,2.573,1.156,2.573,2.571c0,1.422-1.157,2.571-2.573,2.571 c-1.421,0-2.572-1.155-2.572-2.571C1482.248,194.099,1483.402,192.946,1484.824,192.946 M1484.824,190.916 c-2.546,0-4.604,2.061-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.061,4.604-4.604 C1489.43,192.975,1487.369,190.916,1484.824,190.916L1484.824,190.916z"
  3065. data-v-0c9672f3=""></path>
  3066. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3067. x1="1491.281" y1="181.094" x2="1484.316" y2="191.907"></line>
  3068. </g>
  3069. </g>
  3070. <g id="nsskg1030">
  3071. <g v-if="ajaxData.nsskg1030" id="_22_">
  3072. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3073. x1="1462.439" y1="30.823" x2="1462.439" y2="48.089"></line>
  3074. <path fill="#A61F24"
  3075. d="M1445.852,37.388c1.42,0,2.572,1.155,2.572,2.571s-1.156,2.572-2.572,2.572 c-1.418,0-2.571-1.156-2.571-2.572S1444.432,37.388,1445.852,37.388 M1445.852,35.356c-2.545,0-4.604,2.061-4.604,4.604 c0,2.545,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604S1448.395,35.356,1445.852,35.356L1445.852,35.356z"
  3076. data-v-0c9672f3=""></path>
  3077. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3078. x1="1462.215" y1="39.964" x2="1449.463" y2="39.964"></line>
  3079. </g>
  3080. <g v-else-if="ajaxData.nsskg1030 == false" id="_22_">
  3081. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3082. x1="1462.439" y1="30.823" x2="1462.439" y2="48.089"></line>
  3083. <path fill="#1B9D3A"
  3084. d="M1445.852,37.388c1.42,0,2.574,1.155,2.574,2.571s-1.156,2.572-2.574,2.572 c-1.42,0-2.571-1.156-2.571-2.572S1444.432,37.388,1445.852,37.388 M1445.852,35.356c-2.543,0-4.604,2.061-4.604,4.604 c0,2.545,2.061,4.604,4.604,4.604s4.605-2.061,4.605-4.604S1448.395,35.356,1445.852,35.356L1445.852,35.356z"
  3085. data-v-0c9672f3=""></path>
  3086. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3087. x1="1460.281" y1="46.42" x2="1449.463" y2="39.456"></line>
  3088. </g>
  3089. </g>
  3090. <g id="nsskg10303">
  3091. <g v-if="ajaxData.nsskg10303" id="_21_">
  3092. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3093. x1="1462.439" y1="77.941" x2="1462.439" y2="95.207"></line>
  3094. <path fill="#A61F24"
  3095. d="M1445.852,84.51c1.42,0,2.572,1.155,2.572,2.571s-1.156,2.573-2.572,2.573 c-1.418,0-2.571-1.155-2.571-2.573C1443.28,85.664,1444.432,84.51,1445.852,84.51 M1445.852,82.477 c-2.545,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604S1448.395,82.477,1445.852,82.477 L1445.852,82.477z"
  3096. data-v-0c9672f3=""></path>
  3097. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3098. x1="1462.215" y1="87.082" x2="1449.463" y2="87.082"></line>
  3099. </g>
  3100. <g v-else-if="ajaxData.nsskg10303 == false" id="_21_">
  3101. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3102. x1="1462.439" y1="77.941" x2="1462.439" y2="95.207"></line>
  3103. <path fill="#1B9D3A"
  3104. d="M1445.852,84.51c1.42,0,2.574,1.155,2.574,2.571s-1.156,2.573-2.574,2.573 c-1.42,0-2.571-1.155-2.571-2.573C1443.28,85.664,1444.432,84.51,1445.852,84.51 M1445.852,82.477 c-2.543,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604s4.605-2.063,4.605-4.604S1448.395,82.477,1445.852,82.477 L1445.852,82.477z"
  3105. data-v-0c9672f3=""></path>
  3106. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3107. x1="1460.281" y1="93.541" x2="1449.463" y2="86.574"></line>
  3108. </g>
  3109. </g>
  3110. <g id="nsskg10301">
  3111. <g v-if="ajaxData.nsskg10301" id="_20_">
  3112. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3113. x1="1462.439" y1="156.148" x2="1462.439" y2="173.414"></line>
  3114. <path fill="#A61F24"
  3115. d="M1445.852,162.719c1.42,0,2.572,1.154,2.572,2.569c0,1.421-1.156,2.573-2.572,2.573 c-1.418,0-2.571-1.157-2.571-2.573C1443.277,163.869,1444.432,162.719,1445.852,162.719 M1445.852,160.686 c-2.545,0-4.604,2.06-4.604,4.603s2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604 C1450.455,162.742,1448.395,160.686,1445.852,160.686L1445.852,160.686z"
  3116. data-v-0c9672f3=""></path>
  3117. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3118. x1="1462.215" y1="165.289" x2="1449.463" y2="165.289"></line>
  3119. </g>
  3120. <g v-else-if="ajaxData.nsskg10301 == false" id="_20_">
  3121. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3122. x1="1462.439" y1="156.148" x2="1462.439" y2="173.414"></line>
  3123. <path fill="#1B9D3A"
  3124. d="M1445.852,162.719c1.42,0,2.574,1.154,2.574,2.569c0,1.421-1.156,2.573-2.574,2.573 c-1.42,0-2.571-1.157-2.571-2.573C1443.277,163.869,1444.432,162.719,1445.852,162.719 M1445.852,160.686 c-2.543,0-4.604,2.06-4.604,4.603s2.061,4.604,4.604,4.604s4.605-2.063,4.605-4.604 C1450.457,162.742,1448.395,160.686,1445.852,160.686L1445.852,160.686z"
  3125. data-v-0c9672f3=""></path>
  3126. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3127. x1="1460.281" y1="171.748" x2="1449.463" y2="164.781"></line>
  3128. </g>
  3129. </g>
  3130. <g id="nsskg1213">
  3131. <g v-if="ajaxData.nsskg1213" id="_19_">
  3132. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3133. x1="1248.525" y1="90.172" x2="1265.791" y2="90.172"></line>
  3134. <path fill="#A61F24"
  3135. d="M1257.666,104.188c1.418,0,2.574,1.158,2.574,2.574c0,1.416-1.158,2.57-2.574,2.57 c-1.42,0-2.573-1.155-2.573-2.57C1255.09,105.344,1256.244,104.188,1257.666,104.188 M1257.666,102.157 c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604c2.546,0,4.604-2.061,4.604-4.604 C1262.271,104.218,1260.211,102.157,1257.666,102.157L1257.666,102.157z"
  3136. data-v-0c9672f3=""></path>
  3137. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3138. x1="1257.666" y1="90.398" x2="1257.666" y2="103.15"></line>
  3139. </g>
  3140. <g v-else-if="ajaxData.nsskg1213 == false" id="_19_">
  3141. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3142. x1="1248.525" y1="90.172" x2="1265.791" y2="90.172"></line>
  3143. <path fill="#1B9D3A"
  3144. d="M1257.666,104.188c1.418,0,2.574,1.158,2.574,2.574c0,1.416-1.158,2.57-2.574,2.57 c-1.42,0-2.573-1.155-2.573-2.57C1255.09,105.344,1256.244,104.188,1257.666,104.188 M1257.666,102.157 c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604c2.546,0,4.604-2.061,4.604-4.604 C1262.271,104.218,1260.211,102.157,1257.666,102.157L1257.666,102.157z"
  3145. data-v-0c9672f3=""></path>
  3146. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3147. x1="1264.121" y1="92.333" x2="1257.158" y2="103.15"></line>
  3148. </g>
  3149. </g>
  3150. <g id="nsskg1212">
  3151. <g v-if="ajaxData.nsskg1212" id="_18_">
  3152. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3153. x1="1248.525" y1="179.93" x2="1265.791" y2="179.93"></line>
  3154. <path fill="#A61F24"
  3155. d="M1257.666,193.946c1.418,0,2.574,1.156,2.574,2.571c0,1.418-1.158,2.571-2.574,2.571 c-1.42,0-2.573-1.155-2.573-2.571S1256.244,193.946,1257.666,193.946 M1257.666,191.916c-2.545,0-4.604,2.061-4.604,4.604 c0,2.545,2.063,4.604,4.604,4.604c2.546,0,4.604-2.061,4.604-4.604C1262.271,193.973,1260.211,191.916,1257.666,191.916 L1257.666,191.916z"
  3156. data-v-0c9672f3=""></path>
  3157. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3158. x1="1257.666" y1="180.158" x2="1257.666" y2="192.907"></line>
  3159. </g>
  3160. <g v-else-if="ajaxData.nsskg1212 == false" id="_18_">
  3161. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3162. x1="1248.525" y1="179.93" x2="1265.791" y2="179.93"></line>
  3163. <path fill="#1B9D3A"
  3164. d="M1257.666,193.946c1.418,0,2.574,1.156,2.574,2.571c0,1.422-1.158,2.571-2.574,2.571 c-1.42,0-2.573-1.155-2.573-2.571C1255.09,195.099,1256.244,193.946,1257.666,193.946 M1257.666,191.916 c-2.545,0-4.604,2.061-4.604,4.604s2.063,4.604,4.604,4.604c2.546,0,4.604-2.061,4.604-4.604S1260.211,191.916,1257.666,191.916 L1257.666,191.916z"
  3165. data-v-0c9672f3=""></path>
  3166. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3167. x1="1264.121" y1="182.094" x2="1257.158" y2="192.907"></line>
  3168. </g>
  3169. </g>
  3170. <g id="nsskg12103">
  3171. <g v-if="ajaxData.nsskg12103" id="_16_">
  3172. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3173. x1="1236.28" y1="113.029" x2="1236.28" y2="130.295"></line>
  3174. <path fill="#A61F24"
  3175. d="M1219.691,119.596c1.421,0,2.574,1.155,2.574,2.571s-1.156,2.573-2.574,2.573s-2.571-1.155-2.571-2.573 C1217.119,120.752,1218.273,119.596,1219.691,119.596 M1219.691,117.564c-2.545,0-4.604,2.061-4.604,4.604 s2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604S1222.237,117.564,1219.691,117.564L1219.691,117.564z"
  3176. data-v-0c9672f3=""></path>
  3177. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3178. x1="1236.057" y1="122.17" x2="1223.307" y2="122.17"></line>
  3179. </g>
  3180. <g v-else-if="ajaxData.nsskg12103 == false" id="_16_">
  3181. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3182. x1="1236.28" y1="113.029" x2="1236.28" y2="130.295"></line>
  3183. <path fill="#1B9D3A"
  3184. d="M1219.691,119.596c1.421,0,2.576,1.155,2.576,2.571s-1.155,2.573-2.576,2.573 c-1.418,0-2.571-1.155-2.571-2.573C1217.119,120.752,1218.273,119.596,1219.691,119.596 M1219.691,117.564 c-2.543,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604c2.546,0,4.607-2.063,4.607-4.604S1222.237,117.564,1219.691,117.564 L1219.691,117.564z"
  3185. data-v-0c9672f3=""></path>
  3186. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3187. x1="1234.121" y1="128.629" x2="1223.307" y2="121.662"></line>
  3188. </g>
  3189. </g>
  3190. <g id="nsskg12101">
  3191. <g v-if="ajaxData.nsskg12101" id="_15_">
  3192. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3193. x1="1236.28" y1="157.148" x2="1236.28" y2="174.414"></line>
  3194. <path fill="#A61F24"
  3195. d="M1219.691,163.719c1.421,0,2.574,1.154,2.574,2.569c0,1.421-1.156,2.573-2.574,2.573 s-2.571-1.157-2.571-2.573C1217.119,164.869,1218.273,163.719,1219.691,163.719 M1219.691,161.686 c-2.545,0-4.604,2.06-4.604,4.603s2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604 C1224.297,163.742,1222.237,161.686,1219.691,161.686L1219.691,161.686z"
  3196. data-v-0c9672f3=""></path>
  3197. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3198. x1="1236.057" y1="166.289" x2="1223.307" y2="166.289"></line>
  3199. </g>
  3200. <g v-else-if="ajaxData.nsskg12101 == false" id="_15_">
  3201. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3202. x1="1236.28" y1="157.148" x2="1236.28" y2="174.414"></line>
  3203. <path fill="#1B9D3A"
  3204. d="M1219.691,163.719c1.421,0,2.576,1.154,2.576,2.569c0,1.421-1.155,2.573-2.576,2.573 c-1.418,0-2.571-1.157-2.571-2.573C1217.119,164.869,1218.273,163.719,1219.691,163.719 M1219.691,161.686 c-2.543,0-4.604,2.06-4.604,4.603s2.061,4.604,4.604,4.604c2.546,0,4.607-2.063,4.607-4.604 C1224.299,163.742,1222.237,161.686,1219.691,161.686L1219.691,161.686z"
  3205. data-v-0c9672f3=""></path>
  3206. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3207. x1="1234.121" y1="172.748" x2="1223.307" y2="165.781"></line>
  3208. </g>
  3209. </g>
  3210. <g id="nsskg119">
  3211. <g v-if="ajaxData.nsskg119" id="_25_">
  3212. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3213. x1="99.95" y1="239.059" x2="117.214" y2="239.059"></line>
  3214. <path fill="#A61F24"
  3215. d="M109.089,253.074c1.418,0,2.574,1.156,2.574,2.572c0,1.418-1.157,2.572-2.574,2.572 c-1.42,0-2.573-1.156-2.573-2.572S107.668,253.074,109.089,253.074 M109.089,251.045c-2.545,0-4.604,2.061-4.604,4.604 c0,2.545,2.062,4.604,4.604,4.604c2.545,0,4.604-2.061,4.604-4.604C113.694,253.102,111.634,251.045,109.089,251.045 L109.089,251.045z"
  3216. data-v-0c9672f3=""></path>
  3217. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3218. x1="109.089" y1="239.287" x2="109.089" y2="252.035"></line>
  3219. </g>
  3220. <g v-else-if="ajaxData.nsskg119 == false" id="_25_">
  3221. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3222. x1="99.95" y1="239.059" x2="117.214" y2="239.059"></line>
  3223. <path fill="#1B9D3A"
  3224. d="M109.089,253.074c1.418,0,2.574,1.156,2.574,2.572c0,1.422-1.157,2.572-2.574,2.572 c-1.42,0-2.573-1.156-2.573-2.572C106.513,254.227,107.668,253.074,109.089,253.074 M109.089,251.045 c-2.545,0-4.604,2.061-4.604,4.604s2.062,4.604,4.604,4.604c2.545,0,4.604-2.061,4.604-4.604S111.634,251.045,109.089,251.045 L109.089,251.045z"
  3225. data-v-0c9672f3=""></path>
  3226. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3227. x1="115.545" y1="241.221" x2="108.582" y2="252.035"></line>
  3228. </g>
  3229. </g>
  3230. <g id="nsskg0110">
  3231. <g v-if="ajaxData.nsskg0110" id="_28_">
  3232. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3233. x1="332.724" y1="316.779" x2="349.99" y2="316.779"></line>
  3234. <path fill="#A61F24"
  3235. d="M339.291,333.368c0-1.421,1.156-2.571,2.571-2.571c1.421,0,2.573,1.154,2.573,2.571 s-1.157,2.571-2.573,2.571C340.445,335.941,339.291,334.787,339.291,333.368 M337.261,333.368c0,2.544,2.062,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C339.318,328.764,337.261,330.824,337.261,333.368L337.261,333.368z"
  3236. data-v-0c9672f3=""></path>
  3237. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3238. x1="341.865" y1="317.006" x2="341.865" y2="329.758"></line>
  3239. </g>
  3240. <g v-else-if="ajaxData.nsskg0110 == false" id="_28_">
  3241. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3242. x1="332.724" y1="316.779" x2="349.99" y2="316.779"></line>
  3243. <path fill="#1B9D3A"
  3244. d="M339.291,333.368c0-1.421,1.156-2.576,2.571-2.576c1.421,0,2.573,1.157,2.573,2.576 s-1.157,2.571-2.573,2.571C340.445,335.941,339.291,334.787,339.291,333.368 M337.261,333.368c0,2.543,2.062,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C339.318,328.761,337.261,330.824,337.261,333.368L337.261,333.368z"
  3245. data-v-0c9672f3=""></path>
  3246. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3247. x1="348.323" y1="318.938" x2="341.357" y2="329.758"></line>
  3248. </g>
  3249. </g>
  3250. <g id="nsskg3013">
  3251. <g v-if="ajaxData.nsskg3013" id="_29_">
  3252. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3253. x1="413.815" y1="370.46" x2="431.08" y2="370.46"></line>
  3254. <path fill="#A61F24"
  3255. d="M420.384,387.05c0-1.421,1.155-2.573,2.57-2.573c1.422,0,2.573,1.156,2.573,2.573 s-1.157,2.569-2.573,2.569C421.535,389.621,420.384,388.469,420.384,387.05 M418.353,387.05c0,2.544,2.06,4.603,4.603,4.603 s4.604-2.06,4.604-4.603s-2.063-4.604-4.604-4.604C420.408,382.443,418.353,384.506,418.353,387.05L418.353,387.05z"
  3256. data-v-0c9672f3=""></path>
  3257. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3258. x1="422.955" y1="370.684" x2="422.955" y2="383.436"></line>
  3259. </g>
  3260. <g v-else-if="ajaxData.nsskg3013 == false" id="_29_">
  3261. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3262. x1="413.815" y1="370.46" x2="431.08" y2="370.46"></line>
  3263. <path fill="#1B9D3A"
  3264. d="M420.384,387.05c0-1.421,1.155-2.576,2.57-2.576c1.422,0,2.573,1.157,2.573,2.576 s-1.157,2.569-2.573,2.569C421.535,389.621,420.384,388.469,420.384,387.05 M418.353,387.05c0,2.543,2.06,4.603,4.603,4.603 s4.604-2.06,4.604-4.603c0-2.544-2.063-4.607-4.604-4.607C420.408,382.44,418.353,384.506,418.353,387.05L418.353,387.05z"
  3265. data-v-0c9672f3=""></path>
  3266. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3267. x1="429.414" y1="372.617" x2="422.448" y2="383.436"></line>
  3268. </g>
  3269. </g>
  3270. <g id="nsskg3011">
  3271. <g v-if="ajaxData.nsskg3011" id="_30_">
  3272. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3273. x1="413.815" y1="472.089" x2="431.08" y2="472.089"></line>
  3274. <path fill="#A61F24"
  3275. d="M420.384,488.677c0-1.421,1.155-2.572,2.57-2.572c1.422,0,2.573,1.155,2.573,2.572 s-1.157,2.569-2.573,2.569C421.535,491.249,420.384,490.095,420.384,488.677 M418.353,488.677c0,2.544,2.06,4.604,4.603,4.604 s4.604-2.061,4.604-4.604s-2.063-4.604-4.604-4.604C420.408,484.071,418.353,486.134,418.353,488.677L418.353,488.677z"
  3276. data-v-0c9672f3=""></path>
  3277. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3278. x1="422.955" y1="472.312" x2="422.955" y2="485.063"></line>
  3279. </g>
  3280. <g v-else-if="ajaxData.nsskg3011 == false" id="_30_">
  3281. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3282. x1="413.815" y1="472.089" x2="431.08" y2="472.089"></line>
  3283. <path fill="#1B9D3A"
  3284. d="M420.384,488.677c0-1.421,1.155-2.576,2.57-2.576c1.422,0,2.573,1.157,2.573,2.576 s-1.157,2.569-2.573,2.569C421.535,491.249,420.384,490.095,420.384,488.677 M418.353,488.677c0,2.543,2.06,4.604,4.603,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.063-4.606-4.604-4.606C420.408,484.068,418.353,486.134,418.353,488.677L418.353,488.677z"
  3285. data-v-0c9672f3=""></path>
  3286. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3287. x1="429.414" y1="474.245" x2="422.448" y2="485.063"></line>
  3288. </g>
  3289. </g>
  3290. <g id="nsskg110">
  3291. <g v-if="ajaxData.nsskg110" id="_27_">
  3292. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3293. x1="125.718" y1="238.572" x2="125.718" y2="221.307"></line>
  3294. <path fill="#A61F24"
  3295. d="M142.306,232.004c-1.42,0-2.573-1.154-2.573-2.569c0-1.421,1.156-2.573,2.573-2.573 s2.572,1.157,2.572,2.573C144.879,230.852,143.725,232.004,142.306,232.004 M142.306,234.035c2.544,0,4.604-2.06,4.604-4.603 s-2.061-4.604-4.604-4.604s-4.604,2.063-4.604,4.604C137.702,231.979,139.762,234.035,142.306,234.035L142.306,234.035z"
  3296. data-v-0c9672f3=""></path>
  3297. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3298. x1="125.942" y1="229.432" x2="138.693" y2="229.432"></line>
  3299. </g>
  3300. <g v-else-if="ajaxData.nsskg110 == false" id="_27_">
  3301. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3302. x1="125.718" y1="238.572" x2="125.718" y2="221.307"></line>
  3303. <path fill="#1B9D3A"
  3304. d="M142.306,232.004c-1.42,0-2.576-1.154-2.576-2.569c0-1.421,1.157-2.573,2.576-2.573 s2.572,1.157,2.572,2.573C144.879,230.852,143.725,232.004,142.306,232.004 M142.306,234.035c2.543,0,4.604-2.06,4.604-4.603 s-2.061-4.604-4.604-4.604c-2.544,0-4.606,2.063-4.606,4.604C137.699,231.979,139.762,234.035,142.306,234.035L142.306,234.035z"
  3305. data-v-0c9672f3=""></path>
  3306. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3307. x1="127.876" y1="222.973" x2="138.693" y2="229.939"></line>
  3308. </g>
  3309. </g>
  3310. <g id="nsskg1109">
  3311. <g v-if="ajaxData.nsskg1109" id="_26_">
  3312. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3313. x1="125.718" y1="280.802" x2="125.718" y2="263.534"></line>
  3314. <path fill="#A61F24"
  3315. d="M142.306,274.231c-1.42,0-2.573-1.156-2.573-2.571c0-1.421,1.156-2.573,2.573-2.573 s2.572,1.157,2.572,2.573C144.879,273.079,143.725,274.231,142.306,274.231 M142.306,276.263c2.544,0,4.604-2.062,4.604-4.604 s-2.061-4.604-4.604-4.604s-4.604,2.061-4.604,4.604C137.702,274.206,139.762,276.263,142.306,276.263L142.306,276.263z"
  3316. data-v-0c9672f3=""></path>
  3317. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3318. x1="125.942" y1="271.659" x2="138.693" y2="271.659"></line>
  3319. </g>
  3320. <g v-else-if="ajaxData.nsskg1109 == false" id="_26_">
  3321. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3322. x1="125.718" y1="280.802" x2="125.718" y2="263.534"></line>
  3323. <path fill="#1B9D3A"
  3324. d="M142.306,274.231c-1.42,0-2.576-1.156-2.576-2.571c0-1.421,1.157-2.573,2.576-2.573 s2.572,1.157,2.572,2.573C144.879,273.079,143.725,274.231,142.306,274.231 M142.306,276.263c2.543,0,4.604-2.062,4.604-4.604 s-2.061-4.604-4.604-4.604c-2.544,0-4.606,2.061-4.606,4.604C137.699,274.206,139.762,276.263,142.306,276.263L142.306,276.263z"
  3325. data-v-0c9672f3=""></path>
  3326. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3327. x1="127.876" y1="265.2" x2="138.693" y2="272.167"></line>
  3328. </g>
  3329. </g>
  3330. <g id="nsskg120">
  3331. <g v-if="ajaxData.nsskg120" id="_38_">
  3332. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3333. x1="1800.771" y1="238.572" x2="1800.771" y2="221.307"></line>
  3334. <path fill="#A61F24"
  3335. d="M1817.362,232.004c-1.423,0-2.574-1.154-2.574-2.569c0-1.421,1.156-2.573,2.574-2.573 c1.416,0,2.569,1.157,2.569,2.573C1819.936,230.852,1818.78,232.004,1817.362,232.004 M1817.362,234.035 c2.543,0,4.603-2.06,4.603-4.603s-2.06-4.604-4.603-4.604c-2.544,0-4.604,2.063-4.604,4.604 C1812.756,231.979,1814.816,234.035,1817.362,234.035L1817.362,234.035z"
  3336. data-v-0c9672f3=""></path>
  3337. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3338. x1="1800.996" y1="229.432" x2="1813.748" y2="229.432"></line>
  3339. </g>
  3340. <g v-else-if="ajaxData.nsskg120 == false" id="_38_">
  3341. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3342. x1="1800.771" y1="238.572" x2="1800.771" y2="221.307"></line>
  3343. <path fill="#1B9D3A"
  3344. d="M1817.362,232.004c-1.423,0-2.576-1.154-2.576-2.569c0-1.421,1.155-2.573,2.576-2.573 c1.418,0,2.569,1.157,2.569,2.573C1819.936,230.852,1818.78,232.004,1817.362,232.004 M1817.362,234.035 c2.543,0,4.603-2.06,4.603-4.603s-2.06-4.604-4.603-4.604c-2.546,0-4.606,2.063-4.606,4.604 C1812.754,231.979,1814.816,234.035,1817.362,234.035L1817.362,234.035z"
  3345. data-v-0c9672f3=""></path>
  3346. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3347. x1="1802.932" y1="222.973" x2="1813.748" y2="229.939"></line>
  3348. </g>
  3349. </g>
  3350. <g id="nsskg1209">
  3351. <g v-if="ajaxData.nsskg1209" id="_37_">
  3352. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3353. x1="1800.771" y1="280.802" x2="1800.771" y2="263.534"></line>
  3354. <path fill="#A61F24"
  3355. d="M1817.362,274.231c-1.423,0-2.574-1.156-2.574-2.571c0-1.421,1.156-2.573,2.574-2.573 c1.416,0,2.569,1.157,2.569,2.573C1819.936,273.079,1818.78,274.231,1817.362,274.231 M1817.362,276.263 c2.543,0,4.603-2.062,4.603-4.604s-2.06-4.604-4.603-4.604c-2.544,0-4.604,2.061-4.604,4.604 C1812.756,274.206,1814.816,276.263,1817.362,276.263L1817.362,276.263z"
  3356. data-v-0c9672f3=""></path>
  3357. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3358. x1="1800.996" y1="271.659" x2="1813.748" y2="271.659"></line>
  3359. </g>
  3360. <g v-else-if="ajaxData.nsskg1209 == false" id="_37_">
  3361. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3362. x1="1800.771" y1="280.802" x2="1800.771" y2="263.534"></line>
  3363. <path fill="#1B9D3A"
  3364. d="M1817.362,274.231c-1.423,0-2.576-1.156-2.576-2.571c0-1.421,1.155-2.573,2.576-2.573 c1.418,0,2.569,1.157,2.569,2.573C1819.936,273.079,1818.78,274.231,1817.362,274.231 M1817.362,276.263 c2.543,0,4.603-2.062,4.603-4.604s-2.06-4.604-4.603-4.604c-2.546,0-4.606,2.061-4.606,4.604 C1812.754,274.206,1814.816,276.263,1817.362,276.263L1817.362,276.263z"
  3365. data-v-0c9672f3=""></path>
  3366. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3367. x1="1802.932" y1="265.2" x2="1813.748" y2="272.167"></line>
  3368. </g>
  3369. </g>
  3370. <g id="nsskg0120">
  3371. <g v-if="ajaxData.nsskg0120" id="_33_">
  3372. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3373. x1="887.841" y1="316.779" x2="905.105" y2="316.779"></line>
  3374. <path fill="#A61F24"
  3375. d="M894.408,333.368c0-1.421,1.155-2.571,2.571-2.571c1.421,0,2.571,1.154,2.571,2.571 s-1.155,2.571-2.571,2.571C895.563,335.941,894.408,334.787,894.408,333.368 M892.378,333.368c0,2.544,2.062,4.604,4.604,4.604 c2.541,0,4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C894.436,328.764,892.378,330.824,892.378,333.368L892.378,333.368z"
  3376. data-v-0c9672f3=""></path>
  3377. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3378. x1="896.98" y1="317.006" x2="896.98" y2="329.758"></line>
  3379. </g>
  3380. <g v-else-if="ajaxData.nsskg0120 == false" id="_33_">
  3381. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3382. x1="887.841" y1="316.779" x2="905.105" y2="316.779"></line>
  3383. <path fill="#1B9D3A"
  3384. d="M894.408,333.368c0-1.421,1.155-2.576,2.571-2.576c1.421,0,2.571,1.157,2.571,2.576 s-1.155,2.571-2.571,2.571C895.563,335.941,894.408,334.787,894.408,333.368 M892.378,333.368c0,2.543,2.062,4.604,4.604,4.604 c2.541,0,4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C894.436,328.761,892.378,330.824,892.378,333.368 L892.378,333.368z"
  3385. data-v-0c9672f3=""></path>
  3386. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3387. x1="903.439" y1="318.938" x2="896.474" y2="329.758"></line>
  3388. </g>
  3389. </g>
  3390. <g id="nsskg3023">
  3391. <g v-if="ajaxData.nsskg3023" id="_32_">
  3392. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3393. x1="968.932" y1="370.46" x2="986.198" y2="370.46"></line>
  3394. <path fill="#A61F24"
  3395. d="M975.5,387.05c0-1.421,1.155-2.573,2.571-2.573c1.42,0,2.572,1.156,2.572,2.573s-1.156,2.569-2.572,2.569 C976.653,389.621,975.5,388.469,975.5,387.05 M973.469,387.05c0,2.544,2.062,4.603,4.604,4.603s4.604-2.06,4.604-4.603 s-2.062-4.604-4.604-4.604C975.526,382.443,973.469,384.506,973.469,387.05L973.469,387.05z"
  3396. data-v-0c9672f3=""></path>
  3397. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3398. x1="978.073" y1="370.684" x2="978.073" y2="383.436"></line>
  3399. </g>
  3400. <g v-else-if="ajaxData.nsskg3023 == false" id="_32_">
  3401. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3402. x1="968.932" y1="370.46" x2="986.198" y2="370.46"></line>
  3403. <path fill="#1B9D3A"
  3404. d="M975.5,387.05c0-1.421,1.155-2.576,2.571-2.576c1.42,0,2.572,1.157,2.572,2.576s-1.156,2.569-2.572,2.569 C976.653,389.621,975.5,388.469,975.5,387.05 M973.469,387.05c0,2.543,2.062,4.603,4.604,4.603s4.604-2.06,4.604-4.603 c0-2.544-2.062-4.607-4.604-4.607C975.526,382.44,973.469,384.506,973.469,387.05L973.469,387.05z"
  3405. data-v-0c9672f3=""></path>
  3406. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3407. x1="984.531" y1="372.617" x2="977.564" y2="383.436"></line>
  3408. </g>
  3409. </g>
  3410. <g id="nsskg3021">
  3411. <g v-if="ajaxData.nsskg3021" id="_31_">
  3412. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3413. x1="968.932" y1="472.089" x2="986.198" y2="472.089"></line>
  3414. <path fill="#A61F24"
  3415. d="M975.5,488.677c0-1.421,1.155-2.572,2.571-2.572c1.42,0,2.572,1.155,2.572,2.572 s-1.156,2.569-2.572,2.569C976.653,491.249,975.5,490.095,975.5,488.677 M973.469,488.677c0,2.544,2.062,4.604,4.604,4.604 s4.604-2.061,4.604-4.604s-2.062-4.604-4.604-4.604C975.526,484.071,973.469,486.134,973.469,488.677L973.469,488.677z"
  3416. data-v-0c9672f3=""></path>
  3417. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3418. x1="978.073" y1="472.312" x2="978.073" y2="485.063"></line>
  3419. </g>
  3420. <g v-else-if="ajaxData.nsskg3021 == false" id="_31_">
  3421. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3422. x1="968.932" y1="472.089" x2="986.198" y2="472.089"></line>
  3423. <path fill="#1B9D3A"
  3424. d="M975.5,488.677c0-1.421,1.155-2.576,2.571-2.576c1.42,0,2.572,1.157,2.572,2.576 s-1.156,2.569-2.572,2.569C976.653,491.249,975.5,490.095,975.5,488.677 M973.469,488.677c0,2.543,2.062,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.062-4.606-4.604-4.606C975.526,484.068,973.469,486.134,973.469,488.677L973.469,488.677z"
  3425. data-v-0c9672f3=""></path>
  3426. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3427. x1="984.531" y1="474.245" x2="977.564" y2="485.063"></line>
  3428. </g>
  3429. </g>
  3430. <g id="nsskg0130">
  3431. <g v-if="ajaxData.nsskg0130" id="_36_">
  3432. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3433. x1="1468.457" y1="316.779" x2="1485.723" y2="316.779"></line>
  3434. <path fill="#A61F24"
  3435. d="M1475.025,333.368c0-1.421,1.156-2.571,2.572-2.571c1.42,0,2.569,1.154,2.569,2.571 s-1.153,2.571-2.569,2.571C1476.178,335.941,1475.025,334.787,1475.025,333.368 M1472.994,333.368 c0,2.544,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604s-2.061-4.604-4.604-4.604 C1475.051,328.764,1472.994,330.824,1472.994,333.368L1472.994,333.368z"
  3436. data-v-0c9672f3=""></path>
  3437. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3438. x1="1477.598" y1="317.006" x2="1477.598" y2="329.758"></line>
  3439. </g>
  3440. <g v-else-if="ajaxData.nsskg0130 == false" id="_36_">
  3441. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3442. x1="1468.457" y1="316.779" x2="1485.723" y2="316.779"></line>
  3443. <path fill="#1B9D3A"
  3444. d="M1475.025,333.368c0-1.421,1.156-2.576,2.572-2.576c1.42,0,2.569,1.157,2.569,2.576 s-1.153,2.571-2.569,2.571C1476.178,335.941,1475.025,334.787,1475.025,333.368 M1472.994,333.368 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.544-2.061-4.605-4.604-4.605 C1475.051,328.761,1472.994,330.824,1472.994,333.368L1472.994,333.368z"
  3445. data-v-0c9672f3=""></path>
  3446. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3447. x1="1484.057" y1="318.938" x2="1477.09" y2="329.758"></line>
  3448. </g>
  3449. </g>
  3450. <g id="nsskg3033">
  3451. <g v-if="ajaxData.nsskg3033" id="_35_">
  3452. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3453. x1="1549.549" y1="370.46" x2="1566.814" y2="370.46"></line>
  3454. <path fill="#A61F24"
  3455. d="M1556.117,387.05c0-1.421,1.155-2.573,2.569-2.573c1.422,0,2.572,1.156,2.572,2.573 s-1.156,2.569-2.572,2.569C1557.27,389.621,1556.117,388.469,1556.117,387.05 M1554.086,387.05c0,2.544,2.061,4.603,4.604,4.603 s4.604-2.06,4.604-4.603s-2.063-4.604-4.604-4.604C1556.143,382.443,1554.086,384.506,1554.086,387.05L1554.086,387.05z"
  3456. data-v-0c9672f3=""></path>
  3457. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3458. x1="1558.689" y1="370.684" x2="1558.689" y2="383.436"></line>
  3459. </g>
  3460. <g v-else-if="ajaxData.nsskg3033 == false" id="_35_">
  3461. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3462. x1="1549.549" y1="370.46" x2="1566.814" y2="370.46"></line>
  3463. <path fill="#1B9D3A"
  3464. d="M1556.117,387.05c0-1.421,1.155-2.576,2.569-2.576c1.422,0,2.572,1.157,2.572,2.576 s-1.156,2.569-2.572,2.569C1557.27,389.621,1556.117,388.469,1556.117,387.05 M1554.086,387.05c0,2.543,2.061,4.603,4.604,4.603 s4.604-2.06,4.604-4.603c0-2.544-2.063-4.607-4.604-4.607C1556.143,382.44,1554.086,384.506,1554.086,387.05L1554.086,387.05z"
  3465. data-v-0c9672f3=""></path>
  3466. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3467. x1="1565.148" y1="372.617" x2="1558.182" y2="383.436"></line>
  3468. </g>
  3469. </g>
  3470. <g id="nsskg3031">
  3471. <g v-if="ajaxData.nsskg3031" id="_34_">
  3472. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3473. x1="1549.549" y1="472.089" x2="1566.814" y2="472.089"></line>
  3474. <path fill="#A61F24"
  3475. d="M1556.117,488.677c0-1.421,1.155-2.572,2.569-2.572c1.422,0,2.572,1.155,2.572,2.572 s-1.156,2.569-2.572,2.569C1557.27,491.249,1556.117,490.095,1556.117,488.677 M1554.086,488.677 c0,2.544,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604s-2.063-4.604-4.604-4.604 C1556.143,484.071,1554.086,486.134,1554.086,488.677L1554.086,488.677z"
  3476. data-v-0c9672f3=""></path>
  3477. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3478. x1="1558.689" y1="472.312" x2="1558.689" y2="485.063"></line>
  3479. </g>
  3480. <g v-else-if="ajaxData.nsskg3031 == false" id="_34_">
  3481. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3482. x1="1549.549" y1="472.089" x2="1566.814" y2="472.089"></line>
  3483. <path fill="#1B9D3A"
  3484. d="M1556.117,488.677c0-1.421,1.155-2.576,2.569-2.576c1.422,0,2.572,1.157,2.572,2.576 s-1.156,2.569-2.572,2.569C1557.27,491.249,1556.117,490.095,1556.117,488.677 M1554.086,488.677 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.544-2.063-4.606-4.604-4.606 C1556.143,484.068,1554.086,486.134,1554.086,488.677L1554.086,488.677z"
  3485. data-v-0c9672f3=""></path>
  3486. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3487. x1="1565.148" y1="474.245" x2="1558.182" y2="485.063"></line>
  3488. </g>
  3489. </g>
  3490. <g id="nsskg310">
  3491. <g v-if="ajaxData.nsskg310" id="_41_">
  3492. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3493. x1="53.195" y1="586.746" x2="70.461" y2="586.746"></line>
  3494. <path fill="#A61F24"
  3495. d="M59.764,603.337c0-1.423,1.156-2.573,2.571-2.573c1.421,0,2.573,1.156,2.573,2.573 s-1.157,2.569-2.573,2.569C60.916,605.908,59.764,604.756,59.764,603.337 M57.732,603.337c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.545-2.061-4.604-4.604-4.604C59.789,598.729,57.732,600.792,57.732,603.337L57.732,603.337z"
  3496. data-v-0c9672f3=""></path>
  3497. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3498. x1="62.336" y1="586.971" x2="62.336" y2="599.723"></line>
  3499. </g>
  3500. <g v-else-if="ajaxData.nsskg310 == false" id="_41_">
  3501. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3502. x1="53.195" y1="586.746" x2="70.461" y2="586.746"></line>
  3503. <path fill="#1B9D3A"
  3504. d="M59.764,603.337c0-1.423,1.156-2.576,2.571-2.576c1.421,0,2.573,1.156,2.573,2.576 c0,1.419-1.157,2.569-2.573,2.569C60.916,605.908,59.764,604.756,59.764,603.337 M57.732,603.337 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.545-2.061-4.607-4.604-4.607 C59.789,598.728,57.732,600.792,57.732,603.337L57.732,603.337z"
  3505. data-v-0c9672f3=""></path>
  3506. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3507. x1="68.795" y1="588.904" x2="61.828" y2="599.723"></line>
  3508. </g>
  3509. </g>
  3510. <g id="nsskg319">
  3511. <g v-if="ajaxData.nsskg319" id="_40_">
  3512. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3513. x1="33.23" y1="648.924" x2="50.496" y2="648.924"></line>
  3514. <path fill="#A61F24"
  3515. d="M39.799,665.511c0-1.421,1.156-2.572,2.571-2.572c1.421,0,2.572,1.155,2.572,2.572 s-1.156,2.569-2.572,2.569C40.951,668.086,39.799,666.93,39.799,665.511 M37.768,665.511c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604s-2.061-4.604-4.604-4.604C39.824,660.906,37.768,662.969,37.768,665.511L37.768,665.511z"
  3516. data-v-0c9672f3=""></path>
  3517. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3518. x1="42.371" y1="649.146" x2="42.371" y2="661.898"></line>
  3519. </g>
  3520. <g v-else-if="ajaxData.nsskg319 == false" id="_40_">
  3521. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3522. x1="33.23" y1="648.924" x2="50.496" y2="648.924"></line>
  3523. <path fill="#1B9D3A"
  3524. d="M39.799,665.511c0-1.421,1.156-2.576,2.571-2.576c1.421,0,2.572,1.157,2.572,2.576 s-1.156,2.569-2.572,2.569C40.951,668.086,39.799,666.93,39.799,665.511 M37.768,665.511c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.606-4.604-4.606C39.824,660.903,37.768,662.969,37.768,665.511L37.768,665.511z"
  3525. data-v-0c9672f3=""></path>
  3526. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3527. x1="48.83" y1="651.08" x2="41.863" y2="661.898"></line>
  3528. </g>
  3529. </g>
  3530. <g id="nsskg3121">
  3531. <g v-if="ajaxData.nsskg3121" id="_42_">
  3532. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3533. x1="115.824" y1="533.572" x2="133.09" y2="533.572"></line>
  3534. <path fill="#A61F24"
  3535. d="M122.393,550.161c0-1.421,1.156-2.571,2.571-2.571c1.421,0,2.573,1.154,2.573,2.571 s-1.157,2.571-2.573,2.571C123.545,552.734,122.393,551.58,122.393,550.161 M120.361,550.161c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.061-4.604-4.604-4.604C122.418,545.557,120.361,547.617,120.361,550.161L120.361,550.161z"
  3536. data-v-0c9672f3=""></path>
  3537. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3538. x1="124.965" y1="533.799" x2="124.965" y2="546.551"></line>
  3539. </g>
  3540. <g v-else-if="ajaxData.nsskg3121 == false" id="_42_">
  3541. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3542. x1="115.824" y1="533.572" x2="133.09" y2="533.572"></line>
  3543. <path fill="#1B9D3A"
  3544. d="M122.393,550.161c0-1.421,1.156-2.574,2.571-2.574c1.421,0,2.573,1.155,2.573,2.574 s-1.157,2.571-2.573,2.571C123.545,552.734,122.393,551.58,122.393,550.161 M120.361,550.161c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.061-4.605-4.604-4.605C122.418,545.554,120.361,547.617,120.361,550.161L120.361,550.161z"
  3545. data-v-0c9672f3=""></path>
  3546. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3547. x1="131.424" y1="535.729" x2="124.457" y2="546.551"></line>
  3548. </g>
  3549. </g>
  3550. <g id="nsskg3123">
  3551. <g v-if="ajaxData.nsskg3123" id="_43_">
  3552. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3553. x1="115.824" y1="647.271" x2="133.09" y2="647.271"></line>
  3554. <path fill="#A61F24"
  3555. d="M122.393,663.859c0-1.421,1.156-2.573,2.571-2.573c1.421,0,2.573,1.156,2.573,2.573 s-1.157,2.57-2.573,2.57C123.545,666.433,122.393,665.278,122.393,663.859 M120.361,663.859c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.061-4.604-4.604-4.604C122.418,659.257,120.361,661.315,120.361,663.859L120.361,663.859z"
  3556. data-v-0c9672f3=""></path>
  3557. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3558. x1="124.965" y1="647.495" x2="124.965" y2="660.247"></line>
  3559. </g>
  3560. <g v-else-if="ajaxData.nsskg3123 == false" id="_43_">
  3561. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3562. x1="115.824" y1="647.271" x2="133.09" y2="647.271"></line>
  3563. <path fill="#1B9D3A"
  3564. d="M122.393,663.859c0-1.421,1.156-2.576,2.571-2.576c1.421,0,2.573,1.157,2.573,2.576 s-1.157,2.57-2.573,2.57C123.545,666.433,122.393,665.278,122.393,663.859 M120.361,663.859c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.061-4.605-4.604-4.605C122.418,659.254,120.361,661.315,120.361,663.859L120.361,663.859z"
  3565. data-v-0c9672f3=""></path>
  3566. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3567. x1="131.424" y1="649.429" x2="124.457" y2="660.247"></line>
  3568. </g>
  3569. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  3570. d="M125.602,668.486"></path>
  3571. </g>
  3572. <g id="nsskg3120">
  3573. <g v-if="ajaxData.nsskg3120" id="_44_">
  3574. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3575. x1="136.807" y1="708.622" x2="154.072" y2="708.622"></line>
  3576. <path fill="#A61F24"
  3577. d="M143.375,725.213c0-1.423,1.155-2.573,2.57-2.573c1.422,0,2.573,1.156,2.573,2.573 s-1.157,2.569-2.573,2.569C144.527,727.784,143.375,726.632,143.375,725.213 M141.344,725.213c0,2.544,2.06,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C143.4,720.606,141.344,722.667,141.344,725.213L141.344,725.213z"
  3578. data-v-0c9672f3=""></path>
  3579. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3580. x1="145.947" y1="708.847" x2="145.947" y2="721.599"></line>
  3581. </g>
  3582. <g v-else-if="ajaxData.nsskg3120 == false" id="_44_">
  3583. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3584. x1="136.807" y1="708.622" x2="154.072" y2="708.622"></line>
  3585. <path fill="#1B9D3A"
  3586. d="M143.375,725.213c0-1.423,1.155-2.576,2.57-2.576c1.422,0,2.573,1.155,2.573,2.576 c0,1.419-1.157,2.569-2.573,2.569C144.527,727.784,143.375,726.632,143.375,725.213 M141.344,725.213 c0,2.543,2.06,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C143.4,720.604,141.344,722.667,141.344,725.213L141.344,725.213z"
  3587. data-v-0c9672f3=""></path>
  3588. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3589. x1="152.406" y1="710.78" x2="145.439" y2="721.599"></line>
  3590. </g>
  3591. </g>
  3592. <g id="nsskg3131">
  3593. <g v-if="ajaxData.nsskg3131" id="_47_">
  3594. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3595. x1="198.324" y1="533.572" x2="215.59" y2="533.572"></line>
  3596. <path fill="#A61F24"
  3597. d="M204.893,550.161c0-1.421,1.156-2.571,2.571-2.571c1.421,0,2.573,1.154,2.573,2.571 s-1.157,2.571-2.573,2.571C206.045,552.734,204.893,551.58,204.893,550.161 M202.861,550.161c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.061-4.604-4.604-4.604C204.918,545.557,202.861,547.617,202.861,550.161L202.861,550.161z"
  3598. data-v-0c9672f3=""></path>
  3599. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3600. x1="207.465" y1="533.799" x2="207.465" y2="546.551"></line>
  3601. </g>
  3602. <g v-else-if="ajaxData.nsskg3131 == false" id="_47_">
  3603. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3604. x1="198.324" y1="533.572" x2="215.59" y2="533.572"></line>
  3605. <path fill="#1B9D3A"
  3606. d="M204.893,550.161c0-1.421,1.156-2.574,2.571-2.574c1.421,0,2.573,1.155,2.573,2.574 s-1.157,2.571-2.573,2.571C206.045,552.734,204.893,551.58,204.893,550.161 M202.861,550.161c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.061-4.605-4.604-4.605C204.918,545.554,202.861,547.617,202.861,550.161L202.861,550.161z"
  3607. data-v-0c9672f3=""></path>
  3608. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3609. x1="213.924" y1="535.729" x2="206.957" y2="546.551"></line>
  3610. </g>
  3611. </g>
  3612. <g id="nsskg3133">
  3613. <g v-if="ajaxData.nsskg3133" id="_46_">
  3614. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3615. x1="198.324" y1="647.271" x2="215.59" y2="647.271"></line>
  3616. <path fill="#A61F24"
  3617. d="M204.893,663.859c0-1.421,1.156-2.573,2.571-2.573c1.421,0,2.573,1.156,2.573,2.573 s-1.157,2.57-2.573,2.57C206.045,666.433,204.893,665.278,204.893,663.859 M202.861,663.859c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.061-4.604-4.604-4.604C204.918,659.257,202.861,661.315,202.861,663.859L202.861,663.859z"
  3618. data-v-0c9672f3=""></path>
  3619. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3620. x1="207.465" y1="647.495" x2="207.465" y2="660.247"></line>
  3621. </g>
  3622. <g v-else-if="ajaxData.nsskg3133 == false" id="_46_">
  3623. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3624. x1="198.324" y1="647.271" x2="215.59" y2="647.271"></line>
  3625. <path fill="#1B9D3A"
  3626. d="M204.893,663.859c0-1.421,1.156-2.576,2.571-2.576c1.421,0,2.573,1.157,2.573,2.576 s-1.157,2.57-2.573,2.57C206.045,666.433,204.893,665.278,204.893,663.859 M202.861,663.859c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.061-4.605-4.604-4.605C204.918,659.254,202.861,661.315,202.861,663.859L202.861,663.859z"
  3627. data-v-0c9672f3=""></path>
  3628. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3629. x1="213.924" y1="649.429" x2="206.957" y2="660.247"></line>
  3630. </g>
  3631. </g>
  3632. <g id="nsskg3130">
  3633. <g v-if="ajaxData.nsskg3130" id="_45_">
  3634. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3635. x1="219.307" y1="708.622" x2="236.572" y2="708.622"></line>
  3636. <path fill="#A61F24"
  3637. d="M225.875,725.213c0-1.423,1.155-2.573,2.57-2.573c1.422,0,2.573,1.156,2.573,2.573 s-1.157,2.569-2.573,2.569C227.027,727.784,225.875,726.632,225.875,725.213 M223.844,725.213c0,2.544,2.062,4.604,4.604,4.604 c2.543,0,4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C225.9,720.606,223.844,722.667,223.844,725.213 L223.844,725.213z"
  3638. data-v-0c9672f3=""></path>
  3639. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3640. x1="228.447" y1="708.847" x2="228.447" y2="721.599"></line>
  3641. </g>
  3642. <g v-else-if="ajaxData.nsskg3130 == false" id="_45_">
  3643. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3644. x1="219.307" y1="708.622" x2="236.572" y2="708.622"></line>
  3645. <path fill="#1B9D3A"
  3646. d="M225.875,725.213c0-1.423,1.155-2.576,2.57-2.576c1.422,0,2.573,1.155,2.573,2.576 c0,1.419-1.157,2.569-2.573,2.569C227.027,727.784,225.875,726.632,225.875,725.213 M223.844,725.213 c0,2.543,2.062,4.604,4.604,4.604c2.543,0,4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C225.9,720.604,223.844,722.667,223.844,725.213L223.844,725.213z"
  3647. data-v-0c9672f3=""></path>
  3648. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3649. x1="234.906" y1="710.78" x2="227.939" y2="721.599"></line>
  3650. </g>
  3651. </g>
  3652. <g id="nsskg3141">
  3653. <g v-if="ajaxData.nsskg3141" id="_50_">
  3654. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3655. x1="279.318" y1="533.572" x2="296.584" y2="533.572"></line>
  3656. <path fill="#A61F24"
  3657. d="M285.887,550.161c0-1.421,1.156-2.571,2.571-2.571c1.421,0,2.572,1.154,2.572,2.571 s-1.156,2.571-2.572,2.571C287.039,552.734,285.887,551.58,285.887,550.161 M283.855,550.161c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.061-4.604-4.604-4.604C285.912,545.557,283.855,547.617,283.855,550.161L283.855,550.161z"
  3658. data-v-0c9672f3=""></path>
  3659. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3660. x1="288.459" y1="533.799" x2="288.459" y2="546.551"></line>
  3661. </g>
  3662. <g v-else-if="ajaxData.nsskg3141 == false" id="_50_">
  3663. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3664. x1="279.318" y1="533.572" x2="296.584" y2="533.572"></line>
  3665. <path fill="#1B9D3A"
  3666. d="M285.887,550.161c0-1.421,1.156-2.574,2.571-2.574c1.421,0,2.572,1.155,2.572,2.574 s-1.156,2.571-2.572,2.571C287.039,552.734,285.887,551.58,285.887,550.161 M283.855,550.161c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.061-4.605-4.604-4.605C285.912,545.554,283.855,547.617,283.855,550.161L283.855,550.161z"
  3667. data-v-0c9672f3=""></path>
  3668. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3669. x1="294.918" y1="535.729" x2="287.951" y2="546.551"></line>
  3670. </g>
  3671. </g>
  3672. <g id="nsskg3143">
  3673. <g v-if="ajaxData.nsskg3143" id="_49_">
  3674. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3675. x1="279.318" y1="647.271" x2="296.584" y2="647.271"></line>
  3676. <path fill="#A61F24"
  3677. d="M285.887,663.859c0-1.421,1.156-2.573,2.571-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.57-2.572,2.57C287.039,666.433,285.887,665.278,285.887,663.859 M283.855,663.859c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.061-4.604-4.604-4.604C285.912,659.257,283.855,661.315,283.855,663.859L283.855,663.859z"
  3678. data-v-0c9672f3=""></path>
  3679. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3680. x1="288.459" y1="647.495" x2="288.459" y2="660.247"></line>
  3681. </g>
  3682. <g v-else-if="ajaxData.nsskg3143 == false" id="_49_">
  3683. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3684. x1="279.318" y1="647.271" x2="296.584" y2="647.271"></line>
  3685. <path fill="#1B9D3A"
  3686. d="M285.887,663.859c0-1.421,1.156-2.576,2.571-2.576c1.421,0,2.572,1.157,2.572,2.576 s-1.156,2.57-2.572,2.57C287.039,666.433,285.887,665.278,285.887,663.859 M283.855,663.859c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.061-4.605-4.604-4.605C285.912,659.254,283.855,661.315,283.855,663.859L283.855,663.859z"
  3687. data-v-0c9672f3=""></path>
  3688. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3689. x1="294.918" y1="649.429" x2="287.951" y2="660.247"></line>
  3690. </g>
  3691. </g>
  3692. <g id="nsskg3140">
  3693. <g v-if="ajaxData.nsskg3140" id="_48_">
  3694. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3695. x1="300.301" y1="708.622" x2="317.566" y2="708.622"></line>
  3696. <path fill="#A61F24"
  3697. d="M306.868,725.213c0-1.423,1.156-2.573,2.571-2.573c1.421,0,2.573,1.156,2.573,2.573 s-1.157,2.569-2.573,2.569C308.021,727.784,306.868,726.632,306.868,725.213 M304.838,725.213c0,2.544,2.06,4.604,4.603,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.062-4.604-4.604-4.604C306.895,720.606,304.838,722.667,304.838,725.213L304.838,725.213z"
  3698. data-v-0c9672f3=""></path>
  3699. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3700. x1="309.441" y1="708.847" x2="309.441" y2="721.599"></line>
  3701. </g>
  3702. <g v-else-if="ajaxData.nsskg3140 == false" id="_48_">
  3703. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3704. x1="300.301" y1="708.622" x2="317.566" y2="708.622"></line>
  3705. <path fill="#1B9D3A"
  3706. d="M306.868,725.213c0-1.423,1.156-2.576,2.571-2.576c1.421,0,2.573,1.155,2.573,2.576 c0,1.419-1.157,2.569-2.573,2.569C308.021,727.784,306.868,726.632,306.868,725.213 M304.838,725.213 c0,2.543,2.06,4.604,4.603,4.604s4.604-2.061,4.604-4.604c0-2.546-2.062-4.606-4.604-4.606 C306.895,720.604,304.838,722.667,304.838,725.213L304.838,725.213z"
  3707. data-v-0c9672f3=""></path>
  3708. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3709. x1="315.9" y1="710.78" x2="308.934" y2="721.599"></line>
  3710. </g>
  3711. </g>
  3712. <g id="nsskg3151">
  3713. <g v-if="ajaxData.nsskg3151" id="_53_">
  3714. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3715. x1="362.633" y1="533.572" x2="379.898" y2="533.572"></line>
  3716. <path fill="#A61F24"
  3717. d="M369.2,550.161c0-1.421,1.156-2.571,2.571-2.571c1.421,0,2.573,1.154,2.573,2.571 s-1.157,2.571-2.573,2.571C370.354,552.734,369.2,551.58,369.2,550.161 M367.17,550.161c0,2.544,2.06,4.604,4.603,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C369.227,545.557,367.17,547.617,367.17,550.161L367.17,550.161z"
  3718. data-v-0c9672f3=""></path>
  3719. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3720. x1="371.773" y1="533.799" x2="371.773" y2="546.551"></line>
  3721. </g>
  3722. <g v-else-if="ajaxData.nsskg3151 == false" id="_53_">
  3723. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3724. x1="362.633" y1="533.572" x2="379.898" y2="533.572"></line>
  3725. <path fill="#1B9D3A"
  3726. d="M369.2,550.161c0-1.421,1.156-2.574,2.571-2.574c1.421,0,2.573,1.155,2.573,2.574 s-1.157,2.571-2.573,2.571C370.354,552.734,369.2,551.58,369.2,550.161 M367.17,550.161c0,2.543,2.06,4.604,4.603,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C369.227,545.554,367.17,547.617,367.17,550.161L367.17,550.161z"
  3727. data-v-0c9672f3=""></path>
  3728. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3729. x1="378.232" y1="535.729" x2="371.266" y2="546.551"></line>
  3730. </g>
  3731. </g>
  3732. <g id="nsskg3153">
  3733. <g v-if="ajaxData.nsskg3153" id="_52_">
  3734. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3735. x1="362.633" y1="647.271" x2="379.898" y2="647.271"></line>
  3736. <path fill="#A61F24"
  3737. d="M369.2,663.859c0-1.421,1.156-2.573,2.571-2.573c1.421,0,2.573,1.156,2.573,2.573s-1.157,2.57-2.573,2.57 C370.354,666.433,369.2,665.278,369.2,663.859 M367.17,663.859c0,2.544,2.06,4.604,4.603,4.604s4.604-2.062,4.604-4.604 s-2.062-4.604-4.604-4.604C369.227,659.257,367.17,661.315,367.17,663.859L367.17,663.859z"
  3738. data-v-0c9672f3=""></path>
  3739. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3740. x1="371.773" y1="647.495" x2="371.773" y2="660.247"></line>
  3741. </g>
  3742. <g v-else-if="ajaxData.nsskg3153 == false" id="_52_">
  3743. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3744. x1="362.633" y1="647.271" x2="379.898" y2="647.271"></line>
  3745. <path fill="#1B9D3A"
  3746. d="M369.2,663.859c0-1.421,1.156-2.576,2.571-2.576c1.421,0,2.573,1.157,2.573,2.576s-1.157,2.57-2.573,2.57 C370.354,666.433,369.2,665.278,369.2,663.859 M367.17,663.859c0,2.543,2.06,4.604,4.603,4.604s4.604-2.062,4.604-4.604 c0-2.544-2.062-4.605-4.604-4.605C369.227,659.254,367.17,661.315,367.17,663.859L367.17,663.859z"
  3747. data-v-0c9672f3=""></path>
  3748. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3749. x1="378.232" y1="649.429" x2="371.266" y2="660.247"></line>
  3750. </g>
  3751. </g>
  3752. <g id="nsskg3150">
  3753. <g v-if="ajaxData.nsskg3150" id="_51_">
  3754. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3755. x1="383.615" y1="708.622" x2="400.881" y2="708.622"></line>
  3756. <path fill="#A61F24"
  3757. d="M390.184,725.213c0-1.423,1.156-2.573,2.571-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.569-2.572,2.569C391.336,727.784,390.184,726.632,390.184,725.213 M388.152,725.213c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C390.209,720.606,388.152,722.667,388.152,725.213L388.152,725.213z"
  3758. data-v-0c9672f3=""></path>
  3759. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3760. x1="392.756" y1="708.847" x2="392.756" y2="721.599"></line>
  3761. </g>
  3762. <g v-else-if="ajaxData.nsskg3150 == false" id="_51_">
  3763. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3764. x1="383.615" y1="708.622" x2="400.881" y2="708.622"></line>
  3765. <path fill="#1B9D3A"
  3766. d="M390.184,725.213c0-1.423,1.156-2.576,2.571-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.569-2.572,2.569C391.336,727.784,390.184,726.632,390.184,725.213 M388.152,725.213 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C390.209,720.604,388.152,722.667,388.152,725.213L388.152,725.213z"
  3767. data-v-0c9672f3=""></path>
  3768. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3769. x1="399.215" y1="710.78" x2="392.247" y2="721.599"></line>
  3770. </g>
  3771. </g>
  3772. <g id="nsskg3161">
  3773. <g v-if="ajaxData.nsskg3161" id="_56_">
  3774. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3775. x1="444.994" y1="533.572" x2="462.261" y2="533.572"></line>
  3776. <path fill="#A61F24"
  3777. d="M451.563,550.161c0-1.421,1.156-2.571,2.571-2.571c1.421,0,2.572,1.154,2.572,2.571 s-1.156,2.571-2.572,2.571C452.716,552.734,451.563,551.58,451.563,550.161 M449.531,550.161c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604C451.589,545.557,449.531,547.617,449.531,550.161L449.531,550.161z"
  3778. data-v-0c9672f3=""></path>
  3779. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3780. x1="454.136" y1="533.799" x2="454.136" y2="546.551"></line>
  3781. </g>
  3782. <g v-else-if="ajaxData.nsskg3161 == false" id="_56_">
  3783. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3784. x1="444.994" y1="533.572" x2="462.261" y2="533.572"></line>
  3785. <path fill="#1B9D3A"
  3786. d="M451.563,550.161c0-1.421,1.156-2.574,2.571-2.574c1.421,0,2.572,1.155,2.572,2.574 s-1.156,2.571-2.572,2.571C452.716,552.734,451.563,551.58,451.563,550.161 M449.531,550.161c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605C451.589,545.554,449.531,547.617,449.531,550.161L449.531,550.161z"
  3787. data-v-0c9672f3=""></path>
  3788. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3789. x1="460.595" y1="535.729" x2="453.628" y2="546.551"></line>
  3790. </g>
  3791. </g>
  3792. <g id="nsskg3163">
  3793. <g v-if="ajaxData.nsskg3163" id="_55_">
  3794. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3795. x1="444.994" y1="647.271" x2="462.261" y2="647.271"></line>
  3796. <path fill="#A61F24"
  3797. d="M451.563,663.859c0-1.421,1.156-2.573,2.571-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.57-2.572,2.57C452.716,666.433,451.563,665.278,451.563,663.859 M449.531,663.859c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604C451.589,659.257,449.531,661.315,449.531,663.859L449.531,663.859z"
  3798. data-v-0c9672f3=""></path>
  3799. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3800. x1="454.136" y1="647.495" x2="454.136" y2="660.247"></line>
  3801. </g>
  3802. <g v-else-if="ajaxData.nsskg3163 == false" id="_55_">
  3803. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3804. x1="444.994" y1="647.271" x2="462.261" y2="647.271"></line>
  3805. <path fill="#1B9D3A"
  3806. d="M451.563,663.859c0-1.421,1.156-2.576,2.571-2.576c1.421,0,2.572,1.157,2.572,2.576 s-1.156,2.57-2.572,2.57C452.716,666.433,451.563,665.278,451.563,663.859 M449.531,663.859c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605C451.589,659.254,449.531,661.315,449.531,663.859L449.531,663.859z"
  3807. data-v-0c9672f3=""></path>
  3808. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3809. x1="460.595" y1="649.429" x2="453.628" y2="660.247"></line>
  3810. </g>
  3811. </g>
  3812. <g id="nsskg3171">
  3813. <g v-if="ajaxData.nsskg3171" id="_57_">
  3814. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3815. x1="526.068" y1="533.572" x2="543.334" y2="533.572"></line>
  3816. <path fill="#A61F24"
  3817. d="M532.637,550.161c0-1.421,1.156-2.571,2.57-2.571c1.422,0,2.573,1.154,2.573,2.571 s-1.157,2.571-2.573,2.571C533.788,552.734,532.637,551.58,532.637,550.161 M530.605,550.161c0,2.544,2.06,4.604,4.603,4.604 c2.544,0,4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604C532.661,545.557,530.605,547.617,530.605,550.161L530.605,550.161z"
  3818. data-v-0c9672f3=""></path>
  3819. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3820. x1="535.209" y1="533.799" x2="535.209" y2="546.551"></line>
  3821. </g>
  3822. <g v-else-if="ajaxData.nsskg3171 == false" id="_57_">
  3823. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3824. x1="526.068" y1="533.572" x2="543.334" y2="533.572"></line>
  3825. <path fill="#1B9D3A"
  3826. d="M532.637,550.161c0-1.421,1.156-2.574,2.57-2.574c1.422,0,2.573,1.155,2.573,2.574 s-1.157,2.571-2.573,2.571C533.788,552.734,532.637,551.58,532.637,550.161 M530.605,550.161c0,2.543,2.06,4.604,4.603,4.604 c2.544,0,4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605C532.661,545.554,530.605,547.617,530.605,550.161 L530.605,550.161z"
  3827. data-v-0c9672f3=""></path>
  3828. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3829. x1="541.668" y1="535.729" x2="534.7" y2="546.551"></line>
  3830. </g>
  3831. </g>
  3832. <g id="nsskg3160">
  3833. <g v-if="ajaxData.nsskg3160" id="_54_">
  3834. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3835. x1="465.979" y1="708.622" x2="483.242" y2="708.622"></line>
  3836. <path fill="#A61F24"
  3837. d="M472.546,725.213c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.569-2.572,2.569C473.698,727.784,472.546,726.632,472.546,725.213 M470.515,725.213c0,2.544,2.062,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.062-4.604-4.604-4.604C472.571,720.606,470.515,722.667,470.515,725.213L470.515,725.213z"
  3838. data-v-0c9672f3=""></path>
  3839. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3840. x1="475.117" y1="708.847" x2="475.117" y2="721.599"></line>
  3841. </g>
  3842. <g v-else-if="ajaxData.nsskg3160 == false" id="_54_">
  3843. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3844. x1="465.979" y1="708.622" x2="483.242" y2="708.622"></line>
  3845. <path fill="#1B9D3A"
  3846. d="M472.546,725.213c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.569-2.572,2.569C473.698,727.784,472.546,726.632,472.546,725.213 M470.515,725.213 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.062-4.606-4.604-4.606 C472.571,720.604,470.515,722.667,470.515,725.213L470.515,725.213z"
  3847. data-v-0c9672f3=""></path>
  3848. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3849. x1="481.576" y1="710.78" x2="474.61" y2="721.599"></line>
  3850. </g>
  3851. </g>
  3852. <g id="nsskg320">
  3853. <g v-if="ajaxData.nsskg320" id="_75_">
  3854. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3855. x1="700.793" y1="586.746" x2="718.059" y2="586.746"></line>
  3856. <path fill="#A61F24"
  3857. d="M707.362,603.337c0-1.423,1.155-2.573,2.569-2.573c1.422,0,2.573,1.156,2.573,2.573 s-1.157,2.569-2.573,2.569C708.514,605.908,707.362,604.756,707.362,603.337 M705.33,603.337c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.545-2.062-4.604-4.604-4.604C707.387,598.729,705.33,600.792,705.33,603.337L705.33,603.337z"
  3858. data-v-0c9672f3=""></path>
  3859. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3860. x1="709.934" y1="586.971" x2="709.934" y2="599.723"></line>
  3861. </g>
  3862. <g v-else-if="ajaxData.nsskg320 == false" id="_75_">
  3863. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3864. x1="700.793" y1="586.746" x2="718.059" y2="586.746"></line>
  3865. <path fill="#1B9D3A"
  3866. d="M707.362,603.337c0-1.423,1.155-2.576,2.569-2.576c1.422,0,2.573,1.156,2.573,2.576 c0,1.419-1.157,2.569-2.573,2.569C708.514,605.908,707.362,604.756,707.362,603.337 M705.33,603.337 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.545-2.062-4.607-4.604-4.607 C707.387,598.728,705.33,600.792,705.33,603.337L705.33,603.337z"
  3867. data-v-0c9672f3=""></path>
  3868. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3869. x1="716.393" y1="588.904" x2="709.426" y2="599.723"></line>
  3870. </g>
  3871. </g>
  3872. <g id="nsskg329">
  3873. <g v-if="ajaxData.nsskg329" id="_74_">
  3874. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3875. x1="680.828" y1="648.924" x2="698.094" y2="648.924"></line>
  3876. <path fill="#A61F24"
  3877. d="M687.396,665.511c0-1.421,1.155-2.572,2.57-2.572c1.421,0,2.572,1.155,2.572,2.572 s-1.156,2.569-2.572,2.569C688.549,668.086,687.396,666.93,687.396,665.511 M685.365,665.511c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604s-2.063-4.604-4.604-4.604C687.422,660.906,685.365,662.969,685.365,665.511L685.365,665.511z"
  3878. data-v-0c9672f3=""></path>
  3879. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3880. x1="689.969" y1="649.146" x2="689.969" y2="661.898"></line>
  3881. </g>
  3882. <g v-else-if="ajaxData.nsskg329 == false" id="_74_">
  3883. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3884. x1="680.828" y1="648.924" x2="698.094" y2="648.924"></line>
  3885. <path fill="#1B9D3A"
  3886. d="M687.396,665.511c0-1.421,1.155-2.576,2.57-2.576c1.421,0,2.572,1.157,2.572,2.576 s-1.156,2.569-2.572,2.569C688.549,668.086,687.396,666.93,687.396,665.511 M685.365,665.511c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.063-4.606-4.604-4.606C687.422,660.903,685.365,662.969,685.365,665.511L685.365,665.511z"
  3887. data-v-0c9672f3=""></path>
  3888. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3889. x1="696.428" y1="651.08" x2="689.461" y2="661.898"></line>
  3890. </g>
  3891. </g>
  3892. <g id="nsskg3212">
  3893. <g v-if="ajaxData.nsskg3212" id="_73_">
  3894. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3895. x1="763.422" y1="533.572" x2="780.688" y2="533.572"></line>
  3896. <path fill="#A61F24"
  3897. d="M769.99,550.161c0-1.421,1.155-2.571,2.571-2.571c1.421,0,2.571,1.154,2.571,2.571 s-1.155,2.571-2.571,2.571C771.143,552.734,769.99,551.58,769.99,550.161 M767.959,550.161c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C770.016,545.557,767.959,547.617,767.959,550.161L767.959,550.161z"
  3898. data-v-0c9672f3=""></path>
  3899. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3900. x1="772.563" y1="533.799" x2="772.563" y2="546.551"></line>
  3901. </g>
  3902. <g v-else-if="ajaxData.nsskg3212 == false" id="_73_">
  3903. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3904. x1="763.422" y1="533.572" x2="780.688" y2="533.572"></line>
  3905. <path fill="#1B9D3A"
  3906. d="M769.99,550.161c0-1.421,1.155-2.574,2.571-2.574c1.421,0,2.571,1.155,2.571,2.574 s-1.155,2.571-2.571,2.571C771.143,552.734,769.99,551.58,769.99,550.161 M767.959,550.161c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C770.016,545.554,767.959,547.617,767.959,550.161L767.959,550.161z"
  3907. data-v-0c9672f3=""></path>
  3908. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3909. x1="779.021" y1="535.729" x2="772.055" y2="546.551"></line>
  3910. </g>
  3911. </g>
  3912. <g id="nsskg3213">
  3913. <g v-if="ajaxData.nsskg3213" id="_72_">
  3914. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3915. x1="763.422" y1="647.271" x2="780.688" y2="647.271"></line>
  3916. <path fill="#A61F24"
  3917. d="M769.99,663.859c0-1.421,1.155-2.573,2.571-2.573c1.421,0,2.571,1.156,2.571,2.573 s-1.155,2.57-2.571,2.57C771.143,666.433,769.99,665.278,769.99,663.859 M767.959,663.859c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C770.016,659.257,767.959,661.315,767.959,663.859L767.959,663.859z"
  3918. data-v-0c9672f3=""></path>
  3919. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3920. x1="772.563" y1="647.495" x2="772.563" y2="660.247"></line>
  3921. </g>
  3922. <g v-else-if="ajaxData.nsskg3213 == false" id="_72_">
  3923. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3924. x1="763.422" y1="647.271" x2="780.688" y2="647.271"></line>
  3925. <path fill="#1B9D3A"
  3926. d="M769.99,663.859c0-1.421,1.155-2.576,2.571-2.576c1.421,0,2.571,1.157,2.571,2.576 s-1.155,2.57-2.571,2.57C771.143,666.433,769.99,665.278,769.99,663.859 M767.959,663.859c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C770.016,659.254,767.959,661.315,767.959,663.859L767.959,663.859z"
  3927. data-v-0c9672f3=""></path>
  3928. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3929. x1="779.021" y1="649.429" x2="772.055" y2="660.247"></line>
  3930. </g>
  3931. </g>
  3932. <g id="nsskg3210">
  3933. <g v-if="ajaxData.nsskg3210" id="_71_">
  3934. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3935. x1="784.405" y1="708.622" x2="801.67" y2="708.622"></line>
  3936. <path fill="#A61F24"
  3937. d="M790.973,725.213c0-1.423,1.156-2.573,2.571-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.569-2.572,2.569C792.125,727.784,790.973,726.632,790.973,725.213 M788.942,725.213c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.063-4.604-4.604-4.604C790.998,720.606,788.942,722.667,788.942,725.213L788.942,725.213z"
  3938. data-v-0c9672f3=""></path>
  3939. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3940. x1="793.545" y1="708.847" x2="793.545" y2="721.599"></line>
  3941. </g>
  3942. <g v-else-if="ajaxData.nsskg3210 == false" id="_71_">
  3943. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3944. x1="784.405" y1="708.622" x2="801.67" y2="708.622"></line>
  3945. <path fill="#1B9D3A"
  3946. d="M790.973,725.213c0-1.423,1.156-2.576,2.571-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.569-2.572,2.569C792.125,727.784,790.973,726.632,790.973,725.213 M788.942,725.213 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.063-4.606-4.604-4.606 C790.998,720.604,788.942,722.667,788.942,725.213L788.942,725.213z"
  3947. data-v-0c9672f3=""></path>
  3948. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3949. x1="800.004" y1="710.78" x2="793.037" y2="721.599"></line>
  3950. </g>
  3951. </g>
  3952. <g id="nsskg3222">
  3953. <g v-if="ajaxData.nsskg3222" id="_70_">
  3954. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3955. x1="845.922" y1="533.572" x2="863.188" y2="533.572"></line>
  3956. <path fill="#A61F24"
  3957. d="M852.49,550.161c0-1.421,1.155-2.571,2.571-2.571c1.421,0,2.571,1.154,2.571,2.571 s-1.155,2.571-2.571,2.571C853.643,552.734,852.49,551.58,852.49,550.161 M850.459,550.161c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C852.516,545.557,850.459,547.617,850.459,550.161L850.459,550.161z"
  3958. data-v-0c9672f3=""></path>
  3959. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3960. x1="855.063" y1="533.799" x2="855.063" y2="546.551"></line>
  3961. </g>
  3962. <g v-else-if="ajaxData.nsskg3222 == false" id="_70_">
  3963. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3964. x1="845.922" y1="533.572" x2="863.188" y2="533.572"></line>
  3965. <path fill="#1B9D3A"
  3966. d="M852.49,550.161c0-1.421,1.155-2.574,2.571-2.574c1.421,0,2.571,1.155,2.571,2.574 s-1.155,2.571-2.571,2.571C853.643,552.734,852.49,551.58,852.49,550.161 M850.459,550.161c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C852.516,545.554,850.459,547.617,850.459,550.161L850.459,550.161z"
  3967. data-v-0c9672f3=""></path>
  3968. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3969. x1="861.521" y1="535.729" x2="854.555" y2="546.551"></line>
  3970. </g>
  3971. </g>
  3972. <g id="nsskg3223">
  3973. <g v-if="ajaxData.nsskg3223" id="_69_">
  3974. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3975. x1="845.922" y1="647.271" x2="863.188" y2="647.271"></line>
  3976. <path fill="#A61F24"
  3977. d="M852.49,663.859c0-1.421,1.155-2.573,2.571-2.573c1.421,0,2.571,1.156,2.571,2.573 s-1.155,2.57-2.571,2.57C853.643,666.433,852.49,665.278,852.49,663.859 M850.459,663.859c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C852.516,659.257,850.459,661.315,850.459,663.859L850.459,663.859z"
  3978. data-v-0c9672f3=""></path>
  3979. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3980. x1="855.063" y1="647.495" x2="855.063" y2="660.247"></line>
  3981. </g>
  3982. <g v-else-if="ajaxData.nsskg3223 == false" id="_69_">
  3983. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3984. x1="845.922" y1="647.271" x2="863.188" y2="647.271"></line>
  3985. <path fill="#1B9D3A"
  3986. d="M852.49,663.859c0-1.421,1.155-2.576,2.571-2.576c1.421,0,2.571,1.157,2.571,2.576 s-1.155,2.57-2.571,2.57C853.643,666.433,852.49,665.278,852.49,663.859 M850.459,663.859c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C852.516,659.254,850.459,661.315,850.459,663.859L850.459,663.859z"
  3987. data-v-0c9672f3=""></path>
  3988. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3989. x1="861.521" y1="649.429" x2="854.555" y2="660.247"></line>
  3990. </g>
  3991. </g>
  3992. <g id="nsskg3220">
  3993. <g v-if="ajaxData.nsskg3220" id="_68_">
  3994. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3995. x1="866.905" y1="708.622" x2="884.17" y2="708.622"></line>
  3996. <path fill="#A61F24"
  3997. d="M873.473,725.213c0-1.423,1.156-2.573,2.571-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.569-2.572,2.569C874.625,727.784,873.473,726.632,873.473,725.213 M871.442,725.213c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.063-4.604-4.604-4.604C873.498,720.606,871.442,722.667,871.442,725.213L871.442,725.213z"
  3998. data-v-0c9672f3=""></path>
  3999. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4000. x1="876.045" y1="708.847" x2="876.045" y2="721.599"></line>
  4001. </g>
  4002. <g v-else-if="ajaxData.nsskg3220 == false" id="_68_">
  4003. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4004. x1="866.905" y1="708.622" x2="884.17" y2="708.622"></line>
  4005. <path fill="#1B9D3A"
  4006. d="M873.473,725.213c0-1.423,1.156-2.576,2.571-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.569-2.572,2.569C874.625,727.784,873.473,726.632,873.473,725.213 M871.442,725.213 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.063-4.606-4.604-4.606 C873.498,720.604,871.442,722.667,871.442,725.213L871.442,725.213z"
  4007. data-v-0c9672f3=""></path>
  4008. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4009. x1="882.504" y1="710.78" x2="875.537" y2="721.599"></line>
  4010. </g>
  4011. </g>
  4012. <g id="nsskg3232">
  4013. <g v-if="ajaxData.nsskg3232" id="_67_">
  4014. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4015. x1="926.916" y1="533.572" x2="944.182" y2="533.572"></line>
  4016. <path fill="#A61F24"
  4017. d="M933.485,550.161c0-1.421,1.154-2.571,2.568-2.571c1.422,0,2.574,1.154,2.574,2.571 s-1.158,2.571-2.574,2.571C934.638,552.734,933.485,551.58,933.485,550.161 M931.453,550.161c0,2.544,2.06,4.604,4.603,4.604 s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604S931.453,547.617,931.453,550.161L931.453,550.161z"
  4018. data-v-0c9672f3=""></path>
  4019. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4020. x1="936.058" y1="533.799" x2="936.058" y2="546.551"></line>
  4021. </g>
  4022. <g v-else-if="ajaxData.nsskg3232 == false" id="_67_">
  4023. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4024. x1="926.916" y1="533.572" x2="944.182" y2="533.572"></line>
  4025. <path fill="#1B9D3A"
  4026. d="M933.485,550.161c0-1.421,1.154-2.574,2.568-2.574c1.422,0,2.574,1.155,2.574,2.574 s-1.158,2.571-2.574,2.571C934.638,552.734,933.485,551.58,933.485,550.161 M931.453,550.161c0,2.543,2.06,4.604,4.603,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605S931.453,547.617,931.453,550.161L931.453,550.161z"
  4027. data-v-0c9672f3=""></path>
  4028. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4029. x1="942.518" y1="535.729" x2="935.55" y2="546.551"></line>
  4030. </g>
  4031. </g>
  4032. <g id="nsskg3233">
  4033. <g v-if="ajaxData.nsskg3233" id="_66_">
  4034. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4035. x1="926.916" y1="647.271" x2="944.182" y2="647.271"></line>
  4036. <path fill="#A61F24"
  4037. d="M933.485,663.859c0-1.421,1.154-2.573,2.568-2.573c1.422,0,2.574,1.156,2.574,2.573 s-1.158,2.57-2.574,2.57C934.638,666.433,933.485,665.278,933.485,663.859 M931.453,663.859c0,2.544,2.06,4.604,4.603,4.604 s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604S931.453,661.315,931.453,663.859L931.453,663.859z"
  4038. data-v-0c9672f3=""></path>
  4039. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4040. x1="936.058" y1="647.495" x2="936.058" y2="660.247"></line>
  4041. </g>
  4042. <g v-else-if="ajaxData.nsskg3233 == false" id="_66_">
  4043. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4044. x1="926.916" y1="647.271" x2="944.182" y2="647.271"></line>
  4045. <path fill="#1B9D3A"
  4046. d="M933.485,663.859c0-1.421,1.154-2.576,2.568-2.576c1.422,0,2.574,1.157,2.574,2.576 s-1.158,2.57-2.574,2.57C934.638,666.433,933.485,665.278,933.485,663.859 M931.453,663.859c0,2.543,2.06,4.604,4.603,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605S931.453,661.315,931.453,663.859L931.453,663.859z"
  4047. data-v-0c9672f3=""></path>
  4048. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4049. x1="942.518" y1="649.429" x2="935.55" y2="660.247"></line>
  4050. </g>
  4051. </g>
  4052. <g id="nsskg3230">
  4053. <g v-if="ajaxData.nsskg3230" id="_65_">
  4054. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4055. x1="947.898" y1="708.622" x2="965.164" y2="708.622"></line>
  4056. <path fill="#A61F24"
  4057. d="M954.467,725.213c0-1.423,1.155-2.573,2.569-2.573c1.423,0,2.574,1.156,2.574,2.573 s-1.158,2.569-2.574,2.569C955.619,727.784,954.467,726.632,954.467,725.213 M952.438,725.213c0,2.544,2.06,4.604,4.604,4.604 c2.543,0,4.604-2.061,4.604-4.604c0-2.544-2.063-4.604-4.604-4.604C954.494,720.607,952.438,722.667,952.438,725.213 L952.438,725.213z"
  4058. data-v-0c9672f3=""></path>
  4059. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4060. x1="957.039" y1="708.847" x2="957.039" y2="721.599"></line>
  4061. </g>
  4062. <g v-else-if="ajaxData.nsskg3230 == false" id="_65_">
  4063. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4064. x1="947.898" y1="708.622" x2="965.164" y2="708.622"></line>
  4065. <path fill="#1B9D3A"
  4066. d="M954.467,725.213c0-1.423,1.155-2.576,2.569-2.576c1.423,0,2.574,1.155,2.574,2.576 c0,1.419-1.158,2.569-2.574,2.569C955.619,727.784,954.467,726.632,954.467,725.213 M952.438,725.213 c0,2.543,2.06,4.604,4.604,4.604c2.543,0,4.604-2.061,4.604-4.604c0-2.546-2.063-4.606-4.604-4.606 C954.494,720.604,952.438,722.667,952.438,725.213L952.438,725.213z"
  4067. data-v-0c9672f3=""></path>
  4068. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4069. x1="963.498" y1="710.78" x2="956.531" y2="721.599"></line>
  4070. </g>
  4071. </g>
  4072. <g id="nsskg3251">
  4073. <g v-if="ajaxData.nsskg3251" id="_64_">
  4074. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4075. x1="1010.23" y1="533.572" x2="1027.496" y2="533.572"></line>
  4076. <path fill="#A61F24"
  4077. d="M1016.799,550.161c0-1.421,1.156-2.571,2.569-2.571c1.423,0,2.574,1.154,2.574,2.571 s-1.158,2.571-2.574,2.571C1017.951,552.734,1016.799,551.58,1016.799,550.161 M1014.77,550.161c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604C1016.826,545.557,1014.77,547.617,1014.77,550.161L1014.77,550.161z"
  4078. data-v-0c9672f3=""></path>
  4079. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4080. x1="1019.371" y1="533.799" x2="1019.371" y2="546.551"></line>
  4081. </g>
  4082. <g v-else-if="ajaxData.nsskg3251 == false" id="_64_">
  4083. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4084. x1="1010.23" y1="533.572" x2="1027.496" y2="533.572"></line>
  4085. <path fill="#1B9D3A"
  4086. d="M1016.799,550.161c0-1.421,1.156-2.574,2.569-2.574c1.423,0,2.574,1.155,2.574,2.574 s-1.158,2.571-2.574,2.571C1017.951,552.734,1016.799,551.58,1016.799,550.161 M1014.77,550.161c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605C1016.826,545.554,1014.77,547.617,1014.77,550.161L1014.77,550.161z"
  4087. data-v-0c9672f3=""></path>
  4088. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4089. x1="1025.83" y1="535.729" x2="1018.864" y2="546.551"></line>
  4090. </g>
  4091. </g>
  4092. <g id="nsskg3253">
  4093. <g v-if="ajaxData.nsskg3253" id="_63_">
  4094. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4095. x1="1010.23" y1="647.271" x2="1027.496" y2="647.271"></line>
  4096. <path fill="#A61F24"
  4097. d="M1016.799,663.859c0-1.421,1.156-2.573,2.569-2.573c1.423,0,2.574,1.156,2.574,2.573 s-1.158,2.57-2.574,2.57C1017.951,666.433,1016.799,665.278,1016.799,663.859 M1014.77,663.859c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604C1016.826,659.257,1014.77,661.315,1014.77,663.859L1014.77,663.859z"
  4098. data-v-0c9672f3=""></path>
  4099. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4100. x1="1019.371" y1="647.495" x2="1019.371" y2="660.247"></line>
  4101. </g>
  4102. <g v-else-if="ajaxData.nsskg3253 == false" id="_63_">
  4103. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4104. x1="1010.23" y1="647.271" x2="1027.496" y2="647.271"></line>
  4105. <path fill="#1B9D3A"
  4106. d="M1016.799,663.859c0-1.421,1.156-2.576,2.569-2.576c1.423,0,2.574,1.157,2.574,2.576 s-1.158,2.57-2.574,2.57C1017.951,666.433,1016.799,665.278,1016.799,663.859 M1014.77,663.859c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605C1016.826,659.254,1014.77,661.315,1014.77,663.859L1014.77,663.859z"
  4107. data-v-0c9672f3=""></path>
  4108. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4109. x1="1025.83" y1="649.429" x2="1018.864" y2="660.247"></line>
  4110. </g>
  4111. </g>
  4112. <g id="nsskg3250">
  4113. <g v-if="ajaxData.nsskg3250" id="_62_">
  4114. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4115. x1="1031.213" y1="708.622" x2="1048.479" y2="708.622"></line>
  4116. <path fill="#A61F24"
  4117. d="M1037.781,725.213c0-1.423,1.155-2.573,2.569-2.573c1.422,0,2.574,1.156,2.574,2.573 s-1.158,2.569-2.574,2.569C1038.936,727.784,1037.781,726.632,1037.781,725.213 M1035.75,725.213 c0,2.544,2.059,4.604,4.604,4.604c2.543,0,4.604-2.061,4.604-4.604c0-2.544-2.062-4.604-4.604-4.604 C1037.809,720.607,1035.75,722.667,1035.75,725.213L1035.75,725.213z"
  4118. data-v-0c9672f3=""></path>
  4119. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4120. x1="1040.354" y1="708.847" x2="1040.354" y2="721.599"></line>
  4121. </g>
  4122. <g v-else-if="ajaxData.nsskg3250 == false" id="_62_">
  4123. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4124. x1="1031.213" y1="708.622" x2="1048.479" y2="708.622"></line>
  4125. <path fill="#1B9D3A"
  4126. d="M1037.781,725.213c0-1.423,1.155-2.576,2.569-2.576c1.422,0,2.574,1.155,2.574,2.576 c0,1.419-1.158,2.569-2.574,2.569C1038.936,727.784,1037.781,726.632,1037.781,725.213 M1035.75,725.213 c0,2.543,2.059,4.604,4.604,4.604c2.543,0,4.604-2.061,4.604-4.604c0-2.546-2.062-4.606-4.604-4.606 C1037.809,720.604,1035.75,722.667,1035.75,725.213L1035.75,725.213z"
  4127. data-v-0c9672f3=""></path>
  4128. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4129. x1="1046.813" y1="710.78" x2="1039.846" y2="721.599"></line>
  4130. </g>
  4131. </g>
  4132. <g id="nsskg3262">
  4133. <g v-if="ajaxData.nsskg3262" id="_61_">
  4134. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4135. x1="1092.592" y1="533.572" x2="1109.858" y2="533.572"></line>
  4136. <path fill="#A61F24"
  4137. d="M1099.16,550.161c0-1.421,1.156-2.571,2.572-2.571c1.42,0,2.571,1.154,2.571,2.571 s-1.155,2.571-2.571,2.571C1100.313,552.734,1099.16,551.58,1099.16,550.161 M1097.129,550.161c0,2.544,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C1099.188,545.557,1097.129,547.617,1097.129,550.161L1097.129,550.161z"
  4138. data-v-0c9672f3=""></path>
  4139. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4140. x1="1101.733" y1="533.799" x2="1101.733" y2="546.551"></line>
  4141. </g>
  4142. <g v-else-if="ajaxData.nsskg3262 == false" id="_61_">
  4143. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4144. x1="1092.592" y1="533.572" x2="1109.858" y2="533.572"></line>
  4145. <path fill="#1B9D3A"
  4146. d="M1099.16,550.161c0-1.421,1.156-2.574,2.572-2.574c1.42,0,2.571,1.155,2.571,2.574 s-1.155,2.571-2.571,2.571C1100.313,552.734,1099.16,551.58,1099.16,550.161 M1097.129,550.161c0,2.543,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C1099.188,545.554,1097.129,547.617,1097.129,550.161L1097.129,550.161 z"
  4147. data-v-0c9672f3=""></path>
  4148. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4149. x1="1108.192" y1="535.729" x2="1101.225" y2="546.551"></line>
  4150. </g>
  4151. </g>
  4152. <g id="nsskg3263">
  4153. <g v-if="ajaxData.nsskg3263" id="_60_">
  4154. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4155. x1="1092.592" y1="647.271" x2="1109.858" y2="647.271"></line>
  4156. <path fill="#A61F24"
  4157. d="M1099.16,663.859c0-1.421,1.156-2.573,2.572-2.573c1.42,0,2.571,1.156,2.571,2.573 s-1.155,2.57-2.571,2.57C1100.313,666.433,1099.16,665.278,1099.16,663.859 M1097.129,663.859c0,2.544,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C1099.188,659.257,1097.129,661.315,1097.129,663.859L1097.129,663.859z"
  4158. data-v-0c9672f3=""></path>
  4159. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4160. x1="1101.733" y1="647.495" x2="1101.733" y2="660.247"></line>
  4161. </g>
  4162. <g v-else-if="ajaxData.nsskg3263 == false" id="_60_">
  4163. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4164. x1="1092.592" y1="647.271" x2="1109.858" y2="647.271"></line>
  4165. <path fill="#1B9D3A"
  4166. d="M1099.16,663.859c0-1.421,1.156-2.576,2.572-2.576c1.42,0,2.571,1.157,2.571,2.576 s-1.155,2.57-2.571,2.57C1100.313,666.433,1099.16,665.278,1099.16,663.859 M1097.129,663.859c0,2.543,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C1099.188,659.254,1097.129,661.315,1097.129,663.859L1097.129,663.859 z"
  4167. data-v-0c9672f3=""></path>
  4168. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4169. x1="1108.192" y1="649.429" x2="1101.225" y2="660.247"></line>
  4170. </g>
  4171. </g>
  4172. <g id="nsskg3272">
  4173. <g v-if="ajaxData.nsskg3272" id="_59_">
  4174. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4175. x1="1173.666" y1="533.572" x2="1190.932" y2="533.572"></line>
  4176. <path fill="#A61F24"
  4177. d="M1180.235,550.161c0-1.421,1.155-2.571,2.569-2.571c1.422,0,2.573,1.154,2.573,2.571 s-1.157,2.571-2.573,2.571C1181.387,552.734,1180.235,551.58,1180.235,550.161 M1178.203,550.161c0,2.544,2.06,4.604,4.603,4.604 c2.546,0,4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604S1178.203,547.617,1178.203,550.161L1178.203,550.161z"
  4178. data-v-0c9672f3=""></path>
  4179. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4180. x1="1182.807" y1="533.799" x2="1182.807" y2="546.551"></line>
  4181. </g>
  4182. <g v-else-if="ajaxData.nsskg3272 == false" id="_59_">
  4183. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4184. x1="1173.666" y1="533.572" x2="1190.932" y2="533.572"></line>
  4185. <path fill="#1B9D3A"
  4186. d="M1180.235,550.161c0-1.421,1.155-2.574,2.569-2.574c1.422,0,2.573,1.155,2.573,2.574 s-1.157,2.571-2.573,2.571C1181.387,552.734,1180.235,551.58,1180.235,550.161 M1178.203,550.161c0,2.543,2.06,4.604,4.603,4.604 c2.546,0,4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C1180.262,545.554,1178.203,547.617,1178.203,550.161 L1178.203,550.161z"
  4187. data-v-0c9672f3=""></path>
  4188. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4189. x1="1189.266" y1="535.729" x2="1182.299" y2="546.551"></line>
  4190. </g>
  4191. </g>
  4192. <g id="nsskg3260">
  4193. <g v-if="ajaxData.nsskg3260" id="_58_">
  4194. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4195. x1="1113.574" y1="708.622" x2="1130.84" y2="708.622"></line>
  4196. <path fill="#A61F24"
  4197. d="M1120.145,725.213c0-1.423,1.154-2.573,2.57-2.573c1.42,0,2.571,1.156,2.571,2.573 s-1.155,2.569-2.571,2.569C1121.295,727.784,1120.145,726.632,1120.145,725.213 M1118.112,725.213 c0,2.544,2.062,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.544-2.063-4.604-4.604-4.604 C1120.168,720.606,1118.112,722.667,1118.112,725.213L1118.112,725.213z"
  4198. data-v-0c9672f3=""></path>
  4199. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4200. x1="1122.715" y1="708.847" x2="1122.715" y2="721.599"></line>
  4201. </g>
  4202. <g v-else-if="ajaxData.nsskg3260 == false" id="_58_">
  4203. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4204. x1="1113.574" y1="708.622" x2="1130.84" y2="708.622"></line>
  4205. <path fill="#1B9D3A"
  4206. d="M1120.145,725.213c0-1.423,1.154-2.576,2.57-2.576c1.42,0,2.571,1.155,2.571,2.576 c0,1.419-1.155,2.569-2.571,2.569C1121.295,727.784,1120.145,726.632,1120.145,725.213 M1118.112,725.213 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.063-4.606-4.604-4.606 C1120.168,720.604,1118.112,722.667,1118.112,725.213L1118.112,725.213z"
  4207. data-v-0c9672f3=""></path>
  4208. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4209. x1="1129.174" y1="710.78" x2="1122.207" y2="721.599"></line>
  4210. </g>
  4211. </g>
  4212. <g id="nsskg350">
  4213. <g v-if="ajaxData.nsskg350" id="_93_">
  4214. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4215. x1="1348.176" y1="586.746" x2="1365.441" y2="586.746"></line>
  4216. <path fill="#A61F24"
  4217. d="M1354.744,603.337c0-1.423,1.155-2.573,2.571-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.569-2.572,2.569C1355.896,605.908,1354.744,604.756,1354.744,603.337 M1352.713,603.337 c0,2.544,2.063,4.604,4.604,4.604c2.541,0,4.604-2.061,4.604-4.604c0-2.545-2.062-4.604-4.604-4.604 C1354.771,598.729,1352.713,600.792,1352.713,603.337L1352.713,603.337z"
  4218. data-v-0c9672f3=""></path>
  4219. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4220. x1="1357.316" y1="586.971" x2="1357.316" y2="599.723"></line>
  4221. </g>
  4222. <g v-else-if="ajaxData.nsskg350 == false" id="_93_">
  4223. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4224. x1="1348.176" y1="586.746" x2="1365.441" y2="586.746"></line>
  4225. <path fill="#1B9D3A"
  4226. d="M1354.744,603.337c0-1.423,1.155-2.576,2.571-2.576c1.421,0,2.572,1.156,2.572,2.576 c0,1.419-1.156,2.569-2.572,2.569C1355.896,605.908,1354.744,604.756,1354.744,603.337 M1352.713,603.337 c0,2.543,2.063,4.604,4.604,4.604c2.541,0,4.604-2.061,4.604-4.604c0-2.545-2.062-4.607-4.604-4.607 C1354.771,598.728,1352.713,600.792,1352.713,603.337L1352.713,603.337z"
  4227. data-v-0c9672f3=""></path>
  4228. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4229. x1="1363.775" y1="588.904" x2="1356.811" y2="599.723"></line>
  4230. </g>
  4231. </g>
  4232. <g id="nsskg359">
  4233. <g v-if="ajaxData.nsskg359" id="_92_">
  4234. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4235. x1="1328.211" y1="648.924" x2="1345.479" y2="648.924"></line>
  4236. <path fill="#A61F24"
  4237. d="M1334.78,665.511c0-1.421,1.155-2.572,2.571-2.572c1.42,0,2.572,1.155,2.572,2.572 s-1.156,2.569-2.572,2.569C1335.934,668.086,1334.78,666.93,1334.78,665.511 M1332.748,665.511c0,2.544,2.063,4.604,4.604,4.604 c2.543,0,4.604-2.061,4.604-4.604s-2.063-4.604-4.604-4.604C1334.807,660.906,1332.748,662.969,1332.748,665.511 L1332.748,665.511z"
  4238. data-v-0c9672f3=""></path>
  4239. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4240. x1="1337.354" y1="649.146" x2="1337.354" y2="661.898"></line>
  4241. </g>
  4242. <g v-else-if="ajaxData.nsskg359 == false" id="_92_">
  4243. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4244. x1="1328.211" y1="648.924" x2="1345.479" y2="648.924"></line>
  4245. <path fill="#1B9D3A"
  4246. d="M1334.78,665.511c0-1.421,1.155-2.576,2.571-2.576c1.42,0,2.572,1.157,2.572,2.576 s-1.156,2.569-2.572,2.569C1335.934,668.086,1334.78,666.93,1334.78,665.511 M1332.748,665.511c0,2.543,2.063,4.604,4.604,4.604 c2.543,0,4.604-2.061,4.604-4.604c0-2.544-2.063-4.606-4.604-4.606C1334.807,660.903,1332.748,662.969,1332.748,665.511 L1332.748,665.511z"
  4247. data-v-0c9672f3=""></path>
  4248. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4249. x1="1343.813" y1="651.08" x2="1336.844" y2="661.898"></line>
  4250. </g>
  4251. </g>
  4252. <g id="nsskg3511">
  4253. <g v-if="ajaxData.nsskg3511" id="_91_">
  4254. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4255. x1="1410.807" y1="533.572" x2="1428.071" y2="533.572"></line>
  4256. <path fill="#A61F24"
  4257. d="M1417.373,550.161c0-1.421,1.156-2.571,2.572-2.571c1.42,0,2.571,1.154,2.571,2.571 s-1.155,2.571-2.571,2.571C1418.525,552.734,1417.373,551.58,1417.373,550.161 M1415.342,550.161 c0,2.544,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604 C1417.398,545.557,1415.342,547.617,1415.342,550.161L1415.342,550.161z"
  4258. data-v-0c9672f3=""></path>
  4259. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4260. x1="1419.946" y1="533.799" x2="1419.946" y2="546.551"></line>
  4261. </g>
  4262. <g v-else-if="ajaxData.nsskg3511 == false" id="_91_">
  4263. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4264. x1="1410.807" y1="533.572" x2="1428.071" y2="533.572"></line>
  4265. <path fill="#1B9D3A"
  4266. d="M1417.373,550.161c0-1.421,1.156-2.574,2.572-2.574c1.42,0,2.571,1.155,2.571,2.574 s-1.155,2.571-2.571,2.571C1418.525,552.734,1417.373,551.58,1417.373,550.161 M1415.342,550.161 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605 C1417.398,545.554,1415.342,547.617,1415.342,550.161L1415.342,550.161z"
  4267. data-v-0c9672f3=""></path>
  4268. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4269. x1="1426.405" y1="535.729" x2="1419.438" y2="546.551"></line>
  4270. </g>
  4271. </g>
  4272. <g id="nsskg3513">
  4273. <g v-if="ajaxData.nsskg3513" id="_90_">
  4274. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4275. x1="1410.807" y1="647.271" x2="1428.071" y2="647.271"></line>
  4276. <path fill="#A61F24"
  4277. d="M1417.373,663.859c0-1.421,1.156-2.573,2.572-2.573c1.42,0,2.571,1.156,2.571,2.573 s-1.155,2.57-2.571,2.57C1418.525,666.433,1417.373,665.278,1417.373,663.859 M1415.342,663.859c0,2.544,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C1417.398,659.257,1415.342,661.315,1415.342,663.859L1415.342,663.859z"
  4278. data-v-0c9672f3=""></path>
  4279. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4280. x1="1419.946" y1="647.495" x2="1419.946" y2="660.247"></line>
  4281. </g>
  4282. <g v-else-if="ajaxData.nsskg3513 == false" id="_90_">
  4283. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4284. x1="1410.807" y1="647.271" x2="1428.071" y2="647.271"></line>
  4285. <path fill="#1B9D3A"
  4286. d="M1417.373,663.859c0-1.421,1.156-2.576,2.572-2.576c1.42,0,2.571,1.157,2.571,2.576 s-1.155,2.57-2.571,2.57C1418.525,666.433,1417.373,665.278,1417.373,663.859 M1415.342,663.859c0,2.543,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C1417.398,659.254,1415.342,661.315,1415.342,663.859L1415.342,663.859 z"
  4287. data-v-0c9672f3=""></path>
  4288. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4289. x1="1426.405" y1="649.429" x2="1419.438" y2="660.247"></line>
  4290. </g>
  4291. </g>
  4292. <g id="nsskg3510">
  4293. <g v-if="ajaxData.nsskg3510" id="_89_">
  4294. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4295. x1="1431.787" y1="708.622" x2="1449.053" y2="708.622"></line>
  4296. <path fill="#A61F24"
  4297. d="M1438.355,725.213c0-1.423,1.156-2.573,2.572-2.573c1.42,0,2.571,1.156,2.571,2.573 s-1.155,2.569-2.571,2.569C1439.508,727.784,1438.355,726.632,1438.355,725.213 M1436.324,725.213 c0,2.544,2.062,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.544-2.063-4.604-4.604-4.604 C1438.381,720.606,1436.324,722.667,1436.324,725.213L1436.324,725.213z"
  4298. data-v-0c9672f3=""></path>
  4299. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4300. x1="1440.928" y1="708.847" x2="1440.928" y2="721.599"></line>
  4301. </g>
  4302. <g v-else-if="ajaxData.nsskg3510 == false" id="_89_">
  4303. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4304. x1="1431.787" y1="708.622" x2="1449.053" y2="708.622"></line>
  4305. <path fill="#1B9D3A"
  4306. d="M1438.355,725.213c0-1.423,1.156-2.576,2.572-2.576c1.42,0,2.571,1.155,2.571,2.576 c0,1.419-1.155,2.569-2.571,2.569C1439.508,727.784,1438.355,726.632,1438.355,725.213 M1436.324,725.213 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.063-4.606-4.604-4.606 C1438.381,720.604,1436.324,722.667,1436.324,725.213L1436.324,725.213z"
  4307. data-v-0c9672f3=""></path>
  4308. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4309. x1="1447.387" y1="710.78" x2="1440.42" y2="721.599"></line>
  4310. </g>
  4311. </g>
  4312. <g id="nsskg3531">
  4313. <g v-if="ajaxData.nsskg3531" id="_88_">
  4314. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4315. x1="1493.307" y1="533.572" x2="1510.571" y2="533.572"></line>
  4316. <path fill="#A61F24"
  4317. d="M1499.873,550.161c0-1.421,1.156-2.571,2.572-2.571c1.42,0,2.571,1.154,2.571,2.571 s-1.155,2.571-2.571,2.571C1501.025,552.734,1499.873,551.58,1499.873,550.161 M1497.842,550.161 c0,2.544,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604 C1499.898,545.557,1497.842,547.617,1497.842,550.161L1497.842,550.161z"
  4318. data-v-0c9672f3=""></path>
  4319. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4320. x1="1502.446" y1="533.799" x2="1502.446" y2="546.551"></line>
  4321. </g>
  4322. <g v-else-if="ajaxData.nsskg3531 == false" id="_88_">
  4323. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4324. x1="1493.307" y1="533.572" x2="1510.571" y2="533.572"></line>
  4325. <path fill="#1B9D3A"
  4326. d="M1499.873,550.161c0-1.421,1.156-2.574,2.572-2.574c1.42,0,2.571,1.155,2.571,2.574 s-1.155,2.571-2.571,2.571C1501.025,552.734,1499.873,551.58,1499.873,550.161 M1497.842,550.161 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605 C1499.898,545.554,1497.842,547.617,1497.842,550.161L1497.842,550.161z"
  4327. data-v-0c9672f3=""></path>
  4328. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4329. x1="1508.905" y1="535.729" x2="1501.938" y2="546.551"></line>
  4330. </g>
  4331. </g>
  4332. <g id="nsskg3533">
  4333. <g v-if="ajaxData.nsskg3533" id="_87_">
  4334. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4335. x1="1493.307" y1="647.271" x2="1510.571" y2="647.271"></line>
  4336. <path fill="#A61F24"
  4337. d="M1499.873,663.859c0-1.421,1.156-2.573,2.572-2.573c1.42,0,2.571,1.156,2.571,2.573 s-1.155,2.57-2.571,2.57C1501.025,666.433,1499.873,665.278,1499.873,663.859 M1497.842,663.859c0,2.544,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C1499.898,659.257,1497.842,661.315,1497.842,663.859L1497.842,663.859z"
  4338. data-v-0c9672f3=""></path>
  4339. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4340. x1="1502.446" y1="647.495" x2="1502.446" y2="660.247"></line>
  4341. </g>
  4342. <g v-else-if="ajaxData.nsskg3533 == false" id="_87_">
  4343. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4344. x1="1493.307" y1="647.271" x2="1510.571" y2="647.271"></line>
  4345. <path fill="#1B9D3A"
  4346. d="M1499.873,663.859c0-1.421,1.156-2.576,2.572-2.576c1.42,0,2.571,1.157,2.571,2.576 s-1.155,2.57-2.571,2.57C1501.025,666.433,1499.873,665.278,1499.873,663.859 M1497.842,663.859c0,2.543,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C1499.898,659.254,1497.842,661.315,1497.842,663.859L1497.842,663.859 z"
  4347. data-v-0c9672f3=""></path>
  4348. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4349. x1="1508.905" y1="649.429" x2="1501.938" y2="660.247"></line>
  4350. </g>
  4351. </g>
  4352. <g id="nsskg3530">
  4353. <g v-if="ajaxData.nsskg3530" id="_86_">
  4354. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4355. x1="1514.287" y1="708.622" x2="1531.553" y2="708.622"></line>
  4356. <path fill="#A61F24"
  4357. d="M1520.855,725.213c0-1.423,1.156-2.573,2.572-2.573c1.42,0,2.571,1.156,2.571,2.573 s-1.155,2.569-2.571,2.569C1522.008,727.784,1520.855,726.632,1520.855,725.213 M1518.824,725.213 c0,2.544,2.062,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.544-2.063-4.604-4.604-4.604 C1520.881,720.606,1518.824,722.667,1518.824,725.213L1518.824,725.213z"
  4358. data-v-0c9672f3=""></path>
  4359. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4360. x1="1523.428" y1="708.847" x2="1523.428" y2="721.599"></line>
  4361. </g>
  4362. <g v-else-if="ajaxData.nsskg3530 == false" id="_86_">
  4363. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4364. x1="1514.287" y1="708.622" x2="1531.553" y2="708.622"></line>
  4365. <path fill="#1B9D3A"
  4366. d="M1520.855,725.213c0-1.423,1.156-2.576,2.572-2.576c1.42,0,2.571,1.155,2.571,2.576 c0,1.419-1.155,2.569-2.571,2.569C1522.008,727.784,1520.855,726.632,1520.855,725.213 M1518.824,725.213 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.063-4.606-4.604-4.606 C1520.881,720.604,1518.824,722.667,1518.824,725.213L1518.824,725.213z"
  4367. data-v-0c9672f3=""></path>
  4368. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4369. x1="1529.887" y1="710.78" x2="1522.92" y2="721.599"></line>
  4370. </g>
  4371. </g>
  4372. <g id="nsskg3541">
  4373. <g v-if="ajaxData.nsskg3541" id="_85_">
  4374. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4375. x1="1574.301" y1="533.572" x2="1591.566" y2="533.572"></line>
  4376. <path fill="#A61F24"
  4377. d="M1580.869,550.161c0-1.421,1.155-2.571,2.569-2.571c1.422,0,2.572,1.154,2.572,2.571 s-1.156,2.571-2.572,2.571C1582.021,552.734,1580.869,551.58,1580.869,550.161 M1578.838,550.161 c0,2.544,2.059,4.604,4.602,4.604c2.544,0,4.605-2.062,4.605-4.604s-2.062-4.604-4.605-4.604S1578.838,547.617,1578.838,550.161 L1578.838,550.161z"
  4378. data-v-0c9672f3=""></path>
  4379. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4380. x1="1583.441" y1="533.799" x2="1583.441" y2="546.551"></line>
  4381. </g>
  4382. <g v-else-if="ajaxData.nsskg3541 == false" id="_85_">
  4383. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4384. x1="1574.301" y1="533.572" x2="1591.566" y2="533.572"></line>
  4385. <path fill="#1B9D3A"
  4386. d="M1580.869,550.161c0-1.421,1.155-2.574,2.569-2.574c1.422,0,2.572,1.155,2.572,2.574 s-1.156,2.571-2.572,2.571C1582.021,552.734,1580.869,551.58,1580.869,550.161 M1578.838,550.161 c0,2.543,2.059,4.604,4.602,4.604c2.544,0,4.605-2.062,4.605-4.604c0-2.544-2.062-4.605-4.605-4.605 C1580.896,545.554,1578.838,547.617,1578.838,550.161L1578.838,550.161z"
  4387. data-v-0c9672f3=""></path>
  4388. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4389. x1="1589.9" y1="535.729" x2="1582.934" y2="546.551"></line>
  4390. </g>
  4391. </g>
  4392. <g id="nsskg3543">
  4393. <g v-if="ajaxData.nsskg3543" id="_84_">
  4394. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4395. x1="1574.301" y1="647.271" x2="1591.566" y2="647.271"></line>
  4396. <path fill="#A61F24"
  4397. d="M1580.869,663.859c0-1.421,1.155-2.573,2.569-2.573c1.422,0,2.572,1.156,2.572,2.573 s-1.156,2.57-2.572,2.57C1582.021,666.433,1580.869,665.278,1580.869,663.859 M1578.838,663.859c0,2.544,2.059,4.604,4.602,4.604 c2.544,0,4.605-2.062,4.605-4.604s-2.062-4.604-4.605-4.604C1580.896,659.257,1578.838,661.315,1578.838,663.859 L1578.838,663.859z"
  4398. data-v-0c9672f3=""></path>
  4399. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4400. x1="1583.441" y1="647.495" x2="1583.441" y2="660.247"></line>
  4401. </g>
  4402. <g v-else-if="ajaxData.nsskg3543 == false" id="_84_">
  4403. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4404. x1="1574.301" y1="647.271" x2="1591.566" y2="647.271"></line>
  4405. <path fill="#1B9D3A"
  4406. d="M1580.869,663.859c0-1.421,1.155-2.576,2.569-2.576c1.422,0,2.572,1.157,2.572,2.576 s-1.156,2.57-2.572,2.57C1582.021,666.433,1580.869,665.278,1580.869,663.859 M1578.838,663.859c0,2.543,2.059,4.604,4.602,4.604 c2.544,0,4.605-2.062,4.605-4.604c0-2.544-2.062-4.605-4.605-4.605S1578.838,661.315,1578.838,663.859L1578.838,663.859z"
  4407. data-v-0c9672f3=""></path>
  4408. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4409. x1="1589.9" y1="649.429" x2="1582.934" y2="660.247"></line>
  4410. </g>
  4411. </g>
  4412. <g id="nsskg3540">
  4413. <g v-if="ajaxData.nsskg3540" id="_83_">
  4414. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4415. x1="1595.283" y1="708.622" x2="1612.549" y2="708.622"></line>
  4416. <path fill="#A61F24"
  4417. d="M1601.852,725.213c0-1.423,1.156-2.573,2.57-2.573c1.422,0,2.573,1.156,2.573,2.573 s-1.157,2.569-2.573,2.569C1603.004,727.784,1601.852,726.632,1601.852,725.213 M1599.821,725.213 c0,2.544,2.06,4.604,4.603,4.604c2.544,0,4.604-2.061,4.604-4.604c0-2.544-2.063-4.604-4.604-4.604 C1601.877,720.607,1599.821,722.667,1599.821,725.213L1599.821,725.213z"
  4418. data-v-0c9672f3=""></path>
  4419. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4420. x1="1604.424" y1="708.847" x2="1604.424" y2="721.599"></line>
  4421. </g>
  4422. <g v-else-if="ajaxData.nsskg3540 == false" id="_83_">
  4423. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4424. x1="1595.283" y1="708.622" x2="1612.549" y2="708.622"></line>
  4425. <path fill="#1B9D3A"
  4426. d="M1601.852,725.213c0-1.423,1.156-2.576,2.57-2.576c1.422,0,2.573,1.155,2.573,2.576 c0,1.419-1.157,2.569-2.573,2.569C1603.004,727.784,1601.852,726.632,1601.852,725.213 M1599.821,725.213 c0,2.543,2.06,4.604,4.603,4.604c2.544,0,4.604-2.061,4.604-4.604c0-2.546-2.063-4.606-4.604-4.606 C1601.877,720.604,1599.821,722.667,1599.821,725.213L1599.821,725.213z"
  4427. data-v-0c9672f3=""></path>
  4428. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4429. x1="1610.883" y1="710.78" x2="1603.916" y2="721.599"></line>
  4430. </g>
  4431. </g>
  4432. <g id="nsskg3551">
  4433. <g v-if="ajaxData.nsskg3551" id="_82_">
  4434. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4435. x1="1657.615" y1="533.572" x2="1674.881" y2="533.572"></line>
  4436. <path fill="#A61F24"
  4437. d="M1664.184,550.161c0-1.421,1.156-2.571,2.57-2.571c1.422,0,2.573,1.154,2.573,2.571 s-1.157,2.571-2.573,2.571C1665.336,552.734,1664.184,551.58,1664.184,550.161 M1662.152,550.161 c0,2.544,2.061,4.604,4.604,4.604s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604 C1664.209,545.557,1662.152,547.617,1662.152,550.161L1662.152,550.161z"
  4438. data-v-0c9672f3=""></path>
  4439. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4440. x1="1666.756" y1="533.799" x2="1666.756" y2="546.551"></line>
  4441. </g>
  4442. <g v-else-if="ajaxData.nsskg3551 == false" id="_82_">
  4443. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4444. x1="1657.615" y1="533.572" x2="1674.881" y2="533.572"></line>
  4445. <path fill="#1B9D3A"
  4446. d="M1664.184,550.161c0-1.421,1.156-2.574,2.57-2.574c1.422,0,2.573,1.155,2.573,2.574 s-1.157,2.571-2.573,2.571C1665.336,552.734,1664.184,551.58,1664.184,550.161 M1662.152,550.161 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605 C1664.209,545.554,1662.152,547.617,1662.152,550.161L1662.152,550.161z"
  4447. data-v-0c9672f3=""></path>
  4448. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4449. x1="1673.215" y1="535.729" x2="1666.248" y2="546.551"></line>
  4450. </g>
  4451. </g>
  4452. <g id="nsskg3553">
  4453. <g v-if="ajaxData.nsskg3553" id="_81_">
  4454. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4455. x1="1657.615" y1="647.271" x2="1674.881" y2="647.271"></line>
  4456. <path fill="#A61F24"
  4457. d="M1664.184,663.859c0-1.421,1.156-2.573,2.57-2.573c1.422,0,2.573,1.156,2.573,2.573 s-1.157,2.57-2.573,2.57C1665.336,666.433,1664.184,665.278,1664.184,663.859 M1662.152,663.859c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604C1664.209,659.257,1662.152,661.315,1662.152,663.859L1662.152,663.859z"
  4458. data-v-0c9672f3=""></path>
  4459. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4460. x1="1666.756" y1="647.495" x2="1666.756" y2="660.247"></line>
  4461. </g>
  4462. <g v-else-if="ajaxData.nsskg3553 == false" id="_81_">
  4463. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4464. x1="1657.615" y1="647.271" x2="1674.881" y2="647.271"></line>
  4465. <path fill="#1B9D3A"
  4466. d="M1664.184,663.859c0-1.421,1.156-2.576,2.57-2.576c1.422,0,2.573,1.157,2.573,2.576 s-1.157,2.57-2.573,2.57C1665.336,666.433,1664.184,665.278,1664.184,663.859 M1662.152,663.859c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605C1664.209,659.254,1662.152,661.315,1662.152,663.859L1662.152,663.859 z"
  4467. data-v-0c9672f3=""></path>
  4468. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4469. x1="1673.215" y1="649.429" x2="1666.248" y2="660.247"></line>
  4470. </g>
  4471. </g>
  4472. <g id="nsskg3550">
  4473. <g v-if="ajaxData.nsskg3550" id="_80_">
  4474. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4475. x1="1678.598" y1="708.622" x2="1695.864" y2="708.622"></line>
  4476. <path fill="#A61F24"
  4477. d="M1685.166,725.213c0-1.423,1.156-2.573,2.569-2.573c1.423,0,2.574,1.156,2.574,2.573 s-1.158,2.569-2.574,2.569C1686.318,727.784,1685.166,726.632,1685.166,725.213 M1683.135,725.213 c0,2.544,2.059,4.604,4.603,4.604c2.543,0,4.604-2.061,4.604-4.604c0-2.544-2.062-4.604-4.604-4.604 C1685.193,720.607,1683.135,722.667,1683.135,725.213L1683.135,725.213z"
  4478. data-v-0c9672f3=""></path>
  4479. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4480. x1="1687.739" y1="708.847" x2="1687.739" y2="721.599"></line>
  4481. </g>
  4482. <g v-else-if="ajaxData.nsskg3550 == false" id="_80_">
  4483. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4484. x1="1678.598" y1="708.622" x2="1695.864" y2="708.622"></line>
  4485. <path fill="#1B9D3A"
  4486. d="M1685.166,725.213c0-1.423,1.156-2.576,2.569-2.576c1.423,0,2.574,1.155,2.574,2.576 c0,1.419-1.158,2.569-2.574,2.569C1686.318,727.784,1685.166,726.632,1685.166,725.213 M1683.135,725.213 c0,2.543,2.059,4.604,4.603,4.604c2.543,0,4.604-2.061,4.604-4.604c0-2.546-2.062-4.606-4.604-4.606 C1685.193,720.604,1683.135,722.667,1683.135,725.213L1683.135,725.213z"
  4487. data-v-0c9672f3=""></path>
  4488. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4489. x1="1694.198" y1="710.78" x2="1687.23" y2="721.599"></line>
  4490. </g>
  4491. </g>
  4492. <g id="nsskg3561">
  4493. <g v-if="ajaxData.nsskg3561" id="_79_">
  4494. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4495. x1="1739.977" y1="533.572" x2="1757.242" y2="533.572"></line>
  4496. <path fill="#A61F24"
  4497. d="M1746.545,550.161c0-1.421,1.155-2.571,2.571-2.571c1.421,0,2.572,1.154,2.572,2.571 s-1.156,2.571-2.572,2.571C1747.698,552.734,1746.545,551.58,1746.545,550.161 M1744.514,550.161 c0,2.544,2.062,4.604,4.604,4.604s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604 C1746.571,545.557,1744.514,547.617,1744.514,550.161L1744.514,550.161z"
  4498. data-v-0c9672f3=""></path>
  4499. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4500. x1="1749.117" y1="533.799" x2="1749.117" y2="546.551"></line>
  4501. </g>
  4502. <g v-else-if="ajaxData.nsskg3561 == false" id="_79_">
  4503. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4504. x1="1739.977" y1="533.572" x2="1757.242" y2="533.572"></line>
  4505. <path fill="#1B9D3A"
  4506. d="M1746.545,550.161c0-1.421,1.155-2.574,2.571-2.574c1.421,0,2.572,1.155,2.572,2.574 s-1.156,2.571-2.572,2.571C1747.698,552.734,1746.545,551.58,1746.545,550.161 M1744.514,550.161 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605 C1746.571,545.554,1744.514,547.617,1744.514,550.161L1744.514,550.161z"
  4507. data-v-0c9672f3=""></path>
  4508. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4509. x1="1755.576" y1="535.729" x2="1748.609" y2="546.551"></line>
  4510. </g>
  4511. </g>
  4512. <g id="nsskg3563">
  4513. <g v-if="ajaxData.nsskg3563" id="_78_">
  4514. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4515. x1="1739.977" y1="647.271" x2="1757.242" y2="647.271"></line>
  4516. <path fill="#A61F24"
  4517. d="M1746.545,663.859c0-1.421,1.155-2.573,2.571-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.57-2.572,2.57C1747.698,666.433,1746.545,665.278,1746.545,663.859 M1744.514,663.859c0,2.544,2.062,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604C1746.571,659.257,1744.514,661.315,1744.514,663.859L1744.514,663.859z"
  4518. data-v-0c9672f3=""></path>
  4519. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4520. x1="1749.117" y1="647.495" x2="1749.117" y2="660.247"></line>
  4521. </g>
  4522. <g v-else-if="ajaxData.nsskg3563 == false" id="_78_">
  4523. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4524. x1="1739.977" y1="647.271" x2="1757.242" y2="647.271"></line>
  4525. <path fill="#1B9D3A"
  4526. d="M1746.545,663.859c0-1.421,1.155-2.576,2.571-2.576c1.421,0,2.572,1.157,2.572,2.576 s-1.156,2.57-2.572,2.57C1747.698,666.433,1746.545,665.278,1746.545,663.859 M1744.514,663.859c0,2.543,2.062,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605C1746.571,659.254,1744.514,661.315,1744.514,663.859L1744.514,663.859 z"
  4527. data-v-0c9672f3=""></path>
  4528. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4529. x1="1755.576" y1="649.429" x2="1748.609" y2="660.247"></line>
  4530. </g>
  4531. </g>
  4532. <g id="nsskg3571">
  4533. <g v-if="ajaxData.nsskg3571" id="_77_">
  4534. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4535. x1="1821.051" y1="533.572" x2="1838.316" y2="533.572"></line>
  4536. <path fill="#A61F24"
  4537. d="M1827.619,550.161c0-1.421,1.155-2.571,2.569-2.571c1.422,0,2.572,1.154,2.572,2.571 s-1.156,2.571-2.572,2.571C1828.771,552.734,1827.619,551.58,1827.619,550.161 M1825.588,550.161 c0,2.544,2.059,4.604,4.602,4.604c2.544,0,4.605-2.062,4.605-4.604s-2.062-4.604-4.605-4.604S1825.588,547.617,1825.588,550.161 L1825.588,550.161z"
  4538. data-v-0c9672f3=""></path>
  4539. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4540. x1="1830.191" y1="533.799" x2="1830.191" y2="546.551"></line>
  4541. </g>
  4542. <g v-else-if="ajaxData.nsskg3571 == false" id="_77_">
  4543. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4544. x1="1821.051" y1="533.572" x2="1838.316" y2="533.572"></line>
  4545. <path fill="#1B9D3A"
  4546. d="M1827.619,550.161c0-1.421,1.155-2.574,2.569-2.574c1.422,0,2.572,1.155,2.572,2.574 s-1.156,2.571-2.572,2.571C1828.771,552.734,1827.619,551.58,1827.619,550.161 M1825.588,550.161 c0,2.543,2.059,4.604,4.602,4.604c2.544,0,4.605-2.062,4.605-4.604c0-2.544-2.062-4.605-4.605-4.605 C1827.646,545.554,1825.588,547.617,1825.588,550.161L1825.588,550.161z"
  4547. data-v-0c9672f3=""></path>
  4548. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4549. x1="1836.65" y1="535.729" x2="1829.684" y2="546.551"></line>
  4550. </g>
  4551. </g>
  4552. <g id="nsskg3560">
  4553. <g v-if="ajaxData.nsskg3560" id="_76_">
  4554. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4555. x1="1760.959" y1="708.622" x2="1778.225" y2="708.622"></line>
  4556. <path fill="#A61F24"
  4557. d="M1767.527,725.213c0-1.423,1.156-2.573,2.572-2.573c1.42,0,2.569,1.156,2.569,2.573 s-1.153,2.569-2.569,2.569C1768.68,727.784,1767.527,726.632,1767.527,725.213 M1765.496,725.213 c0,2.544,2.063,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604 C1767.553,720.606,1765.496,722.667,1765.496,725.213L1765.496,725.213z"
  4558. data-v-0c9672f3=""></path>
  4559. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4560. x1="1770.1" y1="708.847" x2="1770.1" y2="721.599"></line>
  4561. </g>
  4562. <g v-else-if="ajaxData.nsskg3560 == false" id="_76_">
  4563. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4564. x1="1760.959" y1="708.622" x2="1778.225" y2="708.622"></line>
  4565. <path fill="#1B9D3A"
  4566. d="M1767.527,725.213c0-1.423,1.156-2.576,2.572-2.576c1.42,0,2.569,1.155,2.569,2.576 c0,1.419-1.153,2.569-2.569,2.569C1768.68,727.784,1767.527,726.632,1767.527,725.213 M1765.496,725.213 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C1767.553,720.604,1765.496,722.667,1765.496,725.213L1765.496,725.213z"
  4567. data-v-0c9672f3=""></path>
  4568. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4569. x1="1776.559" y1="710.78" x2="1769.592" y2="721.599"></line>
  4570. </g>
  4571. </g>
  4572. <g id="nsskg1210">
  4573. <g v-if="ajaxData.nsskg1210" id="_76_">
  4574. <path fill="#1B9D3A"
  4575. d="M1219.691,67.355c1.421,0,2.576,1.157,2.576,2.573c0,1.416-1.155,2.57-2.576,2.57 c-1.418,0-2.571-1.154-2.571-2.57C1217.119,68.512,1218.273,67.355,1219.691,67.355 M1219.691,65.324 c-2.543,0-4.604,2.063-4.604,4.604c0,2.545,2.061,4.604,4.604,4.604c2.546,0,4.607-2.059,4.607-4.604 C1224.299,67.385,1222.237,65.324,1219.691,65.324L1219.691,65.324z"
  4576. data-v-0c9672f3=""></path>
  4577. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4578. x1="1234.121" y1="76.388" x2="1223.307" y2="69.424"></line>
  4579. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4580. x1="1236.28" y1="60.791" x2="1236.28" y2="78.057"></line>
  4581. </g>
  4582. <g v-else-if="ajaxData.nsskg1210 == false" id="_77_">
  4583. <path fill="#A61F24"
  4584. d="M1219.691,67.355c1.421,0,2.574,1.157,2.574,2.573c0,1.416-1.156,2.57-2.574,2.57 s-2.571-1.154-2.571-2.57C1217.119,68.512,1218.273,67.355,1219.691,67.355 M1219.691,65.324c-2.545,0-4.604,2.063-4.604,4.604 c0,2.545,2.061,4.604,4.604,4.604s4.604-2.059,4.604-4.604C1224.297,67.385,1222.237,65.324,1219.691,65.324L1219.691,65.324z"
  4585. data-v-0c9672f3=""></path>
  4586. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4587. x1="1236.28" y1="60.791" x2="1236.28" y2="78.057"></line>
  4588. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4589. x1="1236.057" y1="69.932" x2="1223.307" y2="69.932"></line>
  4590. </g>
  4591. </g>
  4592. <g id="nsskg129">
  4593. <g v-if="ajaxData.nsskg129" id="_76_">
  4594. <path fill="#A61F24"
  4595. d="M1784.145,253.074c1.418,0,2.574,1.156,2.574,2.572c0,1.418-1.156,2.572-2.574,2.572 c-1.42,0-2.571-1.156-2.571-2.572S1782.725,253.074,1784.145,253.074 M1784.145,251.045c-2.545,0-4.604,2.061-4.604,4.604 c0,2.545,2.061,4.604,4.604,4.604c2.545,0,4.604-2.061,4.604-4.604C1788.748,253.102,1786.689,251.045,1784.145,251.045 L1784.145,251.045z"
  4596. data-v-0c9672f3=""></path>
  4597. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4598. x1="1784.145" y1="239.287" x2="1784.145" y2="252.035"></line>
  4599. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4600. x1="1775.004" y1="239.059" x2="1792.27" y2="239.059"></line>
  4601. </g>
  4602. <g v-else-if="ajaxData.nsskg129 == false" id="_77_">
  4603. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4604. x1="1775.004" y1="239.059" x2="1792.27" y2="239.059"></line>
  4605. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4606. x1="1790.602" y1="241.221" x2="1783.637" y2="252.035"></line>
  4607. <path fill="#1B9D3A"
  4608. d="M1784.145,253.074c1.418,0,2.574,1.156,2.574,2.572c0,1.422-1.156,2.572-2.574,2.572 c-1.42,0-2.571-1.156-2.571-2.572C1781.568,254.227,1782.725,253.074,1784.145,253.074 M1784.145,251.045 c-2.545,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604c2.545,0,4.604-2.061,4.604-4.604S1786.689,251.045,1784.145,251.045 L1784.145,251.045z"
  4609. data-v-0c9672f3=""></path>
  4610. </g>
  4611. </g>
  4612. </g>
  4613. <g id="data">
  4614. <text transform="matrix(1 0 0 1 71.3208 86.3582)" fill="#1A823B"
  4615. font-family="'MicrosoftYaHei'" font-size="9.463">
  4616. {{ ajaxData.nssuakv2j }}
  4617. </text>
  4618. <text transform="matrix(1 0 0 1 71.3203 106.0535)" fill="#1A823B"
  4619. font-family="'MicrosoftYaHei'" font-size="9.463">
  4620. {{ ajaxData.nssuabkv2j }}
  4621. </text>
  4622. <text transform="matrix(1 0 0 1 71.3203 126.7195)" fill="#1A823B"
  4623. font-family="'MicrosoftYaHei'" font-size="9.463">
  4624. {{ ajaxData.nss3uov2j }}
  4625. </text>
  4626. <text transform="matrix(1 0 0 1 71.3203 148.2234)" fill="#1A823B"
  4627. font-family="'MicrosoftYaHei'" font-size="9.463">
  4628. {{ ajaxData.nssfhz2j }}
  4629. </text>
  4630. <text transform="matrix(1 0 0 1 487.9116 73.7937)" fill="#1A823B"
  4631. font-family="'MicrosoftYaHei'" font-size="9.463">
  4632. {{ ajaxData.nsslaa2j }}
  4633. </text>
  4634. <text transform="matrix(1 0 0 1 487.9111 92.489)" fill="#1A823B"
  4635. font-family="'MicrosoftYaHei'" font-size="9.463">
  4636. {{ ajaxData.nsspmw2j }}
  4637. </text>
  4638. <text transform="matrix(1 0 0 1 487.9111 113.157)" fill="#1A823B"
  4639. font-family="'MicrosoftYaHei'" font-size="9.463">
  4640. {{ ajaxData.nssqmvar2j }}
  4641. </text>
  4642. <text transform="matrix(1 0 0 1 487.9111 133.4753)" fill="#1A823B"
  4643. font-family="'MicrosoftYaHei'" font-size="9.463">
  4644. {{ ajaxData.nssuxkv2j }}
  4645. </text>
  4646. <text transform="matrix(1 0 0 1 487.9111 154.1511)" fill="#1A823B"
  4647. font-family="'MicrosoftYaHei'" font-size="9.463">
  4648. {{ ajaxData.nsscos2j }}
  4649. </text>
  4650. <text transform="matrix(1 0 0 1 1060.2461 73.7937)" fill="#1A823B"
  4651. font-family="'MicrosoftYaHei'" font-size="9.463">
  4652. {{ ajaxData.nsslaa2jy }}
  4653. </text>
  4654. <text transform="matrix(1 0 0 1 1060.2441 92.489)" fill="#1A823B"
  4655. font-family="'MicrosoftYaHei'" font-size="9.463">
  4656. {{ ajaxData.nsspmw2jy }}
  4657. </text>
  4658. <text transform="matrix(1 0 0 1 1060.2441 113.157)" fill="#1A823B"
  4659. font-family="'MicrosoftYaHei'" font-size="9.463">
  4660. {{ ajaxData.nssqmvar2jy }}
  4661. </text>
  4662. <text transform="matrix(1 0 0 1 1060.2441 133.4753)" fill="#1A823B"
  4663. font-family="'MicrosoftYaHei'" font-size="9.463">
  4664. {{ ajaxData.nssqmvar2jy }}
  4665. </text>
  4666. <text transform="matrix(1 0 0 1 1060.2441 154.1511)" fill="#1A823B"
  4667. font-family="'MicrosoftYaHei'" font-size="9.463">
  4668. {{ ajaxData.nssuxkv2jy }}
  4669. </text>
  4670. <text transform="matrix(1 0 0 1 1640.2461 95.1296)" fill="#1A823B"
  4671. font-family="'MicrosoftYaHei'" font-size="9.463">
  4672. {{ ajaxData.nsslaa2y }}
  4673. </text>
  4674. <text transform="matrix(1 0 0 1 1640.2441 113.825)" fill="#1A823B"
  4675. font-family="'MicrosoftYaHei'" font-size="9.463">
  4676. {{ ajaxData.nsspkw2y }}
  4677. </text>
  4678. <text transform="matrix(1 0 0 1 1640.2441 134.4929)" fill="#1A823B"
  4679. font-family="'MicrosoftYaHei'" font-size="9.463">
  4680. {{ ajaxData.nssqkvar2y }}
  4681. </text>
  4682. <text transform="matrix(1 0 0 1 1640.2441 154.1511)" fill="#1A823B"
  4683. font-family="'MicrosoftYaHei'" font-size="9.463">
  4684. {{ ajaxData.nsscos2y }}
  4685. </text>
  4686. <text transform="matrix(1 0 0 1 1779.5313 96.1335)" fill="#1A823B"
  4687. font-family="'MicrosoftYaHei'" font-size="9.463">
  4688. {{ ajaxData.nssuakv2y }}
  4689. </text>
  4690. <text transform="matrix(1 0 0 1 1779.5313 115.8289)" fill="#1A823B"
  4691. font-family="'MicrosoftYaHei'" font-size="9.463">
  4692. {{ ajaxData.nssuabkv2y }}
  4693. </text>
  4694. <text transform="matrix(1 0 0 1 1779.5313 136.4949)" fill="#1A823B"
  4695. font-family="'MicrosoftYaHei'" font-size="9.463">
  4696. {{ ajaxData.nss3uov2y }}
  4697. </text>
  4698. <text transform="matrix(1 0 0 1 1779.5313 157.9988)" fill="#1A823B"
  4699. font-family="'MicrosoftYaHei'" font-size="9.463">
  4700. {{ ajaxData.nssfhz2y }}
  4701. </text>
  4702. <text transform="matrix(1 0 0 1 69.9092 412.405)" fill="#1A823B"
  4703. font-family="'MicrosoftYaHei'" font-size="9.463">
  4704. {{ ajaxData.nssuakv1zb }}
  4705. </text>
  4706. <text transform="matrix(1 0 0 1 69.9087 431.1003)" fill="#1A823B"
  4707. font-family="'MicrosoftYaHei'" font-size="9.463">
  4708. {{ ajaxData.nssuabkv1zb }}
  4709. </text>
  4710. <text transform="matrix(1 0 0 1 69.9087 451.7683)" fill="#1A823B"
  4711. font-family="'MicrosoftYaHei'" font-size="9.463">
  4712. -.--
  4713. </text>
  4714. <text transform="matrix(1 0 0 1 69.9087 472.0867)" fill="#1A823B"
  4715. font-family="'MicrosoftYaHei'" font-size="9.463">
  4716. -.--
  4717. </text>
  4718. <text transform="matrix(1 0 0 1 552.8096 281.4167)" fill="#1A823B"
  4719. font-family="'MicrosoftYaHei'" font-size="9.463">
  4720. {{ ajaxData.nsslaa1zbs }}
  4721. </text>
  4722. <text transform="matrix(1 0 0 1 552.8091 300.1121)" fill="#1A823B"
  4723. font-family="'MicrosoftYaHei'" font-size="9.463">
  4724. {{ ajaxData.nsspmw1zbs }}
  4725. </text>
  4726. <text transform="matrix(1 0 0 1 552.8091 320.78)" fill="#1A823B"
  4727. font-family="'MicrosoftYaHei'" font-size="9.463">
  4728. {{ ajaxData.nssqmvar1zbs }}
  4729. </text>
  4730. <text transform="matrix(1 0 0 1 552.8091 341.741)" fill="#1A823B"
  4731. font-family="'MicrosoftYaHei'" font-size="9.463">
  4732. {{ ajaxData.nsscos1zbs }}
  4733. </text>
  4734. <text transform="matrix(1 0 0 1 552.8096 362.2957)" fill="#1A823B"
  4735. font-family="'MicrosoftYaHei'" font-size="9.463">
  4736. {{ ajaxData.nssdw1zb }}
  4737. </text>
  4738. <text transform="matrix(1 0 0 1 552.8091 381.991)" fill="#1A823B"
  4739. font-family="'MicrosoftYaHei'" font-size="9.463">
  4740. {{ ajaxData.nssymwd1zb1 }}
  4741. </text>
  4742. <text transform="matrix(1 0 0 1 552.8091 402.657)" fill="#1A823B"
  4743. font-family="'MicrosoftYaHei'" font-size="9.463">
  4744. {{ ajaxData.nssymwd1zb2 }}
  4745. </text>
  4746. <text transform="matrix(1 0 0 1 552.8096 422.4285)" fill="#1A823B"
  4747. font-family="'MicrosoftYaHei'" font-size="9.463">
  4748. {{ ajaxData.nsslaa1zbx }}
  4749. </text>
  4750. <text transform="matrix(1 0 0 1 552.8091 441.1238)" fill="#1A823B"
  4751. font-family="'MicrosoftYaHei'" font-size="9.463">
  4752. {{ ajaxData.nsspmw1zbx }}
  4753. </text>
  4754. <text transform="matrix(1 0 0 1 552.8091 461.7917)" fill="#1A823B"
  4755. font-family="'MicrosoftYaHei'" font-size="9.463">
  4756. {{ ajaxData.nssqmvar1zbx }}
  4757. </text>
  4758. <text transform="matrix(1 0 0 1 552.8091 482.7527)" fill="#1A823B"
  4759. font-family="'MicrosoftYaHei'" font-size="9.463">
  4760. {{ ajaxData.nsscos1zbx }}
  4761. </text>
  4762. <text transform="matrix(1 0 0 1 711.8936 412.405)" fill="#1A823B"
  4763. font-family="'MicrosoftYaHei'" font-size="9.463">
  4764. {{ ajaxData.nssuakv2zb }}
  4765. </text>
  4766. <text transform="matrix(1 0 0 1 711.8931 431.1003)" fill="#1A823B"
  4767. font-family="'MicrosoftYaHei'" font-size="9.463">
  4768. {{ ajaxData.nssuabkv2zb }}
  4769. </text>
  4770. <text transform="matrix(1 0 0 1 711.8931 451.7683)" fill="#1A823B"
  4771. font-family="'MicrosoftYaHei'" font-size="9.463">
  4772. {{ ajaxData.nss3uo2zb }}
  4773. </text>
  4774. <text transform="matrix(1 0 0 1 711.8931 472.0867)" fill="#1A823B"
  4775. font-family="'MicrosoftYaHei'" font-size="9.463">
  4776. {{ ajaxData.nssfhz2zb }}
  4777. </text>
  4778. <text transform="matrix(1 0 0 1 1106.2656 281.4167)" fill="#1A823B"
  4779. font-family="'MicrosoftYaHei'" font-size="9.463">
  4780. {{ ajaxData.nsslaa2zbs }}
  4781. </text>
  4782. <text transform="matrix(1 0 0 1 1106.2637 300.1121)" fill="#1A823B"
  4783. font-family="'MicrosoftYaHei'" font-size="9.463">
  4784. {{ ajaxData.nsspmw2zbs }}
  4785. </text>
  4786. <text transform="matrix(1 0 0 1 1106.2637 320.78)" fill="#1A823B"
  4787. font-family="'MicrosoftYaHei'" font-size="9.463">
  4788. {{ ajaxData.nssqmvar2zbs }}
  4789. </text>
  4790. <text transform="matrix(1 0 0 1 1106.2637 341.741)" fill="#1A823B"
  4791. font-family="'MicrosoftYaHei'" font-size="9.463">
  4792. {{ ajaxData.nsscos2zbs }}
  4793. </text>
  4794. <text transform="matrix(1 0 0 1 1106.2656 362.2957)" fill="#1A823B"
  4795. font-family="'MicrosoftYaHei'" font-size="9.463">
  4796. {{ ajaxData.nssdw2zb }}
  4797. </text>
  4798. <text transform="matrix(1 0 0 1 1106.2637 381.991)" fill="#1A823B"
  4799. font-family="'MicrosoftYaHei'" font-size="9.463">
  4800. {{ ajaxData.nssymwd2zb1 }}
  4801. </text>
  4802. <text transform="matrix(1 0 0 1 1106.2637 402.657)" fill="#1A823B"
  4803. font-family="'MicrosoftYaHei'" font-size="9.463">
  4804. {{ ajaxData.nssymwd2zb2 }}
  4805. </text>
  4806. <text transform="matrix(1 0 0 1 1106.2656 422.4285)" fill="#1A823B"
  4807. font-family="'MicrosoftYaHei'" font-size="9.463">
  4808. {{ ajaxData.nss2laa2zbx }}
  4809. </text>
  4810. <text transform="matrix(1 0 0 1 1106.2637 441.1238)" fill="#1A823B"
  4811. font-family="'MicrosoftYaHei'" font-size="9.463">
  4812. {{ ajaxData.nsspmw2zbx }}
  4813. </text>
  4814. <text transform="matrix(1 0 0 1 1106.2637 461.7917)" fill="#1A823B"
  4815. font-family="'MicrosoftYaHei'" font-size="9.463">
  4816. {{ ajaxData.nssqmvar2zbx }}
  4817. </text>
  4818. <text transform="matrix(1 0 0 1 1106.2637 482.7527)" fill="#1A823B"
  4819. font-family="'MicrosoftYaHei'" font-size="9.463">
  4820. {{ ajaxData.nsscos2zbx }}
  4821. </text>
  4822. <text transform="matrix(1 0 0 1 1352.8184 412.405)" fill="#1A823B"
  4823. font-family="'MicrosoftYaHei'" font-size="9.463">
  4824. {{ ajaxData.nssuakv3zb }}
  4825. </text>
  4826. <text transform="matrix(1 0 0 1 1352.8184 431.1003)" fill="#1A823B"
  4827. font-family="'MicrosoftYaHei'" font-size="9.463">
  4828. {{ ajaxData.nssuabkv3zb }}
  4829. </text>
  4830. <text transform="matrix(1 0 0 1 1352.8184 451.7683)" fill="#1A823B"
  4831. font-family="'MicrosoftYaHei'" font-size="9.463">
  4832. {{ ajaxData.nss3uov3zb }}
  4833. </text>
  4834. <text transform="matrix(1 0 0 1 1352.8184 472.0867)" fill="#1A823B"
  4835. font-family="'MicrosoftYaHei'" font-size="9.463">
  4836. {{ ajaxData.nssfhz3zb }}
  4837. </text>
  4838. <text transform="matrix(1 0 0 1 1649.1641 362.2957)" fill="#1A823B"
  4839. font-family="'MicrosoftYaHei'" font-size="9.463">
  4840. {{ ajaxData.nssdw3zb }}
  4841. </text>
  4842. <text transform="matrix(1 0 0 1 1649.1621 381.991)" fill="#1A823B"
  4843. font-family="'MicrosoftYaHei'" font-size="9.463">
  4844. {{ ajaxData.nssymwd3zb1 }}
  4845. </text>
  4846. <text transform="matrix(1 0 0 1 1649.1621 402.657)" fill="#1A823B"
  4847. font-family="'MicrosoftYaHei'" font-size="9.463">
  4848. {{ ajaxData.nssymwd3zb2 }}
  4849. </text>
  4850. <text transform="matrix(1 0 0 1 1649.1641 422.4285)" fill="#1A823B"
  4851. font-family="'MicrosoftYaHei'" font-size="9.463">
  4852. {{ ajaxData.nsslaa3zb }}
  4853. </text>
  4854. <text transform="matrix(1 0 0 1 1649.1621 441.1238)" fill="#1A823B"
  4855. font-family="'MicrosoftYaHei'" font-size="9.463">
  4856. {{ ajaxData.nsspmw3zb }}
  4857. </text>
  4858. <text transform="matrix(1 0 0 1 1649.1621 461.7917)" fill="#1A823B"
  4859. font-family="'MicrosoftYaHei'" font-size="9.463">
  4860. {{ ajaxData.nssqmvar3zb }}
  4861. </text>
  4862. <text transform="matrix(1 0 0 1 1649.1621 482.7527)" fill="#1A823B"
  4863. font-family="'MicrosoftYaHei'" font-size="9.463">
  4864. {{ ajaxData.nsscos3zb }}
  4865. </text>
  4866. <g>
  4867. <text transform="matrix(1 0 0 1 112.0303 841.4773)" fill="#FFFFFF"
  4868. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4869. {{ ajaxData.nsslaajd1 }}
  4870. </text>
  4871. <text transform="matrix(1 0 0 1 112.0303 867.3298)" fill="#FFFFFF"
  4872. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4873. {{ ajaxData.nsspmwjd1 }}
  4874. </text>
  4875. <text transform="matrix(1 0 0 1 112.0303 893.1804)" fill="#FFFFFF"
  4876. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4877. {{ ajaxData.nssqmvarjd1 }}
  4878. </text>
  4879. </g>
  4880. <g>
  4881. <text transform="matrix(1 0 0 1 197.7603 841.4773)" fill="#FFFFFF"
  4882. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4883. {{ ajaxData.nsslaajd2 }}
  4884. </text>
  4885. <text transform="matrix(1 0 0 1 197.7603 867.3298)" fill="#FFFFFF"
  4886. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4887. {{ ajaxData.nsspmwjd2 }}
  4888. </text>
  4889. <text transform="matrix(1 0 0 1 197.7603 893.1804)" fill="#FFFFFF"
  4890. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4891. {{ ajaxData.nssqmvarjd2 }}
  4892. </text>
  4893. </g>
  4894. <g>
  4895. <text transform="matrix(1 0 0 1 284.937 841.4773)" fill="#FFFFFF"
  4896. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4897. {{ ajaxData.nsslaajd3 }}
  4898. </text>
  4899. <text transform="matrix(1 0 0 1 284.937 867.3298)" fill="#FFFFFF"
  4900. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4901. {{ ajaxData.nsspmwjd3 }}
  4902. </text>
  4903. <text transform="matrix(1 0 0 1 280.2803 893.1804)" fill="#FFFFFF"
  4904. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4905. {{ ajaxData.nssqmvarjd3 }}
  4906. </text>
  4907. </g>
  4908. <g>
  4909. <text transform="matrix(1 0 0 1 360.4941 841.4773)" fill="#FFFFFF"
  4910. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4911. {{ ajaxData.nsslaadr1 }}
  4912. </text>
  4913. <text transform="matrix(1 0 0 1 365.4609 867.3298)" fill="#FFFFFF"
  4914. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4915. {{ ajaxData.nsspmwdr1 }}
  4916. </text>
  4917. <text transform="matrix(1 0 0 1 360.4941 893.1804)" fill="#FFFFFF"
  4918. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4919. {{ ajaxData.nssqmvardr1 }}
  4920. </text>
  4921. </g>
  4922. <g>
  4923. <text transform="matrix(1 0 0 1 446.2241 841.4773)" fill="#FFFFFF"
  4924. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4925. {{ ajaxData.nsslaadk1 }}
  4926. </text>
  4927. <text transform="matrix(1 0 0 1 446.2241 867.3298)" fill="#FFFFFF"
  4928. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4929. {{ ajaxData.nsspmwdk1 }}
  4930. </text>
  4931. <text transform="matrix(1 0 0 1 446.2241 893.1804)" fill="#FFFFFF"
  4932. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4933. {{ ajaxData.nssqmvardk1 }}
  4934. </text>
  4935. </g>
  4936. <g>
  4937. <text transform="matrix(1 0 0 1 528.4009 841.4773)" fill="#FFFFFF"
  4938. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4939. {{ ajaxData.nsslaajdb1 }}
  4940. </text>
  4941. <text transform="matrix(1 0 0 1 528.4009 867.3298)" fill="#FFFFFF"
  4942. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4943. {{ ajaxData.nsspmwjdb1 }}
  4944. </text>
  4945. <text transform="matrix(1 0 0 1 523.7441 893.1804)" fill="#FFFFFF"
  4946. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4947. {{ ajaxData.nssqmvarjdb1 }}
  4948. </text>
  4949. </g>
  4950. <g>
  4951. <text transform="matrix(1 0 0 1 766.502 841.4773)" fill="#FFFFFF"
  4952. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4953. {{ ajaxData.nsslaajd4 }}
  4954. </text>
  4955. <text transform="matrix(1 0 0 1 766.502 867.3298)" fill="#FFFFFF"
  4956. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4957. {{ ajaxData.nsspmwjd4 }}
  4958. </text>
  4959. <text transform="matrix(1 0 0 1 766.502 893.1804)" fill="#FFFFFF"
  4960. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4961. {{ ajaxData.nssqmvarjd4 }}
  4962. </text>
  4963. </g>
  4964. <g>
  4965. <text transform="matrix(1 0 0 1 852.2319 841.4773)" fill="#FFFFFF"
  4966. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4967. {{ ajaxData.nsslaajd5 }}
  4968. </text>
  4969. <text transform="matrix(1 0 0 1 852.2319 867.3298)" fill="#FFFFFF"
  4970. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4971. {{ ajaxData.nsspmwjd5 }}
  4972. </text>
  4973. <text transform="matrix(1 0 0 1 852.2319 893.1804)" fill="#FFFFFF"
  4974. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4975. {{ ajaxData.nssqmvarjd5 }}
  4976. </text>
  4977. </g>
  4978. <g>
  4979. <text transform="matrix(1 0 0 1 933.0967 841.4773)" fill="#FFFFFF"
  4980. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4981. {{ ajaxData.nsslaajd6 }}
  4982. </text>
  4983. <text transform="matrix(1 0 0 1 939.4097 867.3298)" fill="#FFFFFF"
  4984. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4985. {{ ajaxData.nsspmwjd6 }}
  4986. </text>
  4987. <text transform="matrix(1 0 0 1 939.4097 893.1804)" fill="#FFFFFF"
  4988. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4989. {{ ajaxData.nssqmvarjd6 }}
  4990. </text>
  4991. </g>
  4992. <g>
  4993. <text transform="matrix(1 0 0 1 1014.9648 841.4773)" fill="#FFFFFF"
  4994. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4995. {{ ajaxData.nsslaadr2 }}
  4996. </text>
  4997. <text transform="matrix(1 0 0 1 1019.9316 867.3298)" fill="#FFFFFF"
  4998. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4999. {{ ajaxData.nsspmwdr2 }}
  5000. </text>
  5001. <text transform="matrix(1 0 0 1 1014.9648 893.1804)" fill="#FFFFFF"
  5002. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5003. {{ ajaxData.nssqmvardr2 }}
  5004. </text>
  5005. </g>
  5006. <g>
  5007. <text transform="matrix(1 0 0 1 1100.6953 841.4773)" fill="#FFFFFF"
  5008. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5009. {{ ajaxData.nsslaadk2 }}
  5010. </text>
  5011. <text transform="matrix(1 0 0 1 1100.6953 867.3298)" fill="#FFFFFF"
  5012. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5013. {{ ajaxData.nsspmwdk2 }}
  5014. </text>
  5015. <text transform="matrix(1 0 0 1 1100.6953 893.1804)" fill="#FFFFFF"
  5016. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5017. {{ ajaxData.nssqmvardk2 }}
  5018. </text>
  5019. </g>
  5020. <g>
  5021. <text transform="matrix(1 0 0 1 1161.2754 841.4773)" fill="#FFFFFF"
  5022. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5023. {{ ajaxData.nsslaajdb2 }}
  5024. </text>
  5025. <text transform="matrix(1 0 0 1 1161.2754 867.3298)" fill="#FFFFFF"
  5026. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5027. {{ ajaxData.nsspmwjdb2 }}
  5028. </text>
  5029. <text transform="matrix(1 0 0 1 1161.2754 893.1804)" fill="#FFFFFF"
  5030. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5031. {{ ajaxData.nssqmvarjdb2 }}
  5032. </text>
  5033. </g>
  5034. <g>
  5035. <text transform="matrix(1 0 0 1 1411.5215 841.4773)" fill="#FFFFFF"
  5036. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5037. {{ ajaxData.nsslaajd7 }}
  5038. </text>
  5039. <text transform="matrix(1 0 0 1 1417.8359 867.3298)" fill="#FFFFFF"
  5040. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5041. {{ ajaxData.nsspmwjd7 }}
  5042. </text>
  5043. <text transform="matrix(1 0 0 1 1417.8359 893.1804)" fill="#FFFFFF"
  5044. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5045. {{ ajaxData.nssqmvarjd7 }}
  5046. </text>
  5047. </g>
  5048. <g>
  5049. <text transform="matrix(1 0 0 1 1503.5645 841.4773)" fill="#FFFFFF"
  5050. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5051. {{ ajaxData.nsslaajd8 }}
  5052. </text>
  5053. <text transform="matrix(1 0 0 1 1503.5645 867.3298)" fill="#FFFFFF"
  5054. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5055. {{ ajaxData.nsspmwjd8 }}
  5056. </text>
  5057. <text transform="matrix(1 0 0 1 1503.5645 893.1804)" fill="#FFFFFF"
  5058. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5059. {{ ajaxData.nssqmvarjd8 }}
  5060. </text>
  5061. </g>
  5062. <g>
  5063. <text transform="matrix(1 0 0 1 1584.4277 841.4773)" fill="#FFFFFF"
  5064. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5065. {{ ajaxData.nsslaajd9 }}
  5066. </text>
  5067. <text transform="matrix(1 0 0 1 1590.7422 867.3298)" fill="#FFFFFF"
  5068. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5069. {{ ajaxData.nsspmwjd9 }}
  5070. </text>
  5071. <text transform="matrix(1 0 0 1 1590.7422 893.1804)" fill="#FFFFFF"
  5072. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5073. {{ ajaxData.nssqmvarjd9 }}
  5074. </text>
  5075. </g>
  5076. <g>
  5077. <text transform="matrix(1 0 0 1 1666.2988 841.4773)" fill="#FFFFFF"
  5078. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5079. {{ ajaxData.nsslaadr3 }}
  5080. </text>
  5081. <text transform="matrix(1 0 0 1 1671.2656 867.3298)" fill="#FFFFFF"
  5082. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5083. {{ ajaxData.nsspmwdr3 }}
  5084. </text>
  5085. <text transform="matrix(1 0 0 1 1666.2988 893.1804)" fill="#FFFFFF"
  5086. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5087. {{ ajaxData.nssqmvardr3 }}
  5088. </text>
  5089. </g>
  5090. <g>
  5091. <text transform="matrix(1 0 0 1 1752.0273 841.4773)" fill="#FFFFFF"
  5092. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5093. {{ ajaxData.nsslaadk3 }}
  5094. </text>
  5095. <text transform="matrix(1 0 0 1 1752.0273 867.3298)" fill="#FFFFFF"
  5096. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5097. {{ ajaxData.nsspmwdk3 }}
  5098. </text>
  5099. <text transform="matrix(1 0 0 1 1752.0273 893.1804)" fill="#FFFFFF"
  5100. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5101. {{ ajaxData.nssqmvardk3 }}
  5102. </text>
  5103. </g>
  5104. <g>
  5105. <text transform="matrix(1 0 0 1 1812.6094 841.4773)" fill="#FFFFFF"
  5106. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5107. {{ ajaxData.nsslaajdb3 }}
  5108. </text>
  5109. <text transform="matrix(1 0 0 1 1812.6094 867.3298)" fill="#FFFFFF"
  5110. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5111. {{ ajaxData.nsspmwjdb3 }}
  5112. </text>
  5113. <text transform="matrix(1 0 0 1 1812.6094 893.1804)" fill="#FFFFFF"
  5114. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5115. {{ ajaxData.nssqmvarjdb3 }}
  5116. </text>
  5117. </g>
  5118. </g>
  5119. </svg>
  5120. </template>
  5121. </previewPicture>
  5122. </el-col>
  5123. </el-row>
  5124. </div>
  5125. </template>
  5126. <script>
  5127. import previewPicture from "../previewPicture.vue";
  5128. import { BoosterStation } from "./BoosterStation";
  5129. export default {
  5130. components: {
  5131. previewPicture
  5132. },
  5133. data() {
  5134. return {
  5135. green: '#02A434',
  5136. red: '#FF0000',
  5137. ajaxData: {},
  5138. interval: '',
  5139. };
  5140. },
  5141. created() {
  5142. this.boosterStation = new BoosterStation();
  5143. this.refreshTPData()
  5144. this.interval = setInterval(this.refreshTPData, 3000)
  5145. },
  5146. methods: {
  5147. closed() {
  5148. clearInterval(this.interval);
  5149. },
  5150. refreshTPData() {
  5151. this.boosterStation.getDatas("NSS_FDC",this.bindValue);
  5152. },
  5153. bindValue(msg){
  5154. this.ajaxData=msg;
  5155. },
  5156. }
  5157. };
  5158. </script>
  5159. <style scoped>
  5160. .center-bar {
  5161. position: relative;
  5162. box-sizing: border-box;
  5163. height: 90vh;
  5164. background-color: #000000;
  5165. padding-top: 10px;
  5166. padding-left: 5px;
  5167. padding-right: 5px;
  5168. padding-bottom: 5px;
  5169. margin-top: 0;
  5170. margin-right: 0;
  5171. margin-bottom: 3px;
  5172. margin-left: 0;
  5173. display: flex;
  5174. flex-direction: column;
  5175. }
  5176. .svg {
  5177. margin-left:5%;
  5178. width: 90%;
  5179. height: 90%;
  5180. }
  5181. </style>