pl1.vue 179 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560
  1. <template>
  2. <div>
  3. <el-row :gutter="10">
  4. <el-col :span="24">
  5. <previewPicture>
  6. <template v-slot:svg>
  7. <svg
  8. class="svg"
  9. xmlns="http://www.w3.org/2000/svg"
  10. xmlns:xlink="http://www.w3.org/1999/xlink"
  11. version="1.1"
  12. id="图层_1"
  13. x="0px"
  14. y="0px"
  15. width="1848.938px"
  16. height="829.936px"
  17. viewBox="0 0 1848.938 829.936"
  18. enable-background="new 0 0 1848.938 829.936"
  19. xml:space="preserve"
  20. >
  21. <g id="other">
  22. <text
  23. transform="matrix(1 0 0 1 133.1877 296.7874)"
  24. fill="#FFFFFF"
  25. font-family="'MicrosoftYaHei'"
  26. font-size="11.6452"
  27. >
  28. 312
  29. </text>
  30. <rect
  31. x="-0.006"
  32. y="212.678"
  33. transform="matrix(-1 0.0011 -0.0011 -1 1849.1648 426.5897)"
  34. fill="#CAA51A"
  35. width="1848.942"
  36. height="2.25"
  37. />
  38. <rect
  39. x="167.938"
  40. y="215.912"
  41. fill="#CAA51A"
  42. width="2.25"
  43. height="42.75"
  44. />
  45. <rect
  46. x="167.938"
  47. y="316.967"
  48. fill="#CAA51A"
  49. width="2.25"
  50. height="110.693"
  51. />
  52. <rect
  53. x="134.188"
  54. y="325.66"
  55. fill="#CAA51A"
  56. width="2.25"
  57. height="102"
  58. />
  59. <rect
  60. x="134.188"
  61. y="461.359"
  62. fill="#CAA51A"
  63. width="2.25"
  64. height="27.303"
  65. />
  66. <rect
  67. x="123.766"
  68. y="488.66"
  69. fill="#CAA51A"
  70. width="23.297"
  71. height="2.25"
  72. />
  73. <rect
  74. x="150.089"
  75. y="509.16"
  76. fill="#CAA51A"
  77. width="2.25"
  78. height="21.375"
  79. />
  80. <rect
  81. x="139.667"
  82. y="530.535"
  83. fill="#CAA51A"
  84. width="23.297"
  85. height="2.25"
  86. />
  87. <rect
  88. x="168.931"
  89. y="461.359"
  90. fill="#CAA51A"
  91. width="2.25"
  92. height="27.303"
  93. />
  94. <rect
  95. x="158.509"
  96. y="488.66"
  97. fill="#CAA51A"
  98. width="23.297"
  99. height="2.25"
  100. />
  101. <rect
  102. x="56.938"
  103. y="325.66"
  104. fill="#CAA51A"
  105. width="79.5"
  106. height="2.25"
  107. />
  108. <polygon
  109. fill="#CAA51A"
  110. points="56.934,331.392 47.125,326.781 56.938,322.183 "
  111. />
  112. <circle
  113. fill="none"
  114. stroke="#A9165D"
  115. stroke-width="1.2"
  116. stroke-miterlimit="10"
  117. cx="169.063"
  118. cy="452.338"
  119. r="9.021"
  120. />
  121. <circle
  122. fill="none"
  123. stroke="#A9165D"
  124. stroke-width="1.2"
  125. stroke-miterlimit="10"
  126. cx="169.063"
  127. cy="436.681"
  128. r="9.021"
  129. />
  130. <polyline
  131. fill="none"
  132. stroke="#A9165D"
  133. stroke-width="1.2"
  134. stroke-miterlimit="10"
  135. points="172.292,456.467 169.047,453.258 166.023,456.467 "
  136. />
  137. <line
  138. fill="none"
  139. stroke="#A9165D"
  140. stroke-width="1.2"
  141. stroke-miterlimit="10"
  142. x1="168.979"
  143. y1="453.173"
  144. x2="168.979"
  145. y2="447.514"
  146. />
  147. <polygon
  148. fill="none"
  149. stroke="#A9165D"
  150. stroke-width="1.2"
  151. stroke-miterlimit="10"
  152. points="172.103,433.772 165.583,433.772 169.021,439.148 "
  153. />
  154. <circle
  155. fill="none"
  156. stroke="#A9165D"
  157. stroke-width="1.2"
  158. stroke-miterlimit="10"
  159. cx="136.438"
  160. cy="452.338"
  161. r="9.021"
  162. />
  163. <circle
  164. fill="none"
  165. stroke="#A9165D"
  166. stroke-width="1.2"
  167. stroke-miterlimit="10"
  168. cx="136.438"
  169. cy="436.681"
  170. r="9.021"
  171. />
  172. <polyline
  173. fill="none"
  174. stroke="#A9165D"
  175. stroke-width="1.2"
  176. stroke-miterlimit="10"
  177. points="139.667,456.467 136.422,453.258 133.398,456.467 "
  178. />
  179. <line
  180. fill="none"
  181. stroke="#A9165D"
  182. stroke-width="1.2"
  183. stroke-miterlimit="10"
  184. x1="136.354"
  185. y1="453.173"
  186. x2="136.354"
  187. y2="447.514"
  188. />
  189. <polygon
  190. fill="none"
  191. stroke="#A9165D"
  192. stroke-width="1.2"
  193. stroke-miterlimit="10"
  194. points="139.478,433.772 132.958,433.772 136.396,439.148 "
  195. />
  196. <rect
  197. x="112.188"
  198. y="473.785"
  199. fill="none"
  200. stroke="#CAA51A"
  201. stroke-width="2"
  202. stroke-miterlimit="10"
  203. width="77.5"
  204. height="46.75"
  205. />
  206. <circle
  207. fill="none"
  208. stroke="#CAA51A"
  209. stroke-width="1.5"
  210. stroke-miterlimit="10"
  211. cx="151.5"
  212. cy="505.848"
  213. r="3.063"
  214. />
  215. <line
  216. fill="none"
  217. stroke="#CAA51A"
  218. stroke-width="1.5"
  219. stroke-miterlimit="10"
  220. x1="153.777"
  221. y1="503.01"
  222. x2="168.372"
  223. y2="490.635"
  224. />
  225. <line
  226. fill="none"
  227. stroke="#CAA51A"
  228. stroke-width="1.5"
  229. stroke-miterlimit="10"
  230. x1="134.629"
  231. y1="490.635"
  232. x2="150.152"
  233. y2="503.564"
  234. />
  235. <polyline
  236. fill="#44426C"
  237. points="59.295,305.187 59.295,283.253 117.332,283.253 117.332,305.187 "
  238. />
  239. <text
  240. transform="matrix(1 0 0 1 70.5085 297.7932)"
  241. fill="#FFFFFF"
  242. font-family="'MicrosoftYaHei'"
  243. font-size="11.8698"
  244. >
  245. 厂用变
  246. </text>
  247. <text
  248. transform="matrix(1 0 0 1 135.4143 557.7874)"
  249. fill="#FFFFFF"
  250. font-family="'MicrosoftYaHei'"
  251. font-size="11.6452"
  252. >
  253. 400V
  254. </text>
  255. <rect
  256. x="1397.857"
  257. y="650.298"
  258. fill="#CAA51A"
  259. width="2.25"
  260. height="27.303"
  261. />
  262. <rect
  263. x="1387.436"
  264. y="677.6"
  265. fill="#CAA51A"
  266. width="23.297"
  267. height="2.25"
  268. />
  269. <rect
  270. x="1413.758"
  271. y="698.1"
  272. fill="#CAA51A"
  273. width="2.25"
  274. height="21.375"
  275. />
  276. <rect
  277. x="1403.336"
  278. y="719.475"
  279. fill="#CAA51A"
  280. width="23.297"
  281. height="2.25"
  282. />
  283. <rect
  284. x="1432.6"
  285. y="650.298"
  286. fill="#CAA51A"
  287. width="2.25"
  288. height="27.303"
  289. />
  290. <rect
  291. x="1422.178"
  292. y="677.6"
  293. fill="#CAA51A"
  294. width="23.297"
  295. height="2.25"
  296. />
  297. <circle
  298. fill="none"
  299. stroke="#A9165D"
  300. stroke-width="1.2"
  301. stroke-miterlimit="10"
  302. cx="1432.732"
  303. cy="641.276"
  304. r="9.021"
  305. />
  306. <circle
  307. fill="none"
  308. stroke="#A9165D"
  309. stroke-width="1.2"
  310. stroke-miterlimit="10"
  311. cx="1432.73"
  312. cy="625.621"
  313. r="9.021"
  314. />
  315. <polyline
  316. fill="none"
  317. stroke="#A9165D"
  318. stroke-width="1.2"
  319. stroke-miterlimit="10"
  320. points="1435.961,645.403 1432.716,642.194 1429.691,645.403 "
  321. />
  322. <line
  323. fill="none"
  324. stroke="#A9165D"
  325. stroke-width="1.2"
  326. stroke-miterlimit="10"
  327. x1="1432.648"
  328. y1="642.109"
  329. x2="1432.648"
  330. y2="636.449"
  331. />
  332. <polygon
  333. fill="none"
  334. stroke="#A9165D"
  335. stroke-width="1.2"
  336. stroke-miterlimit="10"
  337. points="1435.771,622.711 1429.251,622.711 1432.689,628.087 "
  338. />
  339. <circle
  340. fill="none"
  341. stroke="#A9165D"
  342. stroke-width="1.2"
  343. stroke-miterlimit="10"
  344. cx="1400.107"
  345. cy="641.276"
  346. r="9.021"
  347. />
  348. <circle
  349. fill="none"
  350. stroke="#A9165D"
  351. stroke-width="1.2"
  352. stroke-miterlimit="10"
  353. cx="1400.105"
  354. cy="625.621"
  355. r="9.021"
  356. />
  357. <polyline
  358. fill="none"
  359. stroke="#A9165D"
  360. stroke-width="1.2"
  361. stroke-miterlimit="10"
  362. points="1403.336,645.403 1400.091,642.194 1397.066,645.403 "
  363. />
  364. <line
  365. fill="none"
  366. stroke="#A9165D"
  367. stroke-width="1.2"
  368. stroke-miterlimit="10"
  369. x1="1400.023"
  370. y1="642.109"
  371. x2="1400.023"
  372. y2="636.449"
  373. />
  374. <polygon
  375. fill="none"
  376. stroke="#A9165D"
  377. stroke-width="1.2"
  378. stroke-miterlimit="10"
  379. points="1403.146,622.711 1396.626,622.711 1400.064,628.087 "
  380. />
  381. <rect
  382. x="1375.857"
  383. y="662.725"
  384. fill="none"
  385. stroke="#CAA51A"
  386. stroke-width="2"
  387. stroke-miterlimit="10"
  388. width="77.5"
  389. height="46.75"
  390. />
  391. <circle
  392. fill="none"
  393. stroke="#CAA51A"
  394. stroke-width="1.5"
  395. stroke-miterlimit="10"
  396. cx="1415.169"
  397. cy="694.787"
  398. r="3.063"
  399. />
  400. <line
  401. fill="none"
  402. stroke="#CAA51A"
  403. stroke-width="1.5"
  404. stroke-miterlimit="10"
  405. x1="1417.446"
  406. y1="691.947"
  407. x2="1432.042"
  408. y2="679.572"
  409. />
  410. <line
  411. fill="none"
  412. stroke="#CAA51A"
  413. stroke-width="1.5"
  414. stroke-miterlimit="10"
  415. x1="1398.297"
  416. y1="679.572"
  417. x2="1413.821"
  418. y2="692.503"
  419. />
  420. <text
  421. transform="matrix(1 0 0 1 1375.8577 744.0569)"
  422. fill="#FFFFFF"
  423. font-family="'MicrosoftYaHei'"
  424. font-size="11.6452"
  425. >
  426. 400V 移动箱变
  427. </text>
  428. <rect
  429. x="197.828"
  430. y="264.478"
  431. opacity="0.9"
  432. fill="#162320"
  433. enable-background="new "
  434. width="115.109"
  435. height="18.491"
  436. />
  437. <rect
  438. x="197.828"
  439. y="284.975"
  440. opacity="0.9"
  441. fill="#162320"
  442. enable-background="new "
  443. width="115.109"
  444. height="18.49"
  445. />
  446. <rect
  447. x="197.828"
  448. y="305.471"
  449. opacity="0.9"
  450. fill="#162320"
  451. enable-background="new "
  452. width="115.109"
  453. height="18.49"
  454. />
  455. <rect
  456. x="197.828"
  457. y="325.968"
  458. opacity="0.9"
  459. fill="#162320"
  460. enable-background="new "
  461. width="115.109"
  462. height="18.488"
  463. />
  464. <g>
  465. <text
  466. transform="matrix(1 0 0 1 216.553 278.428)"
  467. fill="#97A1A2"
  468. font-family="'MicrosoftYaHei'"
  469. font-size="11.3899"
  470. >
  471. la
  472. </text>
  473. <text
  474. transform="matrix(1 0 0 1 225.8801 278.428)"
  475. fill="#97A1A2"
  476. font-family="'MicrosoftYaHei'"
  477. font-size="9.6234"
  478. >
  479. (A)
  480. </text>
  481. <text
  482. transform="matrix(1 0 0 1 239.0789 278.428)"
  483. fill="#97A1A2"
  484. font-family="'MicrosoftYaHei'"
  485. font-size="11.3899"
  486. >
  487. :
  488. </text>
  489. </g>
  490. <g>
  491. <text
  492. transform="matrix(1 0 0 1 210.6501 296.7874)"
  493. fill="#97A1A2"
  494. font-family="'MicrosoftYaHei'"
  495. font-size="11.3899"
  496. >
  497. P
  498. </text>
  499. <text
  500. transform="matrix(1 0 0 1 217.6189 296.7874)"
  501. fill="#97A1A2"
  502. font-family="'MicrosoftYaHei'"
  503. font-size="9.6234"
  504. >
  505. (MM)
  506. </text>
  507. <text
  508. transform="matrix(1 0 0 1 239.0789 296.7874)"
  509. fill="#97A1A2"
  510. font-family="'MicrosoftYaHei'"
  511. font-size="11.3899"
  512. >
  513. :
  514. </text>
  515. </g>
  516. <g>
  517. <text
  518. transform="matrix(1 0 0 1 202.6277 319.0725)"
  519. fill="#97A1A2"
  520. font-family="'MicrosoftYaHei'"
  521. font-size="11.3899"
  522. >
  523. Q
  524. </text>
  525. <text
  526. transform="matrix(1 0 0 1 211.9099 319.0725)"
  527. fill="#97A1A2"
  528. font-family="'MicrosoftYaHei'"
  529. font-size="9.6234"
  530. >
  531. (MVar)
  532. </text>
  533. <text
  534. transform="matrix(1 0 0 1 239.0789 319.0725)"
  535. fill="#97A1A2"
  536. font-family="'MicrosoftYaHei'"
  537. font-size="11.3899"
  538. >
  539. :
  540. </text>
  541. </g>
  542. <g>
  543. <text
  544. transform="matrix(1 0 0 1 215.6038 339.9065)"
  545. fill="#97A1A2"
  546. font-family="'MicrosoftYaHei'"
  547. font-size="11.3899"
  548. >
  549. COS:
  550. </text>
  551. </g>
  552. <rect
  553. x="88.313"
  554. y="102.478"
  555. opacity="0.9"
  556. fill="#162320"
  557. enable-background="new "
  558. width="115.11"
  559. height="18.491"
  560. />
  561. <rect
  562. x="88.313"
  563. y="122.975"
  564. opacity="0.9"
  565. fill="#162320"
  566. enable-background="new "
  567. width="115.11"
  568. height="18.489"
  569. />
  570. <rect
  571. x="88.313"
  572. y="143.471"
  573. opacity="0.9"
  574. fill="#162320"
  575. enable-background="new "
  576. width="115.11"
  577. height="18.489"
  578. />
  579. <rect
  580. x="88.313"
  581. y="163.968"
  582. opacity="0.9"
  583. fill="#162320"
  584. enable-background="new "
  585. width="115.11"
  586. height="18.489"
  587. />
  588. <g>
  589. <text
  590. transform="matrix(1 0 0 1 105.2566 116.428)"
  591. fill="#97A1A2"
  592. font-family="'MicrosoftYaHei'"
  593. font-size="11.3899"
  594. >
  595. Ua
  596. </text>
  597. <text
  598. transform="matrix(1 0 0 1 120.0554 116.428)"
  599. fill="#97A1A2"
  600. font-family="'MicrosoftYaHei'"
  601. font-size="9.6234"
  602. >
  603. (kV)
  604. </text>
  605. <text
  606. transform="matrix(1 0 0 1 138.2317 116.428)"
  607. fill="#97A1A2"
  608. font-family="'MicrosoftYaHei'"
  609. font-size="11.3899"
  610. >
  611. :
  612. </text>
  613. </g>
  614. <g>
  615. <text
  616. transform="matrix(1 0 0 1 104.2776 134.7874)"
  617. fill="#97A1A2"
  618. font-family="'MicrosoftYaHei'"
  619. font-size="11.3899"
  620. >
  621. Ub
  622. </text>
  623. <text
  624. transform="matrix(1 0 0 1 120.0554 134.7874)"
  625. fill="#97A1A2"
  626. font-family="'MicrosoftYaHei'"
  627. font-size="9.6234"
  628. >
  629. (kV)
  630. </text>
  631. <text
  632. transform="matrix(1 0 0 1 138.2307 134.7874)"
  633. fill="#97A1A2"
  634. font-family="'MicrosoftYaHei'"
  635. font-size="11.3899"
  636. >
  637. :
  638. </text>
  639. </g>
  640. <g>
  641. <text
  642. transform="matrix(1 0 0 1 105.8406 157.0725)"
  643. fill="#97A1A2"
  644. font-family="'MicrosoftYaHei'"
  645. font-size="11.3899"
  646. >
  647. Uc
  648. </text>
  649. <text
  650. transform="matrix(1 0 0 1 120.0554 157.0725)"
  651. fill="#97A1A2"
  652. font-family="'MicrosoftYaHei'"
  653. font-size="9.6234"
  654. >
  655. (kV)
  656. </text>
  657. <text
  658. transform="matrix(1 0 0 1 138.2317 157.0725)"
  659. fill="#97A1A2"
  660. font-family="'MicrosoftYaHei'"
  661. font-size="11.3899"
  662. >
  663. :
  664. </text>
  665. </g>
  666. <g>
  667. <text
  668. transform="matrix(1 0 0 1 97.9822 177.9065)"
  669. fill="#97A1A2"
  670. font-family="'MicrosoftYaHei'"
  671. font-size="11.3899"
  672. >
  673. Uab
  674. </text>
  675. <text
  676. transform="matrix(1 0 0 1 120.0564 177.9065)"
  677. fill="#97A1A2"
  678. font-family="'MicrosoftYaHei'"
  679. font-size="9.6234"
  680. >
  681. (kV)
  682. </text>
  683. <text
  684. transform="matrix(1 0 0 1 138.2312 177.9065)"
  685. fill="#97A1A2"
  686. font-family="'MicrosoftYaHei'"
  687. font-size="11.3899"
  688. >
  689. :
  690. </text>
  691. </g>
  692. <rect
  693. x="431.938"
  694. y="215.912"
  695. fill="#CAA51A"
  696. width="2.25"
  697. height="42.75"
  698. />
  699. <rect
  700. x="431.938"
  701. y="316.967"
  702. fill="#CAA51A"
  703. width="2.25"
  704. height="187.126"
  705. />
  706. <rect
  707. x="335.938"
  708. y="635.635"
  709. fill="#CAA51A"
  710. width="2.25"
  711. height="50.943"
  712. />
  713. <rect
  714. x="335.938"
  715. y="726.91"
  716. fill="#CAA51A"
  717. width="2.25"
  718. height="10"
  719. />
  720. <rect
  721. x="402.188"
  722. y="635.635"
  723. fill="#CAA51A"
  724. width="2.25"
  725. height="50.943"
  726. />
  727. <rect
  728. x="336.444"
  729. y="635.635"
  730. fill="#CAA51A"
  731. width="17.577"
  732. height="2.25"
  733. />
  734. <rect
  735. x="386.736"
  736. y="635.635"
  737. fill="#CAA51A"
  738. width="17.577"
  739. height="2.25"
  740. />
  741. <rect
  742. x="370.938"
  743. y="502.439"
  744. fill="#CAA51A"
  745. width="123.272"
  746. height="2.25"
  747. />
  748. <rect
  749. x="370.7"
  750. y="503.01"
  751. fill="#CAA51A"
  752. width="2.25"
  753. height="114.356"
  754. />
  755. <rect
  756. x="491.961"
  757. y="503.01"
  758. fill="#CAA51A"
  759. width="2.25"
  760. height="114.356"
  761. />
  762. <circle
  763. fill="none"
  764. stroke="#A9165D"
  765. stroke-width="1.2"
  766. stroke-miterlimit="10"
  767. cx="370.938"
  768. cy="626.389"
  769. r="9.021"
  770. />
  771. <circle
  772. fill="none"
  773. stroke="#A9165D"
  774. stroke-width="1.2"
  775. stroke-miterlimit="10"
  776. cx="363.043"
  777. cy="635.412"
  778. r="9.021"
  779. />
  780. <polyline
  781. fill="none"
  782. stroke="#A9165D"
  783. stroke-width="1.2"
  784. stroke-miterlimit="10"
  785. points="367.709,622.262 370.954,625.471 373.979,622.262 "
  786. />
  787. <polyline
  788. fill="none"
  789. stroke="#A9165D"
  790. stroke-width="1.2"
  791. stroke-miterlimit="10"
  792. points="489.475,622.262 492.72,625.471 495.744,622.262 "
  793. />
  794. <line
  795. fill="none"
  796. stroke="#A9165D"
  797. stroke-width="1.2"
  798. stroke-miterlimit="10"
  799. x1="371.022"
  800. y1="625.557"
  801. x2="371.022"
  802. y2="631.216"
  803. />
  804. <polygon
  805. fill="none"
  806. stroke="#A9165D"
  807. stroke-width="1.2"
  808. stroke-miterlimit="10"
  809. points="360.002,638.322 366.522,638.322 363.084,632.947 "
  810. />
  811. <circle
  812. fill="none"
  813. stroke="#A9165D"
  814. stroke-width="1.2"
  815. stroke-miterlimit="10"
  816. cx="378.835"
  817. cy="635.412"
  818. r="9.021"
  819. />
  820. <polygon
  821. fill="none"
  822. stroke="#A9165D"
  823. stroke-width="1.2"
  824. stroke-miterlimit="10"
  825. points="375.794,638.322 382.314,638.322 378.876,632.947 "
  826. />
  827. <g>
  828. <rect
  829. x="325.688"
  830. y="686.579"
  831. fill="none"
  832. stroke="#F7F8F8"
  833. stroke-width="1.3"
  834. stroke-miterlimit="10"
  835. width="24"
  836. height="40.331"
  837. />
  838. <path
  839. fill="none"
  840. stroke="#CB151D"
  841. stroke-width="1.2"
  842. stroke-miterlimit="10"
  843. d="M326.938,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"
  844. />
  845. <line
  846. fill="none"
  847. stroke="#FFFFFF"
  848. stroke-width="1.2"
  849. stroke-miterlimit="10"
  850. x1="348.438"
  851. y1="686.579"
  852. x2="325.688"
  853. y2="725.91"
  854. />
  855. <line
  856. fill="none"
  857. stroke="#FFFFFF"
  858. stroke-width="1.2"
  859. stroke-miterlimit="10"
  860. x1="337.063"
  861. y1="718.41"
  862. x2="345.232"
  863. y2="718.41"
  864. />
  865. <line
  866. fill="none"
  867. stroke="#FFFFFF"
  868. stroke-width="1.2"
  869. stroke-miterlimit="10"
  870. x1="337.063"
  871. y1="722.16"
  872. x2="345.232"
  873. y2="722.16"
  874. />
  875. </g>
  876. <rect
  877. x="402.563"
  878. y="726.91"
  879. fill="#CAA51A"
  880. width="2.25"
  881. height="10"
  882. />
  883. <g>
  884. <rect
  885. x="392.313"
  886. y="686.579"
  887. fill="none"
  888. stroke="#F7F8F8"
  889. stroke-width="1.3"
  890. stroke-miterlimit="10"
  891. width="24"
  892. height="40.331"
  893. />
  894. <path
  895. fill="none"
  896. stroke="#CB151D"
  897. stroke-width="1.2"
  898. stroke-miterlimit="10"
  899. d="M393.563,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"
  900. />
  901. <line
  902. fill="none"
  903. stroke="#FFFFFF"
  904. stroke-width="1.2"
  905. stroke-miterlimit="10"
  906. x1="415.063"
  907. y1="686.579"
  908. x2="392.313"
  909. y2="725.91"
  910. />
  911. <line
  912. fill="none"
  913. stroke="#FFFFFF"
  914. stroke-width="1.2"
  915. stroke-miterlimit="10"
  916. x1="403.688"
  917. y1="718.41"
  918. x2="411.857"
  919. y2="718.41"
  920. />
  921. <line
  922. fill="none"
  923. stroke="#FFFFFF"
  924. stroke-width="1.2"
  925. stroke-miterlimit="10"
  926. x1="403.688"
  927. y1="722.16"
  928. x2="411.857"
  929. y2="722.16"
  930. />
  931. </g>
  932. <polyline
  933. fill="#44426C"
  934. points="355.987,670.835 355.987,648.9 385.188,648.9 385.188,670.835 "
  935. />
  936. <text
  937. transform="matrix(1 0 0 1 363.3196 663.4397)"
  938. fill="#FFFFFF"
  939. font-family="'MicrosoftYaHei'"
  940. font-size="11.8698"
  941. >
  942. #1
  943. </text>
  944. <polyline
  945. fill="#44426C"
  946. points="443.973,372.313 471.948,372.313 471.948,467.91 443.973,467.91 "
  947. />
  948. <text
  949. transform="matrix(0 1 -1 0 453.3645 379.6477)"
  950. fill="#FFFFFF"
  951. font-family="'MicrosoftYaHei'"
  952. font-size="13.5"
  953. >
  954. #1
  955. </text>
  956. <text
  957. transform="matrix(1 0 0 1 329.9377 748.2483)"
  958. fill="#FFFFFF"
  959. font-family="'MicrosoftYaHei'"
  960. font-size="11.6452"
  961. >
  962. #1
  963. </text>
  964. <text
  965. transform="matrix(1 0 0 1 396.1877 296.7874)"
  966. fill="#FFFFFF"
  967. font-family="'MicrosoftYaHei'"
  968. font-size="11.6452"
  969. >
  970. 313
  971. </text>
  972. <text
  973. transform="matrix(1 0 0 1 396.1877 748.2483)"
  974. fill="#FFFFFF"
  975. font-family="'MicrosoftYaHei'"
  976. font-size="11.6452"
  977. >
  978. #2
  979. </text>
  980. <rect
  981. x="457.96"
  982. y="635.635"
  983. fill="#CAA51A"
  984. width="2.25"
  985. height="50.943"
  986. />
  987. <rect
  988. x="457.96"
  989. y="726.91"
  990. fill="#CAA51A"
  991. width="2.25"
  992. height="10"
  993. />
  994. <rect
  995. x="524.21"
  996. y="635.635"
  997. fill="#CAA51A"
  998. width="2.25"
  999. height="50.943"
  1000. />
  1001. <rect
  1002. x="458.466"
  1003. y="635.635"
  1004. fill="#CAA51A"
  1005. width="17.577"
  1006. height="2.25"
  1007. />
  1008. <rect
  1009. x="508.758"
  1010. y="635.635"
  1011. fill="#CAA51A"
  1012. width="17.577"
  1013. height="2.25"
  1014. />
  1015. <circle
  1016. fill="none"
  1017. stroke="#A9165D"
  1018. stroke-width="1.2"
  1019. stroke-miterlimit="10"
  1020. cx="492.96"
  1021. cy="626.389"
  1022. r="9.021"
  1023. />
  1024. <circle
  1025. fill="none"
  1026. stroke="#A9165D"
  1027. stroke-width="1.2"
  1028. stroke-miterlimit="10"
  1029. cx="485.064"
  1030. cy="635.412"
  1031. r="9.021"
  1032. />
  1033. <line
  1034. fill="none"
  1035. stroke="#A9165D"
  1036. stroke-width="1.2"
  1037. stroke-miterlimit="10"
  1038. x1="493.044"
  1039. y1="625.557"
  1040. x2="493.044"
  1041. y2="631.216"
  1042. />
  1043. <polygon
  1044. fill="none"
  1045. stroke="#A9165D"
  1046. stroke-width="1.2"
  1047. stroke-miterlimit="10"
  1048. points="482.025,638.322 488.544,638.322 485.107,632.947 "
  1049. />
  1050. <circle
  1051. fill="none"
  1052. stroke="#A9165D"
  1053. stroke-width="1.2"
  1054. stroke-miterlimit="10"
  1055. cx="500.857"
  1056. cy="635.412"
  1057. r="9.021"
  1058. />
  1059. <polygon
  1060. fill="none"
  1061. stroke="#A9165D"
  1062. stroke-width="1.2"
  1063. stroke-miterlimit="10"
  1064. points="497.817,638.322 504.336,638.322 500.898,632.947 "
  1065. />
  1066. <g>
  1067. <rect
  1068. x="447.71"
  1069. y="686.579"
  1070. fill="none"
  1071. stroke="#F7F8F8"
  1072. stroke-width="1.3"
  1073. stroke-miterlimit="10"
  1074. width="24"
  1075. height="40.331"
  1076. />
  1077. <path
  1078. fill="none"
  1079. stroke="#CB151D"
  1080. stroke-width="1.2"
  1081. stroke-miterlimit="10"
  1082. d="M448.96,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"
  1083. />
  1084. <line
  1085. fill="none"
  1086. stroke="#FFFFFF"
  1087. stroke-width="1.2"
  1088. stroke-miterlimit="10"
  1089. x1="470.46"
  1090. y1="686.579"
  1091. x2="447.71"
  1092. y2="725.91"
  1093. />
  1094. <line
  1095. fill="none"
  1096. stroke="#FFFFFF"
  1097. stroke-width="1.2"
  1098. stroke-miterlimit="10"
  1099. x1="459.085"
  1100. y1="718.41"
  1101. x2="467.255"
  1102. y2="718.41"
  1103. />
  1104. <line
  1105. fill="none"
  1106. stroke="#FFFFFF"
  1107. stroke-width="1.2"
  1108. stroke-miterlimit="10"
  1109. x1="459.085"
  1110. y1="722.16"
  1111. x2="467.255"
  1112. y2="722.16"
  1113. />
  1114. </g>
  1115. <rect
  1116. x="524.585"
  1117. y="726.91"
  1118. fill="#CAA51A"
  1119. width="2.25"
  1120. height="10"
  1121. />
  1122. <g>
  1123. <rect
  1124. x="514.335"
  1125. y="686.579"
  1126. fill="none"
  1127. stroke="#F7F8F8"
  1128. stroke-width="1.3"
  1129. stroke-miterlimit="10"
  1130. width="24"
  1131. height="40.331"
  1132. />
  1133. <path
  1134. fill="none"
  1135. stroke="#CB151D"
  1136. stroke-width="1.2"
  1137. stroke-miterlimit="10"
  1138. d="M515.585,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"
  1139. />
  1140. <line
  1141. fill="none"
  1142. stroke="#FFFFFF"
  1143. stroke-width="1.2"
  1144. stroke-miterlimit="10"
  1145. x1="537.085"
  1146. y1="686.579"
  1147. x2="514.335"
  1148. y2="725.91"
  1149. />
  1150. <line
  1151. fill="none"
  1152. stroke="#FFFFFF"
  1153. stroke-width="1.2"
  1154. stroke-miterlimit="10"
  1155. x1="525.71"
  1156. y1="718.41"
  1157. x2="533.88"
  1158. y2="718.41"
  1159. />
  1160. <line
  1161. fill="none"
  1162. stroke="#FFFFFF"
  1163. stroke-width="1.2"
  1164. stroke-miterlimit="10"
  1165. x1="525.71"
  1166. y1="722.16"
  1167. x2="533.88"
  1168. y2="722.16"
  1169. />
  1170. </g>
  1171. <polyline
  1172. fill="#44426C"
  1173. points="478.01,670.835 478.01,648.9 507.21,648.9 507.21,670.835 "
  1174. />
  1175. <text
  1176. transform="matrix(1 0 0 1 485.342 663.4397)"
  1177. fill="#FFFFFF"
  1178. font-family="'MicrosoftYaHei'"
  1179. font-size="11.8698"
  1180. >
  1181. #2
  1182. </text>
  1183. <text
  1184. transform="matrix(1 0 0 1 451.9602 748.2483)"
  1185. fill="#FFFFFF"
  1186. font-family="'MicrosoftYaHei'"
  1187. font-size="11.6452"
  1188. >
  1189. #3
  1190. </text>
  1191. <text
  1192. transform="matrix(1 0 0 1 518.2102 748.2483)"
  1193. fill="#FFFFFF"
  1194. font-family="'MicrosoftYaHei'"
  1195. font-size="11.6452"
  1196. >
  1197. #4
  1198. </text>
  1199. <text
  1200. transform="matrix(1 0 0 1 451.1008 410.3079)"
  1201. fill="#FFFFFF"
  1202. font-family="'MicrosoftYaHei'"
  1203. font-size="13.5"
  1204. >
  1205. </text>
  1206. <text
  1207. transform="matrix(1 0 0 1 451.1008 426.5081)"
  1208. fill="#FFFFFF"
  1209. font-family="'MicrosoftYaHei'"
  1210. font-size="13.5"
  1211. >
  1212. </text>
  1213. <text
  1214. transform="matrix(1 0 0 1 451.1008 442.7073)"
  1215. fill="#FFFFFF"
  1216. font-family="'MicrosoftYaHei'"
  1217. font-size="13.5"
  1218. >
  1219. </text>
  1220. <text
  1221. transform="matrix(1 0 0 1 451.1008 458.9075)"
  1222. fill="#FFFFFF"
  1223. font-family="'MicrosoftYaHei'"
  1224. font-size="13.5"
  1225. >
  1226. 线
  1227. </text>
  1228. <text
  1229. transform="matrix(1 0 0 1 464.6008 459.1282)"
  1230. fill="#FFFFFF"
  1231. font-family="'MicrosoftYaHei'"
  1232. font-size="13.5"
  1233. letter-spacing="20"
  1234. ></text>
  1235. <rect
  1236. x="465.381"
  1237. y="265.196"
  1238. opacity="0.9"
  1239. fill="#162320"
  1240. enable-background="new "
  1241. width="115.109"
  1242. height="18.491"
  1243. />
  1244. <rect
  1245. x="465.381"
  1246. y="285.693"
  1247. opacity="0.9"
  1248. fill="#162320"
  1249. enable-background="new "
  1250. width="115.109"
  1251. height="18.49"
  1252. />
  1253. <rect
  1254. x="465.381"
  1255. y="306.189"
  1256. opacity="0.9"
  1257. fill="#162320"
  1258. enable-background="new "
  1259. width="115.109"
  1260. height="18.49"
  1261. />
  1262. <rect
  1263. x="465.381"
  1264. y="326.686"
  1265. opacity="0.9"
  1266. fill="#162320"
  1267. enable-background="new "
  1268. width="115.109"
  1269. height="18.49"
  1270. />
  1271. <g>
  1272. <text
  1273. transform="matrix(1 0 0 1 484.1057 279.1467)"
  1274. fill="#97A1A2"
  1275. font-family="'MicrosoftYaHei'"
  1276. font-size="11.3899"
  1277. >
  1278. la
  1279. </text>
  1280. <text
  1281. transform="matrix(1 0 0 1 493.4329 279.1467)"
  1282. fill="#97A1A2"
  1283. font-family="'MicrosoftYaHei'"
  1284. font-size="9.6234"
  1285. >
  1286. (A)
  1287. </text>
  1288. <text
  1289. transform="matrix(1 0 0 1 506.6316 279.1467)"
  1290. fill="#97A1A2"
  1291. font-family="'MicrosoftYaHei'"
  1292. font-size="11.3899"
  1293. >
  1294. :
  1295. </text>
  1296. </g>
  1297. <g>
  1298. <text
  1299. transform="matrix(1 0 0 1 478.2029 297.5061)"
  1300. fill="#97A1A2"
  1301. font-family="'MicrosoftYaHei'"
  1302. font-size="11.3899"
  1303. >
  1304. P
  1305. </text>
  1306. <text
  1307. transform="matrix(1 0 0 1 485.1716 297.5061)"
  1308. fill="#97A1A2"
  1309. font-family="'MicrosoftYaHei'"
  1310. font-size="9.6234"
  1311. >
  1312. (MM)
  1313. </text>
  1314. <text
  1315. transform="matrix(1 0 0 1 506.6316 297.5061)"
  1316. fill="#97A1A2"
  1317. font-family="'MicrosoftYaHei'"
  1318. font-size="11.3899"
  1319. >
  1320. :
  1321. </text>
  1322. </g>
  1323. <g>
  1324. <text
  1325. transform="matrix(1 0 0 1 470.1804 319.7913)"
  1326. fill="#97A1A2"
  1327. font-family="'MicrosoftYaHei'"
  1328. font-size="11.3899"
  1329. >
  1330. Q
  1331. </text>
  1332. <text
  1333. transform="matrix(1 0 0 1 479.4626 319.7913)"
  1334. fill="#97A1A2"
  1335. font-family="'MicrosoftYaHei'"
  1336. font-size="9.6234"
  1337. >
  1338. (MVar)
  1339. </text>
  1340. <text
  1341. transform="matrix(1 0 0 1 506.6316 319.7913)"
  1342. fill="#97A1A2"
  1343. font-family="'MicrosoftYaHei'"
  1344. font-size="11.3899"
  1345. >
  1346. :
  1347. </text>
  1348. </g>
  1349. <g>
  1350. <text
  1351. transform="matrix(1 0 0 1 483.1565 340.6252)"
  1352. fill="#97A1A2"
  1353. font-family="'MicrosoftYaHei'"
  1354. font-size="11.3899"
  1355. >
  1356. COS:
  1357. </text>
  1358. </g>
  1359. <rect
  1360. x="634.499"
  1361. y="503.01"
  1362. fill="#CAA51A"
  1363. width="2.25"
  1364. height="114.356"
  1365. />
  1366. <rect
  1367. x="755.76"
  1368. y="503.01"
  1369. fill="#CAA51A"
  1370. width="2.25"
  1371. height="114.356"
  1372. />
  1373. <rect
  1374. x="696.005"
  1375. y="215.912"
  1376. fill="#CAA51A"
  1377. width="2.25"
  1378. height="42.75"
  1379. />
  1380. <rect
  1381. x="696.005"
  1382. y="316.967"
  1383. fill="#CAA51A"
  1384. width="2.25"
  1385. height="187.126"
  1386. />
  1387. <rect
  1388. x="600.005"
  1389. y="635.635"
  1390. fill="#CAA51A"
  1391. width="2.25"
  1392. height="50.943"
  1393. />
  1394. <rect
  1395. x="600.005"
  1396. y="726.91"
  1397. fill="#CAA51A"
  1398. width="2.25"
  1399. height="10"
  1400. />
  1401. <rect
  1402. x="666.255"
  1403. y="635.635"
  1404. fill="#CAA51A"
  1405. width="2.25"
  1406. height="50.943"
  1407. />
  1408. <rect
  1409. x="600.511"
  1410. y="635.635"
  1411. fill="#CAA51A"
  1412. width="17.577"
  1413. height="2.25"
  1414. />
  1415. <rect
  1416. x="650.803"
  1417. y="635.635"
  1418. fill="#CAA51A"
  1419. width="17.577"
  1420. height="2.25"
  1421. />
  1422. <circle
  1423. fill="none"
  1424. stroke="#A9165D"
  1425. stroke-width="1.2"
  1426. stroke-miterlimit="10"
  1427. cx="635.005"
  1428. cy="626.389"
  1429. r="9.021"
  1430. />
  1431. <circle
  1432. fill="none"
  1433. stroke="#A9165D"
  1434. stroke-width="1.2"
  1435. stroke-miterlimit="10"
  1436. cx="627.11"
  1437. cy="635.412"
  1438. r="9.021"
  1439. />
  1440. <polyline
  1441. fill="none"
  1442. stroke="#A9165D"
  1443. stroke-width="1.2"
  1444. stroke-miterlimit="10"
  1445. points="631.776,622.262 635.021,625.471 638.045,622.262 "
  1446. />
  1447. <polyline
  1448. fill="none"
  1449. stroke="#A9165D"
  1450. stroke-width="1.2"
  1451. stroke-miterlimit="10"
  1452. points="753.542,622.262 756.787,625.471 759.813,622.262 "
  1453. />
  1454. <line
  1455. fill="none"
  1456. stroke="#A9165D"
  1457. stroke-width="1.2"
  1458. stroke-miterlimit="10"
  1459. x1="635.089"
  1460. y1="625.557"
  1461. x2="635.089"
  1462. y2="631.216"
  1463. />
  1464. <polygon
  1465. fill="none"
  1466. stroke="#A9165D"
  1467. stroke-width="1.2"
  1468. stroke-miterlimit="10"
  1469. points="624.069,638.322 630.589,638.322 627.151,632.947 "
  1470. />
  1471. <circle
  1472. fill="none"
  1473. stroke="#A9165D"
  1474. stroke-width="1.2"
  1475. stroke-miterlimit="10"
  1476. cx="642.902"
  1477. cy="635.412"
  1478. r="9.021"
  1479. />
  1480. <polygon
  1481. fill="none"
  1482. stroke="#A9165D"
  1483. stroke-width="1.2"
  1484. stroke-miterlimit="10"
  1485. points="639.861,638.322 646.381,638.322 642.943,632.947 "
  1486. />
  1487. <g>
  1488. <rect
  1489. x="589.755"
  1490. y="686.579"
  1491. fill="none"
  1492. stroke="#F7F8F8"
  1493. stroke-width="1.3"
  1494. stroke-miterlimit="10"
  1495. width="24"
  1496. height="40.331"
  1497. />
  1498. <path
  1499. fill="none"
  1500. stroke="#CB151D"
  1501. stroke-width="1.2"
  1502. stroke-miterlimit="10"
  1503. d="M591.005,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"
  1504. />
  1505. <line
  1506. fill="none"
  1507. stroke="#FFFFFF"
  1508. stroke-width="1.2"
  1509. stroke-miterlimit="10"
  1510. x1="612.505"
  1511. y1="686.579"
  1512. x2="589.755"
  1513. y2="725.91"
  1514. />
  1515. <line
  1516. fill="none"
  1517. stroke="#FFFFFF"
  1518. stroke-width="1.2"
  1519. stroke-miterlimit="10"
  1520. x1="601.13"
  1521. y1="718.41"
  1522. x2="609.299"
  1523. y2="718.41"
  1524. />
  1525. <line
  1526. fill="none"
  1527. stroke="#FFFFFF"
  1528. stroke-width="1.2"
  1529. stroke-miterlimit="10"
  1530. x1="601.13"
  1531. y1="722.16"
  1532. x2="609.299"
  1533. y2="722.16"
  1534. />
  1535. </g>
  1536. <rect
  1537. x="666.63"
  1538. y="726.91"
  1539. fill="#CAA51A"
  1540. width="2.25"
  1541. height="10"
  1542. />
  1543. <g>
  1544. <rect
  1545. x="656.38"
  1546. y="686.579"
  1547. fill="none"
  1548. stroke="#F7F8F8"
  1549. stroke-width="1.3"
  1550. stroke-miterlimit="10"
  1551. width="24"
  1552. height="40.331"
  1553. />
  1554. <path
  1555. fill="none"
  1556. stroke="#CB151D"
  1557. stroke-width="1.2"
  1558. stroke-miterlimit="10"
  1559. d="M657.63,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"
  1560. />
  1561. <line
  1562. fill="none"
  1563. stroke="#FFFFFF"
  1564. stroke-width="1.2"
  1565. stroke-miterlimit="10"
  1566. x1="679.13"
  1567. y1="686.579"
  1568. x2="656.38"
  1569. y2="725.91"
  1570. />
  1571. <line
  1572. fill="none"
  1573. stroke="#FFFFFF"
  1574. stroke-width="1.2"
  1575. stroke-miterlimit="10"
  1576. x1="667.755"
  1577. y1="718.41"
  1578. x2="675.924"
  1579. y2="718.41"
  1580. />
  1581. <line
  1582. fill="none"
  1583. stroke="#FFFFFF"
  1584. stroke-width="1.2"
  1585. stroke-miterlimit="10"
  1586. x1="667.755"
  1587. y1="722.16"
  1588. x2="675.924"
  1589. y2="722.16"
  1590. />
  1591. </g>
  1592. <polyline
  1593. fill="#44426C"
  1594. points="620.054,670.835 620.054,648.9 649.255,648.9 649.255,670.835 "
  1595. />
  1596. <text
  1597. transform="matrix(1 0 0 1 627.3865 663.4397)"
  1598. fill="#FFFFFF"
  1599. font-family="'MicrosoftYaHei'"
  1600. font-size="11.8698"
  1601. >
  1602. #3
  1603. </text>
  1604. <polyline
  1605. fill="#44426C"
  1606. points="708.039,372.313 736.015,372.313 736.015,467.91 708.039,467.91 "
  1607. />
  1608. <text
  1609. transform="matrix(0 1 -1 0 717.4299 379.6477)"
  1610. fill="#FFFFFF"
  1611. font-family="'MicrosoftYaHei'"
  1612. font-size="13.5"
  1613. >
  1614. #2
  1615. </text>
  1616. <text
  1617. transform="matrix(1 0 0 1 594.0046 748.2483)"
  1618. fill="#FFFFFF"
  1619. font-family="'MicrosoftYaHei'"
  1620. font-size="11.6452"
  1621. >
  1622. #5
  1623. </text>
  1624. <text
  1625. transform="matrix(1 0 0 1 660.2546 296.7874)"
  1626. fill="#FFFFFF"
  1627. font-family="'MicrosoftYaHei'"
  1628. font-size="11.6452"
  1629. >
  1630. 314
  1631. </text>
  1632. <text
  1633. transform="matrix(1 0 0 1 660.2546 748.2483)"
  1634. fill="#FFFFFF"
  1635. font-family="'MicrosoftYaHei'"
  1636. font-size="11.6452"
  1637. >
  1638. #6
  1639. </text>
  1640. <rect
  1641. x="722.027"
  1642. y="635.635"
  1643. fill="#CAA51A"
  1644. width="2.25"
  1645. height="50.943"
  1646. />
  1647. <rect
  1648. x="722.027"
  1649. y="726.91"
  1650. fill="#CAA51A"
  1651. width="2.25"
  1652. height="10"
  1653. />
  1654. <rect
  1655. x="788.277"
  1656. y="635.635"
  1657. fill="#CAA51A"
  1658. width="2.25"
  1659. height="50.943"
  1660. />
  1661. <rect
  1662. x="722.532"
  1663. y="635.635"
  1664. fill="#CAA51A"
  1665. width="17.577"
  1666. height="2.25"
  1667. />
  1668. <rect
  1669. x="772.824"
  1670. y="635.635"
  1671. fill="#CAA51A"
  1672. width="17.577"
  1673. height="2.25"
  1674. />
  1675. <circle
  1676. fill="none"
  1677. stroke="#A9165D"
  1678. stroke-width="1.2"
  1679. stroke-miterlimit="10"
  1680. cx="757.027"
  1681. cy="626.389"
  1682. r="9.021"
  1683. />
  1684. <circle
  1685. fill="none"
  1686. stroke="#A9165D"
  1687. stroke-width="1.2"
  1688. stroke-miterlimit="10"
  1689. cx="749.132"
  1690. cy="635.412"
  1691. r="9.021"
  1692. />
  1693. <line
  1694. fill="none"
  1695. stroke="#A9165D"
  1696. stroke-width="1.2"
  1697. stroke-miterlimit="10"
  1698. x1="757.111"
  1699. y1="625.557"
  1700. x2="757.111"
  1701. y2="631.216"
  1702. />
  1703. <polygon
  1704. fill="none"
  1705. stroke="#A9165D"
  1706. stroke-width="1.2"
  1707. stroke-miterlimit="10"
  1708. points="746.092,638.322 752.611,638.322 749.174,632.947 "
  1709. />
  1710. <circle
  1711. fill="none"
  1712. stroke="#A9165D"
  1713. stroke-width="1.2"
  1714. stroke-miterlimit="10"
  1715. cx="764.924"
  1716. cy="635.412"
  1717. r="9.021"
  1718. />
  1719. <polygon
  1720. fill="none"
  1721. stroke="#A9165D"
  1722. stroke-width="1.2"
  1723. stroke-miterlimit="10"
  1724. points="761.884,638.322 768.403,638.322 764.966,632.947 "
  1725. />
  1726. <g>
  1727. <rect
  1728. x="711.777"
  1729. y="686.579"
  1730. fill="none"
  1731. stroke="#F7F8F8"
  1732. stroke-width="1.3"
  1733. stroke-miterlimit="10"
  1734. width="24"
  1735. height="40.331"
  1736. />
  1737. <path
  1738. fill="none"
  1739. stroke="#CB151D"
  1740. stroke-width="1.2"
  1741. stroke-miterlimit="10"
  1742. d="M713.027,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"
  1743. />
  1744. <line
  1745. fill="none"
  1746. stroke="#FFFFFF"
  1747. stroke-width="1.2"
  1748. stroke-miterlimit="10"
  1749. x1="734.527"
  1750. y1="686.579"
  1751. x2="711.777"
  1752. y2="725.91"
  1753. />
  1754. <line
  1755. fill="none"
  1756. stroke="#FFFFFF"
  1757. stroke-width="1.2"
  1758. stroke-miterlimit="10"
  1759. x1="723.152"
  1760. y1="718.41"
  1761. x2="731.322"
  1762. y2="718.41"
  1763. />
  1764. <line
  1765. fill="none"
  1766. stroke="#FFFFFF"
  1767. stroke-width="1.2"
  1768. stroke-miterlimit="10"
  1769. x1="723.152"
  1770. y1="722.16"
  1771. x2="731.322"
  1772. y2="722.16"
  1773. />
  1774. </g>
  1775. <rect
  1776. x="788.652"
  1777. y="726.91"
  1778. fill="#CAA51A"
  1779. width="2.25"
  1780. height="10"
  1781. />
  1782. <g>
  1783. <rect
  1784. x="778.402"
  1785. y="686.579"
  1786. fill="none"
  1787. stroke="#F7F8F8"
  1788. stroke-width="1.3"
  1789. stroke-miterlimit="10"
  1790. width="24"
  1791. height="40.331"
  1792. />
  1793. <path
  1794. fill="none"
  1795. stroke="#CB151D"
  1796. stroke-width="1.2"
  1797. stroke-miterlimit="10"
  1798. d="M779.652,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"
  1799. />
  1800. <line
  1801. fill="none"
  1802. stroke="#FFFFFF"
  1803. stroke-width="1.2"
  1804. stroke-miterlimit="10"
  1805. x1="801.152"
  1806. y1="686.579"
  1807. x2="778.402"
  1808. y2="725.91"
  1809. />
  1810. <line
  1811. fill="none"
  1812. stroke="#FFFFFF"
  1813. stroke-width="1.2"
  1814. stroke-miterlimit="10"
  1815. x1="789.777"
  1816. y1="718.41"
  1817. x2="797.947"
  1818. y2="718.41"
  1819. />
  1820. <line
  1821. fill="none"
  1822. stroke="#FFFFFF"
  1823. stroke-width="1.2"
  1824. stroke-miterlimit="10"
  1825. x1="789.777"
  1826. y1="722.16"
  1827. x2="797.947"
  1828. y2="722.16"
  1829. />
  1830. </g>
  1831. <polyline
  1832. fill="#44426C"
  1833. points="742.076,670.835 742.076,648.9 771.277,648.9 771.277,670.835 "
  1834. />
  1835. <text
  1836. transform="matrix(1 0 0 1 749.4089 663.4397)"
  1837. fill="#FFFFFF"
  1838. font-family="'MicrosoftYaHei'"
  1839. font-size="11.8698"
  1840. >
  1841. #4
  1842. </text>
  1843. <text
  1844. transform="matrix(1 0 0 1 716.0271 748.2483)"
  1845. fill="#FFFFFF"
  1846. font-family="'MicrosoftYaHei'"
  1847. font-size="11.6452"
  1848. >
  1849. #7
  1850. </text>
  1851. <text
  1852. transform="matrix(1 0 0 1 782.2771 748.2483)"
  1853. fill="#FFFFFF"
  1854. font-family="'MicrosoftYaHei'"
  1855. font-size="11.6452"
  1856. >
  1857. #8
  1858. </text>
  1859. <text
  1860. transform="matrix(1 0 0 1 715.1677 410.3079)"
  1861. fill="#FFFFFF"
  1862. font-family="'MicrosoftYaHei'"
  1863. font-size="13.5"
  1864. >
  1865. </text>
  1866. <text
  1867. transform="matrix(1 0 0 1 715.1677 426.5081)"
  1868. fill="#FFFFFF"
  1869. font-family="'MicrosoftYaHei'"
  1870. font-size="13.5"
  1871. >
  1872. </text>
  1873. <text
  1874. transform="matrix(1 0 0 1 715.1677 442.7073)"
  1875. fill="#FFFFFF"
  1876. font-family="'MicrosoftYaHei'"
  1877. font-size="13.5"
  1878. >
  1879. </text>
  1880. <text
  1881. transform="matrix(1 0 0 1 715.1677 458.9075)"
  1882. fill="#FFFFFF"
  1883. font-family="'MicrosoftYaHei'"
  1884. font-size="13.5"
  1885. >
  1886. 线
  1887. </text>
  1888. <text
  1889. transform="matrix(1 0 0 1 728.6677 459.1282)"
  1890. fill="#FFFFFF"
  1891. font-family="'MicrosoftYaHei'"
  1892. font-size="13.5"
  1893. letter-spacing="20"
  1894. ></text>
  1895. <rect
  1896. x="724.059"
  1897. y="265.196"
  1898. opacity="0.9"
  1899. fill="#162320"
  1900. enable-background="new "
  1901. width="115.11"
  1902. height="18.491"
  1903. />
  1904. <rect
  1905. x="724.059"
  1906. y="285.693"
  1907. opacity="0.9"
  1908. fill="#162320"
  1909. enable-background="new "
  1910. width="115.11"
  1911. height="18.49"
  1912. />
  1913. <rect
  1914. x="724.059"
  1915. y="306.189"
  1916. opacity="0.9"
  1917. fill="#162320"
  1918. enable-background="new "
  1919. width="115.11"
  1920. height="18.49"
  1921. />
  1922. <rect
  1923. x="724.059"
  1924. y="326.686"
  1925. opacity="0.9"
  1926. fill="#162320"
  1927. enable-background="new "
  1928. width="115.11"
  1929. height="18.49"
  1930. />
  1931. <g>
  1932. <text
  1933. transform="matrix(1 0 0 1 742.7839 279.1467)"
  1934. fill="#97A1A2"
  1935. font-family="'MicrosoftYaHei'"
  1936. font-size="11.3899"
  1937. >
  1938. la
  1939. </text>
  1940. <text
  1941. transform="matrix(1 0 0 1 752.1111 279.1467)"
  1942. fill="#97A1A2"
  1943. font-family="'MicrosoftYaHei'"
  1944. font-size="9.6234"
  1945. >
  1946. (A)
  1947. </text>
  1948. <text
  1949. transform="matrix(1 0 0 1 765.3098 279.1467)"
  1950. fill="#97A1A2"
  1951. font-family="'MicrosoftYaHei'"
  1952. font-size="11.3899"
  1953. >
  1954. :
  1955. </text>
  1956. </g>
  1957. <g>
  1958. <text
  1959. transform="matrix(1 0 0 1 736.8811 297.5061)"
  1960. fill="#97A1A2"
  1961. font-family="'MicrosoftYaHei'"
  1962. font-size="11.3899"
  1963. >
  1964. P
  1965. </text>
  1966. <text
  1967. transform="matrix(1 0 0 1 743.8503 297.5061)"
  1968. fill="#97A1A2"
  1969. font-family="'MicrosoftYaHei'"
  1970. font-size="9.6234"
  1971. >
  1972. (MM)
  1973. </text>
  1974. <text
  1975. transform="matrix(1 0 0 1 765.3103 297.5061)"
  1976. fill="#97A1A2"
  1977. font-family="'MicrosoftYaHei'"
  1978. font-size="11.3899"
  1979. >
  1980. :
  1981. </text>
  1982. </g>
  1983. <g>
  1984. <text
  1985. transform="matrix(1 0 0 1 728.8586 319.7913)"
  1986. fill="#97A1A2"
  1987. font-family="'MicrosoftYaHei'"
  1988. font-size="11.3899"
  1989. >
  1990. Q
  1991. </text>
  1992. <text
  1993. transform="matrix(1 0 0 1 738.1404 319.7913)"
  1994. fill="#97A1A2"
  1995. font-family="'MicrosoftYaHei'"
  1996. font-size="9.6234"
  1997. >
  1998. (MVar)
  1999. </text>
  2000. <text
  2001. transform="matrix(1 0 0 1 765.3098 319.7913)"
  2002. fill="#97A1A2"
  2003. font-family="'MicrosoftYaHei'"
  2004. font-size="11.3899"
  2005. >
  2006. :
  2007. </text>
  2008. </g>
  2009. <g>
  2010. <text
  2011. transform="matrix(1 0 0 1 741.8347 340.6252)"
  2012. fill="#97A1A2"
  2013. font-family="'MicrosoftYaHei'"
  2014. font-size="11.3899"
  2015. >
  2016. COS:
  2017. </text>
  2018. </g>
  2019. <rect
  2020. x="634.738"
  2021. y="502.439"
  2022. fill="#CAA51A"
  2023. width="123.271"
  2024. height="2.25"
  2025. />
  2026. <rect
  2027. x="898.938"
  2028. y="502.439"
  2029. fill="#CAA51A"
  2030. width="123.273"
  2031. height="2.25"
  2032. />
  2033. <rect
  2034. x="898.699"
  2035. y="503.01"
  2036. fill="#CAA51A"
  2037. width="2.25"
  2038. height="114.356"
  2039. />
  2040. <rect
  2041. x="1019.961"
  2042. y="503.01"
  2043. fill="#CAA51A"
  2044. width="2.25"
  2045. height="114.356"
  2046. />
  2047. <rect
  2048. x="999.77"
  2049. y="266.198"
  2050. opacity="0.9"
  2051. fill="#162320"
  2052. enable-background="new "
  2053. width="115.108"
  2054. height="18.491"
  2055. />
  2056. <rect
  2057. x="999.77"
  2058. y="286.696"
  2059. opacity="0.9"
  2060. fill="#162320"
  2061. enable-background="new "
  2062. width="115.108"
  2063. height="18.49"
  2064. />
  2065. <rect
  2066. x="999.77"
  2067. y="307.192"
  2068. opacity="0.9"
  2069. fill="#162320"
  2070. enable-background="new "
  2071. width="115.108"
  2072. height="18.49"
  2073. />
  2074. <rect
  2075. x="999.77"
  2076. y="327.688"
  2077. opacity="0.9"
  2078. fill="#162320"
  2079. enable-background="new "
  2080. width="115.108"
  2081. height="18.49"
  2082. />
  2083. <g>
  2084. <text
  2085. transform="matrix(1 0 0 1 1018.4944 280.1487)"
  2086. fill="#97A1A2"
  2087. font-family="'MicrosoftYaHei'"
  2088. font-size="11.3899"
  2089. >
  2090. la
  2091. </text>
  2092. <text
  2093. transform="matrix(1 0 0 1 1027.8206 280.1487)"
  2094. fill="#97A1A2"
  2095. font-family="'MicrosoftYaHei'"
  2096. font-size="9.6234"
  2097. >
  2098. (A)
  2099. </text>
  2100. <text
  2101. transform="matrix(1 0 0 1 1041.0198 280.1487)"
  2102. fill="#97A1A2"
  2103. font-family="'MicrosoftYaHei'"
  2104. font-size="11.3899"
  2105. >
  2106. :
  2107. </text>
  2108. </g>
  2109. <g>
  2110. <text
  2111. transform="matrix(1 0 0 1 1012.592 298.51)"
  2112. fill="#97A1A2"
  2113. font-family="'MicrosoftYaHei'"
  2114. font-size="11.3899"
  2115. >
  2116. P
  2117. </text>
  2118. <text
  2119. transform="matrix(1 0 0 1 1019.5608 298.51)"
  2120. fill="#97A1A2"
  2121. font-family="'MicrosoftYaHei'"
  2122. font-size="9.6234"
  2123. >
  2124. (MM)
  2125. </text>
  2126. <text
  2127. transform="matrix(1 0 0 1 1041.0198 298.51)"
  2128. fill="#97A1A2"
  2129. font-family="'MicrosoftYaHei'"
  2130. font-size="11.3899"
  2131. >
  2132. :
  2133. </text>
  2134. </g>
  2135. <g>
  2136. <text
  2137. transform="matrix(1 0 0 1 1004.5686 320.7952)"
  2138. fill="#97A1A2"
  2139. font-family="'MicrosoftYaHei'"
  2140. font-size="11.3899"
  2141. >
  2142. Q
  2143. </text>
  2144. <text
  2145. transform="matrix(1 0 0 1 1013.8499 320.7952)"
  2146. fill="#97A1A2"
  2147. font-family="'MicrosoftYaHei'"
  2148. font-size="9.6234"
  2149. >
  2150. (MVar)
  2151. </text>
  2152. <text
  2153. transform="matrix(1 0 0 1 1041.0198 320.7952)"
  2154. fill="#97A1A2"
  2155. font-family="'MicrosoftYaHei'"
  2156. font-size="11.3899"
  2157. >
  2158. :
  2159. </text>
  2160. </g>
  2161. <g>
  2162. <text
  2163. transform="matrix(1 0 0 1 1017.5452 341.6292)"
  2164. fill="#97A1A2"
  2165. font-family="'MicrosoftYaHei'"
  2166. font-size="11.3899"
  2167. >
  2168. COS:
  2169. </text>
  2170. </g>
  2171. <rect
  2172. x="960.325"
  2173. y="215.912"
  2174. fill="#CAA51A"
  2175. width="2.25"
  2176. height="42.75"
  2177. />
  2178. <rect
  2179. x="960.325"
  2180. y="316.967"
  2181. fill="#CAA51A"
  2182. width="2.25"
  2183. height="187.126"
  2184. />
  2185. <rect
  2186. x="864.325"
  2187. y="635.635"
  2188. fill="#CAA51A"
  2189. width="2.25"
  2190. height="50.943"
  2191. />
  2192. <rect
  2193. x="864.325"
  2194. y="726.91"
  2195. fill="#CAA51A"
  2196. width="2.25"
  2197. height="10"
  2198. />
  2199. <rect
  2200. x="930.575"
  2201. y="635.635"
  2202. fill="#CAA51A"
  2203. width="2.25"
  2204. height="50.943"
  2205. />
  2206. <rect
  2207. x="864.831"
  2208. y="635.635"
  2209. fill="#CAA51A"
  2210. width="17.577"
  2211. height="2.25"
  2212. />
  2213. <rect
  2214. x="915.124"
  2215. y="635.635"
  2216. fill="#CAA51A"
  2217. width="17.576"
  2218. height="2.25"
  2219. />
  2220. <circle
  2221. fill="none"
  2222. stroke="#A9165D"
  2223. stroke-width="1.2"
  2224. stroke-miterlimit="10"
  2225. cx="899.325"
  2226. cy="626.389"
  2227. r="9.021"
  2228. />
  2229. <circle
  2230. fill="none"
  2231. stroke="#A9165D"
  2232. stroke-width="1.2"
  2233. stroke-miterlimit="10"
  2234. cx="891.431"
  2235. cy="635.412"
  2236. r="9.021"
  2237. />
  2238. <polyline
  2239. fill="none"
  2240. stroke="#A9165D"
  2241. stroke-width="1.2"
  2242. stroke-miterlimit="10"
  2243. points="896.097,622.262 899.342,625.471 902.366,622.262 "
  2244. />
  2245. <polyline
  2246. fill="none"
  2247. stroke="#A9165D"
  2248. stroke-width="1.2"
  2249. stroke-miterlimit="10"
  2250. points="1017.864,622.262 1021.109,625.471 1024.133,622.262 "
  2251. />
  2252. <line
  2253. fill="none"
  2254. stroke="#A9165D"
  2255. stroke-width="1.2"
  2256. stroke-miterlimit="10"
  2257. x1="899.409"
  2258. y1="625.557"
  2259. x2="899.409"
  2260. y2="631.216"
  2261. />
  2262. <polygon
  2263. fill="none"
  2264. stroke="#A9165D"
  2265. stroke-width="1.2"
  2266. stroke-miterlimit="10"
  2267. points="888.391,638.322 894.909,638.322 891.473,632.947 "
  2268. />
  2269. <circle
  2270. fill="none"
  2271. stroke="#A9165D"
  2272. stroke-width="1.2"
  2273. stroke-miterlimit="10"
  2274. cx="907.223"
  2275. cy="635.412"
  2276. r="9.021"
  2277. />
  2278. <polygon
  2279. fill="none"
  2280. stroke="#A9165D"
  2281. stroke-width="1.2"
  2282. stroke-miterlimit="10"
  2283. points="904.183,638.322 910.701,638.322 907.265,632.947 "
  2284. />
  2285. <g>
  2286. <rect
  2287. x="854.075"
  2288. y="686.579"
  2289. fill="none"
  2290. stroke="#F7F8F8"
  2291. stroke-width="1.3"
  2292. stroke-miterlimit="10"
  2293. width="24"
  2294. height="40.331"
  2295. />
  2296. <path
  2297. fill="none"
  2298. stroke="#CB151D"
  2299. stroke-width="1.2"
  2300. stroke-miterlimit="10"
  2301. d="M855.325,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"
  2302. />
  2303. <line
  2304. fill="none"
  2305. stroke="#FFFFFF"
  2306. stroke-width="1.2"
  2307. stroke-miterlimit="10"
  2308. x1="876.825"
  2309. y1="686.579"
  2310. x2="854.075"
  2311. y2="725.91"
  2312. />
  2313. <line
  2314. fill="none"
  2315. stroke="#FFFFFF"
  2316. stroke-width="1.2"
  2317. stroke-miterlimit="10"
  2318. x1="865.45"
  2319. y1="718.41"
  2320. x2="873.62"
  2321. y2="718.41"
  2322. />
  2323. <line
  2324. fill="none"
  2325. stroke="#FFFFFF"
  2326. stroke-width="1.2"
  2327. stroke-miterlimit="10"
  2328. x1="865.45"
  2329. y1="722.16"
  2330. x2="873.62"
  2331. y2="722.16"
  2332. />
  2333. </g>
  2334. <rect
  2335. x="930.95"
  2336. y="726.91"
  2337. fill="#CAA51A"
  2338. width="2.25"
  2339. height="10"
  2340. />
  2341. <g>
  2342. <rect
  2343. x="920.7"
  2344. y="686.579"
  2345. fill="none"
  2346. stroke="#F7F8F8"
  2347. stroke-width="1.3"
  2348. stroke-miterlimit="10"
  2349. width="24"
  2350. height="40.331"
  2351. />
  2352. <path
  2353. fill="none"
  2354. stroke="#CB151D"
  2355. stroke-width="1.2"
  2356. stroke-miterlimit="10"
  2357. d="M921.95,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"
  2358. />
  2359. <line
  2360. fill="none"
  2361. stroke="#FFFFFF"
  2362. stroke-width="1.2"
  2363. stroke-miterlimit="10"
  2364. x1="943.45"
  2365. y1="686.579"
  2366. x2="920.7"
  2367. y2="725.91"
  2368. />
  2369. <line
  2370. fill="none"
  2371. stroke="#FFFFFF"
  2372. stroke-width="1.2"
  2373. stroke-miterlimit="10"
  2374. x1="932.075"
  2375. y1="718.41"
  2376. x2="940.245"
  2377. y2="718.41"
  2378. />
  2379. <line
  2380. fill="none"
  2381. stroke="#FFFFFF"
  2382. stroke-width="1.2"
  2383. stroke-miterlimit="10"
  2384. x1="932.075"
  2385. y1="722.16"
  2386. x2="940.245"
  2387. y2="722.16"
  2388. />
  2389. </g>
  2390. <polyline
  2391. fill="#44426C"
  2392. points="884.374,670.835 884.374,648.9 913.575,648.9 913.575,670.835 "
  2393. />
  2394. <text
  2395. transform="matrix(1 0 0 1 891.7078 663.4397)"
  2396. fill="#FFFFFF"
  2397. font-family="'MicrosoftYaHei'"
  2398. font-size="11.8698"
  2399. >
  2400. #5
  2401. </text>
  2402. <polyline
  2403. fill="#44426C"
  2404. points="972.361,372.313 1000.336,372.313 1000.336,467.91 972.361,467.91 "
  2405. />
  2406. <text
  2407. transform="matrix(0 1 -1 0 981.7542 379.6477)"
  2408. fill="#FFFFFF"
  2409. font-family="'MicrosoftYaHei'"
  2410. font-size="13.5"
  2411. >
  2412. #3
  2413. </text>
  2414. <text
  2415. transform="matrix(1 0 0 1 858.3259 748.2483)"
  2416. fill="#FFFFFF"
  2417. font-family="'MicrosoftYaHei'"
  2418. font-size="11.6452"
  2419. >
  2420. #9
  2421. </text>
  2422. <text
  2423. transform="matrix(1 0 0 1 924.5759 296.7874)"
  2424. fill="#FFFFFF"
  2425. font-family="'MicrosoftYaHei'"
  2426. font-size="11.6452"
  2427. >
  2428. 315
  2429. </text>
  2430. <text
  2431. transform="matrix(1 0 0 1 924.5759 748.2483)"
  2432. fill="#FFFFFF"
  2433. font-family="'MicrosoftYaHei'"
  2434. font-size="11.6452"
  2435. >
  2436. #10
  2437. </text>
  2438. <rect
  2439. x="986.348"
  2440. y="635.635"
  2441. fill="#CAA51A"
  2442. width="2.25"
  2443. height="50.943"
  2444. />
  2445. <rect
  2446. x="986.348"
  2447. y="726.91"
  2448. fill="#CAA51A"
  2449. width="2.25"
  2450. height="10"
  2451. />
  2452. <rect
  2453. x="1052.598"
  2454. y="635.635"
  2455. fill="#CAA51A"
  2456. width="2.25"
  2457. height="50.943"
  2458. />
  2459. <rect
  2460. x="986.854"
  2461. y="635.635"
  2462. fill="#CAA51A"
  2463. width="17.578"
  2464. height="2.25"
  2465. />
  2466. <rect
  2467. x="1037.146"
  2468. y="635.635"
  2469. fill="#CAA51A"
  2470. width="17.575"
  2471. height="2.25"
  2472. />
  2473. <circle
  2474. fill="none"
  2475. stroke="#A9165D"
  2476. stroke-width="1.2"
  2477. stroke-miterlimit="10"
  2478. cx="1021.348"
  2479. cy="626.389"
  2480. r="9.021"
  2481. />
  2482. <circle
  2483. fill="none"
  2484. stroke="#A9165D"
  2485. stroke-width="1.2"
  2486. stroke-miterlimit="10"
  2487. cx="1013.453"
  2488. cy="635.412"
  2489. r="9.021"
  2490. />
  2491. <line
  2492. fill="none"
  2493. stroke="#A9165D"
  2494. stroke-width="1.2"
  2495. stroke-miterlimit="10"
  2496. x1="1021.432"
  2497. y1="625.557"
  2498. x2="1021.432"
  2499. y2="631.216"
  2500. />
  2501. <polygon
  2502. fill="none"
  2503. stroke="#A9165D"
  2504. stroke-width="1.2"
  2505. stroke-miterlimit="10"
  2506. points="1010.412,638.322 1016.932,638.322 1013.494,632.947 "
  2507. />
  2508. <circle
  2509. fill="none"
  2510. stroke="#A9165D"
  2511. stroke-width="1.2"
  2512. stroke-miterlimit="10"
  2513. cx="1029.245"
  2514. cy="635.412"
  2515. r="9.021"
  2516. />
  2517. <polygon
  2518. fill="none"
  2519. stroke="#A9165D"
  2520. stroke-width="1.2"
  2521. stroke-miterlimit="10"
  2522. points="1026.206,638.322 1032.725,638.322 1029.287,632.947 "
  2523. />
  2524. <g>
  2525. <rect
  2526. x="976.099"
  2527. y="686.579"
  2528. fill="none"
  2529. stroke="#F7F8F8"
  2530. stroke-width="1.3"
  2531. stroke-miterlimit="10"
  2532. width="24"
  2533. height="40.331"
  2534. />
  2535. <path
  2536. fill="none"
  2537. stroke="#CB151D"
  2538. stroke-width="1.2"
  2539. stroke-miterlimit="10"
  2540. d="M977.349,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"
  2541. />
  2542. <line
  2543. fill="none"
  2544. stroke="#FFFFFF"
  2545. stroke-width="1.2"
  2546. stroke-miterlimit="10"
  2547. x1="998.848"
  2548. y1="686.579"
  2549. x2="976.099"
  2550. y2="725.91"
  2551. />
  2552. <line
  2553. fill="none"
  2554. stroke="#FFFFFF"
  2555. stroke-width="1.2"
  2556. stroke-miterlimit="10"
  2557. x1="987.473"
  2558. y1="718.41"
  2559. x2="995.643"
  2560. y2="718.41"
  2561. />
  2562. <line
  2563. fill="none"
  2564. stroke="#FFFFFF"
  2565. stroke-width="1.2"
  2566. stroke-miterlimit="10"
  2567. x1="987.473"
  2568. y1="722.16"
  2569. x2="995.643"
  2570. y2="722.16"
  2571. />
  2572. </g>
  2573. <rect
  2574. x="1052.973"
  2575. y="726.91"
  2576. fill="#CAA51A"
  2577. width="2.25"
  2578. height="10"
  2579. />
  2580. <g>
  2581. <rect
  2582. x="1042.723"
  2583. y="686.579"
  2584. fill="none"
  2585. stroke="#F7F8F8"
  2586. stroke-width="1.3"
  2587. stroke-miterlimit="10"
  2588. width="24"
  2589. height="40.331"
  2590. />
  2591. <path
  2592. fill="none"
  2593. stroke="#CB151D"
  2594. stroke-width="1.2"
  2595. stroke-miterlimit="10"
  2596. d="M1043.973,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"
  2597. />
  2598. <line
  2599. fill="none"
  2600. stroke="#FFFFFF"
  2601. stroke-width="1.2"
  2602. stroke-miterlimit="10"
  2603. x1="1065.473"
  2604. y1="686.579"
  2605. x2="1042.723"
  2606. y2="725.91"
  2607. />
  2608. <line
  2609. fill="none"
  2610. stroke="#FFFFFF"
  2611. stroke-width="1.2"
  2612. stroke-miterlimit="10"
  2613. x1="1054.098"
  2614. y1="718.41"
  2615. x2="1062.268"
  2616. y2="718.41"
  2617. />
  2618. <line
  2619. fill="none"
  2620. stroke="#FFFFFF"
  2621. stroke-width="1.2"
  2622. stroke-miterlimit="10"
  2623. x1="1054.098"
  2624. y1="722.16"
  2625. x2="1062.268"
  2626. y2="722.16"
  2627. />
  2628. </g>
  2629. <polyline
  2630. fill="#44426C"
  2631. points="1006.398,670.835 1006.398,648.9 1035.598,648.9 1035.598,670.835 "
  2632. />
  2633. <text
  2634. transform="matrix(1 0 0 1 1013.7307 663.4397)"
  2635. fill="#FFFFFF"
  2636. font-family="'MicrosoftYaHei'"
  2637. font-size="11.8698"
  2638. >
  2639. #6
  2640. </text>
  2641. <text
  2642. transform="matrix(1 0 0 1 980.3479 748.2483)"
  2643. fill="#FFFFFF"
  2644. font-family="'MicrosoftYaHei'"
  2645. font-size="11.6452"
  2646. >
  2647. #11
  2648. </text>
  2649. <text
  2650. transform="matrix(1 0 0 1 1043.5979 748.2483)"
  2651. fill="#FFFFFF"
  2652. font-family="'MicrosoftYaHei'"
  2653. font-size="11.6452"
  2654. >
  2655. #12
  2656. </text>
  2657. <text
  2658. transform="matrix(1 0 0 1 979.4885 410.3079)"
  2659. fill="#FFFFFF"
  2660. font-family="'MicrosoftYaHei'"
  2661. font-size="13.5"
  2662. >
  2663. </text>
  2664. <text
  2665. transform="matrix(1 0 0 1 979.4885 426.5081)"
  2666. fill="#FFFFFF"
  2667. font-family="'MicrosoftYaHei'"
  2668. font-size="13.5"
  2669. >
  2670. </text>
  2671. <text
  2672. transform="matrix(1 0 0 1 979.4885 442.7073)"
  2673. fill="#FFFFFF"
  2674. font-family="'MicrosoftYaHei'"
  2675. font-size="13.5"
  2676. >
  2677. </text>
  2678. <text
  2679. transform="matrix(1 0 0 1 979.4885 458.9075)"
  2680. fill="#FFFFFF"
  2681. font-family="'MicrosoftYaHei'"
  2682. font-size="13.5"
  2683. >
  2684. 线
  2685. </text>
  2686. <text
  2687. transform="matrix(1 0 0 1 992.9885 459.1282)"
  2688. fill="#FFFFFF"
  2689. font-family="'MicrosoftYaHei'"
  2690. font-size="13.5"
  2691. letter-spacing="20"
  2692. ></text>
  2693. <rect
  2694. x="1535.633"
  2695. y="502.439"
  2696. fill="#CAA51A"
  2697. width="123.272"
  2698. height="2.25"
  2699. />
  2700. <rect
  2701. x="1535.395"
  2702. y="503.01"
  2703. fill="#CAA51A"
  2704. width="2.25"
  2705. height="114.356"
  2706. />
  2707. <rect
  2708. x="1656.656"
  2709. y="503.01"
  2710. fill="#CAA51A"
  2711. width="2.25"
  2712. height="99.399"
  2713. />
  2714. <rect
  2715. x="1646.463"
  2716. y="266.198"
  2717. opacity="0.9"
  2718. fill="#162320"
  2719. enable-background="new "
  2720. width="115.108"
  2721. height="18.491"
  2722. />
  2723. <rect
  2724. x="1646.463"
  2725. y="286.696"
  2726. opacity="0.9"
  2727. fill="#162320"
  2728. enable-background="new "
  2729. width="115.108"
  2730. height="18.49"
  2731. />
  2732. <rect
  2733. x="1646.463"
  2734. y="307.192"
  2735. opacity="0.9"
  2736. fill="#162320"
  2737. enable-background="new "
  2738. width="115.108"
  2739. height="18.49"
  2740. />
  2741. <rect
  2742. x="1646.463"
  2743. y="327.688"
  2744. opacity="0.9"
  2745. fill="#162320"
  2746. enable-background="new "
  2747. width="115.108"
  2748. height="18.49"
  2749. />
  2750. <g>
  2751. <text
  2752. transform="matrix(1 0 0 1 1665.1897 280.1487)"
  2753. fill="#97A1A2"
  2754. font-family="'MicrosoftYaHei'"
  2755. font-size="11.3899"
  2756. >
  2757. la
  2758. </text>
  2759. <text
  2760. transform="matrix(1 0 0 1 1674.5159 280.1487)"
  2761. fill="#97A1A2"
  2762. font-family="'MicrosoftYaHei'"
  2763. font-size="9.6234"
  2764. >
  2765. (A)
  2766. </text>
  2767. <text
  2768. transform="matrix(1 0 0 1 1687.7151 280.1487)"
  2769. fill="#97A1A2"
  2770. font-family="'MicrosoftYaHei'"
  2771. font-size="11.3899"
  2772. >
  2773. :
  2774. </text>
  2775. </g>
  2776. <g>
  2777. <text
  2778. transform="matrix(1 0 0 1 1659.2854 298.51)"
  2779. fill="#97A1A2"
  2780. font-family="'MicrosoftYaHei'"
  2781. font-size="11.3899"
  2782. >
  2783. P
  2784. </text>
  2785. <text
  2786. transform="matrix(1 0 0 1 1666.2542 298.51)"
  2787. fill="#97A1A2"
  2788. font-family="'MicrosoftYaHei'"
  2789. font-size="9.6234"
  2790. >
  2791. (MM)
  2792. </text>
  2793. <text
  2794. transform="matrix(1 0 0 1 1687.7151 298.51)"
  2795. fill="#97A1A2"
  2796. font-family="'MicrosoftYaHei'"
  2797. font-size="11.3899"
  2798. >
  2799. :
  2800. </text>
  2801. </g>
  2802. <g>
  2803. <text
  2804. transform="matrix(1 0 0 1 1651.2639 320.7952)"
  2805. fill="#97A1A2"
  2806. font-family="'MicrosoftYaHei'"
  2807. font-size="11.3899"
  2808. >
  2809. Q
  2810. </text>
  2811. <text
  2812. transform="matrix(1 0 0 1 1660.5452 320.7952)"
  2813. fill="#97A1A2"
  2814. font-family="'MicrosoftYaHei'"
  2815. font-size="9.6234"
  2816. >
  2817. (MVar)
  2818. </text>
  2819. <text
  2820. transform="matrix(1 0 0 1 1687.7151 320.7952)"
  2821. fill="#97A1A2"
  2822. font-family="'MicrosoftYaHei'"
  2823. font-size="11.3899"
  2824. >
  2825. :
  2826. </text>
  2827. </g>
  2828. <g>
  2829. <text
  2830. transform="matrix(1 0 0 1 1664.2405 341.6292)"
  2831. fill="#97A1A2"
  2832. font-family="'MicrosoftYaHei'"
  2833. font-size="11.3899"
  2834. >
  2835. COS:
  2836. </text>
  2837. </g>
  2838. <rect
  2839. x="1597.021"
  2840. y="215.912"
  2841. fill="#CAA51A"
  2842. width="2.25"
  2843. height="42.75"
  2844. />
  2845. <rect
  2846. x="1597.021"
  2847. y="316.967"
  2848. fill="#CAA51A"
  2849. width="2.25"
  2850. height="187.126"
  2851. />
  2852. <rect
  2853. x="1501.021"
  2854. y="635.635"
  2855. fill="#CAA51A"
  2856. width="2.25"
  2857. height="50.943"
  2858. />
  2859. <rect
  2860. x="1501.021"
  2861. y="726.91"
  2862. fill="#CAA51A"
  2863. width="2.25"
  2864. height="10"
  2865. />
  2866. <rect
  2867. x="1567.271"
  2868. y="635.635"
  2869. fill="#CAA51A"
  2870. width="2.25"
  2871. height="50.943"
  2872. />
  2873. <rect
  2874. x="1501.527"
  2875. y="635.635"
  2876. fill="#CAA51A"
  2877. width="17.576"
  2878. height="2.25"
  2879. />
  2880. <rect
  2881. x="1551.818"
  2882. y="635.635"
  2883. fill="#CAA51A"
  2884. width="17.578"
  2885. height="2.25"
  2886. />
  2887. <circle
  2888. fill="none"
  2889. stroke="#A9165D"
  2890. stroke-width="1.2"
  2891. stroke-miterlimit="10"
  2892. cx="1536.021"
  2893. cy="626.389"
  2894. r="9.021"
  2895. />
  2896. <circle
  2897. fill="none"
  2898. stroke="#A9165D"
  2899. stroke-width="1.2"
  2900. stroke-miterlimit="10"
  2901. cx="1528.124"
  2902. cy="635.412"
  2903. r="9.021"
  2904. />
  2905. <polyline
  2906. fill="none"
  2907. stroke="#A9165D"
  2908. stroke-width="1.2"
  2909. stroke-miterlimit="10"
  2910. points="1532.792,622.262 1536.037,625.471 1539.061,622.262 "
  2911. />
  2912. <polyline
  2913. fill="none"
  2914. stroke="#A9165D"
  2915. stroke-width="1.2"
  2916. stroke-miterlimit="10"
  2917. points="1662.417,628.714 1659.172,625.505 1656.146,628.714 "
  2918. />
  2919. <line
  2920. fill="none"
  2921. stroke="#A9165D"
  2922. stroke-width="1.2"
  2923. stroke-miterlimit="10"
  2924. x1="1536.105"
  2925. y1="625.557"
  2926. x2="1536.105"
  2927. y2="631.216"
  2928. />
  2929. <polygon
  2930. fill="none"
  2931. stroke="#A9165D"
  2932. stroke-width="1.2"
  2933. stroke-miterlimit="10"
  2934. points="1525.085,638.322 1531.605,638.322 1528.167,632.947 "
  2935. />
  2936. <circle
  2937. fill="none"
  2938. stroke="#A9165D"
  2939. stroke-width="1.2"
  2940. stroke-miterlimit="10"
  2941. cx="1543.917"
  2942. cy="635.412"
  2943. r="9.021"
  2944. />
  2945. <polygon
  2946. fill="none"
  2947. stroke="#A9165D"
  2948. stroke-width="1.2"
  2949. stroke-miterlimit="10"
  2950. points="1540.876,638.322 1547.396,638.322 1543.958,632.947 "
  2951. />
  2952. <g>
  2953. <rect
  2954. x="1490.771"
  2955. y="686.579"
  2956. fill="none"
  2957. stroke="#F7F8F8"
  2958. stroke-width="1.3"
  2959. stroke-miterlimit="10"
  2960. width="24"
  2961. height="40.331"
  2962. />
  2963. <path
  2964. fill="none"
  2965. stroke="#CB151D"
  2966. stroke-width="1.2"
  2967. stroke-miterlimit="10"
  2968. d="M1492.021,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"
  2969. />
  2970. <line
  2971. fill="none"
  2972. stroke="#FFFFFF"
  2973. stroke-width="1.2"
  2974. stroke-miterlimit="10"
  2975. x1="1513.521"
  2976. y1="686.579"
  2977. x2="1490.771"
  2978. y2="725.91"
  2979. />
  2980. <line
  2981. fill="none"
  2982. stroke="#FFFFFF"
  2983. stroke-width="1.2"
  2984. stroke-miterlimit="10"
  2985. x1="1502.146"
  2986. y1="718.41"
  2987. x2="1510.314"
  2988. y2="718.41"
  2989. />
  2990. <line
  2991. fill="none"
  2992. stroke="#FFFFFF"
  2993. stroke-width="1.2"
  2994. stroke-miterlimit="10"
  2995. x1="1502.146"
  2996. y1="722.16"
  2997. x2="1510.314"
  2998. y2="722.16"
  2999. />
  3000. </g>
  3001. <rect
  3002. x="1567.646"
  3003. y="726.91"
  3004. fill="#CAA51A"
  3005. width="2.25"
  3006. height="10"
  3007. />
  3008. <g>
  3009. <rect
  3010. x="1557.396"
  3011. y="686.579"
  3012. fill="none"
  3013. stroke="#F7F8F8"
  3014. stroke-width="1.3"
  3015. stroke-miterlimit="10"
  3016. width="24"
  3017. height="40.331"
  3018. />
  3019. <path
  3020. fill="none"
  3021. stroke="#CB151D"
  3022. stroke-width="1.2"
  3023. stroke-miterlimit="10"
  3024. d="M1558.646,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"
  3025. />
  3026. <line
  3027. fill="none"
  3028. stroke="#FFFFFF"
  3029. stroke-width="1.2"
  3030. stroke-miterlimit="10"
  3031. x1="1580.146"
  3032. y1="686.579"
  3033. x2="1557.396"
  3034. y2="725.91"
  3035. />
  3036. <line
  3037. fill="none"
  3038. stroke="#FFFFFF"
  3039. stroke-width="1.2"
  3040. stroke-miterlimit="10"
  3041. x1="1568.771"
  3042. y1="718.41"
  3043. x2="1576.939"
  3044. y2="718.41"
  3045. />
  3046. <line
  3047. fill="none"
  3048. stroke="#FFFFFF"
  3049. stroke-width="1.2"
  3050. stroke-miterlimit="10"
  3051. x1="1568.771"
  3052. y1="722.16"
  3053. x2="1576.939"
  3054. y2="722.16"
  3055. />
  3056. </g>
  3057. <polyline
  3058. fill="#44426C"
  3059. points="1521.071,670.835 1521.071,648.9 1550.271,648.9 1550.271,670.835 "
  3060. />
  3061. <text
  3062. transform="matrix(1 0 0 1 1528.4026 663.4397)"
  3063. fill="#FFFFFF"
  3064. font-family="'MicrosoftYaHei'"
  3065. font-size="11.8698"
  3066. >
  3067. #9
  3068. </text>
  3069. <polyline
  3070. fill="#44426C"
  3071. points="1609.055,372.313 1637.031,372.313 1637.031,467.91 1609.055,467.91 "
  3072. />
  3073. <text
  3074. transform="matrix(0 1 -1 0 1618.4495 379.6477)"
  3075. fill="#FFFFFF"
  3076. font-family="'MicrosoftYaHei'"
  3077. font-size="13.5"
  3078. >
  3079. #5
  3080. </text>
  3081. <text
  3082. transform="matrix(1 0 0 1 1495.0217 748.2483)"
  3083. fill="#FFFFFF"
  3084. font-family="'MicrosoftYaHei'"
  3085. font-size="11.6452"
  3086. >
  3087. #17
  3088. </text>
  3089. <text
  3090. transform="matrix(1 0 0 1 1561.2717 296.7874)"
  3091. fill="#FFFFFF"
  3092. font-family="'MicrosoftYaHei'"
  3093. font-size="11.6452"
  3094. >
  3095. 315
  3096. </text>
  3097. <text
  3098. transform="matrix(1 0 0 1 1561.2717 748.2483)"
  3099. fill="#FFFFFF"
  3100. font-family="'MicrosoftYaHei'"
  3101. font-size="11.6452"
  3102. >
  3103. #18
  3104. </text>
  3105. <rect
  3106. x="1657.781"
  3107. y="634.29"
  3108. fill="#CAA51A"
  3109. width="2.25"
  3110. height="50.946"
  3111. />
  3112. <circle
  3113. fill="none"
  3114. stroke="#A9165D"
  3115. stroke-width="1.2"
  3116. stroke-miterlimit="10"
  3117. cx="1659.282"
  3118. cy="624.584"
  3119. r="9.021"
  3120. />
  3121. <line
  3122. fill="none"
  3123. stroke="#A9165D"
  3124. stroke-width="1.2"
  3125. stroke-miterlimit="10"
  3126. x1="1659.281"
  3127. y1="625.419"
  3128. x2="1659.281"
  3129. y2="619.76"
  3130. />
  3131. <circle
  3132. fill="none"
  3133. stroke="#A9165D"
  3134. stroke-width="1.2"
  3135. stroke-miterlimit="10"
  3136. cx="1659.281"
  3137. cy="611.432"
  3138. r="9.021"
  3139. />
  3140. <polygon
  3141. fill="none"
  3142. stroke="#A9165D"
  3143. stroke-width="1.2"
  3144. stroke-miterlimit="10"
  3145. points="1662.542,608.523 1656.021,608.523 1659.458,613.898 "
  3146. />
  3147. <rect
  3148. x="1658.156"
  3149. y="725.569"
  3150. fill="#CAA51A"
  3151. width="2.25"
  3152. height="10"
  3153. />
  3154. <g>
  3155. <rect
  3156. x="1647.906"
  3157. y="685.238"
  3158. fill="none"
  3159. stroke="#F7F8F8"
  3160. stroke-width="1.3"
  3161. stroke-miterlimit="10"
  3162. width="24"
  3163. height="40.331"
  3164. />
  3165. <path
  3166. fill="none"
  3167. stroke="#CB151D"
  3168. stroke-width="1.2"
  3169. stroke-miterlimit="10"
  3170. d="M1649.156,689.319c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"
  3171. />
  3172. <line
  3173. fill="none"
  3174. stroke="#FFFFFF"
  3175. stroke-width="1.2"
  3176. stroke-miterlimit="10"
  3177. x1="1670.656"
  3178. y1="685.238"
  3179. x2="1647.906"
  3180. y2="724.569"
  3181. />
  3182. <line
  3183. fill="none"
  3184. stroke="#FFFFFF"
  3185. stroke-width="1.2"
  3186. stroke-miterlimit="10"
  3187. x1="1659.281"
  3188. y1="717.069"
  3189. x2="1667.451"
  3190. y2="717.069"
  3191. />
  3192. <line
  3193. fill="none"
  3194. stroke="#FFFFFF"
  3195. stroke-width="1.2"
  3196. stroke-miterlimit="10"
  3197. x1="1659.281"
  3198. y1="720.819"
  3199. x2="1667.451"
  3200. y2="720.819"
  3201. />
  3202. </g>
  3203. <polyline
  3204. fill="#44426C"
  3205. points="1675.855,671.089 1675.855,649.154 1705.057,649.154 1705.057,671.089 "
  3206. />
  3207. <text
  3208. transform="matrix(1 0 0 1 1679.7092 663.6936)"
  3209. fill="#FFFFFF"
  3210. font-family="'MicrosoftYaHei'"
  3211. font-size="11.8698"
  3212. >
  3213. #10
  3214. </text>
  3215. <text
  3216. transform="matrix(1 0 0 1 1648.7815 746.9065)"
  3217. fill="#FFFFFF"
  3218. font-family="'MicrosoftYaHei'"
  3219. font-size="11.6452"
  3220. >
  3221. #19
  3222. </text>
  3223. <text
  3224. transform="matrix(1 0 0 1 1616.1838 410.3079)"
  3225. fill="#FFFFFF"
  3226. font-family="'MicrosoftYaHei'"
  3227. font-size="13.5"
  3228. >
  3229. </text>
  3230. <text
  3231. transform="matrix(1 0 0 1 1616.1838 426.5081)"
  3232. fill="#FFFFFF"
  3233. font-family="'MicrosoftYaHei'"
  3234. font-size="13.5"
  3235. >
  3236. </text>
  3237. <text
  3238. transform="matrix(1 0 0 1 1616.1838 442.7073)"
  3239. fill="#FFFFFF"
  3240. font-family="'MicrosoftYaHei'"
  3241. font-size="13.5"
  3242. >
  3243. </text>
  3244. <text
  3245. transform="matrix(1 0 0 1 1616.1838 458.9075)"
  3246. fill="#FFFFFF"
  3247. font-family="'MicrosoftYaHei'"
  3248. font-size="13.5"
  3249. >
  3250. 线
  3251. </text>
  3252. <text
  3253. transform="matrix(1 0 0 1 1629.6838 459.1282)"
  3254. fill="#FFFFFF"
  3255. font-family="'MicrosoftYaHei'"
  3256. font-size="13.5"
  3257. letter-spacing="20"
  3258. ></text>
  3259. <rect
  3260. x="1153.99"
  3261. y="502.439"
  3262. fill="#CAA51A"
  3263. width="246.117"
  3264. height="2.25"
  3265. />
  3266. <rect
  3267. x="1153.989"
  3268. y="503.01"
  3269. fill="#CAA51A"
  3270. width="2.25"
  3271. height="114.356"
  3272. />
  3273. <rect
  3274. x="1275.415"
  3275. y="503.01"
  3276. fill="#CAA51A"
  3277. width="2.25"
  3278. height="114.356"
  3279. />
  3280. <rect
  3281. x="1397.857"
  3282. y="503.01"
  3283. fill="#CAA51A"
  3284. width="2.25"
  3285. height="114.356"
  3286. />
  3287. <rect
  3288. x="1430.917"
  3289. y="503.01"
  3290. fill="#CAA51A"
  3291. width="2.25"
  3292. height="114.356"
  3293. />
  3294. <rect
  3295. x="1306.977"
  3296. y="266.198"
  3297. opacity="0.9"
  3298. fill="#162320"
  3299. enable-background="new "
  3300. width="115.109"
  3301. height="18.491"
  3302. />
  3303. <rect
  3304. x="1306.977"
  3305. y="286.696"
  3306. opacity="0.9"
  3307. fill="#162320"
  3308. enable-background="new "
  3309. width="115.109"
  3310. height="18.49"
  3311. />
  3312. <rect
  3313. x="1306.977"
  3314. y="307.192"
  3315. opacity="0.9"
  3316. fill="#162320"
  3317. enable-background="new "
  3318. width="115.109"
  3319. height="18.49"
  3320. />
  3321. <rect
  3322. x="1306.977"
  3323. y="327.688"
  3324. opacity="0.9"
  3325. fill="#162320"
  3326. enable-background="new "
  3327. width="115.109"
  3328. height="18.49"
  3329. />
  3330. <g>
  3331. <text
  3332. transform="matrix(1 0 0 1 1325.7014 280.1487)"
  3333. fill="#97A1A2"
  3334. font-family="'MicrosoftYaHei'"
  3335. font-size="11.3899"
  3336. >
  3337. la
  3338. </text>
  3339. <text
  3340. transform="matrix(1 0 0 1 1335.0276 280.1487)"
  3341. fill="#97A1A2"
  3342. font-family="'MicrosoftYaHei'"
  3343. font-size="9.6234"
  3344. >
  3345. (A)
  3346. </text>
  3347. <text
  3348. transform="matrix(1 0 0 1 1348.2268 280.1487)"
  3349. fill="#97A1A2"
  3350. font-family="'MicrosoftYaHei'"
  3351. font-size="11.3899"
  3352. >
  3353. :
  3354. </text>
  3355. </g>
  3356. <g>
  3357. <text
  3358. transform="matrix(1 0 0 1 1319.7991 298.51)"
  3359. fill="#97A1A2"
  3360. font-family="'MicrosoftYaHei'"
  3361. font-size="11.3899"
  3362. >
  3363. P
  3364. </text>
  3365. <text
  3366. transform="matrix(1 0 0 1 1326.7678 298.51)"
  3367. fill="#97A1A2"
  3368. font-family="'MicrosoftYaHei'"
  3369. font-size="9.6234"
  3370. >
  3371. (MM)
  3372. </text>
  3373. <text
  3374. transform="matrix(1 0 0 1 1348.2288 298.51)"
  3375. fill="#97A1A2"
  3376. font-family="'MicrosoftYaHei'"
  3377. font-size="11.3899"
  3378. >
  3379. :
  3380. </text>
  3381. </g>
  3382. <g>
  3383. <text
  3384. transform="matrix(1 0 0 1 1311.7776 320.7952)"
  3385. fill="#97A1A2"
  3386. font-family="'MicrosoftYaHei'"
  3387. font-size="11.3899"
  3388. >
  3389. Q
  3390. </text>
  3391. <text
  3392. transform="matrix(1 0 0 1 1321.0588 320.7952)"
  3393. fill="#97A1A2"
  3394. font-family="'MicrosoftYaHei'"
  3395. font-size="9.6234"
  3396. >
  3397. (MVar)
  3398. </text>
  3399. <text
  3400. transform="matrix(1 0 0 1 1348.2268 320.7952)"
  3401. fill="#97A1A2"
  3402. font-family="'MicrosoftYaHei'"
  3403. font-size="11.3899"
  3404. >
  3405. :
  3406. </text>
  3407. </g>
  3408. <g>
  3409. <text
  3410. transform="matrix(1 0 0 1 1324.7522 341.6292)"
  3411. fill="#97A1A2"
  3412. font-family="'MicrosoftYaHei'"
  3413. font-size="11.3899"
  3414. >
  3415. COS:
  3416. </text>
  3417. </g>
  3418. <rect
  3419. x="1274.614"
  3420. y="215.912"
  3421. fill="#CAA51A"
  3422. width="2.25"
  3423. height="42.75"
  3424. />
  3425. <rect
  3426. x="1274.614"
  3427. y="316.967"
  3428. fill="#CAA51A"
  3429. width="2.25"
  3430. height="187.126"
  3431. />
  3432. <rect
  3433. x="1119.615"
  3434. y="635.635"
  3435. fill="#CAA51A"
  3436. width="2.25"
  3437. height="50.943"
  3438. />
  3439. <rect
  3440. x="1119.615"
  3441. y="726.91"
  3442. fill="#CAA51A"
  3443. width="2.25"
  3444. height="10"
  3445. />
  3446. <rect
  3447. x="1185.865"
  3448. y="635.635"
  3449. fill="#CAA51A"
  3450. width="2.25"
  3451. height="50.943"
  3452. />
  3453. <rect
  3454. x="1120.121"
  3455. y="635.635"
  3456. fill="#CAA51A"
  3457. width="17.576"
  3458. height="2.25"
  3459. />
  3460. <rect
  3461. x="1170.412"
  3462. y="635.635"
  3463. fill="#CAA51A"
  3464. width="17.578"
  3465. height="2.25"
  3466. />
  3467. <circle
  3468. fill="none"
  3469. stroke="#A9165D"
  3470. stroke-width="1.2"
  3471. stroke-miterlimit="10"
  3472. cx="1154.615"
  3473. cy="626.389"
  3474. r="9.021"
  3475. />
  3476. <circle
  3477. fill="none"
  3478. stroke="#A9165D"
  3479. stroke-width="1.2"
  3480. stroke-miterlimit="10"
  3481. cx="1146.72"
  3482. cy="635.412"
  3483. r="9.021"
  3484. />
  3485. <polyline
  3486. fill="none"
  3487. stroke="#A9165D"
  3488. stroke-width="1.2"
  3489. stroke-miterlimit="10"
  3490. points="1151.386,622.262 1154.631,625.471 1157.656,622.262 "
  3491. />
  3492. <polyline
  3493. fill="none"
  3494. stroke="#A9165D"
  3495. stroke-width="1.2"
  3496. stroke-miterlimit="10"
  3497. points="1273.316,622.262 1276.563,625.471 1279.586,622.262 "
  3498. />
  3499. <line
  3500. fill="none"
  3501. stroke="#A9165D"
  3502. stroke-width="1.2"
  3503. stroke-miterlimit="10"
  3504. x1="1154.699"
  3505. y1="625.557"
  3506. x2="1154.699"
  3507. y2="631.216"
  3508. />
  3509. <polygon
  3510. fill="none"
  3511. stroke="#A9165D"
  3512. stroke-width="1.2"
  3513. stroke-miterlimit="10"
  3514. points="1143.68,638.322 1150.199,638.322 1146.762,632.947 "
  3515. />
  3516. <circle
  3517. fill="none"
  3518. stroke="#A9165D"
  3519. stroke-width="1.2"
  3520. stroke-miterlimit="10"
  3521. cx="1162.512"
  3522. cy="635.412"
  3523. r="9.021"
  3524. />
  3525. <polygon
  3526. fill="none"
  3527. stroke="#A9165D"
  3528. stroke-width="1.2"
  3529. stroke-miterlimit="10"
  3530. points="1159.471,638.322 1165.99,638.322 1162.553,632.947 "
  3531. />
  3532. <g>
  3533. <rect
  3534. x="1109.365"
  3535. y="686.579"
  3536. fill="none"
  3537. stroke="#F7F8F8"
  3538. stroke-width="1.3"
  3539. stroke-miterlimit="10"
  3540. width="24"
  3541. height="40.331"
  3542. />
  3543. <path
  3544. fill="none"
  3545. stroke="#CB151D"
  3546. stroke-width="1.2"
  3547. stroke-miterlimit="10"
  3548. d="M1110.615,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"
  3549. />
  3550. <line
  3551. fill="none"
  3552. stroke="#FFFFFF"
  3553. stroke-width="1.2"
  3554. stroke-miterlimit="10"
  3555. x1="1132.115"
  3556. y1="686.579"
  3557. x2="1109.365"
  3558. y2="725.91"
  3559. />
  3560. <line
  3561. fill="none"
  3562. stroke="#FFFFFF"
  3563. stroke-width="1.2"
  3564. stroke-miterlimit="10"
  3565. x1="1120.74"
  3566. y1="718.41"
  3567. x2="1128.909"
  3568. y2="718.41"
  3569. />
  3570. <line
  3571. fill="none"
  3572. stroke="#FFFFFF"
  3573. stroke-width="1.2"
  3574. stroke-miterlimit="10"
  3575. x1="1120.74"
  3576. y1="722.16"
  3577. x2="1128.909"
  3578. y2="722.16"
  3579. />
  3580. </g>
  3581. <rect
  3582. x="1186.24"
  3583. y="726.91"
  3584. fill="#CAA51A"
  3585. width="2.25"
  3586. height="10"
  3587. />
  3588. <g>
  3589. <rect
  3590. x="1175.99"
  3591. y="686.579"
  3592. fill="none"
  3593. stroke="#F7F8F8"
  3594. stroke-width="1.3"
  3595. stroke-miterlimit="10"
  3596. width="24"
  3597. height="40.331"
  3598. />
  3599. <path
  3600. fill="none"
  3601. stroke="#CB151D"
  3602. stroke-width="1.2"
  3603. stroke-miterlimit="10"
  3604. d="M1177.24,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"
  3605. />
  3606. <line
  3607. fill="none"
  3608. stroke="#FFFFFF"
  3609. stroke-width="1.2"
  3610. stroke-miterlimit="10"
  3611. x1="1198.74"
  3612. y1="686.579"
  3613. x2="1175.99"
  3614. y2="725.91"
  3615. />
  3616. <line
  3617. fill="none"
  3618. stroke="#FFFFFF"
  3619. stroke-width="1.2"
  3620. stroke-miterlimit="10"
  3621. x1="1187.365"
  3622. y1="718.41"
  3623. x2="1195.534"
  3624. y2="718.41"
  3625. />
  3626. <line
  3627. fill="none"
  3628. stroke="#FFFFFF"
  3629. stroke-width="1.2"
  3630. stroke-miterlimit="10"
  3631. x1="1187.365"
  3632. y1="722.16"
  3633. x2="1195.534"
  3634. y2="722.16"
  3635. />
  3636. </g>
  3637. <polyline
  3638. fill="#44426C"
  3639. points="1139.665,670.835 1139.665,648.9 1168.865,648.9 1168.865,670.835 "
  3640. />
  3641. <text
  3642. transform="matrix(1 0 0 1 1146.9963 663.4397)"
  3643. fill="#FFFFFF"
  3644. font-family="'MicrosoftYaHei'"
  3645. font-size="11.8698"
  3646. >
  3647. #7
  3648. </text>
  3649. <polyline
  3650. fill="#44426C"
  3651. points="1286.648,372.313 1314.624,372.313 1314.624,467.91 1286.648,467.91 "
  3652. />
  3653. <text
  3654. transform="matrix(0 1 -1 0 1296.0393 379.6477)"
  3655. fill="#FFFFFF"
  3656. font-family="'MicrosoftYaHei'"
  3657. font-size="13.5"
  3658. >
  3659. #4
  3660. </text>
  3661. <text
  3662. transform="matrix(1 0 0 1 1110.5549 748.2483)"
  3663. fill="#FFFFFF"
  3664. font-family="'MicrosoftYaHei'"
  3665. font-size="11.6452"
  3666. >
  3667. #13
  3668. </text>
  3669. <text
  3670. transform="matrix(1 0 0 1 1238.8635 296.7874)"
  3671. fill="#FFFFFF"
  3672. font-family="'MicrosoftYaHei'"
  3673. font-size="11.6452"
  3674. >
  3675. 316
  3676. </text>
  3677. <text
  3678. transform="matrix(1 0 0 1 1176.8049 748.2483)"
  3679. fill="#FFFFFF"
  3680. font-family="'MicrosoftYaHei'"
  3681. font-size="11.6452"
  3682. >
  3683. #14
  3684. </text>
  3685. <rect
  3686. x="1241.801"
  3687. y="635.635"
  3688. fill="#CAA51A"
  3689. width="2.25"
  3690. height="50.943"
  3691. />
  3692. <rect
  3693. x="1241.801"
  3694. y="726.91"
  3695. fill="#CAA51A"
  3696. width="2.25"
  3697. height="10"
  3698. />
  3699. <rect
  3700. x="1308.051"
  3701. y="635.635"
  3702. fill="#CAA51A"
  3703. width="2.25"
  3704. height="50.943"
  3705. />
  3706. <rect
  3707. x="1242.307"
  3708. y="635.635"
  3709. fill="#CAA51A"
  3710. width="17.578"
  3711. height="2.25"
  3712. />
  3713. <rect
  3714. x="1292.6"
  3715. y="635.635"
  3716. fill="#CAA51A"
  3717. width="17.576"
  3718. height="2.25"
  3719. />
  3720. <circle
  3721. fill="none"
  3722. stroke="#A9165D"
  3723. stroke-width="1.2"
  3724. stroke-miterlimit="10"
  3725. cx="1276.801"
  3726. cy="626.389"
  3727. r="9.021"
  3728. />
  3729. <circle
  3730. fill="none"
  3731. stroke="#A9165D"
  3732. stroke-width="1.2"
  3733. stroke-miterlimit="10"
  3734. cx="1268.906"
  3735. cy="635.412"
  3736. r="9.021"
  3737. />
  3738. <line
  3739. fill="none"
  3740. stroke="#A9165D"
  3741. stroke-width="1.2"
  3742. stroke-miterlimit="10"
  3743. x1="1276.885"
  3744. y1="625.557"
  3745. x2="1276.885"
  3746. y2="631.216"
  3747. />
  3748. <polygon
  3749. fill="none"
  3750. stroke="#A9165D"
  3751. stroke-width="1.2"
  3752. stroke-miterlimit="10"
  3753. points="1265.865,638.322 1272.385,638.322 1268.948,632.947 "
  3754. />
  3755. <circle
  3756. fill="none"
  3757. stroke="#A9165D"
  3758. stroke-width="1.2"
  3759. stroke-miterlimit="10"
  3760. cx="1284.698"
  3761. cy="635.412"
  3762. r="9.021"
  3763. />
  3764. <polygon
  3765. fill="none"
  3766. stroke="#A9165D"
  3767. stroke-width="1.2"
  3768. stroke-miterlimit="10"
  3769. points="1281.658,638.322 1288.178,638.322 1284.74,632.947 "
  3770. />
  3771. <g>
  3772. <rect
  3773. x="1231.551"
  3774. y="686.579"
  3775. fill="none"
  3776. stroke="#F7F8F8"
  3777. stroke-width="1.3"
  3778. stroke-miterlimit="10"
  3779. width="24"
  3780. height="40.331"
  3781. />
  3782. <path
  3783. fill="none"
  3784. stroke="#CB151D"
  3785. stroke-width="1.2"
  3786. stroke-miterlimit="10"
  3787. d="M1232.801,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"
  3788. />
  3789. <line
  3790. fill="none"
  3791. stroke="#FFFFFF"
  3792. stroke-width="1.2"
  3793. stroke-miterlimit="10"
  3794. x1="1254.301"
  3795. y1="686.579"
  3796. x2="1231.551"
  3797. y2="725.91"
  3798. />
  3799. <line
  3800. fill="none"
  3801. stroke="#FFFFFF"
  3802. stroke-width="1.2"
  3803. stroke-miterlimit="10"
  3804. x1="1242.926"
  3805. y1="718.41"
  3806. x2="1251.096"
  3807. y2="718.41"
  3808. />
  3809. <line
  3810. fill="none"
  3811. stroke="#FFFFFF"
  3812. stroke-width="1.2"
  3813. stroke-miterlimit="10"
  3814. x1="1242.926"
  3815. y1="722.16"
  3816. x2="1251.096"
  3817. y2="722.16"
  3818. />
  3819. </g>
  3820. <rect
  3821. x="1308.426"
  3822. y="726.91"
  3823. fill="#CAA51A"
  3824. width="2.25"
  3825. height="10"
  3826. />
  3827. <g>
  3828. <rect
  3829. x="1298.176"
  3830. y="686.579"
  3831. fill="none"
  3832. stroke="#F7F8F8"
  3833. stroke-width="1.3"
  3834. stroke-miterlimit="10"
  3835. width="24"
  3836. height="40.331"
  3837. />
  3838. <path
  3839. fill="none"
  3840. stroke="#CB151D"
  3841. stroke-width="1.2"
  3842. stroke-miterlimit="10"
  3843. d="M1299.426,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"
  3844. />
  3845. <line
  3846. fill="none"
  3847. stroke="#FFFFFF"
  3848. stroke-width="1.2"
  3849. stroke-miterlimit="10"
  3850. x1="1320.926"
  3851. y1="686.579"
  3852. x2="1298.176"
  3853. y2="725.91"
  3854. />
  3855. <line
  3856. fill="none"
  3857. stroke="#FFFFFF"
  3858. stroke-width="1.2"
  3859. stroke-miterlimit="10"
  3860. x1="1309.551"
  3861. y1="718.41"
  3862. x2="1317.721"
  3863. y2="718.41"
  3864. />
  3865. <line
  3866. fill="none"
  3867. stroke="#FFFFFF"
  3868. stroke-width="1.2"
  3869. stroke-miterlimit="10"
  3870. x1="1309.551"
  3871. y1="722.16"
  3872. x2="1317.721"
  3873. y2="722.16"
  3874. />
  3875. </g>
  3876. <polyline
  3877. fill="#44426C"
  3878. points="1261.852,670.835 1261.852,648.9 1291.051,648.9 1291.051,670.835 "
  3879. />
  3880. <text
  3881. transform="matrix(1 0 0 1 1269.1838 663.4397)"
  3882. fill="#FFFFFF"
  3883. font-family="'MicrosoftYaHei'"
  3884. font-size="11.8698"
  3885. >
  3886. #8
  3887. </text>
  3888. <text
  3889. transform="matrix(1 0 0 1 1235.801 748.2483)"
  3890. fill="#FFFFFF"
  3891. font-family="'MicrosoftYaHei'"
  3892. font-size="11.6452"
  3893. >
  3894. #15
  3895. </text>
  3896. <text
  3897. transform="matrix(1 0 0 1 1299.051 748.2483)"
  3898. fill="#FFFFFF"
  3899. font-family="'MicrosoftYaHei'"
  3900. font-size="11.6452"
  3901. >
  3902. #16
  3903. </text>
  3904. <text
  3905. transform="matrix(1 0 0 1 1293.7756 410.3079)"
  3906. fill="#FFFFFF"
  3907. font-family="'MicrosoftYaHei'"
  3908. font-size="13.5"
  3909. >
  3910. </text>
  3911. <text
  3912. transform="matrix(1 0 0 1 1293.7756 426.5081)"
  3913. fill="#FFFFFF"
  3914. font-family="'MicrosoftYaHei'"
  3915. font-size="13.5"
  3916. >
  3917. </text>
  3918. <text
  3919. transform="matrix(1 0 0 1 1293.7756 442.7073)"
  3920. fill="#FFFFFF"
  3921. font-family="'MicrosoftYaHei'"
  3922. font-size="13.5"
  3923. >
  3924. </text>
  3925. <text
  3926. transform="matrix(1 0 0 1 1293.7756 458.9075)"
  3927. fill="#FFFFFF"
  3928. font-family="'MicrosoftYaHei'"
  3929. font-size="13.5"
  3930. >
  3931. 线
  3932. </text>
  3933. <text
  3934. transform="matrix(1 0 0 1 1307.2756 459.1282)"
  3935. fill="#FFFFFF"
  3936. font-family="'MicrosoftYaHei'"
  3937. font-size="13.5"
  3938. letter-spacing="20"
  3939. ></text>
  3940. <polygon
  3941. fill="#CAA51A"
  3942. points="1427.208,504.689 1432.04,494.392 1436.874,504.688 "
  3943. />
  3944. <g>
  3945. <text
  3946. transform="matrix(1 0 0 1 1.9905 206.7913)"
  3947. fill="#D0D0D0"
  3948. font-family="'MicrosoftYaHei'"
  3949. font-size="12.619"
  3950. >
  3951. 35kV母线
  3952. </text>
  3953. </g>
  3954. <g>
  3955. <rect
  3956. x="443.686"
  3957. y="116.428"
  3958. fill="#44426C"
  3959. width="83.313"
  3960. height="20.817"
  3961. />
  3962. <text
  3963. transform="matrix(1 0 0 1 466.4919 130.6194)"
  3964. fill="#FFFFFF"
  3965. font-family="'MicrosoftYaHei'"
  3966. font-size="12.5667"
  3967. >
  3968. 园特线
  3969. </text>
  3970. </g>
  3971. <text
  3972. transform="matrix(1 0 0 1 535.8542 132.6194)"
  3973. fill="#FFFFFF"
  3974. font-family="'MicrosoftYaHei'"
  3975. font-size="11.6452"
  3976. >
  3977. 310
  3978. </text>
  3979. <polygon
  3980. fill="#CAA51A"
  3981. points="567.821,25.24 572.431,15.432 577.03,25.244 "
  3982. />
  3983. <rect
  3984. x="570.938"
  3985. y="170.912"
  3986. fill="#CAA51A"
  3987. width="2.25"
  3988. height="42.75"
  3989. />
  3990. <rect
  3991. x="570.938"
  3992. y="25.244"
  3993. fill="#CAA51A"
  3994. width="2.25"
  3995. height="87.361"
  3996. />
  3997. <g>
  3998. <rect
  3999. x="1148.858"
  4000. y="116.428"
  4001. fill="#44426C"
  4002. width="83.313"
  4003. height="20.817"
  4004. />
  4005. <text
  4006. transform="matrix(1 0 0 1 1157.6858 130.6194)"
  4007. fill="#FFFFFF"
  4008. font-family="'MicrosoftYaHei'"
  4009. font-size="12.5667"
  4010. >
  4011. 1#无功补偿
  4012. </text>
  4013. </g>
  4014. <rect
  4015. x="698.255"
  4016. y="107.234"
  4017. opacity="0.9"
  4018. fill="#162320"
  4019. enable-background="new "
  4020. width="115.109"
  4021. height="18.491"
  4022. />
  4023. <rect
  4024. x="698.255"
  4025. y="127.731"
  4026. opacity="0.9"
  4027. fill="#162320"
  4028. enable-background="new "
  4029. width="115.109"
  4030. height="18.491"
  4031. />
  4032. <rect
  4033. x="698.255"
  4034. y="148.228"
  4035. opacity="0.9"
  4036. fill="#162320"
  4037. enable-background="new "
  4038. width="115.109"
  4039. height="18.491"
  4040. />
  4041. <rect
  4042. x="698.255"
  4043. y="168.725"
  4044. opacity="0.9"
  4045. fill="#162320"
  4046. enable-background="new "
  4047. width="115.109"
  4048. height="18.489"
  4049. />
  4050. <g>
  4051. <text
  4052. transform="matrix(1 0 0 1 716.9797 121.1858)"
  4053. fill="#97A1A2"
  4054. font-family="'MicrosoftYaHei'"
  4055. font-size="11.3899"
  4056. >
  4057. la
  4058. </text>
  4059. <text
  4060. transform="matrix(1 0 0 1 726.3069 121.1858)"
  4061. fill="#97A1A2"
  4062. font-family="'MicrosoftYaHei'"
  4063. font-size="9.6234"
  4064. >
  4065. (A)
  4066. </text>
  4067. <text
  4068. transform="matrix(1 0 0 1 739.5056 121.1858)"
  4069. fill="#97A1A2"
  4070. font-family="'MicrosoftYaHei'"
  4071. font-size="11.3899"
  4072. >
  4073. :
  4074. </text>
  4075. </g>
  4076. <g>
  4077. <text
  4078. transform="matrix(1 0 0 1 711.0769 139.5452)"
  4079. fill="#97A1A2"
  4080. font-family="'MicrosoftYaHei'"
  4081. font-size="11.3899"
  4082. >
  4083. P
  4084. </text>
  4085. <text
  4086. transform="matrix(1 0 0 1 718.0457 139.5452)"
  4087. fill="#97A1A2"
  4088. font-family="'MicrosoftYaHei'"
  4089. font-size="9.6234"
  4090. >
  4091. (MM)
  4092. </text>
  4093. <text
  4094. transform="matrix(1 0 0 1 739.5056 139.5452)"
  4095. fill="#97A1A2"
  4096. font-family="'MicrosoftYaHei'"
  4097. font-size="11.3899"
  4098. >
  4099. :
  4100. </text>
  4101. </g>
  4102. <g>
  4103. <text
  4104. transform="matrix(1 0 0 1 703.0544 161.8303)"
  4105. fill="#97A1A2"
  4106. font-family="'MicrosoftYaHei'"
  4107. font-size="11.3899"
  4108. >
  4109. Q
  4110. </text>
  4111. <text
  4112. transform="matrix(1 0 0 1 712.3367 161.8303)"
  4113. fill="#97A1A2"
  4114. font-family="'MicrosoftYaHei'"
  4115. font-size="9.6234"
  4116. >
  4117. (MVar)
  4118. </text>
  4119. <text
  4120. transform="matrix(1 0 0 1 739.5056 161.8303)"
  4121. fill="#97A1A2"
  4122. font-family="'MicrosoftYaHei'"
  4123. font-size="11.3899"
  4124. >
  4125. :
  4126. </text>
  4127. </g>
  4128. <g>
  4129. <text
  4130. transform="matrix(1 0 0 1 716.0305 182.6643)"
  4131. fill="#97A1A2"
  4132. font-family="'MicrosoftYaHei'"
  4133. font-size="11.3899"
  4134. >
  4135. COS:
  4136. </text>
  4137. </g>
  4138. <rect
  4139. x="1314.624"
  4140. y="96.987"
  4141. opacity="0.9"
  4142. fill="#162320"
  4143. enable-background="new "
  4144. width="115.107"
  4145. height="18.491"
  4146. />
  4147. <rect
  4148. x="1314.624"
  4149. y="117.484"
  4150. opacity="0.9"
  4151. fill="#162320"
  4152. enable-background="new "
  4153. width="115.107"
  4154. height="18.49"
  4155. />
  4156. <rect
  4157. x="1314.624"
  4158. y="137.98"
  4159. opacity="0.9"
  4160. fill="#162320"
  4161. enable-background="new "
  4162. width="115.107"
  4163. height="18.49"
  4164. />
  4165. <rect
  4166. x="1314.624"
  4167. y="158.477"
  4168. opacity="0.9"
  4169. fill="#162320"
  4170. enable-background="new "
  4171. width="115.107"
  4172. height="18.49"
  4173. />
  4174. <g>
  4175. <text
  4176. transform="matrix(1 0 0 1 1333.3479 110.9377)"
  4177. fill="#97A1A2"
  4178. font-family="'MicrosoftYaHei'"
  4179. font-size="11.3899"
  4180. >
  4181. la
  4182. </text>
  4183. <text
  4184. transform="matrix(1 0 0 1 1342.6741 110.9377)"
  4185. fill="#97A1A2"
  4186. font-family="'MicrosoftYaHei'"
  4187. font-size="9.6234"
  4188. >
  4189. (A)
  4190. </text>
  4191. <text
  4192. transform="matrix(1 0 0 1 1355.8733 110.9377)"
  4193. fill="#97A1A2"
  4194. font-family="'MicrosoftYaHei'"
  4195. font-size="11.3899"
  4196. >
  4197. :
  4198. </text>
  4199. </g>
  4200. <g>
  4201. <text
  4202. transform="matrix(1 0 0 1 1327.4456 129.2971)"
  4203. fill="#97A1A2"
  4204. font-family="'MicrosoftYaHei'"
  4205. font-size="11.3899"
  4206. >
  4207. P
  4208. </text>
  4209. <text
  4210. transform="matrix(1 0 0 1 1334.4143 129.2971)"
  4211. fill="#97A1A2"
  4212. font-family="'MicrosoftYaHei'"
  4213. font-size="9.6234"
  4214. >
  4215. (MM)
  4216. </text>
  4217. <text
  4218. transform="matrix(1 0 0 1 1355.8752 129.2971)"
  4219. fill="#97A1A2"
  4220. font-family="'MicrosoftYaHei'"
  4221. font-size="11.3899"
  4222. >
  4223. :
  4224. </text>
  4225. </g>
  4226. <g>
  4227. <text
  4228. transform="matrix(1 0 0 1 1319.4241 151.5823)"
  4229. fill="#97A1A2"
  4230. font-family="'MicrosoftYaHei'"
  4231. font-size="11.3899"
  4232. >
  4233. Q
  4234. </text>
  4235. <text
  4236. transform="matrix(1 0 0 1 1328.7053 151.5823)"
  4237. fill="#97A1A2"
  4238. font-family="'MicrosoftYaHei'"
  4239. font-size="9.6234"
  4240. >
  4241. (MVar)
  4242. </text>
  4243. <text
  4244. transform="matrix(1 0 0 1 1355.8733 151.5823)"
  4245. fill="#97A1A2"
  4246. font-family="'MicrosoftYaHei'"
  4247. font-size="11.3899"
  4248. >
  4249. :
  4250. </text>
  4251. </g>
  4252. <g>
  4253. <text
  4254. transform="matrix(1 0 0 1 1332.3987 172.4163)"
  4255. fill="#97A1A2"
  4256. font-family="'MicrosoftYaHei'"
  4257. font-size="11.3899"
  4258. >
  4259. COS:
  4260. </text>
  4261. </g>
  4262. <text
  4263. transform="matrix(1 0 0 1 1241.0276 132.6194)"
  4264. fill="#FFFFFF"
  4265. font-family="'MicrosoftYaHei'"
  4266. font-size="11.6452"
  4267. >
  4268. 318
  4269. </text>
  4270. <rect
  4271. x="1275.182"
  4272. y="170.912"
  4273. fill="#CAA51A"
  4274. width="2.25"
  4275. height="42.75"
  4276. />
  4277. <rect
  4278. x="1275.182"
  4279. y="27.244"
  4280. fill="#CAA51A"
  4281. width="2.25"
  4282. height="32.667"
  4283. />
  4284. <rect
  4285. x="1275.182"
  4286. y="79.412"
  4287. fill="#CAA51A"
  4288. width="2.25"
  4289. height="33.834"
  4290. />
  4291. <rect
  4292. x="1259.318"
  4293. y="26.119"
  4294. fill="#CAA51A"
  4295. width="33.979"
  4296. height="2.25"
  4297. />
  4298. <rect
  4299. x="1259.318"
  4300. y="15.662"
  4301. fill="#CAA51A"
  4302. width="33.979"
  4303. height="2.25"
  4304. />
  4305. <rect
  4306. x="1275.064"
  4307. y="12.623"
  4308. fill="#CAA51A"
  4309. width="2.484"
  4310. height="3.039"
  4311. />
  4312. <rect
  4313. x="1275.064"
  4314. y="8.516"
  4315. fill="#40B9B0"
  4316. width="2.484"
  4317. height="4.106"
  4318. />
  4319. <g>
  4320. <line
  4321. fill="none"
  4322. stroke="#40B9B0"
  4323. stroke-width="2"
  4324. stroke-miterlimit="10"
  4325. x1="1282.018"
  4326. y1="8.515"
  4327. x2="1270.596"
  4328. y2="8.515"
  4329. />
  4330. <line
  4331. fill="none"
  4332. stroke="#40B9B0"
  4333. stroke-width="2"
  4334. stroke-miterlimit="10"
  4335. x1="1279.66"
  4336. y1="5.346"
  4337. x2="1272.953"
  4338. y2="5.346"
  4339. />
  4340. <line
  4341. fill="none"
  4342. stroke="#40B9B0"
  4343. stroke-width="2"
  4344. stroke-miterlimit="10"
  4345. x1="1277.721"
  4346. y1="2"
  4347. x2="1274.893"
  4348. y2="2"
  4349. />
  4350. </g>
  4351. <path
  4352. fill="none"
  4353. stroke="#CAA51A"
  4354. stroke-width="2.2"
  4355. stroke-miterlimit="10"
  4356. d="M1265.973,70.246 c0-5.708,4.627-10.334,10.334-10.334s10.334,4.626,10.334,10.334c0,5.707-4.627,10.334-10.334,10.334"
  4357. />
  4358. <path
  4359. fill="none"
  4360. stroke="#CAA51A"
  4361. stroke-width="2.2"
  4362. stroke-miterlimit="10"
  4363. d="M1276.42,59.945 c-0.224-0.014-0.443-0.031-0.671-0.031c-5.707,0-10.334,4.626-10.334,10.334h11.005V59.945z"
  4364. />
  4365. <text
  4366. transform="matrix(1 0 0 1 153.7771 779.5334)"
  4367. fill="#FFFFFF"
  4368. font-family="'MicrosoftYaHei'"
  4369. font-size="15"
  4370. >
  4371. 输入电压(V):
  4372. </text>
  4373. <text
  4374. transform="matrix(1 0 0 1 153.7771 821.5559)"
  4375. fill="#FFFFFF"
  4376. font-family="'MicrosoftYaHei'"
  4377. font-size="15"
  4378. >
  4379. 输出功率(MM):
  4380. </text>
  4381. </g>
  4382. <g id="arrow">
  4383. <rect
  4384. x="564.331"
  4385. y="129.662"
  4386. :fill="ajaxData.pl1dlq310 ? red : green"
  4387. width="15.463"
  4388. height="24.008"
  4389. ></rect>
  4390. <rect
  4391. x="1268.575"
  4392. y="130.662"
  4393. :fill="ajaxData.pl1dlq318 ? red : green"
  4394. width="15.463"
  4395. height="24.008"
  4396. ></rect>
  4397. <rect
  4398. x="161.332"
  4399. y="275.904"
  4400. :fill="ajaxData.pl1dlq312 ? red : green"
  4401. width="15.462"
  4402. height="24.008"
  4403. ></rect>
  4404. <rect
  4405. x="425.331"
  4406. y="275.904"
  4407. :fill="ajaxData.pl1dlq313 ? red : green"
  4408. width="15.463"
  4409. height="24.008"
  4410. ></rect>
  4411. <rect
  4412. x="689.398"
  4413. y="275.904"
  4414. :fill="ajaxData.pl1dlq314 ? red : green"
  4415. width="15.463"
  4416. height="24.008"
  4417. ></rect>
  4418. <rect
  4419. x="953.72"
  4420. y="275.904"
  4421. :fill="ajaxData.pl1dlq315 ? red : green"
  4422. width="15.462"
  4423. height="24.008"
  4424. ></rect>
  4425. <rect
  4426. x="1268.007"
  4427. y="275.904"
  4428. :fill="ajaxData.pl1dlq316 ? red : green"
  4429. width="15.462"
  4430. height="24.008"
  4431. ></rect>
  4432. <rect
  4433. x="1590.415"
  4434. y="275.904"
  4435. :fill="ajaxData.pl1dlq317 ? red : green"
  4436. width="15.463"
  4437. height="24.008"
  4438. ></rect>
  4439. <rect
  4440. x="329.938"
  4441. y="645.885"
  4442. :fill="ajaxData.pL1dlq01 ? red : green"
  4443. width="14.25"
  4444. height="35.774"
  4445. ></rect>
  4446. <rect
  4447. x="396.188"
  4448. y="645.885"
  4449. :fill="ajaxData.pL1dlq02 ? red : green"
  4450. width="14.25"
  4451. height="35.774"
  4452. ></rect>
  4453. <rect
  4454. x="451.96"
  4455. y="645.885"
  4456. :fill="ajaxData.pL1dlq03 ? red : green"
  4457. width="14.25"
  4458. height="35.774"
  4459. ></rect>
  4460. <rect
  4461. x="518.21"
  4462. y="645.885"
  4463. :fill="ajaxData.pL1dlq04 ? red : green"
  4464. width="14.25"
  4465. height="35.774"
  4466. ></rect>
  4467. <rect
  4468. x="594.005"
  4469. y="645.885"
  4470. :fill="ajaxData.pL1dlq05 ? red : green"
  4471. width="14.25"
  4472. height="35.774"
  4473. ></rect>
  4474. <rect
  4475. x="660.255"
  4476. y="645.885"
  4477. :fill="ajaxData.pL1dlq06 ? red : green"
  4478. width="14.25"
  4479. height="35.774"
  4480. ></rect>
  4481. <rect
  4482. x="716.027"
  4483. y="645.885"
  4484. :fill="ajaxData.pL1dlq07 ? red : green"
  4485. width="14.25"
  4486. height="35.774"
  4487. ></rect>
  4488. <rect
  4489. x="782.277"
  4490. y="645.885"
  4491. :fill="ajaxData.pL1dlq08 ? red : green"
  4492. width="14.25"
  4493. height="35.774"
  4494. ></rect>
  4495. <rect
  4496. x="858.325"
  4497. y="645.885"
  4498. :fill="ajaxData.pL1dlq09 ? red : green"
  4499. width="14.25"
  4500. height="35.774"
  4501. ></rect>
  4502. <rect
  4503. x="924.575"
  4504. y="645.885"
  4505. :fill="ajaxData.pL1dlq10 ? red : green"
  4506. width="14.25"
  4507. height="35.774"
  4508. ></rect>
  4509. <rect
  4510. x="980.348"
  4511. y="645.885"
  4512. :fill="ajaxData.pL1dlq11 ? red : green"
  4513. width="14.25"
  4514. height="35.774"
  4515. ></rect>
  4516. <rect
  4517. x="1046.598"
  4518. y="645.885"
  4519. :fill="ajaxData.pL1dlq12 ? red : green"
  4520. width="14.25"
  4521. height="35.774"
  4522. ></rect>
  4523. <rect
  4524. x="1113.615"
  4525. y="645.885"
  4526. :fill="ajaxData.pL1dlq13 ? red : green"
  4527. width="14.25"
  4528. height="35.774"
  4529. ></rect>
  4530. <rect
  4531. x="1179.865"
  4532. y="645.885"
  4533. :fill="ajaxData.pL1dlq14 ? red : green"
  4534. width="14.25"
  4535. height="35.774"
  4536. ></rect>
  4537. <rect
  4538. x="1235.801"
  4539. y="645.885"
  4540. :fill="ajaxData.pL1dlq15 ? red : green"
  4541. width="14.25"
  4542. height="35.774"
  4543. ></rect>
  4544. <rect
  4545. x="1302.051"
  4546. y="645.885"
  4547. :fill="ajaxData.pL1dlq16 ? red : green"
  4548. width="14.25"
  4549. height="35.774"
  4550. ></rect>
  4551. <rect
  4552. x="1495.021"
  4553. y="645.885"
  4554. :fill="ajaxData.pL1dlq17 ? red : green"
  4555. width="14.25"
  4556. height="35.774"
  4557. ></rect>
  4558. <rect
  4559. x="1561.271"
  4560. y="645.885"
  4561. :fill="ajaxData.pL1dlq18 ? red : green"
  4562. width="14.25"
  4563. height="35.774"
  4564. ></rect>
  4565. <rect
  4566. x="1651.781"
  4567. y="644.54"
  4568. :fill="ajaxData.pL1dlq19 ? red : green"
  4569. width="14.25"
  4570. height="35.777"
  4571. ></rect>
  4572. </g>
  4573. <g id="block">
  4574. <g>
  4575. <polyline
  4576. fill="none"
  4577. :stroke="ajaxData.pl1sc310 ? red : green"
  4578. stroke-miterlimit="10"
  4579. points="579.348,162.623 572.523,170.344 565.504,162.623 "
  4580. ></polyline>
  4581. <polyline
  4582. fill="none"
  4583. :stroke="ajaxData.pl1sc310 ? red : green"
  4584. stroke-miterlimit="10"
  4585. points="579.348,156.773 572.523,164.491 565.504,156.773 "
  4586. ></polyline>
  4587. <polyline
  4588. fill="none"
  4589. :stroke="ajaxData.pl1sc310 ? red : green"
  4590. stroke-miterlimit="10"
  4591. points="565.504,120.33 572.327,112.608 579.348,120.33 "
  4592. ></polyline>
  4593. <polyline
  4594. fill="none"
  4595. :stroke="ajaxData.pl1sc310 ? red : green"
  4596. stroke-miterlimit="10"
  4597. points="565.504,125.107 572.327,117.385 579.348,125.107 "
  4598. ></polyline>
  4599. </g>
  4600. <g>
  4601. <polyline
  4602. fill="none"
  4603. :stroke="ajaxData.pl1sc318 ? red : green"
  4604. stroke-width="1.3"
  4605. stroke-miterlimit="10"
  4606. points="1283.591,163.623 1276.768,171.344 1269.747,163.623 "
  4607. ></polyline>
  4608. <polyline
  4609. fill="none"
  4610. :stroke="ajaxData.pl1sc318 ? red : green"
  4611. stroke-width="1.3"
  4612. stroke-miterlimit="10"
  4613. points="1283.591,157.773 1276.768,165.491 1269.747,157.773 "
  4614. ></polyline>
  4615. <polyline
  4616. fill="none"
  4617. :stroke="ajaxData.pl1sc318 ? red : green"
  4618. stroke-width="1.3"
  4619. stroke-miterlimit="10"
  4620. points="1269.747,121.33 1276.572,113.608 1283.591,121.33 "
  4621. ></polyline>
  4622. <polyline
  4623. fill="none"
  4624. :stroke="ajaxData.pl1sc318 ? red : green"
  4625. stroke-width="1.3"
  4626. stroke-miterlimit="10"
  4627. points="1269.747,126.107 1276.572,118.385 1283.591,126.107 "
  4628. ></polyline>
  4629. </g>
  4630. <g>
  4631. <polyline
  4632. fill="none"
  4633. :stroke="ajaxData.pl1sc312 ? red : green"
  4634. stroke-miterlimit="10"
  4635. points="161.779,266.95 168.602,259.231 175.622,266.95 "
  4636. ></polyline>
  4637. <polyline
  4638. fill="none"
  4639. :stroke="ajaxData.pl1sc312 ? red : green"
  4640. stroke-miterlimit="10"
  4641. points="161.779,272.802 168.602,265.082 175.622,272.802 "
  4642. ></polyline>
  4643. <polyline
  4644. fill="none"
  4645. :stroke="ajaxData.pl1sc312 ? red : green"
  4646. stroke-miterlimit="10"
  4647. points="175.622,309.242 168.799,316.967 161.779,309.242 "
  4648. ></polyline>
  4649. <polyline
  4650. fill="none"
  4651. :stroke="ajaxData.pl1sc312 ? red : green"
  4652. stroke-miterlimit="10"
  4653. points="175.622,304.468 168.799,312.189 161.779,304.468 "
  4654. ></polyline>
  4655. </g>
  4656. <g>
  4657. <polyline
  4658. fill="none"
  4659. :stroke="ajaxData.pl1sc313 ? red : green"
  4660. stroke-miterlimit="10"
  4661. points="425.779,266.95 432.602,259.231 439.621,266.95 "
  4662. ></polyline>
  4663. <polyline
  4664. fill="none"
  4665. :stroke="ajaxData.pl1sc313 ? red : green"
  4666. stroke-miterlimit="10"
  4667. points="425.779,272.802 432.602,265.082 439.621,272.802 "
  4668. ></polyline>
  4669. <polyline
  4670. fill="none"
  4671. :stroke="ajaxData.pl1sc313 ? red : green"
  4672. stroke-miterlimit="10"
  4673. points="439.621,309.242 432.799,316.967 425.779,309.242 "
  4674. ></polyline>
  4675. <polyline
  4676. fill="none"
  4677. :stroke="ajaxData.pl1sc313 ? red : green"
  4678. stroke-miterlimit="10"
  4679. points="439.621,304.468 432.799,312.189 425.779,304.468 "
  4680. ></polyline>
  4681. </g>
  4682. <g>
  4683. <polyline
  4684. fill="none"
  4685. :stroke="ajaxData.pl1sc314 ? red : green"
  4686. stroke-miterlimit="10"
  4687. points="689.846,266.95 696.669,259.231 703.689,266.95 "
  4688. ></polyline>
  4689. <polyline
  4690. fill="none"
  4691. :stroke="ajaxData.pl1sc314 ? red : green"
  4692. stroke-miterlimit="10"
  4693. points="689.846,272.802 696.669,265.082 703.689,272.802 "
  4694. ></polyline>
  4695. <polyline
  4696. fill="none"
  4697. :stroke="ajaxData.pl1sc314 ? red : green"
  4698. stroke-miterlimit="10"
  4699. points="703.689,309.242 696.865,316.967 689.846,309.242 "
  4700. ></polyline>
  4701. <polyline
  4702. fill="none"
  4703. :stroke="ajaxData.pl1sc314 ? red : green"
  4704. stroke-miterlimit="10"
  4705. points="703.689,304.468 696.865,312.189 689.846,304.468 "
  4706. ></polyline>
  4707. </g>
  4708. <g>
  4709. <polyline
  4710. fill="none"
  4711. :stroke="ajaxData.pl1sc315 ? red : green"
  4712. stroke-miterlimit="10"
  4713. points="954.167,266.95 960.99,259.231 968.01,266.95 "
  4714. ></polyline>
  4715. <polyline
  4716. fill="none"
  4717. :stroke="ajaxData.pl1sc315 ? red : green"
  4718. stroke-miterlimit="10"
  4719. points="954.167,272.802 960.99,265.082 968.01,272.802 "
  4720. ></polyline>
  4721. <polyline
  4722. fill="none"
  4723. :stroke="ajaxData.pl1sc315 ? red : green"
  4724. stroke-miterlimit="10"
  4725. points="968.01,309.242 961.188,316.967 954.167,309.242 "
  4726. ></polyline>
  4727. <polyline
  4728. fill="none"
  4729. :stroke="ajaxData.pl1sc315 ? red : green"
  4730. stroke-miterlimit="10"
  4731. points="968.01,304.468 961.188,312.189 954.167,304.468 "
  4732. ></polyline>
  4733. </g>
  4734. <g>
  4735. <polyline
  4736. fill="none"
  4737. :stroke="ajaxData.pl1sc316 ? red : green"
  4738. stroke-miterlimit="10"
  4739. points="1268.453,266.95 1275.277,259.231 1282.297,266.95 "
  4740. ></polyline>
  4741. <polyline
  4742. fill="none"
  4743. :stroke="ajaxData.pl1sc316 ? red : green"
  4744. stroke-miterlimit="10"
  4745. points="1268.453,272.802 1275.277,265.082 1282.297,272.802 "
  4746. ></polyline>
  4747. <polyline
  4748. fill="none"
  4749. :stroke="ajaxData.pl1sc316 ? red : green"
  4750. stroke-miterlimit="10"
  4751. points="1282.297,309.242 1275.475,316.967 1268.453,309.242 "
  4752. ></polyline>
  4753. <polyline
  4754. fill="none"
  4755. :stroke="ajaxData.pl1sc316 ? red : green"
  4756. stroke-miterlimit="10"
  4757. points="1282.297,304.468 1275.475,312.189 1268.453,304.468 "
  4758. ></polyline>
  4759. </g>
  4760. <g>
  4761. <polyline
  4762. fill="none"
  4763. :stroke="ajaxData.pl1sc317 ? red : green"
  4764. stroke-miterlimit="10"
  4765. points="1590.862,266.95 1597.686,259.231 1604.706,266.95 "
  4766. ></polyline>
  4767. <polyline
  4768. fill="none"
  4769. :stroke="ajaxData.pl1sc317 ? red : green"
  4770. stroke-miterlimit="10"
  4771. points="1590.862,272.802 1597.686,265.082 1604.706,272.802 "
  4772. ></polyline>
  4773. <polyline
  4774. fill="none"
  4775. :stroke="ajaxData.pl1sc317 ? red : green"
  4776. stroke-miterlimit="10"
  4777. points="1604.706,309.242 1597.881,316.967 1590.862,309.242 "
  4778. ></polyline>
  4779. <polyline
  4780. fill="none"
  4781. :stroke="ajaxData.pl1sc317 ? red : green"
  4782. stroke-miterlimit="10"
  4783. points="1604.706,304.468 1597.881,312.189 1590.862,304.468 "
  4784. ></polyline>
  4785. </g>
  4786. </g>
  4787. <g id="data">
  4788. <g>
  4789. <text
  4790. transform="matrix(1 0 0 1 150.9871 155.4553)"
  4791. fill="#1A823B"
  4792. font-family="'MicrosoftYaHei'"
  4793. font-size="9.463"
  4794. >
  4795. -.--
  4796. </text>
  4797. <text
  4798. transform="matrix(1 0 0 1 150.9875 114.092)"
  4799. fill="#1A823B"
  4800. font-family="'MicrosoftYaHei'"
  4801. font-size="9.463"
  4802. >
  4803. -.--
  4804. </text>
  4805. <text
  4806. transform="matrix(1 0 0 1 150.9871 134.7874)"
  4807. fill="#1A823B"
  4808. font-family="'MicrosoftYaHei'"
  4809. font-size="9.463"
  4810. >
  4811. -.--
  4812. </text>
  4813. <text
  4814. transform="matrix(1 0 0 1 150.9871 175.9592)"
  4815. fill="#1A823B"
  4816. font-family="'MicrosoftYaHei'"
  4817. font-size="9.463"
  4818. >
  4819. -.--
  4820. </text>
  4821. </g>
  4822. <g>
  4823. <text
  4824. transform="matrix(1 0 0 1 752.262 119.8499)"
  4825. fill="#1A823B"
  4826. font-family="'MicrosoftYaHei'"
  4827. font-size="9.463"
  4828. >
  4829. {{ ajaxData.pl1laayt }}
  4830. </text>
  4831. <text
  4832. transform="matrix(1 0 0 1 752.2615 139.5452)"
  4833. fill="#1A823B"
  4834. font-family="'MicrosoftYaHei'"
  4835. font-size="9.463"
  4836. >
  4837. {{ ajaxData.pl1pkwyt }}
  4838. </text>
  4839. <text
  4840. transform="matrix(1 0 0 1 752.2615 160.2112)"
  4841. fill="#1A823B"
  4842. font-family="'MicrosoftYaHei'"
  4843. font-size="9.463"
  4844. >
  4845. {{ ajaxData.pl1qkvaryt }}
  4846. </text>
  4847. <text
  4848. transform="matrix(1 0 0 1 752.2615 180.7151)"
  4849. fill="#1A823B"
  4850. font-family="'MicrosoftYaHei'"
  4851. font-size="9.463"
  4852. >
  4853. {{ ajaxData.pl1cosyt }}
  4854. </text>
  4855. </g>
  4856. <g>
  4857. <text
  4858. transform="matrix(1 0 0 1 1368.6311 109.6018)"
  4859. fill="#1A823B"
  4860. font-family="'MicrosoftYaHei'"
  4861. font-size="9.463"
  4862. >
  4863. {{ ajaxData.pl1laawg }}
  4864. </text>
  4865. <text
  4866. transform="matrix(1 0 0 1 1368.6311 129.2971)"
  4867. fill="#1A823B"
  4868. font-family="'MicrosoftYaHei'"
  4869. font-size="9.463"
  4870. >
  4871. {{ ajaxData.pl1pkwwg }}
  4872. </text>
  4873. <text
  4874. transform="matrix(1 0 0 1 1368.6311 149.9651)"
  4875. fill="#1A823B"
  4876. font-family="'MicrosoftYaHei'"
  4877. font-size="9.463"
  4878. >
  4879. {{ ajaxData.pl1qkvarwg }}
  4880. </text>
  4881. <text
  4882. transform="matrix(1 0 0 1 1368.6311 170.469)"
  4883. fill="#1A823B"
  4884. font-family="'MicrosoftYaHei'"
  4885. font-size="9.463"
  4886. >
  4887. {{ ajaxData.pl1coswg }}
  4888. </text>
  4889. </g>
  4890. <g>
  4891. <text
  4892. transform="matrix(1 0 0 1 251.8352 278.092)"
  4893. fill="#1A823B"
  4894. font-family="'MicrosoftYaHei'"
  4895. font-size="9.463"
  4896. >
  4897. {{ ajaxData.pl1blaacy }}
  4898. </text>
  4899. <text
  4900. transform="matrix(1 0 0 1 251.8347 296.7874)"
  4901. fill="#1A823B"
  4902. font-family="'MicrosoftYaHei'"
  4903. font-size="9.463"
  4904. >
  4905. {{ ajaxData.pl1bpcy }}
  4906. </text>
  4907. <text
  4908. transform="matrix(1 0 0 1 251.8347 317.4553)"
  4909. fill="#1A823B"
  4910. font-family="'MicrosoftYaHei'"
  4911. font-size="9.463"
  4912. >
  4913. {{ ajaxData.pl1bqcy }}
  4914. </text>
  4915. <text
  4916. transform="matrix(1 0 0 1 251.8347 337.9592)"
  4917. fill="#1A823B"
  4918. font-family="'MicrosoftYaHei'"
  4919. font-size="9.463"
  4920. >
  4921. {{ ajaxData.pl1bcoscy }}
  4922. </text>
  4923. </g>
  4924. <g>
  4925. <text
  4926. transform="matrix(1 0 0 1 519.3879 278.8108)"
  4927. fill="#1A823B"
  4928. font-family="'MicrosoftYaHei'"
  4929. font-size="9.463"
  4930. >
  4931. {{ ajaxData.pl1laagf1 }}
  4932. </text>
  4933. <text
  4934. transform="matrix(1 0 0 1 519.3875 297.5061)"
  4935. fill="#1A823B"
  4936. font-family="'MicrosoftYaHei'"
  4937. font-size="9.463"
  4938. >
  4939. {{ ajaxData.pl1pkwgf1 }}
  4940. </text>
  4941. <text
  4942. transform="matrix(1 0 0 1 519.3875 318.1741)"
  4943. fill="#1A823B"
  4944. font-family="'MicrosoftYaHei'"
  4945. font-size="9.463"
  4946. >
  4947. {{ ajaxData.pl1qkvargf1 }}
  4948. </text>
  4949. <text
  4950. transform="matrix(1 0 0 1 519.3875 338.678)"
  4951. fill="#1A823B"
  4952. font-family="'MicrosoftYaHei'"
  4953. font-size="9.463"
  4954. >
  4955. {{ ajaxData.pl1cosgf1 }}
  4956. </text>
  4957. </g>
  4958. <g>
  4959. <text
  4960. transform="matrix(1 0 0 1 778.0662 278.8108)"
  4961. fill="#1A823B"
  4962. font-family="'MicrosoftYaHei'"
  4963. font-size="9.463"
  4964. >
  4965. {{ ajaxData.pl1laagf2 }}
  4966. </text>
  4967. <text
  4968. transform="matrix(1 0 0 1 778.0657 297.5061)"
  4969. fill="#1A823B"
  4970. font-family="'MicrosoftYaHei'"
  4971. font-size="9.463"
  4972. >
  4973. {{ ajaxData.pl1pkwgf2 }}
  4974. </text>
  4975. <text
  4976. transform="matrix(1 0 0 1 778.0657 318.1741)"
  4977. fill="#1A823B"
  4978. font-family="'MicrosoftYaHei'"
  4979. font-size="9.463"
  4980. >
  4981. {{ ajaxData.pl1qkvargf2 }}
  4982. </text>
  4983. <text
  4984. transform="matrix(1 0 0 1 778.0657 338.678)"
  4985. fill="#1A823B"
  4986. font-family="'MicrosoftYaHei'"
  4987. font-size="9.463"
  4988. >
  4989. {{ ajaxData.pl1cosgf2 }}
  4990. </text>
  4991. </g>
  4992. <g>
  4993. <text
  4994. transform="matrix(1 0 0 1 1053.7756 279.8147)"
  4995. fill="#1A823B"
  4996. font-family="'MicrosoftYaHei'"
  4997. font-size="9.463"
  4998. >
  4999. {{ ajaxData.pl1laagf3 }}
  5000. </text>
  5001. <text
  5002. transform="matrix(1 0 0 1 1053.7756 298.51)"
  5003. fill="#1A823B"
  5004. font-family="'MicrosoftYaHei'"
  5005. font-size="9.463"
  5006. >
  5007. {{ ajaxData.pl1pkwgf3 }}
  5008. </text>
  5009. <text
  5010. transform="matrix(1 0 0 1 1053.7756 319.176)"
  5011. fill="#1A823B"
  5012. font-family="'MicrosoftYaHei'"
  5013. font-size="9.463"
  5014. >
  5015. {{ ajaxData.pl1qkvargf3 }}
  5016. </text>
  5017. <text
  5018. transform="matrix(1 0 0 1 1053.7756 339.6799)"
  5019. fill="#1A823B"
  5020. font-family="'MicrosoftYaHei'"
  5021. font-size="9.463"
  5022. >
  5023. {{ ajaxData.pl1cosgf3 }}
  5024. </text>
  5025. </g>
  5026. <g>
  5027. <text
  5028. transform="matrix(1 0 0 1 1360.9846 279.8147)"
  5029. fill="#1A823B"
  5030. font-family="'MicrosoftYaHei'"
  5031. font-size="9.463"
  5032. >
  5033. {{ ajaxData.pl1laagf4 }}
  5034. </text>
  5035. <text
  5036. transform="matrix(1 0 0 1 1360.9846 298.51)"
  5037. fill="#1A823B"
  5038. font-family="'MicrosoftYaHei'"
  5039. font-size="9.463"
  5040. >
  5041. {{ ajaxData.pl1pkwgf4 }}
  5042. </text>
  5043. <text
  5044. transform="matrix(1 0 0 1 1360.9846 319.176)"
  5045. fill="#1A823B"
  5046. font-family="'MicrosoftYaHei'"
  5047. font-size="9.463"
  5048. >
  5049. {{ ajaxData.pl1qkvargf4 }}
  5050. </text>
  5051. <text
  5052. transform="matrix(1 0 0 1 1360.9846 339.6799)"
  5053. fill="#1A823B"
  5054. font-family="'MicrosoftYaHei'"
  5055. font-size="9.463"
  5056. >
  5057. {{ ajaxData.pl1cosgf4 }}
  5058. </text>
  5059. </g>
  5060. <g>
  5061. <text
  5062. transform="matrix(1 0 0 1 1700.4709 277.8147)"
  5063. fill="#1A823B"
  5064. font-family="'MicrosoftYaHei'"
  5065. font-size="9.463"
  5066. >
  5067. {{ ajaxData.pl1laagf5 }}
  5068. </text>
  5069. <text
  5070. transform="matrix(1 0 0 1 1700.4709 298.51)"
  5071. fill="#1A823B"
  5072. font-family="'MicrosoftYaHei'"
  5073. font-size="9.463"
  5074. >
  5075. {{ ajaxData.pl1pkwgf5 }}
  5076. </text>
  5077. <text
  5078. transform="matrix(1 0 0 1 1700.4709 319.176)"
  5079. fill="#1A823B"
  5080. font-family="'MicrosoftYaHei'"
  5081. font-size="9.463"
  5082. >
  5083. {{ ajaxData.pl1qkvargf5 }}
  5084. </text>
  5085. <text
  5086. transform="matrix(1 0 0 1 1700.4709 339.6799)"
  5087. fill="#1A823B"
  5088. font-family="'MicrosoftYaHei'"
  5089. font-size="9.463"
  5090. >
  5091. {{ ajaxData.pl1cosgf5 }}
  5092. </text>
  5093. </g>
  5094. <g>
  5095. <text
  5096. transform="matrix(1 0 0 1 319.9377 772.4983)"
  5097. fill="#FFFFFF"
  5098. font-family="'MicrosoftYaHei'"
  5099. font-size="11.6452"
  5100. >
  5101. {{ ajaxData.pl1srdy01 }}
  5102. </text>
  5103. <text
  5104. transform="matrix(1 0 0 1 387.1877 772.4983)"
  5105. fill="#FFFFFF"
  5106. font-family="'MicrosoftYaHei'"
  5107. font-size="11.6452"
  5108. >
  5109. {{ ajaxData.pl1srdy02 }}
  5110. </text>
  5111. <text
  5112. transform="matrix(1 0 0 1 441.9602 772.4983)"
  5113. fill="#FFFFFF"
  5114. font-family="'MicrosoftYaHei'"
  5115. font-size="11.6452"
  5116. >
  5117. {{ ajaxData.pl1srdy03 }}
  5118. </text>
  5119. <text
  5120. transform="matrix(1 0 0 1 509.2102 772.4983)"
  5121. fill="#FFFFFF"
  5122. font-family="'MicrosoftYaHei'"
  5123. font-size="11.6452"
  5124. >
  5125. {{ ajaxData.pl1srdy04 }}
  5126. </text>
  5127. <text
  5128. transform="matrix(1 0 0 1 585.7434 772.4983)"
  5129. fill="#FFFFFF"
  5130. font-family="'MicrosoftYaHei'"
  5131. font-size="11.6452"
  5132. >
  5133. {{ ajaxData.pl1srdy05 }}
  5134. </text>
  5135. <text
  5136. transform="matrix(1 0 0 1 652.9934 772.4983)"
  5137. fill="#FFFFFF"
  5138. font-family="'MicrosoftYaHei'"
  5139. font-size="11.6452"
  5140. >
  5141. {{ ajaxData.pl1srdy06 }}
  5142. </text>
  5143. <text
  5144. transform="matrix(1 0 0 1 711.7659 772.4983)"
  5145. fill="#FFFFFF"
  5146. font-family="'MicrosoftYaHei'"
  5147. font-size="11.6452"
  5148. >
  5149. {{ ajaxData.pl1srdy07 }}
  5150. </text>
  5151. <text
  5152. transform="matrix(1 0 0 1 779.0159 772.4983)"
  5153. fill="#FFFFFF"
  5154. font-family="'MicrosoftYaHei'"
  5155. font-size="11.6452"
  5156. >
  5157. {{ ajaxData.pl1srdy08 }}
  5158. </text>
  5159. <text
  5160. transform="matrix(1 0 0 1 850.4915 772.4983)"
  5161. fill="#FFFFFF"
  5162. font-family="'MicrosoftYaHei'"
  5163. font-size="11.6452"
  5164. >
  5165. {{ ajaxData.pl1srdy09 }}
  5166. </text>
  5167. <text
  5168. transform="matrix(1 0 0 1 917.7415 772.4983)"
  5169. fill="#FFFFFF"
  5170. font-family="'MicrosoftYaHei'"
  5171. font-size="11.6452"
  5172. >
  5173. {{ ajaxData.pl1srdy10 }}
  5174. </text>
  5175. <text
  5176. transform="matrix(1 0 0 1 976.5139 772.4983)"
  5177. fill="#FFFFFF"
  5178. font-family="'MicrosoftYaHei'"
  5179. font-size="11.6452"
  5180. >
  5181. {{ ajaxData.pl1srdy11 }}
  5182. </text>
  5183. <text
  5184. transform="matrix(1 0 0 1 1039.7639 772.4983)"
  5185. fill="#FFFFFF"
  5186. font-family="'MicrosoftYaHei'"
  5187. font-size="11.6452"
  5188. >
  5189. {{ ajaxData.pl1srdy12 }}
  5190. </text>
  5191. <text
  5192. transform="matrix(1 0 0 1 1107.2639 772.4983)"
  5193. fill="#FFFFFF"
  5194. font-family="'MicrosoftYaHei'"
  5195. font-size="11.6452"
  5196. >
  5197. {{ ajaxData.pl1srdy13 }}
  5198. </text>
  5199. <text
  5200. transform="matrix(1 0 0 1 1175.7639 772.4983)"
  5201. fill="#FFFFFF"
  5202. font-family="'MicrosoftYaHei'"
  5203. font-size="11.6452"
  5204. >
  5205. {{ ajaxData.pl1srdy14 }}
  5206. </text>
  5207. <text
  5208. transform="matrix(1 0 0 1 1239.7639 772.4983)"
  5209. fill="#FFFFFF"
  5210. font-family="'MicrosoftYaHei'"
  5211. font-size="11.6452"
  5212. >
  5213. {{ ajaxData.pl1srdy15 }}
  5214. </text>
  5215. <text
  5216. transform="matrix(1 0 0 1 1298.7639 772.4983)"
  5217. fill="#FFFFFF"
  5218. font-family="'MicrosoftYaHei'"
  5219. font-size="11.6452"
  5220. >
  5221. {{ ajaxData.pl1srdy16 }}
  5222. </text>
  5223. <text
  5224. transform="matrix(1 0 0 1 1496.7639 772.4983)"
  5225. fill="#FFFFFF"
  5226. font-family="'MicrosoftYaHei'"
  5227. font-size="11.6452"
  5228. >
  5229. {{ ajaxData.pl1srdy17 }}
  5230. </text>
  5231. <text
  5232. transform="matrix(1 0 0 1 1557.7639 772.4983)"
  5233. fill="#FFFFFF"
  5234. font-family="'MicrosoftYaHei'"
  5235. font-size="11.6452"
  5236. >
  5237. {{ ajaxData.pl1srdy18 }}
  5238. </text>
  5239. <text
  5240. transform="matrix(1 0 0 1 1651.2639 772.4983)"
  5241. fill="#FFFFFF"
  5242. font-family="'MicrosoftYaHei'"
  5243. font-size="11.6452"
  5244. >
  5245. {{ ajaxData.pl1srdy19 }}
  5246. </text>
  5247. <text
  5248. transform="matrix(1 0 0 1 319.9377 824.9983)"
  5249. fill="#FFFFFF"
  5250. font-family="'MicrosoftYaHei'"
  5251. font-size="11.6452"
  5252. >
  5253. {{ ajaxData.pl1scgl01 }}
  5254. </text>
  5255. <text
  5256. transform="matrix(1 0 0 1 387.1877 824.9983)"
  5257. fill="#FFFFFF"
  5258. font-family="'MicrosoftYaHei'"
  5259. font-size="11.6452"
  5260. >
  5261. {{ ajaxData.pl1scgl02 }}
  5262. </text>
  5263. <text
  5264. transform="matrix(1 0 0 1 441.9602 824.9983)"
  5265. fill="#FFFFFF"
  5266. font-family="'MicrosoftYaHei'"
  5267. font-size="11.6452"
  5268. >
  5269. {{ ajaxData.pl1scgl03 }}
  5270. </text>
  5271. <text
  5272. transform="matrix(1 0 0 1 509.2102 824.9983)"
  5273. fill="#FFFFFF"
  5274. font-family="'MicrosoftYaHei'"
  5275. font-size="11.6452"
  5276. >
  5277. {{ ajaxData.pl1scgl04 }}
  5278. </text>
  5279. <text
  5280. transform="matrix(1 0 0 1 585.7434 824.9983)"
  5281. fill="#FFFFFF"
  5282. font-family="'MicrosoftYaHei'"
  5283. font-size="11.6452"
  5284. >
  5285. {{ ajaxData.pl1scgl05 }}
  5286. </text>
  5287. <text
  5288. transform="matrix(1 0 0 1 652.9934 824.9983)"
  5289. fill="#FFFFFF"
  5290. font-family="'MicrosoftYaHei'"
  5291. font-size="11.6452"
  5292. >
  5293. {{ ajaxData.pl1scgl06 }}
  5294. </text>
  5295. <text
  5296. transform="matrix(1 0 0 1 711.7659 824.9983)"
  5297. fill="#FFFFFF"
  5298. font-family="'MicrosoftYaHei'"
  5299. font-size="11.6452"
  5300. >
  5301. {{ ajaxData.pl1scgl07 }}
  5302. </text>
  5303. <text
  5304. transform="matrix(1 0 0 1 779.0159 824.9983)"
  5305. fill="#FFFFFF"
  5306. font-family="'MicrosoftYaHei'"
  5307. font-size="11.6452"
  5308. >
  5309. {{ ajaxData.pl1scgl08 }}
  5310. </text>
  5311. <text
  5312. transform="matrix(1 0 0 1 850.4915 824.9983)"
  5313. fill="#FFFFFF"
  5314. font-family="'MicrosoftYaHei'"
  5315. font-size="11.6452"
  5316. >
  5317. {{ ajaxData.pl1scgl09 }}
  5318. </text>
  5319. <text
  5320. transform="matrix(1 0 0 1 917.7415 824.9983)"
  5321. fill="#FFFFFF"
  5322. font-family="'MicrosoftYaHei'"
  5323. font-size="11.6452"
  5324. >
  5325. {{ ajaxData.pl1scgl10 }}
  5326. </text>
  5327. <text
  5328. transform="matrix(1 0 0 1 976.5139 824.9983)"
  5329. fill="#FFFFFF"
  5330. font-family="'MicrosoftYaHei'"
  5331. font-size="11.6452"
  5332. >
  5333. {{ ajaxData.pl1scgl11 }}
  5334. </text>
  5335. <text
  5336. transform="matrix(1 0 0 1 1039.7639 824.9983)"
  5337. fill="#FFFFFF"
  5338. font-family="'MicrosoftYaHei'"
  5339. font-size="11.6452"
  5340. >
  5341. {{ ajaxData.pl1scgl12 }}
  5342. </text>
  5343. <text
  5344. transform="matrix(1 0 0 1 1107.2639 824.9983)"
  5345. fill="#FFFFFF"
  5346. font-family="'MicrosoftYaHei'"
  5347. font-size="11.6452"
  5348. >
  5349. {{ ajaxData.pl1scgl13 }}
  5350. </text>
  5351. <text
  5352. transform="matrix(1 0 0 1 1175.7639 824.9983)"
  5353. fill="#FFFFFF"
  5354. font-family="'MicrosoftYaHei'"
  5355. font-size="11.6452"
  5356. >
  5357. {{ ajaxData.pl1scgl14 }}
  5358. </text>
  5359. <text
  5360. transform="matrix(1 0 0 1 1239.7639 824.9983)"
  5361. fill="#FFFFFF"
  5362. font-family="'MicrosoftYaHei'"
  5363. font-size="11.6452"
  5364. >
  5365. {{ ajaxData.pl1scgl15 }}
  5366. </text>
  5367. <text
  5368. transform="matrix(1 0 0 1 1298.7639 824.9983)"
  5369. fill="#FFFFFF"
  5370. font-family="'MicrosoftYaHei'"
  5371. font-size="11.6452"
  5372. >
  5373. {{ ajaxData.pl1scgl16 }}
  5374. </text>
  5375. <text
  5376. transform="matrix(1 0 0 1 1496.7639 824.9983)"
  5377. fill="#FFFFFF"
  5378. font-family="'MicrosoftYaHei'"
  5379. font-size="11.6452"
  5380. >
  5381. {{ ajaxData.pl1scgl17 }}
  5382. </text>
  5383. <text
  5384. transform="matrix(1 0 0 1 1557.7639 824.9983)"
  5385. fill="#FFFFFF"
  5386. font-family="'MicrosoftYaHei'"
  5387. font-size="11.6452"
  5388. >
  5389. {{ ajaxData.pl1scgl18 }}
  5390. </text>
  5391. <text
  5392. transform="matrix(1 0 0 1 1651.2639 824.9983)"
  5393. fill="#FFFFFF"
  5394. font-family="'MicrosoftYaHei'"
  5395. font-size="11.6452"
  5396. >
  5397. {{ ajaxData.pl1scgl19 }}
  5398. </text>
  5399. </g>
  5400. </g>
  5401. </svg>
  5402. </template>
  5403. </previewPicture>
  5404. </el-col>
  5405. </el-row>
  5406. </div>
  5407. </template>
  5408. <script>
  5409. import previewPicture from "../previewPicture.vue";
  5410. import { BoosterStation } from "./BoosterStation";
  5411. export default {
  5412. components: {
  5413. previewPicture,
  5414. },
  5415. data() {
  5416. return {
  5417. green: "#02A434",
  5418. red: "#FF0000",
  5419. ajaxData: {},
  5420. interval: "",
  5421. };
  5422. },
  5423. created() {
  5424. this.boosterStation = new BoosterStation();
  5425. this.refreshTPData();
  5426. this.interval = setInterval(this.refreshTPData, 1000);
  5427. },
  5428. methods: {
  5429. closed() {
  5430. clearInterval(this.interval);
  5431. },
  5432. refreshTPData() {
  5433. this.boosterStation.getDatas("PL1_GDC", this.bindValue);
  5434. },
  5435. bindValue(msg) {
  5436. this.ajaxData = msg;
  5437. },
  5438. },
  5439. };
  5440. </script>
  5441. <style scoped>
  5442. .center-bar {
  5443. position: relative;
  5444. box-sizing: border-box;
  5445. height: 90vh;
  5446. background-color: #000000;
  5447. padding-top: 10px;
  5448. padding-left: 5px;
  5449. padding-right: 5px;
  5450. padding-bottom: 5px;
  5451. margin-top: 0;
  5452. margin-right: 0;
  5453. margin-bottom: 3px;
  5454. margin-left: 0;
  5455. display: flex;
  5456. flex-direction: column;
  5457. }
  5458. .svg {
  5459. margin-left:5%;
  5460. width: 90%;
  5461. height: 90%;
  5462. }
  5463. </style>