mch.vue 142 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853
  1. <template>
  2. <div>
  3. <el-row :gutter="10">
  4. <el-col :span="24">
  5. <previewPicture>
  6. <template v-slot:svg>
  7. <svg class="svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
  8. version="1.1" id="图层_1" x="0px" y="0px" width="1852.996px" height="885.182px"
  9. viewBox="0 0 1852.996 885.182" enable-background="new 0 0 1852.996 885.182"
  10. xml:space="preserve">
  11. <g id="other">
  12. <rect x="160.681" y="410.729" opacity="0.9" fill="#162320" enable-background="new "
  13. width="66.022" height="18.491"></rect>
  14. <rect x="160.681" y="431.227" opacity="0.9" fill="#162320" enable-background="new "
  15. width="66.022" height="18.49"></rect>
  16. <rect x="160.681" y="451.723" opacity="0.9" fill="#162320" enable-background="new "
  17. width="66.022" height="18.49"></rect>
  18. <g>
  19. <text transform="matrix(1 0 0 1 166.5461 424.6797)" fill="#97A1A2"
  20. font-family="'MicrosoftYaHei'" font-size="11.3899">
  21. Ia:
  22. </text>
  23. </g>
  24. <g>
  25. <text transform="matrix(1 0 0 1 169.2209 443.0391)" fill="#97A1A2"
  26. font-family="'MicrosoftYaHei'" font-size="11.3899">
  27. P:
  28. </text>
  29. </g>
  30. <g>
  31. <text transform="matrix(1 0 0 1 166.9084 465.3252)" fill="#97A1A2"
  32. font-family="'MicrosoftYaHei'" font-size="11.3899">
  33. Q:
  34. </text>
  35. </g>
  36. <rect x="1631.309" y="123.066" opacity="0.9" fill="#162320" enable-background="new "
  37. width="115.109" height="18.491"></rect>
  38. <rect x="1631.309" y="143.563" opacity="0.9" fill="#162320" enable-background="new "
  39. width="115.109" height="18.49"></rect>
  40. <rect x="1631.309" y="164.06" opacity="0.9" fill="#162320" enable-background="new "
  41. width="115.109" height="18.49"></rect>
  42. <rect x="1631.309" y="184.556" opacity="0.9" fill="#162320" enable-background="new "
  43. width="115.109" height="18.49"></rect>
  44. <g>
  45. <text transform="matrix(1 0 0 1 1647.3845 137.0166)" fill="#97A1A2"
  46. font-family="'MicrosoftYaHei'" font-size="11.3899">
  47. Ua
  48. </text>
  49. <text transform="matrix(1 0 0 1 1662.1833 137.0166)" fill="#97A1A2"
  50. font-family="'MicrosoftYaHei'" font-size="9.6234">
  51. (KV)
  52. </text>
  53. <text transform="matrix(1 0 0 1 1681.2283 137.0166)" fill="#97A1A2"
  54. font-family="'MicrosoftYaHei'" font-size="11.3899">
  55. :
  56. </text>
  57. </g>
  58. <g>
  59. <text transform="matrix(1 0 0 1 1646.405 155.377)" fill="#97A1A2"
  60. font-family="'MicrosoftYaHei'" font-size="11.3899">
  61. Ub
  62. </text>
  63. <text transform="matrix(1 0 0 1 1662.1833 155.377)" fill="#97A1A2"
  64. font-family="'MicrosoftYaHei'" font-size="9.6234">
  65. (KV)
  66. </text>
  67. <text transform="matrix(1 0 0 1 1681.2283 155.377)" fill="#97A1A2"
  68. font-family="'MicrosoftYaHei'" font-size="11.3899">
  69. :
  70. </text>
  71. </g>
  72. <g>
  73. <text transform="matrix(1 0 0 1 1647.9685 177.6621)" fill="#97A1A2"
  74. font-family="'MicrosoftYaHei'" font-size="11.3899">
  75. Uc
  76. </text>
  77. <text transform="matrix(1 0 0 1 1662.1833 177.6621)" fill="#97A1A2"
  78. font-family="'MicrosoftYaHei'" font-size="9.6234">
  79. (KV)
  80. </text>
  81. <text transform="matrix(1 0 0 1 1681.2283 177.6621)" fill="#97A1A2"
  82. font-family="'MicrosoftYaHei'" font-size="11.3899">
  83. :
  84. </text>
  85. </g>
  86. <g>
  87. <text transform="matrix(1 0 0 1 1640.1091 198.4961)" fill="#97A1A2"
  88. font-family="'MicrosoftYaHei'" font-size="11.3899">
  89. Uab
  90. </text>
  91. <text transform="matrix(1 0 0 1 1662.1833 198.4961)" fill="#97A1A2"
  92. font-family="'MicrosoftYaHei'" font-size="9.6234">
  93. (KV)
  94. </text>
  95. <text transform="matrix(1 0 0 1 1681.2283 198.4961)" fill="#97A1A2"
  96. font-family="'MicrosoftYaHei'" font-size="11.3899">
  97. :
  98. </text>
  99. </g>
  100. <rect x="1631.309" y="205.056" opacity="0.9" fill="#162320" enable-background="new "
  101. width="115.109" height="18.49"></rect>
  102. <g>
  103. <text transform="matrix(1 0 0 1 1640.6931 218.9961)" fill="#97A1A2"
  104. font-family="'MicrosoftYaHei'" font-size="11.3899">
  105. Ubc
  106. </text>
  107. <text transform="matrix(1 0 0 1 1662.1833 218.9961)" fill="#97A1A2"
  108. font-family="'MicrosoftYaHei'" font-size="9.6234">
  109. (KV)
  110. </text>
  111. <text transform="matrix(1 0 0 1 1681.2283 218.9961)" fill="#97A1A2"
  112. font-family="'MicrosoftYaHei'" font-size="11.3899">
  113. :
  114. </text>
  115. </g>
  116. <rect x="1631.309" y="225.556" opacity="0.9" fill="#162320" enable-background="new "
  117. width="115.109" height="18.49"></rect>
  118. <g>
  119. <text transform="matrix(1 0 0 1 1641.6716 239.4961)" fill="#97A1A2"
  120. font-family="'MicrosoftYaHei'" font-size="11.3899">
  121. Uca
  122. </text>
  123. <text transform="matrix(1 0 0 1 1662.1833 239.4961)" fill="#97A1A2"
  124. font-family="'MicrosoftYaHei'" font-size="9.6234">
  125. (KV)
  126. </text>
  127. <text transform="matrix(1 0 0 1 1681.2283 239.4961)" fill="#97A1A2"
  128. font-family="'MicrosoftYaHei'" font-size="11.3899">
  129. :
  130. </text>
  131. </g>
  132. <rect x="3.865" y="123.066" opacity="0.9" fill="#162320" enable-background="new "
  133. width="115.11" height="18.491"></rect>
  134. <rect x="3.865" y="143.563" opacity="0.9" fill="#162320" enable-background="new "
  135. width="115.11" height="18.49"></rect>
  136. <rect x="3.865" y="164.06" opacity="0.9" fill="#162320" enable-background="new "
  137. width="115.11" height="18.49"></rect>
  138. <rect x="3.865" y="184.556" opacity="0.9" fill="#162320" enable-background="new "
  139. width="115.11" height="18.49"></rect>
  140. <g>
  141. <text transform="matrix(1 0 0 1 19.9407 137.0166)" fill="#97A1A2"
  142. font-family="'MicrosoftYaHei'" font-size="11.3899">
  143. Ua
  144. </text>
  145. <text transform="matrix(1 0 0 1 34.7385 137.0166)" fill="#97A1A2"
  146. font-family="'MicrosoftYaHei'" font-size="9.6234">
  147. (KV)
  148. </text>
  149. <text transform="matrix(1 0 0 1 53.7839 137.0166)" fill="#97A1A2"
  150. font-family="'MicrosoftYaHei'" font-size="11.3899">
  151. :
  152. </text>
  153. </g>
  154. <g>
  155. <text transform="matrix(1 0 0 1 18.9617 155.377)" fill="#97A1A2"
  156. font-family="'MicrosoftYaHei'" font-size="11.3899">
  157. Ub
  158. </text>
  159. <text transform="matrix(1 0 0 1 34.7385 155.377)" fill="#97A1A2"
  160. font-family="'MicrosoftYaHei'" font-size="9.6234">
  161. (KV)
  162. </text>
  163. <text transform="matrix(1 0 0 1 53.7834 155.377)" fill="#97A1A2"
  164. font-family="'MicrosoftYaHei'" font-size="11.3899">
  165. :
  166. </text>
  167. </g>
  168. <g>
  169. <text transform="matrix(1 0 0 1 20.5247 177.6621)" fill="#97A1A2"
  170. font-family="'MicrosoftYaHei'" font-size="11.3899">
  171. Uc
  172. </text>
  173. <text transform="matrix(1 0 0 1 34.7385 177.6621)" fill="#97A1A2"
  174. font-family="'MicrosoftYaHei'" font-size="9.6234">
  175. (KV)
  176. </text>
  177. <text transform="matrix(1 0 0 1 53.7834 177.6621)" fill="#97A1A2"
  178. font-family="'MicrosoftYaHei'" font-size="11.3899">
  179. :
  180. </text>
  181. </g>
  182. <g>
  183. <text transform="matrix(1 0 0 1 12.6663 198.4961)" fill="#97A1A2"
  184. font-family="'MicrosoftYaHei'" font-size="11.3899">
  185. Uab
  186. </text>
  187. <text transform="matrix(1 0 0 1 34.739 198.4961)" fill="#97A1A2"
  188. font-family="'MicrosoftYaHei'" font-size="9.6234">
  189. (KV)
  190. </text>
  191. <text transform="matrix(1 0 0 1 53.7834 198.4961)" fill="#97A1A2"
  192. font-family="'MicrosoftYaHei'" font-size="11.3899">
  193. :
  194. </text>
  195. </g>
  196. <rect x="3.865" y="205.056" opacity="0.9" fill="#162320" enable-background="new "
  197. width="115.11" height="18.49"></rect>
  198. <g>
  199. <text transform="matrix(1 0 0 1 13.2502 218.9961)" fill="#97A1A2"
  200. font-family="'MicrosoftYaHei'" font-size="11.3899">
  201. Ubc
  202. </text>
  203. <text transform="matrix(1 0 0 1 34.739 218.9961)" fill="#97A1A2"
  204. font-family="'MicrosoftYaHei'" font-size="9.6234">
  205. (KV)
  206. </text>
  207. <text transform="matrix(1 0 0 1 53.7834 218.9961)" fill="#97A1A2"
  208. font-family="'MicrosoftYaHei'" font-size="11.3899">
  209. :
  210. </text>
  211. </g>
  212. <rect x="3.865" y="225.556" opacity="0.9" fill="#162320" enable-background="new "
  213. width="115.11" height="18.49"></rect>
  214. <g>
  215. <text transform="matrix(1 0 0 1 14.2288 239.4961)" fill="#97A1A2"
  216. font-family="'MicrosoftYaHei'" font-size="11.3899">
  217. Uca
  218. </text>
  219. <text transform="matrix(1 0 0 1 34.7385 239.4961)" fill="#97A1A2"
  220. font-family="'MicrosoftYaHei'" font-size="9.6234">
  221. (KV)
  222. </text>
  223. <text transform="matrix(1 0 0 1 53.7839 239.4961)" fill="#97A1A2"
  224. font-family="'MicrosoftYaHei'" font-size="11.3899">
  225. :
  226. </text>
  227. </g>
  228. <text transform="matrix(1 0 0 1 281.0232 12.3584)" fill="#D0D0D0"
  229. font-family="'MicrosoftYaHei'" font-size="12.619">
  230. 35kV母线
  231. </text>
  232. <rect x="2.657" y="294.943" fill="#CAA51A" width="717.839" height="2.25"></rect>
  233. <rect x="772.657" y="294.943" fill="#CAA51A" width="1080.339" height="2.25"></rect>
  234. <rect x="644.886" y="64.273" opacity="0.9" fill="#162320" enable-background="new "
  235. width="115.107" height="18.491"></rect>
  236. <rect x="644.886" y="84.771" opacity="0.9" fill="#162320" enable-background="new "
  237. width="115.107" height="18.491"></rect>
  238. <rect x="644.886" y="105.267" opacity="0.9" fill="#162320" enable-background="new "
  239. width="115.107" height="18.491"></rect>
  240. <g>
  241. <text transform="matrix(1 0 0 1 663.6125 78.2236)" fill="#97A1A2"
  242. font-family="'MicrosoftYaHei'" font-size="11.3899">
  243. la
  244. </text>
  245. <text transform="matrix(1 0 0 1 672.9392 78.2236)" fill="#97A1A2"
  246. font-family="'MicrosoftYaHei'" font-size="9.6234">
  247. (A)
  248. </text>
  249. <text transform="matrix(1 0 0 1 686.1379 78.2236)" fill="#97A1A2"
  250. font-family="'MicrosoftYaHei'" font-size="11.3899">
  251. :
  252. </text>
  253. </g>
  254. <g>
  255. <text transform="matrix(1 0 0 1 645.7087 96.584)" fill="#97A1A2"
  256. font-family="'MicrosoftYaHei'" font-size="11.3899">
  257. P(kVar)
  258. </text>
  259. <text transform="matrix(1 0 0 1 686.1379 96.584)" fill="#97A1A2"
  260. font-family="'MicrosoftYaHei'" font-size="11.3899">
  261. :
  262. </text>
  263. </g>
  264. <g>
  265. <text transform="matrix(1 0 0 1 645.5232 118.8701)" fill="#97A1A2"
  266. font-family="'MicrosoftYaHei'" font-size="11.3899">
  267. Q
  268. </text>
  269. <text transform="matrix(1 0 0 1 654.8049 118.8701)" fill="#97A1A2"
  270. font-family="'MicrosoftYaHei'" font-size="9.6234">
  271. (kVar)
  272. </text>
  273. <text transform="matrix(1 0 0 1 686.1379 118.8701)" fill="#97A1A2"
  274. font-family="'MicrosoftYaHei'" font-size="11.3899">
  275. :
  276. </text>
  277. </g>
  278. <rect x="644.886" y="209.483" opacity="0.9" fill="#162320" enable-background="new "
  279. width="115.107" height="18.492"></rect>
  280. <rect x="644.886" y="229.981" opacity="0.9" fill="#162320" enable-background="new "
  281. width="115.107" height="18.49"></rect>
  282. <rect x="644.886" y="250.478" opacity="0.9" fill="#162320" enable-background="new "
  283. width="115.107" height="18.49"></rect>
  284. <g>
  285. <text transform="matrix(1 0 0 1 663.6125 223.4346)" fill="#97A1A2"
  286. font-family="'MicrosoftYaHei'" font-size="11.3899">
  287. la
  288. </text>
  289. <text transform="matrix(1 0 0 1 672.9392 223.4346)" fill="#97A1A2"
  290. font-family="'MicrosoftYaHei'" font-size="9.6234">
  291. (A)
  292. </text>
  293. <text transform="matrix(1 0 0 1 686.1379 223.4346)" fill="#97A1A2"
  294. font-family="'MicrosoftYaHei'" font-size="11.3899">
  295. :
  296. </text>
  297. </g>
  298. <g>
  299. <text transform="matrix(1 0 0 1 654.7087 241.7939)" fill="#97A1A2"
  300. font-family="'MicrosoftYaHei'" font-size="11.3899">
  301. P(kVar)
  302. </text>
  303. <text transform="matrix(1 0 0 1 686.1379 241.7939)" fill="#97A1A2"
  304. font-family="'MicrosoftYaHei'" font-size="11.3899">
  305. :
  306. </text>
  307. </g>
  308. <g>
  309. <text transform="matrix(1 0 0 1 645.5232 264.0801)" fill="#97A1A2"
  310. font-family="'MicrosoftYaHei'" font-size="11.3899">
  311. Q
  312. </text>
  313. <text transform="matrix(1 0 0 1 654.8049 264.0801)" fill="#97A1A2"
  314. font-family="'MicrosoftYaHei'" font-size="9.6234">
  315. (kVar)
  316. </text>
  317. <text transform="matrix(1 0 0 1 686.1379 264.0801)" fill="#97A1A2"
  318. font-family="'MicrosoftYaHei'" font-size="11.3899">
  319. :
  320. </text>
  321. </g>
  322. <text transform="matrix(0.9268 0 0 1 2.6589 287.8584)" fill="#FFFFFF"
  323. font-family="'MicrosoftYaHei'" font-size="11.1235">
  324. 10kV Ⅰ母线
  325. </text>
  326. <text transform="matrix(0.9268 0 0 1 1789.3035 287.8584)" fill="#FFFFFF"
  327. font-family="'MicrosoftYaHei'" font-size="11.1235">
  328. 10kV Ⅱ母线
  329. </text>
  330. <rect x="302.84" y="410.729" opacity="0.9" fill="#162320" enable-background="new "
  331. width="66.024" height="18.491"></rect>
  332. <rect x="302.84" y="431.227" opacity="0.9" fill="#162320" enable-background="new "
  333. width="66.024" height="18.49"></rect>
  334. <rect x="302.84" y="451.723" opacity="0.9" fill="#162320" enable-background="new "
  335. width="66.024" height="18.49"></rect>
  336. <g>
  337. <text transform="matrix(1 0 0 1 308.7043 424.6797)" fill="#97A1A2"
  338. font-family="'MicrosoftYaHei'" font-size="11.3899">
  339. Ia:
  340. </text>
  341. </g>
  342. <g>
  343. <text transform="matrix(1 0 0 1 311.3796 443.0391)" fill="#97A1A2"
  344. font-family="'MicrosoftYaHei'" font-size="11.3899">
  345. P:
  346. </text>
  347. </g>
  348. <g>
  349. <text transform="matrix(1 0 0 1 309.0652 465.3252)" fill="#97A1A2"
  350. font-family="'MicrosoftYaHei'" font-size="11.3899">
  351. Q:
  352. </text>
  353. </g>
  354. <rect x="456.192" y="521.655" opacity="0.9" fill="#162320" enable-background="new "
  355. width="66.025" height="18.491"></rect>
  356. <rect x="456.192" y="542.152" opacity="0.9" fill="#162320" enable-background="new "
  357. width="66.025" height="18.489"></rect>
  358. <rect x="456.192" y="562.648" opacity="0.9" fill="#162320" enable-background="new "
  359. width="66.025" height="18.489"></rect>
  360. <g>
  361. <text transform="matrix(1 0 0 1 462.0583 535.6055)" fill="#97A1A2"
  362. font-family="'MicrosoftYaHei'" font-size="11.3899">
  363. Ia:
  364. </text>
  365. </g>
  366. <g>
  367. <text transform="matrix(1 0 0 1 464.7332 553.9658)" fill="#97A1A2"
  368. font-family="'MicrosoftYaHei'" font-size="11.3899">
  369. P:
  370. </text>
  371. </g>
  372. <g>
  373. <text transform="matrix(1 0 0 1 462.4187 576.251)" fill="#97A1A2"
  374. font-family="'MicrosoftYaHei'" font-size="11.3899">
  375. Q:
  376. </text>
  377. </g>
  378. <rect x="582.829" y="413.298" opacity="0.9" fill="#162320" enable-background="new "
  379. width="66.025" height="18.489"></rect>
  380. <rect x="582.829" y="433.795" opacity="0.9" fill="#162320" enable-background="new "
  381. width="66.025" height="18.488"></rect>
  382. <rect x="582.829" y="454.289" opacity="0.9" fill="#162320" enable-background="new "
  383. width="66.025" height="18.49"></rect>
  384. <g>
  385. <text transform="matrix(1 0 0 1 588.6941 427.248)" fill="#97A1A2"
  386. font-family="'MicrosoftYaHei'" font-size="11.3899">
  387. Ia:
  388. </text>
  389. </g>
  390. <g>
  391. <text transform="matrix(1 0 0 1 591.3689 445.6084)" fill="#97A1A2"
  392. font-family="'MicrosoftYaHei'" font-size="11.3899">
  393. P:
  394. </text>
  395. </g>
  396. <g>
  397. <text transform="matrix(1 0 0 1 589.0549 467.8936)" fill="#97A1A2"
  398. font-family="'MicrosoftYaHei'" font-size="11.3899">
  399. Q:
  400. </text>
  401. </g>
  402. <rect x="710.175" y="485.077" opacity="0.9" fill="#162320" enable-background="new "
  403. width="66.022" height="18.491"></rect>
  404. <rect x="710.175" y="505.574" opacity="0.9" fill="#162320" enable-background="new "
  405. width="66.022" height="18.49"></rect>
  406. <rect x="710.175" y="526.072" opacity="0.9" fill="#162320" enable-background="new "
  407. width="66.022" height="18.489"></rect>
  408. <g>
  409. <text transform="matrix(1 0 0 1 716.0378 499.0293)" fill="#97A1A2"
  410. font-family="'MicrosoftYaHei'" font-size="11.3899">
  411. Ia:
  412. </text>
  413. </g>
  414. <g>
  415. <text transform="matrix(1 0 0 1 718.7126 517.3887)" fill="#97A1A2"
  416. font-family="'MicrosoftYaHei'" font-size="11.3899">
  417. P:
  418. </text>
  419. </g>
  420. <g>
  421. <text transform="matrix(1 0 0 1 716.3992 539.6748)" fill="#97A1A2"
  422. font-family="'MicrosoftYaHei'" font-size="11.3899">
  423. Q:
  424. </text>
  425. </g>
  426. <rect x="815.175" y="419.44" opacity="0.9" fill="#162320" enable-background="new "
  427. width="66.022" height="18.491"></rect>
  428. <rect x="815.175" y="439.938" opacity="0.9" fill="#162320" enable-background="new "
  429. width="66.022" height="18.489"></rect>
  430. <rect x="815.175" y="460.434" opacity="0.9" fill="#162320" enable-background="new "
  431. width="66.022" height="18.49"></rect>
  432. <g>
  433. <text transform="matrix(1 0 0 1 821.0378 433.3906)" fill="#97A1A2"
  434. font-family="'MicrosoftYaHei'" font-size="11.3899">
  435. Ia:
  436. </text>
  437. </g>
  438. <g>
  439. <text transform="matrix(1 0 0 1 823.7126 451.751)" fill="#97A1A2"
  440. font-family="'MicrosoftYaHei'" font-size="11.3899">
  441. P:
  442. </text>
  443. </g>
  444. <g>
  445. <text transform="matrix(1 0 0 1 821.3992 474.0361)" fill="#97A1A2"
  446. font-family="'MicrosoftYaHei'" font-size="11.3899">
  447. Q:
  448. </text>
  449. </g>
  450. <rect x="278.996" y="22.443" fill="#CAA51A" width="561" height="2.25"></rect>
  451. <polyline fill="#CAA51A"
  452. points="560.184,27.48 560.184,70.23 557.934,70.23 557.934,27.48 "></polyline>
  453. <polyline fill="#CAA51A"
  454. points="560.184,247.864 560.184,294.068 557.934,294.068 557.934,247.864 ">
  455. </polyline>
  456. <polyline fill="#CAA51A"
  457. points="557.934,132.312 557.934,128.534 560.184,128.534 560.184,132.312 ">
  458. </polyline>
  459. <polyline fill="#CAA51A"
  460. points="557.934,190.347 557.934,185.277 560.184,185.277 560.184,190.347 ">
  461. </polyline>
  462. <text transform="matrix(1 0 0 1 587.6843 102.3555)" fill="#FFFFFF"
  463. font-family="'MicrosoftYaHei'" font-size="11.6452">
  464. 301
  465. </text>
  466. <text transform="matrix(1 0 0 1 583.6843 229.9805)" fill="#FFFFFF"
  467. font-family="'MicrosoftYaHei'" font-size="11.6452">
  468. 501
  469. </text>
  470. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="559.06"
  471. cy="169.891" r="13.565"></circle>
  472. <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  473. cx="559.059" cy="146.35" r="13.565"></circle>
  474. <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  475. points="563.917,176.099 559.036,171.272 554.488,176.099 "></polyline>
  476. <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="558.934"
  477. y1="171.145" x2="558.934" y2="162.637"></line>
  478. <polygon fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10"
  479. points="563.634,141.974 553.827,141.974 558.996,150.058 "></polygon>
  480. <polyline fill="#44426C"
  481. points="651.998,177.3 579.684,177.3 579.684,156.481 651.998,156.481 "></polyline>
  482. <text transform="matrix(1 0 0 1 595.5808 171.0342)" fill="#FFFFFF"
  483. font-family="'MicrosoftYaHei'" font-size="12.5667">
  484. #1主变
  485. </text>
  486. <rect x="953.175" y="419.44" opacity="0.9" fill="#162320" enable-background="new "
  487. width="66.022" height="18.491"></rect>
  488. <rect x="953.175" y="439.938" opacity="0.9" fill="#162320" enable-background="new "
  489. width="66.022" height="18.489"></rect>
  490. <rect x="953.175" y="460.434" opacity="0.9" fill="#162320" enable-background="new "
  491. width="66.022" height="18.49"></rect>
  492. <g>
  493. <text transform="matrix(1 0 0 1 959.0369 433.3906)" fill="#97A1A2"
  494. font-family="'MicrosoftYaHei'" font-size="11.3899">
  495. Ia:
  496. </text>
  497. </g>
  498. <g>
  499. <text transform="matrix(1 0 0 1 961.7126 451.751)" fill="#97A1A2"
  500. font-family="'MicrosoftYaHei'" font-size="11.3899">
  501. P:
  502. </text>
  503. </g>
  504. <g>
  505. <text transform="matrix(1 0 0 1 959.3982 474.0361)" fill="#97A1A2"
  506. font-family="'MicrosoftYaHei'" font-size="11.3899">
  507. Q:
  508. </text>
  509. </g>
  510. <rect x="1094.175" y="419.44" opacity="0.9" fill="#162320" enable-background="new "
  511. width="66.022" height="18.491"></rect>
  512. <rect x="1094.175" y="439.938" opacity="0.9" fill="#162320" enable-background="new "
  513. width="66.022" height="18.489"></rect>
  514. <rect x="1094.175" y="460.434" opacity="0.9" fill="#162320" enable-background="new "
  515. width="66.022" height="18.49"></rect>
  516. <g>
  517. <text transform="matrix(1 0 0 1 1100.0369 433.3906)" fill="#97A1A2"
  518. font-family="'MicrosoftYaHei'" font-size="11.3899">
  519. Ia:
  520. </text>
  521. </g>
  522. <g>
  523. <text transform="matrix(1 0 0 1 1102.7126 451.751)" fill="#97A1A2"
  524. font-family="'MicrosoftYaHei'" font-size="11.3899">
  525. P:
  526. </text>
  527. </g>
  528. <g>
  529. <text transform="matrix(1 0 0 1 1100.3982 474.0361)" fill="#97A1A2"
  530. font-family="'MicrosoftYaHei'" font-size="11.3899">
  531. Q:
  532. </text>
  533. </g>
  534. <rect x="1235.983" y="413.298" opacity="0.9" fill="#162320" enable-background="new "
  535. width="66.025" height="18.489"></rect>
  536. <rect x="1235.983" y="433.795" opacity="0.9" fill="#162320" enable-background="new "
  537. width="66.025" height="18.488"></rect>
  538. <rect x="1235.983" y="454.289" opacity="0.9" fill="#162320" enable-background="new "
  539. width="66.025" height="18.49"></rect>
  540. <g>
  541. <text transform="matrix(1 0 0 1 1241.8484 427.248)" fill="#97A1A2"
  542. font-family="'MicrosoftYaHei'" font-size="11.3899">
  543. Ia:
  544. </text>
  545. </g>
  546. <g>
  547. <text transform="matrix(1 0 0 1 1244.5232 445.6084)" fill="#97A1A2"
  548. font-family="'MicrosoftYaHei'" font-size="11.3899">
  549. P:
  550. </text>
  551. </g>
  552. <g>
  553. <text transform="matrix(1 0 0 1 1242.2097 467.8936)" fill="#97A1A2"
  554. font-family="'MicrosoftYaHei'" font-size="11.3899">
  555. Q:
  556. </text>
  557. </g>
  558. <rect x="1376.235" y="483.903" opacity="0.9" fill="#162320" enable-background="new "
  559. width="66.025" height="18.49"></rect>
  560. <rect x="1376.235" y="504.4" opacity="0.9" fill="#162320" enable-background="new "
  561. width="66.025" height="18.489"></rect>
  562. <rect x="1376.235" y="524.896" opacity="0.9" fill="#162320" enable-background="new "
  563. width="66.025" height="18.49"></rect>
  564. <g>
  565. <text transform="matrix(1 0 0 1 1382.1003 497.8535)" fill="#97A1A2"
  566. font-family="'MicrosoftYaHei'" font-size="11.3899">
  567. Ia:
  568. </text>
  569. </g>
  570. <g>
  571. <text transform="matrix(1 0 0 1 1384.7751 516.2139)" fill="#97A1A2"
  572. font-family="'MicrosoftYaHei'" font-size="11.3899">
  573. P:
  574. </text>
  575. </g>
  576. <g>
  577. <text transform="matrix(1 0 0 1 1382.4617 538.499)" fill="#97A1A2"
  578. font-family="'MicrosoftYaHei'" font-size="11.3899">
  579. Q:
  580. </text>
  581. </g>
  582. <rect x="1510.735" y="419.072" opacity="0.9" fill="#162320" enable-background="new "
  583. width="66.025" height="18.492"></rect>
  584. <rect x="1510.735" y="439.569" opacity="0.9" fill="#162320" enable-background="new "
  585. width="66.025" height="18.489"></rect>
  586. <rect x="1510.735" y="460.065" opacity="0.9" fill="#162320" enable-background="new "
  587. width="66.025" height="18.489"></rect>
  588. <g>
  589. <text transform="matrix(1 0 0 1 1516.6003 433.0225)" fill="#97A1A2"
  590. font-family="'MicrosoftYaHei'" font-size="11.3899">
  591. Ia:
  592. </text>
  593. </g>
  594. <g>
  595. <text transform="matrix(1 0 0 1 1519.2751 451.3818)" fill="#97A1A2"
  596. font-family="'MicrosoftYaHei'" font-size="11.3899">
  597. P:
  598. </text>
  599. </g>
  600. <g>
  601. <text transform="matrix(1 0 0 1 1516.9617 473.668)" fill="#97A1A2"
  602. font-family="'MicrosoftYaHei'" font-size="11.3899">
  603. Q:
  604. </text>
  605. </g>
  606. <rect x="1660.971" y="422.009" opacity="0.9" fill="#162320" enable-background="new "
  607. width="66.022" height="18.489"></rect>
  608. <rect x="1660.971" y="442.506" opacity="0.9" fill="#162320" enable-background="new "
  609. width="66.022" height="18.488"></rect>
  610. <rect x="1660.971" y="463.002" opacity="0.9" fill="#162320" enable-background="new "
  611. width="66.022" height="18.488"></rect>
  612. <g>
  613. <text transform="matrix(1 0 0 1 1666.8367 435.959)" fill="#97A1A2"
  614. font-family="'MicrosoftYaHei'" font-size="11.3899">
  615. Ia:
  616. </text>
  617. </g>
  618. <g>
  619. <text transform="matrix(1 0 0 1 1669.5115 454.3184)" fill="#97A1A2"
  620. font-family="'MicrosoftYaHei'" font-size="11.3899">
  621. P:
  622. </text>
  623. </g>
  624. <g>
  625. <text transform="matrix(1 0 0 1 1667.198 476.6045)" fill="#97A1A2"
  626. font-family="'MicrosoftYaHei'" font-size="11.3899">
  627. Q:
  628. </text>
  629. </g>
  630. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  631. points="561.069,558.272 557.825,555.063 554.802,558.272 "></polyline>
  632. <polyline fill="#44426C"
  633. points="232.995,385.899 160.681,385.899 160.681,365.079 232.995,365.079 ">
  634. </polyline>
  635. <text transform="matrix(1 0 0 1 173.218 379.6348)" fill="#FFFFFF"
  636. font-family="'MicrosoftYaHei'" font-size="12.5667">
  637. 515备用
  638. </text>
  639. <polyline fill="#44426C"
  640. points="115.897,543.211 32.583,543.211 32.583,522.393 115.897,522.393 "></polyline>
  641. <text transform="matrix(1 0 0 1 54.2292 536.584)" fill="#FFFFFF"
  642. font-family="'MicrosoftYaHei'" font-size="12.5667">
  643. PT间隔
  644. </text>
  645. <polyline fill="#44426C"
  646. points="1819.987,543.211 1736.675,543.211 1736.675,522.393 1819.987,522.393 ">
  647. </polyline>
  648. <text transform="matrix(1 0 0 1 1758.3171 536.584)" fill="#FFFFFF"
  649. font-family="'MicrosoftYaHei'" font-size="12.5667">
  650. PT间隔
  651. </text>
  652. <text transform="matrix(0.9268 0 0 1 168.5759 354.1807)" fill="#FFFFFF"
  653. font-family="'MicrosoftYaHei'" font-size="11.1235">
  654. 515
  655. </text>
  656. <text transform="matrix(0.9268 0 0 1 82.6589 341.1807)" fill="#FFFFFF"
  657. font-family="'MicrosoftYaHei'" font-size="11.1235">
  658. 51-9
  659. </text>
  660. <polyline fill="#CAA51A"
  661. points="69.048,467.568 69.048,340.469 71.298,340.469 71.298,467.568 "></polyline>
  662. <polyline fill="#CAA51A"
  663. points="69.048,327.174 69.048,294.942 71.298,294.942 71.298,327.174 "></polyline>
  664. <rect x="92.902" y="371.574" fill="#CAA51A" width="2.604" height="17.286"></rect>
  665. <polyline fill="#CAA51A"
  666. points="69.048,371.574 95.179,371.574 95.179,374.182 69.048,374.182 "></polyline>
  667. <rect x="92.902" y="410.729" fill="#3EB9B0" width="2.604" height="4.477"></rect>
  668. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="87.946"
  669. y1="416.197" x2="100.463" y2="416.197"></line>
  670. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="90.117"
  671. y1="419.517" x2="98.292" y2="419.517"></line>
  672. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="91.903"
  673. y1="423.021" x2="96.506" y2="423.021"></line>
  674. <polygon fill="#CAA51A" points="97.45,388.755 94.202,397.985 90.958,388.753 ">
  675. </polygon>
  676. <rect x="89.09" y="379.031" fill="none" stroke="#CAA51A" stroke-width="2"
  677. stroke-miterlimit="10" width="10.229" height="32.141"></rect>
  678. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  679. cx="70.225" cy="491.649" r="8.804"></circle>
  680. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  681. cx="70.224" cy="476.372" r="8.804"></circle>
  682. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  683. points="73.375,495.678 70.208,492.546 67.257,495.678 "></polyline>
  684. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" x1="70.143"
  685. y1="492.463" x2="70.143" y2="486.941"></line>
  686. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  687. points="73.375,480.74 70.208,477.608 67.257,480.74 "></polyline>
  688. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" x1="70.143"
  689. y1="477.525" x2="70.143" y2="472.004"></line>
  690. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  691. cx="83.044" cy="483.568" r="8.803"></circle>
  692. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  693. points="86.196,487.937 83.029,484.805 80.078,487.937 "></polyline>
  694. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" x1="82.963"
  695. y1="484.722" x2="82.963" y2="479.198"></line>
  696. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  697. cx="57.302" cy="483.568" r="8.803"></circle>
  698. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  699. points="59.059,486.826 59.059,480.309 53.683,483.744 "></polygon>
  700. <text transform="matrix(0.9268 0 0 1 1785.0203 341.1807)" fill="#FFFFFF"
  701. font-family="'MicrosoftYaHei'" font-size="11.1235">
  702. 52-9
  703. </text>
  704. <polyline fill="#CAA51A"
  705. points="1771.409,467.568 1771.409,340.469 1773.659,340.469 1773.659,467.568 ">
  706. </polyline>
  707. <polyline fill="#CAA51A"
  708. points="1771.409,327.174 1771.409,294.942 1773.659,294.942 1773.659,327.174 ">
  709. </polyline>
  710. <rect x="1795.264" y="371.574" fill="#CAA51A" width="2.604" height="17.286"></rect>
  711. <polyline fill="#CAA51A"
  712. points="1771.409,371.574 1797.542,371.574 1797.542,374.182 1771.409,374.182 ">
  713. </polyline>
  714. <rect x="1795.264" y="410.729" fill="#3EB9B0" width="2.604" height="4.477"></rect>
  715. <g>
  716. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  717. x1="1790.307" y1="416.197" x2="1802.825" y2="416.197"></line>
  718. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  719. x1="1792.479" y1="419.517" x2="1800.655" y2="419.517"></line>
  720. <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10"
  721. x1="1794.264" y1="423.021" x2="1798.868" y2="423.021"></line>
  722. </g>
  723. <polygon fill="#CAA51A" points="1799.811,388.755 1796.563,397.985 1793.321,388.753 ">
  724. </polygon>
  725. <rect x="1791.452" y="379.031" fill="none" stroke="#CAA51A" stroke-width="2"
  726. stroke-miterlimit="10" width="10.229" height="32.141"></rect>
  727. <g>
  728. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  729. cx="1772.589" cy="491.649" r="8.804"></circle>
  730. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  731. cx="1772.585" cy="476.372" r="8.804"></circle>
  732. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  733. points="1775.737,495.678 1772.571,492.546 1769.62,495.678 "></polyline>
  734. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  735. x1="1772.507" y1="492.463" x2="1772.507" y2="486.941"></line>
  736. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  737. points="1775.737,480.74 1772.571,477.608 1769.62,480.74 "></polyline>
  738. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  739. x1="1772.507" y1="477.525" x2="1772.507" y2="472.004"></line>
  740. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  741. cx="1785.405" cy="483.568" r="8.803"></circle>
  742. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  743. points="1788.557,487.937 1785.391,484.805 1782.44,487.937 "></polyline>
  744. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  745. x1="1785.325" y1="484.722" x2="1785.325" y2="479.198"></line>
  746. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  747. cx="1759.663" cy="483.568" r="8.803"></circle>
  748. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  749. points="1761.423,486.826 1761.423,480.309 1756.044,483.744 "></polygon>
  750. </g>
  751. <rect x="140.813" y="381.34" fill="#CAA51A" width="2.25" height="81.479"></rect>
  752. <rect x="140.813" y="297.193" fill="#CAA51A" width="2.25" height="25.375"></rect>
  753. <polygon fill="#CAA51A" points="146.542,462.667 141.933,472.474 137.333,462.661 ">
  754. </polygon>
  755. <polyline fill="#44426C"
  756. points="375.153,385.899 302.84,385.899 302.84,365.079 375.153,365.079 "></polyline>
  757. <text transform="matrix(1 0 0 1 315.3757 379.6348)" fill="#FFFFFF"
  758. font-family="'MicrosoftYaHei'" font-size="12.5667">
  759. 514备用
  760. </text>
  761. <polyline fill="#44426C"
  762. points="517.688,385.505 445.374,385.505 445.374,364.687 517.688,364.687 ">
  763. </polyline>
  764. <text transform="matrix(1 0 0 1 461.2883 379.2393)" fill="#FFFFFF"
  765. font-family="'MicrosoftYaHei'" font-size="12.5667">
  766. #1SVG
  767. </text>
  768. <polyline fill="#44426C"
  769. points="887.487,385.505 815.175,385.505 815.175,364.687 887.487,364.687 ">
  770. </polyline>
  771. <text transform="matrix(1 0 0 1 821.4255 379.2393)" fill="#FFFFFF"
  772. font-family="'MicrosoftYaHei'" font-size="12.5667">
  773. 521联络线
  774. </text>
  775. <polyline fill="#44426C"
  776. points="779.344,459.592 707.028,459.592 707.028,438.772 779.344,438.772 ">
  777. </polyline>
  778. <text transform="matrix(1 0 0 1 713.281 453.3262)" fill="#FFFFFF"
  779. font-family="'MicrosoftYaHei'" font-size="12.5667">
  780. 511联络线
  781. </text>
  782. <polyline fill="#44426C"
  783. points="651.998,385.899 579.684,385.899 579.684,365.079 651.998,365.079 ">
  784. </polyline>
  785. <text transform="matrix(1 0 0 1 596.9919 379.6338)" fill="#FFFFFF"
  786. font-family="'MicrosoftYaHei'" font-size="12.5667">
  787. 进线一
  788. </text>
  789. <polyline fill="#44426C"
  790. points="606.665,559.729 575.684,559.729 575.684,538.908 606.665,538.908 ">
  791. </polyline>
  792. <text transform="matrix(1 0 0 1 579.7961 553.4639)" fill="#FFFFFF"
  793. font-family="'MicrosoftYaHei'" font-size="12.5667">
  794. #10
  795. </text>
  796. <text transform="matrix(0.9268 0 0 1 310.7332 354.1807)" fill="#FFFFFF"
  797. font-family="'MicrosoftYaHei'" font-size="11.1235">
  798. 514
  799. </text>
  800. <text transform="matrix(0.9268 0 0 1 399.4001 419.3252)" fill="#FFFFFF"
  801. font-family="'MicrosoftYaHei'" font-size="11.1235">
  802. -1
  803. </text>
  804. <text transform="matrix(0.9268 0 0 1 454.9011 419.0723)" fill="#FFFFFF"
  805. font-family="'MicrosoftYaHei'" font-size="11.1235">
  806. -0
  807. </text>
  808. <text transform="matrix(0.9268 0 0 1 444.0378 354.1807)" fill="#FFFFFF"
  809. font-family="'MicrosoftYaHei'" font-size="11.1235">
  810. 513
  811. </text>
  812. <text transform="matrix(0.9268 0 0 1 587.6863 354.1807)" fill="#FFFFFF"
  813. font-family="'MicrosoftYaHei'" font-size="11.1235">
  814. 512
  815. </text>
  816. <text transform="matrix(0.9268 0 0 1 720.4968 354.1807)" fill="#FFFFFF"
  817. font-family="'MicrosoftYaHei'" font-size="11.1235">
  818. 511
  819. </text>
  820. <text transform="matrix(0.9268 0 0 1 815.1746 354.1807)" fill="#FFFFFF"
  821. font-family="'MicrosoftYaHei'" font-size="11.1235">
  822. 521
  823. </text>
  824. <polyline fill="#44426C"
  825. points="1025.487,385.505 953.175,385.505 953.175,364.687 1025.487,364.687 ">
  826. </polyline>
  827. <text transform="matrix(1 0 0 1 959.4255 379.2393)" fill="#FFFFFF"
  828. font-family="'MicrosoftYaHei'" font-size="12.5667">
  829. 522联络线
  830. </text>
  831. <text transform="matrix(0.9268 0 0 1 953.1746 354.1807)" fill="#FFFFFF"
  832. font-family="'MicrosoftYaHei'" font-size="11.1235">
  833. 522
  834. </text>
  835. <rect x="278.97" y="381.34" fill="#CAA51A" width="2.25" height="81.479"></rect>
  836. <rect x="278.97" y="297.193" fill="#CAA51A" width="2.25" height="25.375"></rect>
  837. <polygon fill="#CAA51A" points="284.7,462.667 280.09,472.474 275.491,462.661 ">
  838. </polygon>
  839. <rect x="928.969" y="381.34" fill="#CAA51A" width="2.25" height="81.479"></rect>
  840. <rect x="928.969" y="297.193" fill="#CAA51A" width="2.25" height="25.375"></rect>
  841. <polygon fill="#CAA51A" points="934.698,462.667 930.091,472.474 925.489,462.661 ">
  842. </polygon>
  843. <polyline fill="#44426C"
  844. points="1166.487,385.505 1094.175,385.505 1094.175,364.687 1166.487,364.687 ">
  845. </polyline>
  846. <text transform="matrix(1 0 0 1 1100.4255 379.2393)" fill="#FFFFFF"
  847. font-family="'MicrosoftYaHei'" font-size="12.5667">
  848. 523联络线
  849. </text>
  850. <text transform="matrix(0.9268 0 0 1 1094.1746 354.1807)" fill="#FFFFFF"
  851. font-family="'MicrosoftYaHei'" font-size="11.1235">
  852. 523
  853. </text>
  854. <rect x="1069.969" y="381.34" fill="#CAA51A" width="2.25" height="81.479"></rect>
  855. <rect x="1069.969" y="297.193" fill="#CAA51A" width="2.25" height="25.375"></rect>
  856. <polygon fill="#CAA51A" points="1075.698,462.667 1071.091,472.474 1066.489,462.661 ">
  857. </polygon>
  858. <rect x="420.742" y="435.509" fill="#CAA51A" width="2.25" height="27.347"></rect>
  859. <polygon fill="#CAA51A" points="706.683,385.903 702.073,395.71 697.474,385.899 ">
  860. </polygon>
  861. <rect x="556.81" y="378.766" fill="#CAA51A" width="2.25" height="153.206"></rect>
  862. <rect x="442.913" y="388.084" fill="#CAA51A" width="2.25" height="17.702"></rect>
  863. <rect x="420.742" y="388.084" fill="#CAA51A" width="24.139" height="2.25"></rect>
  864. <rect x="1370.419" y="388.084" fill="#CAA51A" width="2.25" height="17.702"></rect>
  865. <rect x="1348.247" y="388.084" fill="#CAA51A" width="24.138" height="2.25"></rect>
  866. <rect x="556.81" y="297.193" fill="#CAA51A" width="2.25" height="25.375"></rect>
  867. <polyline fill="#44426C"
  868. points="1305.153,385.899 1232.841,385.899 1232.841,365.079 1305.153,365.079 ">
  869. </polyline>
  870. <text transform="matrix(1 0 0 1 1250.1462 379.6338)" fill="#FFFFFF"
  871. font-family="'MicrosoftYaHei'" font-size="12.5667">
  872. 进线二
  873. </text>
  874. <polyline fill="#44426C"
  875. points="1587.653,385.899 1515.341,385.899 1515.341,365.079 1587.653,365.079 ">
  876. </polyline>
  877. <text transform="matrix(1 0 0 1 1532.6462 379.6338)" fill="#FFFFFF"
  878. font-family="'MicrosoftYaHei'" font-size="12.5667">
  879. 进线三
  880. </text>
  881. <polyline fill="#44426C"
  882. points="1725.022,385.899 1652.71,385.899 1652.71,365.079 1725.022,365.079 ">
  883. </polyline>
  884. <text transform="matrix(1 0 0 1 1670.0154 379.6338)" fill="#FFFFFF"
  885. font-family="'MicrosoftYaHei'" font-size="12.5667">
  886. 进线四
  887. </text>
  888. <polyline fill="#44426C"
  889. points="1448.552,385.899 1376.235,385.899 1376.235,365.079 1448.552,365.079 ">
  890. </polyline>
  891. <text transform="matrix(1 0 0 1 1392.1316 379.6338)" fill="#FFFFFF"
  892. font-family="'MicrosoftYaHei'" font-size="12.5667">
  893. 1#所变
  894. </text>
  895. <text transform="matrix(0.9268 0 0 1 1238.3406 354.1807)" fill="#FFFFFF"
  896. font-family="'MicrosoftYaHei'" font-size="11.1235">
  897. 524
  898. </text>
  899. <text transform="matrix(0.9268 0 0 1 1373.198 354.1807)" fill="#FFFFFF"
  900. font-family="'MicrosoftYaHei'" font-size="11.1235">
  901. 525
  902. </text>
  903. <text transform="matrix(0.9268 0 0 1 1517.698 354.1807)" fill="#FFFFFF"
  904. font-family="'MicrosoftYaHei'" font-size="11.1235">
  905. 526
  906. </text>
  907. <text transform="matrix(0.9268 0 0 1 1652.7097 354.1807)" fill="#FFFFFF"
  908. font-family="'MicrosoftYaHei'" font-size="11.1235">
  909. 527
  910. </text>
  911. <text transform="matrix(0.9268 0 0 1 1785.7097 341.1807)" fill="#FFFFFF"
  912. font-family="'MicrosoftYaHei'" font-size="11.1235">
  913. 52-9
  914. </text>
  915. <rect x="1209.968" y="378.766" fill="#CAA51A" width="2.25" height="182.963"></rect>
  916. <rect x="953.175" y="559.147" fill="#CAA51A" width="259.744" height="2.25"></rect>
  917. <rect x="1209.968" y="297.193" fill="#CAA51A" width="2.25" height="25.375"></rect>
  918. <rect x="1629.989" y="378.766" fill="#CAA51A" width="2.25" height="210.139"></rect>
  919. <rect x="1629.989" y="297.193" fill="#CAA51A" width="2.25" height="25.375"></rect>
  920. <rect x="1490.825" y="378.766" fill="#CAA51A" width="2.25" height="182.963"></rect>
  921. <rect x="1291.3" y="559.147" fill="#CAA51A" width="202.479" height="2.25"></rect>
  922. <rect x="1490.825" y="297.193" fill="#CAA51A" width="2.25" height="25.375"></rect>
  923. <rect x="1348.247" y="378.766" fill="#CAA51A" width="2.25" height="90.479"></rect>
  924. <rect x="1348.247" y="297.193" fill="#CAA51A" width="2.25" height="25.375"></rect>
  925. <rect x="701.316" y="378.766" fill="#CAA51A" width="2.25" height="27.229"></rect>
  926. <rect x="701.317" y="404.304" fill="#CAA51A" width="91.68" height="2.25"></rect>
  927. <rect x="701.316" y="297.193" fill="#CAA51A" width="2.25" height="25.375"></rect>
  928. <polygon fill="#CAA51A" points="795.779,385.903 791.173,395.71 786.57,385.899 ">
  929. </polygon>
  930. <rect x="790.413" y="378.766" fill="#CAA51A" width="2.25" height="27.229"></rect>
  931. <rect x="790.413" y="297.193" fill="#CAA51A" width="2.25" height="25.375"></rect>
  932. <rect x="420.74" y="378.766" fill="#CAA51A" width="2.25" height="19.828"></rect>
  933. <rect x="420.74" y="297.193" fill="#CAA51A" width="2.25" height="25.375"></rect>
  934. <rect x="420.439" y="419.072" fill="#AAAAAA" width="2.855" height="7.872"></rect>
  935. <line fill="none" stroke="#AAAAAA" stroke-width="1.6" stroke-miterlimit="10"
  936. x1="416.103" y1="428.03" x2="427.633" y2="428.03"></line>
  937. <line fill="none" stroke="#AAAAAA" stroke-width="1.6" stroke-miterlimit="10"
  938. x1="418.482" y1="431.67" x2="425.255" y2="431.67"></line>
  939. <line fill="none" stroke="#AAAAAA" stroke-width="1.6" stroke-miterlimit="10"
  940. x1="420.441" y1="435.509" x2="423.298" y2="435.509"></line>
  941. <rect x="443.45" y="428.82" fill="#AAAAAA" width="2.855" height="7.871"></rect>
  942. <line fill="none" stroke="#AAAAAA" stroke-width="1.6" stroke-miterlimit="10"
  943. x1="439.113" y1="437.778" x2="450.641" y2="437.778"></line>
  944. <line fill="none" stroke="#AAAAAA" stroke-width="1.6" stroke-miterlimit="10"
  945. x1="441.493" y1="441.418" x2="448.263" y2="441.418"></line>
  946. <line fill="none" stroke="#AAAAAA" stroke-width="1.6" stroke-miterlimit="10"
  947. x1="443.452" y1="445.257" x2="446.306" y2="445.257"></line>
  948. <rect x="418.851" y="488.23" fill="#CAA51A" width="2.25" height="19.676"></rect>
  949. <path fill="none" stroke="#CAA51A" stroke-width="2.2" stroke-miterlimit="10"
  950. d="M409.642,479.065 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">
  951. </path>
  952. <path fill="none" stroke="#CAA51A" stroke-width="2.2" stroke-miterlimit="10"
  953. d="M420.09,489.365 c-0.224,0.016-0.441,0.033-0.67,0.033c-5.707,0-10.335-4.626-10.335-10.335h11.005V489.365L420.09,489.365z">
  954. </path>
  955. <rect x="401.862" y="508.948" fill="#CAA51A" width="33.979" height="2.25"></rect>
  956. <rect x="401.862" y="519.405" fill="#CAA51A" width="33.979" height="2.25"></rect>
  957. <rect x="417.607" y="521.655" fill="#CAA51A" width="2.484" height="3.039"></rect>
  958. <rect x="417.607" y="524.694" fill="#40B9B0" width="2.484" height="4.106"></rect>
  959. <line fill="none" stroke="#40B9B0" stroke-width="2" stroke-miterlimit="10" x1="413.14"
  960. y1="528.803" x2="424.562" y2="528.803"></line>
  961. <line fill="none" stroke="#40B9B0" stroke-width="2" stroke-miterlimit="10" x1="415.497"
  962. y1="531.972" x2="422.204" y2="531.972"></line>
  963. <line fill="none" stroke="#40B9B0" stroke-width="2" stroke-miterlimit="10" x1="417.437"
  964. y1="535.317" x2="420.265" y2="535.317"></line>
  965. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  966. cx="557.936" cy="554.142" r="9.021"></circle>
  967. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  968. x1="557.935" y1="554.978" x2="557.935" y2="549.319"></line>
  969. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  970. cx="557.935" cy="540.993" r="9.021"></circle>
  971. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  972. points="561.194,538.083 554.677,538.083 558.112,543.458 "></polygon>
  973. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  974. points="1352.143,481.369 1348.899,478.16 1345.876,481.369 "></polyline>
  975. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  976. cx="1349.01" cy="491.654" r="9.021"></circle>
  977. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  978. x1="1349.01" y1="478.074" x2="1349.01" y2="472.418"></line>
  979. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  980. cx="1349.01" cy="478.504" r="9.021"></circle>
  981. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  982. points="1352.268,491.654 1345.751,491.654 1349.186,497.029 "></polygon>
  983. <text transform="matrix(1 0 0 1 1388.2224 419.4395)" fill="#FFFFFF"
  984. font-family="'MicrosoftYaHei'" font-size="8.8548">
  985. -0
  986. </text>
  987. <line fill="none" stroke="#40B9B0" stroke-width="1.6" stroke-miterlimit="10"
  988. x1="1366.856" y1="439.134" x2="1379.135" y2="439.134"></line>
  989. <line fill="none" stroke="#40B9B0" stroke-width="1.6" stroke-miterlimit="10"
  990. x1="1372.997" y1="430.685" x2="1372.997" y2="439.134"></line>
  991. <line fill="none" stroke="#40B9B0" stroke-width="1.6" stroke-miterlimit="10"
  992. x1="1369.391" y1="442.514" x2="1376.602" y2="442.514"></line>
  993. <line fill="none" stroke="#40B9B0" stroke-width="1.6" stroke-miterlimit="10"
  994. x1="1370.802" y1="445.894" x2="1375.192" y2="445.894"></line>
  995. <rect x="839.945" y="588.904" fill="#C3A121" width="227.345" height="2.25"></rect>
  996. <rect x="952.17" y="558.905" fill="#C3A121" width="2.25" height="31.124"></rect>
  997. <rect x="1177.563" y="588.904" fill="#C3A121" width="227.344" height="2.25"></rect>
  998. <rect x="1289.784" y="558.905" fill="#C3A121" width="2.25" height="31.124"></rect>
  999. <rect x="1517.575" y="588.904" fill="#C3A121" width="227.346" height="2.25"></rect>
  1000. <rect x="556.81" y="563.163" fill="#CAA51A" width="2.25" height="76.088"></rect>
  1001. <rect x="370.402" y="635.398" fill="#C3A121" width="372.783" height="2.25"></rect>
  1002. <rect x="840.947" y="590.029" fill="#C3A121" width="2.25" height="25.978"></rect>
  1003. <rect x="1066.278" y="590.029" fill="#C3A121" width="2.25" height="25.978"></rect>
  1004. <rect x="806.573" y="634.273" fill="#C3A121" width="2.25" height="50.942"></rect>
  1005. <rect x="806.573" y="725.549" fill="#C3A121" width="2.25" height="10"></rect>
  1006. <rect x="872.823" y="634.273" fill="#C3A121" width="2.25" height="50.942"></rect>
  1007. <rect x="807.079" y="634.273" fill="#C3A121" width="17.578" height="2.25"></rect>
  1008. <rect x="857.372" y="634.273" fill="#C3A121" width="17.576" height="2.25"></rect>
  1009. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1010. cx="841.572" cy="625.028" r="9.021"></circle>
  1011. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1012. cx="833.678" cy="634.05" r="9.021"></circle>
  1013. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1014. points="838.344,620.9 841.591,624.109 844.613,620.9 "></polyline>
  1015. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1016. points="1064.182,620.9 1067.427,624.109 1070.45,620.9 "></polyline>
  1017. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1018. x1="841.656" y1="624.195" x2="841.656" y2="629.854"></line>
  1019. <polygon fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1020. points="830.637,636.96 837.156,636.96 833.719,631.585 "></polygon>
  1021. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1022. cx="849.469" cy="634.05" r="9.021"></circle>
  1023. <polygon fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1024. points="846.43,636.96 852.95,636.96 849.512,631.585 "></polygon>
  1025. <rect x="796.323" y="685.218" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1026. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1027. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1028. d="M797.573,689.299c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1029. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1030. x1="819.072" y1="685.218" x2="796.323" y2="724.549"></line>
  1031. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1032. x1="807.698" y1="717.049" x2="815.868" y2="717.049"></line>
  1033. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1034. x1="807.698" y1="720.799" x2="815.868" y2="720.799"></line>
  1035. <rect x="873.198" y="725.549" fill="#C3A121" width="2.25" height="10"></rect>
  1036. <rect x="862.948" y="685.218" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1037. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1038. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1039. d="M864.198,689.299c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1040. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1041. x1="885.698" y1="685.218" x2="862.948" y2="724.549"></line>
  1042. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1043. x1="874.323" y1="717.049" x2="882.493" y2="717.049"></line>
  1044. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1045. x1="874.323" y1="720.799" x2="882.493" y2="720.799"></line>
  1046. <polyline fill="#434169"
  1047. points="826.621,669.474 826.621,647.536 855.823,647.536 855.823,669.474 ">
  1048. </polyline>
  1049. <text transform="matrix(1 0 0 1 833.9548 662.0771)" fill="#FFFFFF"
  1050. font-family="'MicrosoftYaHei'" font-size="11.8698">
  1051. #1
  1052. </text>
  1053. <text transform="matrix(1 0 0 1 800.573 746.8857)" fill="#FFFFFF"
  1054. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1055. #1
  1056. </text>
  1057. <rect x="369.817" y="635.398" fill="#C3A121" width="2.25" height="49.817"></rect>
  1058. <rect x="369.817" y="725.549" fill="#C3A121" width="2.25" height="10"></rect>
  1059. <rect x="359.567" y="685.218" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1060. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1061. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1062. d="M360.817,689.299c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1063. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1064. x1="382.317" y1="685.218" x2="359.567" y2="724.549"></line>
  1065. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1066. x1="370.942" y1="717.049" x2="379.112" y2="717.049"></line>
  1067. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1068. x1="370.942" y1="720.799" x2="379.112" y2="720.799"></line>
  1069. <text transform="matrix(1 0 0 1 361.8176 746.8857)" fill="#FFFFFF"
  1070. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1071. #19
  1072. </text>
  1073. <rect x="434.812" y="635.398" fill="#C3A121" width="2.25" height="49.817"></rect>
  1074. <rect x="434.812" y="725.549" fill="#C3A121" width="2.25" height="10"></rect>
  1075. <rect x="424.562" y="685.218" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1076. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1077. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1078. d="M425.812,689.299c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1079. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1080. x1="447.311" y1="685.218" x2="424.562" y2="724.549"></line>
  1081. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1082. x1="435.937" y1="717.049" x2="444.106" y2="717.049"></line>
  1083. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1084. x1="435.937" y1="720.799" x2="444.106" y2="720.799"></line>
  1085. <text transform="matrix(1 0 0 1 426.8127 746.8857)" fill="#FFFFFF"
  1086. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1087. #20
  1088. </text>
  1089. <rect x="491.781" y="635.398" fill="#C3A121" width="2.25" height="49.817"></rect>
  1090. <rect x="491.781" y="725.549" fill="#C3A121" width="2.25" height="10"></rect>
  1091. <rect x="481.531" y="685.218" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1092. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1093. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1094. d="M482.781,689.299c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1095. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10" x1="504.28"
  1096. y1="685.218" x2="481.531" y2="724.549"></line>
  1097. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1098. x1="492.906" y1="717.049" x2="501.076" y2="717.049"></line>
  1099. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1100. x1="492.906" y1="720.799" x2="501.076" y2="720.799"></line>
  1101. <text transform="matrix(1 0 0 1 483.781 746.8857)" fill="#FFFFFF"
  1102. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1103. #21
  1104. </text>
  1105. <rect x="556.775" y="635.398" fill="#C3A121" width="2.25" height="49.817"></rect>
  1106. <rect x="556.775" y="725.549" fill="#C3A121" width="2.25" height="10"></rect>
  1107. <rect x="546.525" y="685.218" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1108. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1109. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1110. d="M547.775,689.299c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1111. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1112. x1="569.274" y1="685.218" x2="546.525" y2="724.549"></line>
  1113. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10" x1="557.9"
  1114. y1="717.049" x2="566.07" y2="717.049"></line>
  1115. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10" x1="557.9"
  1116. y1="720.799" x2="566.07" y2="720.799"></line>
  1117. <text transform="matrix(1 0 0 1 548.7751 746.8857)" fill="#FFFFFF"
  1118. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1119. #22
  1120. </text>
  1121. <rect x="623.344" y="635.398" fill="#C3A121" width="2.25" height="49.817"></rect>
  1122. <rect x="623.344" y="725.549" fill="#C3A121" width="2.25" height="10"></rect>
  1123. <rect x="613.094" y="685.218" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1124. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1125. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1126. d="M614.344,689.299c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1127. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1128. x1="635.844" y1="685.218" x2="613.094" y2="724.549"></line>
  1129. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1130. x1="624.469" y1="717.049" x2="632.638" y2="717.049"></line>
  1131. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1132. x1="624.469" y1="720.799" x2="632.638" y2="720.799"></line>
  1133. <text transform="matrix(1 0 0 1 615.3435 746.8857)" fill="#FFFFFF"
  1134. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1135. #23
  1136. </text>
  1137. <rect x="680.312" y="635.398" fill="#C3A121" width="2.25" height="49.817"></rect>
  1138. <rect x="680.312" y="725.549" fill="#C3A121" width="2.25" height="10"></rect>
  1139. <rect x="670.062" y="685.218" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1140. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1141. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1142. d="M671.312,689.299c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1143. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1144. x1="692.812" y1="685.218" x2="670.062" y2="724.549"></line>
  1145. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1146. x1="681.437" y1="717.049" x2="689.607" y2="717.049"></line>
  1147. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1148. x1="681.437" y1="720.799" x2="689.607" y2="720.799"></line>
  1149. <text transform="matrix(1 0 0 1 672.3127 746.8857)" fill="#FFFFFF"
  1150. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1151. #24
  1152. </text>
  1153. <rect x="743.306" y="635.398" fill="#C3A121" width="2.25" height="49.817"></rect>
  1154. <rect x="743.306" y="725.549" fill="#C3A121" width="2.25" height="10"></rect>
  1155. <rect x="733.056" y="685.218" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1156. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1157. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1158. d="M734.306,689.299c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1159. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1160. x1="755.806" y1="685.218" x2="733.056" y2="724.549"></line>
  1161. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1162. x1="744.431" y1="717.049" x2="752.601" y2="717.049"></line>
  1163. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1164. x1="744.431" y1="720.799" x2="752.601" y2="720.799"></line>
  1165. <text transform="matrix(1 0 0 1 735.3064 746.8857)" fill="#FFFFFF"
  1166. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1167. #25
  1168. </text>
  1169. <text transform="matrix(1 0 0 1 866.823 746.8857)" fill="#FFFFFF"
  1170. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1171. #2
  1172. </text>
  1173. <rect x="1032.667" y="634.273" fill="#C3A121" width="2.25" height="50.942"></rect>
  1174. <rect x="1032.667" y="725.549" fill="#C3A121" width="2.25" height="10"></rect>
  1175. <rect x="1098.917" y="634.273" fill="#C3A121" width="2.25" height="50.942"></rect>
  1176. <rect x="1033.173" y="634.273" fill="#C3A121" width="17.576" height="2.25"></rect>
  1177. <rect x="1083.466" y="634.273" fill="#C3A121" width="17.571" height="2.25"></rect>
  1178. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1179. cx="1067.667" cy="625.028" r="9.021"></circle>
  1180. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1181. cx="1059.772" cy="634.05" r="9.021"></circle>
  1182. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1183. x1="1067.751" y1="624.195" x2="1067.751" y2="629.854"></line>
  1184. <polygon fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1185. points="1056.731,636.96 1063.251,636.96 1059.813,631.585 "></polygon>
  1186. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1187. cx="1075.563" cy="634.05" r="9.021"></circle>
  1188. <polygon fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1189. points="1072.524,636.96 1079.044,636.96 1075.606,631.585 "></polygon>
  1190. <rect x="1022.419" y="685.218" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1191. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1192. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1193. d="M1023.669,689.299c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1194. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1195. x1="1045.167" y1="685.218" x2="1022.419" y2="724.549"></line>
  1196. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1197. x1="1033.792" y1="717.049" x2="1041.96" y2="717.049"></line>
  1198. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1199. x1="1033.792" y1="720.799" x2="1041.96" y2="720.799"></line>
  1200. <rect x="1099.292" y="725.549" fill="#C3A121" width="2.25" height="10"></rect>
  1201. <rect x="1089.042" y="685.218" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1202. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1203. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1204. d="M1090.292,689.299c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1205. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1206. x1="1111.792" y1="685.218" x2="1089.042" y2="724.549"></line>
  1207. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1208. x1="1100.417" y1="717.049" x2="1108.585" y2="717.049"></line>
  1209. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1210. x1="1100.417" y1="720.799" x2="1108.585" y2="720.799"></line>
  1211. <polyline fill="#434169"
  1212. points="1052.718,669.474 1052.718,647.536 1081.917,647.536 1081.917,669.474 ">
  1213. </polyline>
  1214. <text transform="matrix(1 0 0 1 1060.0476 662.0771)" fill="#FFFFFF"
  1215. font-family="'MicrosoftYaHei'" font-size="11.8698">
  1216. #4
  1217. </text>
  1218. <text transform="matrix(1 0 0 1 1026.6648 746.8857)" fill="#FFFFFF"
  1219. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1220. #7
  1221. </text>
  1222. <text transform="matrix(1 0 0 1 1089.9148 746.8857)" fill="#FFFFFF"
  1223. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1224. #8
  1225. </text>
  1226. <rect x="952.405" y="590.029" fill="#C3A121" width="2.25" height="25.978"></rect>
  1227. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1228. points="950.309,620.9 953.553,624.109 956.577,620.9 "></polyline>
  1229. <rect x="918.795" y="634.273" fill="#C3A121" width="2.25" height="50.942"></rect>
  1230. <rect x="918.795" y="725.549" fill="#C3A121" width="2.25" height="10"></rect>
  1231. <rect x="985.045" y="634.273" fill="#C3A121" width="2.25" height="50.942"></rect>
  1232. <rect x="919.3" y="634.273" fill="#C3A121" width="17.576" height="2.25"></rect>
  1233. <rect x="969.593" y="634.273" fill="#C3A121" width="17.571" height="2.25"></rect>
  1234. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1235. cx="953.795" cy="625.028" r="9.021"></circle>
  1236. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1237. cx="945.899" cy="634.05" r="9.021"></circle>
  1238. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1239. x1="953.876" y1="624.195" x2="953.876" y2="629.854"></line>
  1240. <polygon fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1241. points="942.858,636.96 949.376,636.96 945.94,631.585 "></polygon>
  1242. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1243. cx="961.69" cy="634.05" r="9.021"></circle>
  1244. <polygon fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1245. points="958.651,636.96 965.171,636.96 961.733,631.585 "></polygon>
  1246. <rect x="908.546" y="685.218" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1247. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1248. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1249. d="M909.796,689.299c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1250. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1251. x1="931.295" y1="685.218" x2="908.546" y2="724.549"></line>
  1252. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10" x1="919.92"
  1253. y1="717.049" x2="928.089" y2="717.049"></line>
  1254. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10" x1="919.92"
  1255. y1="720.799" x2="928.089" y2="720.799"></line>
  1256. <rect x="985.42" y="725.549" fill="#C3A121" width="2.25" height="10"></rect>
  1257. <rect x="975.17" y="685.218" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1258. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1259. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1260. d="M976.42,689.299c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1261. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10" x1="997.92"
  1262. y1="685.218" x2="975.17" y2="724.549"></line>
  1263. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1264. x1="986.545" y1="717.049" x2="994.714" y2="717.049"></line>
  1265. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1266. x1="986.545" y1="720.799" x2="994.714" y2="720.799"></line>
  1267. <polyline fill="#434169"
  1268. points="938.844,669.474 938.844,647.536 968.045,647.536 968.045,669.474 ">
  1269. </polyline>
  1270. <text transform="matrix(1 0 0 1 946.1755 662.0771)" fill="#FFFFFF"
  1271. font-family="'MicrosoftYaHei'" font-size="11.8698">
  1272. #2
  1273. </text>
  1274. <text transform="matrix(1 0 0 1 912.7927 746.8857)" fill="#FFFFFF"
  1275. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1276. #3
  1277. </text>
  1278. <text transform="matrix(1 0 0 1 976.0427 746.8857)" fill="#FFFFFF"
  1279. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1280. #4
  1281. </text>
  1282. <rect x="1178.565" y="590.029" fill="#C3A121" width="2.25" height="25.978"></rect>
  1283. <rect x="1403.895" y="590.029" fill="#C3A121" width="2.25" height="25.978"></rect>
  1284. <rect x="1144.19" y="634.124" fill="#C3A121" width="2.25" height="50.942"></rect>
  1285. <rect x="1144.19" y="725.4" fill="#C3A121" width="2.25" height="10"></rect>
  1286. <rect x="1210.44" y="634.124" fill="#C3A121" width="2.25" height="50.942"></rect>
  1287. <rect x="1144.696" y="634.124" fill="#C3A121" width="17.578" height="2.25"></rect>
  1288. <rect x="1194.989" y="634.124" fill="#C3A121" width="17.576" height="2.25"></rect>
  1289. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1290. cx="1179.19" cy="624.879" r="9.021"></circle>
  1291. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1292. cx="1171.298" cy="633.902" r="9.021"></circle>
  1293. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1294. points="1175.964,620.752 1179.208,623.961 1182.231,620.752 "></polyline>
  1295. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1296. points="1401.802,620.752 1405.044,623.961 1408.067,620.752 "></polyline>
  1297. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1298. x1="1179.274" y1="624.047" x2="1179.274" y2="629.704"></line>
  1299. <polygon fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1300. points="1168.257,636.812 1174.774,636.812 1171.339,631.437 "></polygon>
  1301. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1302. cx="1187.089" cy="633.902" r="9.021"></circle>
  1303. <polygon fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1304. points="1184.05,636.812 1190.567,636.812 1187.132,631.437 "></polygon>
  1305. <rect x="1133.94" y="685.069" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1306. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1307. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1308. d="M1135.19,689.15c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1309. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1310. x1="1156.69" y1="685.069" x2="1133.94" y2="724.4"></line>
  1311. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1312. x1="1145.315" y1="716.9" x2="1153.485" y2="716.9"></line>
  1313. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1314. x1="1145.315" y1="720.65" x2="1153.485" y2="720.65"></line>
  1315. <rect x="1210.815" y="725.4" fill="#C3A121" width="2.25" height="10"></rect>
  1316. <rect x="1200.565" y="685.069" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1317. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1318. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1319. d="M1201.815,689.15c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1320. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1321. x1="1223.315" y1="685.069" x2="1200.565" y2="724.4"></line>
  1322. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1323. x1="1211.94" y1="716.9" x2="1220.11" y2="716.9"></line>
  1324. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1325. x1="1211.94" y1="720.65" x2="1220.11" y2="720.65"></line>
  1326. <polyline fill="#434169"
  1327. points="1164.239,669.323 1164.239,647.39 1193.44,647.39 1193.44,669.323 ">
  1328. </polyline>
  1329. <text transform="matrix(1 0 0 1 1171.572 661.9287)" fill="#FFFFFF"
  1330. font-family="'MicrosoftYaHei'" font-size="11.8698">
  1331. #3
  1332. </text>
  1333. <text transform="matrix(1 0 0 1 1138.1902 746.7373)" fill="#FFFFFF"
  1334. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1335. #5
  1336. </text>
  1337. <text transform="matrix(1 0 0 1 1204.4402 746.7373)" fill="#FFFFFF"
  1338. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1339. #6
  1340. </text>
  1341. <rect x="1370.282" y="634.124" fill="#C3A121" width="2.25" height="50.942"></rect>
  1342. <rect x="1370.282" y="725.4" fill="#C3A121" width="2.25" height="10"></rect>
  1343. <rect x="1436.532" y="634.124" fill="#C3A121" width="2.25" height="50.942"></rect>
  1344. <rect x="1370.788" y="634.124" fill="#C3A121" width="17.578" height="2.25"></rect>
  1345. <rect x="1421.083" y="634.124" fill="#C3A121" width="17.572" height="2.25"></rect>
  1346. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1347. cx="1405.282" cy="624.879" r="9.021"></circle>
  1348. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1349. cx="1397.389" cy="633.902" r="9.021"></circle>
  1350. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1351. x1="1405.366" y1="624.047" x2="1405.366" y2="629.704"></line>
  1352. <polygon fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1353. points="1394.348,636.812 1400.866,636.812 1397.43,631.437 "></polygon>
  1354. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1355. cx="1413.18" cy="633.902" r="9.021"></circle>
  1356. <polygon fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1357. points="1410.141,636.812 1416.659,636.812 1413.223,631.437 "></polygon>
  1358. <rect x="1360.034" y="685.069" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1359. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1360. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1361. d="M1361.284,689.15c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1362. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1363. x1="1382.782" y1="685.069" x2="1360.034" y2="724.4"></line>
  1364. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1365. x1="1371.407" y1="716.9" x2="1379.577" y2="716.9"></line>
  1366. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1367. x1="1371.407" y1="720.65" x2="1379.577" y2="720.65"></line>
  1368. <rect x="1436.907" y="725.4" fill="#C3A121" width="2.25" height="10"></rect>
  1369. <rect x="1426.657" y="685.069" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1370. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1371. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1372. d="M1427.907,689.15c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1373. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1374. x1="1449.407" y1="685.069" x2="1426.657" y2="724.4"></line>
  1375. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1376. x1="1438.032" y1="716.9" x2="1446.202" y2="716.9"></line>
  1377. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1378. x1="1438.032" y1="720.65" x2="1446.202" y2="720.65"></line>
  1379. <polyline fill="#434169"
  1380. points="1390.335,669.323 1390.335,647.39 1419.532,647.39 1419.532,669.323 ">
  1381. </polyline>
  1382. <text transform="matrix(1 0 0 1 1397.6648 661.9287)" fill="#FFFFFF"
  1383. font-family="'MicrosoftYaHei'" font-size="11.8698">
  1384. #7
  1385. </text>
  1386. <text transform="matrix(1 0 0 1 1364.282 746.7373)" fill="#FFFFFF"
  1387. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1388. #13
  1389. </text>
  1390. <text transform="matrix(1 0 0 1 1427.532 746.7373)" fill="#FFFFFF"
  1391. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1392. #14
  1393. </text>
  1394. <rect x="1290.022" y="590.029" fill="#C3A121" width="2.25" height="25.978"></rect>
  1395. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1396. points="1287.927,620.752 1291.173,623.961 1294.194,620.752 "></polyline>
  1397. <rect x="1256.409" y="634.124" fill="#C3A121" width="2.25" height="50.942"></rect>
  1398. <rect x="1256.409" y="725.4" fill="#C3A121" width="2.25" height="10"></rect>
  1399. <rect x="1322.659" y="634.124" fill="#C3A121" width="2.25" height="50.942"></rect>
  1400. <rect x="1256.917" y="634.124" fill="#C3A121" width="17.576" height="2.25"></rect>
  1401. <rect x="1307.21" y="634.124" fill="#C3A121" width="17.572" height="2.25"></rect>
  1402. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1403. cx="1291.409" cy="624.879" r="9.021"></circle>
  1404. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1405. cx="1283.516" cy="633.902" r="9.021"></circle>
  1406. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1407. x1="1291.493" y1="624.047" x2="1291.493" y2="629.704"></line>
  1408. <polygon fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1409. points="1280.475,636.812 1286.993,636.812 1283.557,631.437 "></polygon>
  1410. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1411. cx="1299.307" cy="633.902" r="9.021"></circle>
  1412. <polygon fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1413. points="1296.268,636.812 1302.786,636.812 1299.35,631.437 "></polygon>
  1414. <rect x="1246.161" y="685.069" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1415. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1416. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1417. d="M1247.411,689.15c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1418. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1419. x1="1268.909" y1="685.069" x2="1246.161" y2="724.4"></line>
  1420. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1421. x1="1257.534" y1="716.9" x2="1265.704" y2="716.9"></line>
  1422. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1423. x1="1257.534" y1="720.65" x2="1265.704" y2="720.65"></line>
  1424. <rect x="1323.034" y="725.4" fill="#C3A121" width="2.25" height="10"></rect>
  1425. <rect x="1312.784" y="685.069" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1426. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1427. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1428. d="M1314.034,689.15c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1429. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1430. x1="1335.534" y1="685.069" x2="1312.784" y2="724.4"></line>
  1431. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1432. x1="1324.159" y1="716.9" x2="1332.329" y2="716.9"></line>
  1433. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1434. x1="1324.159" y1="720.65" x2="1332.329" y2="720.65"></line>
  1435. <polyline fill="#434169"
  1436. points="1276.46,669.323 1276.46,647.39 1305.659,647.39 1305.659,669.323 ">
  1437. </polyline>
  1438. <text transform="matrix(1 0 0 1 1283.7927 661.9287)" fill="#FFFFFF"
  1439. font-family="'MicrosoftYaHei'" font-size="11.8698">
  1440. #6
  1441. </text>
  1442. <text transform="matrix(1 0 0 1 1250.4099 746.7373)" fill="#FFFFFF"
  1443. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1444. #11
  1445. </text>
  1446. <text transform="matrix(1 0 0 1 1313.6599 746.7373)" fill="#FFFFFF"
  1447. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1448. #12
  1449. </text>
  1450. <rect x="1518.577" y="590.029" fill="#C3A121" width="2.25" height="25.978"></rect>
  1451. <rect x="1743.907" y="590.029" fill="#C3A121" width="2.25" height="25.978"></rect>
  1452. <rect x="1484.202" y="634.124" fill="#C3A121" width="2.25" height="50.942"></rect>
  1453. <rect x="1484.202" y="725.4" fill="#C3A121" width="2.25" height="10"></rect>
  1454. <rect x="1550.452" y="634.124" fill="#C3A121" width="2.25" height="50.942"></rect>
  1455. <rect x="1484.71" y="634.124" fill="#C3A121" width="17.576" height="2.25"></rect>
  1456. <rect x="1535.001" y="634.124" fill="#C3A121" width="17.575" height="2.25"></rect>
  1457. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1458. cx="1519.202" cy="624.879" r="9.021"></circle>
  1459. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1460. cx="1511.307" cy="633.902" r="9.021"></circle>
  1461. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1462. points="1515.973,620.752 1519.219,623.961 1522.243,620.752 "></polyline>
  1463. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1464. points="1741.811,620.752 1745.055,623.961 1748.079,620.752 "></polyline>
  1465. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1466. x1="1519.286" y1="624.047" x2="1519.286" y2="629.704"></line>
  1467. <polygon fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1468. points="1508.266,636.812 1514.786,636.812 1511.348,631.437 "></polygon>
  1469. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1470. cx="1527.098" cy="633.902" r="9.021"></circle>
  1471. <polygon fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1472. points="1524.059,636.812 1530.579,636.812 1527.141,631.437 "></polygon>
  1473. <rect x="1473.952" y="685.069" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1474. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1475. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1476. d="M1475.202,689.15c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1477. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1478. x1="1496.702" y1="685.069" x2="1473.952" y2="724.4"></line>
  1479. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1480. x1="1485.327" y1="716.9" x2="1493.497" y2="716.9"></line>
  1481. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1482. x1="1485.327" y1="720.65" x2="1493.497" y2="720.65"></line>
  1483. <rect x="1550.827" y="725.4" fill="#C3A121" width="2.25" height="10"></rect>
  1484. <rect x="1540.577" y="685.069" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1485. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1486. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1487. d="M1541.827,689.15c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1488. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1489. x1="1563.327" y1="685.069" x2="1540.577" y2="724.4"></line>
  1490. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1491. x1="1551.952" y1="716.9" x2="1560.122" y2="716.9"></line>
  1492. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1493. x1="1551.952" y1="720.65" x2="1560.122" y2="720.65"></line>
  1494. <polyline fill="#434169"
  1495. points="1504.251,669.323 1504.251,647.39 1533.452,647.39 1533.452,669.323 ">
  1496. </polyline>
  1497. <text transform="matrix(1 0 0 1 1511.5837 661.9287)" fill="#FFFFFF"
  1498. font-family="'MicrosoftYaHei'" font-size="11.8698">
  1499. #5
  1500. </text>
  1501. <text transform="matrix(1 0 0 1 1478.2019 746.7373)" fill="#FFFFFF"
  1502. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1503. #9
  1504. </text>
  1505. <text transform="matrix(1 0 0 1 1544.4519 746.7373)" fill="#FFFFFF"
  1506. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1507. #10
  1508. </text>
  1509. <rect x="1710.294" y="634.124" fill="#C3A121" width="2.25" height="50.942"></rect>
  1510. <rect x="1710.294" y="725.4" fill="#C3A121" width="2.25" height="10"></rect>
  1511. <rect x="1776.544" y="634.124" fill="#C3A121" width="2.25" height="50.942"></rect>
  1512. <rect x="1710.802" y="634.124" fill="#C3A121" width="17.577" height="2.25"></rect>
  1513. <rect x="1761.094" y="634.124" fill="#C3A121" width="17.572" height="2.25"></rect>
  1514. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1515. cx="1745.294" cy="624.879" r="9.021"></circle>
  1516. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1517. cx="1737.401" cy="633.902" r="9.021"></circle>
  1518. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1519. x1="1745.378" y1="624.047" x2="1745.378" y2="629.704"></line>
  1520. <polygon fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1521. points="1734.36,636.812 1740.878,636.812 1737.442,631.437 "></polygon>
  1522. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1523. cx="1753.192" cy="633.902" r="9.021"></circle>
  1524. <polygon fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1525. points="1750.153,636.812 1756.673,636.812 1753.235,631.437 "></polygon>
  1526. <rect x="1700.048" y="685.069" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1527. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1528. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1529. d="M1701.298,689.15c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1530. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1531. x1="1722.794" y1="685.069" x2="1700.048" y2="724.4"></line>
  1532. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1533. x1="1711.419" y1="716.9" x2="1719.591" y2="716.9"></line>
  1534. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1535. x1="1711.419" y1="720.65" x2="1719.591" y2="720.65"></line>
  1536. <rect x="1776.919" y="725.4" fill="#C3A121" width="2.25" height="10"></rect>
  1537. <rect x="1766.669" y="685.069" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1538. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1539. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1540. d="M1767.919,689.15c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1541. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1542. x1="1789.419" y1="685.069" x2="1766.669" y2="724.4"></line>
  1543. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1544. x1="1778.044" y1="716.9" x2="1786.216" y2="716.9"></line>
  1545. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1546. x1="1778.044" y1="720.65" x2="1786.216" y2="720.65"></line>
  1547. <polyline fill="#434169"
  1548. points="1730.344,669.323 1730.344,647.39 1759.544,647.39 1759.544,669.323 ">
  1549. </polyline>
  1550. <text transform="matrix(1 0 0 1 1737.6765 661.9287)" fill="#FFFFFF"
  1551. font-family="'MicrosoftYaHei'" font-size="11.8698">
  1552. #9
  1553. </text>
  1554. <text transform="matrix(1 0 0 1 1704.2937 746.7373)" fill="#FFFFFF"
  1555. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1556. #17
  1557. </text>
  1558. <text transform="matrix(1 0 0 1 1767.5437 746.7373)" fill="#FFFFFF"
  1559. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1560. #18
  1561. </text>
  1562. <rect x="1630.034" y="590.029" fill="#C3A121" width="2.25" height="25.978"></rect>
  1563. <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1564. points="1627.938,620.752 1631.182,623.961 1634.208,620.752 "></polyline>
  1565. <rect x="1596.423" y="634.124" fill="#C3A121" width="2.25" height="50.942"></rect>
  1566. <rect x="1663.669" y="634.124" fill="#C3A121" width="2.25" height="50.942"></rect>
  1567. <rect x="1596.423" y="725.4" fill="#C3A121" width="2.25" height="10"></rect>
  1568. <rect x="1596.927" y="634.124" fill="#C3A121" width="17.578" height="2.25"></rect>
  1569. <rect x="1647.219" y="634.124" fill="#C3A121" width="17.572" height="2.25"></rect>
  1570. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1571. cx="1631.423" cy="624.879" r="9.021"></circle>
  1572. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1573. cx="1623.528" cy="633.902" r="9.021"></circle>
  1574. <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1575. x1="1631.507" y1="624.047" x2="1631.507" y2="629.704"></line>
  1576. <polygon fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1577. points="1620.487,636.812 1627.007,636.812 1623.569,631.437 "></polygon>
  1578. <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1579. cx="1639.319" cy="633.902" r="9.021"></circle>
  1580. <polygon fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10"
  1581. points="1636.28,636.812 1642.8,636.812 1639.362,631.437 "></polygon>
  1582. <rect x="1586.175" y="685.069" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1583. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1584. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1585. d="M1587.425,689.15c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1586. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1587. x1="1608.923" y1="685.069" x2="1586.175" y2="724.4"></line>
  1588. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1589. x1="1597.548" y1="716.9" x2="1605.718" y2="716.9"></line>
  1590. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1591. x1="1597.548" y1="720.65" x2="1605.718" y2="720.65"></line>
  1592. <rect x="1663.048" y="725.4" fill="#C3A121" width="2.25" height="10"></rect>
  1593. <rect x="1652.798" y="685.069" fill="none" stroke="#F7F9F9" stroke-width="1.3"
  1594. stroke-miterlimit="10" width="24" height="40.331"></rect>
  1595. <path fill="none" stroke="#BF1D20" stroke-width="1.2" stroke-miterlimit="10"
  1596. d="M1654.048,689.15c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3"></path>
  1597. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1598. x1="1675.548" y1="685.069" x2="1652.798" y2="724.4"></line>
  1599. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1600. x1="1664.173" y1="716.9" x2="1672.343" y2="716.9"></line>
  1601. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1602. x1="1664.173" y1="720.65" x2="1672.343" y2="720.65"></line>
  1603. <polyline fill="#434169"
  1604. points="1616.471,669.323 1616.471,647.39 1645.673,647.39 1645.673,669.323 ">
  1605. </polyline>
  1606. <text transform="matrix(1 0 0 1 1623.8044 661.9287)" fill="#FFFFFF"
  1607. font-family="'MicrosoftYaHei'" font-size="11.8698">
  1608. #8
  1609. </text>
  1610. <text transform="matrix(1 0 0 1 1590.4216 746.7373)" fill="#FFFFFF"
  1611. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1612. #15
  1613. </text>
  1614. <text transform="matrix(1 0 0 1 1653.6716 746.7373)" fill="#FFFFFF"
  1615. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1616. #16
  1617. </text>
  1618. <text transform="matrix(1 0 0 1 220.0471 776.1514)" fill="#FFFFFF"
  1619. font-family="'MicrosoftYaHei'" font-size="15">
  1620. 输入电压(V):
  1621. </text>
  1622. <text transform="matrix(1 0 0 1 209.4182 812.1738)" fill="#FFFFFF"
  1623. font-family="'MicrosoftYaHei'" font-size="15">
  1624. 输出功率(kW):
  1625. </text>
  1626. <text transform="matrix(1 0 0 1 202.0281 848.1982)" fill="#FFFFFF"
  1627. font-family="'MicrosoftYaHei'" font-size="15">
  1628. 日发电量(kWh):
  1629. </text>
  1630. <text transform="matrix(1 0 0 1 196.8381 884.2197)" fill="#FFFFFF"
  1631. font-family="'MicrosoftYaHei'" font-size="15">
  1632. 总发电量(MWh):
  1633. </text>
  1634. </g>
  1635. <g id="block">
  1636. <g>
  1637. <polyline fill="none" :stroke="ajaxData.mchsc301 ? red : green"
  1638. stroke-miterlimit="10" points="551.775,78.52 558.598,70.8 565.618,78.52 ">
  1639. </polyline>
  1640. <polyline fill="none" :stroke="ajaxData.mchsc301 ? red : green"
  1641. stroke-miterlimit="10" points="551.775,84.369 558.598,76.65 565.618,84.369 ">
  1642. </polyline>
  1643. <polyline fill="none" :stroke="ajaxData.mchsc301 ? red : green"
  1644. stroke-miterlimit="10"
  1645. points="565.618,120.813 558.797,128.534 551.775,120.813 "></polyline>
  1646. <polyline fill="none" :stroke="ajaxData.mchsc301 ? red : green"
  1647. stroke-miterlimit="10"
  1648. points="565.618,116.035 558.797,123.758 551.775,116.035 "></polyline>
  1649. </g>
  1650. <g>
  1651. <polyline fill="none" :stroke="ajaxData.mchsc501 ? red : green"
  1652. stroke-miterlimit="10"
  1653. points="551.775,197.849 558.598,190.13 565.618,197.849 "></polyline>
  1654. <polyline fill="none" :stroke="ajaxData.mchsc501 ? red : green"
  1655. stroke-miterlimit="10"
  1656. points="551.775,203.698 558.598,195.979 565.618,203.698 "></polyline>
  1657. <polyline fill="none" :stroke="ajaxData.mchsc501 ? red : green"
  1658. stroke-miterlimit="10"
  1659. points="565.618,240.142 558.797,247.864 551.775,240.142 "></polyline>
  1660. <polyline fill="none" :stroke="ajaxData.mchsc501 ? red : green"
  1661. stroke-miterlimit="10"
  1662. points="565.618,235.364 558.797,243.087 551.775,235.364 "></polyline>
  1663. </g>
  1664. <g>
  1665. <polyline fill="none" :stroke="ajaxData.mchsc519 ? red : green"
  1666. stroke-miterlimit="10" points="62.969,341.182 69.793,333.459 76.813,341.182 ">
  1667. </polyline>
  1668. <polyline fill="none" :stroke="ajaxData.mchsc519 ? red : green"
  1669. stroke-miterlimit="10" points="62.969,334.021 69.793,326.299 76.813,334.021 ">
  1670. </polyline>
  1671. </g>
  1672. <g>
  1673. <polyline fill="none" :stroke="ajaxData.mchsc515 ? red : green" stroke-width="1.3"
  1674. stroke-miterlimit="10"
  1675. points="148.859,373.619 142.037,381.34 135.016,373.619 "></polyline>
  1676. <polyline fill="none" :stroke="ajaxData.mchsc515 ? red : green" stroke-width="1.3"
  1677. stroke-miterlimit="10"
  1678. points="148.859,367.771 142.037,375.49 135.016,367.771 "></polyline>
  1679. <polyline fill="none" :stroke="ajaxData.mchsc515 ? red : green" stroke-width="1.3"
  1680. stroke-miterlimit="10"
  1681. points="135.016,336.105 141.84,328.383 148.859,336.105 "></polyline>
  1682. <polyline fill="none" :stroke="ajaxData.mchsc515 ? red : green" stroke-width="1.3"
  1683. stroke-miterlimit="10"
  1684. points="135.016,328.945 141.84,321.223 148.859,328.945 "></polyline>
  1685. </g>
  1686. <g>
  1687. <polyline fill="none" :stroke="ajaxData.mchsc514 ? red : green" stroke-width="1.3"
  1688. stroke-miterlimit="10"
  1689. points="287.017,373.619 280.195,381.34 273.173,373.619 "></polyline>
  1690. <polyline fill="none" :stroke="ajaxData.mchsc514 ? red : green" stroke-width="1.3"
  1691. stroke-miterlimit="10"
  1692. points="287.017,367.771 280.195,375.49 273.173,367.771 "></polyline>
  1693. <polyline fill="none" :stroke="ajaxData.mchsc514 ? red : green" stroke-width="1.3"
  1694. stroke-miterlimit="10"
  1695. points="273.173,336.105 279.998,328.383 287.017,336.105 "></polyline>
  1696. <polyline fill="none" :stroke="ajaxData.mchsc514 ? red : green" stroke-width="1.3"
  1697. stroke-miterlimit="10"
  1698. points="273.173,328.945 279.998,321.223 287.017,328.945 "></polyline>
  1699. </g>
  1700. <g>
  1701. <polyline fill="none" :stroke="ajaxData.mchsc513 ? red : green"
  1702. stroke-miterlimit="10"
  1703. points="414.581,328.942 421.404,321.223 428.426,328.942 "></polyline>
  1704. <polyline fill="none" :stroke="ajaxData.mchsc513 ? red : green"
  1705. stroke-miterlimit="10"
  1706. points="414.581,334.792 421.404,327.073 428.426,334.792 "></polyline>
  1707. <polyline fill="none" :stroke="ajaxData.mchsc513 ? red : green"
  1708. stroke-miterlimit="10"
  1709. points="428.426,371.235 421.601,378.955 414.581,371.235 "></polyline>
  1710. <polyline fill="none" :stroke="ajaxData.mchsc513 ? red : green"
  1711. stroke-miterlimit="10"
  1712. points="428.426,366.458 421.601,374.181 414.581,366.458 "></polyline>
  1713. </g>
  1714. <g>
  1715. <polyline fill="none" :stroke="ajaxData.mchsc512 ? red : green"
  1716. stroke-miterlimit="10"
  1717. points="550.65,328.942 557.473,321.223 564.493,328.942 "></polyline>
  1718. <polyline fill="none" :stroke="ajaxData.mchsc512 ? red : green"
  1719. stroke-miterlimit="10"
  1720. points="550.65,334.792 557.473,327.073 564.493,334.792 "></polyline>
  1721. <polyline fill="none" :stroke="ajaxData.mchsc512 ? red : green"
  1722. stroke-miterlimit="10"
  1723. points="564.493,371.235 557.672,378.955 550.65,371.235 "></polyline>
  1724. <polyline fill="none" :stroke="ajaxData.mchsc512 ? red : green"
  1725. stroke-miterlimit="10"
  1726. points="564.493,366.458 557.672,374.181 550.65,366.458 "></polyline>
  1727. </g>
  1728. <g>
  1729. <polyline fill="none" :stroke="ajaxData.mchsc511 ? red : green"
  1730. stroke-miterlimit="10" points="695.157,328.942 701.98,321.223 709,328.942 ">
  1731. </polyline>
  1732. <polyline fill="none" :stroke="ajaxData.mchsc511 ? red : green"
  1733. stroke-miterlimit="10" points="695.157,334.792 701.98,327.073 709,334.792 ">
  1734. </polyline>
  1735. <polyline fill="none" :stroke="ajaxData.mchsc511 ? red : green"
  1736. stroke-miterlimit="10" points="709,371.235 702.177,378.955 695.157,371.235 ">
  1737. </polyline>
  1738. <polyline fill="none" :stroke="ajaxData.mchsc511 ? red : green"
  1739. stroke-miterlimit="10" points="709,366.458 702.177,374.181 695.157,366.458 ">
  1740. </polyline>
  1741. </g>
  1742. <g>
  1743. <polyline fill="none" :stroke="ajaxData.mchsc521 ? red : green"
  1744. stroke-miterlimit="10"
  1745. points="784.255,328.942 791.077,321.223 798.097,328.942 "></polyline>
  1746. <polyline fill="none" :stroke="ajaxData.mchsc521 ? red : green"
  1747. stroke-miterlimit="10"
  1748. points="784.255,334.792 791.077,327.073 798.097,334.792 "></polyline>
  1749. <polyline fill="none" :stroke="ajaxData.mchsc521 ? red : green"
  1750. stroke-miterlimit="10"
  1751. points="798.097,371.235 791.273,378.955 784.255,371.235 "></polyline>
  1752. <polyline fill="none" :stroke="ajaxData.mchsc521 ? red : green"
  1753. stroke-miterlimit="10"
  1754. points="798.097,366.458 791.273,374.181 784.255,366.458 "></polyline>
  1755. </g>
  1756. <g>
  1757. <polyline fill="none" :stroke="ajaxData.mchsc522 ? red : green" stroke-width="1.3"
  1758. stroke-miterlimit="10"
  1759. points="937.016,373.619 930.194,381.34 923.174,373.619 "></polyline>
  1760. <polyline fill="none" :stroke="ajaxData.mchsc522 ? red : green" stroke-width="1.3"
  1761. stroke-miterlimit="10"
  1762. points="937.016,367.771 930.194,375.49 923.174,367.771 "></polyline>
  1763. <polyline fill="none" :stroke="ajaxData.mchsc522 ? red : green" stroke-width="1.3"
  1764. stroke-miterlimit="10"
  1765. points="923.174,336.105 929.997,328.383 937.016,336.105 "></polyline>
  1766. <polyline fill="none" :stroke="ajaxData.mchsc522 ? red : green" stroke-width="1.3"
  1767. stroke-miterlimit="10"
  1768. points="923.174,328.945 929.997,321.223 937.016,328.945 "></polyline>
  1769. </g>
  1770. <g>
  1771. <polyline fill="none" :stroke="ajaxData.mchsc523 ? red : green" stroke-width="1.3"
  1772. stroke-miterlimit="10"
  1773. points="1078.016,373.619 1071.194,381.34 1064.174,373.619 "></polyline>
  1774. <polyline fill="none" :stroke="ajaxData.mchsc523 ? red : green" stroke-width="1.3"
  1775. stroke-miterlimit="10"
  1776. points="1078.016,367.771 1071.194,375.49 1064.174,367.771 "></polyline>
  1777. <polyline fill="none" :stroke="ajaxData.mchsc523 ? red : green" stroke-width="1.3"
  1778. stroke-miterlimit="10"
  1779. points="1064.174,336.105 1070.997,328.383 1078.016,336.105 "></polyline>
  1780. <polyline fill="none" :stroke="ajaxData.mchsc523 ? red : green" stroke-width="1.3"
  1781. stroke-miterlimit="10"
  1782. points="1064.174,328.945 1070.997,321.223 1078.016,328.945 "></polyline>
  1783. </g>
  1784. <g>
  1785. <polyline fill="none" :stroke="ajaxData.mchsc524 ? red : green"
  1786. stroke-miterlimit="10"
  1787. points="1203.805,328.942 1210.627,321.223 1217.649,328.942 "></polyline>
  1788. <polyline fill="none" :stroke="ajaxData.mchsc524 ? red : green"
  1789. stroke-miterlimit="10"
  1790. points="1203.805,334.792 1210.627,327.073 1217.649,334.792 "></polyline>
  1791. <polyline fill="none" :stroke="ajaxData.mchsc524 ? red : green"
  1792. stroke-miterlimit="10"
  1793. points="1217.649,371.235 1210.825,378.955 1203.805,371.235 "></polyline>
  1794. <polyline fill="none" :stroke="ajaxData.mchsc524 ? red : green"
  1795. stroke-miterlimit="10"
  1796. points="1217.649,366.458 1210.825,374.181 1203.805,366.458 "></polyline>
  1797. </g>
  1798. <g>
  1799. <polyline fill="none" :stroke="ajaxData.mchsc525 ? red : green"
  1800. stroke-miterlimit="10"
  1801. points="1342.088,328.942 1348.909,321.223 1355.93,328.942 "></polyline>
  1802. <polyline fill="none" :stroke="ajaxData.mchsc525 ? red : green"
  1803. stroke-miterlimit="10"
  1804. points="1342.088,334.792 1348.909,327.073 1355.93,334.792 "></polyline>
  1805. <polyline fill="none" :stroke="ajaxData.mchsc525 ? red : green"
  1806. stroke-miterlimit="10"
  1807. points="1355.93,371.235 1349.106,378.955 1342.088,371.235 "></polyline>
  1808. <polyline fill="none" :stroke="ajaxData.mchsc525 ? red : green"
  1809. stroke-miterlimit="10"
  1810. points="1355.93,366.458 1349.106,374.181 1342.088,366.458 "></polyline>
  1811. </g>
  1812. <g>
  1813. <polyline fill="none" :stroke="ajaxData.mchsc526 ? red : green"
  1814. stroke-miterlimit="10"
  1815. points="1484.666,328.942 1491.487,321.223 1498.51,328.942 "></polyline>
  1816. <polyline fill="none" :stroke="ajaxData.mchsc526 ? red : green"
  1817. stroke-miterlimit="10"
  1818. points="1484.666,334.792 1491.487,327.073 1498.51,334.792 "></polyline>
  1819. <polyline fill="none" :stroke="ajaxData.mchsc526 ? red : green"
  1820. stroke-miterlimit="10"
  1821. points="1498.51,371.235 1491.684,378.955 1484.666,371.235 "></polyline>
  1822. <polyline fill="none" :stroke="ajaxData.mchsc526 ? red : green"
  1823. stroke-miterlimit="10"
  1824. points="1498.51,366.458 1491.684,374.181 1484.666,366.458 "></polyline>
  1825. </g>
  1826. <g>
  1827. <polyline fill="none" :stroke="ajaxData.mchsc527 ? red : green"
  1828. stroke-miterlimit="10"
  1829. points="1623.829,328.942 1630.651,321.223 1637.674,328.942 "></polyline>
  1830. <polyline fill="none" :stroke="ajaxData.mchsc527 ? red : green"
  1831. stroke-miterlimit="10"
  1832. points="1623.829,334.792 1630.651,327.073 1637.674,334.792 "></polyline>
  1833. <polyline fill="none" :stroke="ajaxData.mchsc527 ? red : green"
  1834. stroke-miterlimit="10"
  1835. points="1637.674,371.235 1630.848,378.955 1623.829,371.235 "></polyline>
  1836. <polyline fill="none" :stroke="ajaxData.mchsc527 ? red : green"
  1837. stroke-miterlimit="10"
  1838. points="1637.674,366.458 1630.848,374.181 1623.829,366.458 "></polyline>
  1839. </g>
  1840. <g>
  1841. <polyline fill="none" :stroke="ajaxData.mchsc529 ? red : green"
  1842. stroke-miterlimit="10"
  1843. points="1765.332,341.182 1772.155,333.459 1779.176,341.182 "></polyline>
  1844. <polyline fill="none" :stroke="ajaxData.mchsc529 ? red : green"
  1845. stroke-miterlimit="10"
  1846. points="1765.332,334.021 1772.155,326.299 1779.176,334.021 "></polyline>
  1847. </g>
  1848. </g>
  1849. <g id="arrow">
  1850. <g>
  1851. <rect x="551.328" y="87.473" :fill="ajaxData.mchdlq301 ? red : green" width="15.462"
  1852. height="24.008"></rect>
  1853. <rect x="551.328" y="206.802" :fill="ajaxData.mchdlq501 ? red : green"
  1854. width="15.462" height="24.008"></rect>
  1855. <rect x="134.206" y="340.658" :fill="ajaxData.mchdlq515 ? red : green"
  1856. width="15.463" height="24.01"></rect>
  1857. <rect x="272.364" y="340.658" :fill="ajaxData.mchdlq514 ? red : green"
  1858. width="15.463" height="24.01"></rect>
  1859. <rect x="414.135" y="337.896" :fill="ajaxData.mchdlq513 ? red : green"
  1860. width="15.464" height="24.008"></rect>
  1861. <rect x="550.203" y="337.896" :fill="ajaxData.mchdlq512 ? red : green"
  1862. width="15.462" height="24.008"></rect>
  1863. <rect x="694.714" y="337.896" :fill="ajaxData.mchdlq511 ? red : green"
  1864. width="15.462" height="24.008"></rect>
  1865. <rect x="783.807" y="337.896" :fill="ajaxData.mchdlq521 ? red : green"
  1866. width="15.462" height="24.008"></rect>
  1867. <rect x="922.362" y="340.658" :fill="ajaxData.mchdlq522 ? red : green"
  1868. width="15.463" height="24.01"></rect>
  1869. <rect x="1063.362" y="340.658" :fill="ajaxData.mchdlq523 ? red : green"
  1870. width="15.463" height="24.01"></rect>
  1871. <rect x="1203.358" y="337.896" :fill="ajaxData.mchdlq524 ? red : green"
  1872. width="15.463" height="24.008"></rect>
  1873. <rect x="1341.639" y="337.896" :fill="ajaxData.mchdlq525 ? red : green"
  1874. width="15.463" height="24.008"></rect>
  1875. <rect x="1484.219" y="337.896" :fill="ajaxData.mchdlq526 ? red : green"
  1876. width="15.463" height="24.008"></rect>
  1877. <rect x="1623.385" y="337.896" :fill="ajaxData.mchdlq527 ? red : green"
  1878. width="15.463" height="24.008"></rect>
  1879. </g>
  1880. <g>
  1881. <rect x="363.817" y="644.523" fill="#D9281C" width="14.25" height="35.772"></rect>
  1882. <rect x="428.812" y="644.523" fill="#D9281C" width="14.25" height="35.772"></rect>
  1883. <rect x="485.781" y="644.523" fill="#D9281C" width="14.25" height="35.772"></rect>
  1884. <rect x="550.775" y="644.523" fill="#D9281C" width="14.25" height="35.772"></rect>
  1885. <rect x="617.344" y="644.523" fill="#D9281C" width="14.25" height="35.772"></rect>
  1886. <rect x="674.312" y="644.523" fill="#D9281C" width="14.25" height="35.772"></rect>
  1887. <rect x="737.306" y="644.523" fill="#D9281C" width="14.25" height="35.772"></rect>
  1888. <rect x="800.573" y="644.523" fill="#D9281C" width="14.25" height="35.772"></rect>
  1889. <rect x="866.823" y="644.523" fill="#D9281C" width="14.25" height="35.772"></rect>
  1890. <rect x="912.796" y="644.523" fill="#D9281C" width="14.25" height="35.772"></rect>
  1891. <rect x="979.046" y="644.523" fill="#D9281C" width="14.25" height="35.772"></rect>
  1892. <rect x="1026.667" y="644.523" fill="#D9281C" width="14.25" height="35.772"></rect>
  1893. <rect x="1092.917" y="644.523" fill="#D9281C" width="14.25" height="35.772"></rect>
  1894. <rect x="1138.19" y="644.374" fill="#D9281C" width="14.25" height="35.773"></rect>
  1895. <rect x="1204.44" y="644.374" fill="#D9281C" width="14.25" height="35.773"></rect>
  1896. <rect x="1250.409" y="644.374" fill="#D9281C" width="14.25" height="35.773"></rect>
  1897. <rect x="1316.659" y="644.374" fill="#D9281C" width="14.25" height="35.773"></rect>
  1898. <rect x="1364.282" y="644.374" fill="#D9281C" width="14.25" height="35.773"></rect>
  1899. <rect x="1430.532" y="644.374" fill="#D9281C" width="14.25" height="35.773"></rect>
  1900. <rect x="1478.202" y="644.374" fill="#D9281C" width="14.25" height="35.773"></rect>
  1901. <rect x="1544.452" y="644.374" fill="#D9281C" width="14.25" height="35.773"></rect>
  1902. <rect x="1590.424" y="644.374" fill="#D9281C" width="14.25" height="35.773"></rect>
  1903. <rect x="1656.674" y="644.374" fill="#D9281C" width="14.25" height="35.773"></rect>
  1904. <rect x="1704.294" y="644.374" fill="#D9281C" width="14.25" height="35.773"></rect>
  1905. <rect x="1770.544" y="644.374" fill="#D9281C" width="14.25" height="35.773"></rect>
  1906. </g>
  1907. </g>
  1908. <g id="data">
  1909. <g>
  1910. <text transform="matrix(1 0 0 1 66.5408 137.6816)" fill="#3B8646"
  1911. font-family="'MicrosoftYaHei'" font-size="9.463">
  1912. {{ ajaxData.mchuakvz }}
  1913. </text>
  1914. <text transform="matrix(1 0 0 1 66.5393 155.377)" fill="#3B8646"
  1915. font-family="'MicrosoftYaHei'" font-size="9.463">
  1916. {{ ajaxData.mchubkvz }}
  1917. </text>
  1918. <text transform="matrix(1 0 0 1 66.5393 176.043)" fill="#3B8646"
  1919. font-family="'MicrosoftYaHei'" font-size="9.463">
  1920. {{ ajaxData.mchuckvz }}
  1921. </text>
  1922. <text transform="matrix(1 0 0 1 66.5393 196.5479)" fill="#3B8646"
  1923. font-family="'MicrosoftYaHei'" font-size="9.463">
  1924. {{ ajaxData.mchuabkvz }}
  1925. </text>
  1926. <text transform="matrix(1 0 0 1 66.5393 217.0479)" fill="#3B8646"
  1927. font-family="'MicrosoftYaHei'" font-size="9.463">
  1928. {{ ajaxData.mchubckvz }}
  1929. </text>
  1930. <text transform="matrix(1 0 0 1 66.5393 237.5479)" fill="#3B8646"
  1931. font-family="'MicrosoftYaHei'" font-size="9.463">
  1932. {{ ajaxData.mchucakvz }}
  1933. </text>
  1934. </g>
  1935. <g>
  1936. <text transform="matrix(1 0 0 1 698.8943 76.8887)" fill="#3B8646"
  1937. font-family="'MicrosoftYaHei'" font-size="9.463">
  1938. {{ ajaxData.mchlaas }}
  1939. </text>
  1940. <text transform="matrix(1 0 0 1 698.8933 96.584)" fill="#3B8646"
  1941. font-family="'MicrosoftYaHei'" font-size="9.463">
  1942. {{ ajaxData.mchpmws }}
  1943. </text>
  1944. <text transform="matrix(1 0 0 1 698.8933 117.251)" fill="#3B8646"
  1945. font-family="'MicrosoftYaHei'" font-size="9.463">
  1946. {{ ajaxData.mchqkvars }}
  1947. </text>
  1948. </g>
  1949. <g>
  1950. <text transform="matrix(1 0 0 1 698.8943 222.0996)" fill="#3B8646"
  1951. font-family="'MicrosoftYaHei'" font-size="9.463">
  1952. {{ ajaxData.mchlaax }}
  1953. </text>
  1954. <text transform="matrix(1 0 0 1 698.8933 241.7939)" fill="#3B8646"
  1955. font-family="'MicrosoftYaHei'" font-size="9.463">
  1956. {{ ajaxData.mchpmwx }}
  1957. </text>
  1958. <text transform="matrix(1 0 0 1 698.8933 262.4619)" fill="#3B8646"
  1959. font-family="'MicrosoftYaHei'" font-size="9.463">
  1960. {{ ajaxData.mchqkvarx }}
  1961. </text>
  1962. </g>
  1963. <g>
  1964. <text transform="matrix(1 0 0 1 1693.9841 137.6816)" fill="#3B8646"
  1965. font-family="'MicrosoftYaHei'" font-size="9.463">
  1966. {{ ajaxData.mchuakvy }}
  1967. </text>
  1968. <text transform="matrix(1 0 0 1 1693.9841 155.377)" fill="#3B8646"
  1969. font-family="'MicrosoftYaHei'" font-size="9.463">
  1970. {{ ajaxData.mchubkvy }}
  1971. </text>
  1972. <text transform="matrix(1 0 0 1 1693.9841 176.043)" fill="#3B8646"
  1973. font-family="'MicrosoftYaHei'" font-size="9.463">
  1974. {{ ajaxData.mchuckvy }}
  1975. </text>
  1976. <text transform="matrix(1 0 0 1 1693.9841 196.5479)" fill="#3B8646"
  1977. font-family="'MicrosoftYaHei'" font-size="9.463">
  1978. {{ ajaxData.mchuabkvy }}
  1979. </text>
  1980. <text transform="matrix(1 0 0 1 1693.9841 217.0479)" fill="#3B8646"
  1981. font-family="'MicrosoftYaHei'" font-size="9.463">
  1982. {{ ajaxData.mchubckvy }}
  1983. </text>
  1984. <text transform="matrix(1 0 0 1 1693.9841 237.5479)" fill="#3B8646"
  1985. font-family="'MicrosoftYaHei'" font-size="9.463">
  1986. {{ ajaxData.mchucakvy }}
  1987. </text>
  1988. </g>
  1989. <g>
  1990. <text transform="matrix(1 0 0 1 188.946 425.3447)" fill="#3B8646"
  1991. font-family="'MicrosoftYaHei'" font-size="9.463">
  1992. {{ ajaxData.mchla515 }}
  1993. </text>
  1994. <text transform="matrix(1 0 0 1 188.946 443.0391)" fill="#3B8646"
  1995. font-family="'MicrosoftYaHei'" font-size="9.463">
  1996. {{ ajaxData.mchp515 }}
  1997. </text>
  1998. <text transform="matrix(1 0 0 1 188.946 463.7061)" fill="#3B8646"
  1999. font-family="'MicrosoftYaHei'" font-size="9.463">
  2000. {{ ajaxData.mchq515 }}
  2001. </text>
  2002. </g>
  2003. <g>
  2004. <text transform="matrix(1 0 0 1 331.1042 425.3447)" fill="#3B8646"
  2005. font-family="'MicrosoftYaHei'" font-size="9.463">
  2006. {{ ajaxData.mchla514 }}
  2007. </text>
  2008. <text transform="matrix(1 0 0 1 331.1042 443.0391)" fill="#3B8646"
  2009. font-family="'MicrosoftYaHei'" font-size="9.463">
  2010. {{ ajaxData.mchp514 }}
  2011. </text>
  2012. <text transform="matrix(1 0 0 1 331.1042 463.7061)" fill="#3B8646"
  2013. font-family="'MicrosoftYaHei'" font-size="9.463">
  2014. {{ ajaxData.mchq514 }}
  2015. </text>
  2016. </g>
  2017. <g>
  2018. <text transform="matrix(1 0 0 1 484.4583 536.2705)" fill="#3B8646"
  2019. font-family="'MicrosoftYaHei'" font-size="9.463">
  2020. {{ ajaxData.mchla513 }}
  2021. </text>
  2022. <text transform="matrix(1 0 0 1 484.4568 553.9658)" fill="#3B8646"
  2023. font-family="'MicrosoftYaHei'" font-size="9.463">
  2024. {{ ajaxData.mchp513 }}
  2025. </text>
  2026. <text transform="matrix(1 0 0 1 484.4568 574.6318)" fill="#3B8646"
  2027. font-family="'MicrosoftYaHei'" font-size="9.463">
  2028. {{ ajaxData.mchq513 }}
  2029. </text>
  2030. </g>
  2031. <g>
  2032. <text transform="matrix(1 0 0 1 611.0935 427.9131)" fill="#3B8646"
  2033. font-family="'MicrosoftYaHei'" font-size="9.463">
  2034. {{ ajaxData.mchla512 }}
  2035. </text>
  2036. <text transform="matrix(1 0 0 1 611.0935 445.6084)" fill="#3B8646"
  2037. font-family="'MicrosoftYaHei'" font-size="9.463">
  2038. {{ ajaxData.mchp512 }}
  2039. </text>
  2040. <text transform="matrix(1 0 0 1 611.0935 466.2744)" fill="#3B8646"
  2041. font-family="'MicrosoftYaHei'" font-size="9.463">
  2042. {{ ajaxData.mchq512 }}
  2043. </text>
  2044. </g>
  2045. <g>
  2046. <text transform="matrix(1 0 0 1 738.4377 499.6943)" fill="#3B8646"
  2047. font-family="'MicrosoftYaHei'" font-size="9.463">
  2048. {{ ajaxData.mchla511 }}
  2049. </text>
  2050. <text transform="matrix(1 0 0 1 738.4377 517.3887)" fill="#3B8646"
  2051. font-family="'MicrosoftYaHei'" font-size="9.463">
  2052. {{ ajaxData.mchp511 }}
  2053. </text>
  2054. <text transform="matrix(1 0 0 1 738.4377 538.0557)" fill="#3B8646"
  2055. font-family="'MicrosoftYaHei'" font-size="9.463">
  2056. {{ ajaxData.mchq511 }}
  2057. </text>
  2058. </g>
  2059. <g>
  2060. <text transform="matrix(1 0 0 1 843.4377 434.0557)" fill="#3B8646"
  2061. font-family="'MicrosoftYaHei'" font-size="9.463">
  2062. {{ ajaxData.mchla521 }}
  2063. </text>
  2064. <text transform="matrix(1 0 0 1 843.4377 451.751)" fill="#3B8646"
  2065. font-family="'MicrosoftYaHei'" font-size="9.463">
  2066. {{ ajaxData.mchp521 }}
  2067. </text>
  2068. <text transform="matrix(1 0 0 1 843.4377 472.418)" fill="#3B8646"
  2069. font-family="'MicrosoftYaHei'" font-size="9.463">
  2070. {{ ajaxData.mchq521 }}
  2071. </text>
  2072. </g>
  2073. <g>
  2074. <text transform="matrix(1 0 0 1 981.4373 434.0557)" fill="#3B8646"
  2075. font-family="'MicrosoftYaHei'" font-size="9.463">
  2076. {{ ajaxData.mchla522 }}
  2077. </text>
  2078. <text transform="matrix(1 0 0 1 981.4373 451.751)" fill="#3B8646"
  2079. font-family="'MicrosoftYaHei'" font-size="9.463">
  2080. {{ ajaxData.mchp522 }}
  2081. </text>
  2082. <text transform="matrix(1 0 0 1 981.4373 472.418)" fill="#3B8646"
  2083. font-family="'MicrosoftYaHei'" font-size="9.463">
  2084. {{ ajaxData.mchq522 }}
  2085. </text>
  2086. </g>
  2087. <g>
  2088. <text transform="matrix(1 0 0 1 1122.4373 434.0557)" fill="#3B8646"
  2089. font-family="'MicrosoftYaHei'" font-size="9.463">
  2090. {{ ajaxData.mchla523 }}
  2091. </text>
  2092. <text transform="matrix(1 0 0 1 1122.4373 451.751)" fill="#3B8646"
  2093. font-family="'MicrosoftYaHei'" font-size="9.463">
  2094. {{ ajaxData.mchp523 }}
  2095. </text>
  2096. <text transform="matrix(1 0 0 1 1122.4373 472.418)" fill="#3B8646"
  2097. font-family="'MicrosoftYaHei'" font-size="9.463">
  2098. {{ ajaxData.mchq523 }}
  2099. </text>
  2100. </g>
  2101. <g>
  2102. <text transform="matrix(1 0 0 1 1264.2478 427.9131)" fill="#3B8646"
  2103. font-family="'MicrosoftYaHei'" font-size="9.463">
  2104. {{ ajaxData.mchla524 }}
  2105. </text>
  2106. <text transform="matrix(1 0 0 1 1264.2478 445.6084)" fill="#3B8646"
  2107. font-family="'MicrosoftYaHei'" font-size="9.463">
  2108. {{ ajaxData.mchp524 }}
  2109. </text>
  2110. <text transform="matrix(1 0 0 1 1264.2478 466.2744)" fill="#3B8646"
  2111. font-family="'MicrosoftYaHei'" font-size="9.463">
  2112. {{ ajaxData.mchq524 }}
  2113. </text>
  2114. </g>
  2115. <g>
  2116. <text transform="matrix(1 0 0 1 1404.4998 498.5186)" fill="#3B8646"
  2117. font-family="'MicrosoftYaHei'" font-size="9.463">
  2118. {{ ajaxData.mch1hla525 }}
  2119. </text>
  2120. <text transform="matrix(1 0 0 1 1404.4998 516.2139)" fill="#3B8646"
  2121. font-family="'MicrosoftYaHei'" font-size="9.463">
  2122. {{ ajaxData.mch1hp525 }}
  2123. </text>
  2124. <text transform="matrix(1 0 0 1 1404.4998 536.8809)" fill="#3B8646"
  2125. font-family="'MicrosoftYaHei'" font-size="9.463">
  2126. {{ ajaxData.mch1hq525 }}
  2127. </text>
  2128. </g>
  2129. <g>
  2130. <text transform="matrix(1 0 0 1 1538.9998 433.6875)" fill="#3B8646"
  2131. font-family="'MicrosoftYaHei'" font-size="9.463">
  2132. {{ ajaxData.mchla526 }}
  2133. </text>
  2134. <text transform="matrix(1 0 0 1 1538.9998 451.3818)" fill="#3B8646"
  2135. font-family="'MicrosoftYaHei'" font-size="9.463">
  2136. {{ ajaxData.mchp526 }}
  2137. </text>
  2138. <text transform="matrix(1 0 0 1 1538.9998 472.0498)" fill="#3B8646"
  2139. font-family="'MicrosoftYaHei'" font-size="9.463">
  2140. {{ ajaxData.mchq526 }}
  2141. </text>
  2142. </g>
  2143. <g>
  2144. <text transform="matrix(1 0 0 1 1689.2361 436.624)" fill="#3B8646"
  2145. font-family="'MicrosoftYaHei'" font-size="9.463">
  2146. {{ ajaxData.mchla527 }}
  2147. </text>
  2148. <text transform="matrix(1 0 0 1 1689.2361 454.3184)" fill="#3B8646"
  2149. font-family="'MicrosoftYaHei'" font-size="9.463">
  2150. {{ ajaxData.mchp527 }}
  2151. </text>
  2152. <text transform="matrix(1 0 0 1 1689.2361 474.9854)" fill="#3B8646"
  2153. font-family="'MicrosoftYaHei'" font-size="9.463">
  2154. {{ ajaxData.mchq527 }}
  2155. </text>
  2156. </g>
  2157. <g>
  2158. <text transform="matrix(1 0 0 1 359.5676 776.1504)" fill="#FFFFFF"
  2159. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2160. {{ ajaxData.mchsrdy19 }}
  2161. </text>
  2162. <text transform="matrix(1 0 0 1 423.5627 776.1504)" fill="#FFFFFF"
  2163. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2164. {{ ajaxData.mchsrdy20 }}
  2165. </text>
  2166. <text transform="matrix(1 0 0 1 482.4211 776.1504)" fill="#FFFFFF"
  2167. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2168. {{ ajaxData.mchsrdy21 }}
  2169. </text>
  2170. <text transform="matrix(1 0 0 1 548.7751 776.1504)" fill="#FFFFFF"
  2171. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2172. {{ ajaxData.mchsrdy22 }}
  2173. </text>
  2174. <text transform="matrix(1 0 0 1 607.3279 776.1504)" fill="#FFFFFF"
  2175. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2176. {{ ajaxData.mchsrdy23 }}
  2177. </text>
  2178. <text transform="matrix(1 0 0 1 670.0627 776.1504)" fill="#FFFFFF"
  2179. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2180. {{ ajaxData.mchsrdy24 }}
  2181. </text>
  2182. <text transform="matrix(1 0 0 1 731.6799 776.1504)" fill="#FFFFFF"
  2183. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2184. {{ ajaxData.mchsrdy25 }}
  2185. </text>
  2186. <text transform="matrix(1 0 0 1 796.323 776.1504)" fill="#FFFFFF"
  2187. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2188. {{ ajaxData.mchsrdy01 }}
  2189. </text>
  2190. <text transform="matrix(1 0 0 1 852.8298 776.1504)" fill="#FFFFFF"
  2191. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2192. {{ ajaxData.mchsrdy02 }}
  2193. </text>
  2194. <text transform="matrix(1 0 0 1 906.155 776.1504)" fill="#FFFFFF"
  2195. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2196. {{ ajaxData.mchsrdy03 }}
  2197. </text>
  2198. <text transform="matrix(1 0 0 1 968.2732 776.1504)" fill="#FFFFFF"
  2199. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2200. {{ ajaxData.mchsrdy04 }}
  2201. </text>
  2202. <text transform="matrix(1 0 0 1 1022.4167 776.1504)" fill="#FFFFFF"
  2203. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2204. {{ ajaxData.mchsrdy05 }}
  2205. </text>
  2206. <text transform="matrix(1 0 0 1 1079.1716 776.1504)" fill="#FFFFFF"
  2207. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2208. {{ ajaxData.mchsrdy06 }}
  2209. </text>
  2210. <text transform="matrix(1 0 0 1 1133.9392 776.1504)" fill="#FFFFFF"
  2211. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2212. {{ ajaxData.mchsrdy07 }}
  2213. </text>
  2214. <text transform="matrix(1 0 0 1 1194.8787 776.1504)" fill="#FFFFFF"
  2215. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2216. {{ ajaxData.mchsrdy08 }}
  2217. </text>
  2218. <text transform="matrix(1 0 0 1 1247.4099 776.1504)" fill="#FFFFFF"
  2219. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2220. {{ ajaxData.mchsrdy09 }}
  2221. </text>
  2222. <text transform="matrix(1 0 0 1 1306.6716 776.1504)" fill="#FFFFFF"
  2223. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2224. {{ ajaxData.mchsrdy10 }}
  2225. </text>
  2226. <text transform="matrix(1 0 0 1 1360.033 776.1504)" fill="#FFFFFF"
  2227. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2228. {{ ajaxData.mchsrdy11 }}
  2229. </text>
  2230. <text transform="matrix(1 0 0 1 1420.6287 776.1504)" fill="#FFFFFF"
  2231. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2232. {{ ajaxData.mchsrdy12 }}
  2233. </text>
  2234. <text transform="matrix(1 0 0 1 1473.9509 776.1504)" fill="#FFFFFF"
  2235. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2236. {{ ajaxData.mchsrdy13 }}
  2237. </text>
  2238. <text transform="matrix(1 0 0 1 1535.2156 776.1504)" fill="#FFFFFF"
  2239. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2240. {{ ajaxData.mchsrdy14 }}
  2241. </text>
  2242. <text transform="matrix(1 0 0 1 1590.4216 776.1504)" fill="#FFFFFF"
  2243. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2244. {{ ajaxData.mchsrdy15 }}
  2245. </text>
  2246. <text transform="matrix(1 0 0 1 1648.5886 776.1504)" fill="#FFFFFF"
  2247. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2248. {{ ajaxData.mchsrdy16 }}
  2249. </text>
  2250. <text transform="matrix(1 0 0 1 1701.2947 776.1504)" fill="#FFFFFF"
  2251. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2252. {{ ajaxData.mchsrdy17 }}
  2253. </text>
  2254. <text transform="matrix(1 0 0 1 1766.6687 776.1504)" fill="#FFFFFF"
  2255. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2256. {{ ajaxData.mchsrdy18 }}
  2257. </text>
  2258. </g>
  2259. <g>
  2260. <text transform="matrix(1 0 0 1 359.5676 812.4941)" fill="#FFFFFF"
  2261. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2262. {{ ajaxData.mchscgl19 }}
  2263. </text>
  2264. <text transform="matrix(1 0 0 1 423.5627 812.4941)" fill="#FFFFFF"
  2265. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2266. {{ ajaxData.mchscgl20 }}
  2267. </text>
  2268. <text transform="matrix(1 0 0 1 482.4211 812.4941)" fill="#FFFFFF"
  2269. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2270. {{ ajaxData.mchscgl21 }}
  2271. </text>
  2272. <text transform="matrix(1 0 0 1 548.7751 812.4941)" fill="#FFFFFF"
  2273. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2274. {{ ajaxData.mchscgl22 }}
  2275. </text>
  2276. <text transform="matrix(1 0 0 1 607.3279 812.4941)" fill="#FFFFFF"
  2277. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2278. {{ ajaxData.mchscgl23 }}
  2279. </text>
  2280. <text transform="matrix(1 0 0 1 670.0627 812.4941)" fill="#FFFFFF"
  2281. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2282. {{ ajaxData.mchscgl24 }}
  2283. </text>
  2284. <text transform="matrix(1 0 0 1 731.6799 812.4941)" fill="#FFFFFF"
  2285. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2286. {{ ajaxData.mchscgl25 }}
  2287. </text>
  2288. <text transform="matrix(1 0 0 1 796.323 812.4941)" fill="#FFFFFF"
  2289. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2290. {{ ajaxData.mchscgl01 }}
  2291. </text>
  2292. <text transform="matrix(1 0 0 1 852.8298 812.4941)" fill="#FFFFFF"
  2293. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2294. {{ ajaxData.mchscgl02 }}
  2295. </text>
  2296. <text transform="matrix(1 0 0 1 906.155 812.4941)" fill="#FFFFFF"
  2297. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2298. {{ ajaxData.mchscgl03 }}
  2299. </text>
  2300. <text transform="matrix(1 0 0 1 968.2732 812.4941)" fill="#FFFFFF"
  2301. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2302. {{ ajaxData.mchscgl04 }}
  2303. </text>
  2304. <text transform="matrix(1 0 0 1 1022.4167 812.4941)" fill="#FFFFFF"
  2305. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2306. {{ ajaxData.mchscgl05 }}
  2307. </text>
  2308. <text transform="matrix(1 0 0 1 1079.1716 812.4941)" fill="#FFFFFF"
  2309. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2310. {{ ajaxData.mchscgl06 }}
  2311. </text>
  2312. <text transform="matrix(1 0 0 1 1133.9392 812.4941)" fill="#FFFFFF"
  2313. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2314. {{ ajaxData.mchscgl07 }}
  2315. </text>
  2316. <text transform="matrix(1 0 0 1 1194.8787 812.4941)" fill="#FFFFFF"
  2317. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2318. {{ ajaxData.mchscgl08 }}
  2319. </text>
  2320. <text transform="matrix(1 0 0 1 1247.4099 812.4941)" fill="#FFFFFF"
  2321. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2322. {{ ajaxData.mchscgl09 }}
  2323. </text>
  2324. <text transform="matrix(1 0 0 1 1306.6716 812.4941)" fill="#FFFFFF"
  2325. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2326. {{ ajaxData.mchscgl10 }}
  2327. </text>
  2328. <text transform="matrix(1 0 0 1 1360.033 812.4941)" fill="#FFFFFF"
  2329. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2330. {{ ajaxData.mchscgl11 }}
  2331. </text>
  2332. <text transform="matrix(1 0 0 1 1420.6287 812.4941)" fill="#FFFFFF"
  2333. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2334. {{ ajaxData.mchscgl12 }}
  2335. </text>
  2336. <text transform="matrix(1 0 0 1 1473.9509 812.4941)" fill="#FFFFFF"
  2337. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2338. {{ ajaxData.mchscgl13 }}
  2339. </text>
  2340. <text transform="matrix(1 0 0 1 1535.2156 812.4941)" fill="#FFFFFF"
  2341. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2342. {{ ajaxData.mchscgl14 }}
  2343. </text>
  2344. <text transform="matrix(1 0 0 1 1590.4216 812.4941)" fill="#FFFFFF"
  2345. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2346. {{ ajaxData.mchscgl15 }}
  2347. </text>
  2348. <text transform="matrix(1 0 0 1 1648.5886 812.4941)" fill="#FFFFFF"
  2349. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2350. {{ ajaxData.mchscgl16 }}
  2351. </text>
  2352. <text transform="matrix(1 0 0 1 1701.2947 812.4941)" fill="#FFFFFF"
  2353. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2354. {{ ajaxData.mchscgl17 }}
  2355. </text>
  2356. <text transform="matrix(1 0 0 1 1766.6687 812.4941)" fill="#FFFFFF"
  2357. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2358. {{ ajaxData.mchscgl18 }}
  2359. </text>
  2360. </g>
  2361. <g>
  2362. <text transform="matrix(1 0 0 1 359.5676 848.8379)" fill="#FFFFFF"
  2363. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2364. {{ ajaxData.mchrfdl19 }}
  2365. </text>
  2366. <text transform="matrix(1 0 0 1 423.5627 848.8379)" fill="#FFFFFF"
  2367. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2368. {{ ajaxData.mchrfdl20 }}
  2369. </text>
  2370. <text transform="matrix(1 0 0 1 482.4211 848.8379)" fill="#FFFFFF"
  2371. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2372. {{ ajaxData.mchrfdl21 }}
  2373. </text>
  2374. <text transform="matrix(1 0 0 1 548.7751 848.8379)" fill="#FFFFFF"
  2375. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2376. {{ ajaxData.mchrfdl22 }}
  2377. </text>
  2378. <text transform="matrix(1 0 0 1 607.3279 848.8379)" fill="#FFFFFF"
  2379. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2380. {{ ajaxData.mchrfdl23 }}
  2381. </text>
  2382. <text transform="matrix(1 0 0 1 670.0627 848.8379)" fill="#FFFFFF"
  2383. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2384. {{ ajaxData.mchrfdl24 }}
  2385. </text>
  2386. <text transform="matrix(1 0 0 1 731.6799 848.8379)" fill="#FFFFFF"
  2387. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2388. {{ ajaxData.mchrfdl25 }}
  2389. </text>
  2390. <text transform="matrix(1 0 0 1 796.323 848.8379)" fill="#FFFFFF"
  2391. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2392. {{ ajaxData.mchrfdl01 }}
  2393. </text>
  2394. <text transform="matrix(1 0 0 1 852.8298 848.8379)" fill="#FFFFFF"
  2395. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2396. {{ ajaxData.mchrfdl02 }}
  2397. </text>
  2398. <text transform="matrix(1 0 0 1 906.155 848.8379)" fill="#FFFFFF"
  2399. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2400. {{ ajaxData.mchrfdl03 }}
  2401. </text>
  2402. <text transform="matrix(1 0 0 1 968.2732 848.8379)" fill="#FFFFFF"
  2403. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2404. {{ ajaxData.mchrfdl04 }}
  2405. </text>
  2406. <text transform="matrix(1 0 0 1 1022.4167 848.8379)" fill="#FFFFFF"
  2407. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2408. {{ ajaxData.mchrfdl05 }}
  2409. </text>
  2410. <text transform="matrix(1 0 0 1 1079.1716 848.8379)" fill="#FFFFFF"
  2411. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2412. {{ ajaxData.mchrfdl06 }}
  2413. </text>
  2414. <text transform="matrix(1 0 0 1 1133.9392 848.8379)" fill="#FFFFFF"
  2415. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2416. {{ ajaxData.mchrfdl07 }}
  2417. </text>
  2418. <text transform="matrix(1 0 0 1 1194.8787 848.8379)" fill="#FFFFFF"
  2419. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2420. {{ ajaxData.mchrfdl08 }}
  2421. </text>
  2422. <text transform="matrix(1 0 0 1 1247.4099 848.8379)" fill="#FFFFFF"
  2423. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2424. {{ ajaxData.mchrfdl09 }}
  2425. </text>
  2426. <text transform="matrix(1 0 0 1 1306.6716 848.8379)" fill="#FFFFFF"
  2427. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2428. {{ ajaxData.mchrfdl10 }}
  2429. </text>
  2430. <text transform="matrix(1 0 0 1 1360.033 848.8379)" fill="#FFFFFF"
  2431. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2432. {{ ajaxData.mchrfdl11 }}
  2433. </text>
  2434. <text transform="matrix(1 0 0 1 1420.6287 848.8379)" fill="#FFFFFF"
  2435. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2436. {{ ajaxData.mchrfdl12 }}
  2437. </text>
  2438. <text transform="matrix(1 0 0 1 1473.9509 848.8379)" fill="#FFFFFF"
  2439. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2440. {{ ajaxData.mchrfdl13 }}
  2441. </text>
  2442. <text transform="matrix(1 0 0 1 1535.2156 848.8379)" fill="#FFFFFF"
  2443. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2444. {{ ajaxData.mchrfdl14 }}
  2445. </text>
  2446. <text transform="matrix(1 0 0 1 1590.4216 848.8379)" fill="#FFFFFF"
  2447. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2448. {{ ajaxData.mchrfdl15 }}
  2449. </text>
  2450. <text transform="matrix(1 0 0 1 1648.5886 848.8379)" fill="#FFFFFF"
  2451. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2452. {{ ajaxData.mchrfdl16 }}
  2453. </text>
  2454. <text transform="matrix(1 0 0 1 1701.2947 848.8379)" fill="#FFFFFF"
  2455. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2456. {{ ajaxData.mchrfdl17 }}
  2457. </text>
  2458. <text transform="matrix(1 0 0 1 1766.6687 848.8379)" fill="#FFFFFF"
  2459. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2460. {{ ajaxData.mchrfdl18 }}
  2461. </text>
  2462. </g>
  2463. <g>
  2464. <text transform="matrix(1 0 0 1 359.5676 885.1816)" fill="#FFFFFF"
  2465. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2466. {{ ajaxData.mchzfdl19 }}
  2467. </text>
  2468. <text transform="matrix(1 0 0 1 423.5627 885.1816)" fill="#FFFFFF"
  2469. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2470. {{ ajaxData.mchzfdl20 }}
  2471. </text>
  2472. <text transform="matrix(1 0 0 1 482.4211 885.1816)" fill="#FFFFFF"
  2473. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2474. {{ ajaxData.mchzfdl21 }}
  2475. </text>
  2476. <text transform="matrix(1 0 0 1 548.7751 885.1816)" fill="#FFFFFF"
  2477. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2478. {{ ajaxData.mchzfdl22 }}
  2479. </text>
  2480. <text transform="matrix(1 0 0 1 607.3279 885.1816)" fill="#FFFFFF"
  2481. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2482. {{ ajaxData.mchzfdl23 }}
  2483. </text>
  2484. <text transform="matrix(1 0 0 1 670.0627 885.1816)" fill="#FFFFFF"
  2485. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2486. {{ ajaxData.mchzfdl24 }}
  2487. </text>
  2488. <text transform="matrix(1 0 0 1 731.6799 885.1816)" fill="#FFFFFF"
  2489. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2490. {{ ajaxData.mchzfdl25 }}
  2491. </text>
  2492. <text transform="matrix(1 0 0 1 796.323 885.1816)" fill="#FFFFFF"
  2493. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2494. {{ ajaxData.mchzfdl01 }}
  2495. </text>
  2496. <text transform="matrix(1 0 0 1 852.8298 885.1816)" fill="#FFFFFF"
  2497. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2498. {{ ajaxData.mchzfdl02 }}
  2499. </text>
  2500. <text transform="matrix(1 0 0 1 906.155 885.1816)" fill="#FFFFFF"
  2501. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2502. {{ ajaxData.mchzfdl03 }}
  2503. </text>
  2504. <text transform="matrix(1 0 0 1 968.2732 885.1816)" fill="#FFFFFF"
  2505. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2506. {{ ajaxData.mchzfdl04 }}
  2507. </text>
  2508. <text transform="matrix(1 0 0 1 1022.4167 885.1816)" fill="#FFFFFF"
  2509. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2510. {{ ajaxData.mchzfdl05 }}
  2511. </text>
  2512. <text transform="matrix(1 0 0 1 1079.1716 885.1816)" fill="#FFFFFF"
  2513. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2514. {{ ajaxData.mchzfdl06 }}
  2515. </text>
  2516. <text transform="matrix(1 0 0 1 1133.9392 885.1816)" fill="#FFFFFF"
  2517. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2518. {{ ajaxData.mchzfdl07 }}
  2519. </text>
  2520. <text transform="matrix(1 0 0 1 1194.8787 885.1816)" fill="#FFFFFF"
  2521. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2522. {{ ajaxData.mchzfdl08 }}
  2523. </text>
  2524. <text transform="matrix(1 0 0 1 1247.4099 885.1816)" fill="#FFFFFF"
  2525. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2526. {{ ajaxData.mchzfdl09 }}
  2527. </text>
  2528. <text transform="matrix(1 0 0 1 1306.6716 885.1816)" fill="#FFFFFF"
  2529. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2530. {{ ajaxData.mchzfdl10 }}
  2531. </text>
  2532. <text transform="matrix(1 0 0 1 1360.033 885.1816)" fill="#FFFFFF"
  2533. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2534. {{ ajaxData.mchzfdl11 }}
  2535. </text>
  2536. <text transform="matrix(1 0 0 1 1420.6287 885.1816)" fill="#FFFFFF"
  2537. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2538. {{ ajaxData.mchzfdl12 }}
  2539. </text>
  2540. <text transform="matrix(1 0 0 1 1473.9509 885.1816)" fill="#FFFFFF"
  2541. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2542. {{ ajaxData.mchzfdl13 }}
  2543. </text>
  2544. <text transform="matrix(1 0 0 1 1535.2156 885.1816)" fill="#FFFFFF"
  2545. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2546. {{ ajaxData.mchzfdl14 }}
  2547. </text>
  2548. <text transform="matrix(1 0 0 1 1590.4216 885.1816)" fill="#FFFFFF"
  2549. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2550. {{ ajaxData.mchzfdl15 }}
  2551. </text>
  2552. <text transform="matrix(1 0 0 1 1648.5886 885.1816)" fill="#FFFFFF"
  2553. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2554. {{ ajaxData.mchzfdl16 }}
  2555. </text>
  2556. <text transform="matrix(1 0 0 1 1701.2947 885.1816)" fill="#FFFFFF"
  2557. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2558. {{ ajaxData.mchzfdl17 }}
  2559. </text>
  2560. <text transform="matrix(1 0 0 1 1766.6687 885.1816)" fill="#FFFFFF"
  2561. font-family="'MicrosoftYaHei'" font-size="11.6452">
  2562. {{ ajaxData.mchzfdl18 }}
  2563. </text>
  2564. </g>
  2565. </g>
  2566. <g id="kg">
  2567. <g>
  2568. <g id="_x31_21-0off_6_" v-if="ajaxData.mchkg5250">
  2569. <line fill="none" stroke="#A61F24" stroke-width="1.5" stroke-miterlimit="10"
  2570. x1="1363.676" y1="408.603" x2="1381.661" y2="408.603"></line>
  2571. <path fill="#A61F24"
  2572. d="M1373.196,423.116c1.527,0,2.771,1.242,2.771,2.771c0,1.526-1.24,2.771-2.771,2.771 c-1.525,0-2.771-1.243-2.771-2.771C1370.426,424.36,1371.668,423.116,1373.196,423.116 M1373.196,421.091 c-2.648,0-4.799,2.146-4.799,4.797c0,2.649,2.148,4.8,4.799,4.8c2.651,0,4.799-2.148,4.799-4.8 C1377.995,423.236,1375.846,421.091,1373.196,421.091L1373.196,421.091z">
  2573. </path>
  2574. <line fill="none" stroke="#A61F24" stroke-width="1.5" stroke-miterlimit="10"
  2575. x1="1373.196" y1="408.84" x2="1373.196" y2="422.121"></line>
  2576. </g>
  2577. <g id="_x31_21-0on_9_" v-else-if="ajaxData.mchkg5250 == false">
  2578. <line fill="none" stroke="#1B9D3A" stroke-width="1.5" stroke-miterlimit="10"
  2579. x1="1363.676" y1="408.603" x2="1381.661" y2="408.603"></line>
  2580. <path fill="#1B9D3A"
  2581. d="M1373.196,423.115c1.527,0,2.771,1.243,2.771,2.771c0,1.526-1.24,2.771-2.771,2.771 c-1.525,0-2.771-1.243-2.771-2.771S1371.668,423.115,1373.196,423.115 M1373.196,421.089c-2.648,0-4.799,2.146-4.799,4.799 c0,2.649,2.148,4.8,4.799,4.8c2.651,0,4.799-2.149,4.799-4.8C1377.995,423.237,1375.846,421.089,1373.196,421.089 L1373.196,421.089z">
  2582. </path>
  2583. <line fill="none" stroke="#1B9D3A" stroke-width="1.5" stroke-miterlimit="10"
  2584. x1="1379.924" y1="410.853" x2="1372.668" y2="422.121"></line>
  2585. </g>
  2586. </g>
  2587. <g>
  2588. <g id="_x31_21-0on_11_">
  2589. <line fill="none" stroke="#AAAAAA" stroke-width="1.5" stroke-miterlimit="10"
  2590. x1="413.423" y1="398.594" x2="430.31" y2="398.594"></line>
  2591. <path fill="#AAAAAA"
  2592. d="M422.362,412.219c1.436,0,2.604,1.167,2.604,2.602c0,1.436-1.167,2.603-2.604,2.603 c-1.435,0-2.601-1.167-2.601-2.603C419.761,413.386,420.93,412.219,422.362,412.219 M422.362,410.315 c-2.488,0-4.505,2.016-4.505,4.505c0,2.487,2.017,4.505,4.505,4.505c2.487,0,4.506-2.018,4.506-4.505 C426.868,412.328,424.85,410.315,422.362,410.315L422.362,410.315z">
  2593. </path>
  2594. <line fill="none" stroke="#AAAAAA" stroke-width="1.5" stroke-miterlimit="10"
  2595. x1="428.677" y1="400.704" x2="421.865" y2="411.285"></line>
  2596. </g>
  2597. <g id="_x31_21-0on_1_">
  2598. <line fill="none" stroke="#AAAAAA" stroke-width="1.5" stroke-miterlimit="10"
  2599. x1="436.434" y1="408.342" x2="453.32" y2="408.342"></line>
  2600. <path fill="#AAAAAA"
  2601. d="M445.373,421.967c1.436,0,2.604,1.167,2.604,2.602c0,1.436-1.167,2.603-2.604,2.603 c-1.435,0-2.601-1.167-2.601-2.603C442.772,423.134,443.94,421.967,445.373,421.967 M445.373,420.063 c-2.486,0-4.505,2.016-4.505,4.505c0,2.487,2.019,4.505,4.505,4.505c2.487,0,4.508-2.018,4.508-4.505 C449.881,422.076,447.86,420.063,445.373,420.063L445.373,420.063z">
  2602. </path>
  2603. <line fill="none" stroke="#AAAAAA" stroke-width="1.5" stroke-miterlimit="10"
  2604. x1="451.688" y1="410.451" x2="444.875" y2="421.033"></line>
  2605. </g>
  2606. </g>
  2607. </g>
  2608. </svg>
  2609. </template>
  2610. </previewPicture>
  2611. </el-col>
  2612. </el-row>
  2613. </div>
  2614. </template>
  2615. <script>
  2616. import previewPicture from "../previewPicture.vue";
  2617. import { BoosterStation } from "./BoosterStation";
  2618. import $ from "jquery";
  2619. export default {
  2620. components: {
  2621. previewPicture
  2622. },
  2623. data() {
  2624. return {
  2625. green: '#02A434',
  2626. red: '#FF0000',
  2627. ajaxData: {},
  2628. interval: '',
  2629. };
  2630. },
  2631. created() {
  2632. this.boosterStation = new BoosterStation();
  2633. this.refreshTPData()
  2634. this.interval = setInterval(this.refreshTPData, 3000)
  2635. },
  2636. beforeUnmount(){
  2637. this.closed()
  2638. },
  2639. mounted() {
  2640. this.$nextTick(() => {
  2641. if (this.$store.state.themeName === "light") {
  2642. for (let i = 0; i < $('#other text').length; i++) {
  2643. let that = $('#other text').eq(i);
  2644. let fill = that.attr('fill');
  2645. let txt = parseInt(that.text());//数字转整数
  2646. let bracket = that.text().indexOf('(');//判断是否包含(
  2647. let zn = /.*[\u4e00-\u9fa5]+.*$/.test(that.text()); //判断是否包含中文
  2648. let num = /[0-9]+.?[0-9]/g.test(that.text())
  2649. if (fill === '#FFFFFF' && !isNaN(txt) && !zn) {
  2650. that.attr('fill', '#000');
  2651. }
  2652. else if(fill === '#FFFFFF' && bracket != -1){
  2653. that.attr('fill', '#000');
  2654. }
  2655. }
  2656. for (let i = 0; i < $('#data text').length; i++) {
  2657. let that = $('#data text').eq(i);
  2658. let fill = that.attr('fill');
  2659. if (fill === '#3B8646') {
  2660. that.attr('fill', '#FFFFFF');
  2661. }else{
  2662. that.attr('fill', '#000');
  2663. }
  2664. }
  2665. }
  2666. })
  2667. },
  2668. methods: {
  2669. closed() {
  2670. clearInterval(this.interval);
  2671. },
  2672. refreshTPData() {
  2673. this.boosterStation.getDatas("MCH_GDC", this.bindValue);
  2674. },
  2675. bindValue(msg) {
  2676. this.ajaxData = msg;
  2677. },
  2678. }
  2679. };
  2680. </script>
  2681. <style scoped>
  2682. .center-bar {
  2683. position: relative;
  2684. box-sizing: border-box;
  2685. height: 90vh;
  2686. background-color: #000000;
  2687. padding-top: 10px;
  2688. padding-left: 5px;
  2689. padding-right: 5px;
  2690. padding-bottom: 5px;
  2691. margin-top: 0;
  2692. margin-right: 0;
  2693. margin-bottom: 3px;
  2694. margin-left: 0;
  2695. display: flex;
  2696. flex-direction: column;
  2697. }
  2698. .svg {
  2699. margin-left:5%;
  2700. width: 90%;
  2701. height: 90%;
  2702. }
  2703. .light #other line[stroke="#FFFFFF"]{
  2704. stroke:#000000;
  2705. }
  2706. .light #other rect[stroke="#F7F9F9"]{
  2707. stroke:#000000;
  2708. }
  2709. .light #other text[fill="#FFFFFF"][font-size="11.6452"]{
  2710. fill:#000000;
  2711. }
  2712. </style>