style.yaml 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232
  1. 311-RTP-1-1031:
  2. background_color: rgba(0, 0, 0, 0)
  3. decimal: '1'
  4. exponential: 'false'
  5. formula: ''
  6. header:
  7. size: 16
  8. title: 'T.Bot. '
  9. weight: '400'
  10. height: 26
  11. larger: ''
  12. left: 280px
  13. lesser: ''
  14. linkhtml: 'true'
  15. ref: 311-RTP-1-1031
  16. top: 844px
  17. trend: 'true'
  18. type: data
  19. unit:
  20. size: 16
  21. title: ' K'
  22. weight: '700'
  23. width: 123
  24. 311-RTP-1-2031:
  25. background_color: rgba(0, 0, 0, 0)
  26. decimal: '1'
  27. exponential: 'false'
  28. formula: ''
  29. header:
  30. size: 16
  31. title: 'T.Bot. '
  32. weight: '400'
  33. height: 26
  34. larger: ''
  35. left: 630px
  36. lesser: ''
  37. linkhtml: 'true'
  38. ref: 311-RTP-1-2031
  39. top: 725px
  40. trend: 'true'
  41. type: data
  42. unit:
  43. size: 16
  44. title: ' K'
  45. weight: '700'
  46. width: 123
  47. 311-RTP-1-3031:
  48. background_color: rgba(0, 0, 0, 0)
  49. decimal: '1'
  50. exponential: 'false'
  51. formula: ''
  52. header:
  53. size: 16
  54. title: 'T.Bot. '
  55. weight: '400'
  56. height: 26
  57. larger: ''
  58. left: 950px
  59. lesser: ''
  60. linkhtml: 'true'
  61. ref: 311-RTP-1-3031
  62. top: 637px
  63. trend: 'true'
  64. type: data
  65. unit:
  66. size: 16
  67. title: ' K'
  68. weight: '700'
  69. width: 123
  70. 311-RTP-1-4031:
  71. background_color: rgba(0, 0, 0, 0)
  72. decimal: '1'
  73. exponential: 'false'
  74. formula: ''
  75. header:
  76. size: 16
  77. title: 'T.Bot. '
  78. weight: '400'
  79. height: 26
  80. larger: ''
  81. left: 1180px
  82. lesser: ''
  83. linkhtml: 'true'
  84. ref: 311-RTP-1-4031
  85. top: 715px
  86. trend: 'true'
  87. type: data
  88. unit:
  89. size: 16
  90. title: ' K'
  91. weight: '700'
  92. width: 123
  93. 311-RTP-1-5031:
  94. background_color: rgba(0, 0, 0, 0)
  95. decimal: '1'
  96. exponential: 'false'
  97. formula: ''
  98. header:
  99. size: 16
  100. title: 'T.Bot. '
  101. weight: '400'
  102. height: 26
  103. larger: ''
  104. left: 1530px
  105. lesser: ''
  106. linkhtml: 'true'
  107. ref: 311-RTP-1-5031
  108. top: 835px
  109. trend: 'true'
  110. type: data
  111. unit:
  112. size: 16
  113. title: ' K'
  114. weight: '700'
  115. width: 123
  116. 311-E23-1-1100-MAG-I:
  117. background_color: rgba(0, 0, 0, 0)
  118. decimal: '2'
  119. exponential: 'false'
  120. formula: ''
  121. header:
  122. size: 16
  123. title: 'I_mag '
  124. weight: '400'
  125. height: 26
  126. larger: ''
  127. left: 149px
  128. lesser: ''
  129. linkhtml: 'true'
  130. ref: 311-E23-1-1100-MAG-I
  131. top: 834px
  132. trend: 'true'
  133. type: data
  134. unit:
  135. size: 16
  136. title: ' A'
  137. weight: '700'
  138. width: 123
  139. 311-E23-1-2100-MAG-I:
  140. background_color: rgba(0, 0, 0, 0)
  141. decimal: '2'
  142. exponential: 'false'
  143. formula: ''
  144. header:
  145. size: 16
  146. title: 'I_mag '
  147. weight: '400'
  148. height: 21
  149. larger: ''
  150. left: 523px
  151. lesser: ''
  152. linkhtml: 'true'
  153. ref: 311-E23-1-2100-MAG-I
  154. top: 739px
  155. trend: 'true'
  156. type: data
  157. unit:
  158. size: 16
  159. title: ' A'
  160. weight: '700'
  161. width: 126
  162. 311-E23-1-3100-MAG-I:
  163. background_color: rgba(0, 0, 0, 0)
  164. decimal: '2'
  165. exponential: 'false'
  166. formula: ''
  167. header:
  168. size: 16
  169. title: 'I_mag '
  170. weight: '400'
  171. height: 21
  172. larger: ''
  173. left: 850px
  174. lesser: ''
  175. linkhtml: 'true'
  176. ref: 311-E23-1-3100-MAG-I
  177. top: 617px
  178. trend: 'true'
  179. type: data
  180. unit:
  181. size: 16
  182. title: ' A'
  183. weight: '700'
  184. width: 131
  185. 311-E23-1-4100-MAG-I:
  186. background_color: rgba(0, 0, 0, 0)
  187. decimal: '2'
  188. exponential: 'false'
  189. formula: ''
  190. header:
  191. size: 16
  192. title: 'I_mag '
  193. weight: '400'
  194. height: 21
  195. larger: ''
  196. left: 1296px
  197. lesser: ''
  198. linkhtml: 'true'
  199. ref: 311-E23-1-4100-MAG-I
  200. top: 743px
  201. trend: 'true'
  202. type: data
  203. unit:
  204. size: 16
  205. title: ' A'
  206. weight: '700'
  207. width: 129
  208. 311-E23-1-5100-MAG-I:
  209. background_color: rgba(0, 0, 0, 0)
  210. decimal: '2'
  211. exponential: 'false'
  212. formula: ''
  213. header:
  214. size: 16
  215. title: 'I_mag '
  216. weight: '400'
  217. height: 21
  218. larger: ''
  219. left: 1639px
  220. lesser: ''
  221. linkhtml: 'true'
  222. ref: 311-E23-1-5100-MAG-I
  223. top: 852px
  224. trend: 'true'
  225. type: data
  226. unit:
  227. size: 16
  228. title: ' A'
  229. weight: '700'
  230. width: 141
  231. 311-HEE-1-1065:
  232. background_color: rgba(0, 0, 0, 0)
  233. decimal: '3'
  234. exponential: 'false'
  235. formula: ''
  236. header:
  237. size: 15
  238. title: 'HRC: '
  239. weight: '400'
  240. height: 23
  241. larger: ''
  242. left: 177px
  243. lesser: ''
  244. linkhtml: 'true'
  245. ref: 311-HEE-1-1065
  246. top: 476px
  247. trend: 'true'
  248. type: data
  249. unit:
  250. size: 15
  251. title: ' W'
  252. weight: '400'
  253. width: 110
  254. 311-HEE-1-2065:
  255. background_color: rgba(0, 0, 0, 0)
  256. decimal: '3'
  257. exponential: 'false'
  258. formula: ''
  259. header:
  260. size: 15
  261. title: 'HRC: '
  262. weight: '400'
  263. height: 23
  264. larger: ''
  265. left: 530px
  266. lesser: ''
  267. linkhtml: 'true'
  268. ref: 311-HEE-1-2065
  269. top: 361px
  270. trend: 'true'
  271. type: data
  272. unit:
  273. size: 15
  274. title: ' W'
  275. weight: '400'
  276. width: 114
  277. 311-HEE-1-3065:
  278. background_color: rgba(0, 0, 0, 0)
  279. decimal: '3'
  280. exponential: 'false'
  281. formula: ''
  282. header:
  283. size: 15
  284. title: 'HRC: '
  285. weight: '400'
  286. height: 23
  287. larger: ''
  288. left: 885px
  289. lesser: ''
  290. linkhtml: 'true'
  291. ref: 311-HEE-1-3065
  292. top: 256px
  293. trend: 'true'
  294. type: data
  295. unit:
  296. size: 15
  297. title: ' W'
  298. weight: '400'
  299. width: 115
  300. 311-HEE-1-4065:
  301. background_color: rgba(0, 0, 0, 0)
  302. decimal: '3'
  303. exponential: 'false'
  304. formula: ''
  305. header:
  306. size: 15
  307. title: 'HRC: '
  308. weight: '400'
  309. height: 23
  310. larger: ''
  311. left: 1235px
  312. lesser: ''
  313. linkhtml: 'true'
  314. ref: 311-HEE-1-4065
  315. top: 358px
  316. trend: 'true'
  317. type: data
  318. unit:
  319. size: 15
  320. title: ' W'
  321. weight: '400'
  322. width: 116
  323. 311-HEE-1-5065:
  324. background_color: rgba(0, 0, 0, 0)
  325. decimal: '3'
  326. exponential: 'false'
  327. formula: ''
  328. header:
  329. size: 15
  330. title: 'HRC: '
  331. weight: '400'
  332. height: 24
  333. larger: ''
  334. left: 1587px
  335. lesser: ''
  336. linkhtml: 'true'
  337. ref: 311-HEE-1-5065
  338. top: 469px
  339. trend: 'true'
  340. type: data
  341. unit:
  342. size: 15
  343. title: ' W'
  344. weight: '400'
  345. width: 114
  346. 311-RBY-1-1051:
  347. background_color: rgba(0, 0, 0, 0)
  348. decimal: '3'
  349. exponential: 'false'
  350. formula: ''
  351. header:
  352. size: 15
  353. title: 'B on A-Side: '
  354. weight: '400'
  355. height: 25
  356. larger: ''
  357. left: 78.95px
  358. lesser: ''
  359. linkhtml: 'true'
  360. ref: 311-RBY-1-1051
  361. top: 908.983px
  362. trend: 'true'
  363. type: data
  364. unit:
  365. size: 17
  366. title: ' T'
  367. weight: '700'
  368. width: 169
  369. 311-RBY-1-1052:
  370. background_color: rgba(0, 0, 0, 0)
  371. decimal: '3'
  372. exponential: 'false'
  373. formula: ''
  374. header:
  375. size: 15
  376. title: 'B on B-Side: '
  377. weight: '400'
  378. height: 25
  379. larger: ''
  380. left: 252px
  381. lesser: ''
  382. linkhtml: 'true'
  383. ref: 311-RBY-1-1052
  384. top: 908.983px
  385. trend: 'true'
  386. type: data
  387. unit:
  388. size: 17
  389. title: ' T'
  390. weight: '700'
  391. width: 167
  392. 311-RBY-1-2051:
  393. background_color: rgba(0, 0, 0, 0)
  394. decimal: '3'
  395. exponential: 'false'
  396. formula: ''
  397. header:
  398. size: 15
  399. title: 'B on A-Side: '
  400. weight: '400'
  401. height: 23
  402. larger: ''
  403. left: 435.983px
  404. lesser: ''
  405. linkhtml: 'true'
  406. ref: 311-RBY-1-2051
  407. top: 798px
  408. trend: 'true'
  409. type: data
  410. unit:
  411. size: 17
  412. title: ' T'
  413. weight: '700'
  414. width: 173
  415. 311-RBY-1-2052:
  416. background_color: rgba(0, 0, 0, 0)
  417. decimal: '3'
  418. exponential: 'false'
  419. formula: ''
  420. header:
  421. size: 15
  422. title: 'B on B-Side: '
  423. weight: '400'
  424. height: 26
  425. larger: ''
  426. left: 616.983px
  427. lesser: ''
  428. linkhtml: 'true'
  429. ref: 311-RBY-1-2052
  430. top: 794.983px
  431. trend: 'true'
  432. type: data
  433. unit:
  434. size: 17
  435. title: ' T'
  436. weight: '700'
  437. width: 172
  438. 311-RBY-1-3051:
  439. background_color: rgba(0, 0, 0, 0)
  440. decimal: '3'
  441. exponential: 'false'
  442. formula: ''
  443. header:
  444. size: 15
  445. title: 'B on A-Side: '
  446. weight: '400'
  447. height: 28
  448. larger: ''
  449. left: 791px
  450. lesser: ''
  451. linkhtml: 'true'
  452. ref: 311-RBY-1-3051
  453. top: 696px
  454. trend: 'true'
  455. type: data
  456. unit:
  457. size: 17
  458. title: ' T'
  459. weight: '700'
  460. width: 175
  461. 311-RBY-1-3052:
  462. background_color: rgba(0, 0, 0, 0)
  463. decimal: '3'
  464. exponential: 'false'
  465. formula: ''
  466. header:
  467. size: 15
  468. title: 'B on B-Side: '
  469. weight: '400'
  470. height: 28
  471. larger: ''
  472. left: 969.983px
  473. lesser: ''
  474. linkhtml: 'true'
  475. ref: 311-RBY-1-3052
  476. top: 695px
  477. trend: 'true'
  478. type: data
  479. unit:
  480. size: 17
  481. title: ' T'
  482. weight: '700'
  483. width: 174
  484. 311-RBY-1-4051:
  485. background_color: rgba(0, 0, 0, 0)
  486. decimal: '3'
  487. exponential: 'false'
  488. formula: ''
  489. header:
  490. size: 15
  491. title: 'B on A-Side: '
  492. weight: '400'
  493. height: 27
  494. larger: ''
  495. left: 1144.95px
  496. lesser: ''
  497. linkhtml: 'true'
  498. ref: 311-RBY-1-4051
  499. top: 795.967px
  500. trend: 'true'
  501. type: data
  502. unit:
  503. size: 17
  504. title: ' T'
  505. weight: '700'
  506. width: 169
  507. 311-RBY-1-4052:
  508. background_color: rgba(0, 0, 0, 0)
  509. decimal: '3'
  510. exponential: 'false'
  511. formula: ''
  512. header:
  513. size: 15
  514. title: 'B on B-Side: '
  515. weight: '400'
  516. height: 27
  517. larger: ''
  518. left: 1319.97px
  519. lesser: ''
  520. linkhtml: 'true'
  521. ref: 311-RBY-1-4052
  522. top: 795.983px
  523. trend: 'true'
  524. type: data
  525. unit:
  526. size: 17
  527. title: ' T'
  528. weight: '700'
  529. width: 173
  530. 311-RBY-1-5051:
  531. background_color: rgba(0, 0, 0, 0)
  532. decimal: '3'
  533. exponential: 'false'
  534. formula: ''
  535. header:
  536. size: 15
  537. title: 'B on A-Side: '
  538. weight: '400'
  539. height: 24
  540. larger: ''
  541. left: 1503.97px
  542. lesser: ''
  543. linkhtml: 'true'
  544. ref: 311-RBY-1-5051
  545. top: 910.95px
  546. trend: 'true'
  547. type: data
  548. unit:
  549. size: 17
  550. title: ' T'
  551. weight: '700'
  552. width: 175
  553. 311-RBY-1-5052:
  554. background_color: rgba(0, 0, 0, 0)
  555. decimal: '3'
  556. exponential: 'false'
  557. formula: ''
  558. header:
  559. size: 15
  560. title: 'B on B-side: '
  561. weight: '400'
  562. height: 23
  563. larger: ''
  564. left: 1683px
  565. lesser: ''
  566. linkhtml: 'true'
  567. ref: 311-RBY-1-5052
  568. top: 910px
  569. trend: 'true'
  570. type: data
  571. unit:
  572. size: 17
  573. title: ' T'
  574. weight: '700'
  575. width: 185
  576. 311-RFC-1-1510-F-X:
  577. background_color: rgba(0, 0, 0, 0)
  578. decimal: '1'
  579. exponential: 'false'
  580. formula: ''
  581. header:
  582. size: 14
  583. title: 'gHe-filling: '
  584. weight: '400'
  585. height: 22
  586. larger: '80'
  587. left: 177px
  588. lesser: ''
  589. linkhtml: 'true'
  590. ref: 311-RFC-1-1510-F-X
  591. top: 360px
  592. trend: 'true'
  593. type: data
  594. unit:
  595. size: 14
  596. title: ' L/min'
  597. weight: '400'
  598. width: 300
  599. 311-RFC-1-2510-F-X:
  600. background_color: rgba(0, 0, 0, 0)
  601. decimal: '1'
  602. exponential: 'false'
  603. formula: ''
  604. header:
  605. size: 14
  606. title: 'gHe-filling: '
  607. weight: '400'
  608. height: 22
  609. larger: '80'
  610. left: 527px
  611. lesser: ''
  612. linkhtml: 'true'
  613. ref: 311-RFC-1-2510-F-X
  614. top: 245px
  615. trend: 'true'
  616. type: data
  617. unit:
  618. size: 14
  619. title: ' L/min'
  620. weight: '400'
  621. width: 300
  622. 311-RFC-1-3510-F-X:
  623. background_color: rgba(0, 0, 0, 0)
  624. decimal: '1'
  625. exponential: 'false'
  626. formula: ''
  627. header:
  628. size: 14
  629. title: 'gHe-filling: '
  630. weight: '400'
  631. height: 22
  632. larger: '80'
  633. left: 877px
  634. lesser: ''
  635. linkhtml: 'true'
  636. ref: 311-RFC-1-3510-F-X
  637. top: 144px
  638. trend: 'true'
  639. type: data
  640. unit:
  641. size: 14
  642. title: ' L/min'
  643. weight: '400'
  644. width: 300
  645. 311-RFC-1-4510-F-X:
  646. background_color: rgba(0, 0, 0, 0)
  647. decimal: '1'
  648. exponential: 'false'
  649. formula: ''
  650. header:
  651. size: 14
  652. title: 'gHe-filling: '
  653. weight: '400'
  654. height: 22
  655. larger: '80'
  656. left: 1228px
  657. lesser: ''
  658. linkhtml: 'true'
  659. ref: 311-RFC-1-4510-F-X
  660. top: 244px
  661. trend: 'true'
  662. type: data
  663. unit:
  664. size: 14
  665. title: ' L/min'
  666. weight: '400'
  667. width: 300
  668. 311-RFC-1-5510-F-X:
  669. background_color: rgba(0, 0, 0, 0)
  670. decimal: '1'
  671. exponential: 'false'
  672. formula: ''
  673. header:
  674. size: 14
  675. title: 'gHe-filling: '
  676. weight: '400'
  677. height: 22
  678. larger: '80'
  679. left: 1583px
  680. lesser: ''
  681. linkhtml: 'true'
  682. ref: 311-RFC-1-5510-F-X
  683. top: 360px
  684. trend: 'true'
  685. type: data
  686. unit:
  687. size: 14
  688. title: ' L/min'
  689. weight: '400'
  690. width: 300
  691. 311-RLY-1-1041:
  692. background_color: rgba(0, 0, 0, 0)
  693. decimal: '2'
  694. exponential: 'false'
  695. formula: ''
  696. header:
  697. size: 15
  698. title: 'LHe-Level: '
  699. weight: '400'
  700. height: 20
  701. larger: ''
  702. left: 224.983px
  703. lesser: ''
  704. linkhtml: 'true'
  705. ref: 311-RLY-1-1041
  706. top: 667.95px
  707. trend: 'true'
  708. type: data
  709. unit:
  710. size: 17
  711. title: ' %'
  712. weight: '700'
  713. width: 164
  714. 311-RLY-1-2041:
  715. background_color: rgba(0, 0, 0, 0)
  716. decimal: '2'
  717. exponential: 'false'
  718. formula: ''
  719. header:
  720. size: 15
  721. title: 'LHe-Level: '
  722. weight: '400'
  723. height: 24
  724. larger: ''
  725. left: 576.967px
  726. lesser: ''
  727. linkhtml: 'true'
  728. ref: 311-RLY-1-2041
  729. top: 551.967px
  730. trend: 'true'
  731. type: data
  732. unit:
  733. size: 17
  734. title: ' %'
  735. weight: '700'
  736. width: 158
  737. 311-RLY-1-3041:
  738. background_color: rgba(0, 0, 0, 0)
  739. condition: ''
  740. decimal: '2'
  741. exponential: 'false'
  742. formula: ''
  743. header:
  744. size: 15
  745. title: 'Füllstand: '
  746. weight: '400'
  747. height: 24
  748. larger: ''
  749. left: 917.983px
  750. lesser: ''
  751. linkhtml: 'true'
  752. ref: 311-RLY-1-3041
  753. top: 450.983px
  754. trend: 'true'
  755. type: data
  756. unit:
  757. size: 17
  758. title: ' %'
  759. weight: '700'
  760. width: 160
  761. 311-RLY-1-4041:
  762. background_color: rgba(0, 0, 0, 0)
  763. decimal: '2'
  764. exponential: 'false'
  765. formula: ''
  766. header:
  767. size: 15
  768. title: 'LHe-Level: '
  769. weight: '400'
  770. height: 22
  771. larger: ''
  772. left: 1293.98px
  773. lesser: ''
  774. linkhtml: 'true'
  775. ref: 311-RLY-1-4041
  776. top: 556.983px
  777. trend: 'true'
  778. type: data
  779. unit:
  780. size: 17
  781. title: ' %'
  782. weight: '700'
  783. width: 151
  784. 311-RLY-1-5041:
  785. background_color: rgba(0, 0, 0, 0)
  786. decimal: '2'
  787. exponential: 'false'
  788. formula: ''
  789. header:
  790. size: 15
  791. title: 'LHe-Level: '
  792. weight: '400'
  793. height: 24
  794. larger: ''
  795. left: 1641.97px
  796. lesser: ''
  797. linkhtml: 'true'
  798. ref: 311-RLY-1-5041
  799. top: 667.967px
  800. trend: 'true'
  801. type: data
  802. unit:
  803. size: 17
  804. title: ' %'
  805. weight: '700'
  806. width: 158
  807. 311-RPY-1-1011:
  808. background_color: rgba(0, 0, 0, 0)
  809. decimal: '2'
  810. exponential: 'false'
  811. formula: ''
  812. header:
  813. size: 15
  814. title: 'P: '
  815. weight: '400'
  816. height: 26
  817. larger: '1.7'
  818. left: 177.983px
  819. lesser: '0.5'
  820. linkhtml: 'true'
  821. ref: 311-RPY-1-1011
  822. top: 445.983px
  823. trend: 'true'
  824. type: data
  825. unit:
  826. size: 17
  827. title: ' psi g'
  828. weight: '700'
  829. width: 136
  830. 311-RPY-1-2011:
  831. background_color: rgba(0, 0, 0, 0)
  832. decimal: '2'
  833. exponential: 'false'
  834. formula: ''
  835. header:
  836. size: 15
  837. title: 'P: '
  838. weight: '400'
  839. height: 22
  840. larger: '1.7'
  841. left: 528.983px
  842. lesser: '0.5'
  843. linkhtml: 'true'
  844. ref: 311-RPY-1-2011
  845. top: 334.983px
  846. trend: 'true'
  847. type: data
  848. unit:
  849. size: 17
  850. title: ' psi g'
  851. weight: '700'
  852. width: 132
  853. 311-RPY-1-3011:
  854. background_color: rgba(0, 0, 0, 0)
  855. decimal: '2'
  856. exponential: 'false'
  857. formula: ''
  858. header:
  859. size: 15
  860. title: 'P: '
  861. weight: '400'
  862. height: 28
  863. larger: '1.7'
  864. left: 885.983px
  865. lesser: '0.5'
  866. linkhtml: 'true'
  867. ref: 311-RPY-1-3011
  868. top: 223.983px
  869. trend: 'true'
  870. type: data
  871. unit:
  872. size: 17
  873. title: ' psi g'
  874. weight: '700'
  875. width: 145
  876. 311-RPY-1-4011:
  877. background_color: rgba(0, 0, 0, 0)
  878. decimal: '2'
  879. exponential: 'false'
  880. formula: ''
  881. header:
  882. size: 15
  883. title: 'P: '
  884. weight: '400'
  885. height: 19
  886. larger: '1.7'
  887. left: 1232.98px
  888. lesser: '0.5'
  889. linkhtml: 'true'
  890. ref: 311-RPY-1-4011
  891. top: 333.983px
  892. trend: 'true'
  893. type: data
  894. unit:
  895. size: 17
  896. title: ' psi g'
  897. weight: '700'
  898. width: 134
  899. 311-RPY-1-5011:
  900. background_color: rgba(0, 0, 0, 0)
  901. decimal: '2'
  902. exponential: 'false'
  903. formula: ''
  904. header:
  905. size: 15
  906. title: 'p: '
  907. weight: '400'
  908. height: 20
  909. larger: '1.7'
  910. left: 1590px
  911. lesser: '0.5'
  912. linkhtml: 'true'
  913. ref: 311-RPY-1-5011
  914. top: 446px
  915. trend: 'true'
  916. type: data
  917. unit:
  918. size: 17
  919. title: ' psi g'
  920. weight: '700'
  921. width: 126
  922. 311-RTP-1-1021:
  923. background_color: rgba(0, 0, 0, 0)
  924. decimal: '2'
  925. exponential: 'false'
  926. formula: ''
  927. header:
  928. size: 15
  929. title: ' '
  930. weight: '400'
  931. height: 20
  932. larger: ''
  933. left: 301px
  934. lesser: ''
  935. linkhtml: 'true'
  936. ref: 311-RTP-1-1021
  937. top: 513px
  938. trend: 'true'
  939. type: data
  940. unit:
  941. size: 15
  942. title: ' K'
  943. weight: '400'
  944. width: 79
  945. 311-RTP-1-1025:
  946. background_color: rgba(0, 0, 0, 0)
  947. decimal: '1'
  948. exponential: 'false'
  949. formula: ''
  950. header:
  951. size: 15
  952. title: ' '
  953. weight: '400'
  954. height: 23
  955. larger: ''
  956. left: 157px
  957. lesser: ''
  958. linkhtml: 'true'
  959. ref: 311-RTP-1-1025
  960. top: 540px
  961. trend: 'true'
  962. type: data
  963. unit:
  964. size: 15
  965. title: ' K'
  966. weight: '700'
  967. width: 81
  968. 311-RTP-1-2021:
  969. background_color: rgba(0, 0, 0, 0)
  970. decimal: '1'
  971. exponential: 'false'
  972. formula: ''
  973. header:
  974. size: 15
  975. title: ' '
  976. weight: '400'
  977. height: 23
  978. larger: ''
  979. left: 652px
  980. lesser: ''
  981. linkhtml: 'true'
  982. ref: 311-RTP-1-2021
  983. top: 396px
  984. trend: 'true'
  985. type: data
  986. unit:
  987. size: 15
  988. title: ' K'
  989. weight: '400'
  990. width: 76
  991. 311-RTP-1-2025:
  992. background_color: rgba(0, 0, 0, 0)
  993. decimal: '1'
  994. exponential: 'false'
  995. formula: ''
  996. header:
  997. size: 15
  998. title: ' '
  999. weight: '400'
  1000. height: 21
  1001. larger: ''
  1002. left: 510px
  1003. lesser: ''
  1004. linkhtml: 'true'
  1005. ref: 311-RTP-1-2025
  1006. top: 425px
  1007. trend: 'true'
  1008. type: data
  1009. unit:
  1010. size: 15
  1011. title: ' K'
  1012. weight: '700'
  1013. width: 75
  1014. 311-RTP-1-3021:
  1015. background_color: rgba(0, 0, 0, 0)
  1016. decimal: '1'
  1017. exponential: 'false'
  1018. formula: ''
  1019. header:
  1020. size: 15
  1021. title: ' '
  1022. weight: '400'
  1023. height: 23
  1024. larger: ''
  1025. left: 1005px
  1026. lesser: ''
  1027. linkhtml: 'true'
  1028. ref: 311-RTP-1-3021
  1029. top: 294px
  1030. trend: 'true'
  1031. type: data
  1032. unit:
  1033. size: 15
  1034. title: ' K'
  1035. weight: '400'
  1036. width: 70
  1037. 311-RTP-1-3025:
  1038. background_color: rgba(0, 0, 0, 0)
  1039. decimal: '1'
  1040. exponential: 'false'
  1041. formula: ''
  1042. header:
  1043. size: 15
  1044. title: ' '
  1045. weight: '400'
  1046. height: 22
  1047. larger: ''
  1048. left: 858px
  1049. lesser: ''
  1050. linkhtml: 'true'
  1051. ref: 311-RTP-1-3025
  1052. top: 323px
  1053. trend: 'true'
  1054. type: data
  1055. unit:
  1056. size: 15
  1057. title: ' K'
  1058. weight: '700'
  1059. width: 76
  1060. 311-RTP-1-4021:
  1061. background_color: rgba(0, 0, 0, 0)
  1062. decimal: '1'
  1063. exponential: 'false'
  1064. formula: ''
  1065. header:
  1066. size: 15
  1067. title: ' '
  1068. weight: '400'
  1069. height: 23
  1070. larger: ''
  1071. left: 1357px
  1072. lesser: ''
  1073. linkhtml: 'true'
  1074. ref: 311-RTP-1-4021
  1075. top: 397px
  1076. trend: 'true'
  1077. type: data
  1078. unit:
  1079. size: 15
  1080. title: ' K'
  1081. weight: '400'
  1082. width: 69
  1083. 311-RTP-1-4025:
  1084. background_color: rgba(0, 0, 0, 0)
  1085. decimal: '2'
  1086. exponential: 'false'
  1087. formula: ''
  1088. header:
  1089. size: 15
  1090. title: ' '
  1091. weight: '400'
  1092. height: 20
  1093. larger: ''
  1094. left: 1209px
  1095. lesser: ''
  1096. linkhtml: 'true'
  1097. ref: 311-RTP-1-4025
  1098. top: 421px
  1099. trend: 'true'
  1100. type: data
  1101. unit:
  1102. size: 15
  1103. title: ' K'
  1104. weight: '700'
  1105. width: 78
  1106. 311-RTP-1-5021:
  1107. background_color: rgba(0, 0, 0, 0)
  1108. decimal: '1'
  1109. exponential: 'false'
  1110. formula: ''
  1111. header:
  1112. size: 15
  1113. title: ' '
  1114. weight: '400'
  1115. height: 23
  1116. larger: ''
  1117. left: 1711px
  1118. lesser: ''
  1119. linkhtml: 'true'
  1120. ref: 311-RTP-1-5021
  1121. top: 512px
  1122. trend: 'true'
  1123. type: data
  1124. unit:
  1125. size: 15
  1126. title: ' K'
  1127. weight: '400'
  1128. width: 64
  1129. 311-RTP-1-5025:
  1130. background_color: rgba(0, 0, 0, 0)
  1131. decimal: '1'
  1132. exponential: 'false'
  1133. formula: ''
  1134. header:
  1135. size: 15
  1136. title: ' '
  1137. weight: '400'
  1138. height: 25
  1139. larger: ''
  1140. left: 1565px
  1141. lesser: ''
  1142. linkhtml: 'true'
  1143. ref: 311-RTP-1-5025
  1144. top: 536px
  1145. trend: 'true'
  1146. type: data
  1147. unit:
  1148. size: 15
  1149. title: ' K'
  1150. weight: '700'
  1151. width: 75
  1152. 311-RTY-1-1023:
  1153. background_color: rgba(0, 0, 0, 0)
  1154. decimal: '2'
  1155. exponential: 'false'
  1156. formula: ''
  1157. header:
  1158. size: 16
  1159. title: ' '
  1160. weight: '400'
  1161. height: 29
  1162. larger: ''
  1163. left: 303px
  1164. lesser: ''
  1165. linkhtml: 'true'
  1166. ref: 311-RTY-1-1023
  1167. top: 599px
  1168. trend: 'true'
  1169. type: data
  1170. unit:
  1171. size: 16
  1172. title: ' K'
  1173. weight: '400'
  1174. width: 69
  1175. 311-RTY-1-1027:
  1176. background_color: rgba(0, 0, 0, 0)
  1177. decimal: '2'
  1178. exponential: 'false'
  1179. formula: ''
  1180. header:
  1181. size: 15
  1182. title: ' '
  1183. weight: '400'
  1184. height: 23
  1185. larger: ''
  1186. left: 130px
  1187. lesser: ''
  1188. linkhtml: 'true'
  1189. ref: 311-RTY-1-1027
  1190. top: 693px
  1191. trend: 'true'
  1192. type: data
  1193. unit:
  1194. size: 15
  1195. title: ' K'
  1196. weight: '700'
  1197. width: 81
  1198. 311-RTY-1-1029:
  1199. background_color: rgba(0, 0, 0, 0)
  1200. decimal: '2'
  1201. exponential: 'false'
  1202. formula: ''
  1203. header:
  1204. size: 15
  1205. title: 'T2_coil: '
  1206. weight: '400'
  1207. height: 19
  1208. larger: ''
  1209. left: 240.983px
  1210. lesser: ''
  1211. linkhtml: 'true'
  1212. ref: 311-RTY-1-1029
  1213. top: 731.967px
  1214. trend: 'true'
  1215. type: data
  1216. unit:
  1217. size: 17
  1218. title: ' K'
  1219. weight: '700'
  1220. width: 142
  1221. 311-RTY-1-2023:
  1222. background_color: rgba(0, 0, 0, 0)
  1223. decimal: '2'
  1224. exponential: 'false'
  1225. formula: ''
  1226. header:
  1227. size: 16
  1228. title: ' '
  1229. weight: '400'
  1230. height: 30
  1231. larger: ''
  1232. left: 652px
  1233. lesser: ''
  1234. linkhtml: 'true'
  1235. ref: 311-RTY-1-2023
  1236. top: 484px
  1237. trend: 'true'
  1238. type: data
  1239. unit:
  1240. size: 16
  1241. title: ' K'
  1242. weight: '400'
  1243. width: 79
  1244. 311-RTY-1-2027:
  1245. background_color: rgba(0, 0, 0, 0)
  1246. decimal: '2'
  1247. exponential: 'false'
  1248. formula: ''
  1249. header:
  1250. size: 15
  1251. title: ' '
  1252. weight: '400'
  1253. height: 23
  1254. larger: ''
  1255. left: 481px
  1256. lesser: ''
  1257. linkhtml: 'true'
  1258. ref: 311-RTY-1-2027
  1259. top: 576px
  1260. trend: 'true'
  1261. type: data
  1262. unit:
  1263. size: 15
  1264. title: ' K'
  1265. weight: '700'
  1266. width: 83
  1267. 311-RTY-1-2029:
  1268. background_color: rgba(0, 0, 0, 0)
  1269. decimal: '2'
  1270. exponential: 'false'
  1271. formula: ''
  1272. header:
  1273. size: 15
  1274. title: 'T2_coil: '
  1275. weight: '400'
  1276. height: 24
  1277. larger: ''
  1278. left: 579.983px
  1279. lesser: ''
  1280. linkhtml: 'true'
  1281. ref: 311-RTY-1-2029
  1282. top: 596px
  1283. trend: 'true'
  1284. type: data
  1285. unit:
  1286. size: 17
  1287. title: ' K'
  1288. weight: '700'
  1289. width: 142
  1290. 311-RTY-1-3023:
  1291. background_color: rgba(0, 0, 0, 0)
  1292. decimal: '2'
  1293. exponential: 'false'
  1294. formula: ''
  1295. header:
  1296. size: 16
  1297. title: ' '
  1298. weight: '400'
  1299. height: 23
  1300. larger: ''
  1301. left: 1007px
  1302. lesser: ''
  1303. linkhtml: 'true'
  1304. ref: 311-RTY-1-3023
  1305. top: 384px
  1306. trend: 'true'
  1307. type: data
  1308. unit:
  1309. size: 16
  1310. title: ' K'
  1311. weight: '400'
  1312. width: 76
  1313. 311-RTY-1-3027:
  1314. background_color: rgba(0, 0, 0, 0)
  1315. decimal: '2'
  1316. exponential: 'false'
  1317. formula: ''
  1318. header:
  1319. size: 15
  1320. title: ' '
  1321. weight: '400'
  1322. height: 23
  1323. larger: ''
  1324. left: 835px
  1325. lesser: ''
  1326. linkhtml: 'true'
  1327. ref: 311-RTY-1-3027
  1328. top: 476px
  1329. trend: 'true'
  1330. type: data
  1331. unit:
  1332. size: 15
  1333. title: ' K'
  1334. weight: '700'
  1335. width: 76
  1336. 311-RTY-1-3029:
  1337. background_color: rgba(0, 0, 0, 0)
  1338. decimal: '2'
  1339. exponential: 'false'
  1340. formula: ''
  1341. header:
  1342. size: 17
  1343. title: 'T2_coil: '
  1344. weight: '400'
  1345. height: 23
  1346. larger: ''
  1347. left: 935px
  1348. lesser: ''
  1349. linkhtml: 'true'
  1350. ref: 311-RTY-1-3029
  1351. top: 513px
  1352. trend: 'true'
  1353. type: data
  1354. unit:
  1355. size: 17
  1356. title: ' K'
  1357. weight: '700'
  1358. width: 152
  1359. 311-RTY-1-4023:
  1360. background_color: rgba(0, 0, 0, 0)
  1361. decimal: '2'
  1362. exponential: 'false'
  1363. formula: ''
  1364. header:
  1365. size: 16
  1366. title: ' '
  1367. weight: '400'
  1368. height: 28
  1369. larger: ''
  1370. left: 1359px
  1371. lesser: ''
  1372. linkhtml: 'true'
  1373. ref: 311-RTY-1-4023
  1374. top: 481px
  1375. trend: 'true'
  1376. type: data
  1377. unit:
  1378. size: 16
  1379. title: ' K'
  1380. weight: '400'
  1381. width: 76
  1382. 311-RTY-1-4027:
  1383. background_color: rgba(0, 0, 0, 0)
  1384. decimal: '2'
  1385. exponential: 'false'
  1386. formula: ''
  1387. header:
  1388. size: 15
  1389. title: ' '
  1390. weight: '400'
  1391. height: 23
  1392. larger: ''
  1393. left: 1184px
  1394. lesser: ''
  1395. linkhtml: 'true'
  1396. ref: 311-RTY-1-4027
  1397. top: 576px
  1398. trend: 'true'
  1399. type: data
  1400. unit:
  1401. size: 15
  1402. title: ' K'
  1403. weight: '700'
  1404. width: 82
  1405. 311-RTY-1-4029:
  1406. background_color: rgba(0, 0, 0, 0)
  1407. decimal: '2'
  1408. exponential: 'false'
  1409. formula: ''
  1410. header:
  1411. size: 15
  1412. title: 'T2_coil: '
  1413. weight: '400'
  1414. height: 28
  1415. larger: ''
  1416. left: 1318px
  1417. lesser: ''
  1418. linkhtml: 'true'
  1419. ref: 311-RTY-1-4029
  1420. top: 620.983px
  1421. trend: 'true'
  1422. type: data
  1423. unit:
  1424. size: 17
  1425. title: ' K'
  1426. weight: '700'
  1427. width: 130
  1428. 311-RTY-1-5023:
  1429. background_color: rgba(0, 0, 0, 0)
  1430. decimal: '2'
  1431. exponential: 'false'
  1432. formula: ''
  1433. header:
  1434. size: 16
  1435. title: ' '
  1436. weight: '400'
  1437. height: 30
  1438. larger: ''
  1439. left: 1709px
  1440. lesser: ''
  1441. linkhtml: 'true'
  1442. ref: 311-RTY-1-5023
  1443. top: 597px
  1444. trend: 'true'
  1445. type: data
  1446. unit:
  1447. size: 16
  1448. title: ' K'
  1449. weight: '400'
  1450. width: 74
  1451. 311-RTY-1-5027:
  1452. background_color: rgba(0, 0, 0, 0)
  1453. decimal: '2'
  1454. exponential: 'false'
  1455. formula: ''
  1456. header:
  1457. size: 15
  1458. title: ' '
  1459. weight: '400'
  1460. height: 23
  1461. larger: ''
  1462. left: 1537px
  1463. lesser: ''
  1464. linkhtml: 'true'
  1465. ref: 311-RTY-1-5027
  1466. top: 692px
  1467. trend: 'true'
  1468. type: data
  1469. unit:
  1470. size: 15
  1471. title: ' K'
  1472. weight: '700'
  1473. width: 77
  1474. 311-RTY-1-5029:
  1475. background_color: rgba(0, 0, 0, 0)
  1476. decimal: '2'
  1477. exponential: 'false'
  1478. formula: ''
  1479. header:
  1480. size: 15
  1481. title: 'T2_coil: '
  1482. weight: '400'
  1483. height: 25
  1484. larger: ''
  1485. left: 1647.98px
  1486. lesser: ''
  1487. linkhtml: 'true'
  1488. ref: 311-RTY-1-5029
  1489. top: 729.983px
  1490. trend: 'true'
  1491. type: data
  1492. unit:
  1493. size: 17
  1494. title: ' K'
  1495. weight: '700'
  1496. width: 149
  1497. 311PCO-1-1071-EIN:
  1498. background_color: rgba(0, 0, 0, 0)
  1499. decimal: '0'
  1500. exponential: 'false'
  1501. formula: ''
  1502. header:
  1503. size: 14
  1504. title: 'ON? '
  1505. weight: '400'
  1506. height: 19
  1507. larger: ''
  1508. left: 160px
  1509. lesser: '0.5'
  1510. linkhtml: 'true'
  1511. ref: 311PCO-1-1071-EIN
  1512. top: 407px
  1513. trend: 'true'
  1514. type: data
  1515. unit:
  1516. size: 14
  1517. title: ' '
  1518. weight: '400'
  1519. width: 50
  1520. 311PCO-1-2071-EIN:
  1521. background_color: rgba(0, 0, 0, 0)
  1522. decimal: '0'
  1523. exponential: 'false'
  1524. formula: ''
  1525. header:
  1526. size: 14
  1527. title: 'ON? '
  1528. weight: '400'
  1529. height: 31
  1530. larger: ''
  1531. left: 518px
  1532. lesser: '0.5'
  1533. linkhtml: 'true'
  1534. ref: 311PCO-1-2071-EIN
  1535. top: 292px
  1536. trend: 'true'
  1537. type: data
  1538. unit:
  1539. size: 14
  1540. title: ' '
  1541. weight: '400'
  1542. width: 58
  1543. 311PCO-1-3071-EIN:
  1544. background_color: rgba(0, 0, 0, 0)
  1545. decimal: '0'
  1546. exponential: 'false'
  1547. formula: ''
  1548. header:
  1549. size: 14
  1550. title: 'ON? '
  1551. weight: '400'
  1552. height: 38
  1553. larger: ''
  1554. left: 868px
  1555. lesser: '0.5'
  1556. linkhtml: 'true'
  1557. ref: 311PCO-1-3071-EIN
  1558. top: 189px
  1559. trend: 'true'
  1560. type: data
  1561. unit:
  1562. size: 14
  1563. title: ' '
  1564. weight: '400'
  1565. width: 54
  1566. 311PCO-1-4071-EIN:
  1567. background_color: rgba(0, 0, 0, 0)
  1568. decimal: '0'
  1569. exponential: 'false'
  1570. formula: ''
  1571. header:
  1572. size: 14
  1573. title: 'ON? '
  1574. weight: '400'
  1575. height: 38
  1576. larger: ''
  1577. left: 1220px
  1578. lesser: '0.5'
  1579. linkhtml: 'true'
  1580. ref: 311PCO-1-4071-EIN
  1581. top: 291px
  1582. trend: 'true'
  1583. type: data
  1584. unit:
  1585. size: 14
  1586. title: ' '
  1587. weight: '400'
  1588. width: 56
  1589. 311PCO-1-5071-EIN:
  1590. background_color: rgba(0, 0, 0, 0)
  1591. decimal: '0'
  1592. exponential: 'false'
  1593. formula: ''
  1594. header:
  1595. size: 14
  1596. title: 'ON? '
  1597. weight: '400'
  1598. height: 38
  1599. larger: ''
  1600. left: 1578px
  1601. lesser: '0.5'
  1602. linkhtml: 'true'
  1603. ref: 311PCO-1-5071-EIN
  1604. top: 402px
  1605. trend: 'true'
  1606. type: data
  1607. unit:
  1608. size: 14
  1609. title: ' '
  1610. weight: '400'
  1611. width: 57
  1612. 311RPM-1-1420:
  1613. background_color: rgba(0, 0, 0, 0)
  1614. decimal: '2'
  1615. exponential: 'true'
  1616. formula: ''
  1617. header:
  1618. size: 18
  1619. title: 'Iso. Vac. M1: '
  1620. weight: '700'
  1621. height: 32
  1622. larger: 7e-4
  1623. left: 138px
  1624. lesser: ''
  1625. linkhtml: 'true'
  1626. ref: 311RPM-1-1420
  1627. top: 965px
  1628. trend: 'true'
  1629. type: data
  1630. unit:
  1631. size: 18
  1632. title: ' mbar'
  1633. weight: '400'
  1634. width: 239
  1635. 311RPM-1-2420:
  1636. background_color: rgba(0, 0, 0, 0)
  1637. decimal: '2'
  1638. exponential: 'true'
  1639. formula: ''
  1640. header:
  1641. size: 18
  1642. title: 'Iso. Vac. M2: '
  1643. weight: '700'
  1644. height: 32
  1645. larger: 7e-4
  1646. left: 493px
  1647. lesser: ''
  1648. linkhtml: 'true'
  1649. ref: 311RPM-1-2420
  1650. top: 965px
  1651. trend: 'true'
  1652. type: data
  1653. unit:
  1654. size: 18
  1655. title: ' mbar'
  1656. weight: '400'
  1657. width: 239
  1658. 311RPM-1-3420:
  1659. background_color: rgba(0, 0, 0, 0)
  1660. decimal: '2'
  1661. exponential: 'true'
  1662. formula: ''
  1663. header:
  1664. size: 18
  1665. title: 'Iso. Vac. M3: '
  1666. weight: '700'
  1667. height: 29
  1668. larger: 7e-4
  1669. left: 849px
  1670. lesser: ''
  1671. linkhtml: 'true'
  1672. ref: 311RPM-1-3420
  1673. top: 965px
  1674. trend: 'true'
  1675. type: data
  1676. unit:
  1677. size: 18
  1678. title: ' mbar'
  1679. weight: '400'
  1680. width: 234
  1681. 311RPM-1-4420:
  1682. background_color: rgba(0, 0, 0, 0)
  1683. decimal: '2'
  1684. exponential: 'true'
  1685. formula: ''
  1686. header:
  1687. size: 18
  1688. title: 'Iso. Vac. M4: '
  1689. weight: '700'
  1690. height: 30
  1691. larger: 7e-4
  1692. left: 1204px
  1693. lesser: ''
  1694. linkhtml: 'true'
  1695. ref: 311RPM-1-4420
  1696. top: 965px
  1697. trend: 'true'
  1698. type: data
  1699. unit:
  1700. size: 18
  1701. title: ' mbar'
  1702. weight: '400'
  1703. width: 230
  1704. 311RPM-1-5420:
  1705. background_color: rgba(0, 0, 0, 0)
  1706. decimal: '2'
  1707. exponential: 'true'
  1708. formula: ''
  1709. header:
  1710. size: 18
  1711. title: 'Iso. Vac. M5: '
  1712. weight: '700'
  1713. height: 31
  1714. larger: 7e-4
  1715. left: 1557px
  1716. lesser: ''
  1717. linkhtml: 'true'
  1718. ref: 311RPM-1-5420
  1719. top: 965px
  1720. trend: 'true'
  1721. type: data
  1722. unit:
  1723. size: 18
  1724. title: ' mbar'
  1725. weight: '400'
  1726. width: 233
  1727. 311RPV-1-1460:
  1728. background_color: rgba(0, 0, 0, 0)
  1729. decimal: '2'
  1730. exponential: 'true'
  1731. formula: ''
  1732. header:
  1733. size: 18
  1734. title: 'Main Iso. Vacuum: '
  1735. weight: '700'
  1736. height: 27
  1737. larger: 7e-4
  1738. left: 817px
  1739. lesser: ''
  1740. linkhtml: 'true'
  1741. ref: 311RPV-1-1460
  1742. top: 1016px
  1743. trend: 'true'
  1744. type: data
  1745. unit:
  1746. size: 18
  1747. title: ' mbar'
  1748. weight: '400'
  1749. width: 295
  1750. 320-RMY-0-1104-Humidity:
  1751. background_color: rgba(0, 0, 0, 0)
  1752. decimal: '1'
  1753. exponential: 'false'
  1754. formula: ''
  1755. header:
  1756. size: 16
  1757. title: 'rel. humidity: '
  1758. weight: '400'
  1759. height: 23
  1760. larger: '65'
  1761. left: 1590px
  1762. lesser: '20'
  1763. linkhtml: 'true'
  1764. ref: 320-RMY-0-1104-Humidity
  1765. top: 74px
  1766. trend: 'true'
  1767. type: data
  1768. unit:
  1769. size: 16
  1770. title: ' %'
  1771. weight: '400'
  1772. width: 200
  1773. 320-RPI-0-1105-Pressure:
  1774. background_color: rgba(0, 0, 0, 0)
  1775. decimal: '1'
  1776. exponential: 'false'
  1777. formula: ''
  1778. header:
  1779. size: 16
  1780. title: 'Hall-pressure: '
  1781. weight: '400'
  1782. height: 26
  1783. larger: ''
  1784. left: 1590px
  1785. lesser: '14'
  1786. linkhtml: 'true'
  1787. ref: 320-RPI-0-1105-Pressure
  1788. top: 14px
  1789. trend: 'true'
  1790. type: data
  1791. unit:
  1792. size: 16
  1793. title: ' mbar'
  1794. weight: '400'
  1795. width: 250
  1796. 320-RTP-0-1103-Temperature:
  1797. background_color: rgba(0, 0, 0, 0)
  1798. decimal: '1'
  1799. exponential: 'false'
  1800. formula: ''
  1801. header:
  1802. size: 16
  1803. title: 'Hall-temperature: '
  1804. weight: '400'
  1805. height: 23
  1806. larger: '25'
  1807. left: 1590px
  1808. lesser: '14'
  1809. linkhtml: 'true'
  1810. ref: 320-RTP-0-1103-Temperature
  1811. top: 44px
  1812. trend: 'true'
  1813. type: data
  1814. unit:
  1815. size: 16
  1816. title: ' °C'
  1817. weight: '400'
  1818. width: 200
  1819. DPS1-Helium-Temp:
  1820. background_color: rgba(0, 0, 0, 0)
  1821. decimal: '1'
  1822. exponential: 'false'
  1823. formula: ''
  1824. header:
  1825. size: 14
  1826. title: 'T-He: '
  1827. weight: '400'
  1828. height: 22
  1829. larger: '80'
  1830. left: 218px
  1831. lesser: ''
  1832. linkhtml: 'true'
  1833. ref: DPS1-Helium-Temp
  1834. top: 389px
  1835. trend: 'true'
  1836. type: data
  1837. unit:
  1838. size: 14
  1839. title: ' °C'
  1840. weight: '400'
  1841. width: 123
  1842. DPS1-Oil-Temp:
  1843. background_color: rgba(0, 0, 0, 0)
  1844. decimal: '1'
  1845. exponential: 'false'
  1846. formula: ''
  1847. header:
  1848. size: 14
  1849. title: 'T-Oil: '
  1850. weight: '400'
  1851. height: 19
  1852. larger: '40'
  1853. left: 216px
  1854. lesser: '25'
  1855. linkhtml: 'true'
  1856. ref: DPS1-Oil-Temp
  1857. top: 408px
  1858. trend: 'true'
  1859. type: data
  1860. unit:
  1861. size: 14
  1862. title: ' °C'
  1863. weight: '400'
  1864. width: 122
  1865. DPS2-Helium-Temp:
  1866. background_color: rgba(0, 0, 0, 0)
  1867. decimal: '1'
  1868. exponential: 'false'
  1869. formula: ''
  1870. header:
  1871. size: 14
  1872. title: 'T-He: '
  1873. weight: '400'
  1874. height: 19
  1875. larger: '80'
  1876. left: 577px
  1877. lesser: ''
  1878. linkhtml: 'true'
  1879. ref: DPS2-Helium-Temp
  1880. top: 275px
  1881. trend: 'true'
  1882. type: data
  1883. unit:
  1884. size: 14
  1885. title: ' °C'
  1886. weight: '400'
  1887. width: 114
  1888. DPS2-Oil-Temp:
  1889. background_color: rgba(0, 0, 0, 0)
  1890. decimal: '1'
  1891. exponential: 'false'
  1892. formula: ''
  1893. header:
  1894. size: 14
  1895. title: 'T-Oil: '
  1896. weight: '400'
  1897. height: 19
  1898. larger: '40'
  1899. left: 576px
  1900. lesser: '25'
  1901. linkhtml: 'true'
  1902. ref: DPS2-Oil-Temp
  1903. top: 293px
  1904. trend: 'true'
  1905. type: data
  1906. unit:
  1907. size: 14
  1908. title: ' °C'
  1909. weight: '400'
  1910. width: 114
  1911. DPS3-Helium-Temp:
  1912. background_color: rgba(0, 0, 0, 0)
  1913. decimal: '1'
  1914. exponential: 'false'
  1915. formula: ''
  1916. header:
  1917. size: 14
  1918. title: 'T-He: '
  1919. weight: '400'
  1920. height: 19
  1921. larger: '80'
  1922. left: 927px
  1923. lesser: ''
  1924. linkhtml: 'true'
  1925. ref: DPS3-Helium-Temp
  1926. top: 174px
  1927. trend: 'true'
  1928. type: data
  1929. unit:
  1930. size: 14
  1931. title: ' °C'
  1932. weight: '400'
  1933. width: 121
  1934. DPS3-Oil-Temp:
  1935. background_color: rgba(0, 0, 0, 0)
  1936. decimal: '1'
  1937. exponential: 'false'
  1938. formula: ''
  1939. header:
  1940. size: 14
  1941. title: 'T-Oil: '
  1942. weight: '400'
  1943. height: 19
  1944. larger: '40'
  1945. left: 927px
  1946. lesser: '25'
  1947. linkhtml: 'true'
  1948. ref: DPS3-Oil-Temp
  1949. top: 194px
  1950. trend: 'true'
  1951. type: data
  1952. unit:
  1953. size: 14
  1954. title: ' °C'
  1955. weight: '400'
  1956. width: 123
  1957. DPS4-Helium-Temp:
  1958. background_color: rgba(0, 0, 0, 0)
  1959. decimal: '1'
  1960. exponential: 'false'
  1961. formula: ''
  1962. header:
  1963. size: 14
  1964. title: 'T-He: '
  1965. weight: '400'
  1966. height: 19
  1967. larger: '80'
  1968. left: 1278px
  1969. lesser: ''
  1970. linkhtml: 'true'
  1971. ref: DPS4-Helium-Temp
  1972. top: 274px
  1973. trend: 'true'
  1974. type: data
  1975. unit:
  1976. size: 14
  1977. title: ' °C'
  1978. weight: '400'
  1979. width: 127
  1980. DPS4-Oil-Temp:
  1981. background_color: rgba(0, 0, 0, 0)
  1982. decimal: '1'
  1983. exponential: 'false'
  1984. formula: ''
  1985. header:
  1986. size: 14
  1987. title: 'T-Oil: '
  1988. weight: '400'
  1989. height: 19
  1990. larger: '40'
  1991. left: 1279px
  1992. lesser: '25'
  1993. linkhtml: 'true'
  1994. ref: DPS4-Oil-Temp
  1995. top: 295px
  1996. trend: 'true'
  1997. type: data
  1998. unit:
  1999. size: 14
  2000. title: ' °C'
  2001. weight: '400'
  2002. width: 128
  2003. DPS5-Helium-Temp:
  2004. background_color: rgba(0, 0, 0, 0)
  2005. decimal: '1'
  2006. exponential: 'false'
  2007. formula: ''
  2008. header:
  2009. size: 14
  2010. title: 'T-He: '
  2011. weight: '400'
  2012. height: 19
  2013. larger: '80'
  2014. left: 1633px
  2015. lesser: ''
  2016. linkhtml: 'true'
  2017. ref: DPS5-Helium-Temp
  2018. top: 387px
  2019. trend: 'true'
  2020. type: data
  2021. unit:
  2022. size: 14
  2023. title: ' °C'
  2024. weight: '400'
  2025. width: 124
  2026. DPS5-Oil-Temp:
  2027. background_color: rgba(0, 0, 0, 0)
  2028. decimal: '1'
  2029. exponential: 'false'
  2030. formula: ''
  2031. header:
  2032. size: 14
  2033. title: 'T-Oil: '
  2034. weight: '400'
  2035. height: 19
  2036. larger: '40'
  2037. left: 1637px
  2038. lesser: '25'
  2039. linkhtml: 'true'
  2040. ref: DPS5-Oil-Temp
  2041. top: 410px
  2042. trend: 'true'
  2043. type: data
  2044. unit:
  2045. size: 14
  2046. title: ' °C'
  2047. weight: '400'
  2048. width: 124
  2049. ? calc_23731log10log320rmy01104humidity10061078-1075320rtp01103temperature2373320rtp01103temperature61078751log10log320rmy01104humidity100610781075320rtp01103temperature2373320rtp01103temperature61078
  2050. : background_color: rgba(0, 0, 0, 0)
  2051. decimal: '1'
  2052. formula: 237.3*(1/log(10)*log(([320-RMY-0-1104-Humidity]/100*(6.1078 * 10^((7.5*[320-RTP-0-1103-Temperature])/(237.3+[320-RTP-0-1103-Temperature]))))/6.1078))/(7.5-(1/log(10)*log(([320-RMY-0-1104-Humidity]/100*(6.1078*10^((7.5*[320-RTP-0-1103-Temperature])/(237.3+[320-RTP-0-1103-Temperature]))))/6.1078)))
  2053. header:
  2054. size: '16'
  2055. title: dew point
  2056. weight: '400'
  2057. height: 23
  2058. larger: '10'
  2059. left: 1589px
  2060. lesser: ''
  2061. ref: ''
  2062. top: 105px
  2063. type: calc
  2064. unit:
  2065. size: '16'
  2066. title: ' °C'
  2067. weight: '700'
  2068. width: 180
  2069. header_compressor-he-delta-P:
  2070. background_color: rgba(0, 0, 0, 0)
  2071. header:
  2072. size: 15
  2073. title: 'Compressor He delta P '
  2074. weight: '400'
  2075. height: 21
  2076. left: 0px
  2077. titlelink: http://adei-katrin.kaas.kit.edu/adei/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=604800&module=graph&virtual=srctree&srctree=fbmd__FBMD__2__11,fbmd__FBMD__2__22,fbmd__FBMD__2__33,fbmd__FBMD__2__44,fbmd__FBMD__2__55,fbmd__FBMD__2__66&bar_axis_range=0%3A0&infomod=legend&history_id=1642407623411
  2078. top: 200px
  2079. type: header
  2080. width: 112
  2081. header_compressor-he-pressures:
  2082. background_color: rgba(0, 0, 0, 0)
  2083. header:
  2084. size: 16
  2085. title: 'Compressor He pressures '
  2086. weight: '400'
  2087. height: 45
  2088. left: -2px
  2089. titlelink: http://adei-katrin.kaas.kit.edu/adei/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=604800&module=graph&virtual=srctree&srctree=fbmd__FBMD__2__18,fbmd__FBMD__2__19,fbmd__FBMD__2__29,fbmd__FBMD__2__30,fbmd__FBMD__2__40,fbmd__FBMD__2__41,fbmd__FBMD__2__51,fbmd__FBMD__2__52,fbmd__FBMD__2__62,fbmd__FBMD__2__63&bar_axis_range=0:0&infomod=legend&history_id=1558686959804
  2090. top: 375px
  2091. type: header
  2092. width: 112
  2093. header_hegasflows:
  2094. background_color: rgba(0, 0, 0, 0)
  2095. header:
  2096. size: 15
  2097. title: 'He-gas-flows '
  2098. weight: '400'
  2099. height: 21
  2100. left: 0px
  2101. titlelink: http://adei-katrin.kaas.kit.edu/adei/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=86400&module=graph&virtual=srctree&srctree=cscryo__ControlSystem_DPS__310_MAG_Helium__3,cscryo__ControlSystem_DPS__310_MAG_Helium__18,cscryo__ControlSystem_DPS__310_MAG_Helium__33,cscryo__ControlSystem_DPS__310_MAG_Helium__48,cscryo__ControlSystem_DPS__310_MAG_Helium__63&infomod=legend&history_id=1582290751301
  2102. top: 245px
  2103. type: header
  2104. width: 105
  2105. header_link-to-loopsdps:
  2106. background_color: rgba(0, 0, 0, 0)
  2107. header:
  2108. size: 18
  2109. title: 'Link to Loops-DPS '
  2110. weight: '400'
  2111. height: 24
  2112. left: 5px
  2113. titlelink: http://bora-loops-dps.kaas.kit.edu/
  2114. top: 1052px
  2115. type: header
  2116. width: 170
  2117. header_magnet-8855:
  2118. background_color: rgba(0, 0, 0, 0)
  2119. header:
  2120. size: 20
  2121. title: 'Magnet 8855 '
  2122. weight: '700'
  2123. height: 30
  2124. left: 175.983px
  2125. top: 304.967px
  2126. type: header
  2127. width: 136
  2128. header_magnet-8856:
  2129. background_color: rgba(0, 0, 0, 0)
  2130. header:
  2131. size: 20
  2132. title: 'Magnet 8856 '
  2133. weight: '700'
  2134. height: 28
  2135. left: 1590.98px
  2136. top: 303.983px
  2137. type: header
  2138. width: 140
  2139. header_magnet-8857:
  2140. background_color: rgba(0, 0, 0, 0)
  2141. header:
  2142. size: 20
  2143. title: 'Magnet 8857 '
  2144. weight: '700'
  2145. height: 30
  2146. left: 882.983px
  2147. top: 100px
  2148. type: header
  2149. width: 132
  2150. header_magnet-8858r1:
  2151. background_color: rgba(0, 0, 0, 0)
  2152. header:
  2153. size: 20
  2154. title: 'Magnet 8858R1 '
  2155. weight: '700'
  2156. height: 28
  2157. left: 518px
  2158. titlelink: ''
  2159. top: 183px
  2160. type: header
  2161. width: 164
  2162. header_magnet-8903:
  2163. background_color: rgba(0, 0, 0, 0)
  2164. header:
  2165. size: 20
  2166. title: 'Magnet 8903 '
  2167. weight: '700'
  2168. height: 28
  2169. left: 1257.98px
  2170. top: 178.983px
  2171. type: header
  2172. width: 140
  2173. header_mcs:
  2174. background_color: rgba(0, 0, 0, 0)
  2175. header:
  2176. size: 18
  2177. title: 'MCS '
  2178. weight: '700'
  2179. height: 24
  2180. left: 0px
  2181. titlelink: http://bora-mcs.kaas.kit.edu/
  2182. top: 103px
  2183. type: header
  2184. width: 50
  2185. header_oil-temperatures:
  2186. background_color: rgba(0, 0, 0, 0)
  2187. header:
  2188. size: 16
  2189. title: 'Oil temperatures '
  2190. weight: '400'
  2191. height: 24
  2192. left: -4px
  2193. titlelink: http://adei-katrin.kaas.kit.edu/adei/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=604800&module=graph&virtual=srctree&srctree=fbmd__FBMD__2__17,fbmd__FBMD__2__28,fbmd__FBMD__2__39,fbmd__FBMD__2__50,fbmd__FBMD__2__61&bar_axis_range=0:0&infomod=legend&history_id=1558687492138
  2194. top: 424px
  2195. type: header
  2196. width: 137
  2197. header_status-of-the-dps-magnets:
  2198. background_color: rgba(0, 0, 0, 0)
  2199. header:
  2200. size: 28
  2201. title: 'Status of the DPS magnets '
  2202. weight: '700'
  2203. height: 34
  2204. left: 761px
  2205. titlelink: http://bora-mcs.kaas.kit.edu/
  2206. top: 11px
  2207. type: header
  2208. width: 388
  2209. header_t-of-cooling-water:
  2210. background_color: rgba(0, 0, 0, 0)
  2211. header:
  2212. size: 18
  2213. title: 'T of Cooling Water '
  2214. weight: '400'
  2215. height: 25
  2216. left: -1px
  2217. titlelink: http://adei-katrin.kaas.kit.edu/adei/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=86400&module=graph&virtual=srctree&srctree=cscryo__ControlSystem_DPS__310_MAG_Magnetkuehlung__30,cscryo__ControlSystem_DPS__310_MAG_Magnetkuehlung__33,cscryo__ControlSystem_DPS__310_MAG_Magnetkuehlung__36,cscryo__ControlSystem_DPS__310_MAG_Magnetkuehlung__39,cscryo__ControlSystem_DPS__310_MAG_Magnetkuehlung__42,cscryo__ControlSystem_DPS__310_MAG_Magnetkuehlung__45&infomod=legend&history_id=1536679137027
  2218. top: 344px
  2219. type: header
  2220. width: 168
  2221. header_t-on-cl:
  2222. background_color: rgba(0, 0, 0, 0)
  2223. header:
  2224. size: 18
  2225. title: 'T on CL '
  2226. weight: '400'
  2227. height: 25
  2228. left: 1px
  2229. titlelink: http://adei-katrin.kaas.kit.edu/adei/#module=graph&db_server=virtual&db_name=srctree&db_group=-3&control_group=-3&db_mask=all&experiment=-&window=3600&module=graph&virtual=srctree&srctree=cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__0,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__3,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__6,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__9,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__12,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__15,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__18,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__21,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__24,cscryo__ControlSystem_DPS__310_MAG_Stromzufuhr__27&infomod=legend&history_id=1536678857335
  2230. top: 281px
  2231. type: header
  2232. width: 80