123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401 |
- <template>
- <div>
- <el-row :gutter="10">
- <el-col :span="24">
- <previewPicture>
- <template v-slot:svg>
-
- <svg class="svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
- version="1.1" id="图层_1" x="0px" y="0px" width="1864.602px" height="860.264px"
- viewBox="0 0 1864.602 860.264" enable-background="new 0 0 1864.602 860.264"
- xml:space="preserve">
- <g xmlns="http://www.w3.org/2000/svg" id="other">
- <rect x="25.503" y="60.704" opacity="0.9" fill="#162320" enable-background="new " width="125.332" height="18.487"/>
- <rect x="25.503" y="81.2" opacity="0.9" fill="#162320" enable-background="new " width="125.332" height="18.487"/>
- <g>
- <text transform="matrix(1 0 0 1 52.8867 74.6533)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> la </text>
- <text transform="matrix(1 0 0 1 62.2124 74.6533)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (A) </text>
- <text transform="matrix(1 0 0 1 75.4121 74.6533)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 36.9829 93.0137)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> P(MVar): </text>
- </g>
- <rect x="25.503" y="101.63" opacity="0.9" fill="#162320" enable-background="new " width="125.332" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 36.9614 113.4424)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Q(MVar):</text>
- </g>
- <rect x="25.503" y="121.963" opacity="0.9" fill="#162320" enable-background="new " width="125.332" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 50.7578 133.7744)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> F </text>
- <text transform="matrix(1 0 0 1 56.8086 133.7744)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="9.6234"> (Hz) </text>
- <text transform="matrix(1 0 0 1 75.4121 133.7744)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="25.503" y="142.073" opacity="0.9" fill="#162320" enable-background="new " width="125.332" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 51.937 154.7451)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> COS: </text>
- </g>
- <rect x="698.836" y="60.704" opacity="0.9" fill="#162320" enable-background="new " width="125.331" height="18.487"/>
- <rect x="698.836" y="81.2" opacity="0.9" fill="#162320" enable-background="new " width="125.331" height="18.487"/>
- <g>
- <text transform="matrix(1 0 0 1 726.2192 74.6533)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> la </text>
- <text transform="matrix(1 0 0 1 735.5464 74.6533)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (A) </text>
- <text transform="matrix(1 0 0 1 748.7451 74.6533)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 720.3164 93.0137)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> P(MVar): </text>
- </g>
- <rect x="698.836" y="101.63" opacity="0.9" fill="#162320" enable-background="new " width="125.331" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 712.2935 113.4424)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Q(MVar): </text>
- </g>
- <rect x="698.836" y="121.963" opacity="0.9" fill="#162320" enable-background="new " width="125.331" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 724.0913 133.7744)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> F </text>
- <text transform="matrix(1 0 0 1 730.1421 133.7744)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="9.6234"> (Hz) </text>
- <text transform="matrix(1 0 0 1 748.7451 133.7744)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="698.836" y="142.073" opacity="0.9" fill="#162320" enable-background="new " width="125.331" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 725.2705 154.7451)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> COS: </text>
- </g>
- <rect x="276.011" y="115.347" fill="#981C55" width="21.724" height="3.047"/>
- <text transform="matrix(1 0 0 1 344.9946 121.9619)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <text transform="matrix(1 0 0 1 292.9946 146.4619)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -3 </text>
- <text transform="matrix(1 0 0 1 295.8076 185.6084)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 111 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="327.414" y1="121.406" x2="327.414" y2="109.108"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="318.951" y1="115.257" x2="327.414" y2="115.257"/>
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="330.8" y1="118.868" x2="330.8" y2="111.647"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="334.185" y1="117.458" x2="334.185" y2="113.058"/>
- </g>
- <rect x="276.011" y="207.847" fill="#981C55" width="21.724" height="3.047"/>
- <text transform="matrix(1 0 0 1 344.9946 214.4619)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -02 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="327.414" y1="213.906" x2="327.414" y2="201.608"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="318.951" y1="207.757" x2="327.414" y2="207.757"/>
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="330.8" y1="211.368" x2="330.8" y2="204.147"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="334.185" y1="209.958" x2="334.185" y2="205.558"/>
- </g>
- <rect x="253.27" y="158.571" fill="#981C55" width="21.727" height="3.05"/>
- <text transform="matrix(1 0 0 1 193.7446 165.3174)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 03 </text>
- <text transform="matrix(1 0 0 1 242.542 232.9033)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -1 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="223.591" y1="155.558" x2="223.591" y2="167.856"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="232.054" y1="161.708" x2="223.591" y2="161.708"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="220.205" y1="158.097" x2="220.205" y2="165.317"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="216.82" y1="159.507" x2="216.82" y2="163.906"/>
- </g>
- <rect x="253.27" y="258.276" fill="#981C55" width="21.727" height="3.047"/>
- <text transform="matrix(1 0 0 1 183.4946 265.0225)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 011 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="223.591" y1="255.263" x2="223.591" y2="267.562"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="232.054" y1="261.413" x2="223.591" y2="261.413"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="220.205" y1="257.802" x2="220.205" y2="265.022"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="216.82" y1="259.212" x2="216.82" y2="263.612"/>
- </g>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="361.547" y1="87.353" x2="361.547" y2="75.054"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="364.933" y1="84.813" x2="364.933" y2="77.593"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="368.318" y1="83.403" x2="368.318" y2="79.005"/>
- </g>
- </g>
- <rect x="303.809" y="71.271" fill="#981C55" width="2.605" height="19.884"/>
- <rect x="305.112" y="79.533" fill="#981C55" width="31.197" height="3.047"/>
- <rect x="319.722" y="66.383" fill="#981C55" width="2.632" height="13.593"/>
- <rect x="276.123" y="79.008" fill="#981C55" width="20.536" height="3.047"/>
- <rect x="344.995" y="79.681" fill="#42B0A8" width="16.55" height="3.047"/>
- <rect x="295.809" y="71.271" fill="#981C55" width="2.605" height="19.884"/>
- <rect x="335.693" y="71.271" fill="#981C55" width="2.604" height="19.884"/>
- <g>
- <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" cx="328.676" cy="43.969" r="8.804"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" cx="313.399" cy="43.969" r="8.804"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" points="331.643,48.677 328.477,45.546 325.526,48.677 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" x1="328.411" y1="45.463" x2="328.411" y2="39.941"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" points="316.364,48.337 313.198,45.204 310.247,48.337 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" x1="313.131" y1="45.121" x2="313.131" y2="39.601"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" cx="320.595" cy="57.58" r="8.803"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" points="323.56,61.948 320.394,58.815 317.443,61.948 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" x1="320.328" y1="58.733" x2="320.328" y2="53.211"/>
- </g>
- <rect x="274.488" y="38.61" fill="#981C55" width="3.05" height="88.56"/>
- <rect x="274.488" y="149.05" fill="#981C55" width="3.05" height="71.867"/>
- <rect x="274.488" y="241.05" fill="#981C55" width="3.05" height="45.117"/>
- <polygon fill="#981C55" points="269.899,39.337 276.019,26.317 282.123,39.342 "/>
- <rect x="343.693" y="71.262" fill="#981C55" width="2.604" height="19.884"/>
- <rect x="390.829" y="147.268" opacity="0.9" fill="#162320" enable-background="new " width="115.106" height="18.491"/>
- <rect x="390.829" y="167.765" opacity="0.9" fill="#162320" enable-background="new " width="115.106" height="18.49"/>
- <rect x="390.829" y="188.261" opacity="0.9" fill="#162320" enable-background="new " width="115.106" height="18.49"/>
- <rect x="390.829" y="208.757" opacity="0.9" fill="#162320" enable-background="new " width="115.106" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 407.7705 161.2188)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ua </text>
- <text transform="matrix(1 0 0 1 422.5703 161.2188)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 440.7466 161.2188)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 406.7925 179.5771)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ub </text>
- <text transform="matrix(1 0 0 1 422.5703 179.5771)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 440.7451 179.5771)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 408.355 201.8623)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uc </text>
- <text transform="matrix(1 0 0 1 422.5703 201.8623)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 440.7466 201.8623)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 400.4966 222.6973)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uab </text>
- <text transform="matrix(1 0 0 1 422.5703 222.6973)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 440.7451 222.6973)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="390.829" y="229.257" opacity="0.9" fill="#162320" enable-background="new " width="115.106" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 401.0806 243.1973)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ubc </text>
- <text transform="matrix(1 0 0 1 422.5703 243.1973)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 440.7451 243.1973)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="390.829" y="249.757" opacity="0.9" fill="#162320" enable-background="new " width="115.106" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 397.3872 263.6973)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> 3U0 </text>
- <text transform="matrix(1 0 0 1 422.5703 263.6973)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 440.7451 263.6973)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="34.55" y="419.649" opacity="0.9" fill="#162320" enable-background="new " width="115.11" height="18.49"/>
- <rect x="34.55" y="440.146" opacity="0.9" fill="#162320" enable-background="new " width="115.11" height="18.489"/>
- <rect x="34.55" y="460.643" opacity="0.9" fill="#162320" enable-background="new " width="115.11" height="18.49"/>
- <rect x="34.55" y="481.139" opacity="0.9" fill="#162320" enable-background="new " width="115.11" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 51.4917 433.6006)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ua </text>
- <text transform="matrix(1 0 0 1 66.291 433.6006)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 84.4668 433.6006)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 50.5127 451.96)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ub </text>
- <text transform="matrix(1 0 0 1 66.291 451.96)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 84.4663 451.96)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 52.0771 474.2441)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uc </text>
- <text transform="matrix(1 0 0 1 66.291 474.2441)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 84.4668 474.2441)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 44.2188 495.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uab </text>
- <text transform="matrix(1 0 0 1 66.291 495.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 84.4663 495.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="34.55" y="501.639" opacity="0.9" fill="#162320" enable-background="new " width="115.11" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 44.8027 515.5791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ubc </text>
- <text transform="matrix(1 0 0 1 66.291 515.5791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 84.4663 515.5791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="34.55" y="522.139" opacity="0.9" fill="#162320" enable-background="new " width="115.11" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 51.1079 536.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> U0 </text>
- <text transform="matrix(1 0 0 1 66.291 536.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 84.4663 536.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="765.439" y="419.649" opacity="0.9" fill="#162320" enable-background="new " width="107.108" height="18.49"/>
- <rect x="765.439" y="440.146" opacity="0.9" fill="#162320" enable-background="new " width="107.108" height="18.489"/>
- <rect x="765.439" y="460.643" opacity="0.9" fill="#162320" enable-background="new " width="107.108" height="18.49"/>
- <rect x="765.439" y="481.139" opacity="0.9" fill="#162320" enable-background="new " width="107.108" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 782.3813 433.6006)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ua </text>
- <text transform="matrix(1 0 0 1 797.1802 433.6006)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 815.356 433.6006)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 781.4019 451.96)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ub </text>
- <text transform="matrix(1 0 0 1 797.1802 451.96)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 815.355 451.96)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 782.9658 474.2441)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uc </text>
- <text transform="matrix(1 0 0 1 797.1802 474.2441)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 815.356 474.2441)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 775.1074 495.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uab </text>
- <text transform="matrix(1 0 0 1 797.1802 495.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 815.356 495.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="765.439" y="501.639" opacity="0.9" fill="#162320" enable-background="new " width="107.108" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 775.6914 514.5791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ubc </text>
- <text transform="matrix(1 0 0 1 797.1802 514.5791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 815.356 514.5791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="765.439" y="522.139" opacity="0.9" fill="#162320" enable-background="new " width="107.108" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 781.9976 536.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> U0 </text>
- <text transform="matrix(1 0 0 1 797.1802 536.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 815.355 536.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="990.725" y="419.649" opacity="0.9" fill="#162320" enable-background="new " width="107.109" height="18.49"/>
- <rect x="990.725" y="440.146" opacity="0.9" fill="#162320" enable-background="new " width="107.109" height="18.489"/>
- <rect x="990.725" y="460.643" opacity="0.9" fill="#162320" enable-background="new " width="107.109" height="18.49"/>
- <rect x="990.725" y="481.139" opacity="0.9" fill="#162320" enable-background="new " width="107.109" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 1007.6675 433.6006)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ua </text>
- <text transform="matrix(1 0 0 1 1022.4663 433.6006)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1040.6421 433.6006)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1006.689 451.96)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ub </text>
- <text transform="matrix(1 0 0 1 1022.4663 451.96)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1040.6421 451.96)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1008.2515 474.2441)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uc </text>
- <text transform="matrix(1 0 0 1 1022.4663 474.2441)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1040.6421 474.2441)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1000.3921 495.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uab </text>
- <text transform="matrix(1 0 0 1 1022.4663 495.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1040.6421 495.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="990.725" y="501.639" opacity="0.9" fill="#162320" enable-background="new " width="107.109" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 1000.9761 514.5791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ubc </text>
- <text transform="matrix(1 0 0 1 1022.4663 514.5791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1040.6421 514.5791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="990.725" y="522.139" opacity="0.9" fill="#162320" enable-background="new " width="107.109" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 1007.2827 536.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> U0 </text>
- <text transform="matrix(1 0 0 1 1022.4663 536.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1040.6421 536.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="1735.426" y="419.649" opacity="0.9" fill="#162320" enable-background="new " width="107.107" height="18.49"/>
- <rect x="1735.426" y="440.146" opacity="0.9" fill="#162320" enable-background="new " width="107.107" height="18.489"/>
- <rect x="1735.426" y="460.643" opacity="0.9" fill="#162320" enable-background="new " width="107.107" height="18.49"/>
- <rect x="1735.426" y="481.139" opacity="0.9" fill="#162320" enable-background="new " width="107.107" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 1752.3687 433.6006)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ua </text>
- <text transform="matrix(1 0 0 1 1767.1694 433.6006)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1785.3452 433.6006)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1751.3901 451.96)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ub </text>
- <text transform="matrix(1 0 0 1 1767.1675 451.96)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1785.3433 451.96)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1752.9526 474.2441)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uc </text>
- <text transform="matrix(1 0 0 1 1767.1694 474.2441)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1785.3452 474.2441)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1745.0952 495.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uab </text>
- <text transform="matrix(1 0 0 1 1767.1694 495.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1785.3433 495.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="1735.426" y="501.639" opacity="0.9" fill="#162320" enable-background="new " width="107.107" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 1745.6792 514.5791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ubc </text>
- <text transform="matrix(1 0 0 1 1767.1694 514.5791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1785.3433 514.5791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="1735.426" y="522.139" opacity="0.9" fill="#162320" enable-background="new " width="107.107" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 1751.9858 536.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> U0 </text>
- <text transform="matrix(1 0 0 1 1767.1694 536.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1785.3433 536.0791)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="939.323" y="115.347" fill="#981C55" width="21.727" height="3.047"/>
- <text transform="matrix(1 0 0 1 1008.3062 121.9619)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <text transform="matrix(1 0 0 1 956.3062 146.4619)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -3 </text>
- <text transform="matrix(1 0 0 1 959.1187 185.6084)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 121 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="990.725" y1="121.406" x2="990.725" y2="109.108"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="982.262" y1="115.257" x2="990.725" y2="115.257"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="994.112" y1="118.868" x2="994.112" y2="111.647"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="997.493" y1="117.458" x2="997.493" y2="113.058"/>
- </g>
- <rect x="939.323" y="207.847" fill="#981C55" width="21.727" height="3.047"/>
- <text transform="matrix(1 0 0 1 1008.3062 214.4619)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -02 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="990.725" y1="213.906" x2="990.725" y2="201.608"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="982.262" y1="207.757" x2="990.725" y2="207.757"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="994.112" y1="211.368" x2="994.112" y2="204.147"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="997.493" y1="209.958" x2="997.493" y2="205.558"/>
- </g>
- <rect x="916.578" y="158.571" fill="#981C55" width="21.727" height="3.05"/>
- <text transform="matrix(1 0 0 1 857.0552 165.3174)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 03 </text>
- <text transform="matrix(1 0 0 1 905.8535 232.9033)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -2 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="886.902" y1="155.558" x2="886.902" y2="167.856"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="895.365" y1="161.708" x2="886.902" y2="161.708"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="883.516" y1="158.097" x2="883.516" y2="165.317"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="880.131" y1="159.507" x2="880.131" y2="163.906"/>
- </g>
- <rect x="916.578" y="258.276" fill="#981C55" width="21.727" height="3.047"/>
- <text transform="matrix(1 0 0 1 846.8052 265.0225)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 012 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="886.902" y1="255.263" x2="886.902" y2="267.562"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="895.365" y1="261.413" x2="886.902" y2="261.413"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="883.516" y1="257.802" x2="883.516" y2="265.022"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="880.131" y1="259.212" x2="880.131" y2="263.612"/>
- </g>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1024.858" y1="87.353" x2="1024.858" y2="75.054"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1028.241" y1="84.813" x2="1028.241" y2="77.593"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1031.629" y1="83.403" x2="1031.629" y2="79.005"/>
- </g>
- </g>
- <rect x="967.118" y="71.271" fill="#981C55" width="2.604" height="19.884"/>
- <rect x="968.422" y="79.533" fill="#981C55" width="31.195" height="3.047"/>
- <rect x="983.032" y="66.383" fill="#981C55" width="2.631" height="13.593"/>
- <rect x="939.434" y="79.008" fill="#981C55" width="20.537" height="3.047"/>
- <rect x="1016.579" y="79.681" fill="#42B0A8" width="8.273" height="3.047"/>
- <rect x="1008.307" y="79.681" fill="#981C55" width="8.271" height="3.047"/>
- <rect x="959.118" y="71.271" fill="#981C55" width="2.604" height="19.884"/>
- <rect x="999.004" y="71.271" fill="#981C55" width="2.604" height="19.884"/>
- <g>
- <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" cx="991.987" cy="43.969" r="8.804"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" cx="976.709" cy="43.969" r="8.804"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" points="994.952,48.677 991.786,45.546 988.836,48.677 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" x1="991.723" y1="45.463" x2="991.723" y2="39.941"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" points="979.674,48.337 976.508,45.204 973.559,48.337 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" x1="976.442" y1="45.121" x2="976.442" y2="39.601"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" cx="983.907" cy="57.58" r="8.803"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" points="986.868,61.948 983.702,58.815 980.754,61.948 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" x1="983.639" y1="58.733" x2="983.639" y2="53.211"/>
- </g>
- <rect x="937.799" y="38.61" fill="#981C55" width="3.047" height="88.56"/>
- <rect x="937.799" y="149.05" fill="#981C55" width="3.047" height="71.867"/>
- <rect x="937.799" y="241.05" fill="#981C55" width="3.047" height="45.117"/>
- <polygon fill="#981C55" points="933.211,39.337 939.327,26.317 945.434,39.342 "/>
- <rect x="1007.004" y="71.262" fill="#981C55" width="2.604" height="19.884"/>
- <rect x="1171.36" y="147.268" opacity="0.9" fill="#162320" enable-background="new " width="115.107" height="18.491"/>
- <rect x="1171.36" y="167.765" opacity="0.9" fill="#162320" enable-background="new " width="115.107" height="18.49"/>
- <rect x="1171.36" y="188.261" opacity="0.9" fill="#162320" enable-background="new " width="115.107" height="18.49"/>
- <rect x="1171.36" y="208.757" opacity="0.9" fill="#162320" enable-background="new " width="115.107" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 1188.3022 161.2188)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ua </text>
- <text transform="matrix(1 0 0 1 1203.1011 161.2188)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1221.2769 161.2188)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1187.3218 179.5771)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ub </text>
- <text transform="matrix(1 0 0 1 1203.1011 179.5771)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1221.2749 179.5771)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1188.8862 201.8623)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uc </text>
- <text transform="matrix(1 0 0 1 1203.1011 201.8623)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1221.2769 201.8623)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1181.0269 222.6973)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uab </text>
- <text transform="matrix(1 0 0 1 1203.1011 222.6973)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1221.2769 222.6973)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="1171.36" y="229.257" opacity="0.9" fill="#162320" enable-background="new " width="115.107" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 1181.6108 243.1973)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ubc </text>
- <text transform="matrix(1 0 0 1 1203.1011 243.1973)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1221.2769 243.1973)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="1171.36" y="249.757" opacity="0.9" fill="#162320" enable-background="new " width="115.107" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 1187.9175 263.6973)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> U0 </text>
- <text transform="matrix(1 0 0 1 1203.1011 263.6973)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1221.2749 263.6973)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="1366.969" y="60.704" opacity="0.9" fill="#162320" enable-background="new " width="125.332" height="18.487"/>
- <rect x="1366.969" y="81.2" opacity="0.9" fill="#162320" enable-background="new " width="125.332" height="18.487"/>
- <g>
- <text transform="matrix(1 0 0 1 1394.353 74.6533)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> la </text>
- <text transform="matrix(1 0 0 1 1403.6792 74.6533)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (A) </text>
- <text transform="matrix(1 0 0 1 1416.8784 74.6533)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1378.4487 93.0137)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> P(MVar): </text>
- </g>
- <rect x="1366.969" y="101.63" opacity="0.9" fill="#162320" enable-background="new " width="125.332" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 1378.4272 113.4424)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Q(MVar): </text>
- </g>
- <rect x="1366.969" y="121.963" opacity="0.9" fill="#162320" enable-background="new " width="125.332" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 1392.2241 133.7744)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> F </text>
- <text transform="matrix(1 0 0 1 1398.2749 133.7744)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="9.6234"> (Hz) </text>
- <text transform="matrix(1 0 0 1 1416.8784 133.7744)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="1366.969" y="142.073" opacity="0.9" fill="#162320" enable-background="new " width="125.332" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 1393.4038 154.7451)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> COS: </text>
- </g>
- <rect x="1654.032" y="115.347" fill="#981C55" width="21.727" height="3.047"/>
- <text transform="matrix(1 0 0 1 1723.0151 121.9619)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <text transform="matrix(1 0 0 1 1671.0151 146.4619)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -3 </text>
- <text transform="matrix(1 0 0 1 1671.0151 188.2598)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 151 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1705.434" y1="121.406" x2="1705.434" y2="109.108"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1696.971" y1="115.257" x2="1705.434" y2="115.257"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1708.821" y1="118.868" x2="1708.821" y2="111.647"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1712.202" y1="117.458" x2="1712.202" y2="113.058"/>
- </g>
- <rect x="1654.032" y="207.847" fill="#981C55" width="21.727" height="3.047"/>
- <text transform="matrix(1 0 0 1 1721.7124 209.958)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -05 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1705.434" y1="213.906" x2="1705.434" y2="201.608"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1696.971" y1="207.757" x2="1705.434" y2="207.757"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1708.821" y1="211.368" x2="1708.821" y2="204.147"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1712.202" y1="209.958" x2="1712.202" y2="205.558"/>
- </g>
- <rect x="1631.29" y="158.571" fill="#981C55" width="21.725" height="3.05"/>
- <text transform="matrix(1 0 0 1 1571.7651 165.3174)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 03 </text>
- <text transform="matrix(1 0 0 1 1620.564 232.9033)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -5 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1601.612" y1="155.558" x2="1601.612" y2="167.856"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1610.073" y1="161.708" x2="1601.612" y2="161.708"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1598.225" y1="158.097" x2="1598.225" y2="165.317"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1594.84" y1="159.507" x2="1594.84" y2="163.906"/>
- </g>
- <rect x="1631.29" y="258.276" fill="#981C55" width="21.725" height="3.047"/>
- <text transform="matrix(1 0 0 1 1561.5151 265.0225)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 012 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1601.612" y1="255.263" x2="1601.612" y2="267.562"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1610.073" y1="261.413" x2="1601.612" y2="261.413"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1598.225" y1="257.802" x2="1598.225" y2="265.022"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1594.84" y1="259.212" x2="1594.84" y2="263.612"/>
- </g>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1739.567" y1="87.353" x2="1739.567" y2="75.054"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1742.95" y1="84.813" x2="1742.95" y2="77.593"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1746.338" y1="83.403" x2="1746.338" y2="79.005"/>
- </g>
- </g>
- <rect x="1681.827" y="71.271" fill="#981C55" width="2.604" height="19.884"/>
- <rect x="1683.131" y="79.533" fill="#981C55" width="31.195" height="3.047"/>
- <rect x="1697.741" y="66.383" fill="#981C55" width="2.631" height="13.593"/>
- <rect x="1654.143" y="79.008" fill="#981C55" width="20.537" height="3.047"/>
- <rect x="1731.29" y="79.681" fill="#42B0A8" width="8.271" height="3.047"/>
- <rect x="1723.016" y="79.681" fill="#981C55" width="8.273" height="3.047"/>
- <rect x="1673.827" y="71.271" fill="#981C55" width="2.604" height="19.884"/>
- <rect x="1713.713" y="71.271" fill="#981C55" width="2.604" height="19.884"/>
- <g>
- <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" cx="1706.696" cy="43.969" r="8.804"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" cx="1691.418" cy="43.969" r="8.804"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" points="1709.661,48.677 1706.495,45.546 1703.545,48.677 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" x1="1706.432" y1="45.463" x2="1706.432" y2="39.941"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" points="1694.383,48.337 1691.217,45.204 1688.268,48.337 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" x1="1691.151" y1="45.121" x2="1691.151" y2="39.601"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" cx="1698.616" cy="57.58" r="8.803"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" points="1701.577,61.948 1698.411,58.815 1695.463,61.948 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" x1="1698.348" y1="58.733" x2="1698.348" y2="53.211"/>
- </g>
- <rect x="1652.508" y="38.61" fill="#981C55" width="3.047" height="88.56"/>
- <rect x="1652.508" y="149.05" fill="#981C55" width="3.047" height="71.867"/>
- <rect x="1652.508" y="241.05" fill="#981C55" width="3.047" height="45.117"/>
- <polygon fill="#981C55" points="1647.92,39.337 1654.036,26.317 1660.143,39.342 "/>
- <rect x="1721.713" y="71.262" fill="#981C55" width="2.604" height="19.884"/>
- <rect x="1749.491" y="146.261" opacity="0.9" fill="#162320" enable-background="new " width="115.107" height="18.491"/>
- <rect x="1749.491" y="166.758" opacity="0.9" fill="#162320" enable-background="new " width="115.107" height="18.49"/>
- <rect x="1749.491" y="187.254" opacity="0.9" fill="#162320" enable-background="new " width="115.107" height="18.49"/>
- <rect x="1749.491" y="207.75" opacity="0.9" fill="#162320" enable-background="new " width="115.107" height="18.487"/>
- <g>
- <text transform="matrix(1 0 0 1 1766.4351 160.21)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ua </text>
- <text transform="matrix(1 0 0 1 1781.2339 160.21)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1799.4097 160.21)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1765.4546 178.5713)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ub </text>
- <text transform="matrix(1 0 0 1 1781.2339 178.5713)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1799.4077 178.5713)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1767.019 200.8564)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uc </text>
- <text transform="matrix(1 0 0 1 1781.2339 200.8564)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1799.4097 200.8564)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1759.1597 221.6904)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uab </text>
- <text transform="matrix(1 0 0 1 1781.2339 221.6904)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1799.4097 221.6904)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="1749.491" y="228.25" opacity="0.9" fill="#162320" enable-background="new " width="115.107" height="18.487"/>
- <g>
- <text transform="matrix(1 0 0 1 1759.7437 242.1904)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ubc </text>
- <text transform="matrix(1 0 0 1 1781.2339 242.1904)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1799.4097 242.1904)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="1749.491" y="248.75" opacity="0.9" fill="#162320" enable-background="new " width="115.107" height="18.487"/>
- <g>
- <text transform="matrix(1 0 0 1 1766.0503 262.6904)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> U0 </text>
- <text transform="matrix(1 0 0 1 1781.2339 262.6904)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1799.4097 262.6904)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="36.576" y="285.917" fill="#981C55" width="491.607" height="2.25"/>
- <rect x="36.576" y="576.417" fill="#CAA51A" width="482.275" height="2.25"/>
- <text transform="matrix(0.9268 0 0 1 36.5757 282.9473)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="13.2867"> 110kV Ⅰ母线 </text>
- <rect x="558.627" y="285.917" fill="#981C55" width="757.229" height="2.25"/>
- <text transform="matrix(0.9268 0 0 1 565.7075 282.9473)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="13.2867"> 110kV Ⅱ母线 </text>
- <rect x="1352.676" y="285.917" fill="#981C55" width="511.926" height="2.25"/>
- <text transform="matrix(0.9268 0 0 1 1359.7563 282.9473)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="13.2867"> 110kV Ⅴ母线 </text>
- <text transform="matrix(0.9268 0 0 1 36.5757 572.2803)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="13.2867"> 35kV Ⅰ母线 </text>
- <g>
- <rect x="192.145" y="427.35" fill="#44426C" width="72.314" height="20.818"/>
- <text transform="matrix(1 0 0 1 208.04 441.9014)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> #1主变 </text>
- </g>
- <rect x="274.564" y="332.698" fill="#971C55" width="3.047" height="57.188"/>
- <rect x="274.564" y="409.961" fill="#971C55" width="3.047" height="33.401"/>
- <text transform="matrix(1 0 0 1 296.8076 329.251)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -1 </text>
- <text transform="matrix(1 0 0 1 296.8076 361.8809)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 101 </text>
- <text transform="matrix(1 0 0 1 294.2192 400.4854)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -3 </text>
- <text transform="matrix(1 0 0 1 181.0825 346.7334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -02 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="223.071" y1="338.241" x2="223.071" y2="350.543"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="231.532" y1="344.395" x2="223.071" y2="344.395"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="219.683" y1="340.781" x2="219.683" y2="348.004"/>
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="216.3" y1="342.193" x2="216.3" y2="346.594"/>
- </g>
- <rect x="275.579" y="286.74" fill="#971C55" width="3.047" height="23.438"/>
- <rect x="253.653" y="341.727" fill="#971C55" width="21.158" height="3.048"/>
- <text transform="matrix(1 0 0 1 184.4946 384.1895)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -03 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="224.071" y1="375.698" x2="224.071" y2="387.996"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="232.532" y1="381.853" x2="224.071" y2="381.853"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="220.683" y1="378.239" x2="220.683" y2="385.46"/>
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="217.3" y1="379.649" x2="217.3" y2="384.05"/>
- </g>
- <rect x="254.653" y="379.183" fill="#971C55" width="21.158" height="3.048"/>
- <text transform="matrix(1 0 0 1 344.7539 430.0928)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <rect x="275.631" y="424.929" fill="#971C55" width="21.158" height="3.047"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="328.273" y1="433.94" x2="328.273" y2="421.642"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="319.811" y1="427.792" x2="328.273" y2="427.792"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="331.66" y1="431.401" x2="331.66" y2="424.181"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="335.045" y1="429.99" x2="335.045" y2="425.593"/>
- </g>
-
- <rect x="281.131" y="430.667" transform="matrix(-0.3449 -0.9387 0.9387 -0.3449 -53.1934 883.9585)" fill="#A9165D" width="1.506" height="59.751"/>
-
- <rect x="300.243" y="454.029" transform="matrix(0.4799 -0.8773 0.8773 0.4799 -260.5811 511.633)" fill="#CAA51A" width="1.943" height="43.116"/>
- <polygon fill="#A9165D" points="307.298,444.773 321.768,445.219 312.179,456.063 "/>
- <rect x="318.058" y="485.243" fill="#CAA51A" width="2.605" height="18.127"/>
- <rect x="318.058" y="525.24" fill="#3EB9B0" width="2.605" height="4.479"/>
- <g>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="313.101" y1="530.704" x2="325.618" y2="530.704"/>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="315.272" y1="534.027" x2="323.448" y2="534.027"/>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="317.058" y1="537.531" x2="321.661" y2="537.531"/>
- </g>
- <polygon fill="#CAA51A" points="322.605,503.266 319.356,512.493 316.114,503.264 "/>
-
- <rect x="314.245" y="493.538" fill="none" stroke="#CAA51A" stroke-width="2" stroke-miterlimit="10" width="10.229" height="32.142"/>
- <g>
- <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="277.573" cy="472.033" r="11.214"/>
- <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="277.576" cy="453.575" r="11.213"/>
- <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="273.562,477.168 277.594,473.18 281.353,477.168 "/>
-
- <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="277.678" y1="473.072" x2="277.678" y2="466.038"/>
- <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="273.562,459.141 277.594,455.152 281.353,459.141 "/>
-
- <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="277.678" y1="455.047" x2="277.678" y2="448.014"/>
- <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="293.034" cy="462.74" r="11.212"/>
- <polygon fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="290.796,466.895 290.796,458.592 297.644,462.969 "/>
- </g>
- <polyline fill="#CAA51A" points="274.106,560.935 274.106,551.642 276.356,551.642 276.356,560.935 "/>
- <polyline fill="#CAA51A" points="426.605,576.417 426.605,558.614 428.855,558.614 428.855,576.417 "/>
- <polyline fill="#CAA51A" points="275.424,558.614 428.855,558.614 428.855,560.864 275.424,560.864 "/>
- <rect x="274.106" y="483.352" fill="#CAA51A" width="2.25" height="12.095"/>
- <rect x="195.345" y="452.59" fill="#971C55" width="69.889" height="3.049"/>
- <rect x="195.345" y="452.59" fill="#971C55" width="3.047" height="17.438"/>
- <text transform="matrix(1 0 0 1 240.4663 529.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 301 </text>
- <text transform="matrix(1 0 0 1 154.4995 488.6709)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 011-0 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="191.863" y1="501.764" x2="204.162" y2="501.764"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="198.013" y1="493.299" x2="198.013" y2="501.764"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="194.401" y1="505.146" x2="201.623" y2="505.146"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="195.812" y1="508.531" x2="200.213" y2="508.531"/>
- </g>
- <rect x="222.385" y="452.383" fill="#971C55" width="2.604" height="21.637"/>
- <rect x="222.385" y="492.885" fill="#40B0A7" width="2.604" height="4.479"/>
- <g>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="217.428" y1="498.354" x2="229.946" y2="498.354"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="219.601" y1="501.672" x2="227.776" y2="501.672"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="221.385" y1="505.176" x2="225.989" y2="505.176"/>
- </g>
- <rect x="245.424" y="493.323" fill="#40B0A7" width="2.604" height="4.479"/>
- <g>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="240.468" y1="498.793" x2="252.985" y2="498.793"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="242.64" y1="502.111" x2="250.813" y2="502.111"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="244.425" y1="505.615" x2="249.028" y2="505.615"/>
- </g>
- <polygon fill="#971C55" points="226.933,473.906 223.685,483.143 220.44,473.906 "/>
- <polygon fill="#971C55" points="239.104,493.281 246.733,480.139 254.349,493.284 "/>
- <rect x="245.424" y="455.836" fill="#971C55" width="2.604" height="4.479"/>
- <polygon fill="#971C55" points="254.349,460.355 246.719,473.495 239.104,460.352 "/>
-
- <rect x="218.573" y="464.188" fill="none" stroke="#A01A59" stroke-width="2.3" stroke-miterlimit="10" width="10.229" height="29.142"/>
- <g>
- <rect x="609.338" y="427.35" fill="#44426C" width="72.313" height="20.818"/>
- <text transform="matrix(1 0 0 1 625.2329 441.9014)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> #2主变 </text>
- </g>
- <rect x="688.504" y="332.698" fill="#971C55" width="3.047" height="57.188"/>
- <rect x="688.504" y="409.961" fill="#971C55" width="3.047" height="33.401"/>
- <text transform="matrix(1 0 0 1 710.7476 329.251)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -2 </text>
- <text transform="matrix(1 0 0 1 710.7476 361.8809)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 102 </text>
- <text transform="matrix(1 0 0 1 708.1587 400.4854)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -3 </text>
- <text transform="matrix(1 0 0 1 595.022 346.7334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -02 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="637.011" y1="338.241" x2="637.011" y2="350.543"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="645.472" y1="344.395" x2="637.011" y2="344.395"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="633.62" y1="340.781" x2="633.62" y2="348.004"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="630.24" y1="342.193" x2="630.24" y2="346.594"/>
- </g>
- <rect x="689.521" y="286.74" fill="#971C55" width="3.047" height="23.438"/>
- <rect x="667.593" y="341.727" fill="#971C55" width="21.158" height="3.048"/>
- <text transform="matrix(1 0 0 1 598.4341 384.1895)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -03 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="638.011" y1="375.698" x2="638.011" y2="387.996"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="646.472" y1="381.853" x2="638.011" y2="381.853"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="634.62" y1="378.239" x2="634.62" y2="385.46"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="631.24" y1="379.649" x2="631.24" y2="384.05"/>
- </g>
- <rect x="668.593" y="379.183" fill="#971C55" width="21.158" height="3.048"/>
- <text transform="matrix(1 0 0 1 749.9839 430.0928)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <rect x="689.571" y="424.929" fill="#971C55" width="21.156" height="3.047"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="742.213" y1="433.94" x2="742.213" y2="421.642"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="733.749" y1="427.792" x2="742.213" y2="427.792"/>
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="745.6" y1="431.401" x2="745.6" y2="424.181"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="748.985" y1="429.99" x2="748.985" y2="425.593"/>
- </g>
-
- <rect x="695.09" y="430.663" transform="matrix(-0.3445 -0.9388 0.9388 -0.3445 503.2133 1272.4438)" fill="#A9165D" width="1.505" height="59.754"/>
-
- <rect x="714.175" y="454.027" transform="matrix(0.4807 -0.8769 0.8769 0.4807 -45.6499 874.0866)" fill="#CAA51A" width="1.942" height="43.114"/>
- <polygon fill="#A9165D" points="721.238,444.773 735.708,445.219 726.116,456.063 "/>
- <rect x="731.995" y="485.243" fill="#CAA51A" width="2.604" height="18.127"/>
- <rect x="731.995" y="525.24" fill="#3EB9B0" width="2.604" height="4.479"/>
- <g>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="727.038" y1="530.704" x2="739.558" y2="530.704"/>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="729.212" y1="534.027" x2="737.388" y2="534.027"/>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="730.995" y1="537.531" x2="735.602" y2="537.531"/>
- </g>
- <polygon fill="#CAA51A" points="736.545,503.266 733.296,512.493 730.054,503.264 "/>
-
- <rect x="728.186" y="493.538" fill="none" stroke="#CAA51A" stroke-width="2" stroke-miterlimit="10" width="10.229" height="32.142"/>
- <g>
- <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="691.513" cy="472.033" r="11.214"/>
- <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="691.516" cy="453.575" r="11.213"/>
- <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="687.501,477.168 691.531,473.18 695.292,477.168 "/>
-
- <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="691.615" y1="473.072" x2="691.615" y2="466.038"/>
- <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="687.501,459.141 691.531,455.152 695.292,459.141 "/>
-
- <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="691.615" y1="455.047" x2="691.615" y2="448.014"/>
- <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="706.974" cy="462.74" r="11.212"/>
- <polygon fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="704.736,466.895 704.736,458.592 711.583,462.969 "/>
- </g>
- <polyline fill="#CAA51A" points="688.046,560.935 688.046,551.642 690.296,551.642 690.296,560.935 "/>
- <polyline fill="#CAA51A" points="1220.313,576.417 1220.313,564.755 1222.563,564.755 1222.563,576.417 "/>
- <polyline fill="#CAA51A" points="931.071,576.417 931.071,558.614 933.321,558.614 933.321,576.417 "/>
- <polyline fill="#CAA51A" points="1836.104,579.333 1836.104,559.335 1838.354,559.335 1838.354,579.333 "/>
- <polyline fill="#CAA51A" points="689.364,558.614 932.329,558.614 932.329,560.864 689.364,560.864 "/>
- <polyline fill="#CAA51A" points="1653.155,560.935 1653.155,551.642 1655.405,551.642 1655.405,560.935 "/>
- <polyline fill="#CAA51A" points="1654.471,559.335 1837.229,559.335 1837.229,561.269 1654.471,561.269 "/>
- <rect x="688.046" y="483.352" fill="#CAA51A" width="2.25" height="12.095"/>
- <rect x="609.282" y="452.59" fill="#971C55" width="69.892" height="3.049"/>
- <rect x="609.282" y="452.59" fill="#971C55" width="3.047" height="17.438"/>
- <text transform="matrix(1 0 0 1 654.4067 529.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 302 </text>
- <text transform="matrix(1 0 0 1 568.4409 488.6709)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 012-0 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="605.803" y1="501.764" x2="618.102" y2="501.764"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="611.95" y1="493.299" x2="611.95" y2="501.764"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="608.341" y1="505.146" x2="615.563" y2="505.146"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="609.751" y1="508.531" x2="614.153" y2="508.531"/>
- </g>
- <rect x="636.323" y="452.383" fill="#971C55" width="2.604" height="21.637"/>
- <rect x="636.323" y="492.885" fill="#40B0A7" width="2.604" height="4.479"/>
- <g>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="631.365" y1="498.354" x2="643.886" y2="498.354"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="633.538" y1="501.672" x2="641.716" y2="501.672"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="635.323" y1="505.176" x2="639.929" y2="505.176"/>
- </g>
- <rect x="659.364" y="493.323" fill="#40B0A7" width="2.604" height="4.479"/>
- <g>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="654.406" y1="498.793" x2="666.925" y2="498.793"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="656.577" y1="502.111" x2="664.753" y2="502.111"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="658.365" y1="505.615" x2="662.968" y2="505.615"/>
- </g>
- <polygon fill="#971C55" points="640.87,473.906 637.624,483.143 634.38,473.906 "/>
- <polygon fill="#971C55" points="653.044,493.281 660.673,480.139 668.286,493.284 "/>
- <rect x="659.364" y="455.836" fill="#971C55" width="2.604" height="4.479"/>
- <polygon fill="#971C55" points="668.286,460.355 660.656,473.495 653.044,460.352 "/>
-
- <rect x="632.513" y="464.188" fill="none" stroke="#A01A59" stroke-width="2.3" stroke-miterlimit="10" width="10.229" height="29.142"/>
- <g>
- <rect x="1142.733" y="427.35" fill="#44426C" width="72.313" height="20.818"/>
- <text transform="matrix(1 0 0 1 1158.6265 441.9014)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> #3主变 </text>
- </g>
- <rect x="1221.897" y="332.698" fill="#971C55" width="3.049" height="57.188"/>
- <rect x="1221.897" y="409.961" fill="#971C55" width="3.049" height="33.401"/>
- <text transform="matrix(1 0 0 1 1244.1421 329.251)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -2 </text>
- <text transform="matrix(1 0 0 1 1244.1421 361.8809)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 103 </text>
- <text transform="matrix(1 0 0 1 1241.5522 400.4854)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -3 </text>
- <text transform="matrix(1 0 0 1 1128.4155 346.7334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -02 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1170.405" y1="338.241" x2="1170.405" y2="350.543"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1178.866" y1="344.395" x2="1170.405" y2="344.395"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1167.016" y1="340.781" x2="1167.016" y2="348.004"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1163.633" y1="342.193" x2="1163.633" y2="346.594"/>
- </g>
- <rect x="1222.909" y="286.74" fill="#971C55" width="3.049" height="23.438"/>
- <rect x="1200.987" y="341.727" fill="#971C55" width="21.156" height="3.048"/>
- <text transform="matrix(1 0 0 1 1131.8276 384.1895)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -03 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1171.405" y1="375.698" x2="1171.405" y2="387.996"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1179.866" y1="381.853" x2="1171.405" y2="381.853"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1168.016" y1="378.239" x2="1168.016" y2="385.46"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1164.633" y1="379.649" x2="1164.633" y2="384.05"/>
- </g>
- <rect x="1201.987" y="379.183" fill="#971C55" width="21.156" height="3.048"/>
- <text transform="matrix(1 0 0 1 1283.3784 430.0928)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <rect x="1222.965" y="424.929" fill="#971C55" width="21.154" height="3.047"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1275.608" y1="433.94" x2="1275.608" y2="421.642"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1267.145" y1="427.792" x2="1275.608" y2="427.792"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1278.991" y1="431.401" x2="1278.991" y2="424.181"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1282.379" y1="429.99" x2="1282.379" y2="425.593"/>
- </g>
-
- <rect x="1228.492" y="430.613" transform="matrix(-0.3449 -0.9387 0.9387 -0.3449 1220.9297 1773.1288)" fill="#A9165D" width="1.506" height="59.751"/>
-
- <rect x="1247.495" y="453.984" transform="matrix(0.4786 -0.878 0.878 0.4786 233.4398 1344.1743)" fill="#CAA51A" width="1.939" height="43.111"/>
- <polygon fill="#A9165D" points="1254.631,444.773 1269.102,445.219 1259.512,456.063 "/>
- <rect x="1265.391" y="485.243" fill="#CAA51A" width="2.604" height="18.127"/>
- <rect x="1265.391" y="525.24" fill="#3EB9B0" width="2.604" height="4.479"/>
- <g>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="1260.434" y1="530.704" x2="1272.948" y2="530.704"/>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="1262.604" y1="534.027" x2="1270.782" y2="534.027"/>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="1264.391" y1="537.531" x2="1268.991" y2="537.531"/>
- </g>
- <polygon fill="#CAA51A" points="1269.938,503.266 1266.688,512.493 1263.448,503.264 "/>
-
- <rect x="1261.575" y="493.538" fill="none" stroke="#CAA51A" stroke-width="2" stroke-miterlimit="10" width="10.229" height="32.142"/>
- <g>
- <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="1224.907" cy="472.033" r="11.214"/>
- <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="1224.907" cy="453.575" r="11.213"/>
- <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="1220.895,477.168 1224.928,473.18 1228.686,477.168 "/>
-
- <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="1225.012" y1="473.072" x2="1225.012" y2="466.038"/>
- <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="1220.895,459.141 1224.928,455.152 1228.686,459.141 "/>
-
- <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="1225.012" y1="455.047" x2="1225.012" y2="448.014"/>
- <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="1240.366" cy="462.74" r="11.212"/>
- <polygon fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="1238.129,466.895 1238.129,458.592 1244.977,462.969 "/>
- </g>
- <rect x="1221.438" y="483.352" fill="#CAA51A" width="2.25" height="25.206"/>
- <rect x="1142.678" y="452.59" fill="#971C55" width="69.889" height="3.049"/>
- <rect x="1142.678" y="452.59" fill="#971C55" width="3.047" height="17.438"/>
- <text transform="matrix(1 0 0 1 1187.8003 529.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 303 </text>
- <text transform="matrix(1 0 0 1 1101.8335 488.6709)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 013-0 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1139.198" y1="501.764" x2="1151.493" y2="501.764"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1145.346" y1="493.299" x2="1145.346" y2="501.764"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1141.735" y1="505.146" x2="1148.956" y2="505.146"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1143.145" y1="508.531" x2="1147.547" y2="508.531"/>
- </g>
- <rect x="1169.719" y="452.383" fill="#971C55" width="2.604" height="21.637"/>
- <rect x="1169.719" y="492.885" fill="#40B0A7" width="2.604" height="4.479"/>
- <g>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1164.762" y1="498.354" x2="1177.28" y2="498.354"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1166.934" y1="501.672" x2="1175.11" y2="501.672"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1168.719" y1="505.176" x2="1173.323" y2="505.176"/>
- </g>
- <rect x="1192.758" y="493.323" fill="#40B0A7" width="2.604" height="4.479"/>
- <g>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1187.801" y1="498.793" x2="1200.319" y2="498.793"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1189.973" y1="502.111" x2="1198.145" y2="502.111"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1191.758" y1="505.615" x2="1196.362" y2="505.615"/>
- </g>
- <polygon fill="#971C55" points="1174.266,473.906 1171.018,483.143 1167.772,473.906 "/>
- <polygon fill="#971C55" points="1186.438,493.281 1194.067,480.139 1201.682,493.284 "/>
- <rect x="1192.758" y="455.836" fill="#971C55" width="2.604" height="4.479"/>
- <polygon fill="#971C55" points="1201.682,460.355 1194.053,473.495 1186.438,460.352 "/>
-
- <rect x="1165.907" y="464.188" fill="none" stroke="#A01A59" stroke-width="2.3" stroke-miterlimit="10" width="10.229" height="29.142"/>
- <g>
- <rect x="1573.848" y="427.35" fill="#44426C" width="72.313" height="20.818"/>
- <text transform="matrix(1 0 0 1 1589.7417 441.9014)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> #4主变 </text>
- </g>
- <rect x="1653.014" y="332.698" fill="#971C55" width="3.047" height="57.188"/>
- <rect x="1653.014" y="409.961" fill="#971C55" width="3.047" height="33.401"/>
- <text transform="matrix(1 0 0 1 1675.2573 329.251)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -2 </text>
- <text transform="matrix(1 0 0 1 1675.2573 361.8809)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 104 </text>
- <text transform="matrix(1 0 0 1 1672.6675 400.4854)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -3 </text>
- <text transform="matrix(1 0 0 1 1559.5308 346.7334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -05 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1601.52" y1="338.241" x2="1601.52" y2="350.543"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1609.979" y1="344.395" x2="1601.52" y2="344.395"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1598.131" y1="340.781" x2="1598.131" y2="348.004"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1594.745" y1="342.193" x2="1594.745" y2="346.594"/>
- </g>
- <rect x="1654.028" y="286.74" fill="#971C55" width="3.047" height="23.438"/>
- <rect x="1632.102" y="341.727" fill="#971C55" width="21.158" height="3.048"/>
- <text transform="matrix(1 0 0 1 1562.9429 384.1895)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -03 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1602.52" y1="375.698" x2="1602.52" y2="387.996"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1610.979" y1="381.853" x2="1602.52" y2="381.853"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1599.131" y1="378.239" x2="1599.131" y2="385.46"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1595.745" y1="379.649" x2="1595.745" y2="384.05"/>
- </g>
- <rect x="1633.102" y="379.183" fill="#971C55" width="21.158" height="3.048"/>
- <text transform="matrix(1 0 0 1 1714.4937 430.0928)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <rect x="1654.077" y="424.929" fill="#971C55" width="21.158" height="3.047"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1706.723" y1="433.94" x2="1706.723" y2="421.642"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1698.26" y1="427.792" x2="1706.723" y2="427.792"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1710.11" y1="431.401" x2="1710.11" y2="424.181"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1713.491" y1="429.99" x2="1713.491" y2="425.593"/>
- </g>
-
- <rect x="1659.625" y="430.493" transform="matrix(-0.3449 -0.9387 0.9387 -0.3449 1800.8594 2177.6484)" fill="#A9165D" width="1.506" height="59.746"/>
-
- <rect x="1678.71" y="454.01" transform="matrix(0.4801 -0.8772 0.8772 0.4801 456.0629 1720.656)" fill="#CAA51A" width="1.94" height="43.111"/>
- <polygon fill="#A9165D" points="1685.743,444.773 1700.217,445.219 1690.625,456.063 "/>
- <rect x="1696.506" y="485.243" fill="#CAA51A" width="2.604" height="18.127"/>
- <rect x="1696.506" y="525.24" fill="#3EB9B0" width="2.604" height="4.479"/>
- <g>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="1691.549" y1="530.704" x2="1704.067" y2="530.704"/>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="1693.721" y1="534.027" x2="1701.895" y2="534.027"/>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="1695.506" y1="537.531" x2="1700.11" y2="537.531"/>
- </g>
- <polygon fill="#CAA51A" points="1701.055,503.266 1697.805,512.493 1694.563,503.264 "/>
-
- <rect x="1692.694" y="493.538" fill="none" stroke="#CAA51A" stroke-width="2" stroke-miterlimit="10" width="10.229" height="32.142"/>
- <g>
- <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="1656.02" cy="472.033" r="11.214"/>
- <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="1656.026" cy="453.575" r="11.213"/>
- <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="1652.01,477.168 1656.042,473.18 1659.801,477.168 "/>
-
- <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="1656.125" y1="473.072" x2="1656.125" y2="466.038"/>
- <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="1652.01,459.141 1656.042,455.152 1659.801,459.141 "/>
-
- <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="1656.125" y1="455.047" x2="1656.125" y2="448.014"/>
- <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="1671.483" cy="462.74" r="11.212"/>
- <polygon fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="1669.241,466.895 1669.241,458.592 1676.092,462.969 "/>
- </g>
- <rect x="1652.555" y="483.352" fill="#CAA51A" width="2.25" height="12.604"/>
- <rect x="1573.792" y="452.59" fill="#971C55" width="69.891" height="3.049"/>
- <rect x="1573.792" y="452.59" fill="#971C55" width="3.049" height="17.438"/>
- <text transform="matrix(1 0 0 1 1618.9155 529.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 304 </text>
- <text transform="matrix(1 0 0 1 1532.9487 488.6709)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 013-0 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1570.313" y1="501.764" x2="1582.612" y2="501.764"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1576.461" y1="493.299" x2="1576.461" y2="501.764"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1572.85" y1="505.146" x2="1580.073" y2="505.146"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1574.26" y1="508.531" x2="1578.659" y2="508.531"/>
- </g>
- <rect x="1600.833" y="452.383" fill="#971C55" width="2.604" height="21.637"/>
- <rect x="1600.833" y="492.885" fill="#40B0A7" width="2.604" height="4.479"/>
- <g>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1595.875" y1="498.354" x2="1608.395" y2="498.354"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1598.049" y1="501.672" x2="1606.225" y2="501.672"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1599.833" y1="505.176" x2="1604.438" y2="505.176"/>
- </g>
- <rect x="1623.87" y="493.323" fill="#40B0A7" width="2.605" height="4.479"/>
- <g>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1618.915" y1="498.793" x2="1631.434" y2="498.793"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1621.088" y1="502.111" x2="1629.262" y2="502.111"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1622.87" y1="505.615" x2="1627.477" y2="505.615"/>
- </g>
- <polygon fill="#971C55" points="1605.381,473.906 1602.133,483.143 1598.889,473.906 "/>
- <polygon fill="#971C55" points="1617.553,493.281 1625.182,480.139 1632.797,493.284 "/>
- <rect x="1623.87" y="455.836" fill="#971C55" width="2.605" height="4.479"/>
- <polygon fill="#971C55" points="1632.797,460.355 1625.167,473.495 1617.553,460.352 "/>
-
- <rect x="1597.02" y="464.188" fill="none" stroke="#A01A59" stroke-width="2.3" stroke-miterlimit="10" width="10.23" height="29.142"/>
- <rect x="444.788" y="287.194" fill="#971C55" width="3.05" height="21.63"/>
- <rect x="446.533" y="304.244" fill="#971C55" width="15.611" height="3.05"/>
- <text transform="matrix(1 0 0 1 484.186 327.3975)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <text transform="matrix(1 0 0 1 489.145 368.3848)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 09 </text>
- <text transform="matrix(1 0 0 1 401.686 332.2783)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 11-9 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="491.824" y1="310.308" x2="491.824" y2="298.009"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="483.364" y1="304.156" x2="491.824" y2="304.156"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="495.213" y1="307.77" x2="495.213" y2="300.548"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="498.598" y1="306.358" x2="498.598" y2="301.958"/>
- </g>
- <rect x="421.26" y="343.472" fill="#971C55" width="40.886" height="3.047"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="491.824" y1="349.532" x2="491.824" y2="337.236"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="483.364" y1="343.384" x2="491.824" y2="343.384"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="495.213" y1="346.994" x2="495.213" y2="339.775"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="498.598" y1="345.587" x2="498.598" y2="341.186"/>
- </g>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="349.922" y1="339.366" x2="349.922" y2="351.669"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="346.536" y1="341.906" x2="346.536" y2="349.13"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="343.15" y1="343.318" x2="343.15" y2="347.718"/>
- </g>
- </g>
- <rect x="443.711" y="334.896" fill="#971C55" width="2.604" height="31.938"/>
- <rect x="419.957" y="334.896" fill="#C3A121" width="2.604" height="19.884"/>
- <rect x="379.073" y="334.896" fill="#C3A121" width="2.604" height="19.884"/>
- <rect x="382.295" y="343.472" fill="#971C55" width="30.279" height="3.047"/>
- <rect x="364.163" y="344.663" fill="#971C55" width="1.98" height="30.279"/>
- <rect x="399.275" y="344.663" fill="#971C55" width="1.983" height="20.857"/>
- <rect x="364.163" y="372.966" fill="#971C55" width="36.73" height="1.979"/>
- <rect x="358.387" y="343.994" fill="#971C55" width="13.536" height="3.05"/>
- <rect x="349.923" y="343.994" fill="#42B0A8" width="8.463" height="3.05"/>
- <rect x="371.073" y="334.896" fill="#C3A121" width="2.604" height="19.884"/>
- <rect x="443.711" y="388.7" fill="#40B0A7" width="2.604" height="4.479"/>
- <g>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="438.754" y1="394.169" x2="451.271" y2="394.169"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="440.926" y1="397.488" x2="449.102" y2="397.488"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="442.711" y1="400.991" x2="447.313" y2="400.991"/>
- </g>
- <polygon fill="#971C55" points="448.258,366.727 445.01,375.954 441.767,366.724 "/>
-
- <rect x="439.896" y="357.003" fill="none" stroke="#A01A59" stroke-width="2.3" stroke-miterlimit="10" width="10.229" height="32.14"/>
- <rect x="411.957" y="334.896" fill="#C3A121" width="2.604" height="19.884"/>
- <g>
- <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" cx="408.898" cy="387.719" r="8.805"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" cx="393.621" cy="387.719" r="8.805"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" points="405.748,383.691 408.914,386.822 411.865,383.691 "/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" points="397.439,370.508 400.605,373.639 403.557,370.508 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" x1="408.98" y1="386.906" x2="408.98" y2="392.428"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" cx="408.898" cy="402.231" r="8.804"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" cx="393.621" cy="402.231" r="8.804"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" points="405.748,398.202 408.914,401.336 411.865,398.202 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" x1="408.98" y1="401.418" x2="408.98" y2="406.939"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" points="390.468,397.863 393.634,400.993 396.585,397.863 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" x1="393.702" y1="401.077" x2="393.702" y2="406.6"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" cx="400.817" cy="374.898" r="8.803"/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" x1="400.897" y1="373.741" x2="400.897" y2="379.268"/>
- <polygon fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" points="394.702,391.775 394.702,385.258 389.327,388.693 "/>
- </g>
- <g>
- <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" cx="878.684" cy="387.719" r="8.805"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" cx="863.406" cy="387.719" r="8.805"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" points="875.531,383.691 878.698,386.822 881.651,383.691 "/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" points="867.225,370.508 870.391,373.639 873.342,370.508 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" x1="878.766" y1="386.906" x2="878.766" y2="392.428"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" cx="878.684" cy="402.231" r="8.804"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" cx="863.406" cy="402.231" r="8.804"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" points="875.531,398.202 878.698,401.336 881.651,398.202 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" x1="878.766" y1="401.418" x2="878.766" y2="406.939"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" points="860.253,397.863 863.419,400.993 866.368,397.863 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" x1="863.488" y1="401.077" x2="863.488" y2="406.6"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" cx="870.603" cy="374.898" r="8.803"/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" x1="870.683" y1="373.741" x2="870.683" y2="379.268"/>
- <polygon fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" points="864.488,391.775 864.488,385.258 859.113,388.693 "/>
- </g>
- <g>
- <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" cx="1421.086" cy="387.719" r="8.805"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" cx="1405.809" cy="387.719" r="8.805"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" points="1417.936,383.691 1421.102,386.822 1424.053,383.691 "/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" points="1409.625,370.508 1412.792,373.639 1415.741,370.508 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" x1="1421.167" y1="386.906" x2="1421.167" y2="392.428"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" cx="1421.086" cy="402.231" r="8.804"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" cx="1405.809" cy="402.231" r="8.804"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" points="1417.936,398.202 1421.102,401.336 1424.053,398.202 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" x1="1421.167" y1="401.418" x2="1421.167" y2="406.939"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" points="1402.657,397.863 1405.823,400.993 1408.772,397.863 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" x1="1405.891" y1="401.077" x2="1405.891" y2="406.6"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" cx="1413.004" cy="374.898" r="8.803"/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" x1="1413.084" y1="373.741" x2="1413.084" y2="379.268"/>
- <polygon fill="none" stroke="#A01A59" stroke-width="1.5" stroke-miterlimit="10" points="1406.891,391.775 1406.891,385.258 1401.516,388.693 "/>
- </g>
- <rect x="409.934" y="416.94" fill="#434169" width="75.809" height="20.816"/>
- <text transform="matrix(1 0 0 1 417.5996 431.1309)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> Ⅰ 母线 PT </text>
- <rect x="914.938" y="287.194" fill="#971C55" width="3.048" height="21.63"/>
- <rect x="916.683" y="304.244" fill="#971C55" width="15.612" height="3.05"/>
- <text transform="matrix(1 0 0 1 954.3335 327.3975)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <text transform="matrix(1 0 0 1 959.2925 368.3848)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -09 </text>
- <text transform="matrix(1 0 0 1 871.833 332.2783)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 12-9 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="961.973" y1="310.308" x2="961.973" y2="298.009"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="953.51" y1="304.156" x2="961.973" y2="304.156"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="965.36" y1="307.77" x2="965.36" y2="300.548"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="968.743" y1="306.358" x2="968.743" y2="301.958"/>
- </g>
- <rect x="891.406" y="343.472" fill="#971C55" width="40.888" height="3.047"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="961.973" y1="349.532" x2="961.973" y2="337.236"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="953.51" y1="343.384" x2="961.973" y2="343.384"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="965.36" y1="346.994" x2="965.36" y2="339.775"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="968.743" y1="345.587" x2="968.743" y2="341.186"/>
- </g>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="820.069" y1="339.366" x2="820.069" y2="351.669"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="816.683" y1="341.906" x2="816.683" y2="349.13"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="813.298" y1="343.318" x2="813.298" y2="347.718"/>
- </g>
- </g>
- <rect x="913.857" y="334.896" fill="#971C55" width="2.604" height="31.938"/>
- <rect x="890.104" y="334.896" fill="#C3A121" width="2.604" height="19.884"/>
- <rect x="849.22" y="334.896" fill="#C3A121" width="2.604" height="19.884"/>
- <rect x="852.442" y="343.472" fill="#971C55" width="30.277" height="3.047"/>
- <rect x="834.311" y="344.663" fill="#971C55" width="1.984" height="30.279"/>
- <rect x="869.422" y="344.663" fill="#971C55" width="1.981" height="20.857"/>
- <rect x="834.311" y="372.966" fill="#971C55" width="36.734" height="1.979"/>
- <rect x="828.531" y="343.994" fill="#971C55" width="13.536" height="3.05"/>
- <rect x="820.07" y="343.994" fill="#42B0A8" width="8.463" height="3.05"/>
- <rect x="841.22" y="334.896" fill="#C3A121" width="2.604" height="19.884"/>
- <rect x="913.857" y="388.7" fill="#40B0A7" width="2.604" height="4.479"/>
- <g>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="908.901" y1="394.169" x2="921.418" y2="394.169"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="911.073" y1="397.488" x2="919.245" y2="397.488"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="912.857" y1="400.991" x2="917.461" y2="400.991"/>
- </g>
- <polygon fill="#971C55" points="918.405,366.727 915.156,375.954 911.911,366.724 "/>
-
- <rect x="910.045" y="357.003" fill="none" stroke="#A01A59" stroke-width="2.3" stroke-miterlimit="10" width="10.229" height="32.14"/>
- <rect x="882.104" y="334.896" fill="#C3A121" width="2.604" height="19.884"/>
- <rect x="1456.553" y="287.194" fill="#971C55" width="3.047" height="21.63"/>
- <rect x="1458.297" y="304.244" fill="#971C55" width="15.607" height="3.05"/>
- <text transform="matrix(1 0 0 1 1495.9468 327.3975)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <text transform="matrix(1 0 0 1 1500.9058 368.3848)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -09 </text>
- <text transform="matrix(1 0 0 1 1413.4468 332.2783)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 15-9 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1503.588" y1="310.308" x2="1503.588" y2="298.009"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1495.124" y1="304.156" x2="1503.588" y2="304.156"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1506.975" y1="307.77" x2="1506.975" y2="300.548"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1510.36" y1="306.358" x2="1510.36" y2="301.958"/>
- </g>
- <rect x="1433.02" y="343.472" fill="#971C55" width="40.887" height="3.047"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1503.588" y1="349.532" x2="1503.588" y2="337.236"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1495.124" y1="343.384" x2="1503.588" y2="343.384"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1506.975" y1="346.994" x2="1506.975" y2="339.775"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1510.36" y1="345.587" x2="1510.36" y2="341.186"/>
- </g>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1358.684" y1="339.366" x2="1358.684" y2="351.669"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1355.297" y1="341.906" x2="1355.297" y2="349.13"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1351.909" y1="343.318" x2="1351.909" y2="347.718"/>
- </g>
- </g>
- <rect x="1455.473" y="334.896" fill="#971C55" width="2.604" height="31.938"/>
- <rect x="1431.717" y="334.896" fill="#C3A121" width="2.605" height="19.884"/>
- <rect x="1390.833" y="334.896" fill="#C3A121" width="2.604" height="19.884"/>
- <rect x="1394.057" y="343.472" fill="#971C55" width="30.277" height="3.047"/>
- <rect x="1375.924" y="344.663" fill="#971C55" width="1.98" height="30.279"/>
- <rect x="1411.034" y="344.663" fill="#971C55" width="1.982" height="20.857"/>
- <rect x="1375.924" y="372.966" fill="#971C55" width="36.73" height="1.979"/>
- <rect x="1370.147" y="343.994" fill="#971C55" width="13.535" height="3.05"/>
- <rect x="1358.684" y="343.994" fill="#42B0A8" width="8.463" height="3.05"/>
- <rect x="1382.833" y="334.896" fill="#C3A121" width="2.604" height="19.884"/>
- <rect x="1455.473" y="388.7" fill="#40B0A7" width="2.604" height="4.479"/>
- <polygon fill="#971C55" points="1460.02,366.727 1456.77,375.954 1453.528,366.724 "/>
-
- <rect x="1451.657" y="357.003" fill="none" stroke="#A01A59" stroke-width="2.3" stroke-miterlimit="10" width="10.229" height="32.14"/>
- <rect x="1423.717" y="334.896" fill="#C3A121" width="2.605" height="19.884"/>
- <rect x="880.078" y="416.94" fill="#434169" width="75.811" height="20.816"/>
- <text transform="matrix(1 0 0 1 887.7466 431.1309)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> Ⅱ 母线 PT </text>
- <rect x="1420.395" y="416.94" fill="#434169" width="75.809" height="20.816"/>
- <text transform="matrix(1 0 0 1 1428.0601 431.1309)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> Ⅴ 母线 PT </text>
- <rect x="389.108" y="450.067" opacity="0.9" fill="#162320" enable-background="new " width="108.761" height="18.486"/>
- <rect x="389.108" y="470.563" opacity="0.9" fill="#162320" enable-background="new " width="108.761" height="18.489"/>
- <g>
- <text transform="matrix(1 0 0 1 407.9287 461.8799)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> la(A): </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 392.9043 484.1641)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> (MVar): </text>
- </g>
- <rect x="389.108" y="490.298" opacity="0.9" fill="#162320" enable-background="new " width="108.761" height="18.485"/>
- <g>
- <text transform="matrix(1 0 0 1 392.8306 504.248)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> Q(MVar): </text>
- </g>
- <rect x="389.108" y="509.783" opacity="0.9" fill="#162320" enable-background="new " width="108.761" height="18.487"/>
- <g>
- <text transform="matrix(1 0 0 1 407.8306 523.7373)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> 挡位 </text>
- <text transform="matrix(1 0 0 1 430.3569 523.7373)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="876.939" y="450.067" opacity="0.9" fill="#162320" enable-background="new " width="108.762" height="18.486"/>
- <rect x="876.939" y="470.563" opacity="0.9" fill="#162320" enable-background="new " width="108.762" height="18.489"/>
- <g>
- <text transform="matrix(1 0 0 1 879.7603 462.8799)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> P(MVar): </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 879.7368 484.1641)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> Q(MVar): </text>
- </g>
- <rect x="876.939" y="490.298" opacity="0.9" fill="#162320" enable-background="new " width="108.762" height="18.485"/>
- <g>
- <text transform="matrix(1 0 0 1 895.6626 504.248)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> la </text>
- <text transform="matrix(1 0 0 1 904.9888 504.248)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="9.6234"> (A) </text>
- <text transform="matrix(1 0 0 1 918.188 504.248)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="876.939" y="510.783" opacity="0.9" fill="#162320" enable-background="new " width="108.762" height="18.487"/>
- <g>
- <text transform="matrix(1 0 0 1 895.6626 524.7373)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> 挡位 </text>
- <text transform="matrix(1 0 0 1 918.188 524.7373)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="1278.991" y="450.067" opacity="0.9" fill="#162320" enable-background="new " width="108.762" height="18.486"/>
- <rect x="1278.991" y="470.563" opacity="0.9" fill="#162320" enable-background="new " width="108.762" height="18.489"/>
- <g>
- <text transform="matrix(1 0 0 1 1281.814 462.8799)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> P(MVar): </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1281.7905 484.1641)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> Q(MVar): </text>
- </g>
- <rect x="1278.991" y="490.298" opacity="0.9" fill="#162320" enable-background="new " width="108.762" height="18.485"/>
- <g>
- <text transform="matrix(1 0 0 1 1297.7163 504.248)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> la </text>
- <text transform="matrix(1 0 0 1 1307.0425 504.248)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="9.6234"> (A) </text>
- <text transform="matrix(1 0 0 1 1320.2417 504.248)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="1278.991" y="510.783" opacity="0.9" fill="#162320" enable-background="new " width="108.762" height="18.487"/>
- <g>
- <text transform="matrix(1 0 0 1 1297.7163 524.7373)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> 挡位 </text>
- <text transform="matrix(1 0 0 1 1320.2417 524.7373)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="1399.145" y="450.067" opacity="0.9" fill="#162320" enable-background="new " width="108.764" height="18.486"/>
- <rect x="1399.145" y="470.563" opacity="0.9" fill="#162320" enable-background="new " width="108.764" height="18.489"/>
- <g>
- <text transform="matrix(1 0 0 1 1401.9683 462.8799)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> P(MVar): </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1401.9448 484.1641)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> Q(MVar): </text>
- </g>
- <rect x="1399.145" y="490.298" opacity="0.9" fill="#162320" enable-background="new " width="108.764" height="18.485"/>
- <g>
- <text transform="matrix(1 0 0 1 1417.8706 504.248)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> la </text>
- <text transform="matrix(1 0 0 1 1427.1968 504.248)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="9.6234"> (A) </text>
- <text transform="matrix(1 0 0 1 1440.396 504.248)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="1399.145" y="510.783" opacity="0.9" fill="#162320" enable-background="new " width="108.764" height="18.487"/>
- <g>
- <text transform="matrix(1 0 0 1 1417.8706 524.7373)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> 挡位 </text>
- <text transform="matrix(1 0 0 1 1440.396 524.7373)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <rect x="436.734" y="745.526" fill="#44426C" width="72.313" height="20.816"/>
- <text transform="matrix(1 0 0 1 446.3452 760.0791)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 1#站用变 </text>
- </g>
- <g>
- <rect x="238.33" fill="#44426C" width="72.313" height="20.815"/>
- <text transform="matrix(1 0 0 1 249.3535 14.5537)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 能风六线 </text>
- </g>
- <g>
- <rect x="899.41" fill="#44426C" width="72.313" height="20.815"/>
- <text transform="matrix(1 0 0 1 904.1519 14.5537)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 首风五甲线 </text>
- </g>
- <g>
- <rect x="1616.35" fill="#44426C" width="72.313" height="20.815"/>
- <text transform="matrix(1 0 0 1 1621.0894 14.5537)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 首风五乙线 </text>
- </g>
- <g>
- <rect x="198.729" y="745.526" fill="#44426C" width="72.314" height="20.816"/>
- <text transform="matrix(1 0 0 1 199.7114 760.4189)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.2356"> 35KVⅠ母PT </text>
- </g>
- <g>
- <rect x="119.393" y="745.526" fill="#44426C" width="72.314" height="20.816"/>
- <text transform="matrix(1 0 0 1 130.416 760.0791)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场二线 </text>
- </g>
- <g>
- <rect x="40.058" y="745.526" fill="#44426C" width="72.314" height="20.816"/>
- <text transform="matrix(1 0 0 1 51.0806 760.0791)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场一线 </text>
- </g>
- <text transform="matrix(1 0 0 1 438.8037 626.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 315 </text>
- <text transform="matrix(1 0 0 1 194.9453 626.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 31-9 </text>
- <text transform="matrix(1 0 0 1 124.1162 626.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 313 </text>
- <text transform="matrix(1 0 0 1 114.3027 728.6592)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907">313-0</text>
- <rect x="136.813" y="655.419" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="155.606" y="649.751" fill="#CAA51A" width="2.25" height="75.479"/>
- <polyline fill="#CAA51A" points="157.856,577.604 157.856,590.979 155.606,590.979 155.606,577.604 "/>
- <polygon fill="#CAA51A" points="161.336,725.076 156.727,734.886 152.127,725.073 "/>
- <text transform="matrix(1 0 0 1 43.4331 626.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 312 </text>
- <text transform="matrix(1 0 0 1 33.6201 728.6592)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907">312-0</text>
- <rect x="56.131" y="655.419" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="74.925" y="649.751" fill="#CAA51A" width="2.25" height="75.479"/>
- <polyline fill="#CAA51A" points="77.175,577.604 77.175,590.979 74.925,590.979 74.925,577.604 "/>
- <polygon fill="#CAA51A" points="80.654,725.076 76.045,734.886 71.445,725.073 "/>
- <text transform="matrix(1 0 0 1 428.4966 728.6592)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907">315-0</text>
- <rect x="451.007" y="655.419" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="469.801" y="649.751" fill="#CAA51A" width="2.25" height="75.479"/>
- <polyline fill="#CAA51A" points="472.051,577.604 472.051,590.979 469.801,590.979 469.801,577.604 "/>
- <polygon fill="#CAA51A" points="475.53,725.076 470.921,734.886 466.321,725.073 "/>
- <rect x="212.387" y="655.419" fill="#C3A121" width="2.25" height="22.133"/>
- <rect x="213.036" y="655.419" fill="#C3A121" width="20.5" height="2.25"/>
- <g>
-
- <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="206.633" y1="679.185" x2="220.354" y2="679.185"/>
-
- <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="209.465" y1="682.962" x2="217.521" y2="682.962"/>
-
- <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="211.039" y1="686.737" x2="215.948" y2="686.737"/>
- </g>
- <rect x="231.829" y="615.104" fill="#CAA51A" width="2.25" height="89.971"/>
- <polyline fill="#CAA51A" points="234.079,577.604 234.079,597.979 231.829,597.979 231.829,577.604 "/>
- <g>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="232.902" cy="728.463" r="8.804"/>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="232.903" cy="713.186" r="8.804"/>
- <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="237.18,732.183 234.048,729.015 237.18,726.063 "/>
-
- <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="233.965" y1="728.948" x2="228.444" y2="728.948"/>
- <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="237.18,716.242 234.048,713.074 237.18,710.126 "/>
-
- <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="233.965" y1="713.013" x2="228.444" y2="713.013"/>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="220.083" cy="720.382" r="8.803"/>
- <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="223.36,723.44 220.228,720.274 223.36,717.323 "/>
-
- <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="220.145" y1="720.208" x2="214.624" y2="720.208"/>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="245.825" cy="720.382" r="8.803"/>
- <polygon fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="244.068,723.642 244.068,717.119 249.444,720.56 "/>
- </g>
- <rect x="450.757" y="655.419" fill="#C3A121" width="2.25" height="17.838"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="446.001" y1="706.073" x2="458.3" y2="706.073"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="452.153" y1="697.612" x2="452.153" y2="706.073"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="448.537" y1="709.46" x2="455.762" y2="709.46"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="449.948" y1="712.845" x2="454.352" y2="712.845"/>
- </g>
- <rect x="136.563" y="655.419" fill="#C3A121" width="2.25" height="17.838"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="131.807" y1="706.073" x2="144.105" y2="706.073"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="137.959" y1="697.612" x2="137.959" y2="706.073"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="134.346" y1="709.46" x2="141.567" y2="709.46"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="135.756" y1="712.845" x2="140.157" y2="712.845"/>
- </g>
- <g>
- <rect x="278.063" y="745.526" fill="#44426C" width="72.314" height="20.816"/>
- <text transform="matrix(1 0 0 1 289.0869 760.0791)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场三线 </text>
- </g>
- <text transform="matrix(1 0 0 1 281.166 626.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 314 </text>
- <text transform="matrix(1 0 0 1 270.3535 728.6592)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907">314-0</text>
- <rect x="293.864" y="655.419" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="312.658" y="649.751" fill="#CAA51A" width="2.25" height="75.479"/>
- <polyline fill="#CAA51A" points="314.908,577.604 314.908,590.979 312.658,590.979 312.658,577.604 "/>
- <polygon fill="#CAA51A" points="318.387,725.076 313.778,734.886 309.178,725.073 "/>
- <rect x="293.614" y="655.419" fill="#C3A121" width="2.25" height="17.838"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="288.858" y1="706.073" x2="301.157" y2="706.073"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="295.01" y1="697.612" x2="295.01" y2="706.073"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="291.397" y1="709.46" x2="298.619" y2="709.46"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="292.807" y1="712.845" x2="297.208" y2="712.845"/>
- </g>
- <g>
- <rect x="357.399" y="745.526" fill="#44426C" width="72.313" height="20.816"/>
- <text transform="matrix(1 0 0 1 367.0103 760.0791)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> #1补偿器 </text>
- </g>
- <text transform="matrix(1 0 0 1 358.2109 626.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 316 </text>
- <text transform="matrix(1 0 0 1 348.397 728.6592)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907">316-0</text>
- <rect x="370.908" y="655.419" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="389.701" y="649.751" fill="#CAA51A" width="2.25" height="75.479"/>
- <polyline fill="#CAA51A" points="391.951,577.604 391.951,590.979 389.701,590.979 389.701,577.604 "/>
- <polygon fill="#CAA51A" points="395.431,725.076 390.821,734.886 386.222,725.073 "/>
- <rect x="370.657" y="655.419" fill="#C3A121" width="2.25" height="17.838"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="365.901" y1="706.073" x2="378.2" y2="706.073"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="372.054" y1="697.612" x2="372.054" y2="706.073"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="368.44" y1="709.46" x2="375.662" y2="709.46"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="369.851" y1="712.845" x2="374.252" y2="712.845"/>
- </g>
- <rect x="53.938" y="655.419" fill="#C3A121" width="2.25" height="17.838"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="49.182" y1="706.073" x2="61.481" y2="706.073"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="55.334" y1="697.612" x2="55.334" y2="706.073"/>
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="51.721" y1="709.46" x2="58.943" y2="709.46"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="53.131" y1="712.845" x2="57.533" y2="712.845"/>
- </g>
- <rect x="1359.52" y="577.083" fill="#CAA51A" width="482.279" height="2.25"/>
- <text transform="matrix(0.9268 0 0 1 1359.519 572.9463)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="13.2867"> 35kV Ⅴ母线 </text>
- <g>
- <rect x="1770.518" y="746.192" fill="#44426C" width="72.313" height="20.816"/>
- <text transform="matrix(1 0 0 1 1770.5181 760.6611)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.5694"> 35KV Ⅴ母 PT </text>
- </g>
- <g>
- <rect x="1452.336" y="746.192" fill="#44426C" width="72.313" height="20.816"/>
- <text transform="matrix(1 0 0 1 1463.3589 760.7451)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场九线 </text>
- </g>
- <g>
- <rect x="1349.141" y="746.192" fill="#44426C" width="94.035" height="20.816"/>
- <text transform="matrix(1 0 0 1 1358.4565 760.7451)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 光储进线开关 </text>
- </g>
- <text transform="matrix(1 0 0 1 1766.7358 627.3643)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 35-9 </text>
- <text transform="matrix(1 0 0 1 1454.0601 627.3643)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 351 </text>
- <text transform="matrix(1 0 0 1 1365.0601 627.3643)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 350 </text>
- <text transform="matrix(1 0 0 1 1444.1196 729.6592)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907">351-0</text>
- <rect x="1466.756" y="656.085" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="1485.549" y="650.417" fill="#CAA51A" width="2.25" height="75.479"/>
- <polyline fill="#CAA51A" points="1487.799,578.271 1487.799,591.646 1485.549,591.646 1485.549,578.271 "/>
- <polygon fill="#CAA51A" points="1491.28,725.742 1486.67,735.552 1482.071,725.74 "/>
- <rect x="1397.866" y="650.417" fill="#CAA51A" width="2.25" height="75.479"/>
- <polyline fill="#CAA51A" points="1400.116,578.271 1400.116,591.646 1397.866,591.646 1397.866,578.271 "/>
- <polygon fill="#CAA51A" points="1403.598,725.742 1398.989,735.552 1394.389,725.74 "/>
- <rect x="1784.176" y="656.085" fill="#C3A121" width="2.25" height="22.133"/>
- <rect x="1784.823" y="656.085" fill="#C3A121" width="20.5" height="2.25"/>
- <g>
-
- <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="1778.422" y1="679.851" x2="1792.143" y2="679.851"/>
-
- <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="1781.254" y1="683.628" x2="1789.311" y2="683.628"/>
-
- <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="1782.825" y1="687.403" x2="1787.737" y2="687.403"/>
- </g>
- <rect x="1803.616" y="609.737" fill="#CAA51A" width="2.25" height="96.002"/>
- <polyline fill="#CAA51A" points="1805.866,578.271 1805.866,598.646 1803.616,598.646 1803.616,578.271 "/>
- <g>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="1804.692" cy="729.129" r="8.804"/>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="1804.692" cy="713.852" r="8.804"/>
- <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="1808.969,732.849 1805.838,729.681 1808.969,726.729 "/>
-
- <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="1805.754" y1="729.615" x2="1800.233" y2="729.615"/>
- <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="1808.969,716.908 1805.838,713.74 1808.969,710.792 "/>
-
- <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="1805.754" y1="713.679" x2="1800.233" y2="713.679"/>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="1791.87" cy="721.048" r="8.803"/>
- <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="1795.147,724.106 1792.018,720.94 1795.147,717.989 "/>
-
- <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="1791.934" y1="720.874" x2="1786.409" y2="720.874"/>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="1817.614" cy="721.048" r="8.803"/>
- <polygon fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="1815.858,724.308 1815.858,717.785 1821.233,721.226 "/>
- </g>
- <rect x="1466.506" y="656.085" fill="#C3A121" width="2.25" height="17.838"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1461.749" y1="706.739" x2="1474.049" y2="706.739"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1467.903" y1="698.278" x2="1467.903" y2="706.739"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1464.286" y1="710.126" x2="1471.51" y2="710.126"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1465.698" y1="713.511" x2="1470.102" y2="713.511"/>
- </g>
- <g>
- <rect x="1531.042" y="746.192" fill="#44426C" width="72.313" height="20.816"/>
- <text transform="matrix(1 0 0 1 1542.0679 760.7451)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场十线 </text>
- </g>
- <text transform="matrix(1 0 0 1 1533.1479 627.3643)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 352 </text>
- <text transform="matrix(1 0 0 1 1522.3335 730.3252)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907">352-0</text>
- <rect x="1545.844" y="656.085" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="1564.639" y="650.417" fill="#CAA51A" width="2.25" height="75.479"/>
- <polyline fill="#CAA51A" points="1566.889,578.271 1566.889,591.646 1564.639,591.646 1564.639,578.271 "/>
- <polygon fill="#CAA51A" points="1570.366,725.742 1565.758,735.552 1561.157,725.74 "/>
- <rect x="1545.594" y="656.085" fill="#C3A121" width="2.25" height="17.838"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1540.838" y1="706.739" x2="1553.137" y2="706.739"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1546.991" y1="698.278" x2="1546.991" y2="706.739"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1543.375" y1="710.126" x2="1550.6" y2="710.126"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1544.784" y1="713.511" x2="1549.188" y2="713.511"/>
- </g>
- <g>
- <rect x="1610.241" y="746.192" fill="#44426C" width="72.313" height="20.816"/>
- <text transform="matrix(1 0 0 1 1614.9819 760.7451)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场十一线 </text>
- </g>
- <text transform="matrix(1 0 0 1 1604.5308 731.3252)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907">353-0</text>
- <rect x="1627.04" y="656.085" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="1645.836" y="650.417" fill="#CAA51A" width="2.25" height="75.479"/>
- <polyline fill="#CAA51A" points="1648.086,578.271 1648.086,591.646 1645.836,591.646 1645.836,578.271 "/>
- <polygon fill="#CAA51A" points="1651.563,725.742 1646.952,735.552 1642.354,725.74 "/>
- <rect x="1626.79" y="656.085" fill="#C3A121" width="2.25" height="17.838"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1622.032" y1="706.739" x2="1634.333" y2="706.739"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1628.188" y1="698.278" x2="1628.188" y2="706.739"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1624.573" y1="710.126" x2="1631.797" y2="710.126"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1625.985" y1="713.511" x2="1630.387" y2="713.511"/>
- </g>
- <g>
- <rect x="1691.049" y="746.192" fill="#44426C" width="72.313" height="20.816"/>
- <text transform="matrix(1 0 0 1 1700.6616 760.7451)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> #4补偿器 </text>
- </g>
- <text transform="matrix(1 0 0 1 1692.8608 627.3643)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 354 </text>
- <text transform="matrix(1 0 0 1 1614.8608 627.3643)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 353 </text>
- <text transform="matrix(1 0 0 1 1683.0483 731.3252)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907">354-0</text>
- <rect x="1705.559" y="656.085" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="1724.352" y="650.417" fill="#CAA51A" width="2.25" height="75.479"/>
- <polyline fill="#CAA51A" points="1726.602,578.271 1726.602,591.646 1724.352,591.646 1724.352,578.271 "/>
- <polygon fill="#CAA51A" points="1730.077,725.742 1725.471,735.552 1720.868,725.74 "/>
- <rect x="1705.307" y="656.085" fill="#C3A121" width="2.25" height="17.838"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1700.551" y1="706.739" x2="1712.85" y2="706.739"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1706.7" y1="698.278" x2="1706.7" y2="706.739"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1703.09" y1="710.126" x2="1710.313" y2="710.126"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1704.499" y1="713.511" x2="1708.903" y2="713.511"/>
- </g>
- <rect x="552.891" y="575.417" fill="#CAA51A" width="412.471" height="2.25"/>
- <text transform="matrix(0.9268 0 0 1 552.8911 571.2803)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="13.2867"> 35kV Ⅱ母线 </text>
- <g>
- <rect x="699.979" y="744.526" fill="#44426C" width="72.313" height="20.816"/>
- <text transform="matrix(1 0 0 1 700.9614 759.3164)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.6353"> 35KVⅡ母PT</text>
- </g>
- <g>
- <rect x="619.683" y="744.526" fill="#44426C" width="72.313" height="20.816"/>
- <text transform="matrix(1 0 0 1 630.7056 759.0791)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场五线 </text>
- </g>
- <g>
- <rect x="539.386" y="744.526" fill="#44426C" width="72.313" height="20.816"/>
- <text transform="matrix(1 0 0 1 550.4087 759.0791)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场四线 </text>
- </g>
- <text transform="matrix(1 0 0 1 697.2744 625.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 32-9 </text>
- <text transform="matrix(1 0 0 1 623.4438 625.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 322 </text>
- <text transform="matrix(1 0 0 1 614.6304 727.6592)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907">322-0</text>
- <rect x="636.141" y="654.419" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="654.936" y="648.751" fill="#CAA51A" width="2.25" height="75.479"/>
- <polyline fill="#CAA51A" points="657.186,576.604 657.186,589.979 654.936,589.979 654.936,576.604 "/>
- <polygon fill="#CAA51A" points="660.661,724.076 656.055,733.886 651.452,724.073 "/>
- <text transform="matrix(1 0 0 1 542.7622 625.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 321 </text>
- <text transform="matrix(1 0 0 1 532.9492 727.6592)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907">321-0</text>
- <rect x="555.458" y="654.419" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="574.253" y="648.751" fill="#CAA51A" width="2.25" height="75.479"/>
- <polyline fill="#CAA51A" points="576.503,576.604 576.503,589.979 574.253,589.979 574.253,576.604 "/>
- <polygon fill="#CAA51A" points="579.982,724.076 575.37,733.886 570.773,724.073 "/>
- <rect x="714.715" y="654.419" fill="#C3A121" width="2.25" height="22.133"/>
- <rect x="715.364" y="654.419" fill="#C3A121" width="20.5" height="2.25"/>
- <g>
-
- <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="708.961" y1="678.185" x2="722.682" y2="678.185"/>
-
- <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="711.793" y1="681.962" x2="719.85" y2="681.962"/>
-
- <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="713.365" y1="685.737" x2="718.276" y2="685.737"/>
- </g>
- <rect x="734.156" y="614.104" fill="#CAA51A" width="2.25" height="89.971"/>
- <polyline fill="#CAA51A" points="736.406,576.604 736.406,596.979 734.156,596.979 734.156,576.604 "/>
- <g>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10" cx="735.229" cy="727.463" r="8.804"/>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10" cx="735.229" cy="712.186" r="8.804"/>
- <polyline fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10" points="739.508,731.183 736.376,728.015 739.508,725.063 "/>
-
- <line fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10" x1="736.293" y1="727.948" x2="730.771" y2="727.948"/>
- <polyline fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10" points="739.508,715.242 736.376,712.074 739.508,709.126 "/>
-
- <line fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10" x1="736.293" y1="712.013" x2="730.771" y2="712.013"/>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10" cx="722.408" cy="719.382" r="8.803"/>
- <polyline fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10" points="725.688,722.44 722.556,719.274 725.688,716.323 "/>
-
- <line fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10" x1="722.473" y1="719.208" x2="716.949" y2="719.208"/>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10" cx="748.153" cy="719.382" r="8.803"/>
- <polygon fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10" points="746.396,722.642 746.396,716.119 751.771,719.56 "/>
- </g>
- <rect x="635.891" y="654.419" fill="#C3A121" width="2.25" height="17.838"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="631.135" y1="705.073" x2="643.434" y2="705.073"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="637.284" y1="696.612" x2="637.284" y2="705.073"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="633.674" y1="708.46" x2="640.896" y2="708.46"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="635.083" y1="711.845" x2="639.485" y2="711.845"/>
- </g>
- <g>
- <rect x="780.277" y="744.526" fill="#44426C" width="72.313" height="20.816"/>
- <text transform="matrix(1 0 0 1 791.2993 759.0791)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场六线 </text>
- </g>
- <text transform="matrix(1 0 0 1 782.4951 625.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 323 </text>
- <text transform="matrix(1 0 0 1 773.6812 727.6592)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907">323-0</text>
- <rect x="795.192" y="654.419" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="813.986" y="648.751" fill="#CAA51A" width="2.25" height="75.479"/>
- <polyline fill="#CAA51A" points="816.236,576.604 816.236,589.979 813.986,589.979 813.986,576.604 "/>
- <polygon fill="#CAA51A" points="819.715,724.076 815.104,733.886 810.506,724.073 "/>
- <rect x="794.942" y="654.419" fill="#C3A121" width="2.25" height="17.838"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="790.186" y1="705.073" x2="802.485" y2="705.073"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="796.338" y1="696.612" x2="796.338" y2="705.073"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="792.725" y1="708.46" x2="799.947" y2="708.46"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="794.135" y1="711.845" x2="798.534" y2="711.845"/>
- </g>
- <g>
- <rect x="860.573" y="744.526" fill="#44426C" width="72.312" height="20.816"/>
- <text transform="matrix(1 0 0 1 870.1851 759.0791)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> #2补偿器 </text>
- </g>
- <text transform="matrix(1 0 0 1 861.5386 625.6973)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 324 </text>
- <text transform="matrix(1 0 0 1 852.7251 727.6592)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907">324-0</text>
- <rect x="874.236" y="654.419" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="893.029" y="648.751" fill="#CAA51A" width="2.25" height="75.479"/>
- <polyline fill="#CAA51A" points="895.279,576.604 895.279,589.979 893.029,589.979 893.029,576.604 "/>
- <polygon fill="#CAA51A" points="898.759,724.076 894.148,733.886 889.55,724.073 "/>
- <rect x="873.985" y="654.419" fill="#C3A121" width="2.25" height="17.838"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="869.229" y1="705.073" x2="881.528" y2="705.073"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="875.382" y1="696.612" x2="875.382" y2="705.073"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="871.771" y1="708.46" x2="878.99" y2="708.46"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="873.179" y1="711.845" x2="877.577" y2="711.845"/>
- </g>
- <rect x="553.266" y="654.419" fill="#C3A121" width="2.25" height="17.838"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="548.51" y1="705.073" x2="560.809" y2="705.073"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="554.66" y1="696.612" x2="554.66" y2="705.073"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="551.049" y1="708.46" x2="558.271" y2="708.46"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="552.458" y1="711.845" x2="556.861" y2="711.845"/>
- </g>
- <rect x="1010.315" y="577.083" fill="#CAA51A" width="281.498" height="2.25"/>
- <text transform="matrix(0.9268 0 0 1 1010.314 572.9463)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="13.2867"> 35kV Ⅲ母线 </text>
- <g>
- <rect x="1225.375" y="746.192" fill="#44426C" width="72.313" height="20.816"/>
- <text transform="matrix(1 0 0 1 1226.7905 761.1514)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.9769"> 35KVPTⅢ母 </text>
- </g>
- <g>
- <rect x="1067.104" y="746.192" fill="#44426C" width="72.314" height="20.816"/>
- <text transform="matrix(1 0 0 1 1078.1284 760.7451)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场八线 </text>
- </g>
- <g>
- <rect x="986.809" y="746.192" fill="#44426C" width="72.313" height="20.816"/>
- <text transform="matrix(1 0 0 1 997.8315 760.7451)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场七线 </text>
- </g>
- <text transform="matrix(1 0 0 1 1222.6714 627.3643)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 33-9 </text>
- <text transform="matrix(1 0 0 1 1070.8667 627.3643)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 332 </text>
- <text transform="matrix(1 0 0 1 1062.3882 729.3252)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907">332-0</text>
- <rect x="1083.563" y="656.085" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="1102.358" y="650.417" fill="#CAA51A" width="2.25" height="75.479"/>
- <polyline fill="#CAA51A" points="1104.608,578.271 1104.608,591.646 1102.358,591.646 1102.358,578.271 "/>
- <polygon fill="#CAA51A" points="1108.086,725.742 1103.479,735.552 1098.877,725.74 "/>
- <text transform="matrix(1 0 0 1 990.1851 627.3643)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 331 </text>
- <text transform="matrix(1 0 0 1 979.3726 729.3252)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907">331-0</text>
- <rect x="1002.883" y="656.085" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="1021.676" y="650.417" fill="#CAA51A" width="2.25" height="75.479"/>
- <polyline fill="#CAA51A" points="1023.926,578.271 1023.926,591.646 1021.676,591.646 1021.676,578.271 "/>
- <polygon fill="#CAA51A" points="1027.407,725.742 1022.795,735.552 1018.198,725.74 "/>
- <rect x="1240.114" y="656.085" fill="#C3A121" width="2.25" height="22.133"/>
- <rect x="1240.762" y="656.085" fill="#C3A121" width="20.5" height="2.25"/>
- <g>
-
- <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="1234.36" y1="679.851" x2="1248.077" y2="679.851"/>
-
- <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="1237.192" y1="683.628" x2="1245.245" y2="683.628"/>
-
- <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="1238.764" y1="687.403" x2="1243.674" y2="687.403"/>
- </g>
- <rect x="1259.555" y="615.769" fill="#CAA51A" width="2.25" height="89.973"/>
- <polyline fill="#CAA51A" points="1261.805,578.271 1261.805,598.646 1259.555,598.646 1259.555,578.271 "/>
- <g>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="1260.629" cy="729.129" r="8.804"/>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="1260.629" cy="713.852" r="8.804"/>
- <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="1264.907,732.849 1261.772,729.681 1264.907,726.729 "/>
-
- <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="1261.692" y1="729.615" x2="1256.17" y2="729.615"/>
- <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="1264.907,716.908 1261.772,713.74 1264.907,710.792 "/>
-
- <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="1261.692" y1="713.679" x2="1256.17" y2="713.679"/>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="1247.809" cy="721.048" r="8.803"/>
- <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="1251.086,724.106 1247.95,720.94 1251.086,717.989 "/>
-
- <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="1247.868" y1="720.874" x2="1242.35" y2="720.874"/>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="1273.551" cy="721.048" r="8.803"/>
- <polygon fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="1271.795,724.308 1271.795,717.785 1277.17,721.226 "/>
- </g>
- <rect x="1083.313" y="656.085" fill="#C3A121" width="2.25" height="17.838"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1078.557" y1="706.739" x2="1090.858" y2="706.739"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1084.709" y1="698.278" x2="1084.709" y2="706.739"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1081.096" y1="710.126" x2="1088.319" y2="710.126"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1082.506" y1="713.511" x2="1086.907" y2="713.511"/>
- </g>
- <g>
- <rect x="1146.37" y="746.192" fill="#44426C" width="72.314" height="20.816"/>
- <text transform="matrix(1 0 0 1 1155.9858 760.7451)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> #3补偿器 </text>
- </g>
- <text transform="matrix(1 0 0 1 1148.5933 627.3643)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 324 </text>
- <text transform="matrix(1 0 0 1 1139.3696 730.4629)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907">334-0</text>
- <rect x="1161.286" y="656.085" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="1180.081" y="650.417" fill="#CAA51A" width="2.25" height="75.479"/>
- <polyline fill="#CAA51A" points="1182.331,578.271 1182.331,591.646 1180.081,591.646 1180.081,578.271 "/>
- <polygon fill="#CAA51A" points="1185.813,725.742 1181.2,735.552 1176.604,725.74 "/>
- <rect x="1161.036" y="656.085" fill="#C3A121" width="2.25" height="17.838"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1156.282" y1="706.739" x2="1168.581" y2="706.739"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1162.436" y1="698.278" x2="1162.436" y2="706.739"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1158.823" y1="710.126" x2="1166.042" y2="710.126"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1160.233" y1="713.511" x2="1164.633" y2="713.511"/>
- </g>
- <rect x="1000.69" y="656.085" fill="#C3A121" width="2.25" height="17.838"/>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="995.934" y1="706.739" x2="1008.233" y2="706.739"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1002.086" y1="698.278" x2="1002.086" y2="706.739"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="998.473" y1="710.126" x2="1005.694" y2="710.126"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="999.883" y1="713.511" x2="1004.282" y2="713.511"/>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 18.3613 803.4404)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.7648"> la( </text>
- <text transform="matrix(1 0 0 1 30.7705 803.4404)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="8.6118"> A </text>
- <text transform="matrix(1 0 0 1 36.8286 803.4404)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.7648"> ): </text>
- <text transform="matrix(1 0 0 1 3.1958 829.292)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.7648"> P(kVar): </text>
- <text transform="matrix(1 0 0 1 5.9023 855.1436)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.7648"> Q( </text>
- <text transform="matrix(1 0 0 1 18.2705 855.1436)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="8.6118"> kVar </text>
- <text transform="matrix(1 0 0 1 36.8286 855.1436)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.7648"> ): </text>
- </g>
-
- <rect x="227.5" y="663.114" fill="none" stroke="#CAA51A" stroke-width="2" stroke-miterlimit="10" width="10.229" height="32.142"/>
-
- <rect x="730.116" y="664.891" fill="none" stroke="#CAA51A" stroke-width="2" stroke-miterlimit="10" width="10.229" height="32.142"/>
-
- <rect x="1255.49" y="664.891" fill="none" stroke="#CAA51A" stroke-width="2" stroke-miterlimit="10" width="10.229" height="32.142"/>
-
- <rect x="1799.501" y="664.891" fill="none" stroke="#CAA51A" stroke-width="2" stroke-miterlimit="10" width="10.229" height="32.142"/>
- </g>
- <g id="arrow">
- <rect x="267.139" y="174.05" :fill="ajaxData.sbqdlq111 ? red : green" width="17.215"
- height="23.117"></rect>
- <rect x="930.448" y="174.05" :fill="ajaxData.sbqdlq121 ? red : green" width="17.214"
- height="23.117"></rect>
- <rect x="1645.156" y="174.05" :fill="ajaxData.sbqdlq151 ? red : green" width="17.215"
- height="23.117"></rect>
- <rect x="268.098" y="349.781" :fill="ajaxData.sbqdlq101 ? red : green" width="15.98"
- height="24.201"></rect>
- <rect x="267.5" y="510.772" :fill="ajaxData.sbqdlq102 ? red : green" width="15.462"
- height="24.008"></rect>
- <rect x="682.035" y="349.781" :fill="ajaxData.sbqdlq103 ? red : green" width="15.979"
- height="24.201"></rect>
- <rect x="681.439" y="510.772" :fill="ajaxData.sbqdlq104 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="1215.432" y="349.781" :fill="ajaxData.sbqdlq301 ? red : green" width="15.979"
- height="24.201"></rect>
- <rect x="1214.833" y="523.886" :fill="ajaxData.sbqdlq302 ? red : green" width="15.462"
- height="24.008"></rect>
- <rect x="1646.547" y="349.781" :fill="ajaxData.sbqdlq303 ? red : green" width="15.979"
- height="24.201"></rect>
- <rect x="1646.547" y="510.772" :fill="ajaxData.sbqdlq304 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="68.318" y="609.071" :fill="ajaxData.sbqdlq312 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="149" y="609.071" :fill="ajaxData.sbqdlq313 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="306.051" y="609.071" :fill="ajaxData.sbqdlq314 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="383.095" y="609.071" :fill="ajaxData.sbqdlq316 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="463.194" y="609.071" :fill="ajaxData.sbqdlq315 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="567.646" y="608.071" :fill="ajaxData.sbqdlq321 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="648.325" y="608.071" :fill="ajaxData.sbqdlq322 ? red : green" width="15.464"
- height="24.008"></rect>
- <rect x="807.379" y="608.071" :fill="ajaxData.sbqdlq323 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="886.423" y="608.071" :fill="ajaxData.sbqdlq324 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="1015.07" y="609.737" :fill="ajaxData.sbqdlq331 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="1095.751" y="609.737" :fill="ajaxData.sbqdlq332 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="1173.477" y="609.737" :fill="ajaxData.sbqdlq334 ? red : green" width="15.464"
- height="24.008"></rect>
- <rect x="1391.262" y="609.737" :fill="ajaxData.sbqdlq350 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="1478.943" y="609.737" :fill="ajaxData.sbqdlq351 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="1558.031" y="609.737" :fill="ajaxData.sbqdlq352 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="1639.229" y="609.737" :fill="ajaxData.sbqdlq353 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="1717.741" y="609.737" :fill="ajaxData.sbqdlq354 ? red : green" width="15.464"
- height="24.008"></rect>
- </g>
- <g id="block">
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc301 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="267.946,501.819 274.771,494.099 281.79,501.819 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc301 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="267.946,507.669 274.771,499.948 281.79,507.669 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc301 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="281.79,544.112 274.967,551.833 267.946,544.112 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc301 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="281.79,539.335 274.967,547.058 267.946,539.335 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc302 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="681.886,501.819 688.71,494.099 695.73,501.819 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc302 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="681.886,507.669 688.71,499.948 695.73,507.669 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc302 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="695.73,544.112 688.906,551.833 681.886,544.112 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc302 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="695.73,539.335 688.906,547.058 681.886,539.335 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc303 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1215.279,514.933 1222.104,507.212 1229.12,514.933 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc303 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1215.279,520.781 1222.104,513.063 1229.12,520.781 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc303 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1229.12,557.226 1222.301,564.946 1215.279,557.226 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc303 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1229.12,552.448 1222.301,560.171 1215.279,552.448 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc304 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1646.991,501.819 1653.818,494.099 1660.838,501.819 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc304 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1646.991,507.669 1653.818,499.948 1660.838,507.669 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc304 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1660.838,544.112 1654.014,551.833 1646.991,544.112 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc304 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1660.838,539.335 1654.014,547.058 1646.991,539.335 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc312 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="82.972,642.031 76.149,649.751 69.128,642.031 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc312 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="82.972,636.183 76.149,643.901 69.128,636.183 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc312 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="69.128,604.517 75.952,596.794 82.972,604.517 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc312 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="69.128,597.356 75.952,589.634 82.972,597.356 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc313 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="163.653,642.031 156.831,649.751 149.81,642.031 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc313 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="163.653,636.183 156.831,643.901 149.81,636.183 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc313 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="149.81,604.517 156.634,596.794 163.653,604.517 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc313 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="149.81,597.356 156.634,589.634 163.653,597.356 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc319 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="226.032,611.517 232.856,603.794 239.876,611.517 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc319 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="226.032,604.356 232.856,596.634 239.876,604.356 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc314 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="320.705,642.031 313.882,649.751 306.861,642.031 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc314 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="320.705,636.183 313.882,643.901 306.861,636.183 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc314 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="306.861,604.517 313.685,596.794 320.705,604.517 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc314 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="306.861,597.356 313.685,589.634 320.705,597.356 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc316 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="397.748,642.031 390.926,649.751 383.904,642.031 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc316 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="397.748,636.183 390.926,643.901 383.904,636.183 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc316 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="383.904,604.517 390.729,596.794 397.748,604.517 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc316 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="383.904,597.356 390.729,589.634 397.748,597.356 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc315 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="477.848,642.031 471.025,649.751 464.004,642.031 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc315 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="477.848,636.183 471.025,643.901 464.004,636.183 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc315 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="464.004,604.517 470.825,596.794 477.848,604.517 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc315 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="464.004,597.356 470.825,589.634 477.848,597.356 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc321 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="582.3,641.031 575.479,648.751 568.453,641.031 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc321 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="582.3,635.183 575.479,642.901 568.453,635.183 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc321 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="568.453,603.517 575.28,595.794 582.3,603.517 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc321 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="568.453,596.356 575.28,588.634 582.3,596.356 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc322 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="662.98,641.031 656.156,648.751 649.138,641.031 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc322 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="662.98,635.183 656.156,642.901 649.138,635.183 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc322 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="649.138,603.517 655.962,595.794 662.98,603.517 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc322 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="649.138,596.356 655.962,588.634 662.98,596.356 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc329 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="728.36,610.517 735.186,602.794 742.201,610.517 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc329 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="728.36,603.356 735.186,595.634 742.201,603.356 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc323 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="822.031,641.031 815.21,648.751 808.189,641.031 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc323 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="822.031,635.183 815.21,642.901 808.189,635.183 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc323 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="808.189,603.517 815.013,595.794 822.031,603.517 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc323 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="808.189,596.356 815.013,588.634 822.031,596.356 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc324 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="901.073,641.031 894.254,648.751 887.232,641.031 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc324 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="901.073,635.183 894.254,642.901 887.232,635.183 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc324 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="887.232,603.517 894.057,595.794 901.073,603.517 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc324 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="887.232,596.356 894.057,588.634 901.073,596.356 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc331 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1029.723,642.698 1022.901,650.417 1015.879,642.698 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc331 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1029.723,636.849 1022.901,644.567 1015.879,636.849 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc331 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1015.879,605.183 1022.701,597.46 1029.723,605.183 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc331 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1015.879,598.021 1022.701,590.3 1029.723,598.021 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc332 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1110.405,642.698 1103.583,650.417 1096.561,642.698 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc332 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1110.405,636.849 1103.583,644.567 1096.561,636.849 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc332 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1096.561,605.183 1103.385,597.46 1110.405,605.183 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc332 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1096.561,598.021 1103.385,590.3 1110.405,598.021 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc334 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1188.129,642.698 1181.307,650.417 1174.282,642.698 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc334 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1188.129,636.849 1181.307,644.567 1174.282,636.849 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc334 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1174.282,605.183 1181.109,597.46 1188.129,605.183 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc334 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1174.282,598.021 1181.109,590.3 1188.129,598.021 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc339 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1253.758,612.183 1260.581,604.46 1267.602,612.183 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc339 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1253.758,605.021 1260.581,597.3 1267.602,605.021 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc351 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1493.598,642.698 1486.773,650.417 1479.753,642.698 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc351 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1493.598,636.849 1486.773,644.567 1479.753,636.849 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc351 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1479.753,605.183 1486.574,597.46 1493.598,605.183 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc351 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1479.753,598.021 1486.574,590.3 1493.598,598.021 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc352 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1572.686,642.698 1565.863,650.417 1558.842,642.698 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc352 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1572.686,636.849 1565.863,644.567 1558.842,636.849 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc352 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1558.842,605.183 1565.665,597.46 1572.686,605.183 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc352 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1558.842,598.021 1565.665,590.3 1572.686,598.021 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc353 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1653.883,642.698 1647.061,650.417 1640.036,642.698 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc353 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1653.883,636.849 1647.061,644.567 1640.036,636.849 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc353 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1640.036,605.183 1646.863,597.46 1653.883,605.183 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc353 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1640.036,598.021 1646.863,590.3 1653.883,598.021 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc354 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1732.398,642.698 1725.573,650.417 1718.555,642.698 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc354 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1732.398,636.849 1725.573,644.567 1718.555,636.849 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc354 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1718.555,605.183 1725.379,597.46 1732.398,605.183 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc354 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1718.555,598.021 1725.379,590.3 1732.398,598.021 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.sbqsc359 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1797.821,612.183 1804.646,604.46 1811.665,612.183 "></polyline>
- <polyline fill="none" :stroke="ajaxData.sbqsc359 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1797.821,605.021 1804.646,597.3 1811.665,605.021 "></polyline>
- </g>
- <g>
- <!--灰色-->
- <polyline fill="none" stroke="#AAA9A9" stroke-width="1.3" stroke-miterlimit="10"
- points="1405.915,642.698 1399.093,650.417 1392.071,642.698 "></polyline>
- <polyline fill="none" stroke="#AAA9A9" stroke-width="1.3" stroke-miterlimit="10"
- points="1405.915,636.849 1399.093,644.567 1392.071,636.849 "></polyline>
- <polyline fill="none" stroke="#AAA9A9" stroke-width="1.3" stroke-miterlimit="10"
- points="1392.071,605.183 1398.896,597.46 1405.915,605.183 "></polyline>
- <polyline fill="none" stroke="#AAA9A9" stroke-width="1.3" stroke-miterlimit="10"
- points="1392.071,598.021 1398.896,590.3 1405.915,598.021 "></polyline>
- </g>
- </g>
- <g id="kg">
- <g id="sbqkg1033">
- <g v-if="ajaxData.sbqkg1033" id="off_41_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1214.279" y1="393.884" x2="1231.547" y2="393.884"></line>
- <path fill="#9E2224"
- d="M1223.422,407.899c1.418,0,2.571,1.157,2.571,2.573s-1.155,2.57-2.571,2.57 c-1.421,0-2.574-1.156-2.574-2.57C1220.844,409.056,1221.999,407.899,1223.422,407.899 M1223.422,405.865 c-2.546,0-4.605,2.063-4.605,4.604c0,2.543,2.063,4.604,4.605,4.604c2.545,0,4.604-2.062,4.604-4.604 C1228.025,407.929,1225.965,405.865,1223.422,405.865L1223.422,405.865z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1223.422" y1="394.11" x2="1223.422" y2="406.862"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1033 == false" id="on_41_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1214.279" y1="393.884" x2="1231.547" y2="393.884"></line>
- <path fill="#27963A"
- d="M1223.422,407.899c1.418,0,2.571,1.157,2.571,2.573s-1.155,2.57-2.571,2.57 c-1.421,0-2.574-1.156-2.574-2.57C1220.844,409.056,1221.999,407.899,1223.422,407.899 M1223.422,405.865 c-2.546,0-4.605,2.063-4.605,4.604c0,2.543,2.063,4.604,4.605,4.604c2.545,0,4.604-2.062,4.604-4.604 C1228.025,407.929,1225.965,405.865,1223.422,405.865L1223.422,405.865z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1229.876" y1="396.044" x2="1222.911" y2="406.862"></line>
- </g>
- </g>
- <g id="sbqkg1110">
- <g v-if="ajaxData.sbqkg1110" id="off_27_">
- <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
- x1="297.736" y1="125.034" x2="297.736" y2="107.769"></line>
- <path fill="#9F2324"
- d="M314.324,118.466c-1.423,0-2.573-1.154-2.573-2.568c0-1.422,1.156-2.571,2.573-2.571 s2.569,1.155,2.569,2.571C316.897,117.313,315.743,118.466,314.324,118.466 M314.324,120.497c2.544,0,4.603-2.063,4.603-4.604 s-2.06-4.604-4.603-4.604c-2.546,0-4.604,2.063-4.604,4.604C309.72,118.44,311.78,120.497,314.324,120.497L314.324,120.497z">
- </path>
- <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
- x1="297.96" y1="115.894" x2="310.711" y2="115.894"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1110 == false" id="on_27_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="297.736" y1="125.034" x2="297.736" y2="107.769"></line>
- <path fill="#27963A"
- d="M314.324,118.466c-1.423,0-2.576-1.154-2.576-2.568c0-1.422,1.154-2.571,2.576-2.571 c1.419,0,2.569,1.155,2.569,2.571C316.897,117.313,315.743,118.466,314.324,118.466 M314.324,120.497 c2.543,0,4.603-2.063,4.603-4.604s-2.06-4.604-4.603-4.604c-2.547,0-4.607,2.063-4.607,4.604 C309.717,118.44,311.78,120.497,314.324,120.497L314.324,120.497z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="299.894" y1="109.435" x2="310.711" y2="116.401"></line>
- </g>
- </g>
- <g id="sbqkg11102">
- <g v-if="ajaxData.sbqkg11102" id="off_2_">
- <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
- x1="297.736" y1="217.534" x2="297.736" y2="200.269"></line>
- <path fill="#9F2324"
- d="M314.324,210.966c-1.423,0-2.573-1.154-2.573-2.568c0-1.422,1.156-2.571,2.573-2.571 s2.569,1.155,2.569,2.571C316.897,209.813,315.743,210.966,314.324,210.966 M314.324,212.997c2.544,0,4.603-2.063,4.603-4.604 s-2.06-4.604-4.603-4.604c-2.546,0-4.604,2.063-4.604,4.604C309.72,210.94,311.78,212.997,314.324,212.997L314.324,212.997z">
- </path>
- <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
- x1="297.96" y1="208.394" x2="310.711" y2="208.394"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg11102 == false" id="on_2_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="296.741" y1="217.027" x2="296.741" y2="199.761"></line>
- <path fill="#27963A"
- d="M313.33,210.458c-1.421,0-2.576-1.154-2.576-2.568c0-1.422,1.156-2.573,2.576-2.573 c1.419,0,2.569,1.157,2.569,2.573C315.903,209.305,314.749,210.458,313.33,210.458 M313.33,212.49 c2.543,0,4.603-2.062,4.603-4.604s-2.06-4.604-4.603-4.604c-2.545,0-4.607,2.063-4.607,4.604 C308.723,210.432,310.785,212.49,313.33,212.49L313.33,212.49z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="298.9" y1="201.427" x2="309.717" y2="208.393"></line>
- </g>
- </g>
- <g id="sbqkg11103">
- <g v-if="ajaxData.sbqkg11103" id="off_1_">
- <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
- x1="253.269" y1="151.931" x2="253.269" y2="169.196"></line>
- <path fill="#9F2324"
- d="M236.681,158.499c1.42,0,2.573,1.151,2.573,2.565c0,1.422-1.156,2.574-2.573,2.574 s-2.572-1.158-2.572-2.574C234.108,159.651,235.262,158.499,236.681,158.499 M236.681,156.468c-2.544,0-4.603,2.061-4.603,4.604 s2.06,4.604,4.603,4.604s4.604-2.063,4.604-4.604C241.285,158.524,239.225,156.468,236.681,156.468L236.681,156.468z">
- </path>
- <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
- x1="253.045" y1="161.071" x2="240.294" y2="161.071"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg11103 == false" id="on_1_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="253.269" y1="151.931" x2="253.269" y2="169.196"></line>
- <path fill="#27963A"
- d="M236.681,158.499c1.42,0,2.576,1.151,2.576,2.565c0,1.422-1.157,2.574-2.576,2.574 s-2.572-1.158-2.572-2.574C234.108,159.651,235.262,158.499,236.681,158.499 M236.681,156.468c-2.543,0-4.603,2.061-4.603,4.604 s2.06,4.604,4.603,4.604c2.544,0,4.607-2.063,4.607-4.604C241.288,158.524,239.225,156.468,236.681,156.468L236.681,156.468z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="251.111" y1="167.53" x2="240.294" y2="160.563"></line>
- </g>
- </g>
- <g id="sbqkg111011">
- <g v-if="ajaxData.sbqkg111011" id="off_4_">
- <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
- x1="253.269" y1="251.636" x2="253.269" y2="268.901"></line>
- <path fill="#9F2324"
- d="M236.681,258.204c1.42,0,2.573,1.151,2.573,2.565c0,1.422-1.156,2.574-2.573,2.574 s-2.572-1.158-2.572-2.574C234.108,259.356,235.262,258.204,236.681,258.204 M236.681,256.173c-2.544,0-4.603,2.061-4.603,4.604 s2.06,4.604,4.603,4.604s4.604-2.063,4.604-4.604C241.285,258.229,239.225,256.173,236.681,256.173L236.681,256.173z">
- </path>
- <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
- x1="253.045" y1="260.776" x2="240.294" y2="260.776"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg111011 == false" id="on_4_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="253.269" y1="251.636" x2="253.269" y2="268.901"></line>
- <path fill="#27963A"
- d="M236.681,258.204c1.42,0,2.576,1.151,2.576,2.565c0,1.422-1.157,2.574-2.576,2.574 s-2.572-1.158-2.572-2.574C234.108,259.356,235.262,258.204,236.681,258.204 M236.681,256.173c-2.543,0-4.603,2.061-4.603,4.604 s2.06,4.604,4.603,4.604c2.544,0,4.607-2.063,4.607-4.604C241.288,258.229,239.225,256.173,236.681,256.173L236.681,256.173z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="251.111" y1="267.235" x2="240.294" y2="260.269"></line>
- </g>
- </g>
- <g id="sbqkg1113">
- <g v-if="ajaxData.sbqkg1113" id="off_25_">
- <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
- x1="265.855" y1="129.855" x2="283.119" y2="129.855"></line>
- <path fill="#9F2324"
- d="M274.994,143.871c1.418,0,2.571,1.153,2.571,2.569c0,1.418-1.154,2.571-2.571,2.571 c-1.423,0-2.573-1.155-2.573-2.571S273.573,143.871,274.994,143.871 M274.994,141.842c-2.548,0-4.604,2.061-4.604,4.604 c0,2.548,2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604C279.599,143.898,277.539,141.842,274.994,141.842 L274.994,141.842z">
- </path>
- <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
- x1="274.994" y1="130.084" x2="274.994" y2="142.832"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1113 == false" id="on_25_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="265.855" y1="129.855" x2="283.119" y2="129.855"></line>
- <path fill="#27963A"
- d="M274.994,143.871c1.418,0,2.571,1.153,2.571,2.569c0,1.422-1.154,2.571-2.571,2.571 c-1.423,0-2.573-1.155-2.573-2.571C272.418,145.023,273.573,143.871,274.994,143.871 M274.994,141.842 c-2.548,0-4.604,2.061-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604S277.539,141.842,274.994,141.842 L274.994,141.842z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="281.45" y1="132.018" x2="274.487" y2="142.832"></line>
- </g>
- </g>
- <g id="sbqkg1111">
- <g v-if="ajaxData.sbqkg1111" id="off_3_">
- <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
- x1="265.855" y1="220.917" x2="283.119" y2="220.917"></line>
- <path fill="#9F2324"
- d="M274.994,234.933c1.418,0,2.571,1.156,2.571,2.572c0,1.418-1.154,2.571-2.571,2.571 c-1.423,0-2.573-1.155-2.573-2.571S273.573,234.933,274.994,234.933 M274.994,232.903c-2.548,0-4.604,2.063-4.604,4.604 c0,2.545,2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604C279.599,234.96,277.539,232.903,274.994,232.903 L274.994,232.903z">
- </path>
- <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
- x1="274.994" y1="221.146" x2="274.994" y2="233.894"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1111 == false" id="on_3_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="265.855" y1="220.917" x2="283.119" y2="220.917"></line>
- <path fill="#27963A"
- d="M274.994,234.933c1.418,0,2.571,1.156,2.571,2.572c0,1.422-1.154,2.571-2.571,2.571 c-1.423,0-2.573-1.155-2.573-2.571C272.418,236.085,273.573,234.933,274.994,234.933 M274.994,232.903 c-2.548,0-4.604,2.063-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604S277.539,232.903,274.994,232.903 L274.994,232.903z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="281.45" y1="223.079" x2="274.487" y2="233.894"></line>
- </g>
- </g>
- <g id="sbqkg1210">
- <g v-if="ajaxData.sbqkg1210" id="off_10_">
- <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
- x1="961.047" y1="125.034" x2="961.047" y2="107.769"></line>
- <path fill="#9F2324"
- d="M977.635,118.466c-1.42,0-2.572-1.154-2.572-2.568c0-1.422,1.156-2.571,2.572-2.571 c1.418,0,2.569,1.155,2.569,2.571C980.208,117.313,979.055,118.466,977.635,118.466 M977.635,120.497 c2.545,0,4.604-2.063,4.604-4.604s-2.062-4.604-4.604-4.604s-4.604,2.063-4.604,4.604 C973.031,118.44,975.091,120.497,977.635,120.497L977.635,120.497z">
- </path>
- <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
- x1="961.271" y1="115.894" x2="974.021" y2="115.894"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1210 == false" id="on_10_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="961.047" y1="125.034" x2="961.047" y2="107.769"></line>
- <path fill="#27963A"
- d="M977.635,118.466c-1.42,0-2.576-1.154-2.576-2.568c0-1.422,1.157-2.571,2.576-2.571 c1.42,0,2.569,1.155,2.569,2.571C980.208,117.313,979.055,118.466,977.635,118.466 M977.635,120.497 c2.543,0,4.604-2.063,4.604-4.604s-2.062-4.604-4.604-4.604c-2.544,0-4.605,2.063-4.605,4.604 C973.028,118.44,975.091,120.497,977.635,120.497L977.635,120.497z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="963.202" y1="109.435" x2="974.021" y2="116.401"></line>
- </g>
- </g>
- <g id="sbqkg12102">
- <g v-if="ajaxData.sbqkg12102" id="off_9_">
- <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
- x1="961.047" y1="218.001" x2="961.047" y2="200.736"></line>
- <path fill="#9F2324"
- d="M977.635,211.433c-1.42,0-2.572-1.154-2.572-2.568c0-1.422,1.156-2.571,2.572-2.571 c1.418,0,2.569,1.157,2.569,2.571C980.208,210.28,979.055,211.433,977.635,211.433 M977.635,213.464 c2.545,0,4.604-2.063,4.604-4.604s-2.062-4.604-4.604-4.604s-4.604,2.063-4.604,4.604 C973.031,211.406,975.091,213.464,977.635,213.464L977.635,213.464z">
- </path>
- <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
- x1="961.271" y1="208.861" x2="974.021" y2="208.861"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg12102 == false" id="on_9_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="961.047" y1="218.001" x2="961.047" y2="200.736"></line>
- <path fill="#27963A"
- d="M977.635,211.433c-1.42,0-2.576-1.154-2.576-2.568c0-1.422,1.157-2.571,2.576-2.571 c1.42,0,2.569,1.157,2.569,2.571C980.208,210.28,979.055,211.433,977.635,211.433 M977.635,213.464 c2.543,0,4.604-2.063,4.604-4.604s-2.062-4.604-4.604-4.604c-2.544,0-4.605,2.063-4.605,4.604 C973.028,211.406,975.091,213.464,977.635,213.464L977.635,213.464z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="963.202" y1="202.402" x2="974.021" y2="209.367"></line>
- </g>
- </g>
- <g id="sbqkg12103">
- <g v-if="ajaxData.sbqkg12103" id="off_8_">
- <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
- x1="916.577" y1="151.931" x2="916.577" y2="169.196"></line>
- <path fill="#9F2324"
- d="M899.99,158.499c1.42,0,2.572,1.151,2.572,2.565c0,1.422-1.155,2.574-2.572,2.574 s-2.569-1.158-2.569-2.574C897.419,159.651,898.573,158.499,899.99,158.499 M899.99,156.468c-2.544,0-4.604,2.061-4.604,4.604 s2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604C904.596,158.524,902.533,156.468,899.99,156.468L899.99,156.468z">
- </path>
- <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
- x1="916.355" y1="161.071" x2="903.605" y2="161.071"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg12103 == false" id="on_8_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="916.577" y1="151.931" x2="916.577" y2="169.196"></line>
- <path fill="#27963A"
- d="M899.99,158.499c1.42,0,2.576,1.151,2.576,2.565c0,1.422-1.157,2.574-2.576,2.574 s-2.569-1.158-2.569-2.574C897.419,159.651,898.573,158.499,899.99,158.499 M899.99,156.468c-2.543,0-4.604,2.061-4.604,4.604 s2.061,4.604,4.604,4.604c2.544,0,4.606-2.063,4.606-4.604C904.599,158.524,902.533,156.468,899.99,156.468L899.99,156.468z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="914.422" y1="167.53" x2="903.605" y2="160.563"></line>
- </g>
- </g>
- <g id="sbqkg121012">
- <g v-if="ajaxData.sbqkg121012" id="off_7_">
- <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
- x1="916.577" y1="251.636" x2="916.577" y2="268.901"></line>
- <path fill="#9F2324"
- d="M899.99,258.204c1.42,0,2.572,1.151,2.572,2.565c0,1.422-1.155,2.574-2.572,2.574 s-2.569-1.158-2.569-2.574C897.419,259.356,898.573,258.204,899.99,258.204 M899.99,256.173c-2.544,0-4.604,2.061-4.604,4.604 s2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604C904.596,258.229,902.533,256.173,899.99,256.173L899.99,256.173z">
- </path>
- <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
- x1="916.355" y1="260.776" x2="903.605" y2="260.776"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg121012 == false" id="on_7_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="916.577" y1="251.636" x2="916.577" y2="268.901"></line>
- <path fill="#27963A"
- d="M899.99,258.204c1.42,0,2.576,1.151,2.576,2.565c0,1.422-1.157,2.574-2.576,2.574 s-2.569-1.158-2.569-2.574C897.419,259.356,898.573,258.204,899.99,258.204 M899.99,256.173c-2.543,0-4.604,2.061-4.604,4.604 s2.061,4.604,4.604,4.604c2.544,0,4.606-2.063,4.606-4.604C904.599,258.229,902.533,256.173,899.99,256.173L899.99,256.173z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="914.422" y1="267.235" x2="903.605" y2="260.269"></line>
- </g>
- </g>
- <g id="sbqkg1213">
- <g v-if="ajaxData.sbqkg1213" id="off_6_">
- <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
- x1="929.167" y1="129.855" x2="946.43" y2="129.855"></line>
- <path fill="#9F2324"
- d="M938.305,143.871c1.418,0,2.574,1.153,2.574,2.569c0,1.418-1.156,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571S936.885,143.871,938.305,143.871 M938.305,141.842c-2.545,0-4.604,2.061-4.604,4.604 c0,2.548,2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604C942.907,143.898,940.85,141.842,938.305,141.842 L938.305,141.842z">
- </path>
- <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
- x1="938.305" y1="130.084" x2="938.305" y2="142.832"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1213 == false" id="on_6_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="929.167" y1="129.855" x2="946.43" y2="129.855"></line>
- <path fill="#27963A"
- d="M938.305,143.871c1.418,0,2.574,1.153,2.574,2.569c0,1.422-1.156,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571C935.729,145.023,936.885,143.871,938.305,143.871 M938.305,141.842 c-2.545,0-4.604,2.061-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604S940.85,141.842,938.305,141.842 L938.305,141.842z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="944.762" y1="132.018" x2="937.799" y2="142.832"></line>
- </g>
- </g>
- <g id="sbqkg1212">
- <g v-if="ajaxData.sbqkg1212" id="off_5_">
- <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
- x1="929.167" y1="220.917" x2="946.43" y2="220.917"></line>
- <path fill="#9F2324"
- d="M938.305,234.933c1.418,0,2.574,1.156,2.574,2.572c0,1.418-1.156,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571S936.885,234.933,938.305,234.933 M938.305,232.903c-2.545,0-4.604,2.063-4.604,4.604 c0,2.545,2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604C942.907,234.96,940.85,232.903,938.305,232.903 L938.305,232.903z">
- </path>
- <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
- x1="938.305" y1="221.146" x2="938.305" y2="233.894"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1212 == false" id="on_5_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="929.167" y1="220.917" x2="946.43" y2="220.917"></line>
- <path fill="#27963A"
- d="M938.305,234.933c1.418,0,2.574,1.156,2.574,2.572c0,1.422-1.156,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571C935.729,236.085,936.885,234.933,938.305,234.933 M938.305,232.903 c-2.545,0-4.604,2.063-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604S940.85,232.903,938.305,232.903 L938.305,232.903z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="944.762" y1="223.079" x2="937.799" y2="233.894"></line>
- </g>
- </g>
- <g id="sbqkg1510">
- <g v-if="ajaxData.sbqkg1510" id="off_16_">
- <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
- x1="1675.756" y1="125.034" x2="1675.756" y2="107.769"></line>
- <path fill="#9F2324"
- d="M1692.344,118.466c-1.42,0-2.572-1.154-2.572-2.568c0-1.422,1.156-2.571,2.572-2.571 c1.418,0,2.571,1.155,2.571,2.571C1694.917,117.313,1693.764,118.466,1692.344,118.466 M1692.344,120.497 c2.545,0,4.604-2.063,4.604-4.604s-2.062-4.604-4.604-4.604s-4.604,2.063-4.604,4.604 C1687.74,118.44,1689.8,120.497,1692.344,120.497L1692.344,120.497z">
- </path>
- <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
- x1="1675.98" y1="115.894" x2="1688.73" y2="115.894"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1510 == false" id="on_16_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1675.756" y1="125.034" x2="1675.756" y2="107.769"></line>
- <path fill="#27963A"
- d="M1692.344,118.466c-1.42,0-2.576-1.154-2.576-2.568c0-1.422,1.157-2.571,2.576-2.571 c1.42,0,2.571,1.155,2.571,2.571C1694.917,117.313,1693.764,118.466,1692.344,118.466 M1692.344,120.497 c2.543,0,4.604-2.063,4.604-4.604s-2.062-4.604-4.604-4.604c-2.544,0-4.605,2.063-4.605,4.604 C1687.737,118.44,1689.8,120.497,1692.344,120.497L1692.344,120.497z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1677.911" y1="109.435" x2="1688.73" y2="116.401"></line>
- </g>
- </g>
- <g id="sbqkg15105">
- <g v-if="ajaxData.sbqkg15105" id="off_15_">
- <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
- x1="1675.756" y1="217.534" x2="1675.756" y2="200.269"></line>
- <path fill="#9F2324"
- d="M1692.344,210.966c-1.42,0-2.572-1.154-2.572-2.568c0-1.422,1.156-2.571,2.572-2.571 c1.418,0,2.571,1.155,2.571,2.571C1694.917,209.813,1693.764,210.966,1692.344,210.966 M1692.344,212.997 c2.545,0,4.604-2.063,4.604-4.604s-2.062-4.604-4.604-4.604s-4.604,2.063-4.604,4.604 C1687.74,210.94,1689.8,212.997,1692.344,212.997L1692.344,212.997z">
- </path>
- <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
- x1="1675.98" y1="208.394" x2="1688.73" y2="208.394"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg15105 == false" id="on_15_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1675.756" y1="217.534" x2="1675.756" y2="200.269"></line>
- <path fill="#27963A"
- d="M1692.344,210.966c-1.42,0-2.576-1.154-2.576-2.568c0-1.422,1.157-2.571,2.576-2.571 c1.42,0,2.571,1.155,2.571,2.571C1694.917,209.813,1693.764,210.966,1692.344,210.966 M1692.344,212.997 c2.543,0,4.604-2.063,4.604-4.604s-2.062-4.604-4.604-4.604c-2.544,0-4.605,2.063-4.605,4.604 C1687.737,210.94,1689.8,212.997,1692.344,212.997L1692.344,212.997z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1677.911" y1="201.935" x2="1688.73" y2="208.901"></line>
- </g>
- </g>
- <g id="sbqkg15103">
- <g v-if="ajaxData.sbqkg15103" id="off_14_">
- <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
- x1="1631.286" y1="151.931" x2="1631.286" y2="169.196"></line>
- <path fill="#9F2324"
- d="M1614.698,158.499c1.42,0,2.572,1.151,2.572,2.565c0,1.422-1.156,2.574-2.572,2.574 c-1.418,0-2.57-1.158-2.57-2.574C1612.128,159.651,1613.281,158.499,1614.698,158.499 M1614.698,156.468 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.604 C1619.305,158.524,1617.242,156.468,1614.698,156.468L1614.698,156.468z">
- </path>
- <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
- x1="1631.064" y1="161.071" x2="1618.314" y2="161.071"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg15103 == false" id="on_14_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1631.286" y1="151.931" x2="1631.286" y2="169.196"></line>
- <path fill="#27963A"
- d="M1614.698,158.499c1.42,0,2.576,1.151,2.576,2.565c0,1.422-1.156,2.574-2.576,2.574 s-2.57-1.158-2.57-2.574C1612.128,159.651,1613.281,158.499,1614.698,158.499 M1614.698,156.468 c-2.543,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604c2.544,0,4.605-2.063,4.605-4.604 C1619.309,158.524,1617.242,156.468,1614.698,156.468L1614.698,156.468z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1629.131" y1="167.53" x2="1618.314" y2="160.563"></line>
- </g>
- </g>
- <g id="sbqkg151012">
- <g v-if="ajaxData.sbqkg151012" id="off_13_">
- <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
- x1="1631.286" y1="251.636" x2="1631.286" y2="268.901"></line>
- <path fill="#9F2324"
- d="M1614.698,258.204c1.42,0,2.572,1.151,2.572,2.565c0,1.422-1.156,2.574-2.572,2.574 c-1.418,0-2.57-1.158-2.57-2.574C1612.128,259.356,1613.281,258.204,1614.698,258.204 M1614.698,256.173 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.604 C1619.305,258.229,1617.242,256.173,1614.698,256.173L1614.698,256.173z">
- </path>
- <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
- x1="1631.064" y1="260.776" x2="1618.314" y2="260.776"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg151012 == false" id="on_13_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1631.286" y1="251.636" x2="1631.286" y2="268.901"></line>
- <path fill="#27963A"
- d="M1614.698,258.204c1.42,0,2.576,1.151,2.576,2.565c0,1.422-1.156,2.574-2.576,2.574 s-2.57-1.158-2.57-2.574C1612.128,259.356,1613.281,258.204,1614.698,258.204 M1614.698,256.173 c-2.543,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604c2.544,0,4.605-2.063,4.605-4.604 C1619.309,258.229,1617.242,256.173,1614.698,256.173L1614.698,256.173z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1629.131" y1="267.235" x2="1618.314" y2="260.269"></line>
- </g>
- </g>
- <g id="sbqkg1513">
- <g v-if="ajaxData.sbqkg1513" id="off_12_">
- <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
- x1="1643.874" y1="129.855" x2="1661.139" y2="129.855"></line>
- <path fill="#9F2324"
- d="M1653.014,143.871c1.418,0,2.574,1.153,2.574,2.569c0,1.418-1.156,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571S1651.594,143.871,1653.014,143.871 M1653.014,141.842c-2.545,0-4.604,2.061-4.604,4.604 c0,2.548,2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604C1657.616,143.898,1655.559,141.842,1653.014,141.842 L1653.014,141.842z">
- </path>
- <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
- x1="1653.014" y1="130.084" x2="1653.014" y2="142.832"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1513 == false" id="on_12_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1643.874" y1="129.855" x2="1661.139" y2="129.855"></line>
- <path fill="#27963A"
- d="M1653.014,143.871c1.418,0,2.574,1.153,2.574,2.569c0,1.422-1.156,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571C1650.438,145.023,1651.594,143.871,1653.014,143.871 M1653.014,141.842 c-2.545,0-4.604,2.061-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604S1655.559,141.842,1653.014,141.842 L1653.014,141.842z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1659.471" y1="132.018" x2="1652.508" y2="142.832"></line>
- </g>
- </g>
- <g id="sbqkg1515">
- <g v-if="ajaxData.sbqkg1515" id="off_11_">
- <line fill="none" stroke="#9F2324" stroke-width="2.5" stroke-miterlimit="10"
- x1="1643.874" y1="220.917" x2="1661.139" y2="220.917"></line>
- <path fill="#9F2324"
- d="M1653.014,234.933c1.418,0,2.574,1.156,2.574,2.572c0,1.418-1.156,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571S1651.594,234.933,1653.014,234.933 M1653.014,232.903c-2.545,0-4.604,2.063-4.604,4.604 c0,2.545,2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604C1657.616,234.96,1655.559,232.903,1653.014,232.903 L1653.014,232.903z">
- </path>
- <line fill="none" stroke="#9F2324" stroke-width="2" stroke-miterlimit="10"
- x1="1653.014" y1="221.146" x2="1653.014" y2="233.894"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1515 == false" id="on_11_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1643.874" y1="220.917" x2="1661.139" y2="220.917"></line>
- <path fill="#27963A"
- d="M1653.014,234.933c1.418,0,2.574,1.156,2.574,2.572c0,1.422-1.156,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571C1650.438,236.085,1651.594,234.933,1653.014,234.933 M1653.014,232.903 c-2.545,0-4.604,2.063-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604S1655.559,232.903,1653.014,232.903 L1653.014,232.903z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1659.471" y1="223.079" x2="1652.508" y2="233.894"></line>
- </g>
- </g>
- <g id="sbqkg1011">
- <g v-if="ajaxData.sbqkg1011" id="off_23_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="266.946" y1="312.659" x2="284.213" y2="312.659"></line>
- <path fill="#9E2224"
- d="M276.088,326.678c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.567-2.574,2.567 c-1.42,0-2.574-1.156-2.574-2.567C273.511,327.834,274.666,326.678,276.088,326.678 M276.088,324.646 c-2.545,0-4.604,2.063-4.604,4.604c0,2.546,2.063,4.605,4.604,4.605c2.545,0,4.604-2.062,4.604-4.605 C280.692,326.706,278.632,324.646,276.088,324.646L276.088,324.646z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="276.088" y1="312.889" x2="276.088" y2="325.641"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1011 == false" id="on_23_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="266.946" y1="312.659" x2="284.213" y2="312.659"></line>
- <path fill="#27963A"
- d="M276.088,326.678c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.567-2.574,2.567 c-1.42,0-2.574-1.156-2.574-2.567C273.511,327.834,274.666,326.678,276.088,326.678 M276.088,324.646 c-2.545,0-4.604,2.063-4.604,4.604c0,2.546,2.063,4.605,4.604,4.605c2.545,0,4.604-2.062,4.604-4.605 C280.692,326.706,278.632,324.646,276.088,324.646L276.088,324.646z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="282.543" y1="314.822" x2="275.58" y2="325.641"></line>
- </g>
- </g>
- <g id="sbqkg1013">
- <g v-if="ajaxData.sbqkg1013" id="off_22_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="266.946" y1="393.884" x2="284.213" y2="393.884"></line>
- <path fill="#9E2224"
- d="M276.088,407.899c1.418,0,2.574,1.157,2.574,2.573s-1.158,2.57-2.574,2.57 c-1.42,0-2.574-1.156-2.574-2.57C273.511,409.056,274.666,407.899,276.088,407.899 M276.088,405.865 c-2.545,0-4.604,2.063-4.604,4.604c0,2.543,2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604 S278.632,405.865,276.088,405.865L276.088,405.865z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="276.088" y1="394.11" x2="276.088" y2="406.862"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1013 == false" id="on_22_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="266.946" y1="393.884" x2="284.213" y2="393.884"></line>
- <path fill="#27963A"
- d="M276.088,407.899c1.418,0,2.574,1.157,2.574,2.573s-1.158,2.57-2.574,2.57 c-1.42,0-2.574-1.156-2.574-2.57C273.511,409.056,274.666,407.899,276.088,407.899 M276.088,405.865 c-2.545,0-4.604,2.063-4.604,4.604c0,2.543,2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604 S278.632,405.865,276.088,405.865L276.088,405.865z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="282.543" y1="396.044" x2="275.58" y2="406.862"></line>
- </g>
- </g>
- <g id="sbqkg10102">
- <g v-if="ajaxData.sbqkg10102" id="off_21_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="252.749" y1="334.615" x2="252.749" y2="351.883"></line>
- <path fill="#9E2224"
- d="M236.159,341.188c1.422,0,2.571,1.154,2.571,2.568c0,1.422-1.153,2.571-2.571,2.571 s-2.57-1.155-2.57-2.571C233.589,342.338,234.741,341.188,236.159,341.188 M236.159,339.154c-2.548,0-4.604,2.063-4.604,4.604 s2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604C240.765,341.211,238.706,339.154,236.159,339.154L236.159,339.154z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="252.524" y1="343.758" x2="239.774" y2="343.758"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg10102 == false" id="on_21_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="252.749" y1="334.615" x2="252.749" y2="351.883"></line>
- <path fill="#27963A"
- d="M236.159,341.188c1.422,0,2.573,1.154,2.573,2.568c0,1.422-1.151,2.571-2.573,2.571 c-1.418,0-2.57-1.155-2.57-2.571C233.589,342.338,234.741,341.188,236.159,341.188 M236.159,339.154 c-2.543,0-4.604,2.063-4.604,4.604s2.063,4.604,4.604,4.604c2.547,0,4.604-2.063,4.604-4.604 C240.767,341.211,238.706,339.154,236.159,339.154L236.159,339.154z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="250.591" y1="350.217" x2="239.774" y2="343.247"></line>
- </g>
- </g>
- <g id="sbqkg10103">
- <g v-if="ajaxData.sbqkg10103" id="off_20_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="253.749" y1="372.073" x2="253.749" y2="389.339"></line>
- <path fill="#9E2224"
- d="M237.159,378.644c1.422,0,2.571,1.154,2.571,2.57c0,1.42-1.153,2.569-2.571,2.569s-2.57-1.153-2.57-2.569 C234.589,379.794,235.741,378.644,237.159,378.644 M237.159,376.61c-2.548,0-4.604,2.063-4.604,4.604s2.063,4.604,4.604,4.604 s4.604-2.063,4.604-4.604C241.765,378.667,239.706,376.61,237.159,376.61L237.159,376.61z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="253.524" y1="381.214" x2="240.774" y2="381.214"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg10103 == false" id="on_20_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="253.749" y1="372.073" x2="253.749" y2="389.339"></line>
- <path fill="#27963A"
- d="M237.159,378.644c1.422,0,2.573,1.154,2.573,2.57c0,1.42-1.151,2.569-2.573,2.569 c-1.418,0-2.57-1.153-2.57-2.569C234.589,379.794,235.741,378.644,237.159,378.644 M237.159,376.61 c-2.543,0-4.604,2.063-4.604,4.604s2.063,4.604,4.604,4.604c2.547,0,4.604-2.063,4.604-4.604 C241.767,378.667,239.706,376.61,237.159,376.61L237.159,376.61z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="251.591" y1="387.673" x2="240.774" y2="380.703"></line>
- </g>
- </g>
- <g id="sbqkg1010">
- <g v-if="ajaxData.sbqkg1010" id="off_18_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="297.695" y1="435.296" x2="297.695" y2="418.03"></line>
- <path fill="#9E2224"
- d="M314.283,428.729c-1.423,0-2.574-1.155-2.574-2.571s1.153-2.569,2.574-2.569 c1.418,0,2.569,1.151,2.569,2.569C316.855,427.573,315.701,428.729,314.283,428.729 M314.283,430.761 c2.545,0,4.604-2.063,4.604-4.604s-2.063-4.604-4.604-4.604s-4.604,2.063-4.604,4.604S311.738,430.761,314.283,430.761 L314.283,430.761z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="297.918" y1="426.155" x2="310.668" y2="426.155"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1010 == false" id="on_18_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="297.695" y1="435.296" x2="297.695" y2="418.03"></line>
- <path fill="#27963A"
- d="M314.283,428.729c-1.423,0-2.576-1.155-2.576-2.571s1.153-2.569,2.576-2.569 c1.418,0,2.569,1.151,2.569,2.569C316.855,427.573,315.701,428.729,314.283,428.729 M314.283,430.761 c2.543,0,4.604-2.063,4.604-4.604s-2.063-4.604-4.604-4.604c-2.548,0-4.605,2.063-4.605,4.604S311.738,430.761,314.283,430.761 L314.283,430.761z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="299.854" y1="419.696" x2="310.668" y2="426.66"></line>
- </g>
- </g>
- <g id="sbqkg1010110">
- <g v-if="ajaxData.sbqkg1010110" id="off_17_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="188.235" y1="472.079" x2="205.502" y2="472.079"></line>
- <path fill="#9E2224"
- d="M194.804,488.672c0-1.425,1.156-2.57,2.571-2.57c1.421,0,2.57,1.154,2.57,2.57 c0,1.418-1.154,2.567-2.57,2.567C195.957,491.241,194.804,490.09,194.804,488.672 M192.772,488.672 c0,2.545,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.541-2.061-4.604-4.604-4.604 C194.83,484.066,192.772,486.127,192.772,488.672L192.772,488.672z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="197.377" y1="472.309" x2="197.377" y2="485.061"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1010110 == false" id="on_17_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="188.235" y1="472.079" x2="205.502" y2="472.079"></line>
- <path fill="#27963A"
- d="M194.804,488.672c0-1.425,1.156-2.576,2.571-2.576c1.421,0,2.57,1.156,2.57,2.576 s-1.154,2.567-2.57,2.567C195.957,491.241,194.804,490.09,194.804,488.672 M192.772,488.672c0,2.543,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.061-4.604-4.604-4.604C194.83,484.064,192.772,486.127,192.772,488.672L192.772,488.672z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="203.836" y1="474.24" x2="196.869" y2="485.061"></line>
- </g>
- </g>
- <g id="sbqkg1022">
- <g v-if="ajaxData.sbqkg1022" id="off_33_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="680.886" y1="312.659" x2="698.153" y2="312.659"></line>
- <path fill="#9E2224"
- d="M690.028,326.678c1.418,0,2.573,1.158,2.573,2.574s-1.157,2.567-2.573,2.567 c-1.42,0-2.574-1.156-2.574-2.567C687.448,327.834,688.605,326.678,690.028,326.678 M690.028,324.646 c-2.545,0-4.604,2.063-4.604,4.604c0,2.546,2.063,4.605,4.604,4.605c2.545,0,4.604-2.062,4.604-4.605 C694.632,326.706,692.572,324.646,690.028,324.646L690.028,324.646z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="690.028" y1="312.889" x2="690.028" y2="325.641"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1022 == false" id="on_33_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="680.886" y1="312.659" x2="698.153" y2="312.659"></line>
- <path fill="#27963A"
- d="M690.028,326.678c1.418,0,2.573,1.158,2.573,2.574s-1.157,2.567-2.573,2.567 c-1.42,0-2.574-1.156-2.574-2.567C687.448,327.834,688.605,326.678,690.028,326.678 M690.028,324.646 c-2.545,0-4.604,2.063-4.604,4.604c0,2.546,2.063,4.605,4.604,4.605c2.545,0,4.604-2.062,4.604-4.605 C694.632,326.706,692.572,324.646,690.028,324.646L690.028,324.646z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="696.482" y1="314.822" x2="689.52" y2="325.641"></line>
- </g>
- </g>
- <g id="sbqkg1023">
- <g v-if="ajaxData.sbqkg1023" id="off_32_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="680.886" y1="393.884" x2="698.153" y2="393.884"></line>
- <path fill="#9E2224"
- d="M690.028,407.899c1.418,0,2.573,1.157,2.573,2.573s-1.157,2.57-2.573,2.57 c-1.42,0-2.574-1.156-2.574-2.57C687.448,409.056,688.605,407.899,690.028,407.899 M690.028,405.865 c-2.545,0-4.604,2.063-4.604,4.604c0,2.543,2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604 S692.572,405.865,690.028,405.865L690.028,405.865z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="690.028" y1="394.11" x2="690.028" y2="406.862"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1023 == false" id="on_32_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="680.886" y1="393.884" x2="698.153" y2="393.884"></line>
- <path fill="#27963A"
- d="M690.028,407.899c1.418,0,2.573,1.157,2.573,2.573s-1.157,2.57-2.573,2.57 c-1.42,0-2.574-1.156-2.574-2.57C687.448,409.056,688.605,407.899,690.028,407.899 M690.028,405.865 c-2.545,0-4.604,2.063-4.604,4.604c0,2.543,2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604 S692.572,405.865,690.028,405.865L690.028,405.865z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="696.482" y1="396.044" x2="689.52" y2="406.862"></line>
- </g>
- </g>
- <g id="sbqkg1023">
- <g v-if="ajaxData.sbqkg1023" id="off_31_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="666.689" y1="334.615" x2="666.689" y2="351.883"></line>
- <path fill="#9E2224"
- d="M650.099,341.188c1.423,0,2.574,1.154,2.574,2.568c0,1.422-1.156,2.571-2.574,2.571 s-2.569-1.155-2.569-2.571C647.529,342.338,648.681,341.188,650.099,341.188 M650.099,339.154c-2.545,0-4.604,2.063-4.604,4.604 s2.063,4.604,4.604,4.604c2.544,0,4.604-2.063,4.604-4.604C654.702,341.211,652.646,339.154,650.099,339.154L650.099,339.154z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="666.464" y1="343.758" x2="653.714" y2="343.758"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1023 == false" id="on_31_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="666.689" y1="334.615" x2="666.689" y2="351.883"></line>
- <path fill="#27963A"
- d="M650.099,341.188c1.423,0,2.576,1.154,2.576,2.568c0,1.422-1.153,2.571-2.576,2.571 c-1.418,0-2.569-1.155-2.569-2.571C647.529,342.338,648.681,341.188,650.099,341.188 M650.099,339.154 c-2.543,0-4.604,2.063-4.604,4.604s2.063,4.604,4.604,4.604c2.548,0,4.604-2.063,4.604-4.604 C654.704,341.211,652.646,339.154,650.099,339.154L650.099,339.154z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="664.531" y1="350.217" x2="653.714" y2="343.247"></line>
- </g>
- </g>
- <g id="sbqkg10203">
- <g v-if="ajaxData.sbqkg10203" id="off_30_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="667.689" y1="372.073" x2="667.689" y2="389.339"></line>
- <path fill="#9E2224"
- d="M651.099,378.644c1.423,0,2.574,1.154,2.574,2.57c0,1.42-1.156,2.569-2.574,2.569 s-2.569-1.153-2.569-2.569C648.529,379.794,649.681,378.644,651.099,378.644 M651.099,376.61c-2.545,0-4.604,2.063-4.604,4.604 s2.063,4.604,4.604,4.604c2.544,0,4.604-2.063,4.604-4.604C655.702,378.667,653.646,376.61,651.099,376.61L651.099,376.61z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="667.464" y1="381.214" x2="654.714" y2="381.214"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg10203 == false" id="on_30_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="667.689" y1="372.073" x2="667.689" y2="389.339"></line>
- <path fill="#27963A"
- d="M651.099,378.644c1.423,0,2.576,1.154,2.576,2.57c0,1.42-1.153,2.569-2.576,2.569 c-1.418,0-2.569-1.153-2.569-2.569C648.529,379.794,649.681,378.644,651.099,378.644 M651.099,376.61 c-2.543,0-4.604,2.063-4.604,4.604s2.063,4.604,4.604,4.604c2.548,0,4.604-2.063,4.604-4.604 C655.704,378.667,653.646,376.61,651.099,376.61L651.099,376.61z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="665.531" y1="387.673" x2="654.714" y2="380.703"></line>
- </g>
- </g>
- <g id="sbqkg1020">
- <g v-if="ajaxData.sbqkg1020" id="off_29_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="711.635" y1="435.296" x2="711.635" y2="418.03"></line>
- <path fill="#9E2224"
- d="M728.223,428.729c-1.42,0-2.573-1.155-2.573-2.571s1.155-2.569,2.573-2.569s2.572,1.151,2.572,2.569 C730.795,427.573,729.641,428.729,728.223,428.729 M728.223,430.761c2.545,0,4.604-2.063,4.604-4.604s-2.063-4.604-4.604-4.604 s-4.604,2.063-4.604,4.604S725.678,430.761,728.223,430.761L728.223,430.761z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="711.857" y1="426.155" x2="724.607" y2="426.155"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1020 == false" id="on_29_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="711.635" y1="435.296" x2="711.635" y2="418.03"></line>
- <path fill="#27963A"
- d="M728.223,428.729c-1.42,0-2.576-1.155-2.576-2.571s1.156-2.569,2.576-2.569 c1.418,0,2.572,1.151,2.572,2.569C730.795,427.573,729.641,428.729,728.223,428.729 M728.223,430.761 c2.543,0,4.604-2.063,4.604-4.604s-2.063-4.604-4.604-4.604c-2.545,0-4.604,2.063-4.604,4.604S725.678,430.761,728.223,430.761 L728.223,430.761z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="713.793" y1="419.696" x2="724.607" y2="426.66"></line>
- </g>
- </g>
- <g id="sbqkg1020120">
- <g v-if="ajaxData.sbqkg1020120" id="off_28_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="602.175" y1="472.079" x2="619.442" y2="472.079"></line>
- <path fill="#9E2224"
- d="M608.741,488.672c0-1.425,1.156-2.57,2.57-2.57c1.422,0,2.573,1.154,2.573,2.57 c0,1.418-1.157,2.567-2.573,2.567C609.896,491.241,608.741,490.09,608.741,488.672 M606.712,488.672 c0,2.545,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.541-2.063-4.604-4.604-4.604 C608.77,484.066,606.712,486.127,606.712,488.672L606.712,488.672z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="611.317" y1="472.309" x2="611.317" y2="485.061"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1020120 == false" id="on_28_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="602.175" y1="472.079" x2="619.442" y2="472.079"></line>
- <path fill="#27963A"
- d="M608.741,488.672c0-1.425,1.156-2.576,2.57-2.576c1.422,0,2.573,1.156,2.573,2.576 s-1.157,2.567-2.573,2.567C609.896,491.241,608.741,490.09,608.741,488.672 M606.712,488.672c0,2.543,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604C608.77,484.064,606.712,486.127,606.712,488.672L606.712,488.672z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="617.776" y1="474.24" x2="610.809" y2="485.061"></line>
- </g>
- </g>
- <g id="sbqkg1032">
- <g v-if="ajaxData.sbqkg1032" id="off_42_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1214.279" y1="312.659" x2="1231.547" y2="312.659"></line>
- <path fill="#9E2224"
- d="M1223.422,326.678c1.418,0,2.571,1.158,2.571,2.574s-1.155,2.567-2.571,2.567 c-1.421,0-2.574-1.156-2.574-2.567C1220.844,327.834,1221.999,326.678,1223.422,326.678 M1223.422,324.646 c-2.546,0-4.605,2.063-4.605,4.604c0,2.546,2.063,4.605,4.605,4.605c2.545,0,4.604-2.062,4.604-4.605 C1228.025,326.704,1225.965,324.646,1223.422,324.646L1223.422,324.646z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1223.422" y1="312.889" x2="1223.422" y2="325.641"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1032 == false" id="on_42_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1214.279" y1="312.659" x2="1231.547" y2="312.659"></line>
- <path fill="#27963A"
- d="M1223.422,326.678c1.418,0,2.571,1.158,2.571,2.574s-1.155,2.567-2.571,2.567 c-1.421,0-2.574-1.156-2.574-2.567C1220.844,327.834,1221.999,326.678,1223.422,326.678 M1223.422,324.646 c-2.546,0-4.605,2.063-4.605,4.604c0,2.546,2.063,4.605,4.605,4.605c2.545,0,4.604-2.062,4.604-4.605 C1228.025,326.704,1225.965,324.646,1223.422,324.646L1223.422,324.646z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1229.876" y1="314.822" x2="1222.911" y2="325.641"></line>
- </g>
- </g>
- <g id="sbqkg10302">
- <g v-if="ajaxData.sbqkg10302" id="off_40_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1200.081" y1="334.615" x2="1200.081" y2="351.883"></line>
- <path fill="#9E2224"
- d="M1183.49,341.188c1.422,0,2.574,1.154,2.574,2.568c0,1.422-1.156,2.571-2.574,2.571 s-2.567-1.155-2.567-2.571C1180.922,342.338,1182.073,341.188,1183.49,341.188 M1183.49,339.154 c-2.545,0-4.604,2.063-4.604,4.604s2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604 C1188.098,341.211,1186.036,339.154,1183.49,339.154L1183.49,339.154z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1199.857" y1="343.758" x2="1187.107" y2="343.758"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg10302 == false" id="on_40_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1200.081" y1="334.615" x2="1200.081" y2="351.883"></line>
- <path fill="#27963A"
- d="M1183.49,341.188c1.422,0,2.576,1.154,2.576,2.568c0,1.422-1.154,2.571-2.576,2.571 c-1.418,0-2.567-1.155-2.567-2.571C1180.922,342.338,1182.073,341.188,1183.49,341.188 M1183.49,339.154 c-2.543,0-4.604,2.063-4.604,4.604s2.062,4.604,4.604,4.604c2.547,0,4.606-2.063,4.606-4.604 C1188.1,341.211,1186.036,339.154,1183.49,339.154L1183.49,339.154z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1197.924" y1="350.217" x2="1187.107" y2="343.247"></line>
- </g>
- </g>
- <g id="sbqkg10303">
- <g v-if="ajaxData.sbqkg10303" id="off_39_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1201.081" y1="372.073" x2="1201.081" y2="389.339"></line>
- <path fill="#9E2224"
- d="M1184.49,378.644c1.422,0,2.574,1.154,2.574,2.57c0,1.42-1.156,2.569-2.574,2.569 s-2.567-1.153-2.567-2.569C1181.922,379.794,1183.073,378.644,1184.49,378.644 M1184.49,376.61c-2.545,0-4.604,2.063-4.604,4.604 s2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604C1189.098,378.667,1187.036,376.61,1184.49,376.61L1184.49,376.61z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1200.857" y1="381.214" x2="1188.107" y2="381.214"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg10303 == false" id="on_39_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1201.081" y1="372.073" x2="1201.081" y2="389.339"></line>
- <path fill="#27963A"
- d="M1184.49,378.644c1.422,0,2.576,1.154,2.576,2.57c0,1.42-1.154,2.569-2.576,2.569 c-1.418,0-2.567-1.153-2.567-2.569C1181.922,379.794,1183.073,378.644,1184.49,378.644 M1184.49,376.61 c-2.543,0-4.604,2.063-4.604,4.604s2.062,4.604,4.604,4.604c2.547,0,4.606-2.063,4.606-4.604 C1189.1,378.667,1187.036,376.61,1184.49,376.61L1184.49,376.61z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1198.924" y1="387.673" x2="1188.107" y2="380.703"></line>
- </g>
- </g>
- <g id="sbqkg1030">
- <g v-if="ajaxData.sbqkg1030" id="off_38_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1245.029" y1="435.296" x2="1245.029" y2="418.03"></line>
- <path fill="#9E2224"
- d="M1261.615,428.729c-1.42,0-2.572-1.155-2.572-2.571s1.154-2.569,2.572-2.569s2.572,1.151,2.572,2.569 C1264.189,427.573,1263.032,428.729,1261.615,428.729 M1261.615,430.761c2.545,0,4.604-2.063,4.604-4.604 s-2.063-4.604-4.604-4.604s-4.604,2.063-4.604,4.604S1259.072,430.761,1261.615,430.761L1261.615,430.761z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1245.251" y1="426.155" x2="1258.001" y2="426.155"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1030 == false" id="on_38_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1245.029" y1="435.296" x2="1245.029" y2="418.03"></line>
- <path fill="#27963A"
- d="M1261.615,428.729c-1.42,0-2.576-1.155-2.576-2.571s1.156-2.569,2.576-2.569 c1.418,0,2.572,1.151,2.572,2.569C1264.189,427.573,1263.032,428.729,1261.615,428.729 M1261.615,430.761 c2.543,0,4.604-2.063,4.604-4.604s-2.063-4.604-4.604-4.604c-2.545,0-4.604,2.063-4.604,4.604S1259.072,430.761,1261.615,430.761 L1261.615,430.761z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1247.188" y1="419.696" x2="1258.001" y2="426.66"></line>
- </g>
- </g>
- <g id="sbqkg1030130">
- <g v-if="ajaxData.sbqkg1030130" id="off_37_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1135.568" y1="472.079" x2="1152.836" y2="472.079"></line>
- <path fill="#9E2224"
- d="M1142.137,488.672c0-1.425,1.155-2.57,2.571-2.57c1.421,0,2.57,1.154,2.57,2.57 c0,1.418-1.154,2.567-2.57,2.567C1143.29,491.241,1142.137,490.09,1142.137,488.672 M1140.105,488.672 c0,2.545,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.541-2.062-4.604-4.604-4.604 C1142.161,484.066,1140.105,486.127,1140.105,488.672L1140.105,488.672z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1144.711" y1="472.309" x2="1144.711" y2="485.061"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1030130 == false" id="on_37_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1135.568" y1="472.079" x2="1152.836" y2="472.079"></line>
- <path fill="#27963A"
- d="M1142.137,488.672c0-1.425,1.155-2.576,2.571-2.576c1.421,0,2.57,1.156,2.57,2.576 s-1.154,2.567-2.57,2.567C1143.29,491.241,1142.137,490.09,1142.137,488.672 M1140.105,488.672c0,2.543,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C1142.161,484.064,1140.105,486.127,1140.105,488.672L1140.105,488.672z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1151.17" y1="474.24" x2="1144.2" y2="485.061"></line>
- </g>
- </g>
- <g id="sbqkg1042">
- <g v-if="ajaxData.sbqkg1042" id="off_51_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1645.395" y1="312.659" x2="1662.659" y2="312.659"></line>
- <path fill="#9E2224"
- d="M1654.534,326.678c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.567-2.574,2.567 c-1.42,0-2.571-1.156-2.571-2.567C1651.958,327.834,1653.115,326.678,1654.534,326.678 M1654.534,324.646 c-2.545,0-4.604,2.063-4.604,4.604c0,2.546,2.063,4.605,4.604,4.605c2.547,0,4.604-2.062,4.604-4.605 C1659.141,326.704,1657.077,324.646,1654.534,324.646L1654.534,324.646z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1654.534" y1="312.889" x2="1654.534" y2="325.641"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1042 == false" id="on_51_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1645.395" y1="312.659" x2="1662.659" y2="312.659"></line>
- <path fill="#27963A"
- d="M1654.534,326.678c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.567-2.574,2.567 c-1.42,0-2.571-1.156-2.571-2.567C1651.958,327.834,1653.115,326.678,1654.534,326.678 M1654.534,324.646 c-2.545,0-4.604,2.063-4.604,4.604c0,2.546,2.063,4.605,4.604,4.605c2.547,0,4.604-2.062,4.604-4.605 C1659.141,326.704,1657.077,324.646,1654.534,324.646L1654.534,324.646z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1660.99" y1="314.822" x2="1654.029" y2="325.641"></line>
- </g>
- </g>
- <g id="sbqkg1043">
- <g v-if="ajaxData.sbqkg1043" id="off_50_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1645.395" y1="393.884" x2="1662.659" y2="393.884"></line>
- <path fill="#9E2224"
- d="M1654.534,407.899c1.418,0,2.574,1.157,2.574,2.573s-1.158,2.57-2.574,2.57 c-1.42,0-2.571-1.156-2.571-2.57C1651.958,409.056,1653.115,407.899,1654.534,407.899 M1654.534,405.865 c-2.545,0-4.604,2.063-4.604,4.604c0,2.543,2.063,4.604,4.604,4.604c2.547,0,4.604-2.062,4.604-4.604 S1657.077,405.865,1654.534,405.865L1654.534,405.865z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1654.534" y1="394.11" x2="1654.534" y2="406.862"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1043 == false" id="on_50_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1645.395" y1="393.884" x2="1662.659" y2="393.884"></line>
- <path fill="#27963A"
- d="M1654.534,407.899c1.418,0,2.574,1.157,2.574,2.573s-1.158,2.57-2.574,2.57 c-1.42,0-2.571-1.156-2.571-2.57C1651.958,409.056,1653.115,407.899,1654.534,407.899 M1654.534,405.865 c-2.545,0-4.604,2.063-4.604,4.604c0,2.543,2.063,4.604,4.604,4.604c2.547,0,4.604-2.062,4.604-4.604 S1657.077,405.865,1654.534,405.865L1654.534,405.865z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1660.99" y1="396.044" x2="1654.029" y2="406.862"></line>
- </g>
- </g>
- <g id="sbqkg10405">
- <g v-if="ajaxData.sbqkg10405" id="off_49_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1631.197" y1="334.615" x2="1631.197" y2="351.883"></line>
- <path fill="#9E2224"
- d="M1614.607,341.188c1.422,0,2.574,1.154,2.574,2.568c0,1.422-1.156,2.571-2.574,2.571 s-2.57-1.155-2.57-2.571C1612.034,342.338,1613.189,341.188,1614.607,341.188 M1614.607,339.154 c-2.545,0-4.604,2.063-4.604,4.604s2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604 C1619.213,341.211,1617.154,339.154,1614.607,339.154L1614.607,339.154z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1630.973" y1="343.758" x2="1618.223" y2="343.758"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg10405 == false" id="on_49_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1631.197" y1="334.615" x2="1631.197" y2="351.883"></line>
- <path fill="#27963A"
- d="M1614.607,341.188c1.422,0,2.576,1.154,2.576,2.568c0,1.422-1.154,2.571-2.576,2.571 c-1.418,0-2.57-1.155-2.57-2.571C1612.034,342.338,1613.189,341.188,1614.607,341.188 M1614.607,339.154 c-2.543,0-4.604,2.063-4.604,4.604s2.062,4.604,4.604,4.604c2.547,0,4.606-2.063,4.606-4.604 C1619.215,341.211,1617.154,339.154,1614.607,339.154L1614.607,339.154z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1629.036" y1="350.217" x2="1618.223" y2="343.247"></line>
- </g>
- </g>
- <g id="sbqkg10403">
- <g v-if="ajaxData.sbqkg10403" id="off_48_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1632.197" y1="372.073" x2="1632.197" y2="389.339"></line>
- <path fill="#9E2224"
- d="M1615.607,378.644c1.422,0,2.574,1.154,2.574,2.57c0,1.42-1.156,2.569-2.574,2.569 s-2.57-1.153-2.57-2.569C1613.034,379.794,1614.189,378.644,1615.607,378.644 M1615.607,376.61c-2.545,0-4.604,2.063-4.604,4.604 s2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604C1620.213,378.667,1618.154,376.61,1615.607,376.61L1615.607,376.61z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1631.973" y1="381.214" x2="1619.223" y2="381.214"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg10403 == false" id="on_48_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1632.197" y1="372.073" x2="1632.197" y2="389.339"></line>
- <path fill="#27963A"
- d="M1615.607,378.644c1.422,0,2.576,1.154,2.576,2.57c0,1.42-1.154,2.569-2.576,2.569 c-1.418,0-2.57-1.153-2.57-2.569C1613.034,379.794,1614.189,378.644,1615.607,378.644 M1615.607,376.61 c-2.543,0-4.604,2.063-4.604,4.604s2.062,4.604,4.604,4.604c2.547,0,4.606-2.063,4.606-4.604 C1620.215,378.667,1618.154,376.61,1615.607,376.61L1615.607,376.61z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1630.036" y1="387.673" x2="1619.223" y2="380.703"></line>
- </g>
- </g>
- <g id="sbqkg1040">
- <g v-if="ajaxData.sbqkg1040" id="off_47_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1676.145" y1="435.296" x2="1676.145" y2="418.03"></line>
- <path fill="#9E2224"
- d="M1692.732,428.729c-1.42,0-2.574-1.155-2.574-2.571s1.156-2.569,2.574-2.569s2.572,1.151,2.572,2.569 C1695.305,427.573,1694.15,428.729,1692.732,428.729 M1692.732,430.761c2.545,0,4.604-2.063,4.604-4.604 s-2.063-4.604-4.604-4.604c-2.543,0-4.604,2.063-4.604,4.604S1690.188,430.761,1692.732,430.761L1692.732,430.761z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1676.365" y1="426.155" x2="1689.115" y2="426.155"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1040 == false" id="on_47_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1676.145" y1="435.296" x2="1676.145" y2="418.03"></line>
- <path fill="#27963A"
- d="M1692.732,428.729c-1.42,0-2.576-1.155-2.576-2.571s1.156-2.569,2.576-2.569 c1.418,0,2.572,1.151,2.572,2.569C1695.305,427.573,1694.15,428.729,1692.732,428.729 M1692.732,430.761 c2.543,0,4.604-2.063,4.604-4.604s-2.063-4.604-4.604-4.604c-2.545,0-4.604,2.063-4.604,4.604S1690.188,430.761,1692.732,430.761 L1692.732,430.761z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1678.303" y1="419.696" x2="1689.115" y2="426.66"></line>
- </g>
- </g>
- <g id="sbqkg1040130">
- <g v-if="ajaxData.sbqkg1040130" id="off_46_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1566.684" y1="472.079" x2="1583.948" y2="472.079"></line>
- <path fill="#9E2224"
- d="M1573.251,488.672c0-1.425,1.154-2.57,2.57-2.57c1.42,0,2.572,1.154,2.572,2.57 c0,1.418-1.156,2.567-2.572,2.567C1574.406,491.241,1573.251,490.09,1573.251,488.672 M1571.221,488.672 c0,2.545,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.541-2.063-4.604-4.604-4.604 C1573.279,484.066,1571.221,486.127,1571.221,488.672L1571.221,488.672z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1575.823" y1="472.309" x2="1575.823" y2="485.061"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1040130 == false" id="on_46_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1566.684" y1="472.079" x2="1583.948" y2="472.079"></line>
- <path fill="#27963A"
- d="M1573.251,488.672c0-1.425,1.154-2.576,2.57-2.576c1.42,0,2.572,1.156,2.572,2.576 s-1.156,2.567-2.572,2.567C1574.406,491.241,1573.251,490.09,1573.251,488.672 M1571.221,488.672 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604 C1573.279,484.064,1571.221,486.127,1571.221,488.672L1571.221,488.672z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1582.282" y1="474.24" x2="1575.318" y2="485.061"></line>
- </g>
- </g>
- <g id="sbqkg119">
- <g v-if="ajaxData.sbqkg119" id="off_24_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="436.381" y1="314.421" x2="453.645" y2="314.421"></line>
- <path fill="#9E2224"
- d="M445.52,328.438c1.418,0,2.574,1.155,2.574,2.571c0,1.418-1.156,2.568-2.574,2.568 c-1.42,0-2.572-1.152-2.572-2.568S444.099,328.438,445.52,328.438 M445.52,326.406c-2.545,0-4.604,2.063-4.604,4.604 c0,2.545,2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604C450.122,328.464,448.064,326.406,445.52,326.406 L445.52,326.406z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="445.52" y1="314.649" x2="445.52" y2="327.396"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg119 == false" id="on_24_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="436.381" y1="314.421" x2="453.645" y2="314.421"></line>
- <path fill="#27963A"
- d="M445.52,328.438c1.418,0,2.574,1.155,2.574,2.571c0,1.422-1.156,2.568-2.574,2.568 c-1.42,0-2.572-1.152-2.572-2.568C442.944,329.589,444.099,328.438,445.52,328.438 M445.52,326.406 c-2.545,0-4.604,2.063-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604S448.064,326.406,445.52,326.406 L445.52,326.406z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="451.977" y1="316.583" x2="445.013" y2="327.396"></line>
- </g>
- </g>
- <g id="sbqkg1190">
- <g v-if="ajaxData.sbqkg1190" id="off_19_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="462.148" y1="313.935" x2="462.148" y2="296.669"></line>
- <path fill="#9E2224"
- d="M478.737,307.365c-1.42,0-2.573-1.151-2.573-2.565c0-1.422,1.156-2.574,2.573-2.574 s2.571,1.158,2.571,2.574C481.311,306.214,480.156,307.365,478.737,307.365 M478.737,309.396c2.544,0,4.604-2.061,4.604-4.604 c0-2.546-2.063-4.604-4.604-4.604s-4.604,2.063-4.604,4.604C474.133,307.341,476.192,309.396,478.737,309.396L478.737,309.396z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="462.37" y1="304.794" x2="475.121" y2="304.794"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1190 == false" id="on_19_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="462.148" y1="313.935" x2="462.148" y2="296.669"></line>
- <path fill="#27963A"
- d="M478.737,307.365c-1.42,0-2.576-1.151-2.576-2.565c0-1.422,1.157-2.574,2.576-2.574 s2.571,1.158,2.571,2.574C481.311,306.214,480.156,307.365,478.737,307.365 M478.737,309.396c2.543,0,4.604-2.061,4.604-4.604 c0-2.546-2.063-4.604-4.604-4.604c-2.544,0-4.604,2.063-4.604,4.604C474.13,307.341,476.192,309.396,478.737,309.396 L478.737,309.396z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="464.307" y1="298.335" x2="475.121" y2="305.302"></line>
- </g>
- </g>
- <g id="sbqkg11909">
- <g v-if="ajaxData.sbqkg11909" id="off_26_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="462.148" y1="353.161" x2="462.148" y2="335.896"></line>
- <path fill="#9E2224"
- d="M478.737,346.593c-1.42,0-2.573-1.155-2.573-2.569c0-1.422,1.156-2.573,2.573-2.573 s2.571,1.157,2.571,2.573C481.311,345.441,480.156,346.593,478.737,346.593 M478.737,348.626c2.544,0,4.604-2.063,4.604-4.604 s-2.063-4.604-4.604-4.604s-4.604,2.063-4.604,4.604C474.133,346.568,476.192,348.626,478.737,348.626L478.737,348.626z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="462.37" y1="344.021" x2="475.121" y2="344.021"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg11909 == false" id="on_26_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="462.148" y1="353.161" x2="462.148" y2="335.896"></line>
- <path fill="#27963A"
- d="M478.737,346.593c-1.42,0-2.576-1.155-2.576-2.569c0-1.422,1.157-2.573,2.576-2.573 s2.571,1.157,2.571,2.573C481.311,345.441,480.156,346.593,478.737,346.593 M478.737,348.626c2.543,0,4.604-2.063,4.604-4.604 s-2.063-4.604-4.604-4.604c-2.544,0-4.604,2.063-4.604,4.604C474.13,346.568,476.192,348.626,478.737,348.626L478.737,348.626z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="464.307" y1="337.563" x2="475.121" y2="344.529"></line>
- </g>
- </g>
- <g id="sbqkg129">
- <g v-if="ajaxData.sbqkg129" id="off_36_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="906.528" y1="314.421" x2="923.792" y2="314.421"></line>
- <path fill="#9E2224"
- d="M915.667,328.438c1.418,0,2.571,1.155,2.571,2.571c0,1.418-1.155,2.568-2.571,2.568 c-1.423,0-2.573-1.152-2.573-2.568S914.243,328.438,915.667,328.438 M915.667,326.406c-2.548,0-4.604,2.063-4.604,4.604 c0,2.545,2.062,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604C920.271,328.464,918.212,326.406,915.667,326.406 L915.667,326.406z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="915.667" y1="314.649" x2="915.667" y2="327.396"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg129 == false" id="on_36_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="906.528" y1="314.421" x2="923.792" y2="314.421"></line>
- <path fill="#27963A"
- d="M915.667,328.438c1.418,0,2.571,1.155,2.571,2.571c0,1.422-1.155,2.568-2.571,2.568 c-1.423,0-2.573-1.152-2.573-2.568C913.091,329.589,914.243,328.438,915.667,328.438 M915.667,326.406 c-2.548,0-4.604,2.063-4.604,4.604s2.062,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604S918.212,326.406,915.667,326.406 L915.667,326.406z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="922.12" y1="316.583" x2="915.157" y2="327.396"></line>
- </g>
- </g>
- <g id="sbqkg1290">
- <g v-if="ajaxData.sbqkg1290" id="off_35_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="932.296" y1="313.935" x2="932.296" y2="296.669"></line>
- <path fill="#9E2224"
- d="M948.884,307.365c-1.42,0-2.573-1.151-2.573-2.565c0-1.422,1.156-2.574,2.573-2.574 s2.569,1.158,2.569,2.574C951.454,306.214,950.303,307.365,948.884,307.365 M948.884,309.396c2.544,0,4.604-2.061,4.604-4.604 c0-2.546-2.061-4.604-4.604-4.604s-4.604,2.063-4.604,4.604C944.28,307.341,946.34,309.396,948.884,309.396L948.884,309.396z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="932.52" y1="304.794" x2="945.271" y2="304.794"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1290 == false" id="on_35_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="932.296" y1="313.935" x2="932.296" y2="296.669"></line>
- <path fill="#27963A"
- d="M948.884,307.365c-1.42,0-2.576-1.151-2.576-2.565c0-1.422,1.157-2.574,2.576-2.574 s2.569,1.158,2.569,2.574C951.454,306.214,950.303,307.365,948.884,307.365 M948.884,309.396c2.543,0,4.604-2.061,4.604-4.604 c0-2.546-2.061-4.604-4.604-4.604c-2.544,0-4.606,2.063-4.606,4.604C944.277,307.341,946.34,309.396,948.884,309.396 L948.884,309.396z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="934.451" y1="298.335" x2="945.271" y2="305.302"></line>
- </g>
- </g>
- <g id="sbqkg12909">
- <g v-if="ajaxData.sbqkg12909" id="off_34_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="932.296" y1="353.161" x2="932.296" y2="335.896"></line>
- <path fill="#9E2224"
- d="M948.884,346.593c-1.42,0-2.573-1.155-2.573-2.569c0-1.422,1.156-2.573,2.573-2.573 s2.569,1.157,2.569,2.573C951.454,345.441,950.303,346.593,948.884,346.593 M948.884,348.626c2.544,0,4.604-2.063,4.604-4.604 s-2.061-4.604-4.604-4.604s-4.604,2.063-4.604,4.604C944.28,346.568,946.34,348.626,948.884,348.626L948.884,348.626z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="932.52" y1="344.021" x2="945.271" y2="344.021"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg12909 == false" id="on_34_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="932.296" y1="353.161" x2="932.296" y2="335.896"></line>
- <path fill="#27963A"
- d="M948.884,346.593c-1.42,0-2.576-1.155-2.576-2.569c0-1.422,1.157-2.573,2.576-2.573 s2.569,1.157,2.569,2.573C951.454,345.441,950.303,346.593,948.884,346.593 M948.884,348.626c2.543,0,4.604-2.063,4.604-4.604 s-2.061-4.604-4.604-4.604c-2.544,0-4.606,2.063-4.606,4.604C944.277,346.568,946.34,348.626,948.884,348.626L948.884,348.626z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="934.451" y1="337.563" x2="945.271" y2="344.529"></line>
- </g>
- </g>
- <g id="sbqkg159">
- <g v-if="ajaxData.sbqkg159" id="off_45_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1448.143" y1="314.421" x2="1465.406" y2="314.421"></line>
- <path fill="#9E2224"
- d="M1457.281,328.438c1.418,0,2.574,1.155,2.574,2.571c0,1.418-1.158,2.568-2.574,2.568 c-1.42,0-2.572-1.152-2.572-2.568S1455.859,328.438,1457.281,328.438 M1457.281,326.406c-2.545,0-4.604,2.063-4.604,4.604 c0,2.545,2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604C1461.886,328.464,1459.823,326.406,1457.281,326.406 L1457.281,326.406z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1457.281" y1="314.649" x2="1457.281" y2="327.396"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg159 == false" id="on_45_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1448.143" y1="314.421" x2="1465.406" y2="314.421"></line>
- <path fill="#27963A"
- d="M1457.281,328.438c1.418,0,2.574,1.155,2.574,2.571c0,1.422-1.158,2.568-2.574,2.568 c-1.42,0-2.572-1.152-2.572-2.568C1454.702,329.589,1455.859,328.438,1457.281,328.438 M1457.281,326.406 c-2.545,0-4.604,2.063-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604S1459.823,326.406,1457.281,326.406 L1457.281,326.406z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1463.736" y1="316.583" x2="1456.773" y2="327.396"></line>
- </g>
- </g>
- <g id="sbqkg1590">
- <g v-if="ajaxData.sbqkg1590" id="off_44_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1473.907" y1="313.935" x2="1473.907" y2="296.669"></line>
- <path fill="#9E2224"
- d="M1490.495,307.365c-1.42,0-2.57-1.151-2.57-2.565c0-1.422,1.154-2.574,2.57-2.574 c1.418,0,2.572,1.158,2.572,2.574S1491.917,307.365,1490.495,307.365 M1490.495,309.396c2.547,0,4.604-2.061,4.604-4.604 c0-2.546-2.063-4.604-4.604-4.604s-4.604,2.063-4.604,4.604C1485.895,307.341,1487.95,309.396,1490.495,309.396L1490.495,309.396 z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1474.134" y1="304.794" x2="1486.885" y2="304.794"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg1590 == false" id="on_44_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1473.907" y1="313.935" x2="1473.907" y2="296.669"></line>
- <path fill="#27963A"
- d="M1490.495,307.365c-1.42,0-2.573-1.151-2.573-2.565c0-1.422,1.153-2.574,2.573-2.574 s2.572,1.158,2.572,2.574S1491.917,307.365,1490.495,307.365 M1490.495,309.396c2.543,0,4.604-2.061,4.604-4.604 c0-2.546-2.063-4.604-4.604-4.604c-2.545,0-4.604,2.063-4.604,4.604C1485.891,307.341,1487.95,309.396,1490.495,309.396 L1490.495,309.396z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1476.068" y1="298.335" x2="1486.885" y2="305.302"></line>
- </g>
- </g>
- <g id="sbqkg15909">
- <g v-if="ajaxData.sbqkg15909" id="off_43_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1473.907" y1="353.161" x2="1473.907" y2="335.896"></line>
- <path fill="#9E2224"
- d="M1490.495,346.593c-1.42,0-2.57-1.155-2.57-2.569c0-1.422,1.154-2.573,2.57-2.573 c1.418,0,2.572,1.157,2.572,2.573C1493.07,345.441,1491.917,346.593,1490.495,346.593 M1490.495,348.626 c2.547,0,4.604-2.063,4.604-4.604s-2.063-4.604-4.604-4.604s-4.604,2.063-4.604,4.604 C1485.895,346.568,1487.95,348.626,1490.495,348.626L1490.495,348.626z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1474.134" y1="344.021" x2="1486.885" y2="344.021"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg15909 == false" id="on_43_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1473.907" y1="353.161" x2="1473.907" y2="335.896"></line>
- <path fill="#27963A"
- d="M1490.495,346.593c-1.42,0-2.573-1.155-2.573-2.569c0-1.422,1.153-2.573,2.573-2.573 s2.572,1.157,2.572,2.573C1493.07,345.441,1491.917,346.593,1490.495,346.593 M1490.495,348.626c2.543,0,4.604-2.063,4.604-4.604 s-2.063-4.604-4.604-4.604c-2.545,0-4.604,2.063-4.604,4.604C1485.891,346.568,1487.95,348.626,1490.495,348.626 L1490.495,348.626z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1476.068" y1="337.563" x2="1486.885" y2="344.529"></line>
- </g>
- </g>
- <g id="sbqkg3150">
- <g v-if="ajaxData.sbqkg3150" id="off_55_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="442.371" y1="676.394" x2="459.641" y2="676.394"></line>
- <path fill="#9E2224"
- d="M448.944,692.985c0-1.425,1.154-2.574,2.569-2.574c1.422,0,2.572,1.156,2.572,2.574 c0,1.416-1.156,2.567-2.572,2.567C450.096,695.556,448.944,694.403,448.944,692.985 M446.908,692.985 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.062-4.604-4.604-4.604 C448.968,688.378,446.908,690.438,446.908,692.985L446.908,692.985z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="451.516" y1="676.615" x2="451.516" y2="689.367"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg3150 == false" id="on_55_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="442.371" y1="676.394" x2="459.641" y2="676.394"></line>
- <path fill="#27963A"
- d="M448.944,692.985c0-1.425,1.154-2.576,2.569-2.576c1.422,0,2.572,1.153,2.572,2.576 c0,1.418-1.156,2.567-2.572,2.567C450.096,695.556,448.944,694.403,448.944,692.985 M446.908,692.985 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.062-4.604-4.604-4.604 C448.968,688.376,446.908,690.438,446.908,692.985L446.908,692.985z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="457.975" y1="678.552" x2="451.007" y2="689.367"></line>
- </g>
- </g>
- <g id="sbqkg3130">
- <g v-if="ajaxData.sbqkg3130" id="off_53_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="128.18" y1="676.394" x2="145.446" y2="676.394"></line>
- <path fill="#9E2224"
- d="M134.75,692.985c0-1.425,1.152-2.574,2.567-2.574c1.424,0,2.572,1.156,2.572,2.574 c0,1.416-1.156,2.567-2.572,2.567C135.901,695.556,134.75,694.403,134.75,692.985 M132.717,692.985 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.063-4.604-4.604-4.604 C134.773,688.378,132.717,690.438,132.717,692.985L132.717,692.985z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="137.321" y1="676.615" x2="137.321" y2="689.367"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg3130 == false" id="on_53_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="128.18" y1="676.394" x2="145.446" y2="676.394"></line>
- <path fill="#27963A"
- d="M134.75,692.985c0-1.425,1.152-2.576,2.567-2.576c1.424,0,2.572,1.153,2.572,2.576 c0,1.418-1.156,2.567-2.572,2.567C135.901,695.556,134.75,694.403,134.75,692.985 M132.717,692.985 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.063-4.604-4.604-4.604 C134.773,688.376,132.717,690.438,132.717,692.985L132.717,692.985z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="143.78" y1="678.552" x2="136.813" y2="689.367"></line>
- </g>
- </g>
- <g id="sbqkg3140">
- <g v-if="ajaxData.sbqkg3140" id="off_57_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="285.231" y1="676.394" x2="302.498" y2="676.394"></line>
- <path fill="#9E2224"
- d="M291.801,692.985c0-1.425,1.155-2.574,2.57-2.574c1.421,0,2.569,1.156,2.569,2.574 c0,1.416-1.153,2.567-2.569,2.567C292.953,695.556,291.801,694.403,291.801,692.985 M289.768,692.985 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.061-4.604-4.604-4.604 C291.825,688.378,289.768,690.438,289.768,692.985L289.768,692.985z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="294.373" y1="676.615" x2="294.373" y2="689.367"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg3140 == false" id="on_57_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="285.231" y1="676.394" x2="302.498" y2="676.394"></line>
- <path fill="#27963A"
- d="M291.801,692.985c0-1.425,1.155-2.576,2.57-2.576c1.421,0,2.569,1.153,2.569,2.576 c0,1.418-1.153,2.567-2.569,2.567C292.953,695.556,291.801,694.403,291.801,692.985 M289.768,692.985 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.061-4.604-4.604-4.604 C291.825,688.376,289.768,690.438,289.768,692.985L289.768,692.985z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="300.832" y1="678.552" x2="293.864" y2="689.367"></line>
- </g>
- </g>
- <g id="sbqkg3160">
- <g v-if="ajaxData.sbqkg3160" id="off_56_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="362.274" y1="676.394" x2="379.541" y2="676.394"></line>
- <path fill="#9E2224"
- d="M368.845,692.985c0-1.425,1.155-2.574,2.57-2.574c1.421,0,2.569,1.156,2.569,2.574 c0,1.416-1.153,2.567-2.569,2.567C369.996,695.556,368.845,694.403,368.845,692.985 M366.812,692.985 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.061-4.604-4.604-4.604 C368.868,688.378,366.812,690.438,366.812,692.985L366.812,692.985z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="371.416" y1="676.615" x2="371.416" y2="689.367"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg3160 == false" id="on_56_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="362.274" y1="676.394" x2="379.541" y2="676.394"></line>
- <path fill="#27963A"
- d="M368.845,692.985c0-1.425,1.155-2.576,2.57-2.576c1.421,0,2.569,1.153,2.569,2.576 c0,1.418-1.153,2.567-2.569,2.567C369.996,695.556,368.845,694.403,368.845,692.985 M366.812,692.985 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.061-4.604-4.604-4.604 C368.868,688.376,366.812,690.438,366.812,692.985L366.812,692.985z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="377.875" y1="678.552" x2="370.907" y2="689.367"></line>
- </g>
- </g>
- <g id="sbqkg3120">
- <g v-if="ajaxData.sbqkg3120" id="off_52_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="45.555" y1="676.394" x2="62.822" y2="676.394"></line>
- <path fill="#9E2224"
- d="M52.125,692.985c0-1.425,1.152-2.574,2.567-2.574c1.424,0,2.572,1.156,2.572,2.574 c0,1.416-1.156,2.567-2.572,2.567C53.277,695.556,52.125,694.403,52.125,692.985 M50.092,692.985 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.063-4.604-4.604-4.604 C52.149,688.378,50.092,690.438,50.092,692.985L50.092,692.985z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="54.697" y1="676.615" x2="54.697" y2="689.367"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg3120 == false" id="on_52_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="45.555" y1="676.394" x2="62.822" y2="676.394"></line>
- <path fill="#27963A"
- d="M52.125,692.985c0-1.425,1.152-2.576,2.567-2.576c1.424,0,2.572,1.153,2.572,2.576 c0,1.418-1.156,2.567-2.572,2.567C53.277,695.556,52.125,694.403,52.125,692.985 M50.092,692.985 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.063-4.604-4.604-4.604 C52.149,688.376,50.092,690.438,50.092,692.985L50.092,692.985z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="61.156" y1="678.552" x2="54.188" y2="689.367"></line>
- </g>
- </g>
- <g id="sbqkg3510">
- <g v-if="ajaxData.sbqkg3510" id="off_67_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1458.12" y1="677.06" x2="1475.391" y2="677.06"></line>
- <path fill="#9E2224"
- d="M1464.693,693.651c0-1.425,1.154-2.574,2.569-2.574c1.421,0,2.571,1.156,2.571,2.574 c0,1.416-1.155,2.567-2.571,2.567C1465.845,696.222,1464.693,695.069,1464.693,693.651 M1462.657,693.651 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.062-4.604-4.604-4.604 C1464.717,689.044,1462.657,691.104,1462.657,693.651L1462.657,693.651z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1467.266" y1="677.281" x2="1467.266" y2="690.033"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg3510 == false" id="on_67_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1458.12" y1="677.06" x2="1475.391" y2="677.06"></line>
- <path fill="#27963A"
- d="M1464.693,693.651c0-1.425,1.154-2.576,2.569-2.576c1.421,0,2.571,1.153,2.571,2.576 c0,1.418-1.155,2.567-2.571,2.567C1465.845,696.222,1464.693,695.069,1464.693,693.651 M1462.657,693.651 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.062-4.604-4.604-4.604 C1464.717,689.042,1462.657,691.104,1462.657,693.651L1462.657,693.651z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1473.725" y1="679.218" x2="1466.756" y2="690.033"></line>
- </g>
- </g>
- <g id="sbqkg3520">
- <g v-if="ajaxData.sbqkg3520" id="off_66_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1537.211" y1="677.06" x2="1554.479" y2="677.06"></line>
- <path fill="#9E2224"
- d="M1543.781,693.651c0-1.425,1.156-2.574,2.57-2.574c1.422,0,2.571,1.156,2.571,2.574 c0,1.416-1.155,2.567-2.571,2.567C1544.934,696.222,1543.781,695.069,1543.781,693.651 M1541.745,693.651 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.063-4.604-4.604-4.604 C1543.805,689.044,1541.745,691.104,1541.745,693.651L1541.745,693.651z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1546.354" y1="677.281" x2="1546.354" y2="690.033"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg3520 == false" id="on_66_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1537.211" y1="677.06" x2="1554.479" y2="677.06"></line>
- <path fill="#27963A"
- d="M1543.781,693.651c0-1.425,1.156-2.576,2.57-2.576c1.422,0,2.571,1.153,2.571,2.576 c0,1.418-1.155,2.567-2.571,2.567C1544.934,696.222,1543.781,695.069,1543.781,693.651 M1541.745,693.651 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.063-4.604-4.604-4.604 C1543.805,689.042,1541.745,691.104,1541.745,693.651L1541.745,693.651z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1552.813" y1="679.218" x2="1545.844" y2="690.033"></line>
- </g>
- </g>
- <g id="sbqkg3530">
- <g v-if="ajaxData.sbqkg3530" id="off_62_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1618.406" y1="677.06" x2="1635.676" y2="677.06"></line>
- <path fill="#9E2224"
- d="M1624.979,693.651c0-1.425,1.156-2.574,2.57-2.574c1.422,0,2.569,1.156,2.569,2.574 c0,1.416-1.154,2.567-2.569,2.567C1626.131,696.222,1624.979,695.069,1624.979,693.651 M1622.945,693.651 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.061-4.604-4.604-4.604 C1625.001,689.044,1622.945,691.104,1622.945,693.651L1622.945,693.651z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1627.551" y1="677.281" x2="1627.551" y2="690.033"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg3530 == false" id="on_62_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1618.406" y1="677.06" x2="1635.676" y2="677.06"></line>
- <path fill="#27963A"
- d="M1624.979,693.651c0-1.425,1.156-2.576,2.57-2.576c1.422,0,2.569,1.153,2.569,2.576 c0,1.418-1.154,2.567-2.569,2.567C1626.131,696.222,1624.979,695.069,1624.979,693.651 M1622.945,693.651 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.061-4.604-4.604-4.604 C1625.001,689.042,1622.945,691.104,1622.945,693.651L1622.945,693.651z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1634.01" y1="679.218" x2="1627.04" y2="690.033"></line>
- </g>
- </g>
- <g id="sbqkg3540">
- <g v-if="ajaxData.sbqkg3540" id="off_65_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1696.924" y1="677.06" x2="1714.191" y2="677.06"></line>
- <path fill="#9E2224"
- d="M1703.491,693.651c0-1.425,1.156-2.574,2.57-2.574c1.422,0,2.571,1.156,2.571,2.574 c0,1.416-1.155,2.567-2.571,2.567C1704.646,696.222,1703.491,695.069,1703.491,693.651 M1701.461,693.651 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.063-4.604-4.604-4.604 C1703.518,689.044,1701.461,691.104,1701.461,693.651L1701.461,693.651z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1706.066" y1="677.281" x2="1706.066" y2="690.033"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg3540 == false" id="on_65_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1696.924" y1="677.06" x2="1714.191" y2="677.06"></line>
- <path fill="#27963A"
- d="M1703.491,693.651c0-1.425,1.156-2.576,2.57-2.576c1.422,0,2.571,1.153,2.571,2.576 c0,1.418-1.155,2.567-2.571,2.567C1704.646,696.222,1703.491,695.069,1703.491,693.651 M1701.461,693.651 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.063-4.604-4.604-4.604 C1703.518,689.042,1701.461,691.104,1701.461,693.651L1701.461,693.651z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1712.525" y1="679.218" x2="1705.557" y2="690.033"></line>
- </g>
- </g>
- <g id="sbqkg3220">
- <g v-if="ajaxData.sbqkg3220" id="off_60_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="627.508" y1="675.394" x2="644.773" y2="675.394"></line>
- <path fill="#9E2224"
- d="M634.075,691.985c0-1.425,1.155-2.574,2.57-2.574c1.421,0,2.571,1.156,2.571,2.574 c0,1.416-1.155,2.567-2.571,2.567C635.229,694.556,634.075,693.403,634.075,691.985 M632.045,691.985 c0,2.543,2.061,4.604,4.604,4.604c2.544,0,4.604-2.063,4.604-4.604c0-2.545-2.063-4.604-4.604-4.604 C634.102,687.378,632.045,689.438,632.045,691.985L632.045,691.985z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="636.648" y1="675.615" x2="636.648" y2="688.367"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg3220 == false" id="on_60_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="627.508" y1="675.394" x2="644.773" y2="675.394"></line>
- <path fill="#27963A"
- d="M634.075,691.985c0-1.425,1.155-2.576,2.57-2.576c1.421,0,2.571,1.153,2.571,2.576 c0,1.418-1.155,2.567-2.571,2.567C635.229,694.556,634.075,693.403,634.075,691.985 M632.045,691.985 c0,2.543,2.061,4.604,4.604,4.604c2.544,0,4.604-2.063,4.604-4.604c0-2.548-2.063-4.604-4.604-4.604 C634.102,687.376,632.045,689.438,632.045,691.985L632.045,691.985z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="643.107" y1="677.552" x2="636.141" y2="688.367"></line>
- </g>
- </g>
- <g id="sbqkg3230">
- <g v-if="ajaxData.sbqkg3230" id="off_59_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="786.559" y1="675.394" x2="803.823" y2="675.394"></line>
- <path fill="#9E2224"
- d="M793.129,691.985c0-1.425,1.152-2.574,2.567-2.574c1.421,0,2.572,1.156,2.572,2.574 c0,1.416-1.156,2.567-2.572,2.567C794.281,694.556,793.129,693.403,793.129,691.985 M791.096,691.985 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.063-4.604-4.604-4.604 C793.153,687.378,791.096,689.438,791.096,691.985L791.096,691.985z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="795.698" y1="675.615" x2="795.698" y2="688.367"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg3230 == false" id="on_59_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="786.559" y1="675.394" x2="803.823" y2="675.394"></line>
- <path fill="#27963A"
- d="M793.129,691.985c0-1.425,1.152-2.576,2.567-2.576c1.421,0,2.572,1.153,2.572,2.576 c0,1.418-1.156,2.567-2.572,2.567C794.281,694.556,793.129,693.403,793.129,691.985 M791.096,691.985 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.063-4.604-4.604-4.604 C793.153,687.376,791.096,689.438,791.096,691.985L791.096,691.985z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="802.157" y1="677.552" x2="795.192" y2="688.367"></line>
- </g>
- </g>
- <g id="sbqkg3240">
- <g v-if="ajaxData.sbqkg3240" id="off_58_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="865.604" y1="675.394" x2="882.866" y2="675.394"></line>
- <path fill="#9E2224"
- d="M872.173,691.985c0-1.425,1.152-2.574,2.567-2.574c1.421,0,2.571,1.156,2.571,2.574 c0,1.416-1.155,2.567-2.571,2.567C873.323,694.556,872.173,693.403,872.173,691.985 M870.14,691.985 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.063-4.604-4.604-4.604 C872.196,687.378,870.14,689.438,870.14,691.985L870.14,691.985z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="874.741" y1="675.615" x2="874.741" y2="688.367"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg3240 == false" id="on_58_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="865.604" y1="675.394" x2="882.866" y2="675.394"></line>
- <path fill="#27963A"
- d="M872.173,691.985c0-1.425,1.152-2.576,2.567-2.576c1.421,0,2.571,1.153,2.571,2.576 c0,1.418-1.155,2.567-2.571,2.567C873.323,694.556,872.173,693.403,872.173,691.985 M870.14,691.985 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.063-4.604-4.604-4.604 C872.196,687.376,870.14,689.438,870.14,691.985L870.14,691.985z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="881.2" y1="677.552" x2="874.235" y2="688.367"></line>
- </g>
- </g>
- <g id="sbqkg3210">
- <g v-if="ajaxData.sbqkg3210" id="off_54_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="544.883" y1="675.394" x2="562.15" y2="675.394"></line>
- <path fill="#9E2224"
- d="M551.451,691.985c0-1.425,1.155-2.574,2.569-2.574c1.422,0,2.572,1.156,2.572,2.574 c0,1.416-1.156,2.567-2.572,2.567C552.605,694.556,551.451,693.403,551.451,691.985 M549.42,691.985 c0,2.543,2.061,4.604,4.604,4.604c2.544,0,4.604-2.063,4.604-4.604c0-2.545-2.063-4.604-4.604-4.604 C551.477,687.378,549.42,689.438,549.42,691.985L549.42,691.985z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="554.025" y1="675.615" x2="554.025" y2="688.367"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg3210 == false" id="on_54_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="544.883" y1="675.394" x2="562.15" y2="675.394"></line>
- <path fill="#27963A"
- d="M551.451,691.985c0-1.425,1.155-2.576,2.569-2.576c1.422,0,2.572,1.153,2.572,2.576 c0,1.418-1.156,2.567-2.572,2.567C552.605,694.556,551.451,693.403,551.451,691.985 M549.42,691.985 c0,2.543,2.061,4.604,4.604,4.604c2.544,0,4.604-2.063,4.604-4.604c0-2.548-2.063-4.604-4.604-4.604 C551.477,687.376,549.42,689.438,549.42,691.985L549.42,691.985z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="560.484" y1="677.552" x2="553.516" y2="688.367"></line>
- </g>
- </g>
- <g id="sbqkg3320">
- <g v-if="ajaxData.sbqkg3320" id="off_64_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1074.931" y1="677.06" x2="1092.198" y2="677.06"></line>
- <path fill="#9E2224"
- d="M1081.501,693.651c0-1.425,1.152-2.574,2.567-2.574c1.421,0,2.571,1.156,2.571,2.574 c0,1.416-1.155,2.567-2.571,2.567C1082.653,696.222,1081.501,695.069,1081.501,693.651 M1079.468,693.651 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.063-4.604-4.604-4.604 C1081.525,689.044,1079.468,691.104,1079.468,693.651L1079.468,693.651z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1084.073" y1="677.281" x2="1084.073" y2="690.033"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg3320 == false" id="on_64_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1074.931" y1="677.06" x2="1092.198" y2="677.06"></line>
- <path fill="#27963A"
- d="M1081.501,693.651c0-1.425,1.152-2.576,2.567-2.576c1.421,0,2.571,1.153,2.571,2.576 c0,1.418-1.155,2.567-2.571,2.567C1082.653,696.222,1081.501,695.069,1081.501,693.651 M1079.468,693.651 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.063-4.604-4.604-4.604 C1081.525,689.042,1079.468,691.104,1079.468,693.651L1079.468,693.651z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1090.531" y1="679.218" x2="1083.564" y2="690.033"></line>
- </g>
- </g>
- <g id="sbqkg3240">
- <g v-if="ajaxData.sbqkg3240" id="off_63_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="1152.656" y1="677.06" x2="1169.922" y2="677.06"></line>
- <path fill="#9E2224"
- d="M1159.227,693.651c0-1.425,1.154-2.574,2.57-2.574c1.42,0,2.569,1.156,2.569,2.574 c0,1.416-1.154,2.567-2.569,2.567C1160.376,696.222,1159.227,695.069,1159.227,693.651 M1157.193,693.651 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.062-4.604-4.604-4.604 C1159.249,689.044,1157.193,691.104,1157.193,693.651L1157.193,693.651z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1161.797" y1="677.281" x2="1161.797" y2="690.033"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg3240 == false" id="on_63_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="1152.656" y1="677.06" x2="1169.922" y2="677.06"></line>
- <path fill="#27963A"
- d="M1159.227,693.651c0-1.425,1.154-2.576,2.57-2.576c1.42,0,2.569,1.153,2.569,2.576 c0,1.418-1.154,2.567-2.569,2.567C1160.376,696.222,1159.227,695.069,1159.227,693.651 M1157.193,693.651 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.062-4.604-4.604-4.604 C1159.249,689.042,1157.193,691.104,1157.193,693.651L1157.193,693.651z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1168.256" y1="679.218" x2="1161.286" y2="690.033"></line>
- </g>
- </g>
- <g id="sbqkg3310">
- <g v-if="ajaxData.sbqkg3310" id="off_61_">
- <line fill="none" stroke="#9E2224" stroke-width="2.5" stroke-miterlimit="10"
- x1="992.307" y1="677.06" x2="1009.573" y2="677.06"></line>
- <path fill="#9E2224"
- d="M998.877,693.651c0-1.425,1.152-2.574,2.567-2.574c1.421,0,2.572,1.156,2.572,2.574 c0,1.416-1.156,2.567-2.572,2.567C1000.028,696.222,998.877,695.069,998.877,693.651 M996.844,693.651 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.545-2.063-4.604-4.604-4.604 C998.9,689.044,996.844,691.104,996.844,693.651L996.844,693.651z">
- </path>
- <line fill="none" stroke="#9E2224" stroke-width="2" stroke-miterlimit="10"
- x1="1001.448" y1="677.281" x2="1001.448" y2="690.033"></line>
- </g>
- <g v-else-if="ajaxData.sbqkg3310 == false" id="on_61_">
- <line fill="none" stroke="#27963A" stroke-width="2.5" stroke-miterlimit="10"
- x1="992.307" y1="677.06" x2="1009.573" y2="677.06"></line>
- <path fill="#27963A"
- d="M998.877,693.651c0-1.425,1.152-2.576,2.567-2.576c1.421,0,2.572,1.153,2.572,2.576 c0,1.418-1.156,2.567-2.572,2.567C1000.028,696.222,998.877,695.069,998.877,693.651 M996.844,693.651 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604c0-2.548-2.063-4.604-4.604-4.604 C998.9,689.042,996.844,691.104,996.844,693.651L996.844,693.651z">
- </path>
- <line fill="none" stroke="#27963A" stroke-width="2" stroke-miterlimit="10"
- x1="1007.906" y1="679.218" x2="1000.939" y2="690.033"></line>
- </g>
- </g>
- </g>
- <g id="data">
- <g>
- <text transform="matrix(1 0 0 1 92.1047 75.3186)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqlaa6 }}
- </text>
- <text transform="matrix(1 0 0 1 92.1042 93.0139)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqpkw6 }}
- </text>
- <text transform="matrix(1 0 0 1 92.1042 113.4426)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqqkvar6 }}
- </text>
- <text transform="matrix(1 0 0 1 92.1042 133.7747)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqfhz6 }}
- </text>
- <text transform="matrix(1 0 0 1 92.1042 154.1653)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqcos6 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 453.5032 161.8821)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquakv6 }}
- </text>
- <text transform="matrix(1 0 0 1 453.5022 179.5774)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqubkv6 }}
- </text>
- <text transform="matrix(1 0 0 1 453.5022 200.2454)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquckv6 }}
- </text>
- <text transform="matrix(1 0 0 1 453.5022 220.7483)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquabkv6 }}
- </text>
- <text transform="matrix(1 0 0 1 453.5022 241.2483)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqubckv6 }}
- </text>
- <text transform="matrix(1 0 0 1 453.5022 262.7483)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqu0kv6 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 765.4387 75.3186)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqlaa5j }}
- </text>
- <text transform="matrix(1 0 0 1 765.4373 93.0139)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqpkw5j }}
- </text>
- <text transform="matrix(1 0 0 1 765.4373 113.4426)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqqkvar5j }}
- </text>
- <text transform="matrix(1 0 0 1 765.4373 133.7747)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqfhz5j }}
- </text>
- <text transform="matrix(1 0 0 1 765.4373 154.1653)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbq5jcos5j }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1234.0334 161.8821)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquakv5j }}
- </text>
- <text transform="matrix(1 0 0 1 1234.0334 179.5774)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqubkv5j }}
- </text>
- <text transform="matrix(1 0 0 1 1234.0334 200.2454)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquckv5j }}
- </text>
- <text transform="matrix(1 0 0 1 1234.0334 220.7483)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquabkv5j }}
- </text>
- <text transform="matrix(1 0 0 1 1234.0334 241.2483)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqubckv5j }}
- </text>
- <text transform="matrix(1 0 0 1 1234.0334 262.7483)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqu0kv5j }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1433.5725 75.3186)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqlaa5y }}
- </text>
- <text transform="matrix(1 0 0 1 1433.5706 93.0139)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqpkw5y }}
- </text>
- <text transform="matrix(1 0 0 1 1433.5706 113.4426)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqqkvar5y }}
- </text>
- <text transform="matrix(1 0 0 1 1433.5706 133.7747)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqfhz5y }}
- </text>
- <text transform="matrix(1 0 0 1 1433.5706 154.1653)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbq6jcos5y }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1812.1663 160.8772)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquakv5y }}
- </text>
- <text transform="matrix(1 0 0 1 1812.1663 178.5715)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqubkv5y }}
- </text>
- <text transform="matrix(1 0 0 1 1812.1663 199.2375)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquckv5y }}
- </text>
- <text transform="matrix(1 0 0 1 1812.1663 219.7415)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquabkv5y }}
- </text>
- <text transform="matrix(1 0 0 1 1812.1663 240.2415)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqubckv5y }}
- </text>
- <text transform="matrix(1 0 0 1 1812.1663 261.7415)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqu0kv5y }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 97.2244 434.2639)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquakvzb1 }}
- </text>
- <text transform="matrix(1 0 0 1 97.2239 451.9602)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqubkvzb1 }}
- </text>
- <text transform="matrix(1 0 0 1 97.2239 472.6272)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquckvzb1 }}
- </text>
- <text transform="matrix(1 0 0 1 97.2239 493.1311)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquabkvzb1 }}
- </text>
- <text transform="matrix(1 0 0 1 97.2239 513.6311)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqubckvzb1 }}
- </text>
- <text transform="matrix(1 0 0 1 97.2239 535.1311)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquokvzb1 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 443.1121 461.8801)" fill="#217E3A"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqlaamx1 }}
- </text>
- <text transform="matrix(1 0 0 1 443.1121 482.5481)" fill="#217E3A"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqpkwmx1 }}
- </text>
- <text transform="matrix(1 0 0 1 443.1145 503.9133)" fill="#217E3A"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqqkvarmx1 }}
- </text>
- <text transform="matrix(1 0 0 1 443.1145 523.4016)" fill="#217E3A"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqdwmx1 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 828.1121 434.2639)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquakvzb2 }}
- </text>
- <text transform="matrix(1 0 0 1 828.1121 451.9602)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqubkvzb2 }}
- </text>
- <text transform="matrix(1 0 0 1 828.1121 472.6272)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquckvzb2 }}
- </text>
- <text transform="matrix(1 0 0 1 828.1121 494.1311)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquabkvzb2 }}
- </text>
- <text transform="matrix(1 0 0 1 828.1121 514.6311)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqubckvzb2 }}
- </text>
- <text transform="matrix(1 0 0 1 828.1121 535.1311)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqu0kvzb2 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 930.9451 462.8801)" fill="#217E3A"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqpmx2 }}
- </text>
- <text transform="matrix(1 0 0 1 930.9451 482.5481)" fill="#217E3A"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqqmx2 }}
- </text>
- <text transform="matrix(1 0 0 1 930.946 503.9133)" fill="#217E3A"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqlaamx2 }}
- </text>
- <text transform="matrix(1 0 0 1 930.946 524.4016)" fill="#217E3A"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqdwmx2 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1053.3987 434.2639)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquakvzb3 }}
- </text>
- <text transform="matrix(1 0 0 1 1053.3987 451.9602)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqubkvzb3 }}
- </text>
- <text transform="matrix(1 0 0 1 1053.3987 472.6272)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquckvzb3 }}
- </text>
- <text transform="matrix(1 0 0 1 1053.3987 494.1311)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquabkvzb3 }}
- </text>
- <text transform="matrix(1 0 0 1 1053.3987 514.6311)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqubckvzb3 }}
- </text>
- <text transform="matrix(1 0 0 1 1053.3987 535.1311)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqu0kvzb3 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1332.9983 462.8801)" fill="#217E3A"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqpkwzb3 }}
- </text>
- <text transform="matrix(1 0 0 1 1332.9983 482.5481)" fill="#217E3A"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqqkvarzb3 }}
- </text>
- <text transform="matrix(1 0 0 1 1333.0002 503.9133)" fill="#217E3A"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqlaazb3 }}
- </text>
- <text transform="matrix(1 0 0 1 1333.0002 524.4016)" fill="#217E3A"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqdwzb3 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1453.1526 462.8801)" fill="#217E3A"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqpkwmx5 }}
- </text>
- <text transform="matrix(1 0 0 1 1453.1526 482.5481)" fill="#217E3A"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqqkvarmx5 }}
- </text>
- <text transform="matrix(1 0 0 1 1453.1545 503.9133)" fill="#217E3A"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqlaamx5 }}
- </text>
- <text transform="matrix(1 0 0 1 1453.1545 524.4016)" fill="#217E3A"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqdwmx5 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1798.1018 434.2639)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquakvzb4 }}
- </text>
- <text transform="matrix(1 0 0 1 1798.0999 451.9602)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqubkvzb4 }}
- </text>
- <text transform="matrix(1 0 0 1 1798.0999 472.6272)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquckvzb4 }}
- </text>
- <text transform="matrix(1 0 0 1 1798.0999 494.1311)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbquabkvzb4 }}
- </text>
- <text transform="matrix(1 0 0 1 1798.0999 514.6311)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqubckvzb4 }}
- </text>
- <text transform="matrix(1 0 0 1 1798.0999 535.1311)" fill="#1D833B"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.sbqu0kvzb4 }}
- </text>
- </g>
- <g>
- <g>
- <text transform="matrix(1 0 0 1 56.1873 803.4407)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqlaafc1 }}
- </text>
- <text transform="matrix(1 0 0 1 56.1873 829.2922)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqpkwfc1 }}
- </text>
- <text transform="matrix(1 0 0 1 56.1873 855.1438)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqqkvarfc1 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 131.8054 803.4407)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqlaafc2 }}
- </text>
- <text transform="matrix(1 0 0 1 131.8054 829.2922)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqpkwfc2 }}
- </text>
- <text transform="matrix(1 0 0 1 131.8054 855.1438)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqqkvarfc2 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 300.8313 803.4407)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqlaafc3 }}
- </text>
- <text transform="matrix(1 0 0 1 300.8313 829.2922)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqpkwfc3 }}
- </text>
- <text transform="matrix(1 0 0 1 300.8313 855.1438)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqqkvarfc3 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 376.0173 803.4407)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqlaabc1 }}
- </text>
- <text transform="matrix(1 0 0 1 376.0173 829.2922)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqpkwbc1 }}
- </text>
- <text transform="matrix(1 0 0 1 376.0173 855.1438)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqqkvarbc1 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 453.0061 803.4407)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqlaazy1 }}
- </text>
- <text transform="matrix(1 0 0 1 453.0061 829.2922)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqpkwzy1 }}
- </text>
- <text transform="matrix(1 0 0 1 453.0061 855.1438)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqqkvarzy1 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 557.429 803.4407)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqlaafc4 }}
- </text>
- <text transform="matrix(1 0 0 1 557.429 829.2922)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqpkwfc4 }}
- </text>
- <text transform="matrix(1 0 0 1 557.429 855.1438)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqqvarfc4 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 638.1399 803.4407)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqlaafc5 }}
- </text>
- <text transform="matrix(1 0 0 1 638.1399 829.2922)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqpkwfc5 }}
- </text>
- <text transform="matrix(1 0 0 1 638.1399 855.1438)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqqvarfc5 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 805.4417 803.4407)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqlaafc6 }}
- </text>
- <text transform="matrix(1 0 0 1 805.4417 829.2922)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqpkwfc6 }}
- </text>
- <text transform="matrix(1 0 0 1 805.4417 855.1438)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqqvarfc6 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 886.4221 803.4407)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqlaabc2 }}
- </text>
- <text transform="matrix(1 0 0 1 886.4221 829.2922)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqpkwbc2 }}
- </text>
- <text transform="matrix(1 0 0 1 886.4221 855.1438)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqqvarbc2 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1010.3147 803.4407)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqlaafc7 }}
- </text>
- <text transform="matrix(1 0 0 1 1010.3147 829.2922)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqpkwfc7 }}
- </text>
- <text transform="matrix(1 0 0 1 1010.3147 855.1438)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqqvarfc7 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1090.5315 803.4407)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqlaafc8 }}
- </text>
- <text transform="matrix(1 0 0 1 1090.5315 829.2922)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqpkwfc8 }}
- </text>
- <text transform="matrix(1 0 0 1 1090.5315 855.1438)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqqvarfc8 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1166.9338 803.4407)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqlaanc3 }}
- </text>
- <text transform="matrix(1 0 0 1 1166.9338 829.2922)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqpkwnc3 }}
- </text>
- <text transform="matrix(1 0 0 1 1166.9338 855.1438)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqqvarnc3 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1397.8674 803.4407)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- -.--
- </text>
- <text transform="matrix(1 0 0 1 1397.8674 829.2922)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- -.--
- </text>
- <text transform="matrix(1 0 0 1 1397.8674 855.1438)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- -.--
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1482.0706 803.4407)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqlaafc9 }}
- </text>
- <text transform="matrix(1 0 0 1 1482.0706 829.2922)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqpkwfc9 }}
- </text>
- <text transform="matrix(1 0 0 1 1482.0706 855.1438)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqqvarfc9 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1562.9436 803.4407)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqlaafc10 }}
- </text>
- <text transform="matrix(1 0 0 1 1562.9436 829.2922)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqpkwfc10 }}
- </text>
- <text transform="matrix(1 0 0 1 1562.9436 855.1438)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqqvarfc10 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1643.6819 803.4407)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqlaafc11 }}
- </text>
- <text transform="matrix(1 0 0 1 1643.6819 829.2922)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqpkwfc11 }}
- </text>
- <text transform="matrix(1 0 0 1 1643.6819 855.1438)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqqvarfc11 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1720.0159 803.4407)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqlaabc4 }}
- </text>
- <text transform="matrix(1 0 0 1 1720.0159 829.2922)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqpkwbc4 }}
- </text>
- <text transform="matrix(1 0 0 1 1720.0159 855.1438)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="10.7648">
- {{ ajaxData.sbqqvarbc4 }}
- </text>
- </g>
- </g>
- </g>
- </svg>
- </template>
- </previewPicture>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import previewPicture from "../previewPicture.vue";
- import { BoosterStation } from "./BoosterStation";
- export default {
- components: {
- previewPicture
- },
- data() {
- return {
- green: '#02A434',
- red: '#FF0000',
- ajaxData: {},
- interval: '',
- };
- },
- created() {
- this.boosterStation = new BoosterStation();
-
- this.refreshTPData()
- this.interval = setInterval(this.refreshTPData, 3000)
- },
- methods: {
- closed() {
- clearInterval(this.interval);
- },
- refreshTPData() {
- this.boosterStation.getDatas("SBQ_FDC",this.bindValue);
- },
- bindValue(msg){
- this.ajaxData=msg;
- },
- }
- };
- </script>
- <style scoped>
- .center-bar {
- position: relative;
- box-sizing: border-box;
- height: 90vh;
- background-color: #000000;
- padding-top: 10px;
- padding-left: 5px;
- padding-right: 5px;
- padding-bottom: 5px;
- margin-top: 0;
- margin-right: 0;
- margin-bottom: 3px;
- margin-left: 0;
- display: flex;
- flex-direction: column;
- }
- .svg {
- margin-left:5%;
- width: 90%;
- height: 90%;
- }
- </style>
|