style.yaml 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184
  1. 200-FLW-2-1021:
  2. background_color: rgba(0, 0, 0, 0)
  3. condition: ''
  4. decimal: '2'
  5. exponential: 'false'
  6. formula: ''
  7. header:
  8. size: 13
  9. title: 'FLW-2-1021 '
  10. weight: '400'
  11. height: 20.4
  12. larger: ''
  13. left: 472.733px
  14. lesser: ''
  15. linkhtml: 'true'
  16. ref: 200-FLW-2-1021
  17. top: 181.983px
  18. trend: 'true'
  19. type: data
  20. unit:
  21. size: 14
  22. title: ' g/s'
  23. weight: '700'
  24. width: 158.4
  25. 200-FLW-2-3000:
  26. background_color: rgba(0, 0, 0, 0)
  27. condition: ''
  28. decimal: '2'
  29. formula: ''
  30. header:
  31. size: 13
  32. title: 'FLW-2-3000 '
  33. weight: '400'
  34. height: 22.4
  35. larger: ''
  36. left: 252.717px
  37. lesser: ''
  38. linkhtml: 'true'
  39. ref: 200-FLW-2-3000
  40. top: 182.983px
  41. trend: 'true'
  42. type: data
  43. unit:
  44. size: 14
  45. title: ' g/s'
  46. weight: '700'
  47. width: 160.4
  48. 200-GRA-0-0008:
  49. background_color: rgba(0, 0, 0, 0)
  50. condition: ''
  51. decimal: '2'
  52. exponential: 'false'
  53. formula: ''
  54. header:
  55. size: 13
  56. title: 'LHe-System: '
  57. weight: '400'
  58. height: 25.4
  59. larger: '50'
  60. left: 1583px
  61. lesser: ''
  62. linkhtml: 'true'
  63. ref: 200-GRA-0-0008
  64. top: 293px
  65. trend: 'true'
  66. type: data
  67. unit:
  68. size: 14
  69. title: ' K'
  70. weight: '700'
  71. width: 150.4
  72. 200-GRA-0-0009:
  73. background_color: rgba(0, 0, 0, 0)
  74. condition: ''
  75. decimal: '2'
  76. formula: ''
  77. header:
  78. size: 13
  79. title: 'LN2-System: '
  80. weight: '400'
  81. height: 25.4
  82. larger: '50'
  83. left: 1581px
  84. lesser: ''
  85. linkhtml: 'true'
  86. ref: 200-GRA-0-0009
  87. top: 352.983px
  88. trend: 'true'
  89. type: data
  90. unit:
  91. size: 14
  92. title: ' K'
  93. weight: '700'
  94. width: 152.4
  95. 200-GRA-0-0012:
  96. background_color: rgba(0, 0, 0, 0)
  97. decimal: '2'
  98. exponential: 'False'
  99. formula: ''
  100. header:
  101. size: 13
  102. title: 'gHe-System: '
  103. weight: '400'
  104. height: 25.4
  105. larger: '50'
  106. left: 1583px
  107. lesser: ''
  108. linkhtml: 'true'
  109. ref: 200-GRA-0-0012
  110. top: 322px
  111. trend: 'true'
  112. type: data
  113. unit:
  114. size: 14
  115. title: ' K'
  116. weight: '700'
  117. width: 145.4
  118. 200-GRA-0-0020:
  119. background_color: rgba(0, 0, 0, 0)
  120. condition: ''
  121. decimal: '2'
  122. exponential: 'false'
  123. formula: ''
  124. header:
  125. size: 13
  126. title: 'Beamtube global '
  127. weight: '400'
  128. height: 20.4
  129. larger: '120'
  130. left: 1581.98px
  131. lesser: ''
  132. linkhtml: 'true'
  133. ref: 200-GRA-0-0020
  134. top: 381.983px
  135. trend: 'true'
  136. type: data
  137. unit:
  138. size: 14
  139. title: ' K'
  140. weight: '700'
  141. width: 174.4
  142. 200-MOD-0-0001:
  143. background_color: rgba(0, 0, 0, 0)
  144. cond: ''
  145. dict: '{"2":"Standard Operation","3":"Krypton Mode","5":"Cool-Down 1","6":"Cool-Down
  146. 2","7":"Start-Up","8":"Warm-Up 1","9":"Warm-Up 2","10":"Bake-Out"}'
  147. header:
  148. size: '28'
  149. title: 'Operation Mode:'
  150. weight: '400'
  151. height: 128.4
  152. left: 34px
  153. linkhtml: 'true'
  154. ref: 200-MOD-0-0001
  155. top: 232px
  156. trend: 'true'
  157. type: integer-to-string
  158. unit:
  159. size: ''
  160. weight: '700'
  161. width: 297.4
  162. 200-PTM-4-1002:
  163. background_color: rgba(0, 0, 0, 0)
  164. decimal: '2'
  165. exponential: 'false'
  166. formula: ''
  167. header:
  168. size: 13
  169. title: 'PTM-4-1002 '
  170. weight: '400'
  171. height: 30.4
  172. larger: ''
  173. left: 481.983px
  174. lesser: ''
  175. linkhtml: 'true'
  176. ref: 200-PTM-4-1002
  177. top: 983px
  178. trend: 'true'
  179. type: data
  180. unit:
  181. size: 14
  182. title: ' Hz'
  183. weight: '700'
  184. width: 150.4
  185. 200-PTM-4-1052:
  186. background_color: rgba(0, 0, 0, 0)
  187. condition: ''
  188. decimal: '2'
  189. exponential: 'false'
  190. formula: ''
  191. header:
  192. size: 13
  193. title: 'PTM-4-1052 '
  194. weight: '400'
  195. height: 24.4
  196. larger: ''
  197. left: 1506.98px
  198. lesser: ''
  199. linkhtml: 'true'
  200. ref: 200-PTM-4-1052
  201. top: 987.983px
  202. trend: 'true'
  203. type: data
  204. unit:
  205. size: 14
  206. title: ' Hz'
  207. weight: '700'
  208. width: 153.4
  209. 200-REI-5-3111:
  210. background_color: rgba(0, 0, 0, 0)
  211. condition: ''
  212. decimal: '2'
  213. exponential: 'false'
  214. formula: ''
  215. header:
  216. size: 12
  217. title: 'Current M5/M4/M1 '
  218. weight: '400'
  219. height: 33.4
  220. larger: ''
  221. left: 355.233px
  222. lesser: ''
  223. linkhtml: 'true'
  224. ref: 200-REI-5-3111
  225. top: 842.817px
  226. trend: 'true'
  227. type: data
  228. unit:
  229. size: 12
  230. title: ' A'
  231. weight: '700'
  232. width: 171.4
  233. 200-REI-5-3211:
  234. background_color: rgba(0, 0, 0, 0)
  235. condition: ''
  236. decimal: '2'
  237. exponential: 'false'
  238. formula: ''
  239. header:
  240. size: 12
  241. title: 'Current M2/M3 '
  242. weight: '400'
  243. height: 25.4
  244. larger: ''
  245. left: 985px
  246. lesser: ''
  247. linkhtml: 'true'
  248. ref: 200-REI-5-3211
  249. top: 841px
  250. trend: 'true'
  251. type: data
  252. unit:
  253. size: 12
  254. title: ' A'
  255. weight: '700'
  256. width: 145.4
  257. 200-REI-5-3311:
  258. background_color: rgba(0, 0, 0, 0)
  259. condition: ''
  260. decimal: '2'
  261. exponential: 'false'
  262. formula: ''
  263. header:
  264. size: 12
  265. title: 'Current M7/M6 '
  266. weight: '400'
  267. height: 25.4
  268. larger: ''
  269. left: 1522.97px
  270. lesser: ''
  271. linkhtml: 'true'
  272. ref: 200-REI-5-3311
  273. top: 847.583px
  274. trend: 'true'
  275. type: data
  276. unit:
  277. size: 12
  278. title: ' A'
  279. weight: '700'
  280. width: 150.4
  281. 200-RLI-2-1119:
  282. background_color: rgba(0, 0, 0, 0)
  283. condition: ''
  284. decimal: '2'
  285. formula: ''
  286. header:
  287. size: 13
  288. title: 'RLI-2-1119 '
  289. weight: '400'
  290. height: 22.4
  291. larger: ''
  292. left: 830.75px
  293. lesser: ''
  294. linkhtml: 'true'
  295. ref: 200-RLI-2-1119
  296. top: 325px
  297. trend: 'true'
  298. type: data
  299. unit:
  300. size: 14
  301. title: ' %'
  302. weight: '700'
  303. width: 139.4
  304. 200-RLI-2-1129:
  305. background_color: rgba(0, 0, 0, 0)
  306. condition: ''
  307. decimal: '2'
  308. formula: ''
  309. header:
  310. size: 13
  311. title: 'RLI-2-1129 '
  312. weight: '400'
  313. height: 20.4
  314. larger: ''
  315. left: 830.75px
  316. lesser: ''
  317. linkhtml: 'true'
  318. ref: 200-RLI-2-1129
  319. top: 352.5px
  320. trend: 'true'
  321. type: data
  322. unit:
  323. size: 14
  324. title: ' %'
  325. weight: '700'
  326. width: 140.4
  327. 200-RLI-2-4119:
  328. background_color: rgba(0, 0, 0, 0)
  329. condition: ''
  330. decimal: '2'
  331. exponential: 'false'
  332. formula: ''
  333. header:
  334. size: 13
  335. title: 'RLI-2-4119 '
  336. weight: '400'
  337. height: 25.4
  338. larger: ''
  339. left: 1320px
  340. lesser: ''
  341. linkhtml: 'true'
  342. ref: 200-RLI-2-4119
  343. top: 338.983px
  344. trend: 'true'
  345. type: data
  346. unit:
  347. size: 14
  348. title: ' %'
  349. weight: '700'
  350. width: 140.4
  351. 200-RPI-2-1122:
  352. background_color: rgba(0, 0, 0, 0)
  353. condition: ''
  354. decimal: '2'
  355. exponential: 'false'
  356. formula: ''
  357. header:
  358. size: 13
  359. title: 'RPI-2-1122 '
  360. weight: '400'
  361. height: 25.4
  362. larger: ''
  363. left: 471.733px
  364. lesser: ''
  365. linkhtml: 'true'
  366. ref: 200-RPI-2-1122
  367. top: 155.733px
  368. trend: 'true'
  369. type: data
  370. unit:
  371. size: 14
  372. title: ' bar'
  373. weight: '700'
  374. width: 156.4
  375. 200-RPI-2-2144:
  376. background_color: rgba(0, 0, 0, 0)
  377. decimal: '2'
  378. exponential: 'false'
  379. formula: ''
  380. header:
  381. size: 13
  382. title: 'RPI-2-2144 '
  383. weight: '400'
  384. height: 25.4
  385. larger: ''
  386. left: 829px
  387. lesser: ''
  388. linkhtml: 'true'
  389. ref: 200-RPI-2-2144
  390. top: 278px
  391. trend: 'true'
  392. type: data
  393. unit:
  394. size: 14
  395. title: ' bar'
  396. weight: '700'
  397. width: 150.4
  398. 200-RPI-2-3117:
  399. background_color: rgba(0, 0, 0, 0)
  400. condition: ''
  401. decimal: '2'
  402. formula: ''
  403. header:
  404. size: 13
  405. title: 'RPI-2-3117 '
  406. weight: '400'
  407. height: 19.4
  408. larger: ''
  409. left: 269.75px
  410. lesser: ''
  411. linkhtml: 'true'
  412. ref: 200-RPI-2-3117
  413. top: 63.9833px
  414. trend: 'true'
  415. type: data
  416. unit:
  417. size: 14
  418. title: ' bar'
  419. weight: '700'
  420. width: 158.4
  421. 200-RPI-2-3120:
  422. background_color: rgba(0, 0, 0, 0)
  423. condition: ''
  424. decimal: '2'
  425. formula: ''
  426. header:
  427. size: 13
  428. title: 'RPI-2-3120 '
  429. weight: '400'
  430. height: 24.4
  431. larger: ''
  432. left: 253.733px
  433. lesser: ''
  434. linkhtml: 'true'
  435. ref: 200-RPI-2-3120
  436. top: 153.233px
  437. trend: 'true'
  438. type: data
  439. unit:
  440. size: 14
  441. title: ' bar'
  442. weight: '700'
  443. width: 153.4
  444. 200-RPI-2-4125:
  445. background_color: rgba(0, 0, 0, 0)
  446. condition: ''
  447. decimal: '2'
  448. formula: ''
  449. header:
  450. size: 13
  451. title: 'RPI-2-4125 '
  452. weight: '400'
  453. height: 25.4
  454. larger: ''
  455. left: 1321.98px
  456. lesser: ''
  457. linkhtml: 'true'
  458. ref: 200-RPI-2-4125
  459. top: 306.5px
  460. trend: 'true'
  461. type: data
  462. unit:
  463. size: 14
  464. title: ' bar'
  465. weight: '700'
  466. width: 150.4
  467. 200-RPO-2-2149:
  468. background_color: rgba(0, 0, 0, 0)
  469. condition: ''
  470. decimal: '2'
  471. formula: ''
  472. header:
  473. size: 13
  474. title: 'RPO-2-2149 '
  475. weight: '400'
  476. height: 24.4
  477. larger: '0.5'
  478. left: 1015px
  479. lesser: ''
  480. linkhtml: 'true'
  481. ref: 200-RPO-2-2149
  482. top: 292.75px
  483. trend: 'true'
  484. type: data
  485. unit:
  486. size: 14
  487. title: ' '
  488. weight: '700'
  489. width: 132.4
  490. 200-RPV-4-1106:
  491. background_color: rgba(0, 0, 0, 0)
  492. decimal: '2'
  493. exponential: 'true'
  494. formula: ''
  495. header:
  496. size: 13
  497. title: 'RPV-4-1106 '
  498. weight: '400'
  499. height: 25.4
  500. larger: ''
  501. left: 488px
  502. lesser: ''
  503. linkhtml: 'true'
  504. ref: 200-RPV-4-1106
  505. top: 1022.73px
  506. trend: 'true'
  507. type: data
  508. unit:
  509. size: 14
  510. title: ' mbar'
  511. weight: '700'
  512. width: 176.4
  513. 200-RPV-4-1110:
  514. background_color: rgba(0, 0, 0, 0)
  515. decimal: '2'
  516. exponential: 'true'
  517. formula: ''
  518. header:
  519. size: 13
  520. title: 'RPV-4-1110 '
  521. weight: '400'
  522. height: 20.4
  523. larger: ''
  524. left: 537.25px
  525. lesser: ''
  526. linkhtml: 'true'
  527. ref: 200-RPV-4-1110
  528. top: 910.25px
  529. trend: 'true'
  530. type: data
  531. unit:
  532. size: 14
  533. title: ' mbar'
  534. weight: '700'
  535. width: 176.4
  536. 200-RPV-4-1156:
  537. background_color: rgba(0, 0, 0, 0)
  538. decimal: '2'
  539. exponential: 'true'
  540. formula: ''
  541. header:
  542. size: 13
  543. title: 'RPV-4-1156 '
  544. weight: '400'
  545. height: 20.4
  546. larger: ''
  547. left: 1512.22px
  548. lesser: ''
  549. linkhtml: 'true'
  550. ref: 200-RPV-4-1156
  551. top: 1025.22px
  552. trend: 'true'
  553. type: data
  554. unit:
  555. size: 14
  556. title: ' mbar'
  557. weight: '700'
  558. width: 182.4
  559. 200-RPV-4-1160:
  560. background_color: rgba(0, 0, 0, 0)
  561. decimal: '2'
  562. exponential: 'True'
  563. formula: ''
  564. header:
  565. size: 13
  566. title: 'RPV-4-1160 '
  567. weight: '400'
  568. height: 25.4
  569. larger: ''
  570. left: 1564.98px
  571. lesser: ''
  572. linkhtml: 'true'
  573. ref: 200-RPV-4-1160
  574. top: 908.5px
  575. trend: 'true'
  576. type: data
  577. unit:
  578. size: 14
  579. title: ' mbar'
  580. weight: '700'
  581. width: 169.4
  582. 200-RTP-2-3121:
  583. background_color: rgba(0, 0, 0, 0)
  584. condition: ''
  585. decimal: '2'
  586. formula: ''
  587. header:
  588. size: 13
  589. title: 'RTP-2-3121 '
  590. weight: '400'
  591. height: 30.4
  592. larger: ''
  593. left: 104.483px
  594. lesser: ''
  595. linkhtml: 'true'
  596. ref: 200-RTP-2-3121
  597. top: 555.5px
  598. trend: 'true'
  599. type: data
  600. unit:
  601. size: 14
  602. title: ' K'
  603. weight: '700'
  604. width: 136.4
  605. 200-RTP-2-3122:
  606. background_color: rgba(0, 0, 0, 0)
  607. condition: ''
  608. decimal: '2'
  609. exponential: 'false'
  610. formula: ''
  611. header:
  612. size: 13
  613. title: 'RTP-2-3122 '
  614. weight: '400'
  615. height: 25.4
  616. larger: ''
  617. left: 101px
  618. lesser: ''
  619. linkhtml: 'true'
  620. ref: 200-RTP-2-3122
  621. top: 715px
  622. trend: 'true'
  623. type: data
  624. unit:
  625. size: 14
  626. title: ' K'
  627. weight: '700'
  628. width: 139.4
  629. 200-RTP-2-3123:
  630. background_color: rgba(0, 0, 0, 0)
  631. condition: ''
  632. decimal: '2'
  633. formula: ''
  634. header:
  635. size: 13
  636. title: 'RTP-2-3123 '
  637. weight: '400'
  638. height: 25.4
  639. larger: ''
  640. left: 377px
  641. lesser: ''
  642. linkhtml: 'true'
  643. ref: 200-RTP-2-3123
  644. top: 550.733px
  645. trend: 'true'
  646. type: data
  647. unit:
  648. size: 14
  649. title: ' K'
  650. weight: '700'
  651. width: 140.4
  652. 200-RTP-2-3124:
  653. background_color: rgba(0, 0, 0, 0)
  654. condition: ''
  655. decimal: '2'
  656. formula: ''
  657. header:
  658. size: 13
  659. title: 'RTP-2-3124 '
  660. weight: '400'
  661. height: 25.4
  662. larger: ''
  663. left: 375.75px
  664. lesser: ''
  665. linkhtml: 'true'
  666. ref: 200-RTP-2-3124
  667. top: 716px
  668. trend: 'true'
  669. type: data
  670. unit:
  671. size: 14
  672. title: ' K'
  673. weight: '700'
  674. width: 137.4
  675. 200-RTP-2-3125:
  676. background_color: rgba(0, 0, 0, 0)
  677. condition: ''
  678. decimal: '2'
  679. formula: ''
  680. header:
  681. size: 13
  682. title: 'RTP-2-3125 '
  683. weight: '400'
  684. height: 24.4
  685. larger: ''
  686. left: 678.5px
  687. lesser: ''
  688. linkhtml: 'true'
  689. ref: 200-RTP-2-3125
  690. top: 718px
  691. trend: 'true'
  692. type: data
  693. unit:
  694. size: 14
  695. title: ' K'
  696. weight: '700'
  697. width: 147.4
  698. 200-RTP-2-3126:
  699. background_color: rgba(0, 0, 0, 0)
  700. condition: ''
  701. decimal: '2'
  702. formula: ''
  703. header:
  704. size: 13
  705. title: 'RTP-2-3126 '
  706. weight: '400'
  707. height: 27.4
  708. larger: ''
  709. left: 675.233px
  710. lesser: ''
  711. linkhtml: 'true'
  712. ref: 200-RTP-2-3126
  713. top: 553.733px
  714. trend: 'true'
  715. type: data
  716. unit:
  717. size: 14
  718. title: ' K'
  719. weight: '700'
  720. width: 144.4
  721. 200-RTP-2-3127:
  722. background_color: rgba(0, 0, 0, 0)
  723. condition: ''
  724. decimal: '2'
  725. formula: ''
  726. header:
  727. size: 13
  728. title: 'RTP-2-3127 '
  729. weight: '400'
  730. height: 20.4
  731. larger: ''
  732. left: 877px
  733. lesser: ''
  734. linkhtml: 'true'
  735. ref: 200-RTP-2-3127
  736. top: 717.25px
  737. trend: 'true'
  738. type: data
  739. unit:
  740. size: 14
  741. title: ' K'
  742. weight: '700'
  743. width: 140.4
  744. 200-RTP-2-3128:
  745. background_color: rgba(0, 0, 0, 0)
  746. condition: ''
  747. decimal: '2'
  748. formula: ''
  749. header:
  750. size: 13
  751. title: 'RTP-2-3128 '
  752. weight: '400'
  753. height: 25.4
  754. larger: ''
  755. left: 878.733px
  756. lesser: ''
  757. linkhtml: 'true'
  758. ref: 200-RTP-2-3128
  759. top: 552px
  760. trend: 'true'
  761. type: data
  762. unit:
  763. size: 14
  764. title: ' K'
  765. weight: '700'
  766. width: 145.4
  767. 200-RTP-2-3129:
  768. background_color: rgba(0, 0, 0, 0)
  769. condition: ''
  770. decimal: '2'
  771. formula: ''
  772. header:
  773. size: 13
  774. title: 'RTP-2-3129 '
  775. weight: '400'
  776. height: 25.4
  777. larger: ''
  778. left: 1086.48px
  779. lesser: ''
  780. linkhtml: 'true'
  781. ref: 200-RTP-2-3129
  782. top: 715.25px
  783. trend: 'true'
  784. type: data
  785. unit:
  786. size: 14
  787. title: ' K'
  788. weight: '700'
  789. width: 142.4
  790. 200-RTP-2-3130:
  791. background_color: rgba(0, 0, 0, 0)
  792. condition: ''
  793. decimal: '2'
  794. formula: ''
  795. header:
  796. size: 13
  797. title: 'RTP-2-3130 '
  798. weight: '400'
  799. height: 25.4
  800. larger: ''
  801. left: 1082.48px
  802. lesser: ''
  803. linkhtml: 'true'
  804. ref: 200-RTP-2-3130
  805. top: 552px
  806. trend: 'true'
  807. type: data
  808. unit:
  809. size: 14
  810. title: ' K'
  811. weight: '700'
  812. width: 142.4
  813. 200-RTP-2-3131:
  814. background_color: rgba(0, 0, 0, 0)
  815. condition: ''
  816. decimal: '2'
  817. formula: ''
  818. header:
  819. size: 13
  820. title: 'RTP-2-3131 '
  821. weight: '400'
  822. height: 25.4
  823. larger: ''
  824. left: 1404.75px
  825. lesser: ''
  826. linkhtml: 'true'
  827. ref: 200-RTP-2-3131
  828. top: 716px
  829. trend: 'true'
  830. type: data
  831. unit:
  832. size: 14
  833. title: ' K'
  834. weight: '700'
  835. width: 136.4
  836. 200-RTP-2-3132:
  837. background_color: rgba(0, 0, 0, 0)
  838. condition: ''
  839. decimal: '2'
  840. formula: ''
  841. header:
  842. size: 13
  843. title: 'RTP-2-3132 '
  844. weight: '400'
  845. height: 27.4
  846. larger: ''
  847. left: 1401.98px
  848. lesser: ''
  849. linkhtml: 'true'
  850. ref: 200-RTP-2-3132
  851. top: 553.733px
  852. trend: 'true'
  853. type: data
  854. unit:
  855. size: 14
  856. title: ' K'
  857. weight: '700'
  858. width: 145.4
  859. 200-RTP-2-3133:
  860. background_color: rgba(0, 0, 0, 0)
  861. condition: ''
  862. decimal: '2'
  863. formula: ''
  864. header:
  865. size: 13
  866. title: 'RTP-2-3133 '
  867. weight: '400'
  868. height: 20.4
  869. larger: ''
  870. left: 1671px
  871. lesser: ''
  872. linkhtml: 'true'
  873. ref: 200-RTP-2-3133
  874. top: 718px
  875. trend: 'true'
  876. type: data
  877. unit:
  878. size: 14
  879. title: ' K'
  880. weight: '700'
  881. width: 139.4
  882. 200-RTP-2-3134:
  883. background_color: rgba(0, 0, 0, 0)
  884. decimal: '2'
  885. formula: ''
  886. header:
  887. size: 13
  888. title: 'RTP-2-3134 '
  889. weight: '400'
  890. height: 25.4
  891. larger: ''
  892. left: 1668px
  893. lesser: ''
  894. linkhtml: 'true'
  895. ref: 200-RTP-2-3134
  896. top: 550px
  897. trend: 'true'
  898. type: data
  899. unit:
  900. size: 14
  901. title: ' K'
  902. weight: '700'
  903. width: 139.4
  904. 200-RTP-2-4101:
  905. background_color: rgba(0, 0, 0, 0)
  906. condition: ''
  907. decimal: '2'
  908. formula: ''
  909. header:
  910. size: 13
  911. title: 'RTP-2-4101 '
  912. weight: '400'
  913. height: 20.4
  914. larger: ''
  915. left: 98px
  916. lesser: ''
  917. linkhtml: 'true'
  918. ref: 200-RTP-2-4101
  919. top: 866.983px
  920. trend: 'true'
  921. type: data
  922. unit:
  923. size: 14
  924. title: ' K'
  925. weight: '700'
  926. width: 147.4
  927. 200-RTP-2-4102:
  928. background_color: rgba(0, 0, 0, 0)
  929. decimal: '2'
  930. formula: ''
  931. header:
  932. size: 13
  933. title: 'RTP-2-4102 '
  934. weight: '400'
  935. height: 24.4
  936. larger: ''
  937. left: 97px
  938. lesser: ''
  939. linkhtml: 'true'
  940. ref: 200-RTP-2-4102
  941. top: 465px
  942. trend: 'true'
  943. type: data
  944. unit:
  945. size: 14
  946. title: ' K'
  947. weight: '700'
  948. width: 145.4
  949. 200-RTP-2-4105:
  950. background_color: rgba(0, 0, 0, 0)
  951. condition: ''
  952. decimal: '2'
  953. formula: ''
  954. header:
  955. size: 13
  956. title: 'RTP-2-4105 '
  957. weight: '400'
  958. height: 24.4
  959. larger: ''
  960. left: 1155.98px
  961. lesser: ''
  962. linkhtml: 'true'
  963. ref: 200-RTP-2-4105
  964. top: 864px
  965. trend: 'true'
  966. type: data
  967. unit:
  968. size: 14
  969. title: ' K'
  970. weight: '700'
  971. width: 145.4
  972. 200-RTP-2-4106:
  973. background_color: rgba(0, 0, 0, 0)
  974. decimal: '2'
  975. formula: ''
  976. header:
  977. size: 13
  978. title: 'RTP-2-4106 '
  979. weight: '400'
  980. height: 20.4
  981. larger: ''
  982. left: 694px
  983. lesser: ''
  984. linkhtml: 'true'
  985. ref: 200-RTP-2-4106
  986. top: 867px
  987. trend: 'true'
  988. type: data
  989. unit:
  990. size: 14
  991. title: ' K'
  992. weight: '700'
  993. width: 148.4
  994. 200-RTP-2-4112:
  995. background_color: rgba(0, 0, 0, 0)
  996. decimal: '2'
  997. formula: ''
  998. header:
  999. size: 13
  1000. title: 'RTP-2-4112 '
  1001. weight: '400'
  1002. height: 20.4
  1003. larger: ''
  1004. left: 1611px
  1005. lesser: ''
  1006. linkhtml: 'true'
  1007. ref: 200-RTP-2-4112
  1008. top: 462px
  1009. trend: 'true'
  1010. type: data
  1011. unit:
  1012. size: 14
  1013. title: ' K'
  1014. weight: '700'
  1015. width: 140.4
  1016. 200-RTP-2-4113:
  1017. background_color: rgba(0, 0, 0, 0)
  1018. condition: ''
  1019. decimal: '2'
  1020. formula: ''
  1021. header:
  1022. size: 13
  1023. title: 'RTP-2-4113 '
  1024. weight: '400'
  1025. height: 19.4
  1026. larger: ''
  1027. left: 1668px
  1028. lesser: ''
  1029. linkhtml: 'true'
  1030. ref: 200-RTP-2-4113
  1031. top: 869px
  1032. trend: 'true'
  1033. type: data
  1034. unit:
  1035. size: 14
  1036. title: ' K'
  1037. weight: '700'
  1038. width: 155.4
  1039. 200-RTP-2-4130:
  1040. background_color: rgba(0, 0, 0, 0)
  1041. decimal: '2'
  1042. formula: ''
  1043. header:
  1044. size: 13
  1045. title: 'RTP-2-4130 '
  1046. weight: '400'
  1047. height: 25.4
  1048. larger: ''
  1049. left: 1319.98px
  1050. lesser: ''
  1051. linkhtml: 'true'
  1052. ref: 200-RTP-2-4130
  1053. top: 366.983px
  1054. trend: 'true'
  1055. type: data
  1056. unit:
  1057. size: 14
  1058. title: ' K'
  1059. weight: '700'
  1060. width: 140.4
  1061. 200-RTP-3-1102:
  1062. background_color: rgba(0, 0, 0, 0)
  1063. condition: ''
  1064. decimal: '2'
  1065. formula: ''
  1066. header:
  1067. size: 28
  1068. title: ' '
  1069. weight: '400'
  1070. height: 40.4
  1071. larger: ''
  1072. left: 109.983px
  1073. lesser: ''
  1074. linkhtml: 'true'
  1075. ref: 200-RTP-3-1102
  1076. top: 602.983px
  1077. trend: 'true'
  1078. type: data
  1079. unit:
  1080. size: 14
  1081. title: ' K'
  1082. weight: '700'
  1083. width: 68.4
  1084. 200-RTP-3-1103:
  1085. background_color: rgba(0, 0, 0, 0)
  1086. condition: ''
  1087. decimal: '2'
  1088. formula: ''
  1089. header:
  1090. size: 28
  1091. title: ' '
  1092. weight: '400'
  1093. height: 43.4
  1094. larger: ''
  1095. left: 177.983px
  1096. lesser: ''
  1097. linkhtml: 'true'
  1098. ref: 200-RTP-3-1103
  1099. top: 651.983px
  1100. trend: 'true'
  1101. type: data
  1102. unit:
  1103. size: 14
  1104. title: ' K'
  1105. weight: '700'
  1106. width: 70.4
  1107. 200-RTP-3-2101:
  1108. background_color: rgba(0, 0, 0, 0)
  1109. decimal: '2'
  1110. formula: ''
  1111. header:
  1112. size: 13
  1113. title: ' '
  1114. weight: '400'
  1115. height: 27.4
  1116. larger: ''
  1117. left: 280.483px
  1118. lesser: ''
  1119. linkhtml: 'true'
  1120. ref: 200-RTP-3-2101
  1121. top: 710.5px
  1122. trend: 'true'
  1123. type: data
  1124. unit:
  1125. size: 14
  1126. title: ' K'
  1127. weight: '700'
  1128. width: 70.4
  1129. 200-RTP-3-2102:
  1130. background_color: rgba(0, 0, 0, 0)
  1131. condition: ''
  1132. decimal: '2'
  1133. formula: ''
  1134. header:
  1135. size: 28
  1136. title: ' '
  1137. weight: '400'
  1138. height: 40.4
  1139. larger: ''
  1140. left: 280.983px
  1141. lesser: ''
  1142. linkhtml: 'true'
  1143. ref: 200-RTP-3-2102
  1144. top: 553.983px
  1145. trend: 'true'
  1146. type: data
  1147. unit:
  1148. size: 14
  1149. title: ' K'
  1150. weight: '700'
  1151. width: 67.4
  1152. 200-RTP-3-3102:
  1153. background_color: rgba(0, 0, 0, 0)
  1154. condition: ''
  1155. decimal: '2'
  1156. formula: ''
  1157. header:
  1158. size: 28
  1159. title: ' '
  1160. weight: '400'
  1161. height: 36.4
  1162. larger: ''
  1163. left: 379.983px
  1164. lesser: ''
  1165. linkhtml: 'true'
  1166. ref: 200-RTP-3-3102
  1167. top: 600px
  1168. trend: 'true'
  1169. type: data
  1170. unit:
  1171. size: 14
  1172. title: ' K'
  1173. weight: '700'
  1174. width: 67.4
  1175. 200-RTP-3-3103:
  1176. background_color: rgba(0, 0, 0, 0)
  1177. condition: ''
  1178. decimal: '2'
  1179. exponential: 'false'
  1180. formula: ''
  1181. header:
  1182. size: 28
  1183. title: ' '
  1184. weight: '400'
  1185. height: 44.4
  1186. larger: ''
  1187. left: 444px
  1188. lesser: ''
  1189. linkhtml: 'true'
  1190. ref: 200-RTP-3-3103
  1191. top: 650px
  1192. trend: 'true'
  1193. type: data
  1194. unit:
  1195. size: 14
  1196. title: ' K'
  1197. weight: '700'
  1198. width: 65.4
  1199. 200-RTP-3-4101:
  1200. background_color: rgba(0, 0, 0, 0)
  1201. condition: ''
  1202. decimal: '2'
  1203. formula: ''
  1204. header:
  1205. size: 28
  1206. title: ' '
  1207. weight: '400'
  1208. height: 38.4
  1209. larger: ''
  1210. left: 1292.48px
  1211. lesser: ''
  1212. linkhtml: 'true'
  1213. ref: 200-RTP-3-4101
  1214. top: 698.717px
  1215. trend: 'true'
  1216. type: data
  1217. unit:
  1218. size: 14
  1219. title: ' K'
  1220. weight: '700'
  1221. width: 70.4
  1222. 200-RTP-3-4102:
  1223. background_color: rgba(0, 0, 0, 0)
  1224. condition: ''
  1225. decimal: '2'
  1226. formula: ''
  1227. header:
  1228. size: 28
  1229. title: ' '
  1230. weight: '400'
  1231. height: 44.4
  1232. larger: ''
  1233. left: 1293px
  1234. lesser: ''
  1235. linkhtml: 'true'
  1236. ref: 200-RTP-3-4102
  1237. top: 555.2px
  1238. trend: 'true'
  1239. type: data
  1240. unit:
  1241. size: 14
  1242. title: ' K'
  1243. weight: '700'
  1244. width: 75.4
  1245. 200-RTP-3-5101:
  1246. background_color: rgba(0, 0, 0, 0)
  1247. condition: ''
  1248. decimal: '2'
  1249. exponential: 'false'
  1250. formula: ''
  1251. header:
  1252. size: 13
  1253. title: ' '
  1254. weight: '700'
  1255. height: 25.4
  1256. larger: ''
  1257. left: 1172.47px
  1258. lesser: ''
  1259. linkhtml: 'true'
  1260. ref: 200-RTP-3-5101
  1261. top: 657.85px
  1262. trend: 'true'
  1263. type: data
  1264. unit:
  1265. size: 14
  1266. title: ' K'
  1267. weight: '700'
  1268. width: 68.4
  1269. 200-RTP-3-5102:
  1270. background_color: rgba(0, 0, 0, 0)
  1271. condition: ''
  1272. decimal: '2'
  1273. formula: ''
  1274. header:
  1275. size: 13
  1276. title: ' '
  1277. weight: '400'
  1278. height: 28.4
  1279. larger: ''
  1280. left: 1172.73px
  1281. lesser: ''
  1282. linkhtml: 'true'
  1283. ref: 200-RTP-3-5102
  1284. top: 616.733px
  1285. trend: 'true'
  1286. type: data
  1287. unit:
  1288. size: 14
  1289. title: ' K'
  1290. weight: '700'
  1291. width: 68.4
  1292. 200-RTP-3-5112:
  1293. background_color: rgba(0, 0, 0, 0)
  1294. condition: ''
  1295. decimal: '2'
  1296. formula: ''
  1297. header:
  1298. size: 13
  1299. title: ' '
  1300. weight: '400'
  1301. height: 20.4
  1302. larger: ''
  1303. left: 901.983px
  1304. lesser: ''
  1305. linkhtml: 'true'
  1306. ref: 200-RTP-3-5112
  1307. top: 618px
  1308. trend: 'true'
  1309. type: data
  1310. unit:
  1311. size: 14
  1312. title: ' K'
  1313. weight: '700'
  1314. width: 65.4
  1315. 200-RTP-3-5113:
  1316. background_color: rgba(0, 0, 0, 0)
  1317. decimal: '2'
  1318. formula: ''
  1319. header:
  1320. size: 13
  1321. title: ' '
  1322. weight: '400'
  1323. height: 25.4
  1324. larger: ''
  1325. left: 901.983px
  1326. lesser: ''
  1327. linkhtml: 'true'
  1328. ref: 200-RTP-3-5113
  1329. top: 655.733px
  1330. trend: 'true'
  1331. type: data
  1332. unit:
  1333. size: 14
  1334. title: ' K'
  1335. weight: '700'
  1336. width: 68.4
  1337. 200-RTP-3-5123:
  1338. background_color: rgba(0, 0, 0, 0)
  1339. condition: ''
  1340. decimal: '2'
  1341. formula: ''
  1342. header:
  1343. size: 13
  1344. title: ' '
  1345. weight: '400'
  1346. height: 25.4
  1347. larger: ''
  1348. left: 670.5px
  1349. lesser: ''
  1350. linkhtml: 'true'
  1351. ref: 200-RTP-3-5123
  1352. top: 656.25px
  1353. trend: 'true'
  1354. type: data
  1355. unit:
  1356. size: 14
  1357. title: ' K'
  1358. weight: '700'
  1359. width: 70.4
  1360. 200-RTP-3-5124:
  1361. background_color: rgba(0, 0, 0, 0)
  1362. condition: ''
  1363. decimal: '2'
  1364. formula: ''
  1365. header:
  1366. size: 13
  1367. title: ' '
  1368. weight: '400'
  1369. height: 24.4
  1370. larger: ''
  1371. left: 668.5px
  1372. lesser: ''
  1373. linkhtml: 'true'
  1374. ref: 200-RTP-3-5124
  1375. top: 615.483px
  1376. trend: 'true'
  1377. type: data
  1378. unit:
  1379. size: 14
  1380. title: ' K'
  1381. weight: '700'
  1382. width: 73.4
  1383. 200-RTP-3-6101:
  1384. background_color: rgba(0, 0, 0, 0)
  1385. condition: ''
  1386. decimal: '2'
  1387. exponential: 'false'
  1388. formula: ''
  1389. header:
  1390. size: 28
  1391. title: ' '
  1392. weight: '400'
  1393. height: 40.4
  1394. larger: ''
  1395. left: 555.733px
  1396. lesser: ''
  1397. linkhtml: 'true'
  1398. ref: 200-RTP-3-6101
  1399. top: 697.083px
  1400. trend: 'true'
  1401. type: data
  1402. unit:
  1403. size: 14
  1404. title: ' K'
  1405. weight: '700'
  1406. width: 65.4
  1407. 200-RTP-3-6102:
  1408. background_color: rgba(0, 0, 0, 0)
  1409. decimal: '2'
  1410. exponential: 'false'
  1411. formula: ''
  1412. header:
  1413. size: 13
  1414. title: ' '
  1415. weight: '400'
  1416. height: 40.4
  1417. larger: ''
  1418. left: 555.233px
  1419. lesser: ''
  1420. linkhtml: 'true'
  1421. ref: 200-RTP-3-6102
  1422. top: 569.333px
  1423. trend: 'true'
  1424. type: data
  1425. unit:
  1426. size: 14
  1427. title: ' K'
  1428. weight: '700'
  1429. width: 70.4
  1430. 200-RTP-3-7102:
  1431. background_color: rgba(0, 0, 0, 0)
  1432. decimal: '2'
  1433. formula: ''
  1434. header:
  1435. size: 13
  1436. title: ' '
  1437. weight: '400'
  1438. height: 24.4
  1439. larger: ''
  1440. left: 1406.98px
  1441. lesser: ''
  1442. linkhtml: 'true'
  1443. ref: 200-RTP-3-7102
  1444. top: 614px
  1445. trend: 'true'
  1446. type: data
  1447. unit:
  1448. size: 14
  1449. title: ' K'
  1450. weight: '700'
  1451. width: 75.4
  1452. 200-RTP-3-7103:
  1453. background_color: rgba(0, 0, 0, 0)
  1454. condition: ''
  1455. decimal: '2'
  1456. exponential: 'false'
  1457. formula: ''
  1458. header:
  1459. size: 13
  1460. title: ' '
  1461. weight: '400'
  1462. height: 25.4
  1463. larger: ''
  1464. left: 1472.75px
  1465. lesser: ''
  1466. linkhtml: 'true'
  1467. ref: 200-RTP-3-7103
  1468. top: 664.983px
  1469. trend: 'true'
  1470. type: data
  1471. unit:
  1472. size: 14
  1473. title: ' K'
  1474. weight: '700'
  1475. width: 68.4
  1476. 200-RTP-3-8101:
  1477. background_color: rgba(0, 0, 0, 0)
  1478. decimal: '2'
  1479. exponential: 'false'
  1480. formula: ''
  1481. header:
  1482. size: 13
  1483. title: ' '
  1484. weight: '400'
  1485. height: 25.4
  1486. larger: ''
  1487. left: 1575.75px
  1488. lesser: ''
  1489. linkhtml: 'true'
  1490. ref: 200-RTP-3-8101
  1491. top: 711.717px
  1492. trend: 'true'
  1493. type: data
  1494. unit:
  1495. size: 14
  1496. title: ' K'
  1497. weight: '700'
  1498. width: 75.4
  1499. 200-RTP-3-8102:
  1500. background_color: rgba(0, 0, 0, 0)
  1501. decimal: '2'
  1502. exponential: 'false'
  1503. formula: ''
  1504. header:
  1505. size: 13
  1506. title: ' '
  1507. weight: '400'
  1508. height: 27.4
  1509. larger: ''
  1510. left: 1574.73px
  1511. lesser: ''
  1512. linkhtml: 'true'
  1513. ref: 200-RTP-3-8102
  1514. top: 567.983px
  1515. trend: 'true'
  1516. type: data
  1517. unit:
  1518. size: 14
  1519. title: ' K'
  1520. weight: '700'
  1521. width: 70.4
  1522. 200-RTP-3-9102:
  1523. background_color: rgba(0, 0, 0, 0)
  1524. condition: ''
  1525. decimal: '2'
  1526. formula: ''
  1527. header:
  1528. size: 13
  1529. title: ' '
  1530. weight: '400'
  1531. height: 24.4
  1532. larger: ''
  1533. left: 1674.25px
  1534. lesser: ''
  1535. linkhtml: 'true'
  1536. ref: 200-RTP-3-9102
  1537. top: 614px
  1538. trend: 'true'
  1539. type: data
  1540. unit:
  1541. size: 14
  1542. title: ' K'
  1543. weight: '700'
  1544. width: 75.4
  1545. 200-RTP-3-9103:
  1546. background_color: rgba(0, 0, 0, 0)
  1547. condition: ''
  1548. decimal: '2'
  1549. formula: ''
  1550. header:
  1551. size: 13
  1552. title: ' '
  1553. weight: '400'
  1554. height: 20.4
  1555. larger: ''
  1556. left: 1738.25px
  1557. lesser: ''
  1558. linkhtml: 'true'
  1559. ref: 200-RTP-3-9103
  1560. top: 660.75px
  1561. trend: 'true'
  1562. type: data
  1563. unit:
  1564. size: 14
  1565. title: ' K'
  1566. weight: '700'
  1567. width: 68.4
  1568. 200-RTT-1-1101:
  1569. background_color: rgba(0, 0, 0, 0)
  1570. condition: ''
  1571. decimal: '2'
  1572. formula: ''
  1573. header:
  1574. size: 13
  1575. title: 'RTT-1-1101 '
  1576. weight: '400'
  1577. height: 25.4
  1578. larger: ''
  1579. left: 678.483px
  1580. lesser: ''
  1581. linkhtml: 'true'
  1582. ref: 200-RTT-1-1101
  1583. top: 511.983px
  1584. trend: 'true'
  1585. type: data
  1586. unit:
  1587. size: 14
  1588. title: ' K'
  1589. weight: '700'
  1590. width: 140.4
  1591. 200-RTT-1-2101:
  1592. background_color: rgba(0, 0, 0, 0)
  1593. condition: ''
  1594. decimal: '2'
  1595. formula: ''
  1596. header:
  1597. size: 13
  1598. title: 'RTT-1-2101 '
  1599. weight: '400'
  1600. height: 24.4
  1601. larger: ''
  1602. left: 876.483px
  1603. lesser: ''
  1604. linkhtml: 'true'
  1605. ref: 200-RTT-1-2101
  1606. top: 512.75px
  1607. trend: 'true'
  1608. type: data
  1609. unit:
  1610. size: 14
  1611. title: ' K'
  1612. weight: '700'
  1613. width: 136.4
  1614. 200-RTT-1-3101:
  1615. background_color: rgba(0, 0, 0, 0)
  1616. condition: ''
  1617. decimal: '2'
  1618. formula: ''
  1619. header:
  1620. size: 13
  1621. title: 'RTT-1-3101 '
  1622. weight: '400'
  1623. height: 20.4
  1624. larger: ''
  1625. left: 1085.23px
  1626. lesser: ''
  1627. linkhtml: 'true'
  1628. ref: 200-RTT-1-3101
  1629. top: 511.983px
  1630. trend: 'true'
  1631. type: data
  1632. unit:
  1633. size: 14
  1634. title: ' K'
  1635. weight: '700'
  1636. width: 140.4
  1637. 200-RTT-1-4101:
  1638. background_color: rgba(0, 0, 0, 0)
  1639. condition: ''
  1640. decimal: '2'
  1641. formula: ''
  1642. header:
  1643. size: 13
  1644. title: 'RTT-1-4101 '
  1645. weight: '400'
  1646. height: 25.4
  1647. larger: ''
  1648. left: 371.483px
  1649. lesser: ''
  1650. linkhtml: 'true'
  1651. ref: 200-RTT-1-4101
  1652. top: 511.983px
  1653. trend: 'true'
  1654. type: data
  1655. unit:
  1656. size: 14
  1657. title: ' K'
  1658. weight: '700'
  1659. width: 139.4
  1660. 200-RTT-1-5101:
  1661. background_color: rgba(0, 0, 0, 0)
  1662. condition: ''
  1663. decimal: '2'
  1664. formula: ''
  1665. header:
  1666. size: 13
  1667. title: 'RTT-1-5101 '
  1668. weight: '400'
  1669. height: 25.4
  1670. larger: ''
  1671. left: 102.233px
  1672. lesser: ''
  1673. linkhtml: 'true'
  1674. ref: 200-RTT-1-5101
  1675. top: 512.967px
  1676. trend: 'true'
  1677. type: data
  1678. unit:
  1679. size: 14
  1680. title: ' K'
  1681. weight: '700'
  1682. width: 147.4
  1683. 200-RTT-1-6101:
  1684. background_color: rgba(0, 0, 0, 0)
  1685. condition: ''
  1686. decimal: '2'
  1687. formula: ''
  1688. header:
  1689. size: 13
  1690. title: 'RTT-1-6101 '
  1691. weight: '400'
  1692. height: 24.4
  1693. larger: ''
  1694. left: 1665.48px
  1695. lesser: ''
  1696. linkhtml: 'true'
  1697. ref: 200-RTT-1-6101
  1698. top: 513.25px
  1699. trend: 'true'
  1700. type: data
  1701. unit:
  1702. size: 14
  1703. title: ' K'
  1704. weight: '700'
  1705. width: 140.4
  1706. 200-RTT-1-7101:
  1707. background_color: rgba(0, 0, 0, 0)
  1708. condition: ''
  1709. decimal: '2'
  1710. formula: ''
  1711. header:
  1712. size: 13
  1713. title: 'RTT-1-7101 '
  1714. weight: '400'
  1715. height: 25.4
  1716. larger: ''
  1717. left: 1400.73px
  1718. lesser: ''
  1719. linkhtml: 'true'
  1720. ref: 200-RTT-1-7101
  1721. top: 511.983px
  1722. trend: 'true'
  1723. type: data
  1724. unit:
  1725. size: 14
  1726. title: ' K'
  1727. weight: '700'
  1728. width: 144.4
  1729. 200-RTT-2-1111:
  1730. background_color: rgba(0, 0, 0, 0)
  1731. condition: ''
  1732. decimal: '2'
  1733. formula: ''
  1734. header:
  1735. size: 13
  1736. title: 'RTT-2-1111 '
  1737. weight: '400'
  1738. height: 24.4
  1739. larger: ''
  1740. left: 472.75px
  1741. lesser: ''
  1742. linkhtml: 'true'
  1743. ref: 200-RTT-2-1111
  1744. top: 127.233px
  1745. trend: 'true'
  1746. type: data
  1747. unit:
  1748. size: 14
  1749. title: ' K'
  1750. weight: '700'
  1751. width: 150.4
  1752. 200-RTT-2-1112:
  1753. background_color: rgba(0, 0, 0, 0)
  1754. decimal: '2'
  1755. exponential: 'False'
  1756. formula: ''
  1757. header:
  1758. size: 13
  1759. title: 'RTT-2-1112 '
  1760. weight: '400'
  1761. height: 25.4
  1762. larger: ''
  1763. left: 508.483px
  1764. lesser: ''
  1765. linkhtml: 'true'
  1766. ref: 200-RTT-2-1112
  1767. top: 56.75px
  1768. trend: 'true'
  1769. type: data
  1770. unit:
  1771. size: 14
  1772. title: ' K'
  1773. weight: '700'
  1774. width: 145.4
  1775. 200-RTT-2-1113:
  1776. background_color: rgba(0, 0, 0, 0)
  1777. condition: ''
  1778. decimal: '2'
  1779. formula: ''
  1780. header:
  1781. size: 13
  1782. title: 'RTT-2-1113 '
  1783. weight: '400'
  1784. height: 25.4
  1785. larger: ''
  1786. left: 1166px
  1787. lesser: ''
  1788. linkhtml: 'true'
  1789. ref: 200-RTT-2-1113
  1790. top: 279.983px
  1791. trend: 'true'
  1792. type: data
  1793. unit:
  1794. size: 14
  1795. title: ' K'
  1796. weight: '700'
  1797. width: 140.4
  1798. 200-RTT-2-1120:
  1799. background_color: rgba(0, 0, 0, 0)
  1800. condition: ''
  1801. decimal: '2'
  1802. formula: ''
  1803. header:
  1804. size: 13
  1805. title: 'RTT-2-1120 '
  1806. weight: '400'
  1807. height: 25.4
  1808. larger: ''
  1809. left: 830.733px
  1810. lesser: ''
  1811. linkhtml: 'true'
  1812. ref: 200-RTT-2-1120
  1813. top: 406px
  1814. trend: 'true'
  1815. type: data
  1816. unit:
  1817. size: 14
  1818. title: ' K'
  1819. weight: '700'
  1820. width: 139.4
  1821. 200-RTT-2-3116:
  1822. background_color: rgba(0, 0, 0, 0)
  1823. condition: ''
  1824. decimal: '2'
  1825. exponential: 'false'
  1826. formula: ''
  1827. header:
  1828. size: 13
  1829. title: 'RTT-2-3116 '
  1830. weight: '400'
  1831. height: 20.4
  1832. larger: ''
  1833. left: 268.983px
  1834. lesser: ''
  1835. linkhtml: 'true'
  1836. ref: 200-RTT-2-3116
  1837. top: 37.0167px
  1838. trend: 'true'
  1839. type: data
  1840. unit:
  1841. size: 14
  1842. title: ' K'
  1843. weight: '700'
  1844. width: 139.4
  1845. 200-RTT-2-3118:
  1846. background_color: rgba(0, 0, 0, 0)
  1847. condition: ''
  1848. decimal: '2'
  1849. formula: ''
  1850. header:
  1851. size: 13
  1852. title: 'RTT-2-3118 '
  1853. weight: '400'
  1854. height: 19.4
  1855. larger: ''
  1856. left: 251.733px
  1857. lesser: ''
  1858. linkhtml: 'true'
  1859. ref: 200-RTT-2-3118
  1860. top: 127px
  1861. trend: 'true'
  1862. type: data
  1863. unit:
  1864. size: 14
  1865. title: ' K'
  1866. weight: '700'
  1867. width: 152.4
  1868. 200-VAI-2-1016:
  1869. background_color: rgba(0, 0, 0, 0)
  1870. condition: ''
  1871. decimal: '2'
  1872. exponential: 'false'
  1873. formula: ''
  1874. header:
  1875. size: 13
  1876. title: 'VAI-2-1016 '
  1877. weight: '400'
  1878. height: 48.4
  1879. larger: ''
  1880. left: 728.233px
  1881. lesser: ''
  1882. linkhtml: 'true'
  1883. ref: 200-VAI-2-1016
  1884. top: 229.483px
  1885. trend: 'true'
  1886. type: data
  1887. unit:
  1888. size: 14
  1889. title: ' %'
  1890. weight: '700'
  1891. width: 68.4
  1892. 200-VAI-2-1017:
  1893. background_color: rgba(0, 0, 0, 0)
  1894. condition: ''
  1895. decimal: '2'
  1896. exponential: 'false'
  1897. formula: ''
  1898. header:
  1899. size: 13
  1900. title: 'VAI-2-1017 '
  1901. weight: '400'
  1902. height: 49.4
  1903. larger: ''
  1904. left: 683.233px
  1905. lesser: ''
  1906. linkhtml: 'true'
  1907. ref: 200-VAI-2-1017
  1908. top: 302.983px
  1909. trend: 'true'
  1910. type: data
  1911. unit:
  1912. size: 14
  1913. title: ' %'
  1914. weight: '700'
  1915. width: 88.4
  1916. 200-VAI-2-2000:
  1917. background_color: rgba(0, 0, 0, 0)
  1918. condition: ''
  1919. decimal: '2'
  1920. formula: ''
  1921. header:
  1922. size: 13
  1923. title: 'VAI-2-2000 '
  1924. weight: '400'
  1925. height: 24.4
  1926. larger: ''
  1927. left: 1247.23px
  1928. lesser: ''
  1929. linkhtml: 'true'
  1930. ref: 200-VAI-2-2000
  1931. top: 158.75px
  1932. trend: 'true'
  1933. type: data
  1934. unit:
  1935. size: 14
  1936. title: ' %'
  1937. weight: '700'
  1938. width: 140.4
  1939. 200-VAO-4-1001:
  1940. background_color: rgba(0, 0, 0, 0)
  1941. condition: ''
  1942. decimal: '2'
  1943. exponential: 'false'
  1944. formula: ''
  1945. header:
  1946. size: 13
  1947. title: 'VAO-4-1001 '
  1948. weight: '400'
  1949. height: 27.4
  1950. larger: ''
  1951. left: 456px
  1952. lesser: ''
  1953. linkhtml: 'true'
  1954. ref: 200-VAO-4-1001
  1955. top: 936px
  1956. trend: 'true'
  1957. type: data
  1958. unit:
  1959. size: 14
  1960. title: ' '
  1961. weight: '700'
  1962. width: 132.4
  1963. 200-VAO-4-1007:
  1964. background_color: rgba(0, 0, 0, 0)
  1965. decimal: '2'
  1966. exponential: 'false'
  1967. formula: ''
  1968. header:
  1969. size: 13
  1970. title: 'VAO-4-1007 '
  1971. weight: '400'
  1972. height: 22.4
  1973. larger: ''
  1974. left: 329px
  1975. lesser: ''
  1976. linkhtml: 'true'
  1977. ref: 200-VAO-4-1007
  1978. top: 1041px
  1979. trend: 'true'
  1980. type: data
  1981. unit:
  1982. size: 14
  1983. title: ' '
  1984. weight: '700'
  1985. width: 140.4
  1986. 200-VAO-4-1051:
  1987. background_color: rgba(0, 0, 0, 0)
  1988. condition: ''
  1989. decimal: '2'
  1990. exponential: 'false'
  1991. formula: ''
  1992. header:
  1993. size: 13
  1994. title: 'VAO-4-1051 '
  1995. weight: '400'
  1996. height: 32.4
  1997. larger: ''
  1998. left: 1483px
  1999. lesser: ''
  2000. linkhtml: 'true'
  2001. ref: 200-VAO-4-1051
  2002. top: 935px
  2003. trend: 'true'
  2004. type: data
  2005. unit:
  2006. size: 14
  2007. title: ' '
  2008. weight: '700'
  2009. width: 148.4
  2010. 200-VAO-4-1057:
  2011. background_color: rgba(0, 0, 0, 0)
  2012. decimal: '2'
  2013. exponential: 'false'
  2014. formula: ''
  2015. header:
  2016. size: 13
  2017. title: 'VAO-4-1057 '
  2018. weight: '400'
  2019. height: 24.4
  2020. larger: ''
  2021. left: 1360px
  2022. lesser: ''
  2023. linkhtml: 'true'
  2024. ref: 200-VAO-4-1057
  2025. top: 1042px
  2026. trend: 'true'
  2027. type: data
  2028. unit:
  2029. size: 14
  2030. title: ' '
  2031. weight: '700'
  2032. width: 152.4
  2033. 200-VMI-2-1010:
  2034. background_color: rgba(0, 0, 0, 0)
  2035. condition: ''
  2036. decimal: '2'
  2037. formula: ''
  2038. header:
  2039. size: 13
  2040. title: 'VMI-2-1010 '
  2041. weight: '400'
  2042. height: 46.4
  2043. larger: ''
  2044. left: 628.733px
  2045. lesser: ''
  2046. linkhtml: 'true'
  2047. ref: 200-VMI-2-1010
  2048. top: 229.233px
  2049. trend: 'true'
  2050. type: data
  2051. unit:
  2052. size: 14
  2053. title: ' %'
  2054. weight: '700'
  2055. width: 73.4
  2056. 200-VMI-2-1018:
  2057. background_color: rgba(0, 0, 0, 0)
  2058. condition: ''
  2059. decimal: '2'
  2060. exponential: 'false'
  2061. formula: ''
  2062. header:
  2063. size: 13
  2064. title: 'VMI-2-1018 '
  2065. weight: '400'
  2066. height: 20.4
  2067. larger: ''
  2068. left: 629.25px
  2069. lesser: ''
  2070. linkhtml: 'true'
  2071. ref: 200-VMI-2-1018
  2072. top: 404.5px
  2073. trend: 'true'
  2074. type: data
  2075. unit:
  2076. size: 14
  2077. title: ' %'
  2078. weight: '700'
  2079. width: 155.4
  2080. 200-VYS-2-2048:
  2081. background_color: rgba(0, 0, 0, 0)
  2082. decimal: '2'
  2083. exponential: 'False'
  2084. formula: ''
  2085. header:
  2086. size: 13
  2087. title: 'VYS-2-2048 '
  2088. weight: '400'
  2089. height: 20.4
  2090. larger: ''
  2091. left: 963.967px
  2092. lesser: ''
  2093. linkhtml: 'true'
  2094. ref: 200-VYS-2-2048
  2095. top: 147.983px
  2096. trend: 'true'
  2097. type: data
  2098. unit:
  2099. size: 14
  2100. title: ' '
  2101. weight: '700'
  2102. width: 134.4
  2103. 722-VAI_2_2001:
  2104. background_color: rgba(0, 0, 0, 0)
  2105. condition: ''
  2106. decimal: '2'
  2107. exponential: 'false'
  2108. formula: ''
  2109. header:
  2110. size: 13
  2111. title: '722-VAI-2-2001 '
  2112. weight: '400'
  2113. height: 22.4
  2114. larger: ''
  2115. left: 38px
  2116. lesser: ''
  2117. linkhtml: 'true'
  2118. ref: 722-VAI_2_2001
  2119. top: 113px
  2120. trend: 'true'
  2121. type: data
  2122. unit:
  2123. size: 14
  2124. title: ' %'
  2125. weight: '700'
  2126. width: 185.4
  2127. 722-VAI_2_2005:
  2128. background_color: rgba(0, 0, 0, 0)
  2129. condition: ''
  2130. decimal: '2'
  2131. exponential: 'false'
  2132. formula: ''
  2133. header:
  2134. size: 13
  2135. title: '722-VAI-2-2005 '
  2136. weight: '400'
  2137. height: 24.4
  2138. larger: ''
  2139. left: 38px
  2140. lesser: ''
  2141. linkhtml: 'true'
  2142. ref: 722-VAI_2_2005
  2143. top: 74px
  2144. trend: 'true'
  2145. type: data
  2146. unit:
  2147. size: 14
  2148. title: ' %'
  2149. weight: '700'
  2150. width: 171.4
  2151. 722-VMI_2_6001:
  2152. background_color: rgba(0, 0, 0, 0)
  2153. decimal: '2'
  2154. exponential: 'false'
  2155. formula: ''
  2156. header:
  2157. size: 12
  2158. title: '722-VMI-2-6001 '
  2159. weight: '400'
  2160. height: 25.4
  2161. larger: ''
  2162. left: 1235.98px
  2163. lesser: ''
  2164. linkhtml: 'true'
  2165. ref: 722-VMI_2_6001
  2166. top: 55px
  2167. trend: 'true'
  2168. type: data
  2169. unit:
  2170. size: 14
  2171. title: ' %'
  2172. weight: '700'
  2173. width: 158.4
  2174. header_temperature-gradients:
  2175. background_color: rgba(0, 0, 0, 0)
  2176. header:
  2177. size: 13
  2178. title: 'Temperature gradients: '
  2179. weight: '700'
  2180. height: 22.4
  2181. left: 1538px
  2182. top: 260px
  2183. type: header
  2184. width: 198.4