Our full technical support staff does not monitor this forum. If you need assistance from a member of our staff, please submit your question from the Ask a Question page.


Log in or register to post/reply in the forum.

RTMC freezes...


Mavada Feb 12, 2011 01:34 PM

i think ive found the freezing issue (not updating my graphs, but the logger is still collecting data).
Ive got 3 screens in my RTMC file, 1 for realtime data graphs(1 sec)
1 for 10 min. data graphs and 1 for 10 min data in just plain numbers (no graphs).

I think it is too much to handle for RTMC, because when i just use the 1 sec data everything works fine..


Sam Feb 12, 2011 08:02 PM

Mavada,

RTMC is certainly designed to handle what you are describing and much more. We have customers who run some really big projects with 20+ tabs. It would be a good idea for you to send in your project, Network map, and CRBasic code so we can run it here and verify the issue.

http://www.campbellsci.com/25_0_14_217


Mavada Feb 12, 2011 08:33 PM

'CR1000
'Created by Short Cut (2.8)
'define all angles in degrees not radians
AngleDegrees
'Declare Variables and Units
Public BattV
Public Windr
Public Temp
Public Vocht
Public Windskm
Public Rain_mm
Public BP_mbar
Public SlrW
Public SlrkJ
Public Tot24
Public Windskn
Public Beaufort
Public AvgBeaufort
Public MaxBeaufort
Public Windroos As String
Public SinWindr
Public CosWindr
Public AvgSinWindr
Public AvgCosWindr
Public AvgWindr
Units BattV=Volts
Units Windr=Deg
Units Temp=DegC
Units Vocht=%
Units Windskm=kph
Units Windskn=kts
Units Rain_mm=mm
Units BP_mbar=mbar
Units SlrW=W/m^2
Units SlrkJ=kJ/m^2
'Define Data Tables
DataTable(Table1,True,-1)
DataInterval(0,10,Min,10)
WindVector (1,Windskm,Windr,IEEE4,False,0,0,1)
FieldNames ("Windskm,Windr")
Sample(1,Windroos,String)
FieldNames ("Windroos")
Maximum(1,Windskm,IEEE4,False,True)
FieldNames ("MaxWindskm")
Average(1,Temp,IEEE4,False)
FieldNames ("Temp")
Maximum(1,Temp,IEEE4,False,True)
FieldNames ("MaxTemp")
Minimum(1,Temp,IEEE4,False,True)
FieldNames ("MinTemp")
Average(1,Vocht,IEEE4,False)
FieldNames ("Vocht")
Maximum(1,Vocht,IEEE4,False,True)
FieldNames ("MaxVocht")
Minimum(1,Vocht,IEEE4,False,True)
FieldNames ("MinVocht")
Average(1,SlrW,IEEE4,False)
FieldNames ("SlrW")
Average(1,Windskn,IEEE4,False)
FieldNames ("Windskn")
Maximum(1,Windskn,IEEE4,False,True)
FieldNames ("MaxWindskn")
Sample (1,AvgBeaufort,FP2)
FieldNames ("Beaufort")
Maximum (1,Beaufort,IEEE4,False,True)
FieldNames ("MaxBeaufort")
Sample(1,BP_mbar,IEEE4)
FieldNames ("BaroP")

EndTable


'Main Program
BeginProg
Scan(1,Sec,1,0)
'Default Datalogger Battery Voltage measurement BattV
Battery(BattV)
'Generic 4-20 mA Input measurement Windr
VoltDiff(Windr,1,mV2500,2,True,0,_50Hz,0.18,-89.1)
'Generic 4-20 mA Input measurement Temp
VoltDiff(Temp,1,mV2500,3,True,0,_50Hz,0.05,-65)
'Generic 4-20 mA Input measurement Vocht
VoltDiff(Vocht,1,mV2500,4,True,0,_50Hz,0.05,-25)
'Generic 4-20 mA Input measurement Windskm
VoltDiff(Windskm,1,mV2500,1,True,0,_50Hz,0.081035,-39.9875)
'Generic Tipping Bucket Rain Gauge measurement Rain_mm
PulseCount(Rain_mm,1,1,2,0,0.2,0)
'PTB101B Barometric Pressure Sensor (CSL) measurement BP_mbar
PortSet(1,1)
VoltSe(BP_mbar,1,mV2500,11,1,0,_50Hz,0.184,600)
BP_mbar=BP_mbar*1
'CM3 Pyranometer (CSL) measurements SlrkJ and SlrW
VoltDiff(SlrW,1,mV250,7,True,0,_50Hz,1,0)
If SlrW<0 Then SlrW=0
SlrkJ=SlrW*0.04330879
SlrW=SlrW*43.30879
'24 hour running total calculation Tot24
Tot24=Tot24+Rain_mm
If IfTime(24,1440,Min) Then Tot24=0
'User Entered Calculation
Windr = Windr + 220
If Windr > 360 Then Windr = Windr - 360
If Windr < 0 Then Windr = Windr + 360
If Windr>=360 Then Windr=0

'Calculate 10 Minute Running average for Wind Direction
SinWindr = SIN(Windr)
CosWindr = COS(Windr)
AvgRun (AvgSinWindr,1,SinWindr,600)
AvgRun (AvgCosWindr,1,CosWindr,600)
AvgWindr = ATN(AvgSinWindr/AvgCosWindr)
If AvgCosWindr < 0 Then
AvgWindr = 180 + AvgWindr
ElseIf AvgSinWindr < 0 Then
AvgWindr = 360 + AvgWindr
EndIf
If AvgWindr <= 11.25 Then
Windroos = "N"
ElseIf AvgWindr < 33.25 Then
Windroos = "NNO"
ElseIf AvgWindr < 56.25 Then
Windroos = "NO"
ElseIf AvgWindr < 78.75 Then
Windroos = "ONO"
ElseIf AvgWindr < 101.25 Then
Windroos = "O"
ElseIf AvgWindr < 123.75 Then
Windroos = "OZO"
ElseIf AvgWindr < 146.25 Then
Windroos = "ZO"
ElseIf AvgWindr < 168.75 Then
Windroos = "ZZO"
ElseIf AvgWindr < 191.25 Then
Windroos = "Z"
ElseIf AvgWindr < 213.75 Then
Windroos = "ZZW"
ElseIf AvgWindr < 236.25 Then
Windroos = "ZW"
ElseIf AvgWindr < 258.75 Then
Windroos = "WZW"
ElseIf AvgWindr < 281.25 Then
Windroos = "W"
ElseIf AvgWindr < 303.75 Then
Windroos = "WNW"
ElseIf AvgWindr < 326.25 Then
Windroos = "NW"
ElseIf AvgWindr < 348.75 Then
Windroos = "NNW"
EndIf

'User Entered Calculation
Windskn=(Windskm/1.852)
'User Entered Calculation
If Windskm<1 Then
'User Entered Calculation
Beaufort=0
'User Entered Calculation
ElseIf Windskm<6 Then
'User Entered Calculation
Beaufort=1
'User Entered Calculation
ElseIf Windskm<12 Then
'User Entered Calculation
Beaufort=2
'User Entered Calculation
ElseIf Windskm<20 Then
'User Entered Calculation
Beaufort=3
'User Entered Calculation
ElseIf Windskm<29 Then
'User Entered Calculation
Beaufort=4
'User Entered Calculation
ElseIf Windskm<39 Then
'User Entered Calculation
Beaufort=5
'User Entered Calculation
ElseIf Windskm<50 Then
'User Entered Calculation
Beaufort=6
'User Entered Calculation
ElseIf Windskm<62 Then
'User Entered Calculation
Beaufort=7
'User Entered Calculation
ElseIf Windskm<75 Then
'User Entered Calculation
Beaufort=8
'User Entered Calculation
ElseIf Windskm<89 Then
'User Entered Calculation
Beaufort=9
'User Entered Calculation
ElseIf Windskm<103 Then
'User Entered Calculation
Beaufort=10
'User Entered Calculation
ElseIf Windskm<117 Then
'User Entered Calculation
Beaufort=11
'User Entered Calculation
ElseIf Windskm>117 Then
'User Entered Calculation
Beaufort=12
'User Entered Calculation
EndIf
'Generate manual average for Beaufort
AvgRun (AvgBeaufort,1,Beaufort,600)
'Round the Average Beaufort to an Integer
AvgBeaufort = Round (AvgBeaufort,0)
'Calculate manual Max Beaufort
If AvgBeaufort > MaxBeaufort Then MaxBeaufort = AvgBeaufort 'Reset MaxBeaufort after 10 Minute table is written If Table1.Output(1,1) Then MaxBeaufort = 0

'Call Data Tables and Store Data
CallTable(Table1)


NextScan
EndProg

my rtmc:

