nss.vue 321 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461
  1. <template>
  2. <div>
  3. <el-row :gutter="10">
  4. <el-col :span="24">
  5. <previewPicture>
  6. <template v-slot:svg>
  7. <svg class="svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
  8. version="1.1" id="图层_1" x="0px" y="0px" width="1932.596px" height="894.189px"
  9. viewBox="-30 70 1920.596 914.189" enable-background="new 0 0 1922.596 894.189"
  10. xml:space="preserve">
  11. <g id="other">
  12. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  13. d="M1420.582,668.486"></path>
  14. <g>
  15. <rect x="8.646" y="72.742" opacity="0.9" fill="#162320" enable-background="new "
  16. width="103.188" height="18.492" />
  17. <rect x="8.646" y="93.24" opacity="0.9" fill="#162320" enable-background="new "
  18. width="103.188" height="18.49" />
  19. <rect x="8.646" y="113.736" opacity="0.9" fill="#162320" enable-background="new "
  20. width="103.188" height="18.49" />
  21. <rect x="8.646" y="134.232" opacity="0.9" fill="#162320" enable-background="new "
  22. width="103.188" height="18.49" />
  23. <g>
  24. <text transform="matrix(1 0 0 1 25.5896 86.6943)" fill="#97A1A2"
  25. font-family="'MicrosoftYaHei'" font-size="11.3899">
  26. Ua
  27. </text>
  28. <text transform="matrix(1 0 0 1 40.3884 86.6943)" fill="#97A1A2"
  29. font-family="'MicrosoftYaHei'" font-size="9.6234">
  30. (kV)
  31. </text>
  32. <text transform="matrix(1 0 0 1 58.5647 86.6943)" fill="#97A1A2"
  33. font-family="'MicrosoftYaHei'" font-size="11.3899">
  34. :
  35. </text>
  36. </g>
  37. <g>
  38. <text transform="matrix(1 0 0 1 18.3152 105.0537)" fill="#97A1A2"
  39. font-family="'MicrosoftYaHei'" font-size="11.3899">
  40. Uab
  41. </text>
  42. <text transform="matrix(1 0 0 1 40.3894 105.0537)" fill="#97A1A2"
  43. font-family="'MicrosoftYaHei'" font-size="9.6234">
  44. (kV)
  45. </text>
  46. <text transform="matrix(1 0 0 1 58.5642 105.0537)" fill="#97A1A2"
  47. font-family="'MicrosoftYaHei'" font-size="11.3899">
  48. :
  49. </text>
  50. </g>
  51. <g>
  52. <text transform="matrix(1 0 0 1 21.1628 127.3389)" fill="#97A1A2"
  53. font-family="'MicrosoftYaHei'" font-size="11.3899">
  54. 3UO
  55. </text>
  56. <text transform="matrix(1 0 0 1 45.6277 127.3389)" fill="#97A1A2"
  57. font-family="'MicrosoftYaHei'" font-size="9.6234">
  58. (V)
  59. </text>
  60. <text transform="matrix(1 0 0 1 58.5637 127.3389)" fill="#97A1A2"
  61. font-family="'MicrosoftYaHei'" font-size="11.3899">
  62. :
  63. </text>
  64. </g>
  65. <g>
  66. <text transform="matrix(1 0 0 1 33.9104 148.1729)" fill="#97A1A2"
  67. font-family="'MicrosoftYaHei'" font-size="11.3899">
  68. F
  69. </text>
  70. <text transform="matrix(1 0 0 1 39.9612 148.1729)" fill="#97A1A2"
  71. font-family="'MicrosoftYaHei'" font-size="9.6234">
  72. (Hz)
  73. </text>
  74. <text transform="matrix(1 0 0 1 58.5642 148.1729)" fill="#97A1A2"
  75. font-family="'MicrosoftYaHei'" font-size="11.3899">
  76. :
  77. </text>
  78. </g>
  79. </g>
  80. <g>
  81. <rect x="1716.857" y="82.518" opacity="0.9" fill="#162320"
  82. enable-background="new " width="103.188" height="18.492" />
  83. <rect x="1716.857" y="103.016" opacity="0.9" fill="#162320"
  84. enable-background="new " width="103.188" height="18.488" />
  85. <rect x="1716.857" y="123.512" opacity="0.9" fill="#162320"
  86. enable-background="new " width="103.188" height="18.488" />
  87. <rect x="1716.857" y="144.01" opacity="0.9" fill="#162320"
  88. enable-background="new " width="103.188" height="18.488" />
  89. <g>
  90. <text transform="matrix(1 0 0 1 1733.8 96.4697)" fill="#97A1A2"
  91. font-family="'MicrosoftYaHei'" font-size="11.3899">
  92. Ua
  93. </text>
  94. <text transform="matrix(1 0 0 1 1748.5989 96.4697)" fill="#97A1A2"
  95. font-family="'MicrosoftYaHei'" font-size="9.6234">
  96. (kV)
  97. </text>
  98. <text transform="matrix(1 0 0 1 1766.7747 96.4697)" fill="#97A1A2"
  99. font-family="'MicrosoftYaHei'" font-size="11.3899">
  100. :
  101. </text>
  102. </g>
  103. <g>
  104. <text transform="matrix(1 0 0 1 1726.5247 114.8291)" fill="#97A1A2"
  105. font-family="'MicrosoftYaHei'" font-size="11.3899">
  106. Uab
  107. </text>
  108. <text transform="matrix(1 0 0 1 1748.5989 114.8291)" fill="#97A1A2"
  109. font-family="'MicrosoftYaHei'" font-size="9.6234">
  110. (kV)
  111. </text>
  112. <text transform="matrix(1 0 0 1 1766.7747 114.8291)" fill="#97A1A2"
  113. font-family="'MicrosoftYaHei'" font-size="11.3899">
  114. :
  115. </text>
  116. </g>
  117. <g>
  118. <text transform="matrix(1 0 0 1 1729.3723 137.1143)" fill="#97A1A2"
  119. font-family="'MicrosoftYaHei'" font-size="11.3899">
  120. 3UO
  121. </text>
  122. <text transform="matrix(1 0 0 1 1753.8372 137.1143)" fill="#97A1A2"
  123. font-family="'MicrosoftYaHei'" font-size="9.6234">
  124. (V)
  125. </text>
  126. <text transform="matrix(1 0 0 1 1766.7727 137.1143)" fill="#97A1A2"
  127. font-family="'MicrosoftYaHei'" font-size="11.3899">
  128. :
  129. </text>
  130. </g>
  131. <g>
  132. <text transform="matrix(1 0 0 1 1742.1204 157.9482)" fill="#97A1A2"
  133. font-family="'MicrosoftYaHei'" font-size="11.3899">
  134. F
  135. </text>
  136. <text transform="matrix(1 0 0 1 1748.1711 157.9482)" fill="#97A1A2"
  137. font-family="'MicrosoftYaHei'" font-size="9.6234">
  138. (Hz)
  139. </text>
  140. <text transform="matrix(1 0 0 1 1766.7747 157.9482)" fill="#97A1A2"
  141. font-family="'MicrosoftYaHei'" font-size="11.3899">
  142. :
  143. </text>
  144. </g>
  145. </g>
  146. <rect x="0" y="215.455" fill="#9F1A59" width="1087.332" height="2.25" />
  147. <rect x="1125.332" y="215.455" fill="#9F1A59" width="748.181" height="2.25" />
  148. <g>
  149. <rect x="433.904" y="60.179" opacity="0.9" fill="#162320"
  150. enable-background="new " width="86.619" height="18.489" />
  151. <rect x="433.904" y="80.677" opacity="0.9" fill="#162320"
  152. enable-background="new " width="86.619" height="18.488" />
  153. <rect x="433.904" y="101.172" opacity="0.9" fill="#162320"
  154. enable-background="new " width="86.619" height="18.49" />
  155. <g>
  156. <text transform="matrix(1 0 0 1 452.6292 74.1299)" fill="#97A1A2"
  157. font-family="'MicrosoftYaHei'" font-size="11.3899">
  158. la
  159. </text>
  160. <text transform="matrix(1 0 0 1 461.9563 74.1299)" fill="#97A1A2"
  161. font-family="'MicrosoftYaHei'" font-size="9.6234">
  162. (A)
  163. </text>
  164. <text transform="matrix(1 0 0 1 475.155 74.1299)" fill="#97A1A2"
  165. font-family="'MicrosoftYaHei'" font-size="11.3899">
  166. :
  167. </text>
  168. </g>
  169. <g>
  170. <text transform="matrix(1 0 0 1 446.7263 92.4893)" fill="#97A1A2"
  171. font-family="'MicrosoftYaHei'" font-size="11.3899">
  172. P
  173. </text>
  174. <text transform="matrix(1 0 0 1 453.6951 92.4893)" fill="#97A1A2"
  175. font-family="'MicrosoftYaHei'" font-size="9.6234">
  176. (MW)
  177. </text>
  178. <text transform="matrix(1 0 0 1 475.155 92.4893)" fill="#97A1A2"
  179. font-family="'MicrosoftYaHei'" font-size="11.3899">
  180. :
  181. </text>
  182. </g>
  183. <g>
  184. <text transform="matrix(1 0 0 1 438.7039 114.7744)" fill="#97A1A2"
  185. font-family="'MicrosoftYaHei'" font-size="11.3899">
  186. Q
  187. </text>
  188. <text transform="matrix(1 0 0 1 447.9861 114.7744)" fill="#97A1A2"
  189. font-family="'MicrosoftYaHei'" font-size="9.6234">
  190. (MVar)
  191. </text>
  192. <text transform="matrix(1 0 0 1 475.155 114.7744)" fill="#97A1A2"
  193. font-family="'MicrosoftYaHei'" font-size="11.3899">
  194. :
  195. </text>
  196. </g>
  197. <rect x="433.904" y="121.662" opacity="0.9" fill="#162320"
  198. enable-background="new " width="86.619" height="18.49" />
  199. <g>
  200. <text transform="matrix(1 0 0 1 443.2039 133.4756)" fill="#97A1A2"
  201. font-family="'MicrosoftYaHei'" font-size="11.3899">
  202. Ux
  203. </text>
  204. <text transform="matrix(1 0 0 1 456.9797 133.4756)" fill="#97A1A2"
  205. font-family="'MicrosoftYaHei'" font-size="9.6234">
  206. (kV)
  207. </text>
  208. <text transform="matrix(1 0 0 1 475.155 133.4756)" fill="#97A1A2"
  209. font-family="'MicrosoftYaHei'" font-size="11.3899">
  210. :
  211. </text>
  212. </g>
  213. <rect x="433.904" y="142.158" opacity="0.9" fill="#162320"
  214. enable-background="new " width="86.619" height="18.49" />
  215. <g>
  216. <text transform="matrix(1 0 0 1 440.6799 156.0986)" fill="#97A1A2"
  217. font-family="'MicrosoftYaHei'" font-size="11.3899">
  218. COSΦ:
  219. </text>
  220. </g>
  221. </g>
  222. <g>
  223. <rect x="482.332" y="348.68" opacity="0.9" fill="#162320"
  224. enable-background="new " width="103.089" height="18.491" />
  225. <rect x="482.332" y="369.177" opacity="0.9" fill="#162320"
  226. enable-background="new " width="103.089" height="18.489" />
  227. <rect x="482.332" y="389.675" opacity="0.9" fill="#162320"
  228. enable-background="new " width="103.089" height="18.488" />
  229. <g>
  230. <text transform="matrix(1 0 0 1 517.2732 362.6299)" fill="#97A1A2"
  231. font-family="'MicrosoftYaHei'" font-size="11.3899">
  232. 档位:
  233. </text>
  234. </g>
  235. <g>
  236. <text transform="matrix(1 0 0 1 487.8137 381.9912)" fill="#97A1A2"
  237. font-family="'MicrosoftYaHei'" font-size="11.3899">
  238. 油面温度1:
  239. </text>
  240. </g>
  241. <g>
  242. <text transform="matrix(1 0 0 1 487.8137 403.2764)" fill="#97A1A2"
  243. font-family="'MicrosoftYaHei'" font-size="11.3899">
  244. 油面温度2:
  245. </text>
  246. </g>
  247. <rect x="482.332" y="267.802" opacity="0.9" fill="#162320"
  248. enable-background="new " width="103.089" height="18.489" />
  249. <rect x="482.332" y="288.301" opacity="0.9" fill="#162320"
  250. enable-background="new " width="103.089" height="18.489" />
  251. <rect x="482.332" y="308.797" opacity="0.9" fill="#162320"
  252. enable-background="new " width="103.089" height="18.488" />
  253. <g>
  254. <text transform="matrix(1 0 0 1 517.5271 281.7529)" fill="#97A1A2"
  255. font-family="'MicrosoftYaHei'" font-size="11.3899">
  256. la
  257. </text>
  258. <text transform="matrix(1 0 0 1 526.8542 281.7529)" fill="#97A1A2"
  259. font-family="'MicrosoftYaHei'" font-size="9.6234">
  260. (A)
  261. </text>
  262. <text transform="matrix(1 0 0 1 540.053 281.7529)" fill="#97A1A2"
  263. font-family="'MicrosoftYaHei'" font-size="11.3899">
  264. :
  265. </text>
  266. </g>
  267. <g>
  268. <text transform="matrix(1 0 0 1 511.6243 300.1123)" fill="#97A1A2"
  269. font-family="'MicrosoftYaHei'" font-size="11.3899">
  270. P
  271. </text>
  272. <text transform="matrix(1 0 0 1 518.5935 300.1123)" fill="#97A1A2"
  273. font-family="'MicrosoftYaHei'" font-size="9.6234">
  274. (MW)
  275. </text>
  276. <text transform="matrix(1 0 0 1 540.0535 300.1123)" fill="#97A1A2"
  277. font-family="'MicrosoftYaHei'" font-size="11.3899">
  278. :
  279. </text>
  280. </g>
  281. <g>
  282. <text transform="matrix(1 0 0 1 503.6018 322.3975)" fill="#97A1A2"
  283. font-family="'MicrosoftYaHei'" font-size="11.3899">
  284. Q
  285. </text>
  286. <text transform="matrix(1 0 0 1 512.8835 322.3975)" fill="#97A1A2"
  287. font-family="'MicrosoftYaHei'" font-size="9.6234">
  288. (MVar)
  289. </text>
  290. <text transform="matrix(1 0 0 1 540.053 322.3975)" fill="#97A1A2"
  291. font-family="'MicrosoftYaHei'" font-size="11.3899">
  292. :
  293. </text>
  294. </g>
  295. <rect x="482.332" y="328.749" opacity="0.9" fill="#162320"
  296. enable-background="new " width="103.089" height="18.49" />
  297. <g>
  298. <text transform="matrix(1 0 0 1 506.5779 342.6904)" fill="#97A1A2"
  299. font-family="'MicrosoftYaHei'" font-size="11.3899">
  300. COSΦ:
  301. </text>
  302. </g>
  303. <rect x="482.332" y="408.813" opacity="0.9" fill="#162320"
  304. enable-background="new " width="103.089" height="18.491" />
  305. <rect x="482.332" y="429.311" opacity="0.9" fill="#162320"
  306. enable-background="new " width="103.089" height="18.49" />
  307. <rect x="482.332" y="449.807" opacity="0.9" fill="#162320"
  308. enable-background="new " width="103.089" height="18.49" />
  309. <g>
  310. <text transform="matrix(1 0 0 1 517.5271 422.7646)" fill="#97A1A2"
  311. font-family="'MicrosoftYaHei'" font-size="11.3899">
  312. la
  313. </text>
  314. <text transform="matrix(1 0 0 1 526.8542 422.7646)" fill="#97A1A2"
  315. font-family="'MicrosoftYaHei'" font-size="9.6234">
  316. (A)
  317. </text>
  318. <text transform="matrix(1 0 0 1 540.053 422.7646)" fill="#97A1A2"
  319. font-family="'MicrosoftYaHei'" font-size="11.3899">
  320. :
  321. </text>
  322. </g>
  323. <g>
  324. <text transform="matrix(1 0 0 1 511.6243 441.124)" fill="#97A1A2"
  325. font-family="'MicrosoftYaHei'" font-size="11.3899">
  326. P
  327. </text>
  328. <text transform="matrix(1 0 0 1 518.5935 441.124)" fill="#97A1A2"
  329. font-family="'MicrosoftYaHei'" font-size="9.6234">
  330. (MW)
  331. </text>
  332. <text transform="matrix(1 0 0 1 540.0535 441.124)" fill="#97A1A2"
  333. font-family="'MicrosoftYaHei'" font-size="11.3899">
  334. :
  335. </text>
  336. </g>
  337. <g>
  338. <text transform="matrix(1 0 0 1 503.6018 463.4092)" fill="#97A1A2"
  339. font-family="'MicrosoftYaHei'" font-size="11.3899">
  340. Q
  341. </text>
  342. <text transform="matrix(1 0 0 1 512.8835 463.4092)" fill="#97A1A2"
  343. font-family="'MicrosoftYaHei'" font-size="9.6234">
  344. (MVar)
  345. </text>
  346. <text transform="matrix(1 0 0 1 540.053 463.4092)" fill="#97A1A2"
  347. font-family="'MicrosoftYaHei'" font-size="11.3899">
  348. :
  349. </text>
  350. </g>
  351. <rect x="482.332" y="469.761" opacity="0.9" fill="#162320"
  352. enable-background="new " width="103.089" height="18.489" />
  353. <g>
  354. <text transform="matrix(1 0 0 1 506.5779 483.7021)" fill="#97A1A2"
  355. font-family="'MicrosoftYaHei'" font-size="11.3899">
  356. COSΦ:
  357. </text>
  358. </g>
  359. </g>
  360. <g>
  361. <rect x="657.886" y="398.79" opacity="0.9" fill="#162320"
  362. enable-background="new " width="86.619" height="18.491" />
  363. <rect x="657.886" y="419.287" opacity="0.9" fill="#162320"
  364. enable-background="new " width="86.619" height="18.49" />
  365. <rect x="657.886" y="439.783" opacity="0.9" fill="#162320"
  366. enable-background="new " width="86.619" height="18.49" />
  367. <g>
  368. <text transform="matrix(1 0 0 1 666.1624 412.7412)" fill="#97A1A2"
  369. font-family="'MicrosoftYaHei'" font-size="11.3899">
  370. Ua
  371. </text>
  372. <text transform="matrix(1 0 0 1 680.9612 412.7412)" fill="#97A1A2"
  373. font-family="'MicrosoftYaHei'" font-size="9.6234">
  374. (kV)
  375. </text>
  376. <text transform="matrix(1 0 0 1 699.1375 412.7412)" fill="#97A1A2"
  377. font-family="'MicrosoftYaHei'" font-size="11.3899">
  378. :
  379. </text>
  380. </g>
  381. <g>
  382. <text transform="matrix(1 0 0 1 658.8879 431.1006)" fill="#97A1A2"
  383. font-family="'MicrosoftYaHei'" font-size="11.3899">
  384. Uab
  385. </text>
  386. <text transform="matrix(1 0 0 1 680.9617 431.1006)" fill="#97A1A2"
  387. font-family="'MicrosoftYaHei'" font-size="9.6234">
  388. (kV)
  389. </text>
  390. <text transform="matrix(1 0 0 1 699.137 431.1006)" fill="#97A1A2"
  391. font-family="'MicrosoftYaHei'" font-size="11.3899">
  392. :
  393. </text>
  394. </g>
  395. <g>
  396. <text transform="matrix(1 0 0 1 661.7356 453.3857)" fill="#97A1A2"
  397. font-family="'MicrosoftYaHei'" font-size="11.3899">
  398. 3UO
  399. </text>
  400. <text transform="matrix(1 0 0 1 686.2004 453.3857)" fill="#97A1A2"
  401. font-family="'MicrosoftYaHei'" font-size="9.6234">
  402. (V)
  403. </text>
  404. <text transform="matrix(1 0 0 1 699.1365 453.3857)" fill="#97A1A2"
  405. font-family="'MicrosoftYaHei'" font-size="11.3899">
  406. :
  407. </text>
  408. </g>
  409. <rect x="657.886" y="460.273" opacity="0.9" fill="#162320"
  410. enable-background="new " width="86.619" height="18.489" />
  411. <g>
  412. <text transform="matrix(1 0 0 1 674.4832 472.0869)" fill="#97A1A2"
  413. font-family="'MicrosoftYaHei'" font-size="11.3899">
  414. F
  415. </text>
  416. <text transform="matrix(1 0 0 1 680.5339 472.0869)" fill="#97A1A2"
  417. font-family="'MicrosoftYaHei'" font-size="9.6234">
  418. (Hz)
  419. </text>
  420. <text transform="matrix(1 0 0 1 699.1375 472.0869)" fill="#97A1A2"
  421. font-family="'MicrosoftYaHei'" font-size="11.3899">
  422. :
  423. </text>
  424. </g>
  425. </g>
  426. <g>
  427. <rect x="15.902" y="398.79" opacity="0.9" fill="#162320" enable-background="new "
  428. width="86.619" height="18.491" />
  429. <rect x="15.902" y="419.287" opacity="0.9" fill="#162320"
  430. enable-background="new " width="86.619" height="18.49" />
  431. <rect x="15.902" y="439.783" opacity="0.9" fill="#162320"
  432. enable-background="new " width="86.619" height="18.49" />
  433. <g>
  434. <text transform="matrix(1 0 0 1 24.178 412.7412)" fill="#97A1A2"
  435. font-family="'MicrosoftYaHei'" font-size="11.3899">
  436. Ua
  437. </text>
  438. <text transform="matrix(1 0 0 1 38.9768 412.7412)" fill="#97A1A2"
  439. font-family="'MicrosoftYaHei'" font-size="9.6234">
  440. (kV)
  441. </text>
  442. <text transform="matrix(1 0 0 1 57.1531 412.7412)" fill="#97A1A2"
  443. font-family="'MicrosoftYaHei'" font-size="11.3899">
  444. :
  445. </text>
  446. </g>
  447. <g>
  448. <text transform="matrix(1 0 0 1 16.9036 431.1006)" fill="#97A1A2"
  449. font-family="'MicrosoftYaHei'" font-size="11.3899">
  450. Uab
  451. </text>
  452. <text transform="matrix(1 0 0 1 38.9773 431.1006)" fill="#97A1A2"
  453. font-family="'MicrosoftYaHei'" font-size="9.6234">
  454. (kV)
  455. </text>
  456. <text transform="matrix(1 0 0 1 57.1526 431.1006)" fill="#97A1A2"
  457. font-family="'MicrosoftYaHei'" font-size="11.3899">
  458. :
  459. </text>
  460. </g>
  461. <g>
  462. <text transform="matrix(1 0 0 1 19.7512 453.3857)" fill="#97A1A2"
  463. font-family="'MicrosoftYaHei'" font-size="11.3899">
  464. 3UO
  465. </text>
  466. <text transform="matrix(1 0 0 1 44.2166 453.3857)" fill="#97A1A2"
  467. font-family="'MicrosoftYaHei'" font-size="9.6234">
  468. (V)
  469. </text>
  470. <text transform="matrix(1 0 0 1 57.1521 453.3857)" fill="#97A1A2"
  471. font-family="'MicrosoftYaHei'" font-size="11.3899">
  472. :
  473. </text>
  474. </g>
  475. <rect x="15.902" y="460.273" opacity="0.9" fill="#162320"
  476. enable-background="new " width="86.619" height="18.489" />
  477. <g>
  478. <text transform="matrix(1 0 0 1 32.4988 472.0869)" fill="#97A1A2"
  479. font-family="'MicrosoftYaHei'" font-size="11.3899">
  480. F
  481. </text>
  482. <text transform="matrix(1 0 0 1 38.5496 472.0869)" fill="#97A1A2"
  483. font-family="'MicrosoftYaHei'" font-size="9.6234">
  484. (Hz)
  485. </text>
  486. <text transform="matrix(1 0 0 1 57.1526 472.0869)" fill="#97A1A2"
  487. font-family="'MicrosoftYaHei'" font-size="11.3899">
  488. :
  489. </text>
  490. </g>
  491. </g>
  492. <g>
  493. <rect x="1298.813" y="398.79" opacity="0.9" fill="#162320"
  494. enable-background="new " width="86.619" height="18.491" />
  495. <rect x="1298.813" y="419.287" opacity="0.9" fill="#162320"
  496. enable-background="new " width="86.619" height="18.49" />
  497. <rect x="1298.813" y="439.783" opacity="0.9" fill="#162320"
  498. enable-background="new " width="86.619" height="18.49" />
  499. <g>
  500. <text transform="matrix(1 0 0 1 1307.0872 412.7412)" fill="#97A1A2"
  501. font-family="'MicrosoftYaHei'" font-size="11.3899">
  502. Ua
  503. </text>
  504. <text transform="matrix(1 0 0 1 1321.886 412.7412)" fill="#97A1A2"
  505. font-family="'MicrosoftYaHei'" font-size="9.6234">
  506. (kV)
  507. </text>
  508. <text transform="matrix(1 0 0 1 1340.0637 412.7412)" fill="#97A1A2"
  509. font-family="'MicrosoftYaHei'" font-size="11.3899">
  510. :
  511. </text>
  512. </g>
  513. <g>
  514. <text transform="matrix(1 0 0 1 1299.8118 431.1006)" fill="#97A1A2"
  515. font-family="'MicrosoftYaHei'" font-size="11.3899">
  516. Uab
  517. </text>
  518. <text transform="matrix(1 0 0 1 1321.886 431.1006)" fill="#97A1A2"
  519. font-family="'MicrosoftYaHei'" font-size="9.6234">
  520. (kV)
  521. </text>
  522. <text transform="matrix(1 0 0 1 1340.0618 431.1006)" fill="#97A1A2"
  523. font-family="'MicrosoftYaHei'" font-size="11.3899">
  524. :
  525. </text>
  526. </g>
  527. <g>
  528. <text transform="matrix(1 0 0 1 1302.6594 453.3857)" fill="#97A1A2"
  529. font-family="'MicrosoftYaHei'" font-size="11.3899">
  530. 3UO
  531. </text>
  532. <text transform="matrix(1 0 0 1 1327.1243 453.3857)" fill="#97A1A2"
  533. font-family="'MicrosoftYaHei'" font-size="9.6234">
  534. (V)
  535. </text>
  536. <text transform="matrix(1 0 0 1 1340.0618 453.3857)" fill="#97A1A2"
  537. font-family="'MicrosoftYaHei'" font-size="11.3899">
  538. :
  539. </text>
  540. </g>
  541. <rect x="1298.813" y="460.273" opacity="0.9" fill="#162320"
  542. enable-background="new " width="86.619" height="18.489" />
  543. <g>
  544. <text transform="matrix(1 0 0 1 1315.4075 472.0869)" fill="#97A1A2"
  545. font-family="'MicrosoftYaHei'" font-size="11.3899">
  546. F
  547. </text>
  548. <text transform="matrix(1 0 0 1 1321.4583 472.0869)" fill="#97A1A2"
  549. font-family="'MicrosoftYaHei'" font-size="9.6234">
  550. (Hz)
  551. </text>
  552. <text transform="matrix(1 0 0 1 1340.0618 472.0869)" fill="#97A1A2"
  553. font-family="'MicrosoftYaHei'" font-size="11.3899">
  554. :
  555. </text>
  556. </g>
  557. </g>
  558. <g>
  559. <rect x="1006.239" y="60.179" opacity="0.9" fill="#162320"
  560. enable-background="new " width="86.619" height="18.489" />
  561. <rect x="1006.239" y="80.677" opacity="0.9" fill="#162320"
  562. enable-background="new " width="86.619" height="18.488" />
  563. <rect x="1006.239" y="101.172" opacity="0.9" fill="#162320"
  564. enable-background="new " width="86.619" height="18.49" />
  565. <g>
  566. <text transform="matrix(1 0 0 1 1024.9622 74.1299)" fill="#97A1A2"
  567. font-family="'MicrosoftYaHei'" font-size="11.3899">
  568. la
  569. </text>
  570. <text transform="matrix(1 0 0 1 1034.2883 74.1299)" fill="#97A1A2"
  571. font-family="'MicrosoftYaHei'" font-size="9.6234">
  572. (A)
  573. </text>
  574. <text transform="matrix(1 0 0 1 1047.4875 74.1299)" fill="#97A1A2"
  575. font-family="'MicrosoftYaHei'" font-size="11.3899">
  576. :
  577. </text>
  578. </g>
  579. <g>
  580. <text transform="matrix(1 0 0 1 1019.0598 92.4893)" fill="#97A1A2"
  581. font-family="'MicrosoftYaHei'" font-size="11.3899">
  582. P
  583. </text>
  584. <text transform="matrix(1 0 0 1 1026.0286 92.4893)" fill="#97A1A2"
  585. font-family="'MicrosoftYaHei'" font-size="9.6234">
  586. (MW)
  587. </text>
  588. <text transform="matrix(1 0 0 1 1047.4875 92.4893)" fill="#97A1A2"
  589. font-family="'MicrosoftYaHei'" font-size="11.3899">
  590. :
  591. </text>
  592. </g>
  593. <g>
  594. <text transform="matrix(1 0 0 1 1011.0364 114.7744)" fill="#97A1A2"
  595. font-family="'MicrosoftYaHei'" font-size="11.3899">
  596. Q
  597. </text>
  598. <text transform="matrix(1 0 0 1 1020.3196 114.7744)" fill="#97A1A2"
  599. font-family="'MicrosoftYaHei'" font-size="9.6234">
  600. (MVar)
  601. </text>
  602. <text transform="matrix(1 0 0 1 1047.4875 114.7744)" fill="#97A1A2"
  603. font-family="'MicrosoftYaHei'" font-size="11.3899">
  604. :
  605. </text>
  606. </g>
  607. <rect x="1006.239" y="121.662" opacity="0.9" fill="#162320"
  608. enable-background="new " width="86.619" height="18.49" />
  609. <g>
  610. <text transform="matrix(1 0 0 1 1015.5364 133.4756)" fill="#97A1A2"
  611. font-family="'MicrosoftYaHei'" font-size="11.3899">
  612. Ux
  613. </text>
  614. <text transform="matrix(1 0 0 1 1029.3137 133.4756)" fill="#97A1A2"
  615. font-family="'MicrosoftYaHei'" font-size="9.6234">
  616. (kV)
  617. </text>
  618. <text transform="matrix(1 0 0 1 1047.4875 133.4756)" fill="#97A1A2"
  619. font-family="'MicrosoftYaHei'" font-size="11.3899">
  620. :
  621. </text>
  622. </g>
  623. <rect x="1006.239" y="142.158" opacity="0.9" fill="#162320"
  624. enable-background="new " width="86.619" height="18.49" />
  625. <g>
  626. <text transform="matrix(1 0 0 1 1024.0129 156.0986)" fill="#97A1A2"
  627. font-family="'MicrosoftYaHei'" font-size="11.3899">
  628. COS:
  629. </text>
  630. </g>
  631. </g>
  632. <rect x="349.882" y="200.97" fill="#9F1A59" width="3.047" height="15.61" />
  633. <text transform="matrix(1 0 0 1 367.1746 65.292)" fill="#FFFFFF"
  634. font-family="'MicrosoftYaHei'" font-size="11.9907">
  635. 101-3
  636. </text>
  637. <text transform="matrix(1 0 0 1 367.1746 130.0693)" fill="#FFFFFF"
  638. font-family="'MicrosoftYaHei'" font-size="11.9907">
  639. 101
  640. </text>
  641. <text transform="matrix(1 0 0 1 242.8196 44.4717)" fill="#FFFFFF"
  642. font-family="'MicrosoftYaHei'" font-size="11.9907">
  643. 101-0
  644. </text>
  645. <g>
  646. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  647. x1="297.239" y1="33.306" x2="297.239" y2="45.606" />
  648. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  649. x1="305.702" y1="39.456" x2="297.239" y2="39.456" />
  650. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  651. x1="293.854" y1="35.845" x2="293.854" y2="43.067" />
  652. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  653. x1="290.469" y1="37.257" x2="290.469" y2="41.655" />
  654. </g>
  655. <text transform="matrix(1 0 0 1 242.8196 88.4814)" fill="#FFFFFF"
  656. font-family="'MicrosoftYaHei'" font-size="11.9907">
  657. 101-03
  658. </text>
  659. <g>
  660. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  661. x1="297.239" y1="79.296" x2="297.239" y2="91.596" />
  662. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  663. x1="305.702" y1="85.445" x2="297.239" y2="85.445" />
  664. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  665. x1="293.854" y1="81.835" x2="293.854" y2="89.057" />
  666. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  667. x1="290.469" y1="83.246" x2="290.469" y2="87.646" />
  668. </g>
  669. <text transform="matrix(1 0 0 1 242.8196 168.2646)" fill="#FFFFFF"
  670. font-family="'MicrosoftYaHei'" font-size="11.9907">
  671. 101-01
  672. </text>
  673. <g>
  674. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  675. x1="298.14" y1="159.775" x2="298.14" y2="172.074" />
  676. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  677. x1="306.604" y1="165.927" x2="298.14" y2="165.927" />
  678. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  679. x1="294.754" y1="162.314" x2="294.754" y2="169.535" />
  680. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  681. x1="291.369" y1="163.725" x2="291.369" y2="168.125" />
  682. </g>
  683. <rect x="349.882" y="33.306" fill="#9F1A59" width="3.047" height="17.768" />
  684. <rect x="421.666" y="33.305" fill="#9F1A59" width="3.048" height="183.273" />
  685. <rect x="349.882" y="31.781" fill="#9F1A59" width="74.831" height="3.047" />
  686. <rect x="349.882" y="74.91" fill="#9F1A59" width="3.047" height="38.457" />
  687. <rect x="328.723" y="37.933" fill="#9F1A59" width="21.159" height="3.047" />
  688. <rect x="328.723" y="84.262" fill="#9F1A59" width="21.159" height="3.047" />
  689. <rect x="349.882" y="137.513" fill="#9F1A59" width="3.047" height="40.227" />
  690. <rect x="328.723" y="164.781" fill="#9F1A59" width="21.159" height="3.047" />
  691. <rect x="342.987" y="113.363" fill="#9F1A59" width="15.98" height="24.202" />
  692. <rect x="669.882" y="201.97" fill="#9F1A59" width="3.047" height="14.61" />
  693. <text transform="matrix(1 0 0 1 687.1746 103.1846)" fill="#FFFFFF"
  694. font-family="'MicrosoftYaHei'" font-size="11.9907">
  695. 102-3
  696. </text>
  697. <text transform="matrix(1 0 0 1 687.1746 148.2256)" fill="#FFFFFF"
  698. font-family="'MicrosoftYaHei'" font-size="11.9907">
  699. 111
  700. </text>
  701. <text transform="matrix(1 0 0 1 687.1746 192.9111)" fill="#FFFFFF"
  702. font-family="'MicrosoftYaHei'" font-size="11.9907">
  703. 111-1
  704. </text>
  705. <text transform="matrix(1 0 0 1 562.8196 74.4385)" fill="#FFFFFF"
  706. font-family="'MicrosoftYaHei'" font-size="11.9907">
  707. 111-0
  708. </text>
  709. <g>
  710. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  711. x1="617.239" y1="63.273" x2="617.239" y2="75.574" />
  712. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  713. x1="625.702" y1="69.424" x2="617.239" y2="69.424" />
  714. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  715. x1="613.854" y1="65.813" x2="613.854" y2="73.035" />
  716. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  717. x1="610.469" y1="67.225" x2="610.469" y2="71.623" />
  718. </g>
  719. <text transform="matrix(1 0 0 1 562.8196 123.5693)" fill="#FFFFFF"
  720. font-family="'MicrosoftYaHei'" font-size="11.9907">
  721. 111-03
  722. </text>
  723. <g>
  724. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  725. x1="617.239" y1="114.385" x2="617.239" y2="126.684" />
  726. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  727. x1="625.702" y1="120.533" x2="617.239" y2="120.533" />
  728. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  729. x1="613.854" y1="116.923" x2="613.854" y2="124.145" />
  730. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  731. x1="610.469" y1="118.334" x2="610.469" y2="122.733" />
  732. </g>
  733. <text transform="matrix(1 0 0 1 562.8196 169.2646)" fill="#FFFFFF"
  734. font-family="'MicrosoftYaHei'" font-size="11.9907">
  735. 111-01
  736. </text>
  737. <g>
  738. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  739. x1="618.14" y1="160.775" x2="618.14" y2="173.074" />
  740. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  741. x1="626.604" y1="166.927" x2="618.14" y2="166.927" />
  742. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  743. x1="614.754" y1="163.314" x2="614.754" y2="170.535" />
  744. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  745. x1="611.368" y1="164.725" x2="611.368" y2="169.125" />
  746. </g>
  747. <rect x="669.882" y="45.606" fill="#9F1A59" width="3.047" height="43.357" />
  748. <rect x="648.723" y="67.9" fill="#9F1A59" width="21.159" height="3.047" />
  749. <rect x="648.723" y="119.35" fill="#9F1A59" width="21.159" height="3.047" />
  750. <rect x="669.882" y="113.367" fill="#9F1A59" width="3.047" height="65.372" />
  751. <rect x="648.723" y="165.781" fill="#9F1A59" width="21.159" height="3.047" />
  752. <rect x="662.987" y="131.377" fill="#9F1A59" width="15.98" height="24.202" />
  753. <rect x="905.882" y="200.97" fill="#9F1A59" width="3.047" height="15.61" />
  754. <rect x="1256.821" y="202.907" fill="#9F1A59" width="3.047" height="13.675" />
  755. <text transform="matrix(1 0 0 1 919.1746 65.292)" fill="#FFFFFF"
  756. font-family="'MicrosoftYaHei'" font-size="11.9907">
  757. 102-3
  758. </text>
  759. <text transform="matrix(1 0 0 1 919.1746 130.0693)" fill="#FFFFFF"
  760. font-family="'MicrosoftYaHei'" font-size="11.9907">
  761. 102
  762. </text>
  763. <text transform="matrix(1 0 0 1 919.1746 191.9111)" fill="#FFFFFF"
  764. font-family="'MicrosoftYaHei'" font-size="11.9907">
  765. 102-1
  766. </text>
  767. <text transform="matrix(1 0 0 1 798.8201 44.4717)" fill="#FFFFFF"
  768. font-family="'MicrosoftYaHei'" font-size="11.9907">
  769. 102-0
  770. </text>
  771. <g>
  772. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  773. x1="853.24" y1="33.306" x2="853.24" y2="45.606" />
  774. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  775. x1="861.702" y1="39.456" x2="853.24" y2="39.456" />
  776. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  777. x1="849.854" y1="35.845" x2="849.854" y2="43.067" />
  778. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  779. x1="846.469" y1="37.257" x2="846.469" y2="41.655" />
  780. </g>
  781. <text transform="matrix(1 0 0 1 798.8201 88.4814)" fill="#FFFFFF"
  782. font-family="'MicrosoftYaHei'" font-size="11.9907">
  783. 102-03
  784. </text>
  785. <g>
  786. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  787. x1="853.24" y1="79.296" x2="853.24" y2="91.596" />
  788. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  789. x1="861.702" y1="85.445" x2="853.24" y2="85.445" />
  790. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  791. x1="849.854" y1="81.835" x2="849.854" y2="89.057" />
  792. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  793. x1="846.469" y1="83.246" x2="846.469" y2="87.646" />
  794. </g>
  795. <text transform="matrix(1 0 0 1 798.8201 168.2646)" fill="#FFFFFF"
  796. font-family="'MicrosoftYaHei'" font-size="11.9907">
  797. 102-01
  798. </text>
  799. <g>
  800. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  801. x1="854.141" y1="159.775" x2="854.141" y2="172.074" />
  802. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  803. x1="862.604" y1="165.927" x2="854.141" y2="165.927" />
  804. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  805. x1="850.755" y1="162.314" x2="850.755" y2="169.535" />
  806. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  807. x1="847.369" y1="163.725" x2="847.369" y2="168.125" />
  808. </g>
  809. <rect x="905.882" y="33.306" fill="#9F1A59" width="3.047" height="17.768" />
  810. <rect x="978.666" y="33.305" fill="#9F1A59" width="3.048" height="183.273" />
  811. <rect x="906.882" y="31.781" fill="#9F1A59" width="74.832" height="3.047" />
  812. <rect x="905.882" y="74.91" fill="#9F1A59" width="3.047" height="38.457" />
  813. <rect x="884.724" y="37.933" fill="#9F1A59" width="21.159" height="3.047" />
  814. <rect x="884.724" y="84.262" fill="#9F1A59" width="21.159" height="3.047" />
  815. <rect x="905.882" y="137.513" fill="#9F1A59" width="3.047" height="40.227" />
  816. <rect x="884.724" y="164.781" fill="#9F1A59" width="21.159" height="3.047" />
  817. <rect x="898.987" y="113.363" fill="#9F1A59" width="15.98" height="24.202" />
  818. <rect x="1484.502" y="200.97" fill="#9F1A59" width="3.047" height="15.61" />
  819. <text transform="matrix(1 0 0 1 1497.7942 65.292)" fill="#FFFFFF"
  820. font-family="'MicrosoftYaHei'" font-size="11.9907">
  821. 103-3
  822. </text>
  823. <text transform="matrix(1 0 0 1 1497.7942 130.0693)" fill="#FFFFFF"
  824. font-family="'MicrosoftYaHei'" font-size="11.9907">
  825. 103
  826. </text>
  827. <text transform="matrix(1 0 0 1 1497.7942 191.9111)" fill="#FFFFFF"
  828. font-family="'MicrosoftYaHei'" font-size="11.9907">
  829. 103-2
  830. </text>
  831. <text transform="matrix(1 0 0 1 1377.4387 44.4717)" fill="#FFFFFF"
  832. font-family="'MicrosoftYaHei'" font-size="11.9907">
  833. 103-0
  834. </text>
  835. <g>
  836. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  837. x1="1431.859" y1="33.306" x2="1431.859" y2="45.606" />
  838. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  839. x1="1440.323" y1="39.456" x2="1431.859" y2="39.456" />
  840. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  841. x1="1428.475" y1="35.845" x2="1428.475" y2="43.067" />
  842. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  843. x1="1425.088" y1="37.257" x2="1425.088" y2="41.655" />
  844. </g>
  845. <text transform="matrix(1 0 0 1 1377.4387 88.4814)" fill="#FFFFFF"
  846. font-family="'MicrosoftYaHei'" font-size="11.9907">
  847. 103-03
  848. </text>
  849. <g>
  850. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  851. x1="1431.859" y1="79.296" x2="1431.859" y2="91.596" />
  852. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  853. x1="1440.323" y1="85.445" x2="1431.859" y2="85.445" />
  854. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  855. x1="1428.475" y1="81.835" x2="1428.475" y2="89.057" />
  856. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  857. x1="1425.088" y1="83.246" x2="1425.088" y2="87.646" />
  858. </g>
  859. <text transform="matrix(1 0 0 1 1377.4387 168.2646)" fill="#FFFFFF"
  860. font-family="'MicrosoftYaHei'" font-size="11.9907">
  861. 103-02
  862. </text>
  863. <g>
  864. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  865. x1="1432.76" y1="159.775" x2="1432.76" y2="172.074" />
  866. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  867. x1="1441.225" y1="165.927" x2="1432.76" y2="165.927" />
  868. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  869. x1="1429.375" y1="162.314" x2="1429.375" y2="169.535" />
  870. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  871. x1="1425.989" y1="163.725" x2="1425.989" y2="168.125" />
  872. </g>
  873. <rect x="1484.502" y="33.306" fill="#9F1A59" width="3.047" height="17.768" />
  874. <rect x="1557.287" y="33.305" fill="#9F1A59" width="3.047" height="183.273" />
  875. <rect x="1485.502" y="31.781" fill="#9F1A59" width="74.832" height="3.047" />
  876. <rect x="1484.502" y="74.91" fill="#9F1A59" width="3.047" height="38.457" />
  877. <rect x="1463.344" y="37.933" fill="#9F1A59" width="21.158" height="3.047" />
  878. <rect x="1463.344" y="84.262" fill="#9F1A59" width="21.158" height="3.047" />
  879. <rect x="1484.502" y="137.513" fill="#9F1A59" width="3.047" height="40.227" />
  880. <rect x="1463.344" y="164.781" fill="#9F1A59" width="21.158" height="3.047" />
  881. <rect x="1477.607" y="113.363" fill="#9F1A59" width="15.98" height="24.202" />
  882. <polygon fill="#9F1A59" points="665.294,46.332 671.412,33.313 677.518,46.337 " />
  883. <rect x="621.097" y="1.334" fill="#44426C" width="97.569" height="20.818" />
  884. <text transform="matrix(1 0 0 1 638.4651 15.5264)" fill="#FFFFFF"
  885. font-family="'MicrosoftYaHei'" font-size="12.5667">
  886. 首风二甲线
  887. </text>
  888. <text transform="matrix(1 0 0 1 1275.636 103.1846)" fill="#FFFFFF"
  889. font-family="'MicrosoftYaHei'" font-size="11.9907">
  890. 121-3
  891. </text>
  892. <text transform="matrix(1 0 0 1 1275.636 148.2256)" fill="#FFFFFF"
  893. font-family="'MicrosoftYaHei'" font-size="11.9907">
  894. 121
  895. </text>
  896. <text transform="matrix(1 0 0 1 1275.636 192.9111)" fill="#FFFFFF"
  897. font-family="'MicrosoftYaHei'" font-size="11.9907">
  898. 121-2
  899. </text>
  900. <text transform="matrix(1 0 0 1 1151.2805 74.4385)" fill="#FFFFFF"
  901. font-family="'MicrosoftYaHei'" font-size="11.9907">
  902. 121-0
  903. </text>
  904. <g>
  905. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  906. x1="1205.701" y1="63.273" x2="1205.701" y2="75.574" />
  907. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  908. x1="1214.164" y1="69.424" x2="1205.701" y2="69.424" />
  909. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  910. x1="1202.314" y1="65.813" x2="1202.314" y2="73.035" />
  911. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  912. x1="1198.93" y1="67.225" x2="1198.93" y2="71.623" />
  913. </g>
  914. <text transform="matrix(1 0 0 1 1151.2805 123.5693)" fill="#FFFFFF"
  915. font-family="'MicrosoftYaHei'" font-size="11.9907">
  916. 121-03
  917. </text>
  918. <g>
  919. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  920. x1="1205.701" y1="114.385" x2="1205.701" y2="126.684" />
  921. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  922. x1="1214.164" y1="120.533" x2="1205.701" y2="120.533" />
  923. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  924. x1="1202.314" y1="116.923" x2="1202.314" y2="124.145" />
  925. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  926. x1="1198.93" y1="118.334" x2="1198.93" y2="122.733" />
  927. </g>
  928. <text transform="matrix(1 0 0 1 1151.2805 169.2646)" fill="#FFFFFF"
  929. font-family="'MicrosoftYaHei'" font-size="11.9907">
  930. 121-02
  931. </text>
  932. <g>
  933. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  934. x1="1206.604" y1="160.775" x2="1206.604" y2="173.074" />
  935. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  936. x1="1215.064" y1="166.927" x2="1206.604" y2="166.927" />
  937. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  938. x1="1203.215" y1="163.314" x2="1203.215" y2="170.535" />
  939. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  940. x1="1199.83" y1="164.725" x2="1199.83" y2="169.125" />
  941. </g>
  942. <rect x="1258.344" y="45.606" fill="#9F1A59" width="3.047" height="43.357" />
  943. <rect x="1237.186" y="67.9" fill="#9F1A59" width="21.158" height="3.047" />
  944. <rect x="1237.186" y="119.35" fill="#9F1A59" width="21.158" height="3.047" />
  945. <rect x="1258.344" y="113.029" fill="#9F1A59" width="3.047" height="65.71" />
  946. <rect x="1237.186" y="165.781" fill="#9F1A59" width="21.158" height="3.047" />
  947. <rect x="1251.448" y="131.377" fill="#9F1A59" width="15.981" height="24.202" />
  948. <polygon fill="#9F1A59" points="1253.756,46.332 1259.873,33.313 1265.979,46.337 " />
  949. <rect x="1204.278" fill="#44426C" width="97.567" height="20.818" />
  950. <text transform="matrix(1 0 0 1 1221.6438 14.1924)" fill="#FFFFFF"
  951. font-family="'MicrosoftYaHei'" font-size="12.5667">
  952. 首风二乙线
  953. </text>
  954. <text transform="matrix(0.9268 0 0 1 3.991 206.8857)" fill="#FFFFFF"
  955. font-family="'MicrosoftYaHei'" font-size="14">
  956. 110kV Ⅰ母线
  957. </text>
  958. <text transform="matrix(0.9268 0 0 1 1785.5315 206.8857)" fill="#FFFFFF"
  959. font-family="'MicrosoftYaHei'" font-size="14">
  960. 110kV Ⅱ母线
  961. </text>
  962. <g>
  963. <rect x="1035.789" y="348.68" opacity="0.9" fill="#162320"
  964. enable-background="new " width="103.089" height="18.491" />
  965. <rect x="1035.789" y="369.177" opacity="0.9" fill="#162320"
  966. enable-background="new " width="103.089" height="18.489" />
  967. <rect x="1035.789" y="389.675" opacity="0.9" fill="#162320"
  968. enable-background="new " width="103.089" height="18.488" />
  969. <g>
  970. <text transform="matrix(1 0 0 1 1070.7278 362.6299)" fill="#97A1A2"
  971. font-family="'MicrosoftYaHei'" font-size="11.3899">
  972. 档位:
  973. </text>
  974. </g>
  975. <g>
  976. <text transform="matrix(1 0 0 1 1041.2688 381.9912)" fill="#97A1A2"
  977. font-family="'MicrosoftYaHei'" font-size="11.3899">
  978. 油面温度1:
  979. </text>
  980. </g>
  981. <g>
  982. <text transform="matrix(1 0 0 1 1041.2688 403.2764)" fill="#97A1A2"
  983. font-family="'MicrosoftYaHei'" font-size="11.3899">
  984. 油面温度2:
  985. </text>
  986. </g>
  987. <rect x="1035.789" y="267.802" opacity="0.9" fill="#162320"
  988. enable-background="new " width="103.089" height="18.489" />
  989. <rect x="1035.789" y="288.301" opacity="0.9" fill="#162320"
  990. enable-background="new " width="103.089" height="18.489" />
  991. <rect x="1035.789" y="308.797" opacity="0.9" fill="#162320"
  992. enable-background="new " width="103.089" height="18.488" />
  993. <g>
  994. <text transform="matrix(1 0 0 1 1070.9817 281.7529)" fill="#97A1A2"
  995. font-family="'MicrosoftYaHei'" font-size="11.3899">
  996. la
  997. </text>
  998. <text transform="matrix(1 0 0 1 1080.3079 281.7529)" fill="#97A1A2"
  999. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1000. (A)
  1001. </text>
  1002. <text transform="matrix(1 0 0 1 1093.5071 281.7529)" fill="#97A1A2"
  1003. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1004. :
  1005. </text>
  1006. </g>
  1007. <g>
  1008. <text transform="matrix(1 0 0 1 1065.0793 300.1123)" fill="#97A1A2"
  1009. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1010. P
  1011. </text>
  1012. <text transform="matrix(1 0 0 1 1072.0481 300.1123)" fill="#97A1A2"
  1013. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1014. (MW)
  1015. </text>
  1016. <text transform="matrix(1 0 0 1 1093.5071 300.1123)" fill="#97A1A2"
  1017. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1018. :
  1019. </text>
  1020. </g>
  1021. <g>
  1022. <text transform="matrix(1 0 0 1 1057.0559 322.3975)" fill="#97A1A2"
  1023. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1024. Q
  1025. </text>
  1026. <text transform="matrix(1 0 0 1 1066.3391 322.3975)" fill="#97A1A2"
  1027. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1028. (MVar)
  1029. </text>
  1030. <text transform="matrix(1 0 0 1 1093.5071 322.3975)" fill="#97A1A2"
  1031. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1032. :
  1033. </text>
  1034. </g>
  1035. <rect x="1035.789" y="328.749" opacity="0.9" fill="#162320"
  1036. enable-background="new " width="103.089" height="18.49" />
  1037. <g>
  1038. <text transform="matrix(1 0 0 1 1060.0325 342.6904)" fill="#97A1A2"
  1039. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1040. COSΦ:
  1041. </text>
  1042. </g>
  1043. <rect x="1035.789" y="408.813" opacity="0.9" fill="#162320"
  1044. enable-background="new " width="103.089" height="18.491" />
  1045. <rect x="1035.789" y="429.311" opacity="0.9" fill="#162320"
  1046. enable-background="new " width="103.089" height="18.49" />
  1047. <rect x="1035.789" y="449.807" opacity="0.9" fill="#162320"
  1048. enable-background="new " width="103.089" height="18.49" />
  1049. <g>
  1050. <text transform="matrix(1 0 0 1 1070.9817 422.7646)" fill="#97A1A2"
  1051. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1052. la
  1053. </text>
  1054. <text transform="matrix(1 0 0 1 1080.3079 422.7646)" fill="#97A1A2"
  1055. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1056. (A)
  1057. </text>
  1058. <text transform="matrix(1 0 0 1 1093.5071 422.7646)" fill="#97A1A2"
  1059. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1060. :
  1061. </text>
  1062. </g>
  1063. <g>
  1064. <text transform="matrix(1 0 0 1 1065.0793 441.124)" fill="#97A1A2"
  1065. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1066. P
  1067. </text>
  1068. <text transform="matrix(1 0 0 1 1072.0481 441.124)" fill="#97A1A2"
  1069. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1070. (MW)
  1071. </text>
  1072. <text transform="matrix(1 0 0 1 1093.5071 441.124)" fill="#97A1A2"
  1073. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1074. :
  1075. </text>
  1076. </g>
  1077. <g>
  1078. <text transform="matrix(1 0 0 1 1057.0559 463.4092)" fill="#97A1A2"
  1079. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1080. Q
  1081. </text>
  1082. <text transform="matrix(1 0 0 1 1066.3391 463.4092)" fill="#97A1A2"
  1083. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1084. (MVar)
  1085. </text>
  1086. <text transform="matrix(1 0 0 1 1093.5071 463.4092)" fill="#97A1A2"
  1087. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1088. :
  1089. </text>
  1090. </g>
  1091. <rect x="1035.789" y="469.761" opacity="0.9" fill="#162320"
  1092. enable-background="new " width="103.089" height="18.489" />
  1093. <g>
  1094. <text transform="matrix(1 0 0 1 1060.0325 483.7021)" fill="#97A1A2"
  1095. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1096. COSΦ:
  1097. </text>
  1098. </g>
  1099. </g>
  1100. <g>
  1101. <rect x="1578.688" y="348.68" opacity="0.9" fill="#162320"
  1102. enable-background="new " width="103.088" height="18.491" />
  1103. <rect x="1578.688" y="369.177" opacity="0.9" fill="#162320"
  1104. enable-background="new " width="103.088" height="18.489" />
  1105. <rect x="1578.688" y="389.675" opacity="0.9" fill="#162320"
  1106. enable-background="new " width="103.088" height="18.488" />
  1107. <g>
  1108. <text transform="matrix(1 0 0 1 1613.6262 362.6299)" fill="#97A1A2"
  1109. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1110. 档位:
  1111. </text>
  1112. </g>
  1113. <g>
  1114. <text transform="matrix(1 0 0 1 1584.1672 381.9912)" fill="#97A1A2"
  1115. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1116. 油面温度1:
  1117. </text>
  1118. </g>
  1119. <g>
  1120. <text transform="matrix(1 0 0 1 1584.1672 403.2764)" fill="#97A1A2"
  1121. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1122. 油面温度2:
  1123. </text>
  1124. </g>
  1125. <rect x="1578.688" y="408.813" opacity="0.9" fill="#162320"
  1126. enable-background="new " width="103.088" height="18.491" />
  1127. <rect x="1578.688" y="429.311" opacity="0.9" fill="#162320"
  1128. enable-background="new " width="103.088" height="18.49" />
  1129. <rect x="1578.688" y="449.807" opacity="0.9" fill="#162320"
  1130. enable-background="new " width="103.088" height="18.49" />
  1131. <g>
  1132. <text transform="matrix(1 0 0 1 1613.8801 422.7646)" fill="#97A1A2"
  1133. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1134. la
  1135. </text>
  1136. <text transform="matrix(1 0 0 1 1623.2063 422.7646)" fill="#97A1A2"
  1137. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1138. (A)
  1139. </text>
  1140. <text transform="matrix(1 0 0 1 1636.4055 422.7646)" fill="#97A1A2"
  1141. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1142. :
  1143. </text>
  1144. </g>
  1145. <g>
  1146. <text transform="matrix(1 0 0 1 1607.9778 441.124)" fill="#97A1A2"
  1147. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1148. P
  1149. </text>
  1150. <text transform="matrix(1 0 0 1 1614.9465 441.124)" fill="#97A1A2"
  1151. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1152. (MW)
  1153. </text>
  1154. <text transform="matrix(1 0 0 1 1636.4055 441.124)" fill="#97A1A2"
  1155. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1156. :
  1157. </text>
  1158. </g>
  1159. <g>
  1160. <text transform="matrix(1 0 0 1 1599.9543 463.4092)" fill="#97A1A2"
  1161. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1162. Q
  1163. </text>
  1164. <text transform="matrix(1 0 0 1 1609.2375 463.4092)" fill="#97A1A2"
  1165. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1166. (MVar)
  1167. </text>
  1168. <text transform="matrix(1 0 0 1 1636.4055 463.4092)" fill="#97A1A2"
  1169. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1170. :
  1171. </text>
  1172. </g>
  1173. <rect x="1578.688" y="469.761" opacity="0.9" fill="#162320"
  1174. enable-background="new " width="103.088" height="18.489" />
  1175. <g>
  1176. <text transform="matrix(1 0 0 1 1602.9309 483.7021)" fill="#97A1A2"
  1177. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1178. COSΦ:
  1179. </text>
  1180. </g>
  1181. </g>
  1182. <rect x="107.059" y="216.582" fill="#9F1A59" width="3.047" height="21.63" />
  1183. <rect x="421.668" y="216.584" fill="#9F1A59" width="3.047" height="65.836" />
  1184. <rect x="339.832" y="297.287" fill="#9F1A59" width="69.889" height="3.048" />
  1185. <rect x="339.832" y="297.287" fill="#9F1A59" width="3.048" height="17.437" />
  1186. <rect x="110.105" y="228.885" fill="#9F1A59" width="15.612" height="3.047" />
  1187. <text transform="matrix(1 0 0 1 147.7556 252.0361)" fill="#FFFFFF"
  1188. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1189. 11-0
  1190. </text>
  1191. <text transform="matrix(1 0 0 1 285.2556 329.7568)" fill="#FFFFFF"
  1192. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1193. 011-0
  1194. </text>
  1195. <text transform="matrix(1 0 0 1 372.99 382.749)" fill="#FFFFFF"
  1196. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1197. 301-3
  1198. </text>
  1199. <text transform="matrix(1 0 0 1 385.2092 432.9873)" fill="#FFFFFF"
  1200. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1201. 301
  1202. </text>
  1203. <text transform="matrix(1 0 0 1 372.99 482.0693)" fill="#FFFFFF"
  1204. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1205. 301-1
  1206. </text>
  1207. <text transform="matrix(1 0 0 1 147.7556 296.0225)" fill="#FFFFFF"
  1208. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1209. 11-09
  1210. </text>
  1211. <text transform="matrix(1 0 0 1 65.2556 259.917)" fill="#FFFFFF"
  1212. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1213. 11-9
  1214. </text>
  1215. <g>
  1216. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1217. x1="336.351" y1="346.46" x2="348.65" y2="346.46" />
  1218. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1219. x1="342.501" y1="337.995" x2="342.501" y2="346.46" />
  1220. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1221. x1="338.89" y1="349.844" x2="346.111" y2="349.844" />
  1222. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1223. x1="340.3" y1="353.229" x2="344.7" y2="353.229" />
  1224. </g>
  1225. <g>
  1226. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1227. x1="155.396" y1="234.945" x2="155.396" y2="222.646" />
  1228. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1229. x1="146.933" y1="228.795" x2="155.396" y2="228.795" />
  1230. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1231. x1="158.782" y1="232.406" x2="158.782" y2="225.186" />
  1232. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1233. x1="162.167" y1="230.996" x2="162.167" y2="226.596" />
  1234. </g>
  1235. <rect x="84.829" y="271.109" fill="#9F1A59" width="40.885" height="3.047" />
  1236. <g>
  1237. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1238. x1="155.396" y1="277.173" x2="155.396" y2="264.874" />
  1239. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1240. x1="146.933" y1="271.022" x2="155.396" y2="271.022" />
  1241. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1242. x1="158.782" y1="274.635" x2="158.782" y2="267.413" />
  1243. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1244. x1="162.167" y1="273.224" x2="162.167" y2="268.823" />
  1245. </g>
  1246. <g>
  1247. <g>
  1248. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1249. x1="13.491" y1="267.007" x2="13.491" y2="279.306" />
  1250. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1251. x1="10.105" y1="269.546" x2="10.105" y2="276.767" />
  1252. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1253. x1="6.72" y1="270.956" x2="6.72" y2="275.356" />
  1254. </g>
  1255. </g>
  1256. <rect x="58.714" y="347.835" fill="#44426C" width="138.325" height="20.817" />
  1257. <text transform="matrix(1 0 0 1 76.7107 362.0264)" fill="#FFFFFF"
  1258. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1259. 110KV Ⅰ 母线 PT
  1260. </text>
  1261. <text transform="matrix(0.9268 0 0 1 6.72 513.4941)" fill="#FFFFFF"
  1262. font-family="'MicrosoftYaHei'" font-size="14">
  1263. 35kV Ⅰ母线
  1264. </text>
  1265. <text transform="matrix(0.9268 0 0 1 1292.3323 510.9951)" fill="#FFFFFF"
  1266. font-family="'MicrosoftYaHei'" font-size="14">
  1267. 35kV Ⅱ母线
  1268. </text>
  1269. <text transform="matrix(0.9268 0 0 1 649.0002 510.9951)" fill="#FFFFFF"
  1270. font-family="'MicrosoftYaHei'" font-size="14">
  1271. 35kV Ⅱ母线
  1272. </text>
  1273. <rect x="107.28" y="262.534" fill="#9F1A59" width="2.604" height="31.938" />
  1274. <rect x="83.526" y="262.534" fill="#CAA51A" width="2.605" height="19.884" />
  1275. <rect x="42.642" y="262.534" fill="#CAA51A" width="2.605" height="19.884" />
  1276. <rect x="45.864" y="271.109" fill="#9F1A59" width="30.279" height="3.047" />
  1277. <rect x="25.387" y="274.68" fill="#9F1A59" width="1.984" height="30.279" />
  1278. <rect x="58.22" y="274.68" fill="#9F1A59" width="1.984" height="20.857" />
  1279. <rect x="24.639" y="302.603" fill="#9F1A59" width="25.194" height="1.983" />
  1280. <rect x="21.956" y="271.635" fill="#9F1A59" width="13.536" height="3.047" />
  1281. <rect x="13.492" y="271.635" fill="#40B9B0" width="8.463" height="3.047" />
  1282. <rect x="34.642" y="262.534" fill="#CAA51A" width="2.605" height="19.884" />
  1283. <rect x="107.28" y="316.341" fill="#3EB9B0" width="2.604" height="4.477" />
  1284. <g>
  1285. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1286. x1="102.323" y1="321.807" x2="114.84" y2="321.807" />
  1287. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1288. x1="104.495" y1="325.126" x2="112.67" y2="325.126" />
  1289. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1290. x1="106.28" y1="328.632" x2="110.883" y2="328.632" />
  1291. </g>
  1292. <polygon fill="#9F1A59" points="111.827,294.364 108.579,303.595 105.336,294.362 " />
  1293. <rect x="103.467" y="284.641" fill="none" stroke="#A9165D" stroke-width="2.3"
  1294. stroke-miterlimit="10" width="10.229" height="32.139" />
  1295. <rect x="365.872" y="297.079" fill="#9F1A59" width="2.605" height="18.637" />
  1296. <rect x="365.872" y="337.581" fill="#3EB9B0" width="2.605" height="4.479" />
  1297. <g>
  1298. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1299. x1="360.915" y1="343.051" x2="373.434" y2="343.051" />
  1300. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1301. x1="363.088" y1="346.368" x2="371.264" y2="346.368" />
  1302. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1303. x1="364.872" y1="349.872" x2="369.477" y2="349.872" />
  1304. </g>
  1305. <rect x="389.911" y="338.021" fill="#3EB9B0" width="2.605" height="4.478" />
  1306. <g>
  1307. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1308. x1="384.955" y1="343.489" x2="397.473" y2="343.489" />
  1309. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1310. x1="387.127" y1="346.809" x2="395.303" y2="346.809" />
  1311. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1312. x1="388.912" y1="350.313" x2="393.516" y2="350.313" />
  1313. </g>
  1314. <polygon fill="#9F1A59" points="370.42,315.606 367.172,324.839 363.93,315.604 " />
  1315. <polygon fill="#9F1A59" points="383.593,337.98 391.222,324.835 398.836,337.983 " />
  1316. <rect x="389.911" y="300.532" fill="#9F1A59" width="2.605" height="4.479" />
  1317. <polygon fill="#9F1A59" points="398.836,305.052 391.206,318.195 383.593,305.049 " />
  1318. <rect x="362.061" y="305.885" fill="none" stroke="#A9165D" stroke-width="2.3"
  1319. stroke-miterlimit="10" width="10.229" height="32.139" />
  1320. <rect x="75.526" y="262.534" fill="#CAA51A" width="2.605" height="19.884" />
  1321. <g>
  1322. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1323. cx="66.944" cy="317.162" r="8.804" />
  1324. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1325. cx="51.667" cy="317.162" r="8.804" />
  1326. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1327. points="63.794,313.135 66.96,316.266 69.911,313.135 " />
  1328. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1329. x1="67.026" y1="316.349" x2="67.026" y2="321.87" />
  1330. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1331. points="48.515,312.794 51.681,315.927 54.632,312.794 " />
  1332. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1333. x1="51.748" y1="316.01" x2="51.748" y2="321.53" />
  1334. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1335. cx="58.863" cy="304.342" r="8.803" />
  1336. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1337. points="55.711,299.973 58.877,303.105 61.828,299.973 " />
  1338. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1339. x1="58.943" y1="303.188" x2="58.943" y2="308.71" />
  1340. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1341. cx="58.862" cy="330.085" r="8.803" />
  1342. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1343. points="61.551,334.275 61.551,327.758 56.174,331.193 " />
  1344. </g>
  1345. <rect x="1782.114" y="216.582" fill="#9F1A59" width="3.047" height="21.63" />
  1346. <rect x="1785.16" y="228.885" fill="#9F1A59" width="15.61" height="3.047" />
  1347. <text transform="matrix(1 0 0 1 1822.8098 252.0361)" fill="#FFFFFF"
  1348. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1349. 12-0
  1350. </text>
  1351. <text transform="matrix(1 0 0 1 1822.8098 296.0225)" fill="#FFFFFF"
  1352. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1353. 12-09
  1354. </text>
  1355. <text transform="matrix(1 0 0 1 1740.3098 259.917)" fill="#FFFFFF"
  1356. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1357. 12-9
  1358. </text>
  1359. <g>
  1360. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1361. x1="1830.451" y1="234.945" x2="1830.451" y2="222.646" />
  1362. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1363. x1="1821.989" y1="228.795" x2="1830.451" y2="228.795" />
  1364. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1365. x1="1833.836" y1="232.406" x2="1833.836" y2="225.186" />
  1366. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1367. x1="1837.223" y1="230.996" x2="1837.223" y2="226.596" />
  1368. </g>
  1369. <rect x="1759.883" y="271.109" fill="#9F1A59" width="40.887" height="3.047" />
  1370. <g>
  1371. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1372. x1="1830.451" y1="277.173" x2="1830.451" y2="264.874" />
  1373. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1374. x1="1821.989" y1="271.022" x2="1830.451" y2="271.022" />
  1375. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1376. x1="1833.836" y1="274.635" x2="1833.836" y2="267.413" />
  1377. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1378. x1="1837.223" y1="273.224" x2="1837.223" y2="268.823" />
  1379. </g>
  1380. <g>
  1381. <g>
  1382. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1383. x1="1688.545" y1="267.007" x2="1688.545" y2="279.306" />
  1384. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1385. x1="1685.16" y1="269.546" x2="1685.16" y2="276.767" />
  1386. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1387. x1="1681.775" y1="270.956" x2="1681.775" y2="275.356" />
  1388. </g>
  1389. </g>
  1390. <rect x="1733.77" y="347.835" fill="#44426C" width="138.324" height="20.817" />
  1391. <text transform="matrix(1 0 0 1 1751.7649 362.0264)" fill="#FFFFFF"
  1392. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1393. 110KV Ⅱ 母线 PT
  1394. </text>
  1395. <rect x="1782.334" y="262.534" fill="#9F1A59" width="2.604" height="31.938" />
  1396. <rect x="1758.58" y="262.534" fill="#CAA51A" width="2.604" height="19.884" />
  1397. <rect x="1717.696" y="262.534" fill="#CAA51A" width="2.604" height="19.884" />
  1398. <rect x="1720.918" y="271.109" fill="#9F1A59" width="30.278" height="3.047" />
  1399. <rect x="1700.441" y="274.68" fill="#9F1A59" width="1.982" height="30.279" />
  1400. <rect x="1733.273" y="274.68" fill="#9F1A59" width="1.984" height="20.857" />
  1401. <rect x="1699.693" y="302.603" fill="#9F1A59" width="25.193" height="1.983" />
  1402. <rect x="1697.01" y="271.635" fill="#9F1A59" width="13.537" height="3.047" />
  1403. <rect x="1688.547" y="271.635" fill="#40B9B0" width="8.463" height="3.047" />
  1404. <rect x="1709.696" y="262.534" fill="#CAA51A" width="2.604" height="19.884" />
  1405. <rect x="1782.334" y="316.341" fill="#3EB9B0" width="2.604" height="4.477" />
  1406. <g>
  1407. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1408. x1="1777.377" y1="321.807" x2="1789.896" y2="321.807" />
  1409. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1410. x1="1779.549" y1="325.126" x2="1787.727" y2="325.126" />
  1411. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1412. x1="1781.334" y1="328.632" x2="1785.938" y2="328.632" />
  1413. </g>
  1414. <polygon fill="#9F1A59" points="1786.881,294.364 1783.633,303.595 1780.393,294.362 " />
  1415. <rect x="1778.521" y="284.641" fill="none" stroke="#A9165D" stroke-width="2.3"
  1416. stroke-miterlimit="10" width="10.229" height="32.139" />
  1417. <rect x="1750.58" y="262.534" fill="#CAA51A" width="2.604" height="19.884" />
  1418. <g>
  1419. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1420. cx="1741.998" cy="317.162" r="8.804" />
  1421. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1422. cx="1726.723" cy="317.162" r="8.804" />
  1423. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1424. points="1738.85,313.135 1742.016,316.266 1744.965,313.135 " />
  1425. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1426. x1="1742.08" y1="316.349" x2="1742.08" y2="321.87" />
  1427. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1428. points="1723.571,312.794 1726.737,315.927 1729.688,312.794 " />
  1429. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1430. x1="1726.803" y1="316.01" x2="1726.803" y2="321.53" />
  1431. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1432. cx="1733.918" cy="304.342" r="8.803" />
  1433. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1434. points="1730.768,299.973 1733.934,303.105 1736.883,299.973 " />
  1435. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1436. x1="1733.998" y1="303.188" x2="1733.998" y2="308.71" />
  1437. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1438. cx="1733.916" cy="330.085" r="8.803" />
  1439. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1440. points="1736.605,334.275 1736.605,327.758 1731.229,331.193 " />
  1441. </g>
  1442. <g>
  1443. <rect x="253.347" y="290.499" fill="#44426C" width="72.313" height="20.818" />
  1444. <text transform="matrix(1 0 0 1 269.2424 305.0518)" fill="#FFFFFF"
  1445. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1446. #1主变
  1447. </text>
  1448. </g>
  1449. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="422.33"
  1450. cy="296.086" r="12.61" />
  1451. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="422.33"
  1452. cy="315.439" r="12.61" />
  1453. <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1454. points="427.573,302.829 421.982,298.932 417.322,302.194 " />
  1455. <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="422.448"
  1456. y1="298.811" x2="422.448" y2="290.901" />
  1457. <polygon fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1458. points="421.222,309.364 421.222,320.079 430.883,313.675 " />
  1459. <rect x="427.746" y="274.654"
  1460. transform="matrix(-0.3454 -0.9385 0.9385 -0.3454 290.7139 811.8297)" fill="#CB151D"
  1461. width="1.504" height="59.739" />
  1462. <polygon fill="#CB151D" points="453.896,288.797 468.365,289.242 458.775,300.089 " />
  1463. <rect x="422.391" y="392.729" fill="#CAA51A" width="2.25" height="79.358" />
  1464. <rect x="422.391" y="328.049" fill="#CAA51A" width="2.25" height="40.262" />
  1465. <rect x="975.213" y="328.049" fill="#CAA51A" width="2.25" height="40.262" />
  1466. <rect x="1555.83" y="328.049" fill="#CAA51A" width="2.25" height="40.262" />
  1467. <rect x="422.391" y="493.302" fill="#CAA51A" width="2.25" height="26.03" />
  1468. <rect x="414.965" y="416.03" fill="#9F1A59" width="15.981" height="24.203" />
  1469. <rect x="976.785" y="216.584" fill="#9F1A59" width="3.047" height="65.836" />
  1470. <rect x="894.949" y="297.287" fill="#9F1A59" width="69.889" height="3.048" />
  1471. <rect x="894.949" y="297.287" fill="#9F1A59" width="3.047" height="17.437" />
  1472. <text transform="matrix(1 0 0 1 840.3728 329.7568)" fill="#FFFFFF"
  1473. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1474. 012-0
  1475. </text>
  1476. <text transform="matrix(1 0 0 1 928.1072 382.749)" fill="#FFFFFF"
  1477. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1478. 302-3
  1479. </text>
  1480. <text transform="matrix(1 0 0 1 940.3269 432.9873)" fill="#FFFFFF"
  1481. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1482. 302
  1483. </text>
  1484. <text transform="matrix(1 0 0 1 928.1072 482.0693)" fill="#FFFFFF"
  1485. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1486. 302-2
  1487. </text>
  1488. <g>
  1489. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1490. x1="891.468" y1="346.46" x2="903.768" y2="346.46" />
  1491. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1492. x1="897.617" y1="337.995" x2="897.617" y2="346.46" />
  1493. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1494. x1="894.007" y1="349.844" x2="901.229" y2="349.844" />
  1495. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1496. x1="895.416" y1="353.229" x2="899.817" y2="353.229" />
  1497. </g>
  1498. <rect x="920.99" y="297.079" fill="#9F1A59" width="2.604" height="18.637" />
  1499. <rect x="920.99" y="337.581" fill="#3EB9B0" width="2.604" height="4.479" />
  1500. <g>
  1501. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1502. x1="916.032" y1="343.051" x2="928.551" y2="343.051" />
  1503. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1504. x1="918.204" y1="346.368" x2="926.381" y2="346.368" />
  1505. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1506. x1="919.99" y1="349.872" x2="924.594" y2="349.872" />
  1507. </g>
  1508. <rect x="945.028" y="338.021" fill="#3EB9B0" width="2.604" height="4.478" />
  1509. <g>
  1510. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1511. x1="940.073" y1="343.489" x2="952.59" y2="343.489" />
  1512. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1513. x1="942.244" y1="346.809" x2="950.42" y2="346.809" />
  1514. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1515. x1="944.03" y1="350.313" x2="948.633" y2="350.313" />
  1516. </g>
  1517. <polygon fill="#9F1A59" points="925.536,315.606 922.288,324.839 919.047,315.604 " />
  1518. <polygon fill="#9F1A59" points="938.71,337.98 946.338,324.835 953.953,337.983 " />
  1519. <rect x="945.028" y="300.532" fill="#9F1A59" width="2.604" height="4.479" />
  1520. <polygon fill="#9F1A59" points="953.953,305.052 946.324,318.195 938.71,305.049 " />
  1521. <rect x="917.178" y="305.885" fill="none" stroke="#A9165D" stroke-width="2.3"
  1522. stroke-miterlimit="10" width="10.229" height="32.139" />
  1523. <g>
  1524. <rect x="808.464" y="290.499" fill="#44426C" width="72.313" height="20.818" />
  1525. <text transform="matrix(1 0 0 1 824.3596 305.0518)" fill="#FFFFFF"
  1526. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1527. #2主变
  1528. </text>
  1529. </g>
  1530. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1531. cx="977.448" cy="296.086" r="12.609" />
  1532. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1533. cx="977.448" cy="315.439" r="12.609" />
  1534. <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1535. points="982.689,302.829 977.098,298.932 972.439,302.194 " />
  1536. <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="977.564"
  1537. y1="298.811" x2="977.564" y2="290.901" />
  1538. <polygon fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1539. points="976.338,309.364 976.338,320.079 986,313.675 " />
  1540. <rect x="982.872" y="274.671"
  1541. transform="matrix(-0.345 -0.9386 0.9386 -0.345 1037.0966 1332.8448)" fill="#CB151D"
  1542. width="1.506" height="59.743" />
  1543. <polygon fill="#CB151D" points="1009.012,288.797 1023.48,289.242 1013.893,300.089 " />
  1544. <rect x="977.508" y="392.729" fill="#CAA51A" width="2.25" height="79.358" />
  1545. <rect x="977.508" y="493.302" fill="#CAA51A" width="2.25" height="26.03" />
  1546. <rect x="970.082" y="416.03" fill="#9F1A59" width="15.981" height="24.203" />
  1547. <rect x="1557.402" y="216.584" fill="#9F1A59" width="3.048" height="65.836" />
  1548. <rect x="1475.566" y="297.287" fill="#9F1A59" width="69.89" height="3.048" />
  1549. <rect x="1475.566" y="297.287" fill="#9F1A59" width="3.048" height="17.437" />
  1550. <text transform="matrix(1 0 0 1 1420.9875 329.7568)" fill="#FFFFFF"
  1551. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1552. 013-0
  1553. </text>
  1554. <text transform="matrix(1 0 0 1 1508.7219 382.749)" fill="#FFFFFF"
  1555. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1556. 303-3
  1557. </text>
  1558. <text transform="matrix(1 0 0 1 1520.9407 432.9873)" fill="#FFFFFF"
  1559. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1560. 303
  1561. </text>
  1562. <text transform="matrix(1 0 0 1 1508.7219 482.0693)" fill="#FFFFFF"
  1563. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1564. 303-5
  1565. </text>
  1566. <g>
  1567. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1568. x1="1472.084" y1="346.46" x2="1484.383" y2="346.46" />
  1569. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1570. x1="1478.234" y1="337.995" x2="1478.234" y2="346.46" />
  1571. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1572. x1="1474.623" y1="349.844" x2="1481.844" y2="349.844" />
  1573. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1574. x1="1476.033" y1="353.229" x2="1480.434" y2="353.229" />
  1575. </g>
  1576. <rect x="1501.605" y="297.079" fill="#9F1A59" width="2.604" height="18.637" />
  1577. <rect x="1501.605" y="337.581" fill="#3EB9B0" width="2.604" height="4.479" />
  1578. <g>
  1579. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1580. x1="1496.648" y1="343.051" x2="1509.166" y2="343.051" />
  1581. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1582. x1="1498.821" y1="346.368" x2="1506.996" y2="346.368" />
  1583. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1584. x1="1500.605" y1="349.872" x2="1505.209" y2="349.872" />
  1585. </g>
  1586. <rect x="1525.645" y="338.021" fill="#3EB9B0" width="2.605" height="4.478" />
  1587. <g>
  1588. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1589. x1="1520.689" y1="343.489" x2="1533.207" y2="343.489" />
  1590. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1591. x1="1522.862" y1="346.809" x2="1531.037" y2="346.809" />
  1592. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1593. x1="1524.646" y1="350.313" x2="1529.25" y2="350.313" />
  1594. </g>
  1595. <polygon fill="#9F1A59" points="1506.152,315.606 1502.905,324.839 1499.662,315.604 " />
  1596. <polygon fill="#9F1A59" points="1519.326,337.98 1526.955,324.835 1534.568,337.983 " />
  1597. <rect x="1525.645" y="300.532" fill="#9F1A59" width="2.605" height="4.479" />
  1598. <polygon fill="#9F1A59" points="1534.568,305.052 1526.939,318.195 1519.326,305.049 " />
  1599. <rect x="1497.793" y="305.885" fill="none" stroke="#A9165D" stroke-width="2.3"
  1600. stroke-miterlimit="10" width="10.229" height="32.139" />
  1601. <g>
  1602. <rect x="1389.08" y="290.499" fill="#44426C" width="72.313" height="20.818" />
  1603. <text transform="matrix(1 0 0 1 1404.9739 305.0518)" fill="#FFFFFF"
  1604. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1605. #3主变
  1606. </text>
  1607. </g>
  1608. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1609. cx="1558.064" cy="296.086" r="12.609" />
  1610. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1611. cx="1558.064" cy="315.439" r="12.609" />
  1612. <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1613. points="1563.307,302.829 1557.715,298.932 1553.057,302.194 " />
  1614. <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="1558.182"
  1615. y1="298.811" x2="1558.182" y2="290.901" />
  1616. <polygon fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  1617. points="1556.955,309.364 1556.955,320.079 1566.617,313.675 " />
  1618. <rect x="1563.498" y="274.673"
  1619. transform="matrix(-0.3453 -0.9385 0.9385 -0.3453 1818.5465 1877.7466)"
  1620. fill="#CB151D" width="1.505" height="59.744" />
  1621. <polygon fill="#CB151D" points="1589.629,288.797 1604.098,289.242 1594.508,300.089 " />
  1622. <rect x="1558.125" y="392.729" fill="#CAA51A" width="2.25" height="79.358" />
  1623. <rect x="1558.123" y="493.302" fill="#CAA51A" width="2.25" height="26.03" />
  1624. <rect x="1550.698" y="416.03" fill="#9F1A59" width="15.981" height="24.203" />
  1625. <text transform="matrix(1 0 0 1 2.948 665.5088)" fill="#FFFFFF"
  1626. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1627. 31-9
  1628. </text>
  1629. <text transform="matrix(1 0 0 1 90.802 612.1943)" fill="#FFFFFF"
  1630. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1631. 312
  1632. </text>
  1633. <text transform="matrix(1 0 0 1 54.8938 641.6475)" fill="#FFFFFF"
  1634. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1635. -0
  1636. </text>
  1637. <text transform="matrix(1 0 0 1 135.5364 550.1611)" fill="#FFFFFF"
  1638. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1639. -1
  1640. </text>
  1641. <g>
  1642. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1643. x1="56.822" y1="616.427" x2="69.121" y2="616.427" />
  1644. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1645. x1="62.973" y1="607.964" x2="62.973" y2="616.427" />
  1646. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1647. x1="59.361" y1="619.811" x2="66.582" y2="619.811" />
  1648. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1649. x1="60.771" y1="623.196" x2="65.172" y2="623.196" />
  1650. </g>
  1651. <text transform="matrix(1 0 0 1 135.5364 663.8584)" fill="#FFFFFF"
  1652. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1653. -3
  1654. </text>
  1655. <g>
  1656. <rect x="8.706" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  1657. <text transform="matrix(1 0 0 1 14.8298 816.4912)" fill="#FFFFFF"
  1658. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1659. 35KV Ⅰ母
  1660. </text>
  1661. </g>
  1662. <g>
  1663. <rect x="90.182" y="801.938" fill="#44426C" width="72.314" height="20.817" />
  1664. <text transform="matrix(1 0 0 1 94.9221 816.4912)" fill="#FFFFFF"
  1665. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1666. 集电线路一
  1667. </text>
  1668. </g>
  1669. <rect x="40.738" y="521.988" fill="#CAA51A" width="2.25" height="123.418" />
  1670. <rect x="123.332" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  1671. <rect x="123.339" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  1672. <rect x="61.846" y="564.406" fill="#CAA51A" width="2.25" height="20.5" />
  1673. <rect x="42.946" y="564.406" fill="#CAA51A" width="20.5" height="2.25" />
  1674. <text transform="matrix(1 0 0 1 138.4875 761.8877)" fill="#FFFFFF"
  1675. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1676. -0
  1677. </text>
  1678. <rect x="124.332" y="668.229" fill="#CAA51A" width="2.25" height="123.418" />
  1679. <rect x="145.439" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  1680. <rect x="126.54" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  1681. <rect x="40.737" y="670.113" fill="#CAA51A" width="2.25" height="22.741" />
  1682. <rect x="5.418" y="691.729" fill="#CAA51A" width="75.415" height="2.25" />
  1683. <rect x="3.991" y="519.333" fill="#CAA51A" width="584.841" height="2.655" />
  1684. <rect x="115.348" y="589.096" fill="#9F1A59" width="15.982" height="24.202" />
  1685. <rect x="5.418" y="692.854" fill="#CAA51A" width="2.604" height="19.663" />
  1686. <rect x="5.418" y="726.571" fill="#3EB9B0" width="2.604" height="6.479" />
  1687. <g>
  1688. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1689. x1="0.461" y1="733.039" x2="12.979" y2="733.039" />
  1690. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1691. x1="2.633" y1="736.358" x2="10.809" y2="736.358" />
  1692. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1693. x1="4.418" y1="739.862" x2="9.022" y2="739.862" />
  1694. </g>
  1695. <polygon fill="#CAA51A" points="9.965,712.411 6.717,721.642 3.475,712.409 " />
  1696. <polygon fill="#CAA51A" points="131.271,785.663 124.959,797.635 118.659,785.66 " />
  1697. <rect x="1.606" y="702.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  1698. stroke-miterlimit="10" width="10.229" height="24.323" />
  1699. <rect x="41.069" y="692.854" fill="#CAA51A" width="2.605" height="33.717" />
  1700. <rect x="78.228" y="692.854" fill="#CAA51A" width="2.605" height="18.219" />
  1701. <rect x="41.069" y="726.571" fill="#3EB9B0" width="2.605" height="6.479" />
  1702. <g>
  1703. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1704. x1="36.112" y1="733.039" x2="48.63" y2="733.039" />
  1705. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1706. x1="38.284" y1="736.358" x2="46.46" y2="736.358" />
  1707. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1708. x1="40.069" y1="739.862" x2="44.673" y2="739.862" />
  1709. </g>
  1710. <rect x="37.257" y="702.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  1711. stroke-miterlimit="10" width="10.229" height="24.323" />
  1712. <rect x="557.656" y="694.379" fill="#CAA51A" width="2.604" height="73.527" />
  1713. <rect x="557.656" y="766.261" fill="#3EB9B0" width="2.604" height="6.478" />
  1714. <g>
  1715. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1716. x1="552.698" y1="772.729" x2="565.217" y2="772.729" />
  1717. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1718. x1="554.87" y1="776.05" x2="563.047" y2="776.05" />
  1719. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  1720. x1="556.656" y1="779.552" x2="561.26" y2="779.552" />
  1721. </g>
  1722. <rect x="553.844" y="731.635" fill="none" stroke="#CAA51A" stroke-width="2.3"
  1723. stroke-miterlimit="10" width="10.229" height="24.324" />
  1724. <rect x="345.477" y="772.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  1725. stroke-miterlimit="10" width="52.404" height="24.323" />
  1726. <g>
  1727. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1728. cx="78.279" cy="734.65" r="8.804" />
  1729. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1730. cx="78.278" cy="719.373" r="8.804" />
  1731. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1732. points="81.43,738.679 78.263,735.549 75.312,738.679 " />
  1733. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1734. x1="78.197" y1="735.466" x2="78.197" y2="729.942" />
  1735. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1736. points="81.43,723.741 78.263,720.609 75.312,723.741 " />
  1737. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1738. x1="78.197" y1="720.526" x2="78.197" y2="715.007" />
  1739. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1740. cx="91.099" cy="726.569" r="8.803" />
  1741. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1742. points="94.25,730.938 91.083,727.806 88.132,730.938 " />
  1743. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1744. x1="91.018" y1="727.723" x2="91.018" y2="722.201" />
  1745. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1746. cx="65.356" cy="726.569" r="8.803" />
  1747. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1748. points="67.113,729.829 67.113,723.31 61.737,726.747 " />
  1749. </g>
  1750. <g>
  1751. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1752. cx="535.896" cy="713.853" r="8.804" />
  1753. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1754. cx="535.896" cy="698.575" r="8.804" />
  1755. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1756. points="539.048,717.883 535.881,714.749 532.93,717.883 " />
  1757. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1758. x1="535.814" y1="714.667" x2="535.814" y2="709.146" />
  1759. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1760. points="539.048,702.943 535.881,699.812 532.93,702.943 " />
  1761. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1762. x1="535.814" y1="699.729" x2="535.814" y2="694.207" />
  1763. </g>
  1764. <g>
  1765. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1766. x1="140.434" y1="738.302" x2="152.732" y2="738.302" />
  1767. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1768. x1="146.584" y1="729.84" x2="146.584" y2="738.302" />
  1769. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1770. x1="142.973" y1="741.687" x2="150.193" y2="741.687" />
  1771. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1772. x1="144.383" y1="745.072" x2="148.783" y2="745.072" />
  1773. </g>
  1774. <text transform="matrix(1 0 0 1 173.302 612.1943)" fill="#FFFFFF"
  1775. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1776. 313
  1777. </text>
  1778. <text transform="matrix(1 0 0 1 218.0364 550.1611)" fill="#FFFFFF"
  1779. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1780. -1
  1781. </text>
  1782. <text transform="matrix(1 0 0 1 218.0364 663.8584)" fill="#FFFFFF"
  1783. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1784. -3
  1785. </text>
  1786. <g>
  1787. <rect x="172.682" y="801.938" fill="#44426C" width="72.314" height="20.817" />
  1788. <text transform="matrix(1 0 0 1 177.4221 816.4912)" fill="#FFFFFF"
  1789. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1790. 集电线路二
  1791. </text>
  1792. </g>
  1793. <rect x="205.832" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  1794. <rect x="205.839" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  1795. <text transform="matrix(1 0 0 1 220.9875 761.8877)" fill="#FFFFFF"
  1796. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1797. -0
  1798. </text>
  1799. <rect x="206.832" y="668.229" fill="#CAA51A" width="2.25" height="123.418" />
  1800. <rect x="227.939" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  1801. <rect x="209.04" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  1802. <rect x="197.848" y="589.096" fill="#9F1A59" width="15.982" height="24.202" />
  1803. <polygon fill="#CAA51A" points="213.771,785.663 207.459,797.635 201.159,785.66 " />
  1804. <g>
  1805. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1806. x1="222.934" y1="738.302" x2="235.232" y2="738.302" />
  1807. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1808. x1="229.084" y1="729.84" x2="229.084" y2="738.302" />
  1809. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1810. x1="225.473" y1="741.687" x2="232.693" y2="741.687" />
  1811. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1812. x1="226.883" y1="745.072" x2="231.283" y2="745.072" />
  1813. </g>
  1814. <text transform="matrix(1 0 0 1 254.2961 612.1943)" fill="#FFFFFF"
  1815. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1816. 314
  1817. </text>
  1818. <text transform="matrix(1 0 0 1 299.0305 550.1611)" fill="#FFFFFF"
  1819. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1820. -1
  1821. </text>
  1822. <text transform="matrix(1 0 0 1 299.0305 663.8584)" fill="#FFFFFF"
  1823. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1824. -3
  1825. </text>
  1826. <g>
  1827. <rect x="253.676" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  1828. <text transform="matrix(1 0 0 1 258.4163 816.4912)" fill="#FFFFFF"
  1829. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1830. 集电线路三
  1831. </text>
  1832. </g>
  1833. <rect x="286.826" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  1834. <rect x="286.833" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  1835. <text transform="matrix(1 0 0 1 301.9817 761.8877)" fill="#FFFFFF"
  1836. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1837. -0
  1838. </text>
  1839. <rect x="287.826" y="668.229" fill="#CAA51A" width="2.25" height="123.418" />
  1840. <rect x="308.934" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  1841. <rect x="290.034" y="688.646" fill="#CAA51A" width="20.499" height="2.25" />
  1842. <rect x="278.842" y="589.096" fill="#9F1A59" width="15.982" height="24.202" />
  1843. <polygon fill="#CAA51A" points="294.766,785.663 288.453,797.635 282.153,785.66 " />
  1844. <g>
  1845. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1846. x1="303.928" y1="738.302" x2="316.227" y2="738.302" />
  1847. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1848. x1="310.077" y1="729.84" x2="310.077" y2="738.302" />
  1849. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1850. x1="306.467" y1="741.687" x2="313.688" y2="741.687" />
  1851. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1852. x1="307.877" y1="745.072" x2="312.277" y2="745.072" />
  1853. </g>
  1854. <text transform="matrix(1 0 0 1 337.6106 612.1943)" fill="#FFFFFF"
  1855. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1856. 315
  1857. </text>
  1858. <text transform="matrix(1 0 0 1 382.345 550.1611)" fill="#FFFFFF"
  1859. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1860. -1
  1861. </text>
  1862. <text transform="matrix(1 0 0 1 382.345 663.8584)" fill="#FFFFFF"
  1863. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1864. -3
  1865. </text>
  1866. <g>
  1867. <rect x="335.99" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  1868. <text transform="matrix(1 0 0 1 345.6023 816.4912)" fill="#FFFFFF"
  1869. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1870. #1电容器
  1871. </text>
  1872. </g>
  1873. <rect x="370.141" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  1874. <rect x="370.147" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  1875. <text transform="matrix(1 0 0 1 385.2961 761.8877)" fill="#FFFFFF"
  1876. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1877. -0
  1878. </text>
  1879. <rect x="371.141" y="668.229" fill="#CAA51A" width="2.25" height="104.678" />
  1880. <rect x="392.247" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  1881. <rect x="373.349" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  1882. <rect x="362.156" y="589.096" fill="#167C3B" width="15.98" height="24.202" />
  1883. <g>
  1884. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1885. x1="387.241" y1="738.302" x2="399.54" y2="738.302" />
  1886. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1887. x1="393.393" y1="729.84" x2="393.393" y2="738.302" />
  1888. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1889. x1="389.781" y1="741.687" x2="397.002" y2="741.687" />
  1890. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1891. x1="391.191" y1="745.072" x2="395.592" y2="745.072" />
  1892. </g>
  1893. <rect x="427.839" y="772.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  1894. stroke-miterlimit="10" width="52.403" height="24.323" />
  1895. <text transform="matrix(1 0 0 1 419.9729 612.1943)" fill="#FFFFFF"
  1896. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1897. 316
  1898. </text>
  1899. <text transform="matrix(1 0 0 1 464.7073 550.1611)" fill="#FFFFFF"
  1900. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1901. -1
  1902. </text>
  1903. <text transform="matrix(1 0 0 1 464.7073 663.8584)" fill="#FFFFFF"
  1904. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1905. -3
  1906. </text>
  1907. <g>
  1908. <rect x="418.353" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  1909. <text transform="matrix(1 0 0 1 427.9646 816.4912)" fill="#FFFFFF"
  1910. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1911. #1电抗器
  1912. </text>
  1913. </g>
  1914. <g>
  1915. <rect x="498.552" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  1916. <text transform="matrix(1 0 0 1 508.1638 816.4912)" fill="#FFFFFF"
  1917. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1918. #1接地变
  1919. </text>
  1920. </g>
  1921. <rect x="452.503" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  1922. <rect x="452.51" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  1923. <text transform="matrix(1 0 0 1 467.6584 761.8877)" fill="#FFFFFF"
  1924. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1925. -0
  1926. </text>
  1927. <rect x="453.503" y="668.229" fill="#CAA51A" width="2.25" height="104.678" />
  1928. <rect x="474.61" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  1929. <rect x="535.989" y="694.906" fill="#CAA51A" width="22.969" height="0.97" />
  1930. <rect x="535.989" y="712.885" fill="#CAA51A" width="22.969" height="0.97" />
  1931. <rect x="455.711" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  1932. <rect x="444.52" y="589.096" fill="#167C3B" width="15.98" height="24.202" />
  1933. <text transform="matrix(1 0 0 1 501.0461 612.1943)" fill="#FFFFFF"
  1934. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1935. 317
  1936. </text>
  1937. <text transform="matrix(1 0 0 1 545.7805 550.1611)" fill="#FFFFFF"
  1938. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1939. -1
  1940. </text>
  1941. <rect x="533.575" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  1942. <rect x="533.582" y="556.988" fill="#CAA51A" width="2.25" height="131.657" />
  1943. <rect x="525.592" y="589.096" fill="#167C3B" width="15.981" height="24.202" />
  1944. <g>
  1945. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1946. x1="469.604" y1="738.302" x2="481.903" y2="738.302" />
  1947. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1948. x1="475.755" y1="729.84" x2="475.755" y2="738.302" />
  1949. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1950. x1="472.145" y1="741.687" x2="479.364" y2="741.687" />
  1951. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1952. x1="473.554" y1="745.072" x2="477.953" y2="745.072" />
  1953. </g>
  1954. <text transform="matrix(1 0 0 1 650.5461 665.5088)" fill="#FFFFFF"
  1955. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1956. 32-9
  1957. </text>
  1958. <text transform="matrix(1 0 0 1 738.4001 612.1943)" fill="#FFFFFF"
  1959. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1960. 321
  1961. </text>
  1962. <text transform="matrix(1 0 0 1 702.4919 641.6475)" fill="#FFFFFF"
  1963. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1964. -0
  1965. </text>
  1966. <text transform="matrix(1 0 0 1 783.1345 550.1611)" fill="#FFFFFF"
  1967. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1968. -2
  1969. </text>
  1970. <g>
  1971. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1972. x1="704.42" y1="616.427" x2="716.719" y2="616.427" />
  1973. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1974. x1="710.571" y1="607.964" x2="710.571" y2="616.427" />
  1975. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1976. x1="706.959" y1="619.811" x2="714.18" y2="619.811" />
  1977. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  1978. x1="708.369" y1="623.196" x2="712.77" y2="623.196" />
  1979. </g>
  1980. <text transform="matrix(1 0 0 1 783.1345 663.8584)" fill="#FFFFFF"
  1981. font-family="'MicrosoftYaHei'" font-size="11.9907">
  1982. -3
  1983. </text>
  1984. <g>
  1985. <rect x="656.304" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  1986. <text transform="matrix(1 0 0 1 662.428 816.4912)" fill="#FFFFFF"
  1987. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1988. 35KV Ⅱ母
  1989. </text>
  1990. </g>
  1991. <g>
  1992. <rect x="737.78" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  1993. <text transform="matrix(1 0 0 1 742.5203 816.4912)" fill="#FFFFFF"
  1994. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1995. 集电线路四
  1996. </text>
  1997. </g>
  1998. <rect x="688.336" y="521.988" fill="#CAA51A" width="2.25" height="123.418" />
  1999. <rect x="770.93" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2000. <rect x="770.938" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  2001. <rect x="709.444" y="564.406" fill="#CAA51A" width="2.25" height="20.5" />
  2002. <rect x="690.544" y="564.406" fill="#CAA51A" width="20.5" height="2.25" />
  2003. <text transform="matrix(1 0 0 1 786.0857 761.8877)" fill="#FFFFFF"
  2004. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2005. -0
  2006. </text>
  2007. <rect x="771.93" y="668.229" fill="#CAA51A" width="2.25" height="123.418" />
  2008. <rect x="793.037" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  2009. <rect x="774.138" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  2010. <rect x="688.335" y="670.113" fill="#CAA51A" width="2.25" height="22.741" />
  2011. <rect x="653.018" y="691.729" fill="#CAA51A" width="75.414" height="2.25" />
  2012. <rect x="651.589" y="519.333" fill="#CAA51A" width="584.841" height="2.655" />
  2013. <rect x="762.946" y="589.096" fill="#9F1A59" width="15.98" height="24.202" />
  2014. <rect x="653.018" y="692.854" fill="#CAA51A" width="2.604" height="19.663" />
  2015. <rect x="653.018" y="726.571" fill="#3EB9B0" width="2.604" height="6.479" />
  2016. <g>
  2017. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2018. x1="648.061" y1="733.039" x2="660.576" y2="733.039" />
  2019. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2020. x1="650.23" y1="736.358" x2="658.406" y2="736.358" />
  2021. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2022. x1="652.018" y1="739.862" x2="656.619" y2="739.862" />
  2023. </g>
  2024. <polygon fill="#CAA51A" points="657.563,712.411 654.314,721.642 651.073,712.409 " />
  2025. <polygon fill="#CAA51A" points="778.869,785.663 772.557,797.635 766.257,785.66 " />
  2026. <rect x="649.203" y="702.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  2027. stroke-miterlimit="10" width="10.229" height="24.323" />
  2028. <rect x="688.666" y="692.854" fill="#CAA51A" width="2.604" height="33.717" />
  2029. <rect x="725.825" y="692.854" fill="#CAA51A" width="2.604" height="18.219" />
  2030. <rect x="688.666" y="726.571" fill="#3EB9B0" width="2.604" height="6.479" />
  2031. <g>
  2032. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2033. x1="683.71" y1="733.039" x2="696.229" y2="733.039" />
  2034. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2035. x1="685.882" y1="736.358" x2="694.058" y2="736.358" />
  2036. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2037. x1="687.666" y1="739.862" x2="692.271" y2="739.862" />
  2038. </g>
  2039. <rect x="684.855" y="702.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  2040. stroke-miterlimit="10" width="10.229" height="24.323" />
  2041. <rect x="1205.254" y="694.379" fill="#CAA51A" width="2.604" height="73.527" />
  2042. <rect x="1205.254" y="766.261" fill="#3EB9B0" width="2.604" height="6.478" />
  2043. <g>
  2044. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2045. x1="1200.297" y1="772.729" x2="1212.814" y2="772.729" />
  2046. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2047. x1="1202.469" y1="776.05" x2="1210.646" y2="776.05" />
  2048. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2049. x1="1204.254" y1="779.552" x2="1208.857" y2="779.552" />
  2050. </g>
  2051. <rect x="1201.442" y="731.635" fill="none" stroke="#CAA51A" stroke-width="2.3"
  2052. stroke-miterlimit="10" width="10.229" height="24.324" />
  2053. <rect x="993.074" y="772.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  2054. stroke-miterlimit="10" width="52.403" height="24.323" />
  2055. <g>
  2056. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2057. cx="725.877" cy="734.65" r="8.804" />
  2058. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2059. cx="725.875" cy="719.373" r="8.804" />
  2060. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2061. points="729.028,738.679 725.861,735.549 722.909,738.679 " />
  2062. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2063. x1="725.795" y1="735.466" x2="725.795" y2="729.942" />
  2064. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2065. points="729.028,723.741 725.861,720.609 722.909,723.741 " />
  2066. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2067. x1="725.795" y1="720.526" x2="725.795" y2="715.007" />
  2068. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2069. cx="738.697" cy="726.569" r="8.803" />
  2070. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2071. points="741.849,730.938 738.682,727.806 735.73,730.938 " />
  2072. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2073. x1="738.615" y1="727.723" x2="738.615" y2="722.201" />
  2074. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2075. cx="712.954" cy="726.569" r="8.803" />
  2076. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2077. points="714.711,729.829 714.711,723.31 709.335,726.747 " />
  2078. </g>
  2079. <g>
  2080. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2081. cx="1183.494" cy="713.853" r="8.804" />
  2082. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2083. cx="1183.494" cy="698.575" r="8.804" />
  2084. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2085. points="1186.646,717.883 1183.479,714.749 1180.528,717.883 " />
  2086. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2087. x1="1183.412" y1="714.667" x2="1183.412" y2="709.146" />
  2088. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2089. points="1186.646,702.943 1183.479,699.812 1180.528,702.943 " />
  2090. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2091. x1="1183.412" y1="699.729" x2="1183.412" y2="694.207" />
  2092. </g>
  2093. <g>
  2094. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2095. x1="788.031" y1="738.302" x2="800.33" y2="738.302" />
  2096. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2097. x1="794.182" y1="729.84" x2="794.182" y2="738.302" />
  2098. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2099. x1="790.571" y1="741.687" x2="797.791" y2="741.687" />
  2100. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2101. x1="791.98" y1="745.072" x2="796.381" y2="745.072" />
  2102. </g>
  2103. <text transform="matrix(1 0 0 1 820.9001 612.1943)" fill="#FFFFFF"
  2104. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2105. 322
  2106. </text>
  2107. <text transform="matrix(1 0 0 1 865.6345 550.1611)" fill="#FFFFFF"
  2108. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2109. -2
  2110. </text>
  2111. <text transform="matrix(1 0 0 1 865.6345 663.8584)" fill="#FFFFFF"
  2112. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2113. -3
  2114. </text>
  2115. <g>
  2116. <rect x="820.28" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2117. <text transform="matrix(1 0 0 1 825.0203 816.4912)" fill="#FFFFFF"
  2118. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2119. 集电线路五
  2120. </text>
  2121. </g>
  2122. <rect x="853.43" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2123. <rect x="853.438" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  2124. <text transform="matrix(1 0 0 1 868.5857 761.8877)" fill="#FFFFFF"
  2125. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2126. -0
  2127. </text>
  2128. <rect x="854.43" y="668.229" fill="#CAA51A" width="2.25" height="123.418" />
  2129. <rect x="875.537" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  2130. <rect x="856.638" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  2131. <rect x="845.446" y="589.096" fill="#9F1A59" width="15.98" height="24.202" />
  2132. <polygon fill="#CAA51A" points="861.369,785.663 855.057,797.635 848.757,785.66 " />
  2133. <g>
  2134. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2135. x1="870.531" y1="738.302" x2="882.83" y2="738.302" />
  2136. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2137. x1="876.682" y1="729.84" x2="876.682" y2="738.302" />
  2138. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2139. x1="873.071" y1="741.687" x2="880.291" y2="741.687" />
  2140. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2141. x1="874.48" y1="745.072" x2="878.881" y2="745.072" />
  2142. </g>
  2143. <text transform="matrix(1 0 0 1 901.8943 612.1943)" fill="#FFFFFF"
  2144. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2145. 323
  2146. </text>
  2147. <text transform="matrix(1 0 0 1 946.6292 550.1611)" fill="#FFFFFF"
  2148. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2149. -2
  2150. </text>
  2151. <text transform="matrix(1 0 0 1 946.6292 663.8584)" fill="#FFFFFF"
  2152. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2153. -3
  2154. </text>
  2155. <g>
  2156. <rect x="901.273" y="801.938" fill="#44426C" width="72.314" height="20.817" />
  2157. <text transform="matrix(1 0 0 1 906.0144 816.4912)" fill="#FFFFFF"
  2158. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2159. 集电线路六
  2160. </text>
  2161. </g>
  2162. <rect x="934.425" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2163. <rect x="934.431" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  2164. <text transform="matrix(1 0 0 1 949.5803 761.8877)" fill="#FFFFFF"
  2165. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2166. -0
  2167. </text>
  2168. <rect x="935.425" y="668.229" fill="#CAA51A" width="2.25" height="123.418" />
  2169. <rect x="956.531" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  2170. <rect x="937.632" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  2171. <rect x="926.439" y="589.096" fill="#9F1A59" width="15.981" height="24.202" />
  2172. <polygon fill="#CAA51A" points="942.364,785.663 936.052,797.635 929.75,785.66 " />
  2173. <g>
  2174. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2175. x1="951.526" y1="738.302" x2="963.824" y2="738.302" />
  2176. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2177. x1="957.676" y1="729.84" x2="957.676" y2="738.302" />
  2178. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2179. x1="954.064" y1="741.687" x2="961.285" y2="741.687" />
  2180. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2181. x1="955.477" y1="745.072" x2="959.875" y2="745.072" />
  2182. </g>
  2183. <text transform="matrix(1 0 0 1 985.2083 612.1943)" fill="#FFFFFF"
  2184. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2185. 325
  2186. </text>
  2187. <text transform="matrix(1 0 0 1 1029.9426 550.1611)" fill="#FFFFFF"
  2188. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2189. -2
  2190. </text>
  2191. <text transform="matrix(1 0 0 1 1029.9426 663.8584)" fill="#FFFFFF"
  2192. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2193. -3
  2194. </text>
  2195. <g>
  2196. <rect x="983.588" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2197. <text transform="matrix(1 0 0 1 993.1985 816.4912)" fill="#FFFFFF"
  2198. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2199. #2电容器
  2200. </text>
  2201. </g>
  2202. <rect x="1017.739" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2203. <rect x="1017.744" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  2204. <text transform="matrix(1 0 0 1 1032.8938 761.8877)" fill="#FFFFFF"
  2205. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2206. -0
  2207. </text>
  2208. <rect x="1018.739" y="668.229" fill="#CAA51A" width="2.25" height="104.678" />
  2209. <rect x="1039.846" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  2210. <rect x="1020.946" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  2211. <rect x="1009.754" y="589.096" fill="#167C3B" width="15.981" height="24.202" />
  2212. <g>
  2213. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2214. x1="1034.84" y1="738.302" x2="1047.139" y2="738.302" />
  2215. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2216. x1="1040.99" y1="729.84" x2="1040.99" y2="738.302" />
  2217. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2218. x1="1037.379" y1="741.687" x2="1044.6" y2="741.687" />
  2219. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2220. x1="1038.789" y1="745.072" x2="1043.189" y2="745.072" />
  2221. </g>
  2222. <rect x="1075.438" y="772.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  2223. stroke-miterlimit="10" width="52.402" height="24.323" />
  2224. <text transform="matrix(1 0 0 1 1067.5696 612.1943)" fill="#FFFFFF"
  2225. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2226. 326
  2227. </text>
  2228. <text transform="matrix(1 0 0 1 1112.304 550.1611)" fill="#FFFFFF"
  2229. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2230. -2
  2231. </text>
  2232. <text transform="matrix(1 0 0 1 1112.304 663.8584)" fill="#FFFFFF"
  2233. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2234. -3
  2235. </text>
  2236. <g>
  2237. <rect x="1065.949" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2238. <text transform="matrix(1 0 0 1 1075.5618 816.4912)" fill="#FFFFFF"
  2239. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2240. #2电抗器
  2241. </text>
  2242. </g>
  2243. <g>
  2244. <rect x="1146.149" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2245. <text transform="matrix(1 0 0 1 1155.761 816.4912)" fill="#FFFFFF"
  2246. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2247. #2接地变
  2248. </text>
  2249. </g>
  2250. <rect x="1100.1" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2251. <rect x="1100.108" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  2252. <text transform="matrix(1 0 0 1 1115.2551 761.8877)" fill="#FFFFFF"
  2253. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2254. -0
  2255. </text>
  2256. <rect x="1101.1" y="668.229" fill="#CAA51A" width="2.25" height="104.678" />
  2257. <rect x="1122.207" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  2258. <rect x="1183.586" y="694.906" fill="#CAA51A" width="22.969" height="0.97" />
  2259. <rect x="1183.586" y="712.885" fill="#CAA51A" width="22.969" height="0.97" />
  2260. <rect x="1103.311" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  2261. <rect x="1092.115" y="589.096" fill="#167C3B" width="15.981" height="24.202" />
  2262. <text transform="matrix(1 0 0 1 1148.6438 612.1943)" fill="#FFFFFF"
  2263. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2264. 327
  2265. </text>
  2266. <text transform="matrix(1 0 0 1 1193.3782 550.1611)" fill="#FFFFFF"
  2267. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2268. -2
  2269. </text>
  2270. <rect x="1181.174" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2271. <rect x="1181.182" y="556.988" fill="#CAA51A" width="2.25" height="131.657" />
  2272. <rect x="1173.189" y="589.096" fill="#167C3B" width="15.982" height="24.202" />
  2273. <g>
  2274. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2275. x1="1117.201" y1="738.302" x2="1129.5" y2="738.302" />
  2276. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2277. x1="1123.354" y1="729.84" x2="1123.354" y2="738.302" />
  2278. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2279. x1="1119.74" y1="741.687" x2="1126.961" y2="741.687" />
  2280. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2281. x1="1121.151" y1="745.072" x2="1125.551" y2="745.072" />
  2282. </g>
  2283. <text transform="matrix(1 0 0 1 1297.929 665.5088)" fill="#FFFFFF"
  2284. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2285. 35-9
  2286. </text>
  2287. <text transform="matrix(1 0 0 1 1385.7825 612.1943)" fill="#FFFFFF"
  2288. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2289. 351
  2290. </text>
  2291. <text transform="matrix(1 0 0 1 1349.8743 641.6475)" fill="#FFFFFF"
  2292. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2293. -0
  2294. </text>
  2295. <text transform="matrix(1 0 0 1 1430.5168 550.1611)" fill="#FFFFFF"
  2296. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2297. -5
  2298. </text>
  2299. <g>
  2300. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2301. x1="1351.803" y1="616.427" x2="1364.104" y2="616.427" />
  2302. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2303. x1="1357.953" y1="607.964" x2="1357.953" y2="616.427" />
  2304. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2305. x1="1354.342" y1="619.811" x2="1361.563" y2="619.811" />
  2306. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2307. x1="1355.752" y1="623.196" x2="1360.152" y2="623.196" />
  2308. </g>
  2309. <text transform="matrix(1 0 0 1 1430.5168 663.8584)" fill="#FFFFFF"
  2310. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2311. -3
  2312. </text>
  2313. <g>
  2314. <rect x="1303.688" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2315. <text transform="matrix(1 0 0 1 1309.8098 816.4912)" fill="#FFFFFF"
  2316. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2317. 35KV Ⅴ母
  2318. </text>
  2319. </g>
  2320. <g>
  2321. <rect x="1385.162" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2322. <text transform="matrix(1 0 0 1 1389.9036 816.4912)" fill="#FFFFFF"
  2323. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2324. 集电线路七
  2325. </text>
  2326. </g>
  2327. <rect x="1335.719" y="521.988" fill="#CAA51A" width="2.25" height="123.418" />
  2328. <rect x="1418.313" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2329. <rect x="1418.321" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  2330. <rect x="1356.826" y="564.406" fill="#CAA51A" width="2.25" height="20.5" />
  2331. <rect x="1337.928" y="564.406" fill="#CAA51A" width="20.5" height="2.25" />
  2332. <text transform="matrix(1 0 0 1 1433.468 761.8877)" fill="#FFFFFF"
  2333. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2334. -0
  2335. </text>
  2336. <rect x="1419.313" y="668.229" fill="#CAA51A" width="2.25" height="123.418" />
  2337. <rect x="1440.42" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  2338. <rect x="1421.521" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  2339. <rect x="1335.719" y="670.113" fill="#CAA51A" width="2.25" height="22.741" />
  2340. <rect x="1300.4" y="691.729" fill="#CAA51A" width="75.414" height="2.25" />
  2341. <rect x="1298.975" y="519.333" fill="#CAA51A" width="584.84" height="2.655" />
  2342. <rect x="1410.328" y="589.096" fill="#9F1A59" width="15.981" height="24.202" />
  2343. <rect x="1300.4" y="692.854" fill="#CAA51A" width="2.604" height="19.663" />
  2344. <rect x="1300.4" y="726.571" fill="#3EB9B0" width="2.604" height="6.479" />
  2345. <g>
  2346. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2347. x1="1295.443" y1="733.039" x2="1307.961" y2="733.039" />
  2348. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2349. x1="1297.615" y1="736.358" x2="1305.791" y2="736.358" />
  2350. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2351. x1="1299.4" y1="739.862" x2="1304.004" y2="739.862" />
  2352. </g>
  2353. <polygon fill="#CAA51A" points="1304.948,712.411 1301.699,721.642 1298.457,712.409 " />
  2354. <polygon fill="#CAA51A" points="1426.252,785.663 1419.939,797.635 1413.641,785.66 " />
  2355. <rect x="1296.588" y="702.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  2356. stroke-miterlimit="10" width="10.229" height="24.323" />
  2357. <rect x="1336.051" y="692.854" fill="#CAA51A" width="2.604" height="33.717" />
  2358. <rect x="1373.209" y="692.854" fill="#CAA51A" width="2.604" height="18.219" />
  2359. <rect x="1336.051" y="726.571" fill="#3EB9B0" width="2.604" height="6.479" />
  2360. <g>
  2361. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2362. x1="1331.094" y1="733.039" x2="1343.612" y2="733.039" />
  2363. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2364. x1="1333.268" y1="736.358" x2="1341.441" y2="736.358" />
  2365. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2366. x1="1335.051" y1="739.862" x2="1339.655" y2="739.862" />
  2367. </g>
  2368. <rect x="1332.239" y="702.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  2369. stroke-miterlimit="10" width="10.229" height="24.323" />
  2370. <rect x="1852.639" y="694.379" fill="#CAA51A" width="2.604" height="73.527" />
  2371. <rect x="1852.639" y="766.261" fill="#3EB9B0" width="2.604" height="6.478" />
  2372. <g>
  2373. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2374. x1="1847.682" y1="772.729" x2="1860.199" y2="772.729" />
  2375. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2376. x1="1849.854" y1="776.05" x2="1858.03" y2="776.05" />
  2377. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  2378. x1="1851.639" y1="779.552" x2="1856.242" y2="779.552" />
  2379. </g>
  2380. <rect x="1848.826" y="731.635" fill="none" stroke="#CAA51A" stroke-width="2.3"
  2381. stroke-miterlimit="10" width="10.229" height="24.324" />
  2382. <rect x="1640.459" y="772.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  2383. stroke-miterlimit="10" width="52.403" height="24.323" />
  2384. <g>
  2385. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2386. cx="1373.26" cy="734.65" r="8.804" />
  2387. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2388. cx="1373.26" cy="719.373" r="8.804" />
  2389. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2390. points="1376.412,738.679 1373.244,735.549 1370.293,738.679 " />
  2391. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2392. x1="1373.178" y1="735.466" x2="1373.178" y2="729.942" />
  2393. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2394. points="1376.412,723.741 1373.244,720.609 1370.293,723.741 " />
  2395. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2396. x1="1373.178" y1="720.526" x2="1373.178" y2="715.007" />
  2397. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2398. cx="1386.08" cy="726.569" r="8.803" />
  2399. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2400. points="1389.232,730.938 1386.064,727.806 1383.114,730.938 " />
  2401. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2402. x1="1385.998" y1="727.723" x2="1385.998" y2="722.201" />
  2403. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2404. cx="1360.338" cy="726.569" r="8.803" />
  2405. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2406. points="1362.094,729.829 1362.094,723.31 1356.719,726.747 " />
  2407. </g>
  2408. <g>
  2409. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2410. cx="1830.879" cy="713.853" r="8.804" />
  2411. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2412. cx="1830.877" cy="698.575" r="8.804" />
  2413. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2414. points="1834.03,717.883 1830.864,714.749 1827.912,717.883 " />
  2415. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2416. x1="1830.797" y1="714.667" x2="1830.797" y2="709.146" />
  2417. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2418. points="1834.03,702.943 1830.864,699.812 1827.912,702.943 " />
  2419. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  2420. x1="1830.797" y1="699.729" x2="1830.797" y2="694.207" />
  2421. </g>
  2422. <g>
  2423. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2424. x1="1435.414" y1="738.302" x2="1447.713" y2="738.302" />
  2425. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2426. x1="1441.564" y1="729.84" x2="1441.564" y2="738.302" />
  2427. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2428. x1="1437.953" y1="741.687" x2="1445.174" y2="741.687" />
  2429. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2430. x1="1439.364" y1="745.072" x2="1443.766" y2="745.072" />
  2431. </g>
  2432. <text transform="matrix(1 0 0 1 1468.2825 612.1943)" fill="#FFFFFF"
  2433. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2434. 353
  2435. </text>
  2436. <text transform="matrix(1 0 0 1 1513.0168 550.1611)" fill="#FFFFFF"
  2437. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2438. -5
  2439. </text>
  2440. <text transform="matrix(1 0 0 1 1513.0168 663.8584)" fill="#FFFFFF"
  2441. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2442. -3
  2443. </text>
  2444. <g>
  2445. <rect x="1467.662" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2446. <text transform="matrix(1 0 0 1 1472.4036 816.4912)" fill="#FFFFFF"
  2447. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2448. 集电线路八
  2449. </text>
  2450. </g>
  2451. <rect x="1500.813" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2452. <rect x="1500.821" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  2453. <text transform="matrix(1 0 0 1 1515.968 761.8877)" fill="#FFFFFF"
  2454. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2455. -0
  2456. </text>
  2457. <rect x="1501.813" y="668.229" fill="#CAA51A" width="2.25" height="123.418" />
  2458. <rect x="1522.92" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  2459. <rect x="1504.021" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  2460. <rect x="1492.828" y="589.096" fill="#9F1A59" width="15.981" height="24.202" />
  2461. <polygon fill="#CAA51A" points="1508.752,785.663 1502.439,797.635 1496.141,785.66 " />
  2462. <g>
  2463. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2464. x1="1517.914" y1="738.302" x2="1530.213" y2="738.302" />
  2465. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2466. x1="1524.064" y1="729.84" x2="1524.064" y2="738.302" />
  2467. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2468. x1="1520.453" y1="741.687" x2="1527.674" y2="741.687" />
  2469. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2470. x1="1521.864" y1="745.072" x2="1526.266" y2="745.072" />
  2471. </g>
  2472. <text transform="matrix(1 0 0 1 1549.2766 612.1943)" fill="#FFFFFF"
  2473. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2474. 354
  2475. </text>
  2476. <text transform="matrix(1 0 0 1 1594.011 550.1611)" fill="#FFFFFF"
  2477. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2478. -5
  2479. </text>
  2480. <text transform="matrix(1 0 0 1 1594.011 663.8584)" fill="#FFFFFF"
  2481. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2482. -3
  2483. </text>
  2484. <g>
  2485. <rect x="1548.656" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2486. <text transform="matrix(1 0 0 1 1553.3977 816.4912)" fill="#FFFFFF"
  2487. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2488. 集电线路九
  2489. </text>
  2490. </g>
  2491. <rect x="1581.809" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2492. <rect x="1581.814" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  2493. <text transform="matrix(1 0 0 1 1596.9622 761.8877)" fill="#FFFFFF"
  2494. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2495. -0
  2496. </text>
  2497. <rect x="1582.809" y="668.229" fill="#CAA51A" width="2.25" height="123.418" />
  2498. <rect x="1603.916" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  2499. <rect x="1585.016" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  2500. <rect x="1573.824" y="589.096" fill="#9F1A59" width="15.981" height="24.202" />
  2501. <polygon fill="#CAA51A" points="1589.748,785.663 1583.436,797.635 1577.135,785.66 " />
  2502. <g>
  2503. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2504. x1="1598.91" y1="738.302" x2="1611.209" y2="738.302" />
  2505. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2506. x1="1605.061" y1="729.84" x2="1605.061" y2="738.302" />
  2507. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2508. x1="1601.449" y1="741.687" x2="1608.67" y2="741.687" />
  2509. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2510. x1="1602.859" y1="745.072" x2="1607.26" y2="745.072" />
  2511. </g>
  2512. <text transform="matrix(1 0 0 1 1632.5911 612.1943)" fill="#FFFFFF"
  2513. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2514. 355
  2515. </text>
  2516. <text transform="matrix(1 0 0 1 1677.3254 550.1611)" fill="#FFFFFF"
  2517. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2518. -5
  2519. </text>
  2520. <text transform="matrix(1 0 0 1 1677.3254 663.8584)" fill="#FFFFFF"
  2521. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2522. -3
  2523. </text>
  2524. <g>
  2525. <rect x="1630.973" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2526. <text transform="matrix(1 0 0 1 1640.5833 816.4912)" fill="#FFFFFF"
  2527. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2528. #3电容器
  2529. </text>
  2530. </g>
  2531. <rect x="1665.123" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2532. <rect x="1665.129" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  2533. <text transform="matrix(1 0 0 1 1680.2766 761.8877)" fill="#FFFFFF"
  2534. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2535. -0
  2536. </text>
  2537. <rect x="1666.123" y="668.229" fill="#CAA51A" width="2.25" height="104.678" />
  2538. <rect x="1687.23" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  2539. <rect x="1668.33" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  2540. <rect x="1657.139" y="589.096" fill="#167C3B" width="15.982" height="24.202" />
  2541. <g>
  2542. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2543. x1="1682.225" y1="738.302" x2="1694.523" y2="738.302" />
  2544. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2545. x1="1688.375" y1="729.84" x2="1688.375" y2="738.302" />
  2546. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2547. x1="1684.764" y1="741.687" x2="1691.984" y2="741.687" />
  2548. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2549. x1="1686.174" y1="745.072" x2="1690.574" y2="745.072" />
  2550. </g>
  2551. <rect x="1722.821" y="772.688" fill="none" stroke="#CAA51A" stroke-width="2.3"
  2552. stroke-miterlimit="10" width="52.403" height="24.323" />
  2553. <text transform="matrix(1 0 0 1 1714.9543 612.1943)" fill="#FFFFFF"
  2554. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2555. 356
  2556. </text>
  2557. <text transform="matrix(1 0 0 1 1759.6887 550.1611)" fill="#FFFFFF"
  2558. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2559. -1
  2560. </text>
  2561. <text transform="matrix(1 0 0 1 1759.6887 663.8584)" fill="#FFFFFF"
  2562. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2563. -3
  2564. </text>
  2565. <g>
  2566. <rect x="1713.334" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2567. <text transform="matrix(1 0 0 1 1722.9446 816.4912)" fill="#FFFFFF"
  2568. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2569. #3电抗器
  2570. </text>
  2571. </g>
  2572. <g>
  2573. <rect x="1793.533" y="801.938" fill="#44426C" width="72.313" height="20.817" />
  2574. <text transform="matrix(1 0 0 1 1803.1438 816.4912)" fill="#FFFFFF"
  2575. font-family="'MicrosoftYaHei'" font-size="12.5667">
  2576. #3接地变
  2577. </text>
  2578. </g>
  2579. <rect x="1747.484" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2580. <rect x="1747.492" y="556.988" fill="#CAA51A" width="2.25" height="88.418" />
  2581. <text transform="matrix(1 0 0 1 1762.6399 761.8877)" fill="#FFFFFF"
  2582. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2583. -0
  2584. </text>
  2585. <rect x="1748.484" y="668.229" fill="#CAA51A" width="2.25" height="104.678" />
  2586. <rect x="1769.592" y="688.646" fill="#CAA51A" width="2.25" height="20.5" />
  2587. <rect x="1830.971" y="694.906" fill="#CAA51A" width="22.969" height="0.97" />
  2588. <rect x="1830.971" y="712.885" fill="#CAA51A" width="22.969" height="0.97" />
  2589. <rect x="1750.693" y="688.646" fill="#CAA51A" width="20.5" height="2.25" />
  2590. <rect x="1739.5" y="589.096" fill="#167C3B" width="15.981" height="24.202" />
  2591. <text transform="matrix(1 0 0 1 1796.0266 612.1943)" fill="#FFFFFF"
  2592. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2593. 357
  2594. </text>
  2595. <text transform="matrix(1 0 0 1 1840.761 550.1611)" fill="#FFFFFF"
  2596. font-family="'MicrosoftYaHei'" font-size="11.9907">
  2597. -5
  2598. </text>
  2599. <rect x="1828.559" y="521.988" fill="#CAA51A" width="2.25" height="11.584" />
  2600. <rect x="1828.564" y="556.988" fill="#CAA51A" width="2.25" height="131.657" />
  2601. <rect x="1820.574" y="589.096" fill="#167C3B" width="15.981" height="24.202" />
  2602. <g>
  2603. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2604. x1="1764.586" y1="738.302" x2="1776.885" y2="738.302" />
  2605. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2606. x1="1770.737" y1="729.84" x2="1770.737" y2="738.302" />
  2607. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2608. x1="1767.125" y1="741.687" x2="1774.346" y2="741.687" />
  2609. <line fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2610. x1="1768.535" y1="745.072" x2="1772.936" y2="745.072" />
  2611. </g>
  2612. <g>
  2613. <g>
  2614. <text transform="matrix(1 0 0 1 -15.5959 841.4775)" fill="#FFFFFF"
  2615. font-family="'MicrosoftYaHei'" font-size="10.7648">
  2616. la(
  2617. </text>
  2618. <text transform="matrix(1 0 0 1 -3.1858 841.4775)" fill="#FFFFFF"
  2619. font-family="'MicrosoftYaHei'" font-size="8.6118">
  2620. A
  2621. </text>
  2622. <text transform="matrix(1 0 0 1 2.8728 841.4775)" fill="#FFFFFF"
  2623. font-family="'MicrosoftYaHei'" font-size="10.7648">
  2624. ):
  2625. </text>
  2626. <text transform="matrix(1 0 0 1 -20.76 867.3301)" fill="#FFFFFF"
  2627. font-family="'MicrosoftYaHei'" font-size="10.7648">
  2628. P(
  2629. </text>
  2630. <text transform="matrix(1 0 0 1 -10.5789 867.3301)" fill="#FFFFFF"
  2631. font-family="'MicrosoftYaHei'" font-size="8.6118">
  2632. Mw
  2633. </text>
  2634. <text transform="matrix(1 0 0 1 2.8728 867.3301)" fill="#FFFFFF"
  2635. font-family="'MicrosoftYaHei'" font-size="10.7648">
  2636. ):
  2637. </text>
  2638. <text transform="matrix(1 0 0 1 -28.0549 893.1807)" fill="#FFFFFF"
  2639. font-family="'MicrosoftYaHei'" font-size="10.7648">
  2640. Q(
  2641. </text>
  2642. <text transform="matrix(1 0 0 1 -15.6868 893.1807)" fill="#FFFFFF"
  2643. font-family="'MicrosoftYaHei'" font-size="8.6118">
  2644. MVar
  2645. </text>
  2646. <text transform="matrix(1 0 0 1 2.8728 893.1807)" fill="#FFFFFF"
  2647. font-family="'MicrosoftYaHei'" font-size="10.7648">
  2648. ):
  2649. </text>
  2650. </g>
  2651. </g>
  2652. <g>
  2653. <rect x="1586.239" y="81.515" opacity="0.9" fill="#162320"
  2654. enable-background="new " width="86.618" height="18.489" />
  2655. <rect x="1586.239" y="102.012" opacity="0.9" fill="#162320"
  2656. enable-background="new " width="86.618" height="18.488" />
  2657. <rect x="1586.239" y="122.51" opacity="0.9" fill="#162320"
  2658. enable-background="new " width="86.618" height="18.488" />
  2659. <g>
  2660. <text transform="matrix(1 0 0 1 1604.9622 95.4658)" fill="#97A1A2"
  2661. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2662. la
  2663. </text>
  2664. <text transform="matrix(1 0 0 1 1614.2883 95.4658)" fill="#97A1A2"
  2665. font-family="'MicrosoftYaHei'" font-size="9.6234">
  2666. (A)
  2667. </text>
  2668. <text transform="matrix(1 0 0 1 1627.4875 95.4658)" fill="#97A1A2"
  2669. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2670. :
  2671. </text>
  2672. </g>
  2673. <g>
  2674. <text transform="matrix(1 0 0 1 1599.0598 113.8252)" fill="#97A1A2"
  2675. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2676. P
  2677. </text>
  2678. <text transform="matrix(1 0 0 1 1606.0286 113.8252)" fill="#97A1A2"
  2679. font-family="'MicrosoftYaHei'" font-size="9.6234">
  2680. (kW)
  2681. </text>
  2682. <text transform="matrix(1 0 0 1 1627.4875 113.8252)" fill="#97A1A2"
  2683. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2684. :
  2685. </text>
  2686. </g>
  2687. <g>
  2688. <text transform="matrix(1 0 0 1 1591.0364 136.1104)" fill="#97A1A2"
  2689. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2690. Q
  2691. </text>
  2692. <text transform="matrix(1 0 0 1 1600.3196 136.1104)" fill="#97A1A2"
  2693. font-family="'MicrosoftYaHei'" font-size="9.6234">
  2694. (kVar)
  2695. </text>
  2696. <text transform="matrix(1 0 0 1 1627.4875 136.1104)" fill="#97A1A2"
  2697. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2698. :
  2699. </text>
  2700. </g>
  2701. <rect x="1586.239" y="142.159" opacity="0.9" fill="#162320"
  2702. enable-background="new " width="86.618" height="18.49" />
  2703. <g>
  2704. <text transform="matrix(1 0 0 1 1604.0129 156.1006)" fill="#97A1A2"
  2705. font-family="'MicrosoftYaHei'" font-size="11.3899">
  2706. COSΦ:
  2707. </text>
  2708. </g>
  2709. </g>
  2710. <g>
  2711. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2712. d="M1102.369,554.788" />
  2713. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2714. d="M1102.369,668.486" />
  2715. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2716. d="M1183.444,554.788" />
  2717. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2718. d="M1337.989,670.138" />
  2719. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2720. d="M1020.008,668.486" />
  2721. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2722. d="M1420.582,554.788" />
  2723. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2724. d="M1020.008,554.788" />
  2725. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2726. d="M936.694,668.486" />
  2727. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2728. d="M936.694,554.788" />
  2729. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2730. d="M855.699,668.486" />
  2731. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2732. d="M855.699,554.788" />
  2733. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2734. d="M773.199,554.788" />
  2735. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2736. d="M690.605,670.138" />
  2737. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2738. d="M535.846,554.788" />
  2739. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2740. d="M454.771,668.486" />
  2741. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2742. d="M454.771,554.788" />
  2743. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2744. d="M372.409,668.486" />
  2745. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2746. d="M372.409,554.788" />
  2747. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2748. d="M289.096,668.486" />
  2749. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2750. d="M289.096,554.788" />
  2751. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2752. d="M208.102,668.486" />
  2753. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2754. d="M208.102,554.788" />
  2755. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2756. d="M125.602,554.788" />
  2757. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2758. d="M43.008,670.138" />
  2759. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2760. d="M1559.326,493.303" />
  2761. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2762. d="M1559.326,391.677" />
  2763. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2764. d="M978.709,493.303" />
  2765. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2766. d="M978.709,391.677" />
  2767. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2768. d="M423.593,493.303" />
  2769. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2770. d="M423.593,391.677" />
  2771. </g>
  2772. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2773. d="M1749.754,554.788" />
  2774. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2775. d="M1749.754,668.486" />
  2776. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2777. d="M1584.078,668.486" />
  2778. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2779. d="M1503.082,668.486" />
  2780. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2781. d="M1584.078,554.788" />
  2782. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2783. d="M1667.393,668.486" />
  2784. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2785. d="M1667.393,554.788" />
  2786. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2787. d="M1830.828,554.788" />
  2788. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  2789. d="M773.199,668.486" />
  2790. </g>
  2791. <g id="kg">
  2792. <g id="nsskg1011">
  2793. <g v-if="ajaxData.nsskg1011" id="_8_">
  2794. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2795. x1="340.064" y1="178.93" x2="357.329" y2="178.93"></line>
  2796. <path fill="#A61F24"
  2797. d="M349.204,192.946c1.418,0,2.574,1.156,2.574,2.571c0,1.418-1.157,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571S347.782,192.946,349.204,192.946 M349.204,190.916c-2.545,0-4.604,2.061-4.604,4.604 c0,2.545,2.061,4.604,4.604,4.604c2.544,0,4.604-2.061,4.604-4.604C353.809,192.973,351.748,190.916,349.204,190.916 L349.204,190.916z"
  2798. data-v-0c9672f3=""></path>
  2799. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2800. x1="349.204" y1="179.158" x2="349.204" y2="191.907"></line>
  2801. </g>
  2802. <g v-else-if="ajaxData.nsskg1011 == false" id="_4_">
  2803. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2804. x1="340.064" y1="178.93" x2="357.329" y2="178.93"></line>
  2805. <path fill="#1B9D3A"
  2806. d="M349.204,192.946c1.418,0,2.574,1.156,2.574,2.571c0,1.422-1.157,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571C346.628,194.099,347.782,192.946,349.204,192.946 M349.204,190.916 c-2.545,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604c2.544,0,4.604-2.061,4.604-4.604S351.748,190.916,349.204,190.916 L349.204,190.916z"
  2807. data-v-0c9672f3=""></path>
  2808. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2809. x1="355.66" y1="181.094" x2="348.697" y2="191.907"></line>
  2810. </g>
  2811. </g>
  2812. <g id="nsskg1013">
  2813. <g v-if="ajaxData.nsskg1013" id="off">
  2814. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2815. x1="340.064" y1="52.279" x2="357.329" y2="52.279"></line>
  2816. <path fill="#A61F24"
  2817. d="M349.204,66.295c1.418,0,2.574,1.158,2.574,2.574s-1.157,2.572-2.574,2.572 c-1.42,0-2.572-1.157-2.572-2.572C346.628,67.449,347.782,66.295,349.204,66.295 M349.204,64.265 c-2.545,0-4.604,2.06-4.604,4.604s2.061,4.604,4.604,4.604c2.544,0,4.604-2.063,4.604-4.604 C353.809,66.324,351.748,64.265,349.204,64.265L349.204,64.265z"
  2818. data-v-0c9672f3=""></path>
  2819. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2820. x1="349.204" y1="52.506" x2="349.204" y2="65.26"></line>
  2821. </g>
  2822. <g v-else-if="ajaxData.nsskg1013 == false" id="_3_">
  2823. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2824. x1="340.064" y1="52.279" x2="357.329" y2="52.279"></line>
  2825. <path fill="#1B9D3A"
  2826. d="M349.204,66.295c1.418,0,2.574,1.158,2.574,2.574s-1.157,2.572-2.574,2.572 c-1.42,0-2.572-1.157-2.572-2.572C346.628,67.449,347.782,66.295,349.204,66.295 M349.204,64.265 c-2.545,0-4.604,2.06-4.604,4.604c0,2.543,2.061,4.604,4.604,4.604c2.544,0,4.604-2.063,4.604-4.604 C353.809,66.324,351.748,64.265,349.204,64.265L349.204,64.265z"
  2827. data-v-0c9672f3=""></path>
  2828. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2829. x1="355.66" y1="54.44" x2="348.697" y2="65.26"></line>
  2830. </g>
  2831. </g>
  2832. <g id="nsskg1010">
  2833. <g v-if="ajaxData.nsskg1010" id="">
  2834. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2835. x1="327.819" y1="30.823" x2="327.819" y2="48.089"></line>
  2836. <path fill="#A61F24"
  2837. d="M311.23,37.388c1.42,0,2.573,1.155,2.573,2.571s-1.156,2.572-2.573,2.572s-2.572-1.156-2.572-2.572 S309.812,37.388,311.23,37.388 M311.23,35.356c-2.544,0-4.603,2.061-4.603,4.604c0,2.545,2.06,4.604,4.603,4.604 s4.604-2.061,4.604-4.604C315.835,37.417,313.775,35.356,311.23,35.356L311.23,35.356z"
  2838. data-v-0c9672f3=""></path>
  2839. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2840. x1="327.594" y1="39.964" x2="314.843" y2="39.964"></line>
  2841. </g>
  2842. <g v-else-if="ajaxData.nsskg1010 == false" id="">
  2843. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2844. x1="327.819" y1="30.823" x2="327.819" y2="48.089"></line>
  2845. <path fill="#1B9D3A"
  2846. d="M311.23,37.388c1.42,0,2.576,1.155,2.576,2.571s-1.157,2.572-2.576,2.572s-2.572-1.156-2.572-2.572 S309.812,37.388,311.23,37.388 M311.23,35.356c-2.543,0-4.603,2.061-4.603,4.604c0,2.545,2.06,4.604,4.603,4.604 c2.544,0,4.607-2.061,4.607-4.604C315.838,37.417,313.775,35.356,311.23,35.356L311.23,35.356z"
  2847. data-v-0c9672f3=""></path>
  2848. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2849. x1="325.66" y1="46.42" x2="314.843" y2="39.456"></line>
  2850. </g>
  2851. </g>
  2852. <g id="nsskg10103">
  2853. <g v-if="ajaxData.nsskg10103" id="_1_">
  2854. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2855. x1="327.819" y1="77.941" x2="327.819" y2="95.207"></line>
  2856. <path fill="#A61F24"
  2857. d="M311.23,84.51c1.42,0,2.573,1.155,2.573,2.571s-1.156,2.573-2.573,2.573s-2.572-1.155-2.572-2.573 C308.658,85.664,309.812,84.51,311.23,84.51 M311.23,82.477c-2.544,0-4.603,2.061-4.603,4.604s2.06,4.604,4.603,4.604 s4.604-2.063,4.604-4.604S313.775,82.477,311.23,82.477L311.23,82.477z"
  2858. data-v-0c9672f3=""></path>
  2859. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2860. x1="327.594" y1="87.082" x2="314.843" y2="87.082"></line>
  2861. </g>
  2862. <g v-else-if="ajaxData.nsskg10103 == false" id="_1_">
  2863. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2864. x1="327.819" y1="77.941" x2="327.819" y2="95.207"></line>
  2865. <path fill="#1B9D3A"
  2866. d="M311.23,84.51c1.42,0,2.576,1.155,2.576,2.571s-1.157,2.573-2.576,2.573s-2.572-1.155-2.572-2.573 C308.658,85.664,309.812,84.51,311.23,84.51 M311.23,82.477c-2.543,0-4.603,2.061-4.603,4.604s2.06,4.604,4.603,4.604 c2.544,0,4.607-2.063,4.607-4.604S313.775,82.477,311.23,82.477L311.23,82.477z"
  2867. data-v-0c9672f3=""></path>
  2868. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2869. x1="325.66" y1="93.541" x2="314.843" y2="86.574"></line>
  2870. </g>
  2871. </g>
  2872. <g id="nsskg10101">
  2873. <g v-if="ajaxData.nsskg10101" id="_2_">
  2874. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2875. x1="327.819" y1="156.148" x2="327.819" y2="173.414"></line>
  2876. <path fill="#A61F24"
  2877. d="M311.23,162.719c1.42,0,2.573,1.154,2.573,2.569c0,1.421-1.156,2.573-2.573,2.573 s-2.572-1.157-2.572-2.573C308.656,163.869,309.812,162.719,311.23,162.719 M311.23,160.686c-2.544,0-4.603,2.06-4.603,4.603 s2.06,4.604,4.603,4.604s4.604-2.063,4.604-4.604C315.835,162.742,313.775,160.686,311.23,160.686L311.23,160.686z"
  2878. data-v-0c9672f3=""></path>
  2879. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2880. x1="327.594" y1="165.289" x2="314.843" y2="165.289"></line>
  2881. </g>
  2882. <g v-else-if="ajaxData.nsskg10101 == false" id="_2_">
  2883. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2884. x1="327.819" y1="156.148" x2="327.819" y2="173.414"></line>
  2885. <path fill="#1B9D3A"
  2886. d="M311.23,162.719c1.42,0,2.576,1.154,2.576,2.569c0,1.421-1.157,2.573-2.576,2.573 s-2.572-1.157-2.572-2.573C308.656,163.869,309.812,162.719,311.23,162.719 M311.23,160.686c-2.543,0-4.603,2.06-4.603,4.603 s2.06,4.604,4.603,4.604c2.544,0,4.607-2.063,4.607-4.604C315.838,162.742,313.775,160.686,311.23,160.686L311.23,160.686z"
  2887. data-v-0c9672f3=""></path>
  2888. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2889. x1="325.66" y1="171.748" x2="314.843" y2="164.781"></line>
  2890. </g>
  2891. </g>
  2892. <g id="nsskg1023">
  2893. <g v-if="ajaxData.nsskg1023" id="_9_">
  2894. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2895. x1="660.064" y1="90.172" x2="677.329" y2="90.172"></line>
  2896. <path fill="#A61F24"
  2897. d="M669.204,104.188c1.419,0,2.574,1.158,2.574,2.574c0,1.416-1.157,2.57-2.574,2.57 c-1.42,0-2.572-1.155-2.572-2.57C666.628,105.344,667.782,104.188,669.204,104.188 M669.204,102.157 c-2.545,0-4.604,2.062-4.604,4.604s2.061,4.604,4.604,4.604c2.544,0,4.604-2.061,4.604-4.604 C673.809,104.218,671.748,102.157,669.204,102.157L669.204,102.157z"
  2898. data-v-0c9672f3=""></path>
  2899. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2900. x1="669.204" y1="90.398" x2="669.204" y2="103.15"></line>
  2901. </g>
  2902. <g v-else-if="ajaxData.nsskg1023 == false" id="_9_">
  2903. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2904. x1="660.064" y1="90.172" x2="677.329" y2="90.172"></line>
  2905. <path fill="#1B9D3A"
  2906. d="M669.204,104.188c1.419,0,2.574,1.158,2.574,2.574c0,1.416-1.157,2.57-2.574,2.57 c-1.42,0-2.572-1.155-2.572-2.57C666.628,105.344,667.782,104.188,669.204,104.188 M669.204,102.157 c-2.545,0-4.604,2.062-4.604,4.604s2.061,4.604,4.604,4.604c2.544,0,4.604-2.061,4.604-4.604 C673.809,104.218,671.748,102.157,669.204,102.157L669.204,102.157z"
  2907. data-v-0c9672f3=""></path>
  2908. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2909. x1="675.66" y1="92.333" x2="668.697" y2="103.15"></line>
  2910. </g>
  2911. </g>
  2912. <g id="nsskg1111">
  2913. <g v-if="ajaxData.nsskg1111" id="_6_">
  2914. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2915. x1="660.064" y1="179.93" x2="677.329" y2="179.93"></line>
  2916. <path fill="#A61F24"
  2917. d="M669.204,193.946c1.419,0,2.574,1.156,2.574,2.571c0,1.418-1.157,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571S667.782,193.946,669.204,193.946 M669.204,191.916c-2.545,0-4.604,2.061-4.604,4.604 c0,2.545,2.061,4.604,4.604,4.604c2.544,0,4.604-2.061,4.604-4.604C673.809,193.973,671.748,191.916,669.204,191.916 L669.204,191.916z"
  2918. data-v-0c9672f3=""></path>
  2919. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2920. x1="669.204" y1="180.158" x2="669.204" y2="192.907"></line>
  2921. </g>
  2922. <g v-else-if="ajaxData.nsskg1111 == false" id="_8_">
  2923. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2924. x1="660.064" y1="179.93" x2="677.329" y2="179.93"></line>
  2925. <path fill="#1B9D3A"
  2926. d="M669.204,193.946c1.419,0,2.574,1.156,2.574,2.571c0,1.422-1.157,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571C666.628,195.099,667.782,193.946,669.204,193.946 M669.204,191.916 c-2.545,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604c2.544,0,4.604-2.061,4.604-4.604S671.748,191.916,669.204,191.916 L669.204,191.916z"
  2927. data-v-0c9672f3=""></path>
  2928. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2929. x1="675.66" y1="182.094" x2="668.697" y2="192.907"></line>
  2930. </g>
  2931. </g>
  2932. <g id="nsskg1110">
  2933. <g v-if="ajaxData.nsskg1110" id="_5_">
  2934. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2935. x1="647.819" y1="60.791" x2="647.819" y2="78.057"></line>
  2936. <path fill="#A61F24"
  2937. d="M631.23,67.355c1.42,0,2.571,1.157,2.571,2.573c0,1.416-1.155,2.57-2.571,2.57 c-1.418,0-2.572-1.154-2.572-2.57C628.657,68.512,629.813,67.355,631.23,67.355 M631.23,65.324c-2.545,0-4.604,2.063-4.604,4.604 c0,2.545,2.063,4.604,4.604,4.604s4.604-2.059,4.604-4.604C635.835,67.385,633.775,65.324,631.23,65.324L631.23,65.324z"
  2938. data-v-0c9672f3=""></path>
  2939. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2940. x1="647.594" y1="69.932" x2="634.843" y2="69.932"></line>
  2941. </g>
  2942. <g v-else-if="ajaxData.nsskg1110 == false" id="_7_">
  2943. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2944. x1="647.819" y1="60.791" x2="647.819" y2="78.057"></line>
  2945. <path fill="#1B9D3A"
  2946. d="M631.23,67.355c1.42,0,2.574,1.157,2.574,2.573c0,1.416-1.156,2.57-2.574,2.57 c-1.42,0-2.572-1.154-2.572-2.57C628.657,68.512,629.813,67.355,631.23,67.355 M631.23,65.324c-2.543,0-4.604,2.063-4.604,4.604 c0,2.545,2.063,4.604,4.604,4.604s4.604-2.059,4.604-4.604C635.838,67.385,633.775,65.324,631.23,65.324L631.23,65.324z"
  2947. data-v-0c9672f3=""></path>
  2948. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2949. x1="645.66" y1="76.388" x2="634.843" y2="69.424"></line>
  2950. </g>
  2951. </g>
  2952. <g id="nsskg11103">
  2953. <g v-if="ajaxData.nsskg11103" id="_4_">
  2954. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2955. x1="647.819" y1="113.029" x2="647.819" y2="130.295"></line>
  2956. <path fill="#A61F24"
  2957. d="M631.23,119.596c1.42,0,2.571,1.155,2.571,2.571s-1.155,2.573-2.571,2.573 c-1.418,0-2.572-1.155-2.572-2.573C628.658,120.752,629.813,119.596,631.23,119.596 M631.23,117.564 c-2.545,0-4.604,2.061-4.604,4.604s2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604S633.775,117.564,631.23,117.564 L631.23,117.564z"
  2958. data-v-0c9672f3=""></path>
  2959. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2960. x1="647.594" y1="122.17" x2="634.843" y2="122.17"></line>
  2961. </g>
  2962. <g v-else-if="ajaxData.nsskg11103 == false" id="_6_">
  2963. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2964. x1="647.819" y1="113.029" x2="647.819" y2="130.295"></line>
  2965. <path fill="#1B9D3A"
  2966. d="M631.23,119.596c1.42,0,2.574,1.155,2.574,2.571s-1.156,2.573-2.574,2.573 c-1.42,0-2.572-1.155-2.572-2.573C628.658,120.752,629.813,119.596,631.23,119.596 M631.23,117.564 c-2.543,0-4.604,2.061-4.604,4.604s2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604S633.775,117.564,631.23,117.564 L631.23,117.564z"
  2967. data-v-0c9672f3=""></path>
  2968. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2969. x1="645.66" y1="128.629" x2="634.843" y2="121.662"></line>
  2970. </g>
  2971. </g>
  2972. <g id="nsskg11101">
  2973. <g v-if="ajaxData.nsskg11101" id="_3_">
  2974. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2975. x1="647.819" y1="157.148" x2="647.819" y2="174.414"></line>
  2976. <path fill="#A61F24"
  2977. d="M631.23,163.719c1.42,0,2.571,1.154,2.571,2.569c0,1.421-1.155,2.573-2.571,2.573 c-1.418,0-2.572-1.157-2.572-2.573C628.656,164.869,629.813,163.719,631.23,163.719 M631.23,161.686 c-2.545,0-4.604,2.06-4.604,4.603s2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604 C635.835,163.742,633.775,161.686,631.23,161.686L631.23,161.686z"
  2978. data-v-0c9672f3=""></path>
  2979. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  2980. x1="647.594" y1="166.289" x2="634.843" y2="166.289"></line>
  2981. </g>
  2982. <g v-else-if="ajaxData.nsskg11101 == false" id="_5_">
  2983. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  2984. x1="647.819" y1="157.148" x2="647.819" y2="174.414"></line>
  2985. <path fill="#1B9D3A"
  2986. d="M631.23,163.719c1.42,0,2.574,1.154,2.574,2.569c0,1.421-1.156,2.573-2.574,2.573 c-1.42,0-2.572-1.157-2.572-2.573C628.656,164.869,629.813,163.719,631.23,163.719 M631.23,161.686 c-2.543,0-4.604,2.06-4.604,4.603s2.063,4.604,4.604,4.604s4.604-2.063,4.604-4.604 C635.838,163.742,633.775,161.686,631.23,161.686L631.23,161.686z"
  2987. data-v-0c9672f3=""></path>
  2988. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  2989. x1="645.66" y1="172.748" x2="634.843" y2="165.781"></line>
  2990. </g>
  2991. </g>
  2992. <g id="nsskg1023">
  2993. <g v-if="ajaxData.nsskg1023" id="_14_">
  2994. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  2995. x1="897.064" y1="52.279" x2="914.329" y2="52.279"></line>
  2996. <path fill="#A61F24"
  2997. d="M906.204,66.295c1.419,0,2.574,1.158,2.574,2.574s-1.157,2.572-2.574,2.572 c-1.42,0-2.572-1.157-2.572-2.572C903.629,67.449,904.783,66.295,906.204,66.295 M906.204,64.265 c-2.545,0-4.604,2.06-4.604,4.604s2.061,4.604,4.604,4.604c2.544,0,4.604-2.063,4.604-4.604 C910.811,66.324,908.75,64.265,906.204,64.265L906.204,64.265z"
  2998. data-v-0c9672f3=""></path>
  2999. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3000. x1="906.204" y1="52.506" x2="906.204" y2="65.26"></line>
  3001. </g>
  3002. <g v-else-if="ajaxData.nsskg1023 == false" id="_14_">
  3003. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3004. x1="897.064" y1="52.279" x2="914.329" y2="52.279"></line>
  3005. <path fill="#1B9D3A"
  3006. d="M906.204,66.295c1.419,0,2.574,1.158,2.574,2.574s-1.157,2.572-2.574,2.572 c-1.42,0-2.572-1.157-2.572-2.572C903.629,67.449,904.783,66.295,906.204,66.295 M906.204,64.265 c-2.545,0-4.604,2.06-4.604,4.604c0,2.543,2.061,4.604,4.604,4.604c2.544,0,4.604-2.063,4.604-4.604 C910.811,66.324,908.75,64.265,906.204,64.265L906.204,64.265z"
  3007. data-v-0c9672f3=""></path>
  3008. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3009. x1="912.66" y1="54.44" x2="905.697" y2="65.26"></line>
  3010. </g>
  3011. </g>
  3012. <g id="nsskg1021">
  3013. <g v-if="ajaxData.nsskg1021" id="_13_">
  3014. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3015. x1="897.064" y1="178.93" x2="914.329" y2="178.93"></line>
  3016. <path fill="#A61F24"
  3017. d="M906.204,192.946c1.419,0,2.574,1.156,2.574,2.571c0,1.418-1.157,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571S904.783,192.946,906.204,192.946 M906.204,190.916c-2.545,0-4.604,2.061-4.604,4.604 c0,2.545,2.061,4.604,4.604,4.604c2.544,0,4.604-2.061,4.604-4.604C910.811,192.973,908.75,190.916,906.204,190.916 L906.204,190.916z"
  3018. data-v-0c9672f3=""></path>
  3019. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3020. x1="906.204" y1="179.158" x2="906.204" y2="191.907"></line>
  3021. </g>
  3022. <g v-else-if="ajaxData.nsskg1021 == false" id="_13_">
  3023. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3024. x1="897.064" y1="178.93" x2="914.329" y2="178.93"></line>
  3025. <path fill="#1B9D3A"
  3026. d="M906.204,192.946c1.419,0,2.574,1.156,2.574,2.571c0,1.422-1.157,2.571-2.574,2.571 c-1.42,0-2.572-1.155-2.572-2.571C903.629,194.099,904.783,192.946,906.204,192.946 M906.204,190.916 c-2.545,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604c2.544,0,4.604-2.061,4.604-4.604 C910.811,192.975,908.75,190.916,906.204,190.916L906.204,190.916z"
  3027. data-v-0c9672f3=""></path>
  3028. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3029. x1="912.66" y1="181.094" x2="905.697" y2="191.907"></line>
  3030. </g>
  3031. </g>
  3032. <g id="nsskg1020">
  3033. <g v-if="ajaxData.nsskg1020" id="_12_">
  3034. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3035. x1="883.819" y1="30.823" x2="883.819" y2="48.089"></line>
  3036. <path fill="#A61F24"
  3037. d="M867.23,37.388c1.421,0,2.572,1.155,2.572,2.571s-1.154,2.572-2.572,2.572 c-1.416,0-2.571-1.156-2.571-2.572S865.813,37.388,867.23,37.388 M867.23,35.356c-2.543,0-4.604,2.061-4.604,4.604 c0,2.545,2.062,4.604,4.604,4.604s4.604-2.061,4.604-4.604C871.835,37.417,869.775,35.356,867.23,35.356L867.23,35.356z"
  3038. data-v-0c9672f3=""></path>
  3039. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3040. x1="883.595" y1="39.964" x2="870.844" y2="39.964"></line>
  3041. </g>
  3042. <g v-else-if="ajaxData.nsskg1020 == false" id="_12_">
  3043. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3044. x1="883.819" y1="30.823" x2="883.819" y2="48.089"></line>
  3045. <path fill="#1B9D3A"
  3046. d="M867.23,37.388c1.421,0,2.575,1.155,2.575,2.571s-1.155,2.572-2.575,2.572 c-1.418,0-2.571-1.156-2.571-2.572S865.813,37.388,867.23,37.388 M867.23,35.356c-2.543,0-4.604,2.061-4.604,4.604 c0,2.545,2.062,4.604,4.604,4.604c2.545,0,4.606-2.061,4.606-4.604C871.838,37.417,869.775,35.356,867.23,35.356L867.23,35.356z"
  3047. data-v-0c9672f3=""></path>
  3048. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3049. x1="881.66" y1="46.42" x2="870.844" y2="39.456"></line>
  3050. </g>
  3051. </g>
  3052. <g id="nsskg10203">
  3053. <g v-if="ajaxData.nsskg10203" id="_11_">
  3054. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3055. x1="883.819" y1="77.941" x2="883.819" y2="95.207"></line>
  3056. <path fill="#A61F24"
  3057. d="M867.23,84.51c1.421,0,2.572,1.155,2.572,2.571s-1.154,2.573-2.572,2.573 c-1.416,0-2.571-1.155-2.571-2.573C864.658,85.664,865.813,84.51,867.23,84.51 M867.23,82.477c-2.543,0-4.604,2.061-4.604,4.604 s2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604S869.775,82.477,867.23,82.477L867.23,82.477z"
  3058. data-v-0c9672f3=""></path>
  3059. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3060. x1="883.595" y1="87.082" x2="870.844" y2="87.082"></line>
  3061. </g>
  3062. <g v-else-if="ajaxData.nsskg10203 == false" id="_11_">
  3063. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3064. x1="883.819" y1="77.941" x2="883.819" y2="95.207"></line>
  3065. <path fill="#1B9D3A"
  3066. d="M867.23,84.51c1.421,0,2.575,1.155,2.575,2.571s-1.155,2.573-2.575,2.573 c-1.418,0-2.571-1.155-2.571-2.573C864.658,85.664,865.813,84.51,867.23,84.51 M867.23,82.477c-2.543,0-4.604,2.061-4.604,4.604 s2.062,4.604,4.604,4.604c2.545,0,4.606-2.063,4.606-4.604S869.775,82.477,867.23,82.477L867.23,82.477z"
  3067. data-v-0c9672f3=""></path>
  3068. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3069. x1="881.66" y1="93.541" x2="870.844" y2="86.574"></line>
  3070. </g>
  3071. </g>
  3072. <g id="nsskg10201">
  3073. <g v-if="ajaxData.nsskg10201" id="_10_">
  3074. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3075. x1="883.819" y1="156.148" x2="883.819" y2="173.414"></line>
  3076. <path fill="#A61F24"
  3077. d="M867.23,162.719c1.421,0,2.572,1.154,2.572,2.569c0,1.421-1.154,2.573-2.572,2.573 c-1.416,0-2.571-1.157-2.571-2.573C864.657,163.869,865.813,162.719,867.23,162.719 M867.23,160.686 c-2.543,0-4.604,2.06-4.604,4.603s2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604 C871.835,162.742,869.775,160.686,867.23,160.686L867.23,160.686z"
  3078. data-v-0c9672f3=""></path>
  3079. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3080. x1="883.595" y1="165.289" x2="870.844" y2="165.289"></line>
  3081. </g>
  3082. <g v-else-if="ajaxData.nsskg10201 == false" id="_10_">
  3083. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3084. x1="883.819" y1="156.148" x2="883.819" y2="173.414"></line>
  3085. <path fill="#1B9D3A"
  3086. d="M867.23,162.719c1.421,0,2.575,1.154,2.575,2.569c0,1.421-1.155,2.573-2.575,2.573 c-1.418,0-2.571-1.157-2.571-2.573C864.657,163.869,865.813,162.719,867.23,162.719 M867.23,160.686 c-2.543,0-4.604,2.06-4.604,4.603s2.062,4.604,4.604,4.604c2.545,0,4.606-2.063,4.606-4.604 C871.838,162.742,869.775,160.686,867.23,160.686L867.23,160.686z"
  3087. data-v-0c9672f3=""></path>
  3088. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3089. x1="881.66" y1="171.748" x2="870.844" y2="164.781"></line>
  3090. </g>
  3091. </g>
  3092. <g id="nsskg1033">
  3093. <g v-if="ajaxData.nsskg1033" id="_24_">
  3094. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3095. x1="1475.686" y1="52.279" x2="1492.949" y2="52.279"></line>
  3096. <path fill="#A61F24"
  3097. d="M1484.824,66.295c1.418,0,2.573,1.158,2.573,2.574s-1.157,2.572-2.573,2.572 c-1.421,0-2.572-1.157-2.572-2.572C1482.248,67.449,1483.402,66.295,1484.824,66.295 M1484.824,64.265 c-2.546,0-4.604,2.06-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604 C1489.43,66.324,1487.369,64.265,1484.824,64.265L1484.824,64.265z"
  3098. data-v-0c9672f3=""></path>
  3099. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3100. x1="1484.824" y1="52.506" x2="1484.824" y2="65.26"></line>
  3101. </g>
  3102. <g v-else-if="ajaxData.nsskg1033 == false" id="_24_">
  3103. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3104. x1="1475.686" y1="52.279" x2="1492.949" y2="52.279"></line>
  3105. <path fill="#1B9D3A"
  3106. d="M1484.824,66.295c1.418,0,2.573,1.158,2.573,2.574s-1.157,2.572-2.573,2.572 c-1.421,0-2.572-1.157-2.572-2.572C1482.248,67.449,1483.402,66.295,1484.824,66.295 M1484.824,64.265 c-2.546,0-4.604,2.06-4.604,4.604c0,2.543,2.063,4.604,4.604,4.604c2.545,0,4.604-2.063,4.604-4.604 C1489.43,66.324,1487.369,64.265,1484.824,64.265L1484.824,64.265z"
  3107. data-v-0c9672f3=""></path>
  3108. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3109. x1="1491.281" y1="54.44" x2="1484.316" y2="65.26"></line>
  3110. </g>
  3111. </g>
  3112. <g id="nsskg1032">
  3113. <g v-if="ajaxData.nsskg1032" id="_23_">
  3114. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3115. x1="1475.686" y1="178.93" x2="1492.949" y2="178.93"></line>
  3116. <path fill="#A61F24"
  3117. d="M1484.824,192.946c1.418,0,2.573,1.156,2.573,2.571c0,1.418-1.157,2.571-2.573,2.571 c-1.421,0-2.572-1.155-2.572-2.571S1483.402,192.946,1484.824,192.946 M1484.824,190.916c-2.546,0-4.604,2.061-4.604,4.604 c0,2.545,2.063,4.604,4.604,4.604c2.545,0,4.604-2.061,4.604-4.604C1489.43,192.973,1487.369,190.916,1484.824,190.916 L1484.824,190.916z"
  3118. data-v-0c9672f3=""></path>
  3119. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3120. x1="1484.824" y1="179.158" x2="1484.824" y2="191.907"></line>
  3121. </g>
  3122. <g v-else-if="ajaxData.nsskg1032 == false" id="_23_">
  3123. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3124. x1="1475.686" y1="178.93" x2="1492.949" y2="178.93"></line>
  3125. <path fill="#1B9D3A"
  3126. d="M1484.824,192.946c1.418,0,2.573,1.156,2.573,2.571c0,1.422-1.157,2.571-2.573,2.571 c-1.421,0-2.572-1.155-2.572-2.571C1482.248,194.099,1483.402,192.946,1484.824,192.946 M1484.824,190.916 c-2.546,0-4.604,2.061-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.061,4.604-4.604 C1489.43,192.975,1487.369,190.916,1484.824,190.916L1484.824,190.916z"
  3127. data-v-0c9672f3=""></path>
  3128. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3129. x1="1491.281" y1="181.094" x2="1484.316" y2="191.907"></line>
  3130. </g>
  3131. </g>
  3132. <g id="nsskg1030">
  3133. <g v-if="ajaxData.nsskg1030" id="_22_">
  3134. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3135. x1="1462.439" y1="30.823" x2="1462.439" y2="48.089"></line>
  3136. <path fill="#A61F24"
  3137. d="M1445.852,37.388c1.42,0,2.572,1.155,2.572,2.571s-1.156,2.572-2.572,2.572 c-1.418,0-2.571-1.156-2.571-2.572S1444.432,37.388,1445.852,37.388 M1445.852,35.356c-2.545,0-4.604,2.061-4.604,4.604 c0,2.545,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604S1448.395,35.356,1445.852,35.356L1445.852,35.356z"
  3138. data-v-0c9672f3=""></path>
  3139. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3140. x1="1462.215" y1="39.964" x2="1449.463" y2="39.964"></line>
  3141. </g>
  3142. <g v-else-if="ajaxData.nsskg1030 == false" id="_22_">
  3143. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3144. x1="1462.439" y1="30.823" x2="1462.439" y2="48.089"></line>
  3145. <path fill="#1B9D3A"
  3146. d="M1445.852,37.388c1.42,0,2.574,1.155,2.574,2.571s-1.156,2.572-2.574,2.572 c-1.42,0-2.571-1.156-2.571-2.572S1444.432,37.388,1445.852,37.388 M1445.852,35.356c-2.543,0-4.604,2.061-4.604,4.604 c0,2.545,2.061,4.604,4.604,4.604s4.605-2.061,4.605-4.604S1448.395,35.356,1445.852,35.356L1445.852,35.356z"
  3147. data-v-0c9672f3=""></path>
  3148. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3149. x1="1460.281" y1="46.42" x2="1449.463" y2="39.456"></line>
  3150. </g>
  3151. </g>
  3152. <g id="nsskg10303">
  3153. <g v-if="ajaxData.nsskg10303" id="_21_">
  3154. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3155. x1="1462.439" y1="77.941" x2="1462.439" y2="95.207"></line>
  3156. <path fill="#A61F24"
  3157. d="M1445.852,84.51c1.42,0,2.572,1.155,2.572,2.571s-1.156,2.573-2.572,2.573 c-1.418,0-2.571-1.155-2.571-2.573C1443.28,85.664,1444.432,84.51,1445.852,84.51 M1445.852,82.477 c-2.545,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604S1448.395,82.477,1445.852,82.477 L1445.852,82.477z"
  3158. data-v-0c9672f3=""></path>
  3159. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3160. x1="1462.215" y1="87.082" x2="1449.463" y2="87.082"></line>
  3161. </g>
  3162. <g v-else-if="ajaxData.nsskg10303 == false" id="_21_">
  3163. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3164. x1="1462.439" y1="77.941" x2="1462.439" y2="95.207"></line>
  3165. <path fill="#1B9D3A"
  3166. d="M1445.852,84.51c1.42,0,2.574,1.155,2.574,2.571s-1.156,2.573-2.574,2.573 c-1.42,0-2.571-1.155-2.571-2.573C1443.28,85.664,1444.432,84.51,1445.852,84.51 M1445.852,82.477 c-2.543,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604s4.605-2.063,4.605-4.604S1448.395,82.477,1445.852,82.477 L1445.852,82.477z"
  3167. data-v-0c9672f3=""></path>
  3168. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3169. x1="1460.281" y1="93.541" x2="1449.463" y2="86.574"></line>
  3170. </g>
  3171. </g>
  3172. <g id="nsskg10301">
  3173. <g v-if="ajaxData.nsskg10301" id="_20_">
  3174. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3175. x1="1462.439" y1="156.148" x2="1462.439" y2="173.414"></line>
  3176. <path fill="#A61F24"
  3177. d="M1445.852,162.719c1.42,0,2.572,1.154,2.572,2.569c0,1.421-1.156,2.573-2.572,2.573 c-1.418,0-2.571-1.157-2.571-2.573C1443.277,163.869,1444.432,162.719,1445.852,162.719 M1445.852,160.686 c-2.545,0-4.604,2.06-4.604,4.603s2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604 C1450.455,162.742,1448.395,160.686,1445.852,160.686L1445.852,160.686z"
  3178. data-v-0c9672f3=""></path>
  3179. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3180. x1="1462.215" y1="165.289" x2="1449.463" y2="165.289"></line>
  3181. </g>
  3182. <g v-else-if="ajaxData.nsskg10301 == false" id="_20_">
  3183. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3184. x1="1462.439" y1="156.148" x2="1462.439" y2="173.414"></line>
  3185. <path fill="#1B9D3A"
  3186. d="M1445.852,162.719c1.42,0,2.574,1.154,2.574,2.569c0,1.421-1.156,2.573-2.574,2.573 c-1.42,0-2.571-1.157-2.571-2.573C1443.277,163.869,1444.432,162.719,1445.852,162.719 M1445.852,160.686 c-2.543,0-4.604,2.06-4.604,4.603s2.061,4.604,4.604,4.604s4.605-2.063,4.605-4.604 C1450.457,162.742,1448.395,160.686,1445.852,160.686L1445.852,160.686z"
  3187. data-v-0c9672f3=""></path>
  3188. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3189. x1="1460.281" y1="171.748" x2="1449.463" y2="164.781"></line>
  3190. </g>
  3191. </g>
  3192. <g id="nsskg1213">
  3193. <g v-if="ajaxData.nsskg1213" id="_19_">
  3194. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3195. x1="1248.525" y1="90.172" x2="1265.791" y2="90.172"></line>
  3196. <path fill="#A61F24"
  3197. d="M1257.666,104.188c1.418,0,2.574,1.158,2.574,2.574c0,1.416-1.158,2.57-2.574,2.57 c-1.42,0-2.573-1.155-2.573-2.57C1255.09,105.344,1256.244,104.188,1257.666,104.188 M1257.666,102.157 c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604c2.546,0,4.604-2.061,4.604-4.604 C1262.271,104.218,1260.211,102.157,1257.666,102.157L1257.666,102.157z"
  3198. data-v-0c9672f3=""></path>
  3199. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3200. x1="1257.666" y1="90.398" x2="1257.666" y2="103.15"></line>
  3201. </g>
  3202. <g v-else-if="ajaxData.nsskg1213 == false" id="_19_">
  3203. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3204. x1="1248.525" y1="90.172" x2="1265.791" y2="90.172"></line>
  3205. <path fill="#1B9D3A"
  3206. d="M1257.666,104.188c1.418,0,2.574,1.158,2.574,2.574c0,1.416-1.158,2.57-2.574,2.57 c-1.42,0-2.573-1.155-2.573-2.57C1255.09,105.344,1256.244,104.188,1257.666,104.188 M1257.666,102.157 c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604c2.546,0,4.604-2.061,4.604-4.604 C1262.271,104.218,1260.211,102.157,1257.666,102.157L1257.666,102.157z"
  3207. data-v-0c9672f3=""></path>
  3208. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3209. x1="1264.121" y1="92.333" x2="1257.158" y2="103.15"></line>
  3210. </g>
  3211. </g>
  3212. <g id="nsskg1212">
  3213. <g v-if="ajaxData.nsskg1212" id="_18_">
  3214. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3215. x1="1248.525" y1="179.93" x2="1265.791" y2="179.93"></line>
  3216. <path fill="#A61F24"
  3217. d="M1257.666,193.946c1.418,0,2.574,1.156,2.574,2.571c0,1.418-1.158,2.571-2.574,2.571 c-1.42,0-2.573-1.155-2.573-2.571S1256.244,193.946,1257.666,193.946 M1257.666,191.916c-2.545,0-4.604,2.061-4.604,4.604 c0,2.545,2.063,4.604,4.604,4.604c2.546,0,4.604-2.061,4.604-4.604C1262.271,193.973,1260.211,191.916,1257.666,191.916 L1257.666,191.916z"
  3218. data-v-0c9672f3=""></path>
  3219. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3220. x1="1257.666" y1="180.158" x2="1257.666" y2="192.907"></line>
  3221. </g>
  3222. <g v-else-if="ajaxData.nsskg1212 == false" id="_18_">
  3223. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3224. x1="1248.525" y1="179.93" x2="1265.791" y2="179.93"></line>
  3225. <path fill="#1B9D3A"
  3226. d="M1257.666,193.946c1.418,0,2.574,1.156,2.574,2.571c0,1.422-1.158,2.571-2.574,2.571 c-1.42,0-2.573-1.155-2.573-2.571C1255.09,195.099,1256.244,193.946,1257.666,193.946 M1257.666,191.916 c-2.545,0-4.604,2.061-4.604,4.604s2.063,4.604,4.604,4.604c2.546,0,4.604-2.061,4.604-4.604S1260.211,191.916,1257.666,191.916 L1257.666,191.916z"
  3227. data-v-0c9672f3=""></path>
  3228. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3229. x1="1264.121" y1="182.094" x2="1257.158" y2="192.907"></line>
  3230. </g>
  3231. </g>
  3232. <g id="nsskg12103">
  3233. <g v-if="ajaxData.nsskg12103" id="_16_">
  3234. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3235. x1="1236.28" y1="113.029" x2="1236.28" y2="130.295"></line>
  3236. <path fill="#A61F24"
  3237. d="M1219.691,119.596c1.421,0,2.574,1.155,2.574,2.571s-1.156,2.573-2.574,2.573s-2.571-1.155-2.571-2.573 C1217.119,120.752,1218.273,119.596,1219.691,119.596 M1219.691,117.564c-2.545,0-4.604,2.061-4.604,4.604 s2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604S1222.237,117.564,1219.691,117.564L1219.691,117.564z"
  3238. data-v-0c9672f3=""></path>
  3239. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3240. x1="1236.057" y1="122.17" x2="1223.307" y2="122.17"></line>
  3241. </g>
  3242. <g v-else-if="ajaxData.nsskg12103 == false" id="_16_">
  3243. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3244. x1="1236.28" y1="113.029" x2="1236.28" y2="130.295"></line>
  3245. <path fill="#1B9D3A"
  3246. d="M1219.691,119.596c1.421,0,2.576,1.155,2.576,2.571s-1.155,2.573-2.576,2.573 c-1.418,0-2.571-1.155-2.571-2.573C1217.119,120.752,1218.273,119.596,1219.691,119.596 M1219.691,117.564 c-2.543,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604c2.546,0,4.607-2.063,4.607-4.604S1222.237,117.564,1219.691,117.564 L1219.691,117.564z"
  3247. data-v-0c9672f3=""></path>
  3248. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3249. x1="1234.121" y1="128.629" x2="1223.307" y2="121.662"></line>
  3250. </g>
  3251. </g>
  3252. <g id="nsskg12101">
  3253. <g v-if="ajaxData.nsskg12101" id="_15_">
  3254. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3255. x1="1236.28" y1="157.148" x2="1236.28" y2="174.414"></line>
  3256. <path fill="#A61F24"
  3257. d="M1219.691,163.719c1.421,0,2.574,1.154,2.574,2.569c0,1.421-1.156,2.573-2.574,2.573 s-2.571-1.157-2.571-2.573C1217.119,164.869,1218.273,163.719,1219.691,163.719 M1219.691,161.686 c-2.545,0-4.604,2.06-4.604,4.603s2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604 C1224.297,163.742,1222.237,161.686,1219.691,161.686L1219.691,161.686z"
  3258. data-v-0c9672f3=""></path>
  3259. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3260. x1="1236.057" y1="166.289" x2="1223.307" y2="166.289"></line>
  3261. </g>
  3262. <g v-else-if="ajaxData.nsskg12101 == false" id="_15_">
  3263. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3264. x1="1236.28" y1="157.148" x2="1236.28" y2="174.414"></line>
  3265. <path fill="#1B9D3A"
  3266. d="M1219.691,163.719c1.421,0,2.576,1.154,2.576,2.569c0,1.421-1.155,2.573-2.576,2.573 c-1.418,0-2.571-1.157-2.571-2.573C1217.119,164.869,1218.273,163.719,1219.691,163.719 M1219.691,161.686 c-2.543,0-4.604,2.06-4.604,4.603s2.061,4.604,4.604,4.604c2.546,0,4.607-2.063,4.607-4.604 C1224.299,163.742,1222.237,161.686,1219.691,161.686L1219.691,161.686z"
  3267. data-v-0c9672f3=""></path>
  3268. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3269. x1="1234.121" y1="172.748" x2="1223.307" y2="165.781"></line>
  3270. </g>
  3271. </g>
  3272. <g id="nsskg119">
  3273. <g v-if="ajaxData.nsskg119" id="_25_">
  3274. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3275. x1="99.95" y1="239.059" x2="117.214" y2="239.059"></line>
  3276. <path fill="#A61F24"
  3277. d="M109.089,253.074c1.418,0,2.574,1.156,2.574,2.572c0,1.418-1.157,2.572-2.574,2.572 c-1.42,0-2.573-1.156-2.573-2.572S107.668,253.074,109.089,253.074 M109.089,251.045c-2.545,0-4.604,2.061-4.604,4.604 c0,2.545,2.062,4.604,4.604,4.604c2.545,0,4.604-2.061,4.604-4.604C113.694,253.102,111.634,251.045,109.089,251.045 L109.089,251.045z"
  3278. data-v-0c9672f3=""></path>
  3279. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3280. x1="109.089" y1="239.287" x2="109.089" y2="252.035"></line>
  3281. </g>
  3282. <g v-else-if="ajaxData.nsskg119 == false" id="_25_">
  3283. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3284. x1="99.95" y1="239.059" x2="117.214" y2="239.059"></line>
  3285. <path fill="#1B9D3A"
  3286. d="M109.089,253.074c1.418,0,2.574,1.156,2.574,2.572c0,1.422-1.157,2.572-2.574,2.572 c-1.42,0-2.573-1.156-2.573-2.572C106.513,254.227,107.668,253.074,109.089,253.074 M109.089,251.045 c-2.545,0-4.604,2.061-4.604,4.604s2.062,4.604,4.604,4.604c2.545,0,4.604-2.061,4.604-4.604S111.634,251.045,109.089,251.045 L109.089,251.045z"
  3287. data-v-0c9672f3=""></path>
  3288. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3289. x1="115.545" y1="241.221" x2="108.582" y2="252.035"></line>
  3290. </g>
  3291. </g>
  3292. <g id="nsskg0110">
  3293. <g v-if="ajaxData.nsskg0110" id="_28_">
  3294. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3295. x1="332.724" y1="316.779" x2="349.99" y2="316.779"></line>
  3296. <path fill="#A61F24"
  3297. d="M339.291,333.368c0-1.421,1.156-2.571,2.571-2.571c1.421,0,2.573,1.154,2.573,2.571 s-1.157,2.571-2.573,2.571C340.445,335.941,339.291,334.787,339.291,333.368 M337.261,333.368c0,2.544,2.062,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C339.318,328.764,337.261,330.824,337.261,333.368L337.261,333.368z"
  3298. data-v-0c9672f3=""></path>
  3299. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3300. x1="341.865" y1="317.006" x2="341.865" y2="329.758"></line>
  3301. </g>
  3302. <g v-else-if="ajaxData.nsskg0110 == false" id="_28_">
  3303. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3304. x1="332.724" y1="316.779" x2="349.99" y2="316.779"></line>
  3305. <path fill="#1B9D3A"
  3306. d="M339.291,333.368c0-1.421,1.156-2.576,2.571-2.576c1.421,0,2.573,1.157,2.573,2.576 s-1.157,2.571-2.573,2.571C340.445,335.941,339.291,334.787,339.291,333.368 M337.261,333.368c0,2.543,2.062,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C339.318,328.761,337.261,330.824,337.261,333.368L337.261,333.368z"
  3307. data-v-0c9672f3=""></path>
  3308. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3309. x1="348.323" y1="318.938" x2="341.357" y2="329.758"></line>
  3310. </g>
  3311. </g>
  3312. <g id="nsskg3013">
  3313. <g v-if="ajaxData.nsskg3013" id="_29_">
  3314. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3315. x1="413.815" y1="370.46" x2="431.08" y2="370.46"></line>
  3316. <path fill="#A61F24"
  3317. d="M420.384,387.05c0-1.421,1.155-2.573,2.57-2.573c1.422,0,2.573,1.156,2.573,2.573 s-1.157,2.569-2.573,2.569C421.535,389.621,420.384,388.469,420.384,387.05 M418.353,387.05c0,2.544,2.06,4.603,4.603,4.603 s4.604-2.06,4.604-4.603s-2.063-4.604-4.604-4.604C420.408,382.443,418.353,384.506,418.353,387.05L418.353,387.05z"
  3318. data-v-0c9672f3=""></path>
  3319. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3320. x1="422.955" y1="370.684" x2="422.955" y2="383.436"></line>
  3321. </g>
  3322. <g v-else-if="ajaxData.nsskg3013 == false" id="_29_">
  3323. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3324. x1="413.815" y1="370.46" x2="431.08" y2="370.46"></line>
  3325. <path fill="#1B9D3A"
  3326. d="M420.384,387.05c0-1.421,1.155-2.576,2.57-2.576c1.422,0,2.573,1.157,2.573,2.576 s-1.157,2.569-2.573,2.569C421.535,389.621,420.384,388.469,420.384,387.05 M418.353,387.05c0,2.543,2.06,4.603,4.603,4.603 s4.604-2.06,4.604-4.603c0-2.544-2.063-4.607-4.604-4.607C420.408,382.44,418.353,384.506,418.353,387.05L418.353,387.05z"
  3327. data-v-0c9672f3=""></path>
  3328. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3329. x1="429.414" y1="372.617" x2="422.448" y2="383.436"></line>
  3330. </g>
  3331. </g>
  3332. <g id="nsskg3011">
  3333. <g v-if="ajaxData.nsskg3011" id="_30_">
  3334. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3335. x1="413.815" y1="472.089" x2="431.08" y2="472.089"></line>
  3336. <path fill="#A61F24"
  3337. d="M420.384,488.677c0-1.421,1.155-2.572,2.57-2.572c1.422,0,2.573,1.155,2.573,2.572 s-1.157,2.569-2.573,2.569C421.535,491.249,420.384,490.095,420.384,488.677 M418.353,488.677c0,2.544,2.06,4.604,4.603,4.604 s4.604-2.061,4.604-4.604s-2.063-4.604-4.604-4.604C420.408,484.071,418.353,486.134,418.353,488.677L418.353,488.677z"
  3338. data-v-0c9672f3=""></path>
  3339. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3340. x1="422.955" y1="472.312" x2="422.955" y2="485.063"></line>
  3341. </g>
  3342. <g v-else-if="ajaxData.nsskg3011 == false" id="_30_">
  3343. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3344. x1="413.815" y1="472.089" x2="431.08" y2="472.089"></line>
  3345. <path fill="#1B9D3A"
  3346. d="M420.384,488.677c0-1.421,1.155-2.576,2.57-2.576c1.422,0,2.573,1.157,2.573,2.576 s-1.157,2.569-2.573,2.569C421.535,491.249,420.384,490.095,420.384,488.677 M418.353,488.677c0,2.543,2.06,4.604,4.603,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.063-4.606-4.604-4.606C420.408,484.068,418.353,486.134,418.353,488.677L418.353,488.677z"
  3347. data-v-0c9672f3=""></path>
  3348. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3349. x1="429.414" y1="474.245" x2="422.448" y2="485.063"></line>
  3350. </g>
  3351. </g>
  3352. <g id="nsskg110">
  3353. <g v-if="ajaxData.nsskg110" id="_27_">
  3354. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3355. x1="125.718" y1="238.572" x2="125.718" y2="221.307"></line>
  3356. <path fill="#A61F24"
  3357. d="M142.306,232.004c-1.42,0-2.573-1.154-2.573-2.569c0-1.421,1.156-2.573,2.573-2.573 s2.572,1.157,2.572,2.573C144.879,230.852,143.725,232.004,142.306,232.004 M142.306,234.035c2.544,0,4.604-2.06,4.604-4.603 s-2.061-4.604-4.604-4.604s-4.604,2.063-4.604,4.604C137.702,231.979,139.762,234.035,142.306,234.035L142.306,234.035z"
  3358. data-v-0c9672f3=""></path>
  3359. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3360. x1="125.942" y1="229.432" x2="138.693" y2="229.432"></line>
  3361. </g>
  3362. <g v-else-if="ajaxData.nsskg110 == false" id="_27_">
  3363. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3364. x1="125.718" y1="238.572" x2="125.718" y2="221.307"></line>
  3365. <path fill="#1B9D3A"
  3366. d="M142.306,232.004c-1.42,0-2.576-1.154-2.576-2.569c0-1.421,1.157-2.573,2.576-2.573 s2.572,1.157,2.572,2.573C144.879,230.852,143.725,232.004,142.306,232.004 M142.306,234.035c2.543,0,4.604-2.06,4.604-4.603 s-2.061-4.604-4.604-4.604c-2.544,0-4.606,2.063-4.606,4.604C137.699,231.979,139.762,234.035,142.306,234.035L142.306,234.035z"
  3367. data-v-0c9672f3=""></path>
  3368. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3369. x1="127.876" y1="222.973" x2="138.693" y2="229.939"></line>
  3370. </g>
  3371. </g>
  3372. <g id="nsskg1109">
  3373. <g v-if="ajaxData.nsskg1109" id="_26_">
  3374. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3375. x1="125.718" y1="280.802" x2="125.718" y2="263.534"></line>
  3376. <path fill="#A61F24"
  3377. d="M142.306,274.231c-1.42,0-2.573-1.156-2.573-2.571c0-1.421,1.156-2.573,2.573-2.573 s2.572,1.157,2.572,2.573C144.879,273.079,143.725,274.231,142.306,274.231 M142.306,276.263c2.544,0,4.604-2.062,4.604-4.604 s-2.061-4.604-4.604-4.604s-4.604,2.061-4.604,4.604C137.702,274.206,139.762,276.263,142.306,276.263L142.306,276.263z"
  3378. data-v-0c9672f3=""></path>
  3379. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3380. x1="125.942" y1="271.659" x2="138.693" y2="271.659"></line>
  3381. </g>
  3382. <g v-else-if="ajaxData.nsskg1109 == false" id="_26_">
  3383. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3384. x1="125.718" y1="280.802" x2="125.718" y2="263.534"></line>
  3385. <path fill="#1B9D3A"
  3386. d="M142.306,274.231c-1.42,0-2.576-1.156-2.576-2.571c0-1.421,1.157-2.573,2.576-2.573 s2.572,1.157,2.572,2.573C144.879,273.079,143.725,274.231,142.306,274.231 M142.306,276.263c2.543,0,4.604-2.062,4.604-4.604 s-2.061-4.604-4.604-4.604c-2.544,0-4.606,2.061-4.606,4.604C137.699,274.206,139.762,276.263,142.306,276.263L142.306,276.263z"
  3387. data-v-0c9672f3=""></path>
  3388. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3389. x1="127.876" y1="265.2" x2="138.693" y2="272.167"></line>
  3390. </g>
  3391. </g>
  3392. <g id="nsskg120">
  3393. <g v-if="ajaxData.nsskg120" id="_38_">
  3394. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3395. x1="1800.771" y1="238.572" x2="1800.771" y2="221.307"></line>
  3396. <path fill="#A61F24"
  3397. d="M1817.362,232.004c-1.423,0-2.574-1.154-2.574-2.569c0-1.421,1.156-2.573,2.574-2.573 c1.416,0,2.569,1.157,2.569,2.573C1819.936,230.852,1818.78,232.004,1817.362,232.004 M1817.362,234.035 c2.543,0,4.603-2.06,4.603-4.603s-2.06-4.604-4.603-4.604c-2.544,0-4.604,2.063-4.604,4.604 C1812.756,231.979,1814.816,234.035,1817.362,234.035L1817.362,234.035z"
  3398. data-v-0c9672f3=""></path>
  3399. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3400. x1="1800.996" y1="229.432" x2="1813.748" y2="229.432"></line>
  3401. </g>
  3402. <g v-else-if="ajaxData.nsskg120 == false" id="_38_">
  3403. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3404. x1="1800.771" y1="238.572" x2="1800.771" y2="221.307"></line>
  3405. <path fill="#1B9D3A"
  3406. d="M1817.362,232.004c-1.423,0-2.576-1.154-2.576-2.569c0-1.421,1.155-2.573,2.576-2.573 c1.418,0,2.569,1.157,2.569,2.573C1819.936,230.852,1818.78,232.004,1817.362,232.004 M1817.362,234.035 c2.543,0,4.603-2.06,4.603-4.603s-2.06-4.604-4.603-4.604c-2.546,0-4.606,2.063-4.606,4.604 C1812.754,231.979,1814.816,234.035,1817.362,234.035L1817.362,234.035z"
  3407. data-v-0c9672f3=""></path>
  3408. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3409. x1="1802.932" y1="222.973" x2="1813.748" y2="229.939"></line>
  3410. </g>
  3411. </g>
  3412. <g id="nsskg1209">
  3413. <g v-if="ajaxData.nsskg1209" id="_37_">
  3414. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3415. x1="1800.771" y1="280.802" x2="1800.771" y2="263.534"></line>
  3416. <path fill="#A61F24"
  3417. d="M1817.362,274.231c-1.423,0-2.574-1.156-2.574-2.571c0-1.421,1.156-2.573,2.574-2.573 c1.416,0,2.569,1.157,2.569,2.573C1819.936,273.079,1818.78,274.231,1817.362,274.231 M1817.362,276.263 c2.543,0,4.603-2.062,4.603-4.604s-2.06-4.604-4.603-4.604c-2.544,0-4.604,2.061-4.604,4.604 C1812.756,274.206,1814.816,276.263,1817.362,276.263L1817.362,276.263z"
  3418. data-v-0c9672f3=""></path>
  3419. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3420. x1="1800.996" y1="271.659" x2="1813.748" y2="271.659"></line>
  3421. </g>
  3422. <g v-else-if="ajaxData.nsskg1209 == false" id="_37_">
  3423. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3424. x1="1800.771" y1="280.802" x2="1800.771" y2="263.534"></line>
  3425. <path fill="#1B9D3A"
  3426. d="M1817.362,274.231c-1.423,0-2.576-1.156-2.576-2.571c0-1.421,1.155-2.573,2.576-2.573 c1.418,0,2.569,1.157,2.569,2.573C1819.936,273.079,1818.78,274.231,1817.362,274.231 M1817.362,276.263 c2.543,0,4.603-2.062,4.603-4.604s-2.06-4.604-4.603-4.604c-2.546,0-4.606,2.061-4.606,4.604 C1812.754,274.206,1814.816,276.263,1817.362,276.263L1817.362,276.263z"
  3427. data-v-0c9672f3=""></path>
  3428. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3429. x1="1802.932" y1="265.2" x2="1813.748" y2="272.167"></line>
  3430. </g>
  3431. </g>
  3432. <g id="nsskg0120">
  3433. <g v-if="ajaxData.nsskg0120" id="_33_">
  3434. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3435. x1="887.841" y1="316.779" x2="905.105" y2="316.779"></line>
  3436. <path fill="#A61F24"
  3437. d="M894.408,333.368c0-1.421,1.155-2.571,2.571-2.571c1.421,0,2.571,1.154,2.571,2.571 s-1.155,2.571-2.571,2.571C895.563,335.941,894.408,334.787,894.408,333.368 M892.378,333.368c0,2.544,2.062,4.604,4.604,4.604 c2.541,0,4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C894.436,328.764,892.378,330.824,892.378,333.368L892.378,333.368z"
  3438. data-v-0c9672f3=""></path>
  3439. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3440. x1="896.98" y1="317.006" x2="896.98" y2="329.758"></line>
  3441. </g>
  3442. <g v-else-if="ajaxData.nsskg0120 == false" id="_33_">
  3443. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3444. x1="887.841" y1="316.779" x2="905.105" y2="316.779"></line>
  3445. <path fill="#1B9D3A"
  3446. d="M894.408,333.368c0-1.421,1.155-2.576,2.571-2.576c1.421,0,2.571,1.157,2.571,2.576 s-1.155,2.571-2.571,2.571C895.563,335.941,894.408,334.787,894.408,333.368 M892.378,333.368c0,2.543,2.062,4.604,4.604,4.604 c2.541,0,4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C894.436,328.761,892.378,330.824,892.378,333.368 L892.378,333.368z"
  3447. data-v-0c9672f3=""></path>
  3448. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3449. x1="903.439" y1="318.938" x2="896.474" y2="329.758"></line>
  3450. </g>
  3451. </g>
  3452. <g id="nsskg3023">
  3453. <g v-if="ajaxData.nsskg3023" id="_32_">
  3454. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3455. x1="968.932" y1="370.46" x2="986.198" y2="370.46"></line>
  3456. <path fill="#A61F24"
  3457. d="M975.5,387.05c0-1.421,1.155-2.573,2.571-2.573c1.42,0,2.572,1.156,2.572,2.573s-1.156,2.569-2.572,2.569 C976.653,389.621,975.5,388.469,975.5,387.05 M973.469,387.05c0,2.544,2.062,4.603,4.604,4.603s4.604-2.06,4.604-4.603 s-2.062-4.604-4.604-4.604C975.526,382.443,973.469,384.506,973.469,387.05L973.469,387.05z"
  3458. data-v-0c9672f3=""></path>
  3459. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3460. x1="978.073" y1="370.684" x2="978.073" y2="383.436"></line>
  3461. </g>
  3462. <g v-else-if="ajaxData.nsskg3023 == false" id="_32_">
  3463. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3464. x1="968.932" y1="370.46" x2="986.198" y2="370.46"></line>
  3465. <path fill="#1B9D3A"
  3466. d="M975.5,387.05c0-1.421,1.155-2.576,2.571-2.576c1.42,0,2.572,1.157,2.572,2.576s-1.156,2.569-2.572,2.569 C976.653,389.621,975.5,388.469,975.5,387.05 M973.469,387.05c0,2.543,2.062,4.603,4.604,4.603s4.604-2.06,4.604-4.603 c0-2.544-2.062-4.607-4.604-4.607C975.526,382.44,973.469,384.506,973.469,387.05L973.469,387.05z"
  3467. data-v-0c9672f3=""></path>
  3468. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3469. x1="984.531" y1="372.617" x2="977.564" y2="383.436"></line>
  3470. </g>
  3471. </g>
  3472. <g id="nsskg3021">
  3473. <g v-if="ajaxData.nsskg3021" id="_31_">
  3474. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3475. x1="968.932" y1="472.089" x2="986.198" y2="472.089"></line>
  3476. <path fill="#A61F24"
  3477. d="M975.5,488.677c0-1.421,1.155-2.572,2.571-2.572c1.42,0,2.572,1.155,2.572,2.572 s-1.156,2.569-2.572,2.569C976.653,491.249,975.5,490.095,975.5,488.677 M973.469,488.677c0,2.544,2.062,4.604,4.604,4.604 s4.604-2.061,4.604-4.604s-2.062-4.604-4.604-4.604C975.526,484.071,973.469,486.134,973.469,488.677L973.469,488.677z"
  3478. data-v-0c9672f3=""></path>
  3479. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3480. x1="978.073" y1="472.312" x2="978.073" y2="485.063"></line>
  3481. </g>
  3482. <g v-else-if="ajaxData.nsskg3021 == false" id="_31_">
  3483. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3484. x1="968.932" y1="472.089" x2="986.198" y2="472.089"></line>
  3485. <path fill="#1B9D3A"
  3486. d="M975.5,488.677c0-1.421,1.155-2.576,2.571-2.576c1.42,0,2.572,1.157,2.572,2.576 s-1.156,2.569-2.572,2.569C976.653,491.249,975.5,490.095,975.5,488.677 M973.469,488.677c0,2.543,2.062,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.062-4.606-4.604-4.606C975.526,484.068,973.469,486.134,973.469,488.677L973.469,488.677z"
  3487. data-v-0c9672f3=""></path>
  3488. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3489. x1="984.531" y1="474.245" x2="977.564" y2="485.063"></line>
  3490. </g>
  3491. </g>
  3492. <g id="nsskg0130">
  3493. <g v-if="ajaxData.nsskg0130" id="_36_">
  3494. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3495. x1="1468.457" y1="316.779" x2="1485.723" y2="316.779"></line>
  3496. <path fill="#A61F24"
  3497. d="M1475.025,333.368c0-1.421,1.156-2.571,2.572-2.571c1.42,0,2.569,1.154,2.569,2.571 s-1.153,2.571-2.569,2.571C1476.178,335.941,1475.025,334.787,1475.025,333.368 M1472.994,333.368 c0,2.544,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604s-2.061-4.604-4.604-4.604 C1475.051,328.764,1472.994,330.824,1472.994,333.368L1472.994,333.368z"
  3498. data-v-0c9672f3=""></path>
  3499. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3500. x1="1477.598" y1="317.006" x2="1477.598" y2="329.758"></line>
  3501. </g>
  3502. <g v-else-if="ajaxData.nsskg0130 == false" id="_36_">
  3503. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3504. x1="1468.457" y1="316.779" x2="1485.723" y2="316.779"></line>
  3505. <path fill="#1B9D3A"
  3506. d="M1475.025,333.368c0-1.421,1.156-2.576,2.572-2.576c1.42,0,2.569,1.157,2.569,2.576 s-1.153,2.571-2.569,2.571C1476.178,335.941,1475.025,334.787,1475.025,333.368 M1472.994,333.368 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.544-2.061-4.605-4.604-4.605 C1475.051,328.761,1472.994,330.824,1472.994,333.368L1472.994,333.368z"
  3507. data-v-0c9672f3=""></path>
  3508. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3509. x1="1484.057" y1="318.938" x2="1477.09" y2="329.758"></line>
  3510. </g>
  3511. </g>
  3512. <g id="nsskg3033">
  3513. <g v-if="ajaxData.nsskg3033" id="_35_">
  3514. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3515. x1="1549.549" y1="370.46" x2="1566.814" y2="370.46"></line>
  3516. <path fill="#A61F24"
  3517. d="M1556.117,387.05c0-1.421,1.155-2.573,2.569-2.573c1.422,0,2.572,1.156,2.572,2.573 s-1.156,2.569-2.572,2.569C1557.27,389.621,1556.117,388.469,1556.117,387.05 M1554.086,387.05c0,2.544,2.061,4.603,4.604,4.603 s4.604-2.06,4.604-4.603s-2.063-4.604-4.604-4.604C1556.143,382.443,1554.086,384.506,1554.086,387.05L1554.086,387.05z"
  3518. data-v-0c9672f3=""></path>
  3519. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3520. x1="1558.689" y1="370.684" x2="1558.689" y2="383.436"></line>
  3521. </g>
  3522. <g v-else-if="ajaxData.nsskg3033 == false" id="_35_">
  3523. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3524. x1="1549.549" y1="370.46" x2="1566.814" y2="370.46"></line>
  3525. <path fill="#1B9D3A"
  3526. d="M1556.117,387.05c0-1.421,1.155-2.576,2.569-2.576c1.422,0,2.572,1.157,2.572,2.576 s-1.156,2.569-2.572,2.569C1557.27,389.621,1556.117,388.469,1556.117,387.05 M1554.086,387.05c0,2.543,2.061,4.603,4.604,4.603 s4.604-2.06,4.604-4.603c0-2.544-2.063-4.607-4.604-4.607C1556.143,382.44,1554.086,384.506,1554.086,387.05L1554.086,387.05z"
  3527. data-v-0c9672f3=""></path>
  3528. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3529. x1="1565.148" y1="372.617" x2="1558.182" y2="383.436"></line>
  3530. </g>
  3531. </g>
  3532. <g id="nsskg3031">
  3533. <g v-if="ajaxData.nsskg3031" id="_34_">
  3534. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3535. x1="1549.549" y1="472.089" x2="1566.814" y2="472.089"></line>
  3536. <path fill="#A61F24"
  3537. d="M1556.117,488.677c0-1.421,1.155-2.572,2.569-2.572c1.422,0,2.572,1.155,2.572,2.572 s-1.156,2.569-2.572,2.569C1557.27,491.249,1556.117,490.095,1556.117,488.677 M1554.086,488.677 c0,2.544,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604s-2.063-4.604-4.604-4.604 C1556.143,484.071,1554.086,486.134,1554.086,488.677L1554.086,488.677z"
  3538. data-v-0c9672f3=""></path>
  3539. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3540. x1="1558.689" y1="472.312" x2="1558.689" y2="485.063"></line>
  3541. </g>
  3542. <g v-else-if="ajaxData.nsskg3031 == false" id="_34_">
  3543. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3544. x1="1549.549" y1="472.089" x2="1566.814" y2="472.089"></line>
  3545. <path fill="#1B9D3A"
  3546. d="M1556.117,488.677c0-1.421,1.155-2.576,2.569-2.576c1.422,0,2.572,1.157,2.572,2.576 s-1.156,2.569-2.572,2.569C1557.27,491.249,1556.117,490.095,1556.117,488.677 M1554.086,488.677 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.544-2.063-4.606-4.604-4.606 C1556.143,484.068,1554.086,486.134,1554.086,488.677L1554.086,488.677z"
  3547. data-v-0c9672f3=""></path>
  3548. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3549. x1="1565.148" y1="474.245" x2="1558.182" y2="485.063"></line>
  3550. </g>
  3551. </g>
  3552. <g id="nsskg310">
  3553. <g v-if="ajaxData.nsskg310" id="_41_">
  3554. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3555. x1="53.195" y1="586.746" x2="70.461" y2="586.746"></line>
  3556. <path fill="#A61F24"
  3557. d="M59.764,603.337c0-1.423,1.156-2.573,2.571-2.573c1.421,0,2.573,1.156,2.573,2.573 s-1.157,2.569-2.573,2.569C60.916,605.908,59.764,604.756,59.764,603.337 M57.732,603.337c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.545-2.061-4.604-4.604-4.604C59.789,598.729,57.732,600.792,57.732,603.337L57.732,603.337z"
  3558. data-v-0c9672f3=""></path>
  3559. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3560. x1="62.336" y1="586.971" x2="62.336" y2="599.723"></line>
  3561. </g>
  3562. <g v-else-if="ajaxData.nsskg310 == false" id="_41_">
  3563. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3564. x1="53.195" y1="586.746" x2="70.461" y2="586.746"></line>
  3565. <path fill="#1B9D3A"
  3566. d="M59.764,603.337c0-1.423,1.156-2.576,2.571-2.576c1.421,0,2.573,1.156,2.573,2.576 c0,1.419-1.157,2.569-2.573,2.569C60.916,605.908,59.764,604.756,59.764,603.337 M57.732,603.337 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.545-2.061-4.607-4.604-4.607 C59.789,598.728,57.732,600.792,57.732,603.337L57.732,603.337z"
  3567. data-v-0c9672f3=""></path>
  3568. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3569. x1="68.795" y1="588.904" x2="61.828" y2="599.723"></line>
  3570. </g>
  3571. </g>
  3572. <g id="nsskg319">
  3573. <g v-if="ajaxData.nsskg319" id="_40_">
  3574. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3575. x1="33.23" y1="648.924" x2="50.496" y2="648.924"></line>
  3576. <path fill="#A61F24"
  3577. d="M39.799,665.511c0-1.421,1.156-2.572,2.571-2.572c1.421,0,2.572,1.155,2.572,2.572 s-1.156,2.569-2.572,2.569C40.951,668.086,39.799,666.93,39.799,665.511 M37.768,665.511c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604s-2.061-4.604-4.604-4.604C39.824,660.906,37.768,662.969,37.768,665.511L37.768,665.511z"
  3578. data-v-0c9672f3=""></path>
  3579. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3580. x1="42.371" y1="649.146" x2="42.371" y2="661.898"></line>
  3581. </g>
  3582. <g v-else-if="ajaxData.nsskg319 == false" id="_40_">
  3583. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3584. x1="33.23" y1="648.924" x2="50.496" y2="648.924"></line>
  3585. <path fill="#1B9D3A"
  3586. d="M39.799,665.511c0-1.421,1.156-2.576,2.571-2.576c1.421,0,2.572,1.157,2.572,2.576 s-1.156,2.569-2.572,2.569C40.951,668.086,39.799,666.93,39.799,665.511 M37.768,665.511c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.606-4.604-4.606C39.824,660.903,37.768,662.969,37.768,665.511L37.768,665.511z"
  3587. data-v-0c9672f3=""></path>
  3588. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3589. x1="48.83" y1="651.08" x2="41.863" y2="661.898"></line>
  3590. </g>
  3591. </g>
  3592. <g id="nsskg3121">
  3593. <g v-if="ajaxData.nsskg3121" id="_42_">
  3594. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3595. x1="115.824" y1="533.572" x2="133.09" y2="533.572"></line>
  3596. <path fill="#A61F24"
  3597. d="M122.393,550.161c0-1.421,1.156-2.571,2.571-2.571c1.421,0,2.573,1.154,2.573,2.571 s-1.157,2.571-2.573,2.571C123.545,552.734,122.393,551.58,122.393,550.161 M120.361,550.161c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.061-4.604-4.604-4.604C122.418,545.557,120.361,547.617,120.361,550.161L120.361,550.161z"
  3598. data-v-0c9672f3=""></path>
  3599. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3600. x1="124.965" y1="533.799" x2="124.965" y2="546.551"></line>
  3601. </g>
  3602. <g v-else-if="ajaxData.nsskg3121 == false" id="_42_">
  3603. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3604. x1="115.824" y1="533.572" x2="133.09" y2="533.572"></line>
  3605. <path fill="#1B9D3A"
  3606. d="M122.393,550.161c0-1.421,1.156-2.574,2.571-2.574c1.421,0,2.573,1.155,2.573,2.574 s-1.157,2.571-2.573,2.571C123.545,552.734,122.393,551.58,122.393,550.161 M120.361,550.161c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.061-4.605-4.604-4.605C122.418,545.554,120.361,547.617,120.361,550.161L120.361,550.161z"
  3607. data-v-0c9672f3=""></path>
  3608. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3609. x1="131.424" y1="535.729" x2="124.457" y2="546.551"></line>
  3610. </g>
  3611. </g>
  3612. <g id="nsskg3123">
  3613. <g v-if="ajaxData.nsskg3123" id="_43_">
  3614. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3615. x1="115.824" y1="647.271" x2="133.09" y2="647.271"></line>
  3616. <path fill="#A61F24"
  3617. d="M122.393,663.859c0-1.421,1.156-2.573,2.571-2.573c1.421,0,2.573,1.156,2.573,2.573 s-1.157,2.57-2.573,2.57C123.545,666.433,122.393,665.278,122.393,663.859 M120.361,663.859c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.061-4.604-4.604-4.604C122.418,659.257,120.361,661.315,120.361,663.859L120.361,663.859z"
  3618. data-v-0c9672f3=""></path>
  3619. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3620. x1="124.965" y1="647.495" x2="124.965" y2="660.247"></line>
  3621. </g>
  3622. <g v-else-if="ajaxData.nsskg3123 == false" id="_43_">
  3623. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3624. x1="115.824" y1="647.271" x2="133.09" y2="647.271"></line>
  3625. <path fill="#1B9D3A"
  3626. d="M122.393,663.859c0-1.421,1.156-2.576,2.571-2.576c1.421,0,2.573,1.157,2.573,2.576 s-1.157,2.57-2.573,2.57C123.545,666.433,122.393,665.278,122.393,663.859 M120.361,663.859c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.061-4.605-4.604-4.605C122.418,659.254,120.361,661.315,120.361,663.859L120.361,663.859z"
  3627. data-v-0c9672f3=""></path>
  3628. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3629. x1="131.424" y1="649.429" x2="124.457" y2="660.247"></line>
  3630. </g>
  3631. <path fill="none" stroke="#40B9B0" stroke-width="2.5" stroke-miterlimit="10"
  3632. d="M125.602,668.486"></path>
  3633. </g>
  3634. <g id="nsskg3120">
  3635. <g v-if="ajaxData.nsskg3120" id="_44_">
  3636. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3637. x1="136.807" y1="708.622" x2="154.072" y2="708.622"></line>
  3638. <path fill="#A61F24"
  3639. d="M143.375,725.213c0-1.423,1.155-2.573,2.57-2.573c1.422,0,2.573,1.156,2.573,2.573 s-1.157,2.569-2.573,2.569C144.527,727.784,143.375,726.632,143.375,725.213 M141.344,725.213c0,2.544,2.06,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C143.4,720.606,141.344,722.667,141.344,725.213L141.344,725.213z"
  3640. data-v-0c9672f3=""></path>
  3641. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3642. x1="145.947" y1="708.847" x2="145.947" y2="721.599"></line>
  3643. </g>
  3644. <g v-else-if="ajaxData.nsskg3120 == false" id="_44_">
  3645. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3646. x1="136.807" y1="708.622" x2="154.072" y2="708.622"></line>
  3647. <path fill="#1B9D3A"
  3648. d="M143.375,725.213c0-1.423,1.155-2.576,2.57-2.576c1.422,0,2.573,1.155,2.573,2.576 c0,1.419-1.157,2.569-2.573,2.569C144.527,727.784,143.375,726.632,143.375,725.213 M141.344,725.213 c0,2.543,2.06,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C143.4,720.604,141.344,722.667,141.344,725.213L141.344,725.213z"
  3649. data-v-0c9672f3=""></path>
  3650. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3651. x1="152.406" y1="710.78" x2="145.439" y2="721.599"></line>
  3652. </g>
  3653. </g>
  3654. <g id="nsskg3131">
  3655. <g v-if="ajaxData.nsskg3131" id="_47_">
  3656. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3657. x1="198.324" y1="533.572" x2="215.59" y2="533.572"></line>
  3658. <path fill="#A61F24"
  3659. d="M204.893,550.161c0-1.421,1.156-2.571,2.571-2.571c1.421,0,2.573,1.154,2.573,2.571 s-1.157,2.571-2.573,2.571C206.045,552.734,204.893,551.58,204.893,550.161 M202.861,550.161c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.061-4.604-4.604-4.604C204.918,545.557,202.861,547.617,202.861,550.161L202.861,550.161z"
  3660. data-v-0c9672f3=""></path>
  3661. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3662. x1="207.465" y1="533.799" x2="207.465" y2="546.551"></line>
  3663. </g>
  3664. <g v-else-if="ajaxData.nsskg3131 == false" id="_47_">
  3665. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3666. x1="198.324" y1="533.572" x2="215.59" y2="533.572"></line>
  3667. <path fill="#1B9D3A"
  3668. d="M204.893,550.161c0-1.421,1.156-2.574,2.571-2.574c1.421,0,2.573,1.155,2.573,2.574 s-1.157,2.571-2.573,2.571C206.045,552.734,204.893,551.58,204.893,550.161 M202.861,550.161c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.061-4.605-4.604-4.605C204.918,545.554,202.861,547.617,202.861,550.161L202.861,550.161z"
  3669. data-v-0c9672f3=""></path>
  3670. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3671. x1="213.924" y1="535.729" x2="206.957" y2="546.551"></line>
  3672. </g>
  3673. </g>
  3674. <g id="nsskg3133">
  3675. <g v-if="ajaxData.nsskg3133" id="_46_">
  3676. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3677. x1="198.324" y1="647.271" x2="215.59" y2="647.271"></line>
  3678. <path fill="#A61F24"
  3679. d="M204.893,663.859c0-1.421,1.156-2.573,2.571-2.573c1.421,0,2.573,1.156,2.573,2.573 s-1.157,2.57-2.573,2.57C206.045,666.433,204.893,665.278,204.893,663.859 M202.861,663.859c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.061-4.604-4.604-4.604C204.918,659.257,202.861,661.315,202.861,663.859L202.861,663.859z"
  3680. data-v-0c9672f3=""></path>
  3681. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3682. x1="207.465" y1="647.495" x2="207.465" y2="660.247"></line>
  3683. </g>
  3684. <g v-else-if="ajaxData.nsskg3133 == false" id="_46_">
  3685. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3686. x1="198.324" y1="647.271" x2="215.59" y2="647.271"></line>
  3687. <path fill="#1B9D3A"
  3688. d="M204.893,663.859c0-1.421,1.156-2.576,2.571-2.576c1.421,0,2.573,1.157,2.573,2.576 s-1.157,2.57-2.573,2.57C206.045,666.433,204.893,665.278,204.893,663.859 M202.861,663.859c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.061-4.605-4.604-4.605C204.918,659.254,202.861,661.315,202.861,663.859L202.861,663.859z"
  3689. data-v-0c9672f3=""></path>
  3690. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3691. x1="213.924" y1="649.429" x2="206.957" y2="660.247"></line>
  3692. </g>
  3693. </g>
  3694. <g id="nsskg3130">
  3695. <g v-if="ajaxData.nsskg3130" id="_45_">
  3696. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3697. x1="219.307" y1="708.622" x2="236.572" y2="708.622"></line>
  3698. <path fill="#A61F24"
  3699. d="M225.875,725.213c0-1.423,1.155-2.573,2.57-2.573c1.422,0,2.573,1.156,2.573,2.573 s-1.157,2.569-2.573,2.569C227.027,727.784,225.875,726.632,225.875,725.213 M223.844,725.213c0,2.544,2.062,4.604,4.604,4.604 c2.543,0,4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C225.9,720.606,223.844,722.667,223.844,725.213 L223.844,725.213z"
  3700. data-v-0c9672f3=""></path>
  3701. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3702. x1="228.447" y1="708.847" x2="228.447" y2="721.599"></line>
  3703. </g>
  3704. <g v-else-if="ajaxData.nsskg3130 == false" id="_45_">
  3705. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3706. x1="219.307" y1="708.622" x2="236.572" y2="708.622"></line>
  3707. <path fill="#1B9D3A"
  3708. d="M225.875,725.213c0-1.423,1.155-2.576,2.57-2.576c1.422,0,2.573,1.155,2.573,2.576 c0,1.419-1.157,2.569-2.573,2.569C227.027,727.784,225.875,726.632,225.875,725.213 M223.844,725.213 c0,2.543,2.062,4.604,4.604,4.604c2.543,0,4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C225.9,720.604,223.844,722.667,223.844,725.213L223.844,725.213z"
  3709. data-v-0c9672f3=""></path>
  3710. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3711. x1="234.906" y1="710.78" x2="227.939" y2="721.599"></line>
  3712. </g>
  3713. </g>
  3714. <g id="nsskg3141">
  3715. <g v-if="ajaxData.nsskg3141" id="_50_">
  3716. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3717. x1="279.318" y1="533.572" x2="296.584" y2="533.572"></line>
  3718. <path fill="#A61F24"
  3719. d="M285.887,550.161c0-1.421,1.156-2.571,2.571-2.571c1.421,0,2.572,1.154,2.572,2.571 s-1.156,2.571-2.572,2.571C287.039,552.734,285.887,551.58,285.887,550.161 M283.855,550.161c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.061-4.604-4.604-4.604C285.912,545.557,283.855,547.617,283.855,550.161L283.855,550.161z"
  3720. data-v-0c9672f3=""></path>
  3721. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3722. x1="288.459" y1="533.799" x2="288.459" y2="546.551"></line>
  3723. </g>
  3724. <g v-else-if="ajaxData.nsskg3141 == false" id="_50_">
  3725. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3726. x1="279.318" y1="533.572" x2="296.584" y2="533.572"></line>
  3727. <path fill="#1B9D3A"
  3728. d="M285.887,550.161c0-1.421,1.156-2.574,2.571-2.574c1.421,0,2.572,1.155,2.572,2.574 s-1.156,2.571-2.572,2.571C287.039,552.734,285.887,551.58,285.887,550.161 M283.855,550.161c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.061-4.605-4.604-4.605C285.912,545.554,283.855,547.617,283.855,550.161L283.855,550.161z"
  3729. data-v-0c9672f3=""></path>
  3730. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3731. x1="294.918" y1="535.729" x2="287.951" y2="546.551"></line>
  3732. </g>
  3733. </g>
  3734. <g id="nsskg3143">
  3735. <g v-if="ajaxData.nsskg3143" id="_49_">
  3736. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3737. x1="279.318" y1="647.271" x2="296.584" y2="647.271"></line>
  3738. <path fill="#A61F24"
  3739. d="M285.887,663.859c0-1.421,1.156-2.573,2.571-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.57-2.572,2.57C287.039,666.433,285.887,665.278,285.887,663.859 M283.855,663.859c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.061-4.604-4.604-4.604C285.912,659.257,283.855,661.315,283.855,663.859L283.855,663.859z"
  3740. data-v-0c9672f3=""></path>
  3741. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3742. x1="288.459" y1="647.495" x2="288.459" y2="660.247"></line>
  3743. </g>
  3744. <g v-else-if="ajaxData.nsskg3143 == false" id="_49_">
  3745. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3746. x1="279.318" y1="647.271" x2="296.584" y2="647.271"></line>
  3747. <path fill="#1B9D3A"
  3748. d="M285.887,663.859c0-1.421,1.156-2.576,2.571-2.576c1.421,0,2.572,1.157,2.572,2.576 s-1.156,2.57-2.572,2.57C287.039,666.433,285.887,665.278,285.887,663.859 M283.855,663.859c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.061-4.605-4.604-4.605C285.912,659.254,283.855,661.315,283.855,663.859L283.855,663.859z"
  3749. data-v-0c9672f3=""></path>
  3750. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3751. x1="294.918" y1="649.429" x2="287.951" y2="660.247"></line>
  3752. </g>
  3753. </g>
  3754. <g id="nsskg3140">
  3755. <g v-if="ajaxData.nsskg3140" id="_48_">
  3756. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3757. x1="300.301" y1="708.622" x2="317.566" y2="708.622"></line>
  3758. <path fill="#A61F24"
  3759. d="M306.868,725.213c0-1.423,1.156-2.573,2.571-2.573c1.421,0,2.573,1.156,2.573,2.573 s-1.157,2.569-2.573,2.569C308.021,727.784,306.868,726.632,306.868,725.213 M304.838,725.213c0,2.544,2.06,4.604,4.603,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.062-4.604-4.604-4.604C306.895,720.606,304.838,722.667,304.838,725.213L304.838,725.213z"
  3760. data-v-0c9672f3=""></path>
  3761. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3762. x1="309.441" y1="708.847" x2="309.441" y2="721.599"></line>
  3763. </g>
  3764. <g v-else-if="ajaxData.nsskg3140 == false" id="_48_">
  3765. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3766. x1="300.301" y1="708.622" x2="317.566" y2="708.622"></line>
  3767. <path fill="#1B9D3A"
  3768. d="M306.868,725.213c0-1.423,1.156-2.576,2.571-2.576c1.421,0,2.573,1.155,2.573,2.576 c0,1.419-1.157,2.569-2.573,2.569C308.021,727.784,306.868,726.632,306.868,725.213 M304.838,725.213 c0,2.543,2.06,4.604,4.603,4.604s4.604-2.061,4.604-4.604c0-2.546-2.062-4.606-4.604-4.606 C306.895,720.604,304.838,722.667,304.838,725.213L304.838,725.213z"
  3769. data-v-0c9672f3=""></path>
  3770. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3771. x1="315.9" y1="710.78" x2="308.934" y2="721.599"></line>
  3772. </g>
  3773. </g>
  3774. <g id="nsskg3151">
  3775. <g v-if="ajaxData.nsskg3151" id="_53_">
  3776. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3777. x1="362.633" y1="533.572" x2="379.898" y2="533.572"></line>
  3778. <path fill="#A61F24"
  3779. d="M369.2,550.161c0-1.421,1.156-2.571,2.571-2.571c1.421,0,2.573,1.154,2.573,2.571 s-1.157,2.571-2.573,2.571C370.354,552.734,369.2,551.58,369.2,550.161 M367.17,550.161c0,2.544,2.06,4.604,4.603,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C369.227,545.557,367.17,547.617,367.17,550.161L367.17,550.161z"
  3780. data-v-0c9672f3=""></path>
  3781. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3782. x1="371.773" y1="533.799" x2="371.773" y2="546.551"></line>
  3783. </g>
  3784. <g v-else-if="ajaxData.nsskg3151 == false" id="_53_">
  3785. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3786. x1="362.633" y1="533.572" x2="379.898" y2="533.572"></line>
  3787. <path fill="#1B9D3A"
  3788. d="M369.2,550.161c0-1.421,1.156-2.574,2.571-2.574c1.421,0,2.573,1.155,2.573,2.574 s-1.157,2.571-2.573,2.571C370.354,552.734,369.2,551.58,369.2,550.161 M367.17,550.161c0,2.543,2.06,4.604,4.603,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C369.227,545.554,367.17,547.617,367.17,550.161L367.17,550.161z"
  3789. data-v-0c9672f3=""></path>
  3790. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3791. x1="378.232" y1="535.729" x2="371.266" y2="546.551"></line>
  3792. </g>
  3793. </g>
  3794. <g id="nsskg3153">
  3795. <g v-if="ajaxData.nsskg3153" id="_52_">
  3796. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3797. x1="362.633" y1="647.271" x2="379.898" y2="647.271"></line>
  3798. <path fill="#A61F24"
  3799. d="M369.2,663.859c0-1.421,1.156-2.573,2.571-2.573c1.421,0,2.573,1.156,2.573,2.573s-1.157,2.57-2.573,2.57 C370.354,666.433,369.2,665.278,369.2,663.859 M367.17,663.859c0,2.544,2.06,4.604,4.603,4.604s4.604-2.062,4.604-4.604 s-2.062-4.604-4.604-4.604C369.227,659.257,367.17,661.315,367.17,663.859L367.17,663.859z"
  3800. data-v-0c9672f3=""></path>
  3801. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3802. x1="371.773" y1="647.495" x2="371.773" y2="660.247"></line>
  3803. </g>
  3804. <g v-else-if="ajaxData.nsskg3153 == false" id="_52_">
  3805. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3806. x1="362.633" y1="647.271" x2="379.898" y2="647.271"></line>
  3807. <path fill="#1B9D3A"
  3808. d="M369.2,663.859c0-1.421,1.156-2.576,2.571-2.576c1.421,0,2.573,1.157,2.573,2.576s-1.157,2.57-2.573,2.57 C370.354,666.433,369.2,665.278,369.2,663.859 M367.17,663.859c0,2.543,2.06,4.604,4.603,4.604s4.604-2.062,4.604-4.604 c0-2.544-2.062-4.605-4.604-4.605C369.227,659.254,367.17,661.315,367.17,663.859L367.17,663.859z"
  3809. data-v-0c9672f3=""></path>
  3810. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3811. x1="378.232" y1="649.429" x2="371.266" y2="660.247"></line>
  3812. </g>
  3813. </g>
  3814. <g id="nsskg3150">
  3815. <g v-if="ajaxData.nsskg3150" id="_51_">
  3816. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3817. x1="383.615" y1="708.622" x2="400.881" y2="708.622"></line>
  3818. <path fill="#A61F24"
  3819. d="M390.184,725.213c0-1.423,1.156-2.573,2.571-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.569-2.572,2.569C391.336,727.784,390.184,726.632,390.184,725.213 M388.152,725.213c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C390.209,720.606,388.152,722.667,388.152,725.213L388.152,725.213z"
  3820. data-v-0c9672f3=""></path>
  3821. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3822. x1="392.756" y1="708.847" x2="392.756" y2="721.599"></line>
  3823. </g>
  3824. <g v-else-if="ajaxData.nsskg3150 == false" id="_51_">
  3825. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3826. x1="383.615" y1="708.622" x2="400.881" y2="708.622"></line>
  3827. <path fill="#1B9D3A"
  3828. d="M390.184,725.213c0-1.423,1.156-2.576,2.571-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.569-2.572,2.569C391.336,727.784,390.184,726.632,390.184,725.213 M388.152,725.213 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C390.209,720.604,388.152,722.667,388.152,725.213L388.152,725.213z"
  3829. data-v-0c9672f3=""></path>
  3830. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3831. x1="399.215" y1="710.78" x2="392.247" y2="721.599"></line>
  3832. </g>
  3833. </g>
  3834. <g id="nsskg3161">
  3835. <g v-if="ajaxData.nsskg3161" id="_56_">
  3836. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3837. x1="444.994" y1="533.572" x2="462.261" y2="533.572"></line>
  3838. <path fill="#A61F24"
  3839. d="M451.563,550.161c0-1.421,1.156-2.571,2.571-2.571c1.421,0,2.572,1.154,2.572,2.571 s-1.156,2.571-2.572,2.571C452.716,552.734,451.563,551.58,451.563,550.161 M449.531,550.161c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604C451.589,545.557,449.531,547.617,449.531,550.161L449.531,550.161z"
  3840. data-v-0c9672f3=""></path>
  3841. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3842. x1="454.136" y1="533.799" x2="454.136" y2="546.551"></line>
  3843. </g>
  3844. <g v-else-if="ajaxData.nsskg3161 == false" id="_56_">
  3845. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3846. x1="444.994" y1="533.572" x2="462.261" y2="533.572"></line>
  3847. <path fill="#1B9D3A"
  3848. d="M451.563,550.161c0-1.421,1.156-2.574,2.571-2.574c1.421,0,2.572,1.155,2.572,2.574 s-1.156,2.571-2.572,2.571C452.716,552.734,451.563,551.58,451.563,550.161 M449.531,550.161c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605C451.589,545.554,449.531,547.617,449.531,550.161L449.531,550.161z"
  3849. data-v-0c9672f3=""></path>
  3850. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3851. x1="460.595" y1="535.729" x2="453.628" y2="546.551"></line>
  3852. </g>
  3853. </g>
  3854. <g id="nsskg3163">
  3855. <g v-if="ajaxData.nsskg3163" id="_55_">
  3856. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3857. x1="444.994" y1="647.271" x2="462.261" y2="647.271"></line>
  3858. <path fill="#A61F24"
  3859. d="M451.563,663.859c0-1.421,1.156-2.573,2.571-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.57-2.572,2.57C452.716,666.433,451.563,665.278,451.563,663.859 M449.531,663.859c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604C451.589,659.257,449.531,661.315,449.531,663.859L449.531,663.859z"
  3860. data-v-0c9672f3=""></path>
  3861. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3862. x1="454.136" y1="647.495" x2="454.136" y2="660.247"></line>
  3863. </g>
  3864. <g v-else-if="ajaxData.nsskg3163 == false" id="_55_">
  3865. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3866. x1="444.994" y1="647.271" x2="462.261" y2="647.271"></line>
  3867. <path fill="#1B9D3A"
  3868. d="M451.563,663.859c0-1.421,1.156-2.576,2.571-2.576c1.421,0,2.572,1.157,2.572,2.576 s-1.156,2.57-2.572,2.57C452.716,666.433,451.563,665.278,451.563,663.859 M449.531,663.859c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605C451.589,659.254,449.531,661.315,449.531,663.859L449.531,663.859z"
  3869. data-v-0c9672f3=""></path>
  3870. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3871. x1="460.595" y1="649.429" x2="453.628" y2="660.247"></line>
  3872. </g>
  3873. </g>
  3874. <g id="nsskg3171">
  3875. <g v-if="ajaxData.nsskg3171" id="_57_">
  3876. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3877. x1="526.068" y1="533.572" x2="543.334" y2="533.572"></line>
  3878. <path fill="#A61F24"
  3879. d="M532.637,550.161c0-1.421,1.156-2.571,2.57-2.571c1.422,0,2.573,1.154,2.573,2.571 s-1.157,2.571-2.573,2.571C533.788,552.734,532.637,551.58,532.637,550.161 M530.605,550.161c0,2.544,2.06,4.604,4.603,4.604 c2.544,0,4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604C532.661,545.557,530.605,547.617,530.605,550.161L530.605,550.161z"
  3880. data-v-0c9672f3=""></path>
  3881. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3882. x1="535.209" y1="533.799" x2="535.209" y2="546.551"></line>
  3883. </g>
  3884. <g v-else-if="ajaxData.nsskg3171 == false" id="_57_">
  3885. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3886. x1="526.068" y1="533.572" x2="543.334" y2="533.572"></line>
  3887. <path fill="#1B9D3A"
  3888. d="M532.637,550.161c0-1.421,1.156-2.574,2.57-2.574c1.422,0,2.573,1.155,2.573,2.574 s-1.157,2.571-2.573,2.571C533.788,552.734,532.637,551.58,532.637,550.161 M530.605,550.161c0,2.543,2.06,4.604,4.603,4.604 c2.544,0,4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605C532.661,545.554,530.605,547.617,530.605,550.161 L530.605,550.161z"
  3889. data-v-0c9672f3=""></path>
  3890. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3891. x1="541.668" y1="535.729" x2="534.7" y2="546.551"></line>
  3892. </g>
  3893. </g>
  3894. <g id="nsskg3160">
  3895. <g v-if="ajaxData.nsskg3160" id="_54_">
  3896. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3897. x1="465.979" y1="708.622" x2="483.242" y2="708.622"></line>
  3898. <path fill="#A61F24"
  3899. d="M472.546,725.213c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.569-2.572,2.569C473.698,727.784,472.546,726.632,472.546,725.213 M470.515,725.213c0,2.544,2.062,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.062-4.604-4.604-4.604C472.571,720.606,470.515,722.667,470.515,725.213L470.515,725.213z"
  3900. data-v-0c9672f3=""></path>
  3901. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3902. x1="475.117" y1="708.847" x2="475.117" y2="721.599"></line>
  3903. </g>
  3904. <g v-else-if="ajaxData.nsskg3160 == false" id="_54_">
  3905. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3906. x1="465.979" y1="708.622" x2="483.242" y2="708.622"></line>
  3907. <path fill="#1B9D3A"
  3908. d="M472.546,725.213c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.569-2.572,2.569C473.698,727.784,472.546,726.632,472.546,725.213 M470.515,725.213 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.062-4.606-4.604-4.606 C472.571,720.604,470.515,722.667,470.515,725.213L470.515,725.213z"
  3909. data-v-0c9672f3=""></path>
  3910. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3911. x1="481.576" y1="710.78" x2="474.61" y2="721.599"></line>
  3912. </g>
  3913. </g>
  3914. <g id="nsskg320">
  3915. <g v-if="ajaxData.nsskg320" id="_75_">
  3916. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3917. x1="700.793" y1="586.746" x2="718.059" y2="586.746"></line>
  3918. <path fill="#A61F24"
  3919. d="M707.362,603.337c0-1.423,1.155-2.573,2.569-2.573c1.422,0,2.573,1.156,2.573,2.573 s-1.157,2.569-2.573,2.569C708.514,605.908,707.362,604.756,707.362,603.337 M705.33,603.337c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.545-2.062-4.604-4.604-4.604C707.387,598.729,705.33,600.792,705.33,603.337L705.33,603.337z"
  3920. data-v-0c9672f3=""></path>
  3921. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3922. x1="709.934" y1="586.971" x2="709.934" y2="599.723"></line>
  3923. </g>
  3924. <g v-else-if="ajaxData.nsskg320 == false" id="_75_">
  3925. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3926. x1="700.793" y1="586.746" x2="718.059" y2="586.746"></line>
  3927. <path fill="#1B9D3A"
  3928. d="M707.362,603.337c0-1.423,1.155-2.576,2.569-2.576c1.422,0,2.573,1.156,2.573,2.576 c0,1.419-1.157,2.569-2.573,2.569C708.514,605.908,707.362,604.756,707.362,603.337 M705.33,603.337 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.545-2.062-4.607-4.604-4.607 C707.387,598.728,705.33,600.792,705.33,603.337L705.33,603.337z"
  3929. data-v-0c9672f3=""></path>
  3930. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3931. x1="716.393" y1="588.904" x2="709.426" y2="599.723"></line>
  3932. </g>
  3933. </g>
  3934. <g id="nsskg329">
  3935. <g v-if="ajaxData.nsskg329" id="_74_">
  3936. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3937. x1="680.828" y1="648.924" x2="698.094" y2="648.924"></line>
  3938. <path fill="#A61F24"
  3939. d="M687.396,665.511c0-1.421,1.155-2.572,2.57-2.572c1.421,0,2.572,1.155,2.572,2.572 s-1.156,2.569-2.572,2.569C688.549,668.086,687.396,666.93,687.396,665.511 M685.365,665.511c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604s-2.063-4.604-4.604-4.604C687.422,660.906,685.365,662.969,685.365,665.511L685.365,665.511z"
  3940. data-v-0c9672f3=""></path>
  3941. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3942. x1="689.969" y1="649.146" x2="689.969" y2="661.898"></line>
  3943. </g>
  3944. <g v-else-if="ajaxData.nsskg329 == false" id="_74_">
  3945. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3946. x1="680.828" y1="648.924" x2="698.094" y2="648.924"></line>
  3947. <path fill="#1B9D3A"
  3948. d="M687.396,665.511c0-1.421,1.155-2.576,2.57-2.576c1.421,0,2.572,1.157,2.572,2.576 s-1.156,2.569-2.572,2.569C688.549,668.086,687.396,666.93,687.396,665.511 M685.365,665.511c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.063-4.606-4.604-4.606C687.422,660.903,685.365,662.969,685.365,665.511L685.365,665.511z"
  3949. data-v-0c9672f3=""></path>
  3950. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3951. x1="696.428" y1="651.08" x2="689.461" y2="661.898"></line>
  3952. </g>
  3953. </g>
  3954. <g id="nsskg3212">
  3955. <g v-if="ajaxData.nsskg3212" id="_73_">
  3956. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3957. x1="763.422" y1="533.572" x2="780.688" y2="533.572"></line>
  3958. <path fill="#A61F24"
  3959. d="M769.99,550.161c0-1.421,1.155-2.571,2.571-2.571c1.421,0,2.571,1.154,2.571,2.571 s-1.155,2.571-2.571,2.571C771.143,552.734,769.99,551.58,769.99,550.161 M767.959,550.161c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C770.016,545.557,767.959,547.617,767.959,550.161L767.959,550.161z"
  3960. data-v-0c9672f3=""></path>
  3961. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3962. x1="772.563" y1="533.799" x2="772.563" y2="546.551"></line>
  3963. </g>
  3964. <g v-else-if="ajaxData.nsskg3212 == false" id="_73_">
  3965. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3966. x1="763.422" y1="533.572" x2="780.688" y2="533.572"></line>
  3967. <path fill="#1B9D3A"
  3968. d="M769.99,550.161c0-1.421,1.155-2.574,2.571-2.574c1.421,0,2.571,1.155,2.571,2.574 s-1.155,2.571-2.571,2.571C771.143,552.734,769.99,551.58,769.99,550.161 M767.959,550.161c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C770.016,545.554,767.959,547.617,767.959,550.161L767.959,550.161z"
  3969. data-v-0c9672f3=""></path>
  3970. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3971. x1="779.021" y1="535.729" x2="772.055" y2="546.551"></line>
  3972. </g>
  3973. </g>
  3974. <g id="nsskg3213">
  3975. <g v-if="ajaxData.nsskg3213" id="_72_">
  3976. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3977. x1="763.422" y1="647.271" x2="780.688" y2="647.271"></line>
  3978. <path fill="#A61F24"
  3979. d="M769.99,663.859c0-1.421,1.155-2.573,2.571-2.573c1.421,0,2.571,1.156,2.571,2.573 s-1.155,2.57-2.571,2.57C771.143,666.433,769.99,665.278,769.99,663.859 M767.959,663.859c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C770.016,659.257,767.959,661.315,767.959,663.859L767.959,663.859z"
  3980. data-v-0c9672f3=""></path>
  3981. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  3982. x1="772.563" y1="647.495" x2="772.563" y2="660.247"></line>
  3983. </g>
  3984. <g v-else-if="ajaxData.nsskg3213 == false" id="_72_">
  3985. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  3986. x1="763.422" y1="647.271" x2="780.688" y2="647.271"></line>
  3987. <path fill="#1B9D3A"
  3988. d="M769.99,663.859c0-1.421,1.155-2.576,2.571-2.576c1.421,0,2.571,1.157,2.571,2.576 s-1.155,2.57-2.571,2.57C771.143,666.433,769.99,665.278,769.99,663.859 M767.959,663.859c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C770.016,659.254,767.959,661.315,767.959,663.859L767.959,663.859z"
  3989. data-v-0c9672f3=""></path>
  3990. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  3991. x1="779.021" y1="649.429" x2="772.055" y2="660.247"></line>
  3992. </g>
  3993. </g>
  3994. <g id="nsskg3210">
  3995. <g v-if="ajaxData.nsskg3210" id="_71_">
  3996. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  3997. x1="784.405" y1="708.622" x2="801.67" y2="708.622"></line>
  3998. <path fill="#A61F24"
  3999. d="M790.973,725.213c0-1.423,1.156-2.573,2.571-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.569-2.572,2.569C792.125,727.784,790.973,726.632,790.973,725.213 M788.942,725.213c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.063-4.604-4.604-4.604C790.998,720.606,788.942,722.667,788.942,725.213L788.942,725.213z"
  4000. data-v-0c9672f3=""></path>
  4001. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4002. x1="793.545" y1="708.847" x2="793.545" y2="721.599"></line>
  4003. </g>
  4004. <g v-else-if="ajaxData.nsskg3210 == false" id="_71_">
  4005. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4006. x1="784.405" y1="708.622" x2="801.67" y2="708.622"></line>
  4007. <path fill="#1B9D3A"
  4008. d="M790.973,725.213c0-1.423,1.156-2.576,2.571-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.569-2.572,2.569C792.125,727.784,790.973,726.632,790.973,725.213 M788.942,725.213 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.063-4.606-4.604-4.606 C790.998,720.604,788.942,722.667,788.942,725.213L788.942,725.213z"
  4009. data-v-0c9672f3=""></path>
  4010. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4011. x1="800.004" y1="710.78" x2="793.037" y2="721.599"></line>
  4012. </g>
  4013. </g>
  4014. <g id="nsskg3222">
  4015. <g v-if="ajaxData.nsskg3222" id="_70_">
  4016. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4017. x1="845.922" y1="533.572" x2="863.188" y2="533.572"></line>
  4018. <path fill="#A61F24"
  4019. d="M852.49,550.161c0-1.421,1.155-2.571,2.571-2.571c1.421,0,2.571,1.154,2.571,2.571 s-1.155,2.571-2.571,2.571C853.643,552.734,852.49,551.58,852.49,550.161 M850.459,550.161c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C852.516,545.557,850.459,547.617,850.459,550.161L850.459,550.161z"
  4020. data-v-0c9672f3=""></path>
  4021. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4022. x1="855.063" y1="533.799" x2="855.063" y2="546.551"></line>
  4023. </g>
  4024. <g v-else-if="ajaxData.nsskg3222 == false" id="_70_">
  4025. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4026. x1="845.922" y1="533.572" x2="863.188" y2="533.572"></line>
  4027. <path fill="#1B9D3A"
  4028. d="M852.49,550.161c0-1.421,1.155-2.574,2.571-2.574c1.421,0,2.571,1.155,2.571,2.574 s-1.155,2.571-2.571,2.571C853.643,552.734,852.49,551.58,852.49,550.161 M850.459,550.161c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C852.516,545.554,850.459,547.617,850.459,550.161L850.459,550.161z"
  4029. data-v-0c9672f3=""></path>
  4030. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4031. x1="861.521" y1="535.729" x2="854.555" y2="546.551"></line>
  4032. </g>
  4033. </g>
  4034. <g id="nsskg3223">
  4035. <g v-if="ajaxData.nsskg3223" id="_69_">
  4036. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4037. x1="845.922" y1="647.271" x2="863.188" y2="647.271"></line>
  4038. <path fill="#A61F24"
  4039. d="M852.49,663.859c0-1.421,1.155-2.573,2.571-2.573c1.421,0,2.571,1.156,2.571,2.573 s-1.155,2.57-2.571,2.57C853.643,666.433,852.49,665.278,852.49,663.859 M850.459,663.859c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C852.516,659.257,850.459,661.315,850.459,663.859L850.459,663.859z"
  4040. data-v-0c9672f3=""></path>
  4041. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4042. x1="855.063" y1="647.495" x2="855.063" y2="660.247"></line>
  4043. </g>
  4044. <g v-else-if="ajaxData.nsskg3223 == false" id="_69_">
  4045. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4046. x1="845.922" y1="647.271" x2="863.188" y2="647.271"></line>
  4047. <path fill="#1B9D3A"
  4048. d="M852.49,663.859c0-1.421,1.155-2.576,2.571-2.576c1.421,0,2.571,1.157,2.571,2.576 s-1.155,2.57-2.571,2.57C853.643,666.433,852.49,665.278,852.49,663.859 M850.459,663.859c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C852.516,659.254,850.459,661.315,850.459,663.859L850.459,663.859z"
  4049. data-v-0c9672f3=""></path>
  4050. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4051. x1="861.521" y1="649.429" x2="854.555" y2="660.247"></line>
  4052. </g>
  4053. </g>
  4054. <g id="nsskg3220">
  4055. <g v-if="ajaxData.nsskg3220" id="_68_">
  4056. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4057. x1="866.905" y1="708.622" x2="884.17" y2="708.622"></line>
  4058. <path fill="#A61F24"
  4059. d="M873.473,725.213c0-1.423,1.156-2.573,2.571-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.569-2.572,2.569C874.625,727.784,873.473,726.632,873.473,725.213 M871.442,725.213c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.063-4.604-4.604-4.604C873.498,720.606,871.442,722.667,871.442,725.213L871.442,725.213z"
  4060. data-v-0c9672f3=""></path>
  4061. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4062. x1="876.045" y1="708.847" x2="876.045" y2="721.599"></line>
  4063. </g>
  4064. <g v-else-if="ajaxData.nsskg3220 == false" id="_68_">
  4065. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4066. x1="866.905" y1="708.622" x2="884.17" y2="708.622"></line>
  4067. <path fill="#1B9D3A"
  4068. d="M873.473,725.213c0-1.423,1.156-2.576,2.571-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.569-2.572,2.569C874.625,727.784,873.473,726.632,873.473,725.213 M871.442,725.213 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.063-4.606-4.604-4.606 C873.498,720.604,871.442,722.667,871.442,725.213L871.442,725.213z"
  4069. data-v-0c9672f3=""></path>
  4070. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4071. x1="882.504" y1="710.78" x2="875.537" y2="721.599"></line>
  4072. </g>
  4073. </g>
  4074. <g id="nsskg3232">
  4075. <g v-if="ajaxData.nsskg3232" id="_67_">
  4076. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4077. x1="926.916" y1="533.572" x2="944.182" y2="533.572"></line>
  4078. <path fill="#A61F24"
  4079. d="M933.485,550.161c0-1.421,1.154-2.571,2.568-2.571c1.422,0,2.574,1.154,2.574,2.571 s-1.158,2.571-2.574,2.571C934.638,552.734,933.485,551.58,933.485,550.161 M931.453,550.161c0,2.544,2.06,4.604,4.603,4.604 s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604S931.453,547.617,931.453,550.161L931.453,550.161z"
  4080. data-v-0c9672f3=""></path>
  4081. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4082. x1="936.058" y1="533.799" x2="936.058" y2="546.551"></line>
  4083. </g>
  4084. <g v-else-if="ajaxData.nsskg3232 == false" id="_67_">
  4085. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4086. x1="926.916" y1="533.572" x2="944.182" y2="533.572"></line>
  4087. <path fill="#1B9D3A"
  4088. d="M933.485,550.161c0-1.421,1.154-2.574,2.568-2.574c1.422,0,2.574,1.155,2.574,2.574 s-1.158,2.571-2.574,2.571C934.638,552.734,933.485,551.58,933.485,550.161 M931.453,550.161c0,2.543,2.06,4.604,4.603,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605S931.453,547.617,931.453,550.161L931.453,550.161z"
  4089. data-v-0c9672f3=""></path>
  4090. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4091. x1="942.518" y1="535.729" x2="935.55" y2="546.551"></line>
  4092. </g>
  4093. </g>
  4094. <g id="nsskg3233">
  4095. <g v-if="ajaxData.nsskg3233" id="_66_">
  4096. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4097. x1="926.916" y1="647.271" x2="944.182" y2="647.271"></line>
  4098. <path fill="#A61F24"
  4099. d="M933.485,663.859c0-1.421,1.154-2.573,2.568-2.573c1.422,0,2.574,1.156,2.574,2.573 s-1.158,2.57-2.574,2.57C934.638,666.433,933.485,665.278,933.485,663.859 M931.453,663.859c0,2.544,2.06,4.604,4.603,4.604 s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604S931.453,661.315,931.453,663.859L931.453,663.859z"
  4100. data-v-0c9672f3=""></path>
  4101. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4102. x1="936.058" y1="647.495" x2="936.058" y2="660.247"></line>
  4103. </g>
  4104. <g v-else-if="ajaxData.nsskg3233 == false" id="_66_">
  4105. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4106. x1="926.916" y1="647.271" x2="944.182" y2="647.271"></line>
  4107. <path fill="#1B9D3A"
  4108. d="M933.485,663.859c0-1.421,1.154-2.576,2.568-2.576c1.422,0,2.574,1.157,2.574,2.576 s-1.158,2.57-2.574,2.57C934.638,666.433,933.485,665.278,933.485,663.859 M931.453,663.859c0,2.543,2.06,4.604,4.603,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605S931.453,661.315,931.453,663.859L931.453,663.859z"
  4109. data-v-0c9672f3=""></path>
  4110. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4111. x1="942.518" y1="649.429" x2="935.55" y2="660.247"></line>
  4112. </g>
  4113. </g>
  4114. <g id="nsskg3230">
  4115. <g v-if="ajaxData.nsskg3230" id="_65_">
  4116. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4117. x1="947.898" y1="708.622" x2="965.164" y2="708.622"></line>
  4118. <path fill="#A61F24"
  4119. d="M954.467,725.213c0-1.423,1.155-2.573,2.569-2.573c1.423,0,2.574,1.156,2.574,2.573 s-1.158,2.569-2.574,2.569C955.619,727.784,954.467,726.632,954.467,725.213 M952.438,725.213c0,2.544,2.06,4.604,4.604,4.604 c2.543,0,4.604-2.061,4.604-4.604c0-2.544-2.063-4.604-4.604-4.604C954.494,720.607,952.438,722.667,952.438,725.213 L952.438,725.213z"
  4120. data-v-0c9672f3=""></path>
  4121. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4122. x1="957.039" y1="708.847" x2="957.039" y2="721.599"></line>
  4123. </g>
  4124. <g v-else-if="ajaxData.nsskg3230 == false" id="_65_">
  4125. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4126. x1="947.898" y1="708.622" x2="965.164" y2="708.622"></line>
  4127. <path fill="#1B9D3A"
  4128. d="M954.467,725.213c0-1.423,1.155-2.576,2.569-2.576c1.423,0,2.574,1.155,2.574,2.576 c0,1.419-1.158,2.569-2.574,2.569C955.619,727.784,954.467,726.632,954.467,725.213 M952.438,725.213 c0,2.543,2.06,4.604,4.604,4.604c2.543,0,4.604-2.061,4.604-4.604c0-2.546-2.063-4.606-4.604-4.606 C954.494,720.604,952.438,722.667,952.438,725.213L952.438,725.213z"
  4129. data-v-0c9672f3=""></path>
  4130. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4131. x1="963.498" y1="710.78" x2="956.531" y2="721.599"></line>
  4132. </g>
  4133. </g>
  4134. <g id="nsskg3251">
  4135. <g v-if="ajaxData.nsskg3251" id="_64_">
  4136. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4137. x1="1010.23" y1="533.572" x2="1027.496" y2="533.572"></line>
  4138. <path fill="#A61F24"
  4139. d="M1016.799,550.161c0-1.421,1.156-2.571,2.569-2.571c1.423,0,2.574,1.154,2.574,2.571 s-1.158,2.571-2.574,2.571C1017.951,552.734,1016.799,551.58,1016.799,550.161 M1014.77,550.161c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604C1016.826,545.557,1014.77,547.617,1014.77,550.161L1014.77,550.161z"
  4140. data-v-0c9672f3=""></path>
  4141. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4142. x1="1019.371" y1="533.799" x2="1019.371" y2="546.551"></line>
  4143. </g>
  4144. <g v-else-if="ajaxData.nsskg3251 == false" id="_64_">
  4145. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4146. x1="1010.23" y1="533.572" x2="1027.496" y2="533.572"></line>
  4147. <path fill="#1B9D3A"
  4148. d="M1016.799,550.161c0-1.421,1.156-2.574,2.569-2.574c1.423,0,2.574,1.155,2.574,2.574 s-1.158,2.571-2.574,2.571C1017.951,552.734,1016.799,551.58,1016.799,550.161 M1014.77,550.161c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605C1016.826,545.554,1014.77,547.617,1014.77,550.161L1014.77,550.161z"
  4149. data-v-0c9672f3=""></path>
  4150. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4151. x1="1025.83" y1="535.729" x2="1018.864" y2="546.551"></line>
  4152. </g>
  4153. </g>
  4154. <g id="nsskg3253">
  4155. <g v-if="ajaxData.nsskg3253" id="_63_">
  4156. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4157. x1="1010.23" y1="647.271" x2="1027.496" y2="647.271"></line>
  4158. <path fill="#A61F24"
  4159. d="M1016.799,663.859c0-1.421,1.156-2.573,2.569-2.573c1.423,0,2.574,1.156,2.574,2.573 s-1.158,2.57-2.574,2.57C1017.951,666.433,1016.799,665.278,1016.799,663.859 M1014.77,663.859c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604C1016.826,659.257,1014.77,661.315,1014.77,663.859L1014.77,663.859z"
  4160. data-v-0c9672f3=""></path>
  4161. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4162. x1="1019.371" y1="647.495" x2="1019.371" y2="660.247"></line>
  4163. </g>
  4164. <g v-else-if="ajaxData.nsskg3253 == false" id="_63_">
  4165. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4166. x1="1010.23" y1="647.271" x2="1027.496" y2="647.271"></line>
  4167. <path fill="#1B9D3A"
  4168. d="M1016.799,663.859c0-1.421,1.156-2.576,2.569-2.576c1.423,0,2.574,1.157,2.574,2.576 s-1.158,2.57-2.574,2.57C1017.951,666.433,1016.799,665.278,1016.799,663.859 M1014.77,663.859c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605C1016.826,659.254,1014.77,661.315,1014.77,663.859L1014.77,663.859z"
  4169. data-v-0c9672f3=""></path>
  4170. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4171. x1="1025.83" y1="649.429" x2="1018.864" y2="660.247"></line>
  4172. </g>
  4173. </g>
  4174. <g id="nsskg3250">
  4175. <g v-if="ajaxData.nsskg3250" id="_62_">
  4176. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4177. x1="1031.213" y1="708.622" x2="1048.479" y2="708.622"></line>
  4178. <path fill="#A61F24"
  4179. d="M1037.781,725.213c0-1.423,1.155-2.573,2.569-2.573c1.422,0,2.574,1.156,2.574,2.573 s-1.158,2.569-2.574,2.569C1038.936,727.784,1037.781,726.632,1037.781,725.213 M1035.75,725.213 c0,2.544,2.059,4.604,4.604,4.604c2.543,0,4.604-2.061,4.604-4.604c0-2.544-2.062-4.604-4.604-4.604 C1037.809,720.607,1035.75,722.667,1035.75,725.213L1035.75,725.213z"
  4180. data-v-0c9672f3=""></path>
  4181. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4182. x1="1040.354" y1="708.847" x2="1040.354" y2="721.599"></line>
  4183. </g>
  4184. <g v-else-if="ajaxData.nsskg3250 == false" id="_62_">
  4185. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4186. x1="1031.213" y1="708.622" x2="1048.479" y2="708.622"></line>
  4187. <path fill="#1B9D3A"
  4188. d="M1037.781,725.213c0-1.423,1.155-2.576,2.569-2.576c1.422,0,2.574,1.155,2.574,2.576 c0,1.419-1.158,2.569-2.574,2.569C1038.936,727.784,1037.781,726.632,1037.781,725.213 M1035.75,725.213 c0,2.543,2.059,4.604,4.604,4.604c2.543,0,4.604-2.061,4.604-4.604c0-2.546-2.062-4.606-4.604-4.606 C1037.809,720.604,1035.75,722.667,1035.75,725.213L1035.75,725.213z"
  4189. data-v-0c9672f3=""></path>
  4190. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4191. x1="1046.813" y1="710.78" x2="1039.846" y2="721.599"></line>
  4192. </g>
  4193. </g>
  4194. <g id="nsskg3262">
  4195. <g v-if="ajaxData.nsskg3262" id="_61_">
  4196. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4197. x1="1092.592" y1="533.572" x2="1109.858" y2="533.572"></line>
  4198. <path fill="#A61F24"
  4199. d="M1099.16,550.161c0-1.421,1.156-2.571,2.572-2.571c1.42,0,2.571,1.154,2.571,2.571 s-1.155,2.571-2.571,2.571C1100.313,552.734,1099.16,551.58,1099.16,550.161 M1097.129,550.161c0,2.544,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C1099.188,545.557,1097.129,547.617,1097.129,550.161L1097.129,550.161z"
  4200. data-v-0c9672f3=""></path>
  4201. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4202. x1="1101.733" y1="533.799" x2="1101.733" y2="546.551"></line>
  4203. </g>
  4204. <g v-else-if="ajaxData.nsskg3262 == false" id="_61_">
  4205. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4206. x1="1092.592" y1="533.572" x2="1109.858" y2="533.572"></line>
  4207. <path fill="#1B9D3A"
  4208. d="M1099.16,550.161c0-1.421,1.156-2.574,2.572-2.574c1.42,0,2.571,1.155,2.571,2.574 s-1.155,2.571-2.571,2.571C1100.313,552.734,1099.16,551.58,1099.16,550.161 M1097.129,550.161c0,2.543,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C1099.188,545.554,1097.129,547.617,1097.129,550.161L1097.129,550.161 z"
  4209. data-v-0c9672f3=""></path>
  4210. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4211. x1="1108.192" y1="535.729" x2="1101.225" y2="546.551"></line>
  4212. </g>
  4213. </g>
  4214. <g id="nsskg3263">
  4215. <g v-if="ajaxData.nsskg3263" id="_60_">
  4216. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4217. x1="1092.592" y1="647.271" x2="1109.858" y2="647.271"></line>
  4218. <path fill="#A61F24"
  4219. d="M1099.16,663.859c0-1.421,1.156-2.573,2.572-2.573c1.42,0,2.571,1.156,2.571,2.573 s-1.155,2.57-2.571,2.57C1100.313,666.433,1099.16,665.278,1099.16,663.859 M1097.129,663.859c0,2.544,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C1099.188,659.257,1097.129,661.315,1097.129,663.859L1097.129,663.859z"
  4220. data-v-0c9672f3=""></path>
  4221. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4222. x1="1101.733" y1="647.495" x2="1101.733" y2="660.247"></line>
  4223. </g>
  4224. <g v-else-if="ajaxData.nsskg3263 == false" id="_60_">
  4225. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4226. x1="1092.592" y1="647.271" x2="1109.858" y2="647.271"></line>
  4227. <path fill="#1B9D3A"
  4228. d="M1099.16,663.859c0-1.421,1.156-2.576,2.572-2.576c1.42,0,2.571,1.157,2.571,2.576 s-1.155,2.57-2.571,2.57C1100.313,666.433,1099.16,665.278,1099.16,663.859 M1097.129,663.859c0,2.543,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C1099.188,659.254,1097.129,661.315,1097.129,663.859L1097.129,663.859 z"
  4229. data-v-0c9672f3=""></path>
  4230. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4231. x1="1108.192" y1="649.429" x2="1101.225" y2="660.247"></line>
  4232. </g>
  4233. </g>
  4234. <g id="nsskg3272">
  4235. <g v-if="ajaxData.nsskg3272" id="_59_">
  4236. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4237. x1="1173.666" y1="533.572" x2="1190.932" y2="533.572"></line>
  4238. <path fill="#A61F24"
  4239. d="M1180.235,550.161c0-1.421,1.155-2.571,2.569-2.571c1.422,0,2.573,1.154,2.573,2.571 s-1.157,2.571-2.573,2.571C1181.387,552.734,1180.235,551.58,1180.235,550.161 M1178.203,550.161c0,2.544,2.06,4.604,4.603,4.604 c2.546,0,4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604S1178.203,547.617,1178.203,550.161L1178.203,550.161z"
  4240. data-v-0c9672f3=""></path>
  4241. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4242. x1="1182.807" y1="533.799" x2="1182.807" y2="546.551"></line>
  4243. </g>
  4244. <g v-else-if="ajaxData.nsskg3272 == false" id="_59_">
  4245. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4246. x1="1173.666" y1="533.572" x2="1190.932" y2="533.572"></line>
  4247. <path fill="#1B9D3A"
  4248. d="M1180.235,550.161c0-1.421,1.155-2.574,2.569-2.574c1.422,0,2.573,1.155,2.573,2.574 s-1.157,2.571-2.573,2.571C1181.387,552.734,1180.235,551.58,1180.235,550.161 M1178.203,550.161c0,2.543,2.06,4.604,4.603,4.604 c2.546,0,4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C1180.262,545.554,1178.203,547.617,1178.203,550.161 L1178.203,550.161z"
  4249. data-v-0c9672f3=""></path>
  4250. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4251. x1="1189.266" y1="535.729" x2="1182.299" y2="546.551"></line>
  4252. </g>
  4253. </g>
  4254. <g id="nsskg3260">
  4255. <g v-if="ajaxData.nsskg3260" id="_58_">
  4256. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4257. x1="1113.574" y1="708.622" x2="1130.84" y2="708.622"></line>
  4258. <path fill="#A61F24"
  4259. d="M1120.145,725.213c0-1.423,1.154-2.573,2.57-2.573c1.42,0,2.571,1.156,2.571,2.573 s-1.155,2.569-2.571,2.569C1121.295,727.784,1120.145,726.632,1120.145,725.213 M1118.112,725.213 c0,2.544,2.062,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.544-2.063-4.604-4.604-4.604 C1120.168,720.606,1118.112,722.667,1118.112,725.213L1118.112,725.213z"
  4260. data-v-0c9672f3=""></path>
  4261. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4262. x1="1122.715" y1="708.847" x2="1122.715" y2="721.599"></line>
  4263. </g>
  4264. <g v-else-if="ajaxData.nsskg3260 == false" id="_58_">
  4265. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4266. x1="1113.574" y1="708.622" x2="1130.84" y2="708.622"></line>
  4267. <path fill="#1B9D3A"
  4268. d="M1120.145,725.213c0-1.423,1.154-2.576,2.57-2.576c1.42,0,2.571,1.155,2.571,2.576 c0,1.419-1.155,2.569-2.571,2.569C1121.295,727.784,1120.145,726.632,1120.145,725.213 M1118.112,725.213 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.063-4.606-4.604-4.606 C1120.168,720.604,1118.112,722.667,1118.112,725.213L1118.112,725.213z"
  4269. data-v-0c9672f3=""></path>
  4270. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4271. x1="1129.174" y1="710.78" x2="1122.207" y2="721.599"></line>
  4272. </g>
  4273. </g>
  4274. <g id="nsskg350">
  4275. <g v-if="ajaxData.nsskg350" id="_93_">
  4276. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4277. x1="1348.176" y1="586.746" x2="1365.441" y2="586.746"></line>
  4278. <path fill="#A61F24"
  4279. d="M1354.744,603.337c0-1.423,1.155-2.573,2.571-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.569-2.572,2.569C1355.896,605.908,1354.744,604.756,1354.744,603.337 M1352.713,603.337 c0,2.544,2.063,4.604,4.604,4.604c2.541,0,4.604-2.061,4.604-4.604c0-2.545-2.062-4.604-4.604-4.604 C1354.771,598.729,1352.713,600.792,1352.713,603.337L1352.713,603.337z"
  4280. data-v-0c9672f3=""></path>
  4281. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4282. x1="1357.316" y1="586.971" x2="1357.316" y2="599.723"></line>
  4283. </g>
  4284. <g v-else-if="ajaxData.nsskg350 == false" id="_93_">
  4285. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4286. x1="1348.176" y1="586.746" x2="1365.441" y2="586.746"></line>
  4287. <path fill="#1B9D3A"
  4288. d="M1354.744,603.337c0-1.423,1.155-2.576,2.571-2.576c1.421,0,2.572,1.156,2.572,2.576 c0,1.419-1.156,2.569-2.572,2.569C1355.896,605.908,1354.744,604.756,1354.744,603.337 M1352.713,603.337 c0,2.543,2.063,4.604,4.604,4.604c2.541,0,4.604-2.061,4.604-4.604c0-2.545-2.062-4.607-4.604-4.607 C1354.771,598.728,1352.713,600.792,1352.713,603.337L1352.713,603.337z"
  4289. data-v-0c9672f3=""></path>
  4290. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4291. x1="1363.775" y1="588.904" x2="1356.811" y2="599.723"></line>
  4292. </g>
  4293. </g>
  4294. <g id="nsskg359">
  4295. <g v-if="ajaxData.nsskg359" id="_92_">
  4296. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4297. x1="1328.211" y1="648.924" x2="1345.479" y2="648.924"></line>
  4298. <path fill="#A61F24"
  4299. d="M1334.78,665.511c0-1.421,1.155-2.572,2.571-2.572c1.42,0,2.572,1.155,2.572,2.572 s-1.156,2.569-2.572,2.569C1335.934,668.086,1334.78,666.93,1334.78,665.511 M1332.748,665.511c0,2.544,2.063,4.604,4.604,4.604 c2.543,0,4.604-2.061,4.604-4.604s-2.063-4.604-4.604-4.604C1334.807,660.906,1332.748,662.969,1332.748,665.511 L1332.748,665.511z"
  4300. data-v-0c9672f3=""></path>
  4301. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4302. x1="1337.354" y1="649.146" x2="1337.354" y2="661.898"></line>
  4303. </g>
  4304. <g v-else-if="ajaxData.nsskg359 == false" id="_92_">
  4305. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4306. x1="1328.211" y1="648.924" x2="1345.479" y2="648.924"></line>
  4307. <path fill="#1B9D3A"
  4308. d="M1334.78,665.511c0-1.421,1.155-2.576,2.571-2.576c1.42,0,2.572,1.157,2.572,2.576 s-1.156,2.569-2.572,2.569C1335.934,668.086,1334.78,666.93,1334.78,665.511 M1332.748,665.511c0,2.543,2.063,4.604,4.604,4.604 c2.543,0,4.604-2.061,4.604-4.604c0-2.544-2.063-4.606-4.604-4.606C1334.807,660.903,1332.748,662.969,1332.748,665.511 L1332.748,665.511z"
  4309. data-v-0c9672f3=""></path>
  4310. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4311. x1="1343.813" y1="651.08" x2="1336.844" y2="661.898"></line>
  4312. </g>
  4313. </g>
  4314. <g id="nsskg3511">
  4315. <g v-if="ajaxData.nsskg3511" id="_91_">
  4316. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4317. x1="1410.807" y1="533.572" x2="1428.071" y2="533.572"></line>
  4318. <path fill="#A61F24"
  4319. d="M1417.373,550.161c0-1.421,1.156-2.571,2.572-2.571c1.42,0,2.571,1.154,2.571,2.571 s-1.155,2.571-2.571,2.571C1418.525,552.734,1417.373,551.58,1417.373,550.161 M1415.342,550.161 c0,2.544,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604 C1417.398,545.557,1415.342,547.617,1415.342,550.161L1415.342,550.161z"
  4320. data-v-0c9672f3=""></path>
  4321. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4322. x1="1419.946" y1="533.799" x2="1419.946" y2="546.551"></line>
  4323. </g>
  4324. <g v-else-if="ajaxData.nsskg3511 == false" id="_91_">
  4325. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4326. x1="1410.807" y1="533.572" x2="1428.071" y2="533.572"></line>
  4327. <path fill="#1B9D3A"
  4328. d="M1417.373,550.161c0-1.421,1.156-2.574,2.572-2.574c1.42,0,2.571,1.155,2.571,2.574 s-1.155,2.571-2.571,2.571C1418.525,552.734,1417.373,551.58,1417.373,550.161 M1415.342,550.161 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605 C1417.398,545.554,1415.342,547.617,1415.342,550.161L1415.342,550.161z"
  4329. data-v-0c9672f3=""></path>
  4330. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4331. x1="1426.405" y1="535.729" x2="1419.438" y2="546.551"></line>
  4332. </g>
  4333. </g>
  4334. <g id="nsskg3513">
  4335. <g v-if="ajaxData.nsskg3513" id="_90_">
  4336. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4337. x1="1410.807" y1="647.271" x2="1428.071" y2="647.271"></line>
  4338. <path fill="#A61F24"
  4339. d="M1417.373,663.859c0-1.421,1.156-2.573,2.572-2.573c1.42,0,2.571,1.156,2.571,2.573 s-1.155,2.57-2.571,2.57C1418.525,666.433,1417.373,665.278,1417.373,663.859 M1415.342,663.859c0,2.544,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C1417.398,659.257,1415.342,661.315,1415.342,663.859L1415.342,663.859z"
  4340. data-v-0c9672f3=""></path>
  4341. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4342. x1="1419.946" y1="647.495" x2="1419.946" y2="660.247"></line>
  4343. </g>
  4344. <g v-else-if="ajaxData.nsskg3513 == false" id="_90_">
  4345. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4346. x1="1410.807" y1="647.271" x2="1428.071" y2="647.271"></line>
  4347. <path fill="#1B9D3A"
  4348. d="M1417.373,663.859c0-1.421,1.156-2.576,2.572-2.576c1.42,0,2.571,1.157,2.571,2.576 s-1.155,2.57-2.571,2.57C1418.525,666.433,1417.373,665.278,1417.373,663.859 M1415.342,663.859c0,2.543,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C1417.398,659.254,1415.342,661.315,1415.342,663.859L1415.342,663.859 z"
  4349. data-v-0c9672f3=""></path>
  4350. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4351. x1="1426.405" y1="649.429" x2="1419.438" y2="660.247"></line>
  4352. </g>
  4353. </g>
  4354. <g id="nsskg3510">
  4355. <g v-if="ajaxData.nsskg3510" id="_89_">
  4356. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4357. x1="1431.787" y1="708.622" x2="1449.053" y2="708.622"></line>
  4358. <path fill="#A61F24"
  4359. d="M1438.355,725.213c0-1.423,1.156-2.573,2.572-2.573c1.42,0,2.571,1.156,2.571,2.573 s-1.155,2.569-2.571,2.569C1439.508,727.784,1438.355,726.632,1438.355,725.213 M1436.324,725.213 c0,2.544,2.062,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.544-2.063-4.604-4.604-4.604 C1438.381,720.606,1436.324,722.667,1436.324,725.213L1436.324,725.213z"
  4360. data-v-0c9672f3=""></path>
  4361. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4362. x1="1440.928" y1="708.847" x2="1440.928" y2="721.599"></line>
  4363. </g>
  4364. <g v-else-if="ajaxData.nsskg3510 == false" id="_89_">
  4365. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4366. x1="1431.787" y1="708.622" x2="1449.053" y2="708.622"></line>
  4367. <path fill="#1B9D3A"
  4368. d="M1438.355,725.213c0-1.423,1.156-2.576,2.572-2.576c1.42,0,2.571,1.155,2.571,2.576 c0,1.419-1.155,2.569-2.571,2.569C1439.508,727.784,1438.355,726.632,1438.355,725.213 M1436.324,725.213 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.063-4.606-4.604-4.606 C1438.381,720.604,1436.324,722.667,1436.324,725.213L1436.324,725.213z"
  4369. data-v-0c9672f3=""></path>
  4370. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4371. x1="1447.387" y1="710.78" x2="1440.42" y2="721.599"></line>
  4372. </g>
  4373. </g>
  4374. <g id="nsskg3531">
  4375. <g v-if="ajaxData.nsskg3531" id="_88_">
  4376. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4377. x1="1493.307" y1="533.572" x2="1510.571" y2="533.572"></line>
  4378. <path fill="#A61F24"
  4379. d="M1499.873,550.161c0-1.421,1.156-2.571,2.572-2.571c1.42,0,2.571,1.154,2.571,2.571 s-1.155,2.571-2.571,2.571C1501.025,552.734,1499.873,551.58,1499.873,550.161 M1497.842,550.161 c0,2.544,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604 C1499.898,545.557,1497.842,547.617,1497.842,550.161L1497.842,550.161z"
  4380. data-v-0c9672f3=""></path>
  4381. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4382. x1="1502.446" y1="533.799" x2="1502.446" y2="546.551"></line>
  4383. </g>
  4384. <g v-else-if="ajaxData.nsskg3531 == false" id="_88_">
  4385. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4386. x1="1493.307" y1="533.572" x2="1510.571" y2="533.572"></line>
  4387. <path fill="#1B9D3A"
  4388. d="M1499.873,550.161c0-1.421,1.156-2.574,2.572-2.574c1.42,0,2.571,1.155,2.571,2.574 s-1.155,2.571-2.571,2.571C1501.025,552.734,1499.873,551.58,1499.873,550.161 M1497.842,550.161 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605 C1499.898,545.554,1497.842,547.617,1497.842,550.161L1497.842,550.161z"
  4389. data-v-0c9672f3=""></path>
  4390. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4391. x1="1508.905" y1="535.729" x2="1501.938" y2="546.551"></line>
  4392. </g>
  4393. </g>
  4394. <g id="nsskg3533">
  4395. <g v-if="ajaxData.nsskg3533" id="_87_">
  4396. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4397. x1="1493.307" y1="647.271" x2="1510.571" y2="647.271"></line>
  4398. <path fill="#A61F24"
  4399. d="M1499.873,663.859c0-1.421,1.156-2.573,2.572-2.573c1.42,0,2.571,1.156,2.571,2.573 s-1.155,2.57-2.571,2.57C1501.025,666.433,1499.873,665.278,1499.873,663.859 M1497.842,663.859c0,2.544,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.062-4.604-4.604-4.604C1499.898,659.257,1497.842,661.315,1497.842,663.859L1497.842,663.859z"
  4400. data-v-0c9672f3=""></path>
  4401. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4402. x1="1502.446" y1="647.495" x2="1502.446" y2="660.247"></line>
  4403. </g>
  4404. <g v-else-if="ajaxData.nsskg3533 == false" id="_87_">
  4405. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4406. x1="1493.307" y1="647.271" x2="1510.571" y2="647.271"></line>
  4407. <path fill="#1B9D3A"
  4408. d="M1499.873,663.859c0-1.421,1.156-2.576,2.572-2.576c1.42,0,2.571,1.157,2.571,2.576 s-1.155,2.57-2.571,2.57C1501.025,666.433,1499.873,665.278,1499.873,663.859 M1497.842,663.859c0,2.543,2.063,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.062-4.605-4.604-4.605C1499.898,659.254,1497.842,661.315,1497.842,663.859L1497.842,663.859 z"
  4409. data-v-0c9672f3=""></path>
  4410. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4411. x1="1508.905" y1="649.429" x2="1501.938" y2="660.247"></line>
  4412. </g>
  4413. </g>
  4414. <g id="nsskg3530">
  4415. <g v-if="ajaxData.nsskg3530" id="_86_">
  4416. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4417. x1="1514.287" y1="708.622" x2="1531.553" y2="708.622"></line>
  4418. <path fill="#A61F24"
  4419. d="M1520.855,725.213c0-1.423,1.156-2.573,2.572-2.573c1.42,0,2.571,1.156,2.571,2.573 s-1.155,2.569-2.571,2.569C1522.008,727.784,1520.855,726.632,1520.855,725.213 M1518.824,725.213 c0,2.544,2.062,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.544-2.063-4.604-4.604-4.604 C1520.881,720.606,1518.824,722.667,1518.824,725.213L1518.824,725.213z"
  4420. data-v-0c9672f3=""></path>
  4421. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4422. x1="1523.428" y1="708.847" x2="1523.428" y2="721.599"></line>
  4423. </g>
  4424. <g v-else-if="ajaxData.nsskg3530 == false" id="_86_">
  4425. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4426. x1="1514.287" y1="708.622" x2="1531.553" y2="708.622"></line>
  4427. <path fill="#1B9D3A"
  4428. d="M1520.855,725.213c0-1.423,1.156-2.576,2.572-2.576c1.42,0,2.571,1.155,2.571,2.576 c0,1.419-1.155,2.569-2.571,2.569C1522.008,727.784,1520.855,726.632,1520.855,725.213 M1518.824,725.213 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.063-4.606-4.604-4.606 C1520.881,720.604,1518.824,722.667,1518.824,725.213L1518.824,725.213z"
  4429. data-v-0c9672f3=""></path>
  4430. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4431. x1="1529.887" y1="710.78" x2="1522.92" y2="721.599"></line>
  4432. </g>
  4433. </g>
  4434. <g id="nsskg3541">
  4435. <g v-if="ajaxData.nsskg3541" id="_85_">
  4436. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4437. x1="1574.301" y1="533.572" x2="1591.566" y2="533.572"></line>
  4438. <path fill="#A61F24"
  4439. d="M1580.869,550.161c0-1.421,1.155-2.571,2.569-2.571c1.422,0,2.572,1.154,2.572,2.571 s-1.156,2.571-2.572,2.571C1582.021,552.734,1580.869,551.58,1580.869,550.161 M1578.838,550.161 c0,2.544,2.059,4.604,4.602,4.604c2.544,0,4.605-2.062,4.605-4.604s-2.062-4.604-4.605-4.604S1578.838,547.617,1578.838,550.161 L1578.838,550.161z"
  4440. data-v-0c9672f3=""></path>
  4441. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4442. x1="1583.441" y1="533.799" x2="1583.441" y2="546.551"></line>
  4443. </g>
  4444. <g v-else-if="ajaxData.nsskg3541 == false" id="_85_">
  4445. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4446. x1="1574.301" y1="533.572" x2="1591.566" y2="533.572"></line>
  4447. <path fill="#1B9D3A"
  4448. d="M1580.869,550.161c0-1.421,1.155-2.574,2.569-2.574c1.422,0,2.572,1.155,2.572,2.574 s-1.156,2.571-2.572,2.571C1582.021,552.734,1580.869,551.58,1580.869,550.161 M1578.838,550.161 c0,2.543,2.059,4.604,4.602,4.604c2.544,0,4.605-2.062,4.605-4.604c0-2.544-2.062-4.605-4.605-4.605 C1580.896,545.554,1578.838,547.617,1578.838,550.161L1578.838,550.161z"
  4449. data-v-0c9672f3=""></path>
  4450. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4451. x1="1589.9" y1="535.729" x2="1582.934" y2="546.551"></line>
  4452. </g>
  4453. </g>
  4454. <g id="nsskg3543">
  4455. <g v-if="ajaxData.nsskg3543" id="_84_">
  4456. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4457. x1="1574.301" y1="647.271" x2="1591.566" y2="647.271"></line>
  4458. <path fill="#A61F24"
  4459. d="M1580.869,663.859c0-1.421,1.155-2.573,2.569-2.573c1.422,0,2.572,1.156,2.572,2.573 s-1.156,2.57-2.572,2.57C1582.021,666.433,1580.869,665.278,1580.869,663.859 M1578.838,663.859c0,2.544,2.059,4.604,4.602,4.604 c2.544,0,4.605-2.062,4.605-4.604s-2.062-4.604-4.605-4.604C1580.896,659.257,1578.838,661.315,1578.838,663.859 L1578.838,663.859z"
  4460. data-v-0c9672f3=""></path>
  4461. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4462. x1="1583.441" y1="647.495" x2="1583.441" y2="660.247"></line>
  4463. </g>
  4464. <g v-else-if="ajaxData.nsskg3543 == false" id="_84_">
  4465. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4466. x1="1574.301" y1="647.271" x2="1591.566" y2="647.271"></line>
  4467. <path fill="#1B9D3A"
  4468. d="M1580.869,663.859c0-1.421,1.155-2.576,2.569-2.576c1.422,0,2.572,1.157,2.572,2.576 s-1.156,2.57-2.572,2.57C1582.021,666.433,1580.869,665.278,1580.869,663.859 M1578.838,663.859c0,2.543,2.059,4.604,4.602,4.604 c2.544,0,4.605-2.062,4.605-4.604c0-2.544-2.062-4.605-4.605-4.605S1578.838,661.315,1578.838,663.859L1578.838,663.859z"
  4469. data-v-0c9672f3=""></path>
  4470. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4471. x1="1589.9" y1="649.429" x2="1582.934" y2="660.247"></line>
  4472. </g>
  4473. </g>
  4474. <g id="nsskg3540">
  4475. <g v-if="ajaxData.nsskg3540" id="_83_">
  4476. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4477. x1="1595.283" y1="708.622" x2="1612.549" y2="708.622"></line>
  4478. <path fill="#A61F24"
  4479. d="M1601.852,725.213c0-1.423,1.156-2.573,2.57-2.573c1.422,0,2.573,1.156,2.573,2.573 s-1.157,2.569-2.573,2.569C1603.004,727.784,1601.852,726.632,1601.852,725.213 M1599.821,725.213 c0,2.544,2.06,4.604,4.603,4.604c2.544,0,4.604-2.061,4.604-4.604c0-2.544-2.063-4.604-4.604-4.604 C1601.877,720.607,1599.821,722.667,1599.821,725.213L1599.821,725.213z"
  4480. data-v-0c9672f3=""></path>
  4481. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4482. x1="1604.424" y1="708.847" x2="1604.424" y2="721.599"></line>
  4483. </g>
  4484. <g v-else-if="ajaxData.nsskg3540 == false" id="_83_">
  4485. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4486. x1="1595.283" y1="708.622" x2="1612.549" y2="708.622"></line>
  4487. <path fill="#1B9D3A"
  4488. d="M1601.852,725.213c0-1.423,1.156-2.576,2.57-2.576c1.422,0,2.573,1.155,2.573,2.576 c0,1.419-1.157,2.569-2.573,2.569C1603.004,727.784,1601.852,726.632,1601.852,725.213 M1599.821,725.213 c0,2.543,2.06,4.604,4.603,4.604c2.544,0,4.604-2.061,4.604-4.604c0-2.546-2.063-4.606-4.604-4.606 C1601.877,720.604,1599.821,722.667,1599.821,725.213L1599.821,725.213z"
  4489. data-v-0c9672f3=""></path>
  4490. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4491. x1="1610.883" y1="710.78" x2="1603.916" y2="721.599"></line>
  4492. </g>
  4493. </g>
  4494. <g id="nsskg3551">
  4495. <g v-if="ajaxData.nsskg3551" id="_82_">
  4496. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4497. x1="1657.615" y1="533.572" x2="1674.881" y2="533.572"></line>
  4498. <path fill="#A61F24"
  4499. d="M1664.184,550.161c0-1.421,1.156-2.571,2.57-2.571c1.422,0,2.573,1.154,2.573,2.571 s-1.157,2.571-2.573,2.571C1665.336,552.734,1664.184,551.58,1664.184,550.161 M1662.152,550.161 c0,2.544,2.061,4.604,4.604,4.604s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604 C1664.209,545.557,1662.152,547.617,1662.152,550.161L1662.152,550.161z"
  4500. data-v-0c9672f3=""></path>
  4501. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4502. x1="1666.756" y1="533.799" x2="1666.756" y2="546.551"></line>
  4503. </g>
  4504. <g v-else-if="ajaxData.nsskg3551 == false" id="_82_">
  4505. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4506. x1="1657.615" y1="533.572" x2="1674.881" y2="533.572"></line>
  4507. <path fill="#1B9D3A"
  4508. d="M1664.184,550.161c0-1.421,1.156-2.574,2.57-2.574c1.422,0,2.573,1.155,2.573,2.574 s-1.157,2.571-2.573,2.571C1665.336,552.734,1664.184,551.58,1664.184,550.161 M1662.152,550.161 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605 C1664.209,545.554,1662.152,547.617,1662.152,550.161L1662.152,550.161z"
  4509. data-v-0c9672f3=""></path>
  4510. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4511. x1="1673.215" y1="535.729" x2="1666.248" y2="546.551"></line>
  4512. </g>
  4513. </g>
  4514. <g id="nsskg3553">
  4515. <g v-if="ajaxData.nsskg3553" id="_81_">
  4516. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4517. x1="1657.615" y1="647.271" x2="1674.881" y2="647.271"></line>
  4518. <path fill="#A61F24"
  4519. d="M1664.184,663.859c0-1.421,1.156-2.573,2.57-2.573c1.422,0,2.573,1.156,2.573,2.573 s-1.157,2.57-2.573,2.57C1665.336,666.433,1664.184,665.278,1664.184,663.859 M1662.152,663.859c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604C1664.209,659.257,1662.152,661.315,1662.152,663.859L1662.152,663.859z"
  4520. data-v-0c9672f3=""></path>
  4521. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4522. x1="1666.756" y1="647.495" x2="1666.756" y2="660.247"></line>
  4523. </g>
  4524. <g v-else-if="ajaxData.nsskg3553 == false" id="_81_">
  4525. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4526. x1="1657.615" y1="647.271" x2="1674.881" y2="647.271"></line>
  4527. <path fill="#1B9D3A"
  4528. d="M1664.184,663.859c0-1.421,1.156-2.576,2.57-2.576c1.422,0,2.573,1.157,2.573,2.576 s-1.157,2.57-2.573,2.57C1665.336,666.433,1664.184,665.278,1664.184,663.859 M1662.152,663.859c0,2.543,2.061,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605C1664.209,659.254,1662.152,661.315,1662.152,663.859L1662.152,663.859 z"
  4529. data-v-0c9672f3=""></path>
  4530. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4531. x1="1673.215" y1="649.429" x2="1666.248" y2="660.247"></line>
  4532. </g>
  4533. </g>
  4534. <g id="nsskg3550">
  4535. <g v-if="ajaxData.nsskg3550" id="_80_">
  4536. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4537. x1="1678.598" y1="708.622" x2="1695.864" y2="708.622"></line>
  4538. <path fill="#A61F24"
  4539. d="M1685.166,725.213c0-1.423,1.156-2.573,2.569-2.573c1.423,0,2.574,1.156,2.574,2.573 s-1.158,2.569-2.574,2.569C1686.318,727.784,1685.166,726.632,1685.166,725.213 M1683.135,725.213 c0,2.544,2.059,4.604,4.603,4.604c2.543,0,4.604-2.061,4.604-4.604c0-2.544-2.062-4.604-4.604-4.604 C1685.193,720.607,1683.135,722.667,1683.135,725.213L1683.135,725.213z"
  4540. data-v-0c9672f3=""></path>
  4541. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4542. x1="1687.739" y1="708.847" x2="1687.739" y2="721.599"></line>
  4543. </g>
  4544. <g v-else-if="ajaxData.nsskg3550 == false" id="_80_">
  4545. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4546. x1="1678.598" y1="708.622" x2="1695.864" y2="708.622"></line>
  4547. <path fill="#1B9D3A"
  4548. d="M1685.166,725.213c0-1.423,1.156-2.576,2.569-2.576c1.423,0,2.574,1.155,2.574,2.576 c0,1.419-1.158,2.569-2.574,2.569C1686.318,727.784,1685.166,726.632,1685.166,725.213 M1683.135,725.213 c0,2.543,2.059,4.604,4.603,4.604c2.543,0,4.604-2.061,4.604-4.604c0-2.546-2.062-4.606-4.604-4.606 C1685.193,720.604,1683.135,722.667,1683.135,725.213L1683.135,725.213z"
  4549. data-v-0c9672f3=""></path>
  4550. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4551. x1="1694.198" y1="710.78" x2="1687.23" y2="721.599"></line>
  4552. </g>
  4553. </g>
  4554. <g id="nsskg3561">
  4555. <g v-if="ajaxData.nsskg3561" id="_79_">
  4556. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4557. x1="1739.977" y1="533.572" x2="1757.242" y2="533.572"></line>
  4558. <path fill="#A61F24"
  4559. d="M1746.545,550.161c0-1.421,1.155-2.571,2.571-2.571c1.421,0,2.572,1.154,2.572,2.571 s-1.156,2.571-2.572,2.571C1747.698,552.734,1746.545,551.58,1746.545,550.161 M1744.514,550.161 c0,2.544,2.062,4.604,4.604,4.604s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604 C1746.571,545.557,1744.514,547.617,1744.514,550.161L1744.514,550.161z"
  4560. data-v-0c9672f3=""></path>
  4561. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4562. x1="1749.117" y1="533.799" x2="1749.117" y2="546.551"></line>
  4563. </g>
  4564. <g v-else-if="ajaxData.nsskg3561 == false" id="_79_">
  4565. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4566. x1="1739.977" y1="533.572" x2="1757.242" y2="533.572"></line>
  4567. <path fill="#1B9D3A"
  4568. d="M1746.545,550.161c0-1.421,1.155-2.574,2.571-2.574c1.421,0,2.572,1.155,2.572,2.574 s-1.156,2.571-2.572,2.571C1747.698,552.734,1746.545,551.58,1746.545,550.161 M1744.514,550.161 c0,2.543,2.062,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605 C1746.571,545.554,1744.514,547.617,1744.514,550.161L1744.514,550.161z"
  4569. data-v-0c9672f3=""></path>
  4570. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4571. x1="1755.576" y1="535.729" x2="1748.609" y2="546.551"></line>
  4572. </g>
  4573. </g>
  4574. <g id="nsskg3563">
  4575. <g v-if="ajaxData.nsskg3563" id="_78_">
  4576. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4577. x1="1739.977" y1="647.271" x2="1757.242" y2="647.271"></line>
  4578. <path fill="#A61F24"
  4579. d="M1746.545,663.859c0-1.421,1.155-2.573,2.571-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.57-2.572,2.57C1747.698,666.433,1746.545,665.278,1746.545,663.859 M1744.514,663.859c0,2.544,2.062,4.604,4.604,4.604 s4.604-2.062,4.604-4.604s-2.063-4.604-4.604-4.604C1746.571,659.257,1744.514,661.315,1744.514,663.859L1744.514,663.859z"
  4580. data-v-0c9672f3=""></path>
  4581. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4582. x1="1749.117" y1="647.495" x2="1749.117" y2="660.247"></line>
  4583. </g>
  4584. <g v-else-if="ajaxData.nsskg3563 == false" id="_78_">
  4585. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4586. x1="1739.977" y1="647.271" x2="1757.242" y2="647.271"></line>
  4587. <path fill="#1B9D3A"
  4588. d="M1746.545,663.859c0-1.421,1.155-2.576,2.571-2.576c1.421,0,2.572,1.157,2.572,2.576 s-1.156,2.57-2.572,2.57C1747.698,666.433,1746.545,665.278,1746.545,663.859 M1744.514,663.859c0,2.543,2.062,4.604,4.604,4.604 s4.604-2.062,4.604-4.604c0-2.544-2.063-4.605-4.604-4.605C1746.571,659.254,1744.514,661.315,1744.514,663.859L1744.514,663.859 z"
  4589. data-v-0c9672f3=""></path>
  4590. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4591. x1="1755.576" y1="649.429" x2="1748.609" y2="660.247"></line>
  4592. </g>
  4593. </g>
  4594. <g id="nsskg3571">
  4595. <g v-if="ajaxData.nsskg3571" id="_77_">
  4596. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4597. x1="1821.051" y1="533.572" x2="1838.316" y2="533.572"></line>
  4598. <path fill="#A61F24"
  4599. d="M1827.619,550.161c0-1.421,1.155-2.571,2.569-2.571c1.422,0,2.572,1.154,2.572,2.571 s-1.156,2.571-2.572,2.571C1828.771,552.734,1827.619,551.58,1827.619,550.161 M1825.588,550.161 c0,2.544,2.059,4.604,4.602,4.604c2.544,0,4.605-2.062,4.605-4.604s-2.062-4.604-4.605-4.604S1825.588,547.617,1825.588,550.161 L1825.588,550.161z"
  4600. data-v-0c9672f3=""></path>
  4601. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4602. x1="1830.191" y1="533.799" x2="1830.191" y2="546.551"></line>
  4603. </g>
  4604. <g v-else-if="ajaxData.nsskg3571 == false" id="_77_">
  4605. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4606. x1="1821.051" y1="533.572" x2="1838.316" y2="533.572"></line>
  4607. <path fill="#1B9D3A"
  4608. d="M1827.619,550.161c0-1.421,1.155-2.574,2.569-2.574c1.422,0,2.572,1.155,2.572,2.574 s-1.156,2.571-2.572,2.571C1828.771,552.734,1827.619,551.58,1827.619,550.161 M1825.588,550.161 c0,2.543,2.059,4.604,4.602,4.604c2.544,0,4.605-2.062,4.605-4.604c0-2.544-2.062-4.605-4.605-4.605 C1827.646,545.554,1825.588,547.617,1825.588,550.161L1825.588,550.161z"
  4609. data-v-0c9672f3=""></path>
  4610. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4611. x1="1836.65" y1="535.729" x2="1829.684" y2="546.551"></line>
  4612. </g>
  4613. </g>
  4614. <g id="nsskg3560">
  4615. <g v-if="ajaxData.nsskg3560" id="_76_">
  4616. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4617. x1="1760.959" y1="708.622" x2="1778.225" y2="708.622"></line>
  4618. <path fill="#A61F24"
  4619. d="M1767.527,725.213c0-1.423,1.156-2.573,2.572-2.573c1.42,0,2.569,1.156,2.569,2.573 s-1.153,2.569-2.569,2.569C1768.68,727.784,1767.527,726.632,1767.527,725.213 M1765.496,725.213 c0,2.544,2.063,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604 C1767.553,720.606,1765.496,722.667,1765.496,725.213L1765.496,725.213z"
  4620. data-v-0c9672f3=""></path>
  4621. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4622. x1="1770.1" y1="708.847" x2="1770.1" y2="721.599"></line>
  4623. </g>
  4624. <g v-else-if="ajaxData.nsskg3560 == false" id="_76_">
  4625. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4626. x1="1760.959" y1="708.622" x2="1778.225" y2="708.622"></line>
  4627. <path fill="#1B9D3A"
  4628. d="M1767.527,725.213c0-1.423,1.156-2.576,2.572-2.576c1.42,0,2.569,1.155,2.569,2.576 c0,1.419-1.153,2.569-2.569,2.569C1768.68,727.784,1767.527,726.632,1767.527,725.213 M1765.496,725.213 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C1767.553,720.604,1765.496,722.667,1765.496,725.213L1765.496,725.213z"
  4629. data-v-0c9672f3=""></path>
  4630. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4631. x1="1776.559" y1="710.78" x2="1769.592" y2="721.599"></line>
  4632. </g>
  4633. </g>
  4634. <g id="nsskg1210">
  4635. <g v-if="ajaxData.nsskg1210" id="_76_">
  4636. <path fill="#1B9D3A"
  4637. d="M1219.691,67.355c1.421,0,2.576,1.157,2.576,2.573c0,1.416-1.155,2.57-2.576,2.57 c-1.418,0-2.571-1.154-2.571-2.57C1217.119,68.512,1218.273,67.355,1219.691,67.355 M1219.691,65.324 c-2.543,0-4.604,2.063-4.604,4.604c0,2.545,2.061,4.604,4.604,4.604c2.546,0,4.607-2.059,4.607-4.604 C1224.299,67.385,1222.237,65.324,1219.691,65.324L1219.691,65.324z"
  4638. data-v-0c9672f3=""></path>
  4639. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4640. x1="1234.121" y1="76.388" x2="1223.307" y2="69.424"></line>
  4641. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4642. x1="1236.28" y1="60.791" x2="1236.28" y2="78.057"></line>
  4643. </g>
  4644. <g v-else-if="ajaxData.nsskg1210 == false" id="_77_">
  4645. <path fill="#A61F24"
  4646. d="M1219.691,67.355c1.421,0,2.574,1.157,2.574,2.573c0,1.416-1.156,2.57-2.574,2.57 s-2.571-1.154-2.571-2.57C1217.119,68.512,1218.273,67.355,1219.691,67.355 M1219.691,65.324c-2.545,0-4.604,2.063-4.604,4.604 c0,2.545,2.061,4.604,4.604,4.604s4.604-2.059,4.604-4.604C1224.297,67.385,1222.237,65.324,1219.691,65.324L1219.691,65.324z"
  4647. data-v-0c9672f3=""></path>
  4648. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4649. x1="1236.28" y1="60.791" x2="1236.28" y2="78.057"></line>
  4650. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4651. x1="1236.057" y1="69.932" x2="1223.307" y2="69.932"></line>
  4652. </g>
  4653. </g>
  4654. <g id="nsskg129">
  4655. <g v-if="ajaxData.nsskg129" id="_76_">
  4656. <path fill="#A61F24"
  4657. d="M1784.145,253.074c1.418,0,2.574,1.156,2.574,2.572c0,1.418-1.156,2.572-2.574,2.572 c-1.42,0-2.571-1.156-2.571-2.572S1782.725,253.074,1784.145,253.074 M1784.145,251.045c-2.545,0-4.604,2.061-4.604,4.604 c0,2.545,2.061,4.604,4.604,4.604c2.545,0,4.604-2.061,4.604-4.604C1788.748,253.102,1786.689,251.045,1784.145,251.045 L1784.145,251.045z"
  4658. data-v-0c9672f3=""></path>
  4659. <line fill="none" stroke="#A61F24" stroke-width="2" stroke-miterlimit="10"
  4660. x1="1784.145" y1="239.287" x2="1784.145" y2="252.035"></line>
  4661. <line fill="none" stroke="#A61F24" stroke-width="2.5" stroke-miterlimit="10"
  4662. x1="1775.004" y1="239.059" x2="1792.27" y2="239.059"></line>
  4663. </g>
  4664. <g v-else-if="ajaxData.nsskg129 == false" id="_77_">
  4665. <line fill="none" stroke="#1B9D3A" stroke-width="2.5" stroke-miterlimit="10"
  4666. x1="1775.004" y1="239.059" x2="1792.27" y2="239.059"></line>
  4667. <line fill="none" stroke="#1B9D3A" stroke-width="2" stroke-miterlimit="10"
  4668. x1="1790.602" y1="241.221" x2="1783.637" y2="252.035"></line>
  4669. <path fill="#1B9D3A"
  4670. d="M1784.145,253.074c1.418,0,2.574,1.156,2.574,2.572c0,1.422-1.156,2.572-2.574,2.572 c-1.42,0-2.571-1.156-2.571-2.572C1781.568,254.227,1782.725,253.074,1784.145,253.074 M1784.145,251.045 c-2.545,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604c2.545,0,4.604-2.061,4.604-4.604S1786.689,251.045,1784.145,251.045 L1784.145,251.045z"
  4671. data-v-0c9672f3=""></path>
  4672. </g>
  4673. </g>
  4674. </g>
  4675. <g id="data">
  4676. <text transform="matrix(1 0 0 1 71.3208 86.3582)" fill="#1A823B"
  4677. font-family="'MicrosoftYaHei'" font-size="9.463">
  4678. {{ ajaxData.nssuakv2j }}
  4679. </text>
  4680. <text transform="matrix(1 0 0 1 71.3203 106.0535)" fill="#1A823B"
  4681. font-family="'MicrosoftYaHei'" font-size="9.463">
  4682. {{ ajaxData.nssuabkv2j }}
  4683. </text>
  4684. <text transform="matrix(1 0 0 1 71.3203 126.7195)" fill="#1A823B"
  4685. font-family="'MicrosoftYaHei'" font-size="9.463">
  4686. {{ ajaxData.nss3uov2j }}
  4687. </text>
  4688. <text transform="matrix(1 0 0 1 71.3203 148.2234)" fill="#1A823B"
  4689. font-family="'MicrosoftYaHei'" font-size="9.463">
  4690. {{ ajaxData.nssfhz2j }}
  4691. </text>
  4692. <text transform="matrix(1 0 0 1 487.9116 73.7937)" fill="#1A823B"
  4693. font-family="'MicrosoftYaHei'" font-size="9.463">
  4694. {{ ajaxData.nsslaa2j }}
  4695. </text>
  4696. <text transform="matrix(1 0 0 1 487.9111 92.489)" fill="#1A823B"
  4697. font-family="'MicrosoftYaHei'" font-size="9.463">
  4698. {{ ajaxData.nsspmw2j }}
  4699. </text>
  4700. <text transform="matrix(1 0 0 1 487.9111 113.157)" fill="#1A823B"
  4701. font-family="'MicrosoftYaHei'" font-size="9.463">
  4702. {{ ajaxData.nssqmvar2j }}
  4703. </text>
  4704. <text transform="matrix(1 0 0 1 487.9111 133.4753)" fill="#1A823B"
  4705. font-family="'MicrosoftYaHei'" font-size="9.463">
  4706. {{ ajaxData.nssuxkv2j }}
  4707. </text>
  4708. <text transform="matrix(1 0 0 1 487.9111 154.1511)" fill="#1A823B"
  4709. font-family="'MicrosoftYaHei'" font-size="9.463">
  4710. {{ ajaxData.nsscos2j }}
  4711. </text>
  4712. <text transform="matrix(1 0 0 1 1060.2461 73.7937)" fill="#1A823B"
  4713. font-family="'MicrosoftYaHei'" font-size="9.463">
  4714. {{ ajaxData.nsslaa2jy }}
  4715. </text>
  4716. <text transform="matrix(1 0 0 1 1060.2441 92.489)" fill="#1A823B"
  4717. font-family="'MicrosoftYaHei'" font-size="9.463">
  4718. {{ ajaxData.nsspmw2jy }}
  4719. </text>
  4720. <text transform="matrix(1 0 0 1 1060.2441 113.157)" fill="#1A823B"
  4721. font-family="'MicrosoftYaHei'" font-size="9.463">
  4722. {{ ajaxData.nssqmvar2jy }}
  4723. </text>
  4724. <text transform="matrix(1 0 0 1 1060.2441 133.4753)" fill="#1A823B"
  4725. font-family="'MicrosoftYaHei'" font-size="9.463">
  4726. {{ ajaxData.nssqmvar2jy }}
  4727. </text>
  4728. <text transform="matrix(1 0 0 1 1060.2441 154.1511)" fill="#1A823B"
  4729. font-family="'MicrosoftYaHei'" font-size="9.463">
  4730. {{ ajaxData.nssuxkv2jy }}
  4731. </text>
  4732. <text transform="matrix(1 0 0 1 1640.2461 95.1296)" fill="#1A823B"
  4733. font-family="'MicrosoftYaHei'" font-size="9.463">
  4734. {{ ajaxData.nsslaa2y }}
  4735. </text>
  4736. <text transform="matrix(1 0 0 1 1640.2441 113.825)" fill="#1A823B"
  4737. font-family="'MicrosoftYaHei'" font-size="9.463">
  4738. {{ ajaxData.nsspkw2y }}
  4739. </text>
  4740. <text transform="matrix(1 0 0 1 1640.2441 134.4929)" fill="#1A823B"
  4741. font-family="'MicrosoftYaHei'" font-size="9.463">
  4742. {{ ajaxData.nssqkvar2y }}
  4743. </text>
  4744. <text transform="matrix(1 0 0 1 1640.2441 154.1511)" fill="#1A823B"
  4745. font-family="'MicrosoftYaHei'" font-size="9.463">
  4746. {{ ajaxData.nsscos2y }}
  4747. </text>
  4748. <text transform="matrix(1 0 0 1 1779.5313 96.1335)" fill="#1A823B"
  4749. font-family="'MicrosoftYaHei'" font-size="9.463">
  4750. {{ ajaxData.nssuakv2y }}
  4751. </text>
  4752. <text transform="matrix(1 0 0 1 1779.5313 115.8289)" fill="#1A823B"
  4753. font-family="'MicrosoftYaHei'" font-size="9.463">
  4754. {{ ajaxData.nssuabkv2y }}
  4755. </text>
  4756. <text transform="matrix(1 0 0 1 1779.5313 136.4949)" fill="#1A823B"
  4757. font-family="'MicrosoftYaHei'" font-size="9.463">
  4758. {{ ajaxData.nss3uov2y }}
  4759. </text>
  4760. <text transform="matrix(1 0 0 1 1779.5313 157.9988)" fill="#1A823B"
  4761. font-family="'MicrosoftYaHei'" font-size="9.463">
  4762. {{ ajaxData.nssfhz2y }}
  4763. </text>
  4764. <text transform="matrix(1 0 0 1 69.9092 412.405)" fill="#1A823B"
  4765. font-family="'MicrosoftYaHei'" font-size="9.463">
  4766. {{ ajaxData.nssuakv1zb }}
  4767. </text>
  4768. <text transform="matrix(1 0 0 1 69.9087 431.1003)" fill="#1A823B"
  4769. font-family="'MicrosoftYaHei'" font-size="9.463">
  4770. {{ ajaxData.nssuabkv1zb }}
  4771. </text>
  4772. <text transform="matrix(1 0 0 1 69.9087 451.7683)" fill="#1A823B"
  4773. font-family="'MicrosoftYaHei'" font-size="9.463">
  4774. -.--
  4775. </text>
  4776. <text transform="matrix(1 0 0 1 69.9087 472.0867)" fill="#1A823B"
  4777. font-family="'MicrosoftYaHei'" font-size="9.463">
  4778. -.--
  4779. </text>
  4780. <text transform="matrix(1 0 0 1 552.8096 281.4167)" fill="#1A823B"
  4781. font-family="'MicrosoftYaHei'" font-size="9.463">
  4782. {{ ajaxData.nsslaa1zbs }}
  4783. </text>
  4784. <text transform="matrix(1 0 0 1 552.8091 300.1121)" fill="#1A823B"
  4785. font-family="'MicrosoftYaHei'" font-size="9.463">
  4786. {{ ajaxData.nsspmw1zbs }}
  4787. </text>
  4788. <text transform="matrix(1 0 0 1 552.8091 320.78)" fill="#1A823B"
  4789. font-family="'MicrosoftYaHei'" font-size="9.463">
  4790. {{ ajaxData.nssqmvar1zbs }}
  4791. </text>
  4792. <text transform="matrix(1 0 0 1 552.8091 341.741)" fill="#1A823B"
  4793. font-family="'MicrosoftYaHei'" font-size="9.463">
  4794. {{ ajaxData.nsscos1zbs }}
  4795. </text>
  4796. <text transform="matrix(1 0 0 1 552.8096 362.2957)" fill="#1A823B"
  4797. font-family="'MicrosoftYaHei'" font-size="9.463">
  4798. {{ ajaxData.nssdw1zb }}
  4799. </text>
  4800. <text transform="matrix(1 0 0 1 552.8091 381.991)" fill="#1A823B"
  4801. font-family="'MicrosoftYaHei'" font-size="9.463">
  4802. {{ ajaxData.nssymwd1zb1 }}
  4803. </text>
  4804. <text transform="matrix(1 0 0 1 552.8091 402.657)" fill="#1A823B"
  4805. font-family="'MicrosoftYaHei'" font-size="9.463">
  4806. {{ ajaxData.nssymwd1zb2 }}
  4807. </text>
  4808. <text transform="matrix(1 0 0 1 552.8096 422.4285)" fill="#1A823B"
  4809. font-family="'MicrosoftYaHei'" font-size="9.463">
  4810. {{ ajaxData.nsslaa1zbx }}
  4811. </text>
  4812. <text transform="matrix(1 0 0 1 552.8091 441.1238)" fill="#1A823B"
  4813. font-family="'MicrosoftYaHei'" font-size="9.463">
  4814. {{ ajaxData.nsspmw1zbx }}
  4815. </text>
  4816. <text transform="matrix(1 0 0 1 552.8091 461.7917)" fill="#1A823B"
  4817. font-family="'MicrosoftYaHei'" font-size="9.463">
  4818. {{ ajaxData.nssqmvar1zbx }}
  4819. </text>
  4820. <text transform="matrix(1 0 0 1 552.8091 482.7527)" fill="#1A823B"
  4821. font-family="'MicrosoftYaHei'" font-size="9.463">
  4822. {{ ajaxData.nsscos1zbx }}
  4823. </text>
  4824. <text transform="matrix(1 0 0 1 711.8936 412.405)" fill="#1A823B"
  4825. font-family="'MicrosoftYaHei'" font-size="9.463">
  4826. {{ ajaxData.nssuakv2zb }}
  4827. </text>
  4828. <text transform="matrix(1 0 0 1 711.8931 431.1003)" fill="#1A823B"
  4829. font-family="'MicrosoftYaHei'" font-size="9.463">
  4830. {{ ajaxData.nssuabkv2zb }}
  4831. </text>
  4832. <text transform="matrix(1 0 0 1 711.8931 451.7683)" fill="#1A823B"
  4833. font-family="'MicrosoftYaHei'" font-size="9.463">
  4834. {{ ajaxData.nss3uo2zb }}
  4835. </text>
  4836. <text transform="matrix(1 0 0 1 711.8931 472.0867)" fill="#1A823B"
  4837. font-family="'MicrosoftYaHei'" font-size="9.463">
  4838. {{ ajaxData.nssfhz2zb }}
  4839. </text>
  4840. <text transform="matrix(1 0 0 1 1106.2656 281.4167)" fill="#1A823B"
  4841. font-family="'MicrosoftYaHei'" font-size="9.463">
  4842. {{ ajaxData.nsslaa2zbs }}
  4843. </text>
  4844. <text transform="matrix(1 0 0 1 1106.2637 300.1121)" fill="#1A823B"
  4845. font-family="'MicrosoftYaHei'" font-size="9.463">
  4846. {{ ajaxData.nsspmw2zbs }}
  4847. </text>
  4848. <text transform="matrix(1 0 0 1 1106.2637 320.78)" fill="#1A823B"
  4849. font-family="'MicrosoftYaHei'" font-size="9.463">
  4850. {{ ajaxData.nssqmvar2zbs }}
  4851. </text>
  4852. <text transform="matrix(1 0 0 1 1106.2637 341.741)" fill="#1A823B"
  4853. font-family="'MicrosoftYaHei'" font-size="9.463">
  4854. {{ ajaxData.nsscos2zbs }}
  4855. </text>
  4856. <text transform="matrix(1 0 0 1 1106.2656 362.2957)" fill="#1A823B"
  4857. font-family="'MicrosoftYaHei'" font-size="9.463">
  4858. {{ ajaxData.nssdw2zb }}
  4859. </text>
  4860. <text transform="matrix(1 0 0 1 1106.2637 381.991)" fill="#1A823B"
  4861. font-family="'MicrosoftYaHei'" font-size="9.463">
  4862. {{ ajaxData.nssymwd2zb1 }}
  4863. </text>
  4864. <text transform="matrix(1 0 0 1 1106.2637 402.657)" fill="#1A823B"
  4865. font-family="'MicrosoftYaHei'" font-size="9.463">
  4866. {{ ajaxData.nssymwd2zb2 }}
  4867. </text>
  4868. <text transform="matrix(1 0 0 1 1106.2656 422.4285)" fill="#1A823B"
  4869. font-family="'MicrosoftYaHei'" font-size="9.463">
  4870. {{ ajaxData.nss2laa2zbx }}
  4871. </text>
  4872. <text transform="matrix(1 0 0 1 1106.2637 441.1238)" fill="#1A823B"
  4873. font-family="'MicrosoftYaHei'" font-size="9.463">
  4874. {{ ajaxData.nsspmw2zbx }}
  4875. </text>
  4876. <text transform="matrix(1 0 0 1 1106.2637 461.7917)" fill="#1A823B"
  4877. font-family="'MicrosoftYaHei'" font-size="9.463">
  4878. {{ ajaxData.nssqmvar2zbx }}
  4879. </text>
  4880. <text transform="matrix(1 0 0 1 1106.2637 482.7527)" fill="#1A823B"
  4881. font-family="'MicrosoftYaHei'" font-size="9.463">
  4882. {{ ajaxData.nsscos2zbx }}
  4883. </text>
  4884. <text transform="matrix(1 0 0 1 1352.8184 412.405)" fill="#1A823B"
  4885. font-family="'MicrosoftYaHei'" font-size="9.463">
  4886. {{ ajaxData.nssuakv3zb }}
  4887. </text>
  4888. <text transform="matrix(1 0 0 1 1352.8184 431.1003)" fill="#1A823B"
  4889. font-family="'MicrosoftYaHei'" font-size="9.463">
  4890. {{ ajaxData.nssuabkv3zb }}
  4891. </text>
  4892. <text transform="matrix(1 0 0 1 1352.8184 451.7683)" fill="#1A823B"
  4893. font-family="'MicrosoftYaHei'" font-size="9.463">
  4894. {{ ajaxData.nss3uov3zb }}
  4895. </text>
  4896. <text transform="matrix(1 0 0 1 1352.8184 472.0867)" fill="#1A823B"
  4897. font-family="'MicrosoftYaHei'" font-size="9.463">
  4898. {{ ajaxData.nssfhz3zb }}
  4899. </text>
  4900. <text transform="matrix(1 0 0 1 1649.1641 362.2957)" fill="#1A823B"
  4901. font-family="'MicrosoftYaHei'" font-size="9.463">
  4902. {{ ajaxData.nssdw3zb }}
  4903. </text>
  4904. <text transform="matrix(1 0 0 1 1649.1621 381.991)" fill="#1A823B"
  4905. font-family="'MicrosoftYaHei'" font-size="9.463">
  4906. {{ ajaxData.nssymwd3zb1 }}
  4907. </text>
  4908. <text transform="matrix(1 0 0 1 1649.1621 402.657)" fill="#1A823B"
  4909. font-family="'MicrosoftYaHei'" font-size="9.463">
  4910. {{ ajaxData.nssymwd3zb2 }}
  4911. </text>
  4912. <text transform="matrix(1 0 0 1 1649.1641 422.4285)" fill="#1A823B"
  4913. font-family="'MicrosoftYaHei'" font-size="9.463">
  4914. {{ ajaxData.nsslaa3zb }}
  4915. </text>
  4916. <text transform="matrix(1 0 0 1 1649.1621 441.1238)" fill="#1A823B"
  4917. font-family="'MicrosoftYaHei'" font-size="9.463">
  4918. {{ ajaxData.nsspmw3zb }}
  4919. </text>
  4920. <text transform="matrix(1 0 0 1 1649.1621 461.7917)" fill="#1A823B"
  4921. font-family="'MicrosoftYaHei'" font-size="9.463">
  4922. {{ ajaxData.nssqmvar3zb }}
  4923. </text>
  4924. <text transform="matrix(1 0 0 1 1649.1621 482.7527)" fill="#1A823B"
  4925. font-family="'MicrosoftYaHei'" font-size="9.463">
  4926. {{ ajaxData.nsscos3zb }}
  4927. </text>
  4928. <g>
  4929. <text transform="matrix(1 0 0 1 112.0303 841.4773)" fill="#FFFFFF"
  4930. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4931. {{ ajaxData.nsslaajd1 }}
  4932. </text>
  4933. <text transform="matrix(1 0 0 1 112.0303 867.3298)" fill="#FFFFFF"
  4934. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4935. {{ ajaxData.nsspmwjd1 }}
  4936. </text>
  4937. <text transform="matrix(1 0 0 1 112.0303 893.1804)" fill="#FFFFFF"
  4938. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4939. {{ ajaxData.nssqmvarjd1 }}
  4940. </text>
  4941. </g>
  4942. <g>
  4943. <text transform="matrix(1 0 0 1 197.7603 841.4773)" fill="#FFFFFF"
  4944. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4945. {{ ajaxData.nsslaajd2 }}
  4946. </text>
  4947. <text transform="matrix(1 0 0 1 197.7603 867.3298)" fill="#FFFFFF"
  4948. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4949. {{ ajaxData.nsspmwjd2 }}
  4950. </text>
  4951. <text transform="matrix(1 0 0 1 197.7603 893.1804)" fill="#FFFFFF"
  4952. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4953. {{ ajaxData.nssqmvarjd2 }}
  4954. </text>
  4955. </g>
  4956. <g>
  4957. <text transform="matrix(1 0 0 1 284.937 841.4773)" fill="#FFFFFF"
  4958. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4959. {{ ajaxData.nsslaajd3 }}
  4960. </text>
  4961. <text transform="matrix(1 0 0 1 284.937 867.3298)" fill="#FFFFFF"
  4962. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4963. {{ ajaxData.nsspmwjd3 }}
  4964. </text>
  4965. <text transform="matrix(1 0 0 1 280.2803 893.1804)" fill="#FFFFFF"
  4966. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4967. {{ ajaxData.nssqmvarjd3 }}
  4968. </text>
  4969. </g>
  4970. <g>
  4971. <text transform="matrix(1 0 0 1 360.4941 841.4773)" fill="#FFFFFF"
  4972. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4973. {{ ajaxData.nsslaadr1 }}
  4974. </text>
  4975. <text transform="matrix(1 0 0 1 365.4609 867.3298)" fill="#FFFFFF"
  4976. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4977. {{ ajaxData.nsspmwdr1 }}
  4978. </text>
  4979. <text transform="matrix(1 0 0 1 360.4941 893.1804)" fill="#FFFFFF"
  4980. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4981. {{ ajaxData.nssqmvardr1 }}
  4982. </text>
  4983. </g>
  4984. <g>
  4985. <text transform="matrix(1 0 0 1 446.2241 841.4773)" fill="#FFFFFF"
  4986. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4987. {{ ajaxData.nsslaadk1 }}
  4988. </text>
  4989. <text transform="matrix(1 0 0 1 446.2241 867.3298)" fill="#FFFFFF"
  4990. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4991. {{ ajaxData.nsspmwdk1 }}
  4992. </text>
  4993. <text transform="matrix(1 0 0 1 446.2241 893.1804)" fill="#FFFFFF"
  4994. font-family="'MicrosoftYaHei'" font-size="10.7648">
  4995. {{ ajaxData.nssqmvardk1 }}
  4996. </text>
  4997. </g>
  4998. <g>
  4999. <text transform="matrix(1 0 0 1 528.4009 841.4773)" fill="#FFFFFF"
  5000. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5001. {{ ajaxData.nsslaajdb1 }}
  5002. </text>
  5003. <text transform="matrix(1 0 0 1 528.4009 867.3298)" fill="#FFFFFF"
  5004. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5005. {{ ajaxData.nsspmwjdb1 }}
  5006. </text>
  5007. <text transform="matrix(1 0 0 1 523.7441 893.1804)" fill="#FFFFFF"
  5008. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5009. {{ ajaxData.nssqmvarjdb1 }}
  5010. </text>
  5011. </g>
  5012. <g>
  5013. <text transform="matrix(1 0 0 1 766.502 841.4773)" fill="#FFFFFF"
  5014. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5015. {{ ajaxData.nsslaajd4 }}
  5016. </text>
  5017. <text transform="matrix(1 0 0 1 766.502 867.3298)" fill="#FFFFFF"
  5018. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5019. {{ ajaxData.nsspmwjd4 }}
  5020. </text>
  5021. <text transform="matrix(1 0 0 1 766.502 893.1804)" fill="#FFFFFF"
  5022. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5023. {{ ajaxData.nssqmvarjd4 }}
  5024. </text>
  5025. </g>
  5026. <g>
  5027. <text transform="matrix(1 0 0 1 852.2319 841.4773)" fill="#FFFFFF"
  5028. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5029. {{ ajaxData.nsslaajd5 }}
  5030. </text>
  5031. <text transform="matrix(1 0 0 1 852.2319 867.3298)" fill="#FFFFFF"
  5032. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5033. {{ ajaxData.nsspmwjd5 }}
  5034. </text>
  5035. <text transform="matrix(1 0 0 1 852.2319 893.1804)" fill="#FFFFFF"
  5036. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5037. {{ ajaxData.nssqmvarjd5 }}
  5038. </text>
  5039. </g>
  5040. <g>
  5041. <text transform="matrix(1 0 0 1 933.0967 841.4773)" fill="#FFFFFF"
  5042. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5043. {{ ajaxData.nsslaajd6 }}
  5044. </text>
  5045. <text transform="matrix(1 0 0 1 939.4097 867.3298)" fill="#FFFFFF"
  5046. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5047. {{ ajaxData.nsspmwjd6 }}
  5048. </text>
  5049. <text transform="matrix(1 0 0 1 939.4097 893.1804)" fill="#FFFFFF"
  5050. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5051. {{ ajaxData.nssqmvarjd6 }}
  5052. </text>
  5053. </g>
  5054. <g>
  5055. <text transform="matrix(1 0 0 1 1014.9648 841.4773)" fill="#FFFFFF"
  5056. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5057. {{ ajaxData.nsslaadr2 }}
  5058. </text>
  5059. <text transform="matrix(1 0 0 1 1019.9316 867.3298)" fill="#FFFFFF"
  5060. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5061. {{ ajaxData.nsspmwdr2 }}
  5062. </text>
  5063. <text transform="matrix(1 0 0 1 1014.9648 893.1804)" fill="#FFFFFF"
  5064. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5065. {{ ajaxData.nssqmvardr2 }}
  5066. </text>
  5067. </g>
  5068. <g>
  5069. <text transform="matrix(1 0 0 1 1100.6953 841.4773)" fill="#FFFFFF"
  5070. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5071. {{ ajaxData.nsslaadk2 }}
  5072. </text>
  5073. <text transform="matrix(1 0 0 1 1100.6953 867.3298)" fill="#FFFFFF"
  5074. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5075. {{ ajaxData.nsspmwdk2 }}
  5076. </text>
  5077. <text transform="matrix(1 0 0 1 1100.6953 893.1804)" fill="#FFFFFF"
  5078. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5079. {{ ajaxData.nssqmvardk2 }}
  5080. </text>
  5081. </g>
  5082. <g>
  5083. <text transform="matrix(1 0 0 1 1161.2754 841.4773)" fill="#FFFFFF"
  5084. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5085. {{ ajaxData.nsslaajdb2 }}
  5086. </text>
  5087. <text transform="matrix(1 0 0 1 1161.2754 867.3298)" fill="#FFFFFF"
  5088. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5089. {{ ajaxData.nsspmwjdb2 }}
  5090. </text>
  5091. <text transform="matrix(1 0 0 1 1161.2754 893.1804)" fill="#FFFFFF"
  5092. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5093. {{ ajaxData.nssqmvarjdb2 }}
  5094. </text>
  5095. </g>
  5096. <g>
  5097. <text transform="matrix(1 0 0 1 1411.5215 841.4773)" fill="#FFFFFF"
  5098. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5099. {{ ajaxData.nsslaajd7 }}
  5100. </text>
  5101. <text transform="matrix(1 0 0 1 1417.8359 867.3298)" fill="#FFFFFF"
  5102. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5103. {{ ajaxData.nsspmwjd7 }}
  5104. </text>
  5105. <text transform="matrix(1 0 0 1 1417.8359 893.1804)" fill="#FFFFFF"
  5106. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5107. {{ ajaxData.nssqmvarjd7 }}
  5108. </text>
  5109. </g>
  5110. <g>
  5111. <text transform="matrix(1 0 0 1 1503.5645 841.4773)" fill="#FFFFFF"
  5112. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5113. {{ ajaxData.nsslaajd8 }}
  5114. </text>
  5115. <text transform="matrix(1 0 0 1 1503.5645 867.3298)" fill="#FFFFFF"
  5116. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5117. {{ ajaxData.nsspmwjd8 }}
  5118. </text>
  5119. <text transform="matrix(1 0 0 1 1503.5645 893.1804)" fill="#FFFFFF"
  5120. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5121. {{ ajaxData.nssqmvarjd8 }}
  5122. </text>
  5123. </g>
  5124. <g>
  5125. <text transform="matrix(1 0 0 1 1584.4277 841.4773)" fill="#FFFFFF"
  5126. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5127. {{ ajaxData.nsslaajd9 }}
  5128. </text>
  5129. <text transform="matrix(1 0 0 1 1590.7422 867.3298)" fill="#FFFFFF"
  5130. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5131. {{ ajaxData.nsspmwjd9 }}
  5132. </text>
  5133. <text transform="matrix(1 0 0 1 1590.7422 893.1804)" fill="#FFFFFF"
  5134. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5135. {{ ajaxData.nssqmvarjd9 }}
  5136. </text>
  5137. </g>
  5138. <g>
  5139. <text transform="matrix(1 0 0 1 1666.2988 841.4773)" fill="#FFFFFF"
  5140. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5141. {{ ajaxData.nsslaadr3 }}
  5142. </text>
  5143. <text transform="matrix(1 0 0 1 1671.2656 867.3298)" fill="#FFFFFF"
  5144. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5145. {{ ajaxData.nsspmwdr3 }}
  5146. </text>
  5147. <text transform="matrix(1 0 0 1 1666.2988 893.1804)" fill="#FFFFFF"
  5148. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5149. {{ ajaxData.nssqmvardr3 }}
  5150. </text>
  5151. </g>
  5152. <g>
  5153. <text transform="matrix(1 0 0 1 1752.0273 841.4773)" fill="#FFFFFF"
  5154. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5155. {{ ajaxData.nsslaadk3 }}
  5156. </text>
  5157. <text transform="matrix(1 0 0 1 1752.0273 867.3298)" fill="#FFFFFF"
  5158. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5159. {{ ajaxData.nsspmwdk3 }}
  5160. </text>
  5161. <text transform="matrix(1 0 0 1 1752.0273 893.1804)" fill="#FFFFFF"
  5162. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5163. {{ ajaxData.nssqmvardk3 }}
  5164. </text>
  5165. </g>
  5166. <g>
  5167. <text transform="matrix(1 0 0 1 1812.6094 841.4773)" fill="#FFFFFF"
  5168. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5169. {{ ajaxData.nsslaajdb3 }}
  5170. </text>
  5171. <text transform="matrix(1 0 0 1 1812.6094 867.3298)" fill="#FFFFFF"
  5172. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5173. {{ ajaxData.nsspmwjdb3 }}
  5174. </text>
  5175. <text transform="matrix(1 0 0 1 1812.6094 893.1804)" fill="#FFFFFF"
  5176. font-family="'MicrosoftYaHei'" font-size="10.7648">
  5177. {{ ajaxData.nssqmvarjdb3 }}
  5178. </text>
  5179. </g>
  5180. </g>
  5181. </svg>
  5182. </template>
  5183. </previewPicture>
  5184. </el-col>
  5185. </el-row>
  5186. </div>
  5187. </template>
  5188. <script>
  5189. import previewPicture from "../previewPicture.vue";
  5190. import { BoosterStation } from "./BoosterStation";
  5191. export default {
  5192. components: {
  5193. previewPicture
  5194. },
  5195. data() {
  5196. return {
  5197. green: '#02A434',
  5198. red: '#FF0000',
  5199. ajaxData: {},
  5200. interval: '',
  5201. };
  5202. },
  5203. created() {
  5204. this.boosterStation = new BoosterStation();
  5205. this.refreshTPData()
  5206. this.interval = setInterval(this.refreshTPData, 3000)
  5207. },
  5208. methods: {
  5209. closed() {
  5210. clearInterval(this.interval);
  5211. },
  5212. refreshTPData() {
  5213. this.boosterStation.getDatas("NSS_FDC",this.bindValue);
  5214. },
  5215. bindValue(msg){
  5216. this.ajaxData=msg;
  5217. },
  5218. }
  5219. };
  5220. </script>
  5221. <style scoped>
  5222. .center-bar {
  5223. position: relative;
  5224. box-sizing: border-box;
  5225. height: 90vh;
  5226. background-color: #000000;
  5227. padding-top: 10px;
  5228. padding-left: 5px;
  5229. padding-right: 5px;
  5230. padding-bottom: 5px;
  5231. margin-top: 0;
  5232. margin-right: 0;
  5233. margin-bottom: 3px;
  5234. margin-left: 0;
  5235. display: flex;
  5236. flex-direction: column;
  5237. }
  5238. .svg {
  5239. width: 100%;
  5240. height: 100%;
  5241. }
  5242. </style>