<?xml version="1.0" encoding="UTF-8"?>
<Project editor="RTMC Pro Development" version="v3.2.0.94" app_id="0813c609d6bd8b8fdcbbce9b7201de649450068eac2b57ea">
<auto_tabbing_enabled>0</auto_tabbing_enabled>
<auto_tabbing_interval>10</auto_tabbing_interval>
<alarm_log_enabled>0</alarm_log_enabled>
<alarm_log_directory></alarm_log_directory>
<alarm_log_base_file></alarm_log_base_file>
<alarm_log_file_count>4</alarm_log_file_count>
<alarm_based_on_time>0</alarm_based_on_time>
<alarm_based_on_time_val>1</alarm_based_on_time_val>
<alarm_based_on_time_units>3</alarm_based_on_time_units>
<alarm_log_file_size>512000</alarm_log_file_size>
<alarm_require_ack_text>0</alarm_require_ack_text>
<alarm_ack_text_description>Please enter user name:</alarm_ack_text_description>
<snapshot_enabled>0</snapshot_enabled>
<snapshot_format>0</snapshot_format>
<snapshot_directory>c:\CampbellSci\RTMC\3.1\</snapshot_directory>
<snapshot_interval>30</snapshot_interval>
<use_fixed_interval>1</use_fixed_interval>
<snapshot_fullscreen>1</snapshot_fullscreen>
<ftp_address></ftp_address>
<ftp_user></ftp_user>
<ftp_password></ftp_password>
<ftp_directory></ftp_directory>
<ftp_sftp>0</ftp_sftp>
<ftp_enabled>0</ftp_enabled>
<rt_use_fixed_size>1</rt_use_fixed_size>
<rt_lock_aspect_ratio>0</rt_lock_aspect_ratio>
<is_template>0</is_template>
<dev_fixed_width>2000</dev_fixed_width>
<dev_fixed_height>4000</dev_fixed_height>
<dev_paper_width>2000</dev_paper_width>
<dev_paper_height>4000</dev_paper_height>
<dev_paper_units>2</dev_paper_units>
<Screens count="3">
<screen screen_name="Realtime">
<show_image>0</show_image>
<background_image></background_image>
<background_color>15724527</background_color>
<position>0</position>
<snapshot_enabled>1</snapshot_enabled>
<Components count="21">
<component name="Time Series Chart" type="10602" comp_version="3" title="Windspeed knots">
<top_pos>-9</top_pos>
<left_pos>28</left_pos>
<bottom_pos>266</bottom_pos>
<right_pos>682</right_pos>
<calculation>"Source:Station.Table.Field"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<image_name></image_name>
<inside_graph>0</inside_graph>
<image_style>0</image_style>
<image_visible>0</image_visible>
<background_color>15724527</background_color>
<background_gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>8421504</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</background_gradient>
<is_transparent>0</is_transparent>
<title_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>1</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</title_font>
<legend_visible>0</legend_visible>
<legend_transparent>0</legend_transparent>
<legend_back_color>16777215</legend_back_color>
<legend_shadow_color>0</legend_shadow_color>
<legend_position>1</legend_position>
<legend_position_offset>10</legend_position_offset>
<legend_gradient>
<balance>50</balance>
<direction>3</direction>
<end_color>16777215</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</legend_gradient>
<legend_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</legend_font>
<left_wall>
<color>8454143</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</left_wall>
<right_wall>
<color>12632256</color>
<visible>0</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</right_wall>
<bottom_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</bottom_wall>
<back_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>16768185</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16768185</start_color>
<visible>1</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</back_wall>
<enable_3d>0</enable_3d>
<percent_3d>15</percent_3d>
<rotation>345</rotation>
<elevation>345</elevation>
<orthogonal>1</orthogonal>
<ortho_angle>45</ortho_angle>
<left_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>60</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</left_axis>
<right_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>12</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>0</visible>
<style>2</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</right_axis>
<bottom_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>40583.8</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>40583.9</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</bottom_axis>
<back_val>15</back_val>
<back_units>1</back_units>
<time_format>%H:%M</time_format>
<display_range_val>15</display_range_val>
<display_range_units>1</display_range_units>
<use_pc_time>0</use_pc_time>
<Traces count="1">
<traces label="Windskn">
<version>2</version>
<trace_id>0</trace_id>
<series_type>0</series_type>
<visible>1</visible>
<axis>0</axis>
<calculation>"Server:CR1000.Public.Windskn"</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>9</point_type>
<point_size>2</point_size>
<point_color>0</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>16711680</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>0</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>0</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>2</format>
</Marks>
</traces>
</Traces>
</component>
<component name="Time Series Chart5" type="10602" comp_version="3" title="Winddirection">
<top_pos>257</top_pos>
<left_pos>759</left_pos>
<bottom_pos>532</bottom_pos>
<right_pos>1419</right_pos>
<calculation>"Source:Station.Table.Field"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<image_name></image_name>
<inside_graph>0</inside_graph>
<image_style>0</image_style>
<image_visible>0</image_visible>
<background_color>15724527</background_color>
<background_gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>8421504</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</background_gradient>
<is_transparent>0</is_transparent>
<title_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>1</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</title_font>
<legend_visible>0</legend_visible>
<legend_transparent>0</legend_transparent>
<legend_back_color>16777215</legend_back_color>
<legend_shadow_color>0</legend_shadow_color>
<legend_position>1</legend_position>
<legend_position_offset>10</legend_position_offset>
<legend_gradient>
<balance>50</balance>
<direction>3</direction>
<end_color>16777215</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</legend_gradient>
<legend_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</legend_font>
<left_wall>
<color>8454143</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</left_wall>
<right_wall>
<color>12632256</color>
<visible>0</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</right_wall>
<bottom_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</bottom_wall>
<back_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>16768185</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16768185</start_color>
<visible>1</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</back_wall>
<enable_3d>0</enable_3d>
<percent_3d>15</percent_3d>
<rotation>345</rotation>
<elevation>345</elevation>
<orthogonal>1</orthogonal>
<ortho_angle>45</ortho_angle>
<left_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>360</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</left_axis>
<right_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>360</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>0</visible>
<style>2</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</right_axis>
<bottom_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>40583.8</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>40583.9</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</bottom_axis>
<back_val>15</back_val>
<back_units>1</back_units>
<time_format>%H:%M</time_format>
<display_range_val>15</display_range_val>
<display_range_units>1</display_range_units>
<use_pc_time>0</use_pc_time>
<Traces count="1">
<traces label="Windr">
<version>2</version>
<trace_id>0</trace_id>
<series_type>0</series_type>
<visible>1</visible>
<axis>0</axis>
<calculation>"Server:CR1000.Public.Windr"</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>9</point_type>
<point_size>2</point_size>
<point_color>0</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>16711680</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>0</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>0</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>2</format>
</Marks>
</traces>
</Traces>
</component>
<component name="Time Series Chart6" type="10602" comp_version="3" title="Temperature C">
<top_pos>524</top_pos>
<left_pos>17</left_pos>
<bottom_pos>799</bottom_pos>
<right_pos>692</right_pos>
<calculation>"Source:Station.Table.Field"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<image_name></image_name>
<inside_graph>0</inside_graph>
<image_style>0</image_style>
<image_visible>0</image_visible>
<background_color>15724527</background_color>
<background_gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>8421504</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</background_gradient>
<is_transparent>0</is_transparent>
<title_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>1</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</title_font>
<legend_visible>0</legend_visible>
<legend_transparent>0</legend_transparent>
<legend_back_color>16777215</legend_back_color>
<legend_shadow_color>0</legend_shadow_color>
<legend_position>1</legend_position>
<legend_position_offset>10</legend_position_offset>
<legend_gradient>
<balance>50</balance>
<direction>3</direction>
<end_color>16777215</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</legend_gradient>
<legend_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</legend_font>
<left_wall>
<color>8454143</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</left_wall>
<right_wall>
<color>12632256</color>
<visible>0</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</right_wall>
<bottom_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</bottom_wall>
<back_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>16768185</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16768185</start_color>
<visible>1</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</back_wall>
<enable_3d>0</enable_3d>
<percent_3d>15</percent_3d>
<rotation>345</rotation>
<elevation>345</elevation>
<orthogonal>1</orthogonal>
<ortho_angle>45</ortho_angle>
<left_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>3.78</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>3.97</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</left_axis>
<right_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>0</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>0</visible>
<style>2</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</right_axis>
<bottom_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>40583.8</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>40583.9</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</bottom_axis>
<back_val>15</back_val>
<back_units>1</back_units>
<time_format>%H:%M</time_format>
<display_range_val>15</display_range_val>
<display_range_units>1</display_range_units>
<use_pc_time>0</use_pc_time>
<Traces count="1">
<traces label="Temp">
<version>2</version>
<trace_id>0</trace_id>
<series_type>0</series_type>
<visible>1</visible>
<axis>0</axis>
<calculation>round("Server:CR1000.Public.Temp")2</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>9</point_type>
<point_size>2</point_size>
<point_color>0</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>16711680</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>0</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>0</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>2</format>
</Marks>
</traces>
</Traces>
</component>
<component name="Time Series Chart7" type="10602" comp_version="3" title="Humidity %">
<top_pos>527</top_pos>
<left_pos>762</left_pos>
<bottom_pos>802</bottom_pos>
<right_pos>1416</right_pos>
<calculation>"Source:Station.Table.Field"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<image_name></image_name>
<inside_graph>0</inside_graph>
<image_style>0</image_style>
<image_visible>0</image_visible>
<background_color>15724527</background_color>
<background_gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>8421504</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</background_gradient>
<is_transparent>0</is_transparent>
<title_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>1</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</title_font>
<legend_visible>0</legend_visible>
<legend_transparent>0</legend_transparent>
<legend_back_color>16777215</legend_back_color>
<legend_shadow_color>0</legend_shadow_color>
<legend_position>1</legend_position>
<legend_position_offset>10</legend_position_offset>
<legend_gradient>
<balance>50</balance>
<direction>3</direction>
<end_color>16777215</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</legend_gradient>
<legend_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</legend_font>
<left_wall>
<color>8454143</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</left_wall>
<right_wall>
<color>12632256</color>
<visible>0</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</right_wall>
<bottom_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</bottom_wall>
<back_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>16768185</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16768185</start_color>
<visible>1</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</back_wall>
<enable_3d>0</enable_3d>
<percent_3d>15</percent_3d>
<rotation>345</rotation>
<elevation>345</elevation>
<orthogonal>1</orthogonal>
<ortho_angle>45</ortho_angle>
<left_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>88.76</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>88.94</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</left_axis>
<right_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>0</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>0</visible>
<style>2</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</right_axis>
<bottom_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>40583.8</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>40583.9</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</bottom_axis>
<back_val>15</back_val>
<back_units>1</back_units>
<time_format>%H:%M</time_format>
<display_range_val>15</display_range_val>
<display_range_units>1</display_range_units>
<use_pc_time>0</use_pc_time>
<Traces count="1">
<traces label="Vocht">
<version>2</version>
<trace_id>0</trace_id>
<series_type>0</series_type>
<visible>1</visible>
<axis>0</axis>
<calculation>round("Server:CR1000.Public.Vocht")2</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>9</point_type>
<point_size>2</point_size>
<point_color>0</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>16711680</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>0</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>0</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>2</format>
</Marks>
</traces>
</Traces>
</component>
<component name="Time Series Chart8" type="10602" comp_version="3" title="Radiation">
<top_pos>790</top_pos>
<left_pos>13</left_pos>
<bottom_pos>1065</bottom_pos>
<right_pos>693</right_pos>
<calculation>"Source:Station.Table.Field"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<image_name></image_name>
<inside_graph>0</inside_graph>
<image_style>0</image_style>
<image_visible>0</image_visible>
<background_color>15724527</background_color>
<background_gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>8421504</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</background_gradient>
<is_transparent>0</is_transparent>
<title_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>1</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</title_font>
<legend_visible>0</legend_visible>
<legend_transparent>0</legend_transparent>
<legend_back_color>16777215</legend_back_color>
<legend_shadow_color>0</legend_shadow_color>
<legend_position>1</legend_position>
<legend_position_offset>10</legend_position_offset>
<legend_gradient>
<balance>50</balance>
<direction>3</direction>
<end_color>16777215</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</legend_gradient>
<legend_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</legend_font>
<left_wall>
<color>8454143</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</left_wall>
<right_wall>
<color>12632256</color>
<visible>0</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</right_wall>
<bottom_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</bottom_wall>
<back_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>16768185</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16768185</start_color>
<visible>1</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</back_wall>
<enable_3d>0</enable_3d>
<percent_3d>15</percent_3d>
<rotation>345</rotation>
<elevation>345</elevation>
<orthogonal>1</orthogonal>
<ortho_angle>45</ortho_angle>
<left_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>0</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</left_axis>
<right_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>0</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>0</visible>
<style>2</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</right_axis>
<bottom_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>40583.8</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>40583.9</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</bottom_axis>
<back_val>15</back_val>
<back_units>1</back_units>
<time_format>%H:%M</time_format>
<display_range_val>15</display_range_val>
<display_range_units>1</display_range_units>
<use_pc_time>0</use_pc_time>
<Traces count="1">
<traces label="SlrW">
<version>2</version>
<trace_id>0</trace_id>
<series_type>0</series_type>
<visible>1</visible>
<axis>0</axis>
<calculation>"Server:CR1000.Public.SlrW"</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>9</point_type>
<point_size>2</point_size>
<point_color>0</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>16711680</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>0</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>0</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>2</format>
</Marks>
</traces>
</Traces>
</component>
<component name="Time Series Chart9" type="10602" comp_version="3" title="Pressure mbar">
<top_pos>257</top_pos>
<left_pos>-6</left_pos>
<bottom_pos>532</bottom_pos>
<right_pos>684</right_pos>
<calculation>"Source:Station.Table.Field"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<image_name></image_name>
<inside_graph>0</inside_graph>
<image_style>0</image_style>
<image_visible>0</image_visible>
<background_color>15724527</background_color>
<background_gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>8421504</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</background_gradient>
<is_transparent>0</is_transparent>
<title_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>1</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</title_font>
<legend_visible>0</legend_visible>
<legend_transparent>0</legend_transparent>
<legend_back_color>16777215</legend_back_color>
<legend_shadow_color>0</legend_shadow_color>
<legend_position>1</legend_position>
<legend_position_offset>10</legend_position_offset>
<legend_gradient>
<balance>50</balance>
<direction>3</direction>
<end_color>16777215</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</legend_gradient>
<legend_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</legend_font>
<left_wall>
<color>8454143</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</left_wall>
<right_wall>
<color>12632256</color>
<visible>0</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</right_wall>
<bottom_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</bottom_wall>
<back_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>16768185</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16768185</start_color>
<visible>1</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</back_wall>
<enable_3d>0</enable_3d>
<percent_3d>15</percent_3d>
<rotation>345</rotation>
<elevation>345</elevation>
<orthogonal>1</orthogonal>
<ortho_angle>45</ortho_angle>
<left_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>1019.43</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>1019.75</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</left_axis>
<right_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>0</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>0</visible>
<style>2</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</right_axis>
<bottom_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>40583.8</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>40583.9</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</bottom_axis>
<back_val>15</back_val>
<back_units>1</back_units>
<time_format>%H:%M</time_format>
<display_range_val>15</display_range_val>
<display_range_units>1</display_range_units>
<use_pc_time>0</use_pc_time>
<Traces count="1">
<traces label="BP_mbar">
<version>2</version>
<trace_id>0</trace_id>
<series_type>0</series_type>
<visible>1</visible>
<axis>0</axis>
<calculation>"Server:CR1000.Public.BP_mbar"</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>9</point_type>
<point_size>2</point_size>
<point_color>0</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>16711680</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>0</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>0</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>2</format>
</Marks>
</traces>
</Traces>
</component>
<component name="Time Series Chart1" type="10602" comp_version="3" title="Beaufort">
<top_pos>-9</top_pos>
<left_pos>763</left_pos>
<bottom_pos>266</bottom_pos>
<right_pos>1417</right_pos>
<calculation>"Source:Station.Table.Field"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<image_name></image_name>
<inside_graph>0</inside_graph>
<image_style>0</image_style>
<image_visible>0</image_visible>
<background_color>15724527</background_color>
<background_gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>8421504</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</background_gradient>
<is_transparent>0</is_transparent>
<title_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>1</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</title_font>
<legend_visible>0</legend_visible>
<legend_transparent>0</legend_transparent>
<legend_back_color>16777215</legend_back_color>
<legend_shadow_color>0</legend_shadow_color>
<legend_position>1</legend_position>
<legend_position_offset>10</legend_position_offset>
<legend_gradient>
<balance>50</balance>
<direction>3</direction>
<end_color>16777215</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</legend_gradient>
<legend_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</legend_font>
<left_wall>
<color>8454143</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</left_wall>
<right_wall>
<color>12632256</color>
<visible>0</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</right_wall>
<bottom_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</bottom_wall>
<back_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>16768185</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16768185</start_color>
<visible>1</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</back_wall>
<enable_3d>0</enable_3d>
<percent_3d>15</percent_3d>
<rotation>345</rotation>
<elevation>345</elevation>
<orthogonal>1</orthogonal>
<ortho_angle>45</ortho_angle>
<left_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>12</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</left_axis>
<right_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>0</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>0</visible>
<style>2</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</right_axis>
<bottom_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>40583.8</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>40583.9</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</bottom_axis>
<back_val>15</back_val>
<back_units>1</back_units>
<time_format>%H:%M</time_format>
<display_range_val>15</display_range_val>
<display_range_units>1</display_range_units>
<use_pc_time>0</use_pc_time>
<Traces count="1">
<traces label="Beaufort">
<version>2</version>
<trace_id>0</trace_id>
<series_type>0</series_type>
<visible>1</visible>
<axis>0</axis>
<calculation>"Server:CR1000.Public.Beaufort"</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>9</point_type>
<point_size>2</point_size>
<point_color>0</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>16711680</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>0</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>0</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>2</format>
</Marks>
</traces>
</Traces>
</component>
<component name="Digital" type="10102" version="2">
<top_pos>25</top_pos>
<left_pos>675</left_pos>
<bottom_pos>50</bottom_pos>
<right_pos>730</right_pos>
<calculation>"Server:CR1000.Public.Windskn"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>6,9 kts</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>16711680</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units> kts</units>
</component>
<component name="Digital1" type="10102" version="2">
<top_pos>288</top_pos>
<left_pos>1415</left_pos>
<bottom_pos>313</bottom_pos>
<right_pos>1465</right_pos>
<calculation>"Server:CR1000.Public.Windr"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>162 deg</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>16711680</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>0</precision>
<units> deg</units>
</component>
<component name="Digital2" type="10102" version="2">
<top_pos>300</top_pos>
<left_pos>675</left_pos>
<bottom_pos>325</bottom_pos>
<right_pos>778</right_pos>
<calculation>"Server:CR1000.Public.BP_mbar"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>1.019,683 mbar</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>16711680</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>3</precision>
<units> mbar</units>
</component>
<component name="Digital3" type="10102" version="2">
<top_pos>21</top_pos>
<left_pos>1417</left_pos>
<bottom_pos>46</bottom_pos>
<right_pos>1472</right_pos>
<calculation>"Server:CR1000.Public.Beaufort"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>3 bft</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>16711680</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>0</precision>
<units> bft</units>
</component>
<component name="Digital4" type="10102" version="2">
<top_pos>557</top_pos>
<left_pos>691</left_pos>
<bottom_pos>582</bottom_pos>
<right_pos>746</right_pos>
<calculation>"Server:CR1000.Public.Temp"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>3,9 C</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>16711680</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units> C</units>
</component>
<component name="Digital5" type="10102" version="2">
<top_pos>556</top_pos>
<left_pos>1416</left_pos>
<bottom_pos>581</bottom_pos>
<right_pos>1471</right_pos>
<calculation>"Server:CR1000.Public.Vocht"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>88,9 %</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>16711680</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units> %</units>
</component>
<component name="Digital6" type="10102" version="2">
<top_pos>821</top_pos>
<left_pos>693</left_pos>
<bottom_pos>846</bottom_pos>
<right_pos>748</right_pos>
<calculation>"Server:CR1000.Public.SlrW"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>0,0</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>0</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units></units>
</component>
<component name="Digital7" type="10102" version="2">
<top_pos>61</top_pos>
<left_pos>675</left_pos>
<bottom_pos>86</bottom_pos>
<right_pos>742</right_pos>
<calculation>"Server:CR1000.Public.Windskm"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>12,7 km/u</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>255</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units> km/u</units>
</component>
<component name="Time Series Chart2" type="10602" comp_version="3" title="mm">
<top_pos>791</top_pos>
<left_pos>779</left_pos>
<bottom_pos>1066</bottom_pos>
<right_pos>1419</right_pos>
<calculation>"Source:Station.Table.Field"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<image_name></image_name>
<inside_graph>0</inside_graph>
<image_style>0</image_style>
<image_visible>0</image_visible>
<background_color>15724527</background_color>
<background_gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>8421504</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</background_gradient>
<is_transparent>0</is_transparent>
<title_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>1</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</title_font>
<legend_visible>0</legend_visible>
<legend_transparent>0</legend_transparent>
<legend_back_color>16777215</legend_back_color>
<legend_shadow_color>0</legend_shadow_color>
<legend_position>1</legend_position>
<legend_position_offset>10</legend_position_offset>
<legend_gradient>
<balance>50</balance>
<direction>3</direction>
<end_color>16777215</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</legend_gradient>
<legend_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</legend_font>
<left_wall>
<color>8454143</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</left_wall>
<right_wall>
<color>12632256</color>
<visible>0</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</right_wall>
<bottom_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</bottom_wall>
<back_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>16768185</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16768185</start_color>
<visible>1</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</back_wall>
<enable_3d>0</enable_3d>
<percent_3d>15</percent_3d>
<rotation>345</rotation>
<elevation>345</elevation>
<orthogonal>1</orthogonal>
<ortho_angle>45</ortho_angle>
<left_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>0</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</left_axis>
<right_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>0</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>0</visible>
<style>2</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</right_axis>
<bottom_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>40583.8</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>40583.9</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</bottom_axis>
<back_val>15</back_val>
<back_units>1</back_units>
<time_format>%H:%M</time_format>
<display_range_val>15</display_range_val>
<display_range_units>1</display_range_units>
<use_pc_time>0</use_pc_time>
<Traces count="1">
<traces label="Tot24">
<version>2</version>
<trace_id>0</trace_id>
<series_type>0</series_type>
<visible>1</visible>
<axis>0</axis>
<calculation>"Server:CR1000.Public.Tot24"</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>9</point_type>
<point_size>2</point_size>
<point_color>0</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>16711680</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>0</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>0</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>2</format>
</Marks>
</traces>
</Traces>
</component>
<component name="Digital8" type="10102" version="2">
<top_pos>125</top_pos>
<left_pos>674</left_pos>
<bottom_pos>150</bottom_pos>
<right_pos>729</right_pos>
<calculation>maxrun("Server:CR1000.Public.Windskn")</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>7,9 kts</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>16711680</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units> kts</units>
</component>
<component name="Digital9" type="10102" version="2">
<top_pos>175</top_pos>
<left_pos>675</left_pos>
<bottom_pos>200</bottom_pos>
<right_pos>741</right_pos>
<calculation>maxrun("Server:CR1000.Public.Windskm")</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>14,7 km/u</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>255</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units> km/u</units>
</component>
<component name="Digital10" type="10102" version="2">
<top_pos>275</top_pos>
<left_pos>1475</left_pos>
<bottom_pos>300</bottom_pos>
<right_pos>1525</right_pos>
<calculation>"Server:CR1000.Table2.Windroos"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>0</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>16711680</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>0</precision>
<units></units>
</component>
<component name="Compass" type="10504" version="2">
<top_pos>325</top_pos>
<left_pos>1425</left_pos>
<bottom_pos>475</bottom_pos>
<right_pos>1575</right_pos>
<calculation>"Server:CR1000.Public.Windr"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<transparent_rim>0</transparent_rim>
<hide_headings>0</hide_headings>
<compass_outer_color>16711680</compass_outer_color>
<compass_inner_color>16777215</compass_inner_color>
<PointerColor>255</PointerColor>
<font_color>16777215</font_color>
<font_size>12</font_size>
<font_lfCharSet>1</font_lfCharSet>
<font_lfClipPrecision>0</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-18</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>0</font_lfOutPrecision>
<font_lfPitchAndFamily>0</font_lfPitchAndFamily>
<font_lfQuality>0</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>0</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<NCaption>N</NCaption>
<NECaption>NE</NECaption>
<ECaption>E</ECaption>
<SECaption>SE</SECaption>
<SCaption>S</SCaption>
<SWCaption>SW</SWCaption>
<WCaption>W</WCaption>
<NWCaption>NW</NWCaption>
<north_offset>0</north_offset>
<PointerSize>90484232</PointerSize>
<PointerStyle>1</PointerStyle>
<fixed_needle>0</fixed_needle>
<BorderStyle>0</BorderStyle>
<transparent_background>1</transparent_background>
<background_color>12632256</background_color>
<rim_color>8421504</rim_color>
</component>
<component name="Report Range" type="10901">
<top_pos>258</top_pos>
<left_pos>614</left_pos>
<bottom_pos>282</bottom_pos>
<right_pos>857</right_pos>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<interval>15</interval>
<calendar_btn_setting>2</calendar_btn_setting>
<hide_in_runtime>0</hide_in_runtime>
<hide_nav_buttons>0</hide_nav_buttons>
<report_type>0</report_type>
<duration_type>1</duration_type>
<duration_seconds>0</duration_seconds>
<duration_minutes>0</duration_minutes>
<duration_tod>665625600000000000</duration_tod>
<duration_dom>0</duration_dom>
<duration_dow>0</duration_dow>
<duration_month>0</duration_month>
<custom_begin_date>666130860000000000</custom_begin_date>
<custom_end_date>666131760000000000</custom_end_date>
</component>
</Components>
</screen>
<screen screen_name="10 min. data">
<show_image>0</show_image>
<background_image></background_image>
<background_color>15724527</background_color>
<position>0</position>
<snapshot_enabled>0</snapshot_enabled>
<Components count="26">
<component name="Time Series Chart" type="10602" comp_version="3" title="Windspeed knots avg.">
<top_pos>-9</top_pos>
<left_pos>28</left_pos>
<bottom_pos>266</bottom_pos>
<right_pos>682</right_pos>
<calculation>"Source:Station.Table.Field"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<image_name></image_name>
<inside_graph>0</inside_graph>
<image_style>0</image_style>
<image_visible>0</image_visible>
<background_color>15724527</background_color>
<background_gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>8421504</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</background_gradient>
<is_transparent>0</is_transparent>
<title_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>1</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</title_font>
<legend_visible>0</legend_visible>
<legend_transparent>0</legend_transparent>
<legend_back_color>16777215</legend_back_color>
<legend_shadow_color>0</legend_shadow_color>
<legend_position>1</legend_position>
<legend_position_offset>10</legend_position_offset>
<legend_gradient>
<balance>50</balance>
<direction>3</direction>
<end_color>16777215</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</legend_gradient>
<legend_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</legend_font>
<left_wall>
<color>8454143</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</left_wall>
<right_wall>
<color>12632256</color>
<visible>0</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</right_wall>
<bottom_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</bottom_wall>
<back_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>16768185</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16768185</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</back_wall>
<enable_3d>0</enable_3d>
<percent_3d>15</percent_3d>
<rotation>345</rotation>
<elevation>345</elevation>
<orthogonal>1</orthogonal>
<ortho_angle>45</ortho_angle>
<left_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>60</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</left_axis>
<right_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>0</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>0</visible>
<style>2</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</right_axis>
<bottom_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>32873</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>32874</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>0</auto_label>
<decimal_places>3</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0.0416667</increment>
<increment_with_units>1</increment_with_units>
<increment_units>2</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</bottom_axis>
<back_val>24</back_val>
<back_units>2</back_units>
<time_format>%H:%M</time_format>
<display_range_val>24</display_range_val>
<display_range_units>2</display_range_units>
<use_pc_time>0</use_pc_time>
<Traces count="2">
<traces label="Windskn">
<version>2</version>
<trace_id>0</trace_id>
<series_type>0</series_type>
<visible>1</visible>
<axis>0</axis>
<calculation>"Server:CR1000.Table1.Windskn"</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>1</point_type>
<point_size>1</point_size>
<point_color>0</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>0</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>1</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>1</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>0</format>
</Marks>
</traces>
<traces label="MaxWindskn">
<version>2</version>
<trace_id>1</trace_id>
<series_type>0</series_type>
<visible>1</visible>
<axis>0</axis>
<calculation>"Server:CR1000.Table1.MaxWindskn"</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>1</point_type>
<point_size>1</point_size>
<point_color>255</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>255</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>0</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>0</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>2</format>
</Marks>
</traces>
</Traces>
</component>
<component name="Time Series Chart5" type="10602" comp_version="3" title="Winddirection">
<top_pos>0</top_pos>
<left_pos>750</left_pos>
<bottom_pos>275</bottom_pos>
<right_pos>1404</right_pos>
<calculation>"Source:Station.Table.Field"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<image_name></image_name>
<inside_graph>0</inside_graph>
<image_style>0</image_style>
<image_visible>0</image_visible>
<background_color>15724527</background_color>
<background_gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>8421504</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</background_gradient>
<is_transparent>0</is_transparent>
<title_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>1</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</title_font>
<legend_visible>0</legend_visible>
<legend_transparent>0</legend_transparent>
<legend_back_color>16777215</legend_back_color>
<legend_shadow_color>0</legend_shadow_color>
<legend_position>1</legend_position>
<legend_position_offset>10</legend_position_offset>
<legend_gradient>
<balance>50</balance>
<direction>3</direction>
<end_color>16777215</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</legend_gradient>
<legend_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</legend_font>
<left_wall>
<color>8454143</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</left_wall>
<right_wall>
<color>12632256</color>
<visible>0</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</right_wall>
<bottom_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</bottom_wall>
<back_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>16768185</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16768185</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</back_wall>
<enable_3d>0</enable_3d>
<percent_3d>15</percent_3d>
<rotation>345</rotation>
<elevation>345</elevation>
<orthogonal>1</orthogonal>
<ortho_angle>45</ortho_angle>
<left_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>360</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</left_axis>
<right_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>0</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>0</visible>
<style>2</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</right_axis>
<bottom_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>32873</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>32874</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>0</auto_label>
<decimal_places>3</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0.0416667</increment>
<increment_with_units>1</increment_with_units>
<increment_units>2</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</bottom_axis>
<back_val>24</back_val>
<back_units>2</back_units>
<time_format>%H:%M</time_format>
<display_range_val>24</display_range_val>
<display_range_units>2</display_range_units>
<use_pc_time>0</use_pc_time>
<Traces count="1">
<traces label="Windr">
<version>2</version>
<trace_id>0</trace_id>
<series_type>0</series_type>
<visible>1</visible>
<axis>0</axis>
<calculation>"Server:CR1000.Table1.Windr"</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>1</point_type>
<point_size>1</point_size>
<point_color>0</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>0</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>0</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>0</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>2</format>
</Marks>
</traces>
</Traces>
</component>
<component name="Time Series Chart6" type="10602" comp_version="3" title="Temperature C">
<top_pos>255</top_pos>
<left_pos>14</left_pos>
<bottom_pos>530</bottom_pos>
<right_pos>689</right_pos>
<calculation>"Source:Station.Table.Field"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<image_name></image_name>
<inside_graph>0</inside_graph>
<image_style>0</image_style>
<image_visible>0</image_visible>
<background_color>15724527</background_color>
<background_gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>8421504</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</background_gradient>
<is_transparent>0</is_transparent>
<title_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>1</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</title_font>
<legend_visible>0</legend_visible>
<legend_transparent>0</legend_transparent>
<legend_back_color>16777215</legend_back_color>
<legend_shadow_color>0</legend_shadow_color>
<legend_position>1</legend_position>
<legend_position_offset>10</legend_position_offset>
<legend_gradient>
<balance>50</balance>
<direction>3</direction>
<end_color>16777215</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</legend_gradient>
<legend_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</legend_font>
<left_wall>
<color>8454143</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</left_wall>
<right_wall>
<color>12632256</color>
<visible>0</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</right_wall>
<bottom_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</bottom_wall>
<back_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>16768185</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16768185</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</back_wall>
<enable_3d>0</enable_3d>
<percent_3d>15</percent_3d>
<rotation>345</rotation>
<elevation>345</elevation>
<orthogonal>1</orthogonal>
<ortho_angle>45</ortho_angle>
<left_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>0</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</left_axis>
<right_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>0</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>0</visible>
<style>2</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</right_axis>
<bottom_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>32873</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>32874</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>0</auto_label>
<decimal_places>3</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0.0416667</increment>
<increment_with_units>1</increment_with_units>
<increment_units>2</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</bottom_axis>
<back_val>24</back_val>
<back_units>2</back_units>
<time_format>%H:%M</time_format>
<display_range_val>24</display_range_val>
<display_range_units>2</display_range_units>
<use_pc_time>0</use_pc_time>
<Traces count="3">
<traces label="Temp">
<version>2</version>
<trace_id>0</trace_id>
<series_type>0</series_type>
<visible>1</visible>
<axis>0</axis>
<calculation>"Server:CR1000.Table1.Temp"</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>1</point_type>
<point_size>1</point_size>
<point_color>0</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>0</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>1</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>1</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>0</format>
</Marks>
</traces>
<traces label="MaxTemp">
<version>2</version>
<trace_id>1</trace_id>
<series_type>0</series_type>
<visible>0</visible>
<axis>0</axis>
<calculation>"Server:CR1000.Table1.MaxTemp"</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>1</point_type>
<point_size>1</point_size>
<point_color>255</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>255</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>0</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>0</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>2</format>
</Marks>
</traces>
<traces label="MinTemp">
<version>2</version>
<trace_id>2</trace_id>
<series_type>0</series_type>
<visible>0</visible>
<axis>0</axis>
<calculation>"Server:CR1000.Table1.MinTemp"</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>1</point_type>
<point_size>1</point_size>
<point_color>32768</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>32768</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>0</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>0</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>2</format>
</Marks>
</traces>
</Traces>
</component>
<component name="Time Series Chart7" type="10602" comp_version="3" title="Humidity %">
<top_pos>266</top_pos>
<left_pos>751</left_pos>
<bottom_pos>541</bottom_pos>
<right_pos>1405</right_pos>
<calculation>"Source:Station.Table.Field"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<image_name></image_name>
<inside_graph>0</inside_graph>
<image_style>0</image_style>
<image_visible>0</image_visible>
<background_color>15724527</background_color>
<background_gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>8421504</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</background_gradient>
<is_transparent>0</is_transparent>
<title_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>1</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</title_font>
<legend_visible>0</legend_visible>
<legend_transparent>0</legend_transparent>
<legend_back_color>16777215</legend_back_color>
<legend_shadow_color>0</legend_shadow_color>
<legend_position>1</legend_position>
<legend_position_offset>10</legend_position_offset>
<legend_gradient>
<balance>50</balance>
<direction>3</direction>
<end_color>16777215</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</legend_gradient>
<legend_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</legend_font>
<left_wall>
<color>8454143</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</left_wall>
<right_wall>
<color>12632256</color>
<visible>0</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</right_wall>
<bottom_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</bottom_wall>
<back_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>16768185</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16768185</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</back_wall>
<enable_3d>0</enable_3d>
<percent_3d>15</percent_3d>
<rotation>345</rotation>
<elevation>345</elevation>
<orthogonal>1</orthogonal>
<ortho_angle>45</ortho_angle>
<left_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>0</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</left_axis>
<right_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>0</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>0</visible>
<style>2</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</right_axis>
<bottom_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>32873</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>32874</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>0</auto_label>
<decimal_places>3</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0.0416667</increment>
<increment_with_units>1</increment_with_units>
<increment_units>2</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</bottom_axis>
<back_val>24</back_val>
<back_units>2</back_units>
<time_format>%H:%M</time_format>
<display_range_val>24</display_range_val>
<display_range_units>2</display_range_units>
<use_pc_time>0</use_pc_time>
<Traces count="3">
<traces label="Vocht">
<version>2</version>
<trace_id>0</trace_id>
<series_type>0</series_type>
<visible>1</visible>
<axis>0</axis>
<calculation>"Server:CR1000.Table1.Vocht"</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>1</point_type>
<point_size>1</point_size>
<point_color>0</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>0</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>0</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>0</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>2</format>
</Marks>
</traces>
<traces label="MaxVocht">
<version>2</version>
<trace_id>1</trace_id>
<series_type>0</series_type>
<visible>0</visible>
<axis>0</axis>
<calculation>"Server:CR1000.Table1.MaxVocht"</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>1</point_type>
<point_size>1</point_size>
<point_color>255</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>255</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>0</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>0</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>2</format>
</Marks>
</traces>
<traces label="MinVocht">
<version>2</version>
<trace_id>2</trace_id>
<series_type>0</series_type>
<visible>0</visible>
<axis>0</axis>
<calculation>"Server:CR1000.Table1.MinVocht"</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>1</point_type>
<point_size>1</point_size>
<point_color>32768</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>32768</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>0</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>0</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>2</format>
</Marks>
</traces>
</Traces>
</component>
<component name="Time Series Chart8" type="10602" comp_version="3" title="Radiation">
<top_pos>519</top_pos>
<left_pos>33</left_pos>
<bottom_pos>794</bottom_pos>
<right_pos>687</right_pos>
<calculation>"Source:Station.Table.Field"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<image_name></image_name>
<inside_graph>0</inside_graph>
<image_style>0</image_style>
<image_visible>0</image_visible>
<background_color>15724527</background_color>
<background_gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>8421504</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</background_gradient>
<is_transparent>0</is_transparent>
<title_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>1</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</title_font>
<legend_visible>0</legend_visible>
<legend_transparent>0</legend_transparent>
<legend_back_color>16777215</legend_back_color>
<legend_shadow_color>0</legend_shadow_color>
<legend_position>1</legend_position>
<legend_position_offset>10</legend_position_offset>
<legend_gradient>
<balance>50</balance>
<direction>3</direction>
<end_color>16777215</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</legend_gradient>
<legend_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</legend_font>
<left_wall>
<color>8454143</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</left_wall>
<right_wall>
<color>12632256</color>
<visible>0</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</right_wall>
<bottom_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</bottom_wall>
<back_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>16768185</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16768185</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</back_wall>
<enable_3d>0</enable_3d>
<percent_3d>15</percent_3d>
<rotation>345</rotation>
<elevation>345</elevation>
<orthogonal>1</orthogonal>
<ortho_angle>45</ortho_angle>
<left_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>0</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</left_axis>
<right_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>0</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>0</visible>
<style>2</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</right_axis>
<bottom_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>32873</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>32874</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>0</auto_label>
<decimal_places>3</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0.0416667</increment>
<increment_with_units>1</increment_with_units>
<increment_units>2</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</bottom_axis>
<back_val>24</back_val>
<back_units>2</back_units>
<time_format>%H:%M</time_format>
<display_range_val>24</display_range_val>
<display_range_units>2</display_range_units>
<use_pc_time>0</use_pc_time>
<Traces count="1">
<traces label="SlrW">
<version>2</version>
<trace_id>0</trace_id>
<series_type>0</series_type>
<visible>1</visible>
<axis>0</axis>
<calculation>"Server:CR1000.Table1.SlrW"</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>1</point_type>
<point_size>1</point_size>
<point_color>0</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>0</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>0</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>0</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>2</format>
</Marks>
</traces>
</Traces>
</component>
<component name="Time Series Chart9" type="10602" comp_version="3" title="Pressure mbar">
<top_pos>519</top_pos>
<left_pos>725</left_pos>
<bottom_pos>794</bottom_pos>
<right_pos>1404</right_pos>
<calculation>"Source:Station.Table.Field"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<image_name></image_name>
<inside_graph>0</inside_graph>
<image_style>0</image_style>
<image_visible>0</image_visible>
<background_color>15724527</background_color>
<background_gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>8421504</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</background_gradient>
<is_transparent>0</is_transparent>
<title_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>1</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</title_font>
<legend_visible>0</legend_visible>
<legend_transparent>0</legend_transparent>
<legend_back_color>16777215</legend_back_color>
<legend_shadow_color>0</legend_shadow_color>
<legend_position>1</legend_position>
<legend_position_offset>10</legend_position_offset>
<legend_gradient>
<balance>50</balance>
<direction>3</direction>
<end_color>16777215</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</legend_gradient>
<legend_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</legend_font>
<left_wall>
<color>8454143</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</left_wall>
<right_wall>
<color>12632256</color>
<visible>0</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</right_wall>
<bottom_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</bottom_wall>
<back_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>16768185</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16768185</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</back_wall>
<enable_3d>0</enable_3d>
<percent_3d>15</percent_3d>
<rotation>345</rotation>
<elevation>345</elevation>
<orthogonal>1</orthogonal>
<ortho_angle>45</ortho_angle>
<left_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>0</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</left_axis>
<right_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>0</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>0</visible>
<style>2</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</right_axis>
<bottom_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>32873</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>32874</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>0</auto_label>
<decimal_places>3</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0.0416667</increment>
<increment_with_units>1</increment_with_units>
<increment_units>2</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</bottom_axis>
<back_val>24</back_val>
<back_units>2</back_units>
<time_format>%H:%M</time_format>
<display_range_val>24</display_range_val>
<display_range_units>2</display_range_units>
<use_pc_time>0</use_pc_time>
<Traces count="1">
<traces label="BaroP">
<version>2</version>
<trace_id>0</trace_id>
<series_type>0</series_type>
<visible>1</visible>
<axis>0</axis>
<calculation>"Server:CR1000.Table1.BaroP"</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>1</point_type>
<point_size>1</point_size>
<point_color>0</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>0</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>0</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>0</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>2</format>
</Marks>
</traces>
</Traces>
</component>
<component name="Digital1" type="10102" version="2">
<top_pos>25</top_pos>
<left_pos>700</left_pos>
<bottom_pos>60</bottom_pos>
<right_pos>755</right_pos>
<calculation>"Server:CR1000.Table1.Windskn"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>0,0kts</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>0</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units>kts</units>
</component>
<component name="Digital3" type="10102" version="2">
<top_pos>75</top_pos>
<left_pos>700</left_pos>
<bottom_pos>110</bottom_pos>
<right_pos>755</right_pos>
<calculation>"Server:CR1000.Table1.MaxWindskn"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>0,0kts</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>255</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units>kts</units>
</component>
<component name="Time Series Chart10" type="10602" comp_version="3" title="mm">
<top_pos>785</top_pos>
<left_pos>730</left_pos>
<bottom_pos>1060</bottom_pos>
<right_pos>1409</right_pos>
<calculation>"Source:Station.Table.Field"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<image_name></image_name>
<inside_graph>0</inside_graph>
<image_style>0</image_style>
<image_visible>0</image_visible>
<background_color>15724527</background_color>
<background_gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>8421504</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</background_gradient>
<is_transparent>0</is_transparent>
<title_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>1</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</title_font>
<legend_visible>0</legend_visible>
<legend_transparent>0</legend_transparent>
<legend_back_color>16777215</legend_back_color>
<legend_shadow_color>0</legend_shadow_color>
<legend_position>1</legend_position>
<legend_position_offset>10</legend_position_offset>
<legend_gradient>
<balance>50</balance>
<direction>3</direction>
<end_color>16777215</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</legend_gradient>
<legend_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</legend_font>
<left_wall>
<color>8454143</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</left_wall>
<right_wall>
<color>12632256</color>
<visible>0</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</right_wall>
<bottom_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</bottom_wall>
<back_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>8421504</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</back_wall>
<enable_3d>0</enable_3d>
<percent_3d>15</percent_3d>
<rotation>345</rotation>
<elevation>345</elevation>
<orthogonal>1</orthogonal>
<ortho_angle>45</ortho_angle>
<left_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>0</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</left_axis>
<right_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>1</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>1</auto_max>
<max>0</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>0</visible>
<style>2</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</right_axis>
<bottom_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>32873</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>32874</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>0</auto_label>
<decimal_places>3</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0.0416667</increment>
<increment_with_units>1</increment_with_units>
<increment_units>2</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</bottom_axis>
<back_val>24</back_val>
<back_units>2</back_units>
<time_format>%H:%M</time_format>
<display_range_val>24</display_range_val>
<display_range_units>2</display_range_units>
<use_pc_time>0</use_pc_time>
<Traces count="1">
<traces label="Tot24">
<version>2</version>
<trace_id>0</trace_id>
<series_type>0</series_type>
<visible>1</visible>
<axis>0</axis>
<calculation>"Server:CR1000.Public.Tot24"</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>9</point_type>
<point_size>2</point_size>
<point_color>0</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>0</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>0</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>0</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>2</format>
</Marks>
</traces>
</Traces>
</component>
<component name="Digital4" type="10102" version="2">
<top_pos>300</top_pos>
<left_pos>700</left_pos>
<bottom_pos>335</bottom_pos>
<right_pos>755</right_pos>
<calculation>Maxrun("Server:CR1000.Table1.MaxTemp")</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>0,0</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>255</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units></units>
</component>
<component name="Time Series Chart11" type="10602" comp_version="3" title="Bft avg">
<top_pos>800</top_pos>
<left_pos>25</left_pos>
<bottom_pos>1075</bottom_pos>
<right_pos>679</right_pos>
<calculation>"Source:Station.Table.Field"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<image_name></image_name>
<inside_graph>0</inside_graph>
<image_style>0</image_style>
<image_visible>0</image_visible>
<background_color>15724527</background_color>
<background_gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>8421504</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</background_gradient>
<is_transparent>0</is_transparent>
<title_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>1</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</title_font>
<legend_visible>0</legend_visible>
<legend_transparent>0</legend_transparent>
<legend_back_color>16777215</legend_back_color>
<legend_shadow_color>0</legend_shadow_color>
<legend_position>1</legend_position>
<legend_position_offset>10</legend_position_offset>
<legend_gradient>
<balance>50</balance>
<direction>3</direction>
<end_color>16777215</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</legend_gradient>
<legend_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</legend_font>
<left_wall>
<color>8454143</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</left_wall>
<right_wall>
<color>12632256</color>
<visible>0</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</right_wall>
<bottom_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>65535</end_color>
<mid_color>536870911</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>16777215</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</bottom_wall>
<back_wall>
<color>16777215</color>
<visible>1</visible>
<transparent>0</transparent>
<gradient>
<balance>50</balance>
<direction>0</direction>
<end_color>8421504</end_color>
<mid_color>16777215</mid_color>
<radial_x>0</radial_x>
<radial_y>0</radial_y>
<start_color>12632256</start_color>
<visible>0</visible>
</gradient>
<pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</pen>
</back_wall>
<enable_3d>0</enable_3d>
<percent_3d>15</percent_3d>
<rotation>345</rotation>
<elevation>345</elevation>
<orthogonal>1</orthogonal>
<ortho_angle>45</ortho_angle>
<left_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>12</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>0</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>1</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</left_axis>
<right_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>0</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>12</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>9</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>1</auto_label>
<decimal_places>0</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0</increment>
<increment_with_units>0</increment_with_units>
<increment_units>0</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>0</visible>
<style>2</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>0</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</right_axis>
<bottom_axis>
<title_caption></title_caption>
<title_font>
<charset>1</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>12</size>
<color>0</color>
</title_font>
<auto_min>0</auto_min>
<min>32873</min>
<min_offset>0</min_offset>
<auto_max>0</auto_max>
<max>32874</max>
<max_offset>0</max_offset>
<inverted>0</inverted>
<logarithmic>0</logarithmic>
<log_base>10</log_base>
<labels_visible>1</labels_visible>
<labels_font>
<charset>0</charset>
<name>Arial</name>
<italic>0</italic>
<underline>0</underline>
<bold>0</bold>
<strikethrough>0</strikethrough>
<size>8</size>
<color>0</color>
</labels_font>
<label_angle>0</label_angle>
<label_size>0</label_size>
<auto_label>0</auto_label>
<decimal_places>3</decimal_places>
<fixed_decimals>0</fixed_decimals>
<increment>0.0416667</increment>
<increment_with_units>1</increment_with_units>
<increment_units>2</increment_units>
<minor_tick_count>3</minor_tick_count>
<major_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_grid_pen>
<minor_grid_pen>
<visible>1</visible>
<style>0</style>
<color>12632256</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_grid_pen>
<major_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</major_ticks_pen>
<minor_ticks_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>1</width>
<end_style>0</end_style>
<small_space>0</small_space>
</minor_ticks_pen>
<axis_pen>
<visible>1</visible>
<style>0</style>
<color>0</color>
<width>2</width>
<end_style>0</end_style>
<small_space>0</small_space>
</axis_pen>
</bottom_axis>
<back_val>24</back_val>
<back_units>2</back_units>
<time_format>%H:%M</time_format>
<display_range_val>24</display_range_val>
<display_range_units>2</display_range_units>
<use_pc_time>0</use_pc_time>
<Traces count="2">
<traces label="MaxBeaufort">
<version>2</version>
<trace_id>0</trace_id>
<series_type>0</series_type>
<visible>1</visible>
<axis>0</axis>
<calculation>"Server:CR1000.Table1.MaxBeaufort"</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>1</point_type>
<point_size>1</point_size>
<point_color>255</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>255</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>0</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>0</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>2</format>
</Marks>
</traces>
<traces label="Beaufort">
<version>2</version>
<trace_id>1</trace_id>
<series_type>0</series_type>
<visible>1</visible>
<axis>0</axis>
<calculation>Round("Server:CR1000.Table1.Beaufort",0)</calculation>
<manually_edited>0</manually_edited>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<point_type>1</point_type>
<point_size>1</point_size>
<point_color>0</point_color>
<line_type>0</line_type>
<line_width>1</line_width>
<line_color>0</line_color>
<use_stairs>0</use_stairs>
<Marks>
<enabled>0</enabled>
<show_marks_on_click>1</show_marks_on_click>
<always_show_marks>0</always_show_marks>
<transparent>0</transparent>
<color>16777215</color>
<rounded>0</rounded>
<draw_every>1</draw_every>
<format>2</format>
</Marks>
</traces>
</Traces>
</component>
<component name="Digital5" type="10102" version="2">
<top_pos>400</top_pos>
<left_pos>700</left_pos>
<bottom_pos>435</bottom_pos>
<right_pos>755</right_pos>
<calculation>Minrun("Server:CR1000.Table1.MinTemp")</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>0,0</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>32768</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units></units>
</component>
<component name="Digital6" type="10102" version="2">
<top_pos>125</top_pos>
<left_pos>700</left_pos>
<bottom_pos>160</bottom_pos>
<right_pos>755</right_pos>
<calculation>Maxrun("Server:CR1000.Table1.Windskn")</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>0,0kts</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>0</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units>kts</units>
</component>
<component name="Digital7" type="10102" version="2">
<top_pos>175</top_pos>
<left_pos>700</left_pos>
<bottom_pos>210</bottom_pos>
<right_pos>755</right_pos>
<calculation>maxrun("Server:CR1000.Table1.MaxWindskn")</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>0,0kts</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>0</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units>kts</units>
</component>
<component name="Digital8" type="10102" version="2">
<top_pos>350</top_pos>
<left_pos>700</left_pos>
<bottom_pos>385</bottom_pos>
<right_pos>755</right_pos>
<calculation>"Server:CR1000.Table1.Temp"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>0,0</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>0</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units></units>
</component>
<component name="Digital9" type="10102" version="2">
<top_pos>300</top_pos>
<left_pos>1425</left_pos>
<bottom_pos>335</bottom_pos>
<right_pos>1480</right_pos>
<calculation>"Server:CR1000.Table1.MaxVocht"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>0,0</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>255</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units></units>
</component>
<component name="Digital10" type="10102" version="2">
<top_pos>400</top_pos>
<left_pos>1425</left_pos>
<bottom_pos>435</bottom_pos>
<right_pos>1480</right_pos>
<calculation>"Server:CR1000.Table1.MinVocht"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>0,0</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>32768</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units></units>
</component>
<component name="Digital11" type="10102" version="2">
<top_pos>350</top_pos>
<left_pos>1425</left_pos>
<bottom_pos>385</bottom_pos>
<right_pos>1480</right_pos>
<calculation>"Server:CR1000.Table1.Vocht"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>0,0</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>0</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units></units>
</component>
<component name="Digital12" type="10102" version="2">
<top_pos>25</top_pos>
<left_pos>1425</left_pos>
<bottom_pos>60</bottom_pos>
<right_pos>1480</right_pos>
<calculation>"Server:CR1000.Table1.Windr"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>0,0</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>0</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units></units>
</component>
<component name="Digital13" type="10102" version="2">
<top_pos>550</top_pos>
<left_pos>1425</left_pos>
<bottom_pos>585</bottom_pos>
<right_pos>1480</right_pos>
<calculation>maxrun("Server:CR1000.Table1.Vocht_Max")</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>0,0</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>255</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units></units>
</component>
<component name="Digital14" type="10102" version="2">
<top_pos>650</top_pos>
<left_pos>1425</left_pos>
<bottom_pos>685</bottom_pos>
<right_pos>1480</right_pos>
<calculation>minrun("Server:CR1000.Table1.Vocht_Min")</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>0,0</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>32768</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units></units>
</component>
<component name="Digital15" type="10102" version="2">
<top_pos>600</top_pos>
<left_pos>1425</left_pos>
<bottom_pos>635</bottom_pos>
<right_pos>1475</right_pos>
<calculation>"Server:CR1000.Table1.BP_mbar"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>0,0</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>0</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units></units>
</component>
<component name="Digital16" type="10102" version="2">
<top_pos>75</top_pos>
<left_pos>1425</left_pos>
<bottom_pos>110</bottom_pos>
<right_pos>1480</right_pos>
<calculation>"Server:CR1000.Table1.Windroos"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>0,0</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>3</border_style>
<orientation>1</orientation>
<font_lfCharSet>0</font_lfCharSet>
<font_lfClipPrecision>2</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-13</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>3</font_lfOutPrecision>
<font_lfPitchAndFamily>34</font_lfPitchAndFamily>
<font_lfQuality>1</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>400</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>0</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>9</font_size>
<precision>1</precision>
<units></units>
</component>
<component name="Digital17" type="10102" version="2">
<top_pos>825</top_pos>
<left_pos>675</left_pos>
<bottom_pos>860</bottom_pos>
<right_pos>730</right_pos>
<calculation>"Server:CR1000.Table1.Beaufort"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<Caption>0</Caption>
<vertical>0</vertical>
<Transparent>0</Transparent>
<border_style>0</border_style>
<orientation>1</orientation>
<font_lfCharSet>1</font_lfCharSet>
<font_lfClipPrecision>0</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-18</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>0</font_lfOutPrecision>
<font_lfPitchAndFamily>0</font_lfPitchAndFamily>
<font_lfQuality>0</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>0</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<font_color>0</font_color>
<BackGroundColor>16777215</BackGroundColor>
<font_size>12</font_size>
<precision>0</precision>
<units></units>
</component>
<component name="Compass" type="10504" version="2">
<top_pos>117</top_pos>
<left_pos>1393</left_pos>
<bottom_pos>240</bottom_pos>
<right_pos>1516</right_pos>
<calculation>"Server:CR1000.Table1.Windr"</calculation>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<transparent_rim>0</transparent_rim>
<hide_headings>0</hide_headings>
<compass_outer_color>16711680</compass_outer_color>
<compass_inner_color>16777215</compass_inner_color>
<PointerColor>255</PointerColor>
<font_color>16777215</font_color>
<font_size>12</font_size>
<font_lfCharSet>1</font_lfCharSet>
<font_lfClipPrecision>0</font_lfClipPrecision>
<font_lfEscapement>0</font_lfEscapement>
<font_lfFaceName>Arial</font_lfFaceName>
<font_lfHeight>-18</font_lfHeight>
<font_lfItalic>0</font_lfItalic>
<font_lfOrientation>0</font_lfOrientation>
<font_lfOutPrecision>0</font_lfOutPrecision>
<font_lfPitchAndFamily>0</font_lfPitchAndFamily>
<font_lfQuality>0</font_lfQuality>
<font_lfStrikeOut>0</font_lfStrikeOut>
<font_lfUnderline>0</font_lfUnderline>
<font_lfWeight>0</font_lfWeight>
<font_lfWidth>0</font_lfWidth>
<NCaption>N</NCaption>
<NECaption>NE</NECaption>
<ECaption>E</ECaption>
<SECaption>SE</SECaption>
<SCaption>S</SCaption>
<SWCaption>SW</SWCaption>
<WCaption>W</WCaption>
<NWCaption>NW</NWCaption>
<north_offset>0</north_offset>
<PointerSize>1701667182</PointerSize>
<PointerStyle>1</PointerStyle>
<fixed_needle>0</fixed_needle>
<BorderStyle>0</BorderStyle>
<transparent_background>1</transparent_background>
<background_color>12632256</background_color>
<rim_color>8421504</rim_color>
</component>
<component name="Report Range" type="10901">
<top_pos>-1</top_pos>
<left_pos>618</left_pos>
<bottom_pos>23</bottom_pos>
<right_pos>873</right_pos>
<snapshot_enabled>0</snapshot_enabled>
<lock_aspect_ratio>0</lock_aspect_ratio>
<interval>1</interval>
<calendar_btn_setting>2</calendar_btn_setting>
<hide_in_runtime>0</hide_in_runtime>
<hide_nav_buttons>0</hide_nav_buttons>
<report_type>2</report_type>
<duration_type>3</duration_type>
<duration_seconds>0</duration_seconds>
<duration_minutes>0</duration_minutes>
<duration_tod>665625600000000000</duration_tod>
<duration_dom>0</duration_dom>
<duration_dow>0</duration_dow>
<duration_month>0</duration_month>
<custom_begin_date>665607600000000000</custom_begin_date>
<custom_end_date>665694000000000000</custom_end_date>
</component>
</Components>
</screen>
<screen screen_name="Screen">
<show_image>0</show_image>
<background_image></background_image>
<background_color>16777215</background_color>
<position>0</position>
<snapshot_enabled>0</snapshot_enabled>
<Components count="1">
<component type="10609" name="Table Display">
<snapshot_enabled>0</snapshot_enabled>
<top_pos>12</top_pos>
<left_pos>7</left_pos>
<bottom_pos>1102</bottom_pos>
<right_pos>1014</right_pos>
<calculation>"Server:CR1000.Table1"</calculation>
<max_num_recs>144</max_num_recs>
<timestamp_format>%c</timestamp_format>
<show_record_number>0</show_record_number>
<time_offset_with_units>0</time_offset_with_units>
<time_offset_units>2</time_offset_units>
<newest_first>1</newest_first>
<expand_on_export>1</expand_on_export>
<show_all_columns>0</show_all_columns>
<Columns count="0">
<column name="Windroos"/>
<column name="Windr"/>
<column name="Beaufort"/>
<column name="MaxBeaufort"/>
<column name="Windskn"/>
<column name="MaxWindskn"/>
<column name="Windskm"/>
<column name="MaxWindskm"/>
<column name="Temp"/>
<column name="Vocht"/>
<column name="SlrW"/>
<column name="BaroP"/>
</Columns>
<Headings/>
<Calcs/>
</component>
</Components>
</screen>
</Screens>
<CustomSchedule count="0"/>
<Sources count="1">
<source name="Server" type="loggernet">
<settings address="localhost" logon="" password="" port="6789" remember="true" db-save-user-id=""></settings>
</source>
<Requests>
<request>Server:CR1000.Public.Windskn</request>
<request>Server:CR1000.Public.Windr</request>
<request>Server:CR1000.Public.SlrW</request>
<request>Server:CR1000.Public.BP_mbar</request>
<request>Server:CR1000.Public.Beaufort</request>
<request>Server:CR1000.Public.Windskn</request>
<request>Server:CR1000.Public.Windr</request>
<request>Server:CR1000.Public.BP_mbar</request>
<request>Server:CR1000.Public.Beaufort</request>
<request>Server:CR1000.Public.Temp</request>
<request>Server:CR1000.Public.Vocht</request>
<request>Server:CR1000.Public.SlrW</request>
<request>Server:CR1000.Public.Windskm</request>
<request>Server:CR1000.Public.Tot24</request>
<request>Server:CR1000.Public.Windskn</request>
<request>Server:CR1000.Public.Windskm</request>
<request>Server:CR1000.Table2.Windroos</request>
<request>Server:CR1000.Public.Windr</request>
<request>Server:CR1000.Table1.Windskn</request>
<request>Server:CR1000.Table1.MaxWindskn</request>
<request>Server:CR1000.Table1.Windr</request>
<request>Server:CR1000.Table1.Temp</request>
<request>Server:CR1000.Table1.Vocht</request>
<request>Server:CR1000.Table1.SlrW</request>
<request>Server:CR1000.Table1.BaroP</request>
<request>Server:CR1000.Table1.Windskn</request>
<request>Server:CR1000.Table1.MaxWindskn</request>
<request>Server:CR1000.Public.Tot24</request>
<request>Server:CR1000.Table1.MaxTemp</request>
<request>Server:CR1000.Table1.MaxBeaufort</request>
<request>Server:CR1000.Table1.Beaufort</request>
<request>Server:CR1000.Table1.MinTemp</request>
<request>Server:CR1000.Table1.Windskn</request>
<request>Server:CR1000.Table1.MaxWindskn</request>
<request>Server:CR1000.Table1.Temp</request>
<request>Server:CR1000.Table1.MaxVocht</request>
<request>Server:CR1000.Table1.MinVocht</request>
<request>Server:CR1000.Table1.Vocht</request>
<request>Server:CR1000.Table1.Windr</request>
<request>Server:CR1000.Table1.Vocht_Max</request>
<request>Server:CR1000.Table1.Vocht_Min</request>
<request>Server:CR1000.Table1.BP_mbar</request>
<request>Server:CR1000.Table1.Windroos</request>
<request>Server:CR1000.Table1.Beaufort</request>
<request>Server:CR1000.Table1.Windr</request>
<request>Server:CR1000.Table1</request>
<request>Server:CR1000.Public.Temp</request>
<request>Server:CR1000.Public.Vocht</request>
</Requests>
</Sources>
<MediaManager count="0"/>
</Project>

Log in or register to post/reply in the forum.