opentx-log 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 89c2f625880f6daed88afbc7feb8499c9df7e1cb
4
+ data.tar.gz: 3c34a34f13d2c2091da18850e804eac3818cb618
5
+ SHA512:
6
+ metadata.gz: c1d94130f3279fa2070d3c9e8e247680df8fe11bfc83e2b3b2783be1337cee5c906f3828acc2ae3540e3d7075fc1dd19696be2b774f80866f9b60d576414dd3d
7
+ data.tar.gz: 6858b0fe39c3812f11252c321e710ef684e3927d1eb6446fc016a3e0cbcfb9ce49df1b6f1e10e7a5ffca2d79207a0a30f75f3605dc807a60b762f065ca9190a3
@@ -0,0 +1,18 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ .idea
@@ -0,0 +1,6 @@
1
+ rvm:
2
+ - 1.9.3
3
+ - 2.0.0
4
+
5
+ notifications:
6
+ disabled: true
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in opentx-log.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Nick Veys
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,31 @@
1
+ # OpenTx::Log [![Build Status](https://travis-ci.org/code-lever/opentx-log.png)](https://travis-ci.org/code-lever/opentx-log) [![Dependency Status](https://gemnasium.com/code-lever/opentx-log.png)](https://gemnasium.com/code-lever/opentx-log) [![Code Climate](https://codeclimate.com/github/code-lever/opentx-log.png)](https://codeclimate.com/github/code-lever/opentx-log)
2
+
3
+ TODO: Write a gem description
4
+
5
+ * Formats: https://github.com/opentx/opentx/blob/master/src/logs.cpp
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ gem 'opentx-log'
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install opentx-log
20
+
21
+ ## Usage
22
+
23
+ TODO: Write usage instructions here
24
+
25
+ ## Contributing
26
+
27
+ 1. Fork it
28
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
29
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
30
+ 4. Push to the branch (`git push origin my-new-feature`)
31
+ 5. Create new Pull Request
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
3
+ require 'rspec/core/rake_task'
4
+
5
+ RSpec::Core::RakeTask.new('spec')
6
+ task :default => :spec
@@ -0,0 +1,3 @@
1
+ require 'opentx/log/file'
2
+ require 'opentx/log/session'
3
+ require 'opentx/log/version'
@@ -0,0 +1,46 @@
1
+ require 'csv'
2
+ require 'open-uri'
3
+
4
+ module OpenTx
5
+ module Log
6
+
7
+ class File
8
+
9
+ # @return [Array<Session>] Sessions contained in this file
10
+ attr_reader :sessions
11
+
12
+ # Determines if the file at the given URI is an OpenTx log file.
13
+ #
14
+ # @param uri URI to file to read
15
+ # @return [OpenTx::Log::File] loaded file if the file is an OpenTx log file, nil otherwise
16
+ def self.opentx? uri
17
+ File.new(uri) rescue nil
18
+ end
19
+
20
+ def initialize uri
21
+ @sessions = []
22
+
23
+ open(uri, 'r') do |file|
24
+ session = CSV.new(file, headers: true).map { |csv| csv }
25
+
26
+ # a little sanity checking
27
+ raise 'No session data found' if session.empty?
28
+ raise 'Unknown column layout' unless Session.known_rows?(session.first.headers)
29
+
30
+ @sessions << Session.new(session)
31
+ end
32
+ rescue => e
33
+ raise ArgumentError, "File does not appear to be an OpenTx log (#{e})"
34
+ end
35
+
36
+ # Gets the total duration of all sessions contained within.
37
+ #
38
+ # @return [Float] total duration of all sessions, in seconds
39
+ def duration
40
+ @sessions.map(&:duration).reduce(&:+)
41
+ end
42
+
43
+ end
44
+
45
+ end
46
+ end
@@ -0,0 +1,131 @@
1
+ module OpenTx
2
+ module Log
3
+
4
+ class Session
5
+
6
+ # XXX currently just know Taranis X9D files...
7
+ def self.known_rows?(headers)
8
+ return false unless [48].include?(headers.length)
9
+
10
+ # check for a few known headers
11
+ (%w(Date Time SWR RSSI A1 A2 Long Lat Temp1 Temp2 RPM Fuel) - headers).empty?
12
+ end
13
+
14
+ def initialize(csv_rows)
15
+ @rows = csv_rows
16
+ end
17
+
18
+ def duration
19
+ milliseconds
20
+ times.last - times.first
21
+ end
22
+
23
+ # @return [Array<Float>] millisecond time stamps for all entries, 0-based
24
+ def milliseconds
25
+ @milliseconds ||= times.map { |time| ((time - times.first) * 1000).round(2) }
26
+ end
27
+
28
+ # @return [Array<Time>] all date-times in the session
29
+ def times
30
+ @times ||= @rows.map { |row| Time.strptime("#{row['Date']} #{row['Time']}", '%Y-%m-%d %H:%M:%S.%N') }
31
+ end
32
+
33
+ def swr?
34
+ swr.any?
35
+ end
36
+
37
+ def swr
38
+ @swr ||= int_field('SWR')
39
+ end
40
+
41
+ def rssi?
42
+ rssi.any?
43
+ end
44
+
45
+ def rssi
46
+ @rssi ||= int_field('RSSI')
47
+ end
48
+
49
+ def a1?
50
+ a1.any? { |v| v > 0.0 }
51
+ end
52
+
53
+ def a1
54
+ @a1 ||= float_field('A1')
55
+ end
56
+
57
+ def a2?
58
+ a2.any? { |v| v > 0.0 }
59
+ end
60
+
61
+ def a2
62
+ @a2 ||= float_field('A2')
63
+ end
64
+
65
+ def temp1?
66
+ int_field('Temp1').any? { |t| t != 0 }
67
+ end
68
+
69
+ def temp1(unit = :c)
70
+ @temp1 ||= int_field('Temp1')
71
+ @temp1.map { |t| convert_temperature(t, unit) }
72
+ end
73
+
74
+ def temp2?
75
+ int_field('Temp2').any? { |t| t != 0 }
76
+ end
77
+
78
+ def temp2(unit = :c)
79
+ @temp2 ||= int_field('Temp2')
80
+ @temp2.map { |t| convert_temperature(t, unit) }
81
+ end
82
+
83
+ def fuel?
84
+ fuel.any? { |f| f != 0 }
85
+ end
86
+
87
+ def fuel
88
+ @fuel ||= int_field('Fuel')
89
+ end
90
+
91
+ def cell_volts?
92
+ cell_volts.any? { |v| v > 0.0 }
93
+ end
94
+
95
+ def cell_volts
96
+ @cell_volts ||= float_field('Cell volts')
97
+ end
98
+
99
+ # @param index [1..6]
100
+ def cell?(index)
101
+ cell(index).any? { |v| v > 0.0 }
102
+ end
103
+
104
+ # @param index [1..6]
105
+ def cell(index)
106
+ float_field("Cell #{index}")
107
+ end
108
+
109
+ private
110
+
111
+ def convert_temperature(celsius, unit)
112
+ case unit
113
+ when :f
114
+ (celsius * (9.0 / 5.0)) + 32
115
+ else
116
+ celsius
117
+ end
118
+ end
119
+
120
+ def float_field(name)
121
+ @rows.map { |row| row[name].to_f }
122
+ end
123
+
124
+ def int_field(name)
125
+ @rows.map { |row| row[name].to_i }
126
+ end
127
+
128
+ end
129
+
130
+ end
131
+ end
@@ -0,0 +1,5 @@
1
+ module OpenTx
2
+ module Log
3
+ VERSION = '0.0.1'
4
+ end
5
+ end
@@ -0,0 +1,31 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'opentx/log/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'opentx-log'
8
+ spec.version = OpenTx::Log::VERSION
9
+ spec.authors = ['Nick Veys']
10
+ spec.email = ['nick@codelever.com']
11
+ spec.description = %q{Read and interpret OpenTx telemetry log files.}
12
+ spec.summary = %q{OpenTx log file reader}
13
+ spec.homepage = 'http://github.com/code-lever/icharger-log'
14
+ spec.license = 'MIT'
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ['lib']
20
+
21
+ spec.add_development_dependency 'awesome_print'
22
+ spec.add_development_dependency 'bundler', '~> 1.3'
23
+ spec.add_development_dependency 'ci_reporter', '= 1.8.4'
24
+ spec.add_development_dependency 'rake', '~> 10.0'
25
+ spec.add_development_dependency 'rspec', '~> 2.13'
26
+ spec.add_development_dependency 'simplecov'
27
+ spec.add_development_dependency 'simplecov-gem-adapter'
28
+ spec.add_development_dependency 'simplecov-rcov'
29
+
30
+ spec.add_dependency 'ruby_kml', '~> 0.1'
31
+ end
@@ -0,0 +1,47 @@
1
+ require 'spec_helper'
2
+
3
+ describe OpenTx::Log::File do
4
+
5
+ context 'data file taranis-x9d.csv' do
6
+
7
+ before(:all) { @file = OpenTx::Log::File.new(data_file('taranis-x9d.csv')) }
8
+
9
+ subject { @file }
10
+
11
+ it { should have(1).sessions }
12
+
13
+ its(:duration) { should be_within(0.1).of(85.2) }
14
+
15
+ end
16
+
17
+ describe '#opentx?' do
18
+
19
+ it 'should be false for invalid or missing files' do
20
+ files = invalid_data_files
21
+ files.should have(7).files
22
+
23
+ files.each do |f|
24
+ expect(OpenTx::Log::File.opentx?(f)).to be_false
25
+ end
26
+ end
27
+
28
+ it 'should be true for valid files' do
29
+ files = data_files
30
+ files.should have(1).file
31
+
32
+ files.each do |f|
33
+ expect(OpenTx::Log::File.opentx?(f)).to be_true
34
+ end
35
+ end
36
+
37
+ it 'should return a file object' do
38
+ expect(OpenTx::Log::File.opentx?(data_files[0])).to be_a(OpenTx::Log::File)
39
+ end
40
+
41
+ it 'should return nil when invalid' do
42
+ expect(OpenTx::Log::File.opentx?(invalid_data_files[0])).to be_nil
43
+ end
44
+
45
+ end
46
+
47
+ end
@@ -0,0 +1,447 @@
1
+ $1;1;0;1;0;0;23773;22761;0;380;0;3797;3794;3796;3797;3795;3792;0;0;0;0;34
2
+ $1;1;1000;1;0;0;23773;22759;0;380;0;3797;3794;3796;3797;3795;3792;0;0;0;0;24
3
+ $1;1;2000;1;0;0;23773;22758;0;380;0;3796;3794;3796;3797;3795;3792;0;0;0;0;27
4
+ $1;1;3000;1;0;0;23773;22758;0;380;0;3796;3794;3796;3796;3794;3792;0;0;0;0;26
5
+ $1;1;4000;1;0;3;23759;22760;0;380;0;3796;3794;3796;3796;3794;3791;0;0;0;0;30
6
+ $1;1;5000;1;0;3;23738;22761;0;380;0;3797;3794;3798;3796;3794;3791;0;0;0;0;22
7
+ $1;1;6000;1;0;3;23725;22755;0;380;0;3796;3793;3797;3796;3794;3791;0;0;0;0;23
8
+ $1;1;7000;1;0;11;23834;22762;0;380;0;3797;3794;3799;3796;3794;3791;0;0;0;0;38
9
+ $1;1;8000;1;0;18;23836;22769;0;380;0;3797;3795;3801;3796;3794;3791;0;0;0;0;38
10
+ $1;1;9000;1;0;26;23833;22774;0;380;0;3798;3795;3803;3796;3794;3791;0;0;0;0;46
11
+ $1;1;10000;1;0;34;23832;22780;0;380;0;3798;3796;3805;3796;3794;3791;0;0;0;0;26
12
+ $1;1;11000;1;0;40;23834;22784;0;380;0;3799;3796;3806;3796;3794;3791;0;0;0;0;24
13
+ $1;1;12000;1;0;45;23837;22787;0;380;0;3799;3797;3807;3796;3794;3791;0;0;0;0;30
14
+ $1;1;13000;1;0;53;23849;22795;0;380;0;3800;3798;3810;3797;3794;3791;0;0;0;0;21
15
+ $1;1;14000;1;0;57;23719;22798;0;380;0;3800;3798;3812;3797;3794;3791;0;0;0;0;19
16
+ $1;1;15000;1;0;58;23720;22794;1;380;0;3800;3798;3810;3797;3794;3791;0;0;0;0;24
17
+ $1;1;16000;1;0;49;23725;22783;1;380;0;3799;3796;3807;3797;3794;3791;0;0;0;0;31
18
+ $1;1;17000;1;0;36;23734;22768;1;380;0;3797;3795;3802;3796;3794;3791;0;0;0;0;26
19
+ $1;1;18000;1;0;-53;23746;22752;1;380;0;3795;3793;3798;3795;3793;3789;0;0;0;0;50
20
+ $1;1;19000;1;0;-68;23741;22747;1;380;0;3795;3792;3796;3796;3793;3787;0;0;0;0;58
21
+ $1;1;20000;1;0;5;23729;22785;1;380;0;3799;3797;3800;3802;3795;3791;0;0;0;0;44
22
+ $1;1;21000;1;0;84;23725;22834;2;380;0;3805;3803;3805;3808;3801;3804;0;0;0;0;24
23
+ $1;1;22000;1;0;154;23720;22876;2;380;0;3811;3809;3811;3813;3807;3808;0;0;0;0;46
24
+ $1;1;23000;1;0;215;23708;22911;3;380;0;3815;3814;3815;3819;3812;3813;0;0;0;0;42
25
+ $1;1;24000;1;0;248;23709;22925;4;380;0;3818;3816;3817;3821;3815;3816;0;0;0;0;32
26
+ $1;1;25000;1;0;264;23710;22930;5;380;0;3819;3817;3818;3822;3816;3816;0;0;0;0;45
27
+ $1;1;26000;1;0;268;23709;22930;5;380;0;3819;3817;3818;3822;3817;3816;0;0;0;0;43
28
+ $1;1;27000;1;0;269;23710;22931;6;380;0;3819;3818;3818;3822;3817;3817;0;0;0;0;47
29
+ $1;1;28000;1;0;266;23711;22931;7;380;0;3819;3818;3818;3821;3818;3817;0;0;0;0;35
30
+ $1;1;29000;1;0;259;23712;22928;8;380;0;3819;3818;3818;3820;3818;3817;0;0;0;0;43
31
+ $1;1;30000;1;0;253;23714;22924;8;380;0;3819;3817;3818;3819;3818;3817;0;0;0;0;38
32
+ $1;1;31000;1;0;244;23715;22921;9;380;0;3818;3817;3818;3818;3817;3816;0;0;0;0;42
33
+ $1;1;32000;1;0;257;23712;22936;10;380;0;3820;3819;3819;3819;3819;3818;0;0;0;0;23
34
+ $1;1;33000;1;0;288;23707;22963;11;380;0;3823;3823;3823;3823;3822;3822;0;0;0;0;26
35
+ $1;1;34000;1;0;325;23701;22992;12;377;0;3827;3827;3827;3827;3826;3827;0;0;0;0;25
36
+ $1;1;35000;1;0;355;23699;23013;13;380;0;3830;3830;3830;3830;3829;3830;0;0;0;0;30
37
+ $1;1;36000;1;0;373;23698;23022;14;380;0;3831;3831;3831;3831;3831;3832;0;0;0;0;22
38
+ $1;1;37000;1;0;382;23698;23029;15;380;0;3832;3832;3832;3833;3832;3833;0;0;0;0;16
39
+ $1;1;38000;1;0;389;23699;23034;16;380;0;3833;3833;3833;3834;3833;3834;0;0;0;0;26
40
+ $1;1;39000;1;0;396;23697;23042;17;380;0;3834;3834;3834;3835;3834;3835;0;0;0;0;27
41
+ $1;1;40000;1;0;399;23698;23046;18;380;0;3835;3835;3835;3836;3835;3835;0;0;0;0;29
42
+ $1;1;41000;1;0;398;23699;23046;20;380;0;3835;3835;3835;3836;3835;3835;0;0;0;0;23
43
+ $1;1;42000;1;0;396;23699;23046;21;380;0;3835;3835;3836;3836;3835;3835;0;0;0;0;24
44
+ $1;1;43000;1;0;394;23699;23046;22;380;0;3836;3835;3836;3836;3836;3835;0;0;0;0;24
45
+ $1;1;44000;1;0;398;23699;23052;23;380;0;3836;3836;3836;3837;3837;3836;0;0;0;0;23
46
+ $1;1;45000;1;0;398;23699;23055;24;380;0;3837;3836;3836;3838;3837;3837;0;0;0;0;25
47
+ $1;1;46000;1;0;399;23699;23056;25;380;0;3837;3836;3837;3838;3837;3837;0;0;0;0;24
48
+ $1;1;47000;1;0;399;23699;23059;26;380;0;3837;3837;3837;3839;3838;3837;0;0;0;0;26
49
+ $1;1;48000;1;0;400;23699;23061;27;380;0;3838;3837;3838;3839;3838;3838;0;0;0;0;23
50
+ $1;1;49000;1;0;401;23699;23063;28;380;0;3838;3837;3838;3839;3839;3838;0;0;0;0;27
51
+ $1;1;50000;1;0;400;23698;23064;30;382;0;3838;3837;3838;3839;3839;3838;0;0;0;0;31
52
+ $1;1;51000;1;0;399;23699;23065;31;382;0;3838;3838;3838;3840;3839;3838;0;0;0;0;25
53
+ $1;1;52000;1;0;398;23699;23066;32;382;0;3839;3838;3838;3840;3840;3839;0;0;0;0;21
54
+ $1;1;53000;1;0;400;23697;23071;33;382;0;3839;3838;3839;3840;3840;3839;0;0;0;0;26
55
+ $1;1;54000;1;0;403;23698;23075;34;382;0;3840;3839;3840;3841;3840;3840;0;0;0;0;28
56
+ $1;1;55000;1;0;402;23698;23075;35;382;0;3840;3839;3840;3841;3841;3840;0;0;0;0;28
57
+ $1;1;56000;1;0;399;23699;23075;36;382;0;3840;3839;3840;3841;3841;3840;0;0;0;0;24
58
+ $1;1;57000;1;0;397;23699;23075;37;382;0;3840;3839;3840;3841;3841;3840;0;0;0;0;22
59
+ $1;1;58000;1;0;398;23699;23077;38;382;0;3841;3840;3840;3841;3841;3840;0;0;0;0;20
60
+ $1;1;59000;1;0;401;23698;23082;40;382;0;3841;3840;3841;3842;3842;3841;0;0;0;0;22
61
+ $1;1;60000;1;0;404;23699;23084;41;382;0;3842;3841;3841;3842;3842;3842;0;0;0;0;30
62
+ $1;1;61000;1;0;401;23699;23084;42;382;0;3841;3841;3841;3842;3842;3841;0;0;0;0;25
63
+ $1;1;62000;1;0;399;23698;23083;43;384;0;3841;3841;3841;3843;3842;3841;0;0;0;0;28
64
+ $1;1;63000;1;0;397;23699;23084;44;384;0;3841;3841;3841;3843;3842;3841;0;0;0;0;18
65
+ $1;1;64000;1;0;397;23699;23086;45;384;0;3842;3841;3841;3843;3843;3842;0;0;0;0;23
66
+ $1;1;65000;1;0;400;23699;23090;46;384;0;3842;3842;3842;3844;3843;3842;0;0;0;0;28
67
+ $1;1;66000;1;0;401;23699;23091;47;384;0;3843;3842;3843;3844;3844;3843;0;0;0;0;24
68
+ $1;1;67000;1;0;401;23697;23092;49;384;0;3843;3843;3843;3844;3844;3843;0;0;0;0;27
69
+ $1;1;68000;1;0;401;23697;23094;50;384;0;3843;3843;3843;3844;3844;3843;0;0;0;0;26
70
+ $1;1;69000;1;0;400;23699;23094;51;384;0;3843;3843;3843;3844;3844;3843;0;0;0;0;21
71
+ $1;1;70000;1;0;400;23699;23097;52;387;0;3844;3843;3844;3845;3844;3843;0;0;0;0;31
72
+ $1;1;71000;1;0;399;23699;23096;53;387;0;3844;3843;3844;3845;3844;3844;0;0;0;0;30
73
+ $1;1;72000;1;0;397;23698;23095;54;387;0;3844;3843;3843;3845;3845;3844;0;0;0;0;16
74
+ $1;1;73000;1;0;398;23697;23099;55;387;0;3844;3843;3844;3845;3845;3844;0;0;0;0;27
75
+ $1;1;74000;1;0;402;23698;23103;56;387;0;3844;3844;3845;3846;3845;3844;0;0;0;0;19
76
+ $1;1;75000;1;0;403;23697;23104;58;387;0;3845;3844;3845;3847;3846;3844;0;0;0;0;22
77
+ $1;1;76000;1;0;400;23697;23103;59;387;0;3845;3844;3845;3846;3846;3844;0;0;0;0;17
78
+ $1;1;77000;1;0;399;23697;23103;60;387;0;3845;3844;3845;3846;3846;3845;0;0;0;0;28
79
+ $1;1;78000;1;0;396;23697;23103;61;387;0;3845;3844;3845;3846;3846;3845;0;0;0;0;29
80
+ $1;1;79000;1;0;397;23697;23105;62;387;0;3845;3844;3845;3846;3846;3845;0;0;0;0;24
81
+ $1;1;80000;1;0;398;23697;23106;63;389;0;3845;3845;3845;3847;3846;3845;0;0;0;0;29
82
+ $1;1;81000;1;0;400;23697;23110;64;389;0;3846;3845;3846;3847;3847;3846;0;0;0;0;24
83
+ $1;1;82000;1;0;400;23696;23111;65;389;0;3846;3845;3846;3847;3847;3846;0;0;0;0;26
84
+ $1;1;83000;1;0;401;23697;23113;66;389;0;3846;3845;3846;3847;3847;3846;0;0;0;0;26
85
+ $1;1;84000;1;0;400;23697;23113;68;389;0;3846;3845;3846;3847;3847;3846;0;0;0;0;18
86
+ $1;1;85000;1;0;399;23697;23113;69;389;0;3846;3846;3846;3848;3847;3846;0;0;0;0;25
87
+ $1;1;86000;1;0;398;23698;23114;70;389;0;3847;3846;3847;3848;3847;3847;0;0;0;0;26
88
+ $1;1;87000;1;0;399;23697;23117;71;389;0;3847;3846;3847;3848;3847;3847;0;0;0;0;23
89
+ $1;1;88000;1;0;403;23698;23121;72;389;0;3847;3847;3848;3849;3848;3847;0;0;0;0;21
90
+ $1;1;89000;1;0;404;23697;23122;73;389;0;3848;3847;3848;3849;3848;3848;0;0;0;0;30
91
+ $1;1;90000;1;0;401;23697;23120;74;391;0;3847;3847;3848;3849;3848;3848;0;0;0;0;16
92
+ $1;1;91000;1;0;399;23697;23120;75;391;0;3847;3847;3848;3849;3848;3847;0;0;0;0;25
93
+ $1;1;92000;1;0;398;23699;23122;76;391;0;3848;3847;3848;3849;3849;3848;0;0;0;0;21
94
+ $1;1;93000;1;0;396;23699;23121;77;391;0;3848;3847;3848;3849;3849;3848;0;0;0;0;24
95
+ $1;1;94000;1;0;398;23698;23124;79;391;0;3848;3847;3848;3849;3849;3848;0;0;0;0;27
96
+ $1;1;95000;1;0;400;23698;23127;80;391;0;3849;3848;3849;3850;3849;3849;0;0;0;0;31
97
+ $1;1;96000;1;0;400;23697;23129;81;391;0;3849;3848;3849;3850;3850;3849;0;0;0;0;20
98
+ $1;1;97000;1;0;401;23698;23129;82;391;0;3849;3848;3849;3850;3850;3849;0;0;0;0;24
99
+ $1;1;98000;1;0;400;23698;23129;83;391;0;3849;3848;3849;3850;3850;3849;0;0;0;0;23
100
+ $1;1;99000;1;0;399;23698;23130;84;391;0;3849;3848;3849;3850;3850;3849;0;0;0;0;30
101
+ $1;1;100000;1;0;398;23698;23131;85;391;0;3849;3848;3849;3850;3850;3849;0;0;0;0;46
102
+ $1;1;101000;1;0;399;23697;23133;86;394;0;3850;3849;3850;3851;3851;3850;0;0;0;0;44
103
+ $1;1;102000;1;0;402;23698;23135;87;394;0;3850;3849;3850;3851;3851;3850;0;0;0;0;34
104
+ $1;1;103000;1;0;403;23697;23136;89;394;0;3850;3849;3850;3851;3851;3850;0;0;0;0;32
105
+ $1;1;104000;1;0;402;23696;23137;90;394;0;3850;3850;3850;3851;3851;3851;0;0;0;0;39
106
+ $1;1;105000;1;0;401;23697;23136;91;394;0;3850;3850;3850;3852;3851;3850;0;0;0;0;38
107
+ $1;1;106000;1;0;398;23695;23135;92;394;0;3850;3850;3850;3852;3851;3851;0;0;0;0;33
108
+ $1;1;107000;1;0;396;23696;23135;93;394;0;3850;3850;3850;3852;3851;3851;0;0;0;0;44
109
+ $1;1;108000;1;0;398;23696;23138;94;394;0;3851;3850;3850;3852;3851;3851;0;0;0;0;38
110
+ $1;1;109000;1;0;399;23695;23141;95;394;0;3851;3850;3851;3853;3852;3851;0;0;0;0;41
111
+ $1;1;110000;1;0;399;23695;23141;96;396;0;3851;3851;3851;3853;3852;3851;0;0;0;0;33
112
+ $1;1;111000;1;0;400;23695;23142;97;396;0;3852;3851;3851;3853;3852;3851;0;0;0;0;38
113
+ $1;1;112000;1;0;399;23695;23143;99;396;0;3852;3851;3851;3853;3852;3852;0;0;0;0;46
114
+ $1;1;113000;1;0;399;23695;23144;100;396;0;3852;3851;3852;3853;3853;3852;0;0;0;0;27
115
+ $1;1;114000;1;0;399;23696;23145;101;396;0;3852;3851;3851;3853;3853;3852;0;0;0;0;28
116
+ $1;1;115000;1;0;398;23695;23145;102;396;0;3852;3851;3852;3853;3853;3852;0;0;0;0;31
117
+ $1;1;116000;1;0;399;23696;23147;103;396;0;3852;3851;3852;3853;3853;3852;0;0;0;0;29
118
+ $1;1;117000;1;0;400;23696;23148;104;396;0;3852;3852;3852;3853;3853;3853;0;0;0;0;17
119
+ $1;1;118000;1;0;399;23695;23149;105;396;0;3853;3852;3853;3853;3853;3852;0;0;0;0;27
120
+ $1;1;119000;1;0;400;23695;23151;106;398;0;3853;3852;3853;3854;3853;3853;0;0;0;0;31
121
+ $1;1;120000;1;0;402;23695;23153;107;398;0;3853;3852;3853;3854;3854;3853;0;0;0;0;19
122
+ $1;1;121000;1;0;402;23694;23154;109;398;0;3853;3853;3854;3855;3854;3853;0;0;0;0;29
123
+ $1;1;122000;1;0;404;23695;23156;110;398;0;3853;3853;3853;3855;3854;3853;0;0;0;0;20
124
+ $1;1;123000;1;0;400;23696;23154;111;398;0;3853;3852;3853;3855;3854;3853;0;0;0;0;16
125
+ $1;1;124000;1;0;397;23695;23154;112;398;0;3853;3853;3853;3855;3854;3853;0;0;0;0;31
126
+ $1;1;125000;1;0;396;23695;23154;113;398;0;3853;3853;3853;3855;3854;3853;0;0;0;0;30
127
+ $1;1;126000;1;0;397;23695;23156;114;398;0;3854;3853;3853;3855;3855;3853;0;0;0;0;31
128
+ $1;1;127000;1;0;401;23696;23159;115;398;0;3854;3854;3854;3855;3855;3854;0;0;0;0;28
129
+ $1;1;128000;1;0;402;23695;23162;116;398;0;3854;3854;3854;3856;3855;3854;0;0;0;0;27
130
+ $1;1;129000;1;0;403;23695;23163;117;398;0;3854;3854;3854;3856;3856;3855;0;0;0;0;25
131
+ $1;1;130000;1;0;401;23696;23163;119;398;0;3855;3854;3855;3856;3856;3855;0;0;0;0;30
132
+ $1;1;131000;1;0;398;23697;23163;120;401;0;3854;3854;3854;3856;3855;3855;0;0;0;0;23
133
+ $1;1;132000;1;0;396;23697;23161;121;401;0;3855;3854;3854;3856;3855;3855;0;0;0;0;24
134
+ $1;1;133000;1;0;397;23696;23164;122;401;0;3855;3854;3854;3856;3856;3855;0;0;0;0;28
135
+ $1;1;134000;1;0;399;23695;23167;123;401;0;3855;3855;3855;3857;3856;3855;0;0;0;0;21
136
+ $1;1;135000;1;0;402;23695;23169;124;401;0;3855;3855;3855;3857;3856;3856;0;0;0;0;27
137
+ $1;1;136000;1;0;402;23695;23170;125;401;0;3856;3855;3855;3857;3857;3856;0;0;0;0;19
138
+ $1;1;137000;1;0;402;23694;23170;126;401;0;3856;3855;3856;3857;3857;3856;0;0;0;0;19
139
+ $1;1;138000;1;0;401;23695;23170;127;401;0;3856;3855;3856;3857;3857;3856;0;0;0;0;31
140
+ $1;1;139000;1;0;398;23695;23168;129;401;0;3856;3855;3856;3857;3857;3855;0;0;0;0;29
141
+ $1;1;140000;1;0;396;23696;23168;130;403;0;3856;3855;3856;3857;3857;3855;0;0;0;0;20
142
+ $1;1;141000;1;0;397;23696;23170;131;403;0;3856;3855;3856;3857;3857;3856;0;0;0;0;31
143
+ $1;1;142000;1;0;398;23695;23172;132;403;0;3856;3856;3856;3858;3857;3856;0;0;0;0;29
144
+ $1;1;143000;1;0;401;23695;23175;133;403;0;3856;3856;3857;3858;3857;3857;0;0;0;0;29
145
+ $1;1;144000;1;0;403;23694;23176;134;403;0;3857;3856;3857;3858;3858;3857;0;0;0;0;19
146
+ $1;1;145000;1;0;403;23694;23177;135;403;0;3857;3857;3857;3858;3858;3857;0;0;0;0;19
147
+ $1;1;146000;1;0;400;23695;23175;136;403;0;3857;3856;3857;3858;3858;3857;0;0;0;0;18
148
+ $1;1;147000;1;0;398;23695;23173;137;403;0;3857;3856;3857;3858;3858;3856;0;0;0;0;19
149
+ $1;1;148000;1;0;396;23695;23174;139;403;0;3857;3856;3857;3858;3858;3857;0;0;0;0;26
150
+ $1;1;149000;1;0;399;23695;23178;140;403;0;3857;3857;3857;3859;3858;3857;0;0;0;0;22
151
+ $1;1;150000;1;0;400;23694;23180;141;403;0;3857;3857;3857;3859;3859;3858;0;0;0;0;16
152
+ $1;1;151000;1;0;401;23695;23181;142;403;0;3858;3857;3857;3859;3859;3858;0;0;0;0;28
153
+ $1;1;152000;1;0;400;23694;23181;143;403;0;3858;3857;3858;3859;3859;3858;0;0;0;0;17
154
+ $1;1;153000;1;0;400;23695;23182;144;405;0;3858;3857;3858;3859;3859;3858;0;0;0;0;19
155
+ $1;1;154000;1;0;399;23695;23182;145;405;0;3858;3857;3858;3859;3859;3858;0;0;0;0;18
156
+ $1;1;155000;1;0;398;23695;23182;146;405;0;3858;3858;3858;3859;3859;3858;0;0;0;0;30
157
+ $1;1;156000;1;0;399;23694;23183;148;405;0;3858;3858;3858;3859;3859;3858;0;0;0;0;18
158
+ $1;1;157000;1;0;401;23695;23186;149;405;0;3859;3858;3859;3860;3860;3859;0;0;0;0;17
159
+ $1;1;158000;1;0;401;23695;23187;150;405;0;3859;3858;3859;3860;3860;3859;0;0;0;0;23
160
+ $1;1;159000;1;0;400;23696;23188;151;405;0;3859;3859;3859;3860;3860;3859;0;0;0;0;27
161
+ $1;1;160000;1;0;399;23695;23189;152;405;0;3859;3859;3858;3860;3860;3859;0;0;0;0;22
162
+ $1;1;161000;1;0;398;23695;23188;153;405;0;3859;3859;3858;3860;3860;3860;0;0;0;0;28
163
+ $1;1;162000;1;0;400;23695;23190;154;405;0;3859;3859;3858;3861;3860;3861;0;0;0;0;23
164
+ $1;1;163000;1;0;402;23694;23193;155;405;0;3860;3859;3859;3861;3861;3861;0;0;0;0;29
165
+ $1;1;164000;1;0;403;23694;23195;156;405;0;3860;3860;3859;3861;3861;3861;0;0;0;0;20
166
+ $1;1;165000;1;0;403;23694;23195;158;405;0;3860;3860;3860;3861;3861;3861;0;0;0;0;17
167
+ $1;1;166000;1;0;400;23693;23193;159;405;0;3859;3860;3859;3861;3861;3861;0;0;0;0;17
168
+ $1;1;167000;1;0;398;23694;23193;160;405;0;3859;3860;3859;3861;3861;3861;0;0;0;0;27
169
+ $1;1;168000;1;0;397;23695;23193;161;405;0;3859;3860;3859;3861;3861;3861;0;0;0;0;27
170
+ $1;1;169000;1;0;397;23695;23194;162;405;0;3860;3860;3859;3861;3861;3861;0;0;0;0;20
171
+ $1;1;170000;1;0;401;23693;23199;163;405;0;3860;3860;3860;3862;3861;3862;0;0;0;0;20
172
+ $1;1;171000;1;0;403;23692;23201;164;405;0;3860;3860;3860;3862;3862;3862;0;0;0;0;16
173
+ $1;1;172000;1;0;401;23694;23199;165;405;0;3860;3860;3860;3862;3862;3862;0;0;0;0;20
174
+ $1;1;173000;1;0;400;23695;23199;166;408;0;3860;3860;3860;3862;3862;3862;0;0;0;0;27
175
+ $1;1;174000;1;0;398;23695;23199;167;408;0;3860;3861;3860;3862;3862;3862;0;0;0;0;26
176
+ $1;1;175000;1;0;397;23695;23199;169;408;0;3860;3861;3861;3862;3862;3862;0;0;0;0;27
177
+ $1;1;176000;1;0;399;23694;23202;170;408;0;3861;3861;3861;3863;3862;3862;0;0;0;0;30
178
+ $1;1;177000;1;0;404;23693;23206;171;408;0;3861;3862;3861;3863;3863;3863;0;0;0;0;29
179
+ $1;1;178000;1;0;402;23694;23205;172;408;0;3861;3862;3861;3863;3863;3862;0;0;0;0;18
180
+ $1;1;179000;1;0;401;23693;23205;173;408;0;3861;3862;3861;3863;3863;3862;0;0;0;0;22
181
+ $1;1;180000;1;0;398;23695;23203;174;408;0;3861;3861;3861;3863;3863;3863;0;0;0;0;18
182
+ $1;1;181000;1;0;393;23696;23201;175;408;0;3861;3861;3860;3862;3862;3862;0;0;0;0;24
183
+ $1;1;182000;1;0;401;23694;23209;176;408;0;3862;3862;3861;3864;3863;3863;0;0;0;0;25
184
+ $1;1;183000;1;0;402;23694;23209;177;408;0;3862;3862;3862;3864;3863;3864;0;0;0;0;30
185
+ $1;1;184000;1;0;399;23694;23208;179;408;0;3862;3862;3861;3864;3863;3863;0;0;0;0;23
186
+ $1;1;185000;1;0;396;23694;23208;180;408;0;3862;3862;3861;3863;3863;3863;0;0;0;0;24
187
+ $1;1;186000;1;0;398;23695;23209;181;408;0;3862;3862;3861;3864;3863;3863;0;0;0;0;19
188
+ $1;1;187000;1;0;403;23694;23213;182;408;0;3863;3863;3862;3865;3864;3864;0;0;0;0;28
189
+ $1;1;188000;1;0;401;23693;23212;183;408;0;3863;3863;3862;3865;3864;3864;0;0;0;0;22
190
+ $1;1;189000;1;0;398;23695;23210;184;408;0;3862;3862;3862;3864;3864;3864;0;0;0;0;18
191
+ $1;1;190000;1;0;396;23695;23210;185;408;0;3862;3862;3862;3864;3864;3864;0;0;0;0;21
192
+ $1;1;191000;1;0;400;23692;23214;186;408;0;3863;3863;3863;3865;3864;3864;0;0;0;0;28
193
+ $1;1;192000;1;0;403;23693;23216;187;408;0;3863;3863;3863;3865;3865;3864;0;0;0;0;31
194
+ $1;1;193000;1;0;403;23693;23216;189;408;0;3863;3863;3863;3865;3865;3864;0;0;0;0;16
195
+ $1;1;194000;1;0;399;23693;23214;190;408;0;3863;3863;3863;3864;3864;3864;0;0;0;0;25
196
+ $1;1;195000;1;0;397;23694;23215;191;408;0;3863;3863;3863;3865;3864;3864;0;0;0;0;16
197
+ $1;1;196000;1;0;397;23694;23216;192;408;0;3863;3863;3863;3865;3865;3865;0;0;0;0;19
198
+ $1;1;197000;1;0;399;23694;23218;193;408;0;3863;3863;3863;3866;3865;3865;0;0;0;0;16
199
+ $1;1;198000;1;0;400;23693;23219;194;408;0;3864;3863;3863;3866;3865;3865;0;0;0;0;30
200
+ $1;1;199000;1;0;399;23693;23219;195;408;0;3864;3864;3863;3866;3865;3865;0;0;0;0;30
201
+ $1;1;200000;1;0;398;23691;23219;196;408;0;3864;3864;3863;3866;3865;3865;0;0;0;0;29
202
+ $1;1;201000;1;0;402;23691;23223;197;408;0;3864;3864;3864;3866;3866;3866;0;0;0;0;23
203
+ $1;1;202000;1;0;404;23691;23225;198;408;0;3865;3865;3864;3866;3866;3866;0;0;0;0;27
204
+ $1;1;203000;1;0;399;23693;23221;200;408;0;3864;3864;3864;3866;3866;3865;0;0;0;0;30
205
+ $1;1;204000;1;0;397;23695;23219;201;408;0;3864;3864;3864;3866;3865;3865;0;0;0;0;24
206
+ $1;1;205000;1;0;397;23695;23220;202;408;0;3864;3864;3864;3866;3866;3865;0;0;0;0;19
207
+ $1;1;206000;1;0;397;23693;23221;203;408;0;3864;3864;3864;3866;3866;3865;0;0;0;0;22
208
+ $1;1;207000;1;0;399;23692;23224;204;408;0;3865;3865;3864;3866;3866;3866;0;0;0;0;25
209
+ $1;1;208000;1;0;402;23692;23227;205;408;0;3865;3865;3865;3867;3867;3866;0;0;0;0;16
210
+ $1;1;209000;1;0;403;23692;23228;206;408;0;3865;3865;3865;3867;3867;3866;0;0;0;0;28
211
+ $1;1;210000;1;0;402;23694;23227;207;408;0;3865;3865;3865;3867;3867;3866;0;0;0;0;29
212
+ $1;1;211000;1;0;400;23694;23227;208;408;0;3865;3865;3865;3867;3867;3866;0;0;0;0;17
213
+ $1;1;212000;1;0;398;23694;23226;210;408;0;3865;3865;3865;3867;3867;3866;0;0;0;0;28
214
+ $1;1;213000;1;0;396;23694;23227;211;408;0;3865;3865;3865;3867;3867;3866;0;0;0;0;19
215
+ $1;1;214000;1;0;397;23694;23228;212;408;0;3865;3866;3865;3867;3867;3867;0;0;0;0;27
216
+ $1;1;215000;1;0;398;23693;23229;213;408;0;3865;3866;3865;3867;3867;3867;0;0;0;0;18
217
+ $1;1;216000;1;0;400;23695;23231;214;408;0;3865;3866;3866;3868;3867;3867;0;0;0;0;19
218
+ $1;1;217000;1;0;399;23693;23231;215;408;0;3866;3866;3866;3867;3867;3867;0;0;0;0;30
219
+ $1;1;218000;1;0;399;23692;23232;216;408;0;3866;3866;3866;3868;3867;3867;0;0;0;0;31
220
+ $1;1;219000;1;0;401;23694;23234;217;408;0;3866;3866;3866;3868;3868;3867;0;0;0;0;22
221
+ $1;1;220000;1;0;402;23693;23234;218;408;0;3866;3866;3866;3868;3868;3867;0;0;0;0;23
222
+ $1;1;221000;1;0;403;23692;23236;220;408;0;3866;3866;3866;3868;3868;3868;0;0;0;0;16
223
+ $1;1;222000;1;0;401;23693;23234;221;408;0;3866;3866;3866;3868;3868;3868;0;0;0;0;19
224
+ $1;1;223000;1;0;398;23693;23233;222;408;0;3866;3866;3866;3868;3868;3867;0;0;0;0;30
225
+ $1;1;224000;1;0;396;23693;23233;223;408;0;3866;3866;3866;3868;3868;3867;0;0;0;0;22
226
+ $1;1;225000;1;0;399;23692;23237;224;408;0;3867;3866;3866;3868;3868;3868;0;0;0;0;20
227
+ $1;1;226000;1;0;402;23691;23239;225;408;0;3867;3867;3866;3869;3869;3868;0;0;0;0;31
228
+ $1;1;227000;1;0;403;23692;23240;226;408;0;3867;3867;3867;3869;3869;3868;0;0;0;0;16
229
+ $1;1;228000;1;0;401;23693;23240;227;408;0;3867;3867;3867;3869;3869;3868;0;0;0;0;29
230
+ $1;1;229000;1;0;399;23693;23239;229;408;0;3867;3867;3867;3869;3869;3868;0;0;0;0;26
231
+ $1;1;230000;1;0;397;23692;23238;230;408;0;3867;3867;3867;3868;3868;3868;0;0;0;0;20
232
+ $1;1;231000;1;0;396;23693;23238;231;408;0;3867;3867;3867;3869;3868;3868;0;0;0;0;21
233
+ $1;1;232000;1;0;401;23692;23244;232;408;0;3867;3868;3867;3870;3869;3869;0;0;0;0;17
234
+ $1;1;233000;1;0;403;23693;23246;233;408;0;3868;3868;3868;3870;3869;3869;0;0;0;0;16
235
+ $1;1;234000;1;0;401;23693;23244;234;408;0;3868;3868;3867;3870;3869;3869;0;0;0;0;31
236
+ $1;1;235000;1;0;397;23692;23241;235;408;0;3867;3868;3867;3869;3869;3869;0;0;0;0;20
237
+ $1;1;236000;1;0;396;23694;23241;236;408;0;3867;3868;3867;3869;3869;3869;0;0;0;0;19
238
+ $1;1;237000;1;0;399;23693;23245;238;408;0;3868;3868;3867;3870;3869;3869;0;0;0;0;23
239
+ $1;1;238000;1;0;401;23692;23247;239;408;0;3868;3868;3868;3870;3870;3869;0;0;0;0;27
240
+ $1;1;239000;1;0;403;23694;23248;240;408;0;3868;3868;3868;3870;3870;3870;0;0;0;0;23
241
+ $1;1;240000;1;0;401;23691;23247;241;408;0;3868;3868;3868;3870;3870;3870;0;0;0;0;16
242
+ $1;1;241000;1;0;401;23691;23247;242;408;0;3868;3868;3868;3870;3870;3870;0;0;0;0;18
243
+ $1;1;242000;1;0;400;23692;23247;243;408;0;3868;3868;3868;3870;3870;3870;0;0;0;0;18
244
+ $1;1;243000;1;0;393;23694;23242;244;408;0;3868;3868;3868;3869;3869;3869;0;0;0;0;18
245
+ $1;1;244000;1;0;399;23693;23249;245;408;0;3869;3868;3868;3870;3870;3870;0;0;0;0;27
246
+ $1;1;245000;1;0;400;23692;23251;246;405;0;3869;3869;3868;3871;3870;3870;0;0;0;0;27
247
+ $1;1;246000;1;0;401;23691;23252;248;405;0;3869;3869;3869;3871;3870;3871;0;0;0;0;23
248
+ $1;1;247000;1;0;403;23691;23253;249;405;0;3869;3869;3869;3871;3871;3871;0;0;0;0;21
249
+ $1;1;248000;1;0;401;23692;23252;250;405;0;3869;3869;3869;3871;3871;3870;0;0;0;0;19
250
+ $1;1;249000;1;0;398;23691;23250;251;405;0;3869;3869;3869;3871;3870;3870;0;0;0;0;20
251
+ $1;1;250000;1;0;397;23693;23250;252;405;0;3869;3869;3868;3871;3870;3870;0;0;0;0;19
252
+ $1;1;251000;1;0;398;23692;23253;253;405;0;3869;3869;3869;3871;3871;3871;0;0;0;0;31
253
+ $1;1;252000;1;0;401;23691;23256;254;405;0;3869;3869;3869;3872;3871;3871;0;0;0;0;25
254
+ $1;1;253000;1;0;403;23691;23258;255;405;0;3870;3870;3869;3872;3871;3871;0;0;0;0;21
255
+ $1;1;254000;1;0;401;23691;23255;256;405;0;3869;3870;3869;3872;3871;3871;0;0;0;0;22
256
+ $1;1;255000;1;0;400;23691;23255;258;405;0;3869;3870;3869;3871;3871;3871;0;0;0;0;27
257
+ $1;1;256000;1;0;400;23692;23255;259;405;0;3870;3870;3869;3871;3871;3871;0;0;0;0;18
258
+ $1;1;257000;1;0;399;23693;23256;260;405;0;3870;3870;3869;3871;3871;3871;0;0;0;0;28
259
+ $1;1;258000;1;0;398;23692;23255;261;405;0;3870;3870;3869;3871;3871;3871;0;0;0;0;17
260
+ $1;1;259000;1;0;398;23693;23256;262;405;0;3870;3870;3869;3871;3872;3871;0;0;0;0;18
261
+ $1;1;260000;1;0;397;23693;23256;263;405;0;3870;3870;3870;3872;3871;3871;0;0;0;0;30
262
+ $1;1;261000;1;0;396;23691;23256;264;405;0;3870;3870;3869;3872;3872;3871;0;0;0;0;16
263
+ $1;1;262000;1;0;399;23691;23259;265;405;0;3870;3870;3870;3872;3872;3871;0;0;0;0;26
264
+ $1;1;263000;1;0;399;23691;23260;266;405;0;3870;3870;3870;3872;3872;3872;0;0;0;0;17
265
+ $1;1;264000;1;0;399;23691;23260;267;405;0;3870;3870;3870;3872;3872;3872;0;0;0;0;23
266
+ $1;1;265000;1;0;399;23691;23261;269;405;0;3870;3870;3870;3872;3872;3872;0;0;0;0;25
267
+ $1;1;266000;1;0;401;23691;23263;270;405;0;3871;3871;3870;3873;3872;3872;0;0;0;0;23
268
+ $1;1;267000;1;0;402;23691;23263;271;405;0;3871;3871;3871;3873;3873;3872;0;0;0;0;20
269
+ $1;1;268000;1;0;402;23692;23264;272;405;0;3871;3871;3871;3873;3873;3872;0;0;0;0;28
270
+ $1;1;269000;1;0;399;23691;23262;273;405;0;3871;3871;3871;3873;3872;3872;0;0;0;0;29
271
+ $1;1;270000;1;0;397;23691;23262;274;405;0;3871;3871;3871;3872;3872;3872;0;0;0;0;29
272
+ $1;1;271000;1;0;397;23691;23263;275;403;0;3871;3871;3871;3873;3872;3872;0;0;0;0;27
273
+ $1;1;272000;1;0;399;23691;23265;276;403;0;3871;3871;3871;3873;3873;3873;0;0;0;0;19
274
+ $1;1;273000;1;0;400;23692;23266;277;403;0;3871;3871;3871;3873;3873;3873;0;0;0;0;20
275
+ $1;1;274000;1;0;400;23692;23267;279;403;0;3871;3871;3871;3873;3873;3873;0;0;0;0;28
276
+ $1;1;275000;1;0;400;23691;23267;280;403;0;3871;3871;3871;3873;3873;3873;0;0;0;0;24
277
+ $1;1;276000;1;0;400;23691;23266;281;403;0;3871;3871;3871;3873;3873;3873;0;0;0;0;27
278
+ $1;1;277000;1;0;400;23691;23267;282;403;0;3871;3872;3871;3873;3873;3873;0;0;0;0;27
279
+ $1;1;278000;1;0;400;23692;23267;283;403;0;3872;3872;3871;3873;3873;3873;0;0;0;0;21
280
+ $1;1;279000;1;0;399;23692;23267;284;403;0;3872;3872;3871;3873;3873;3873;0;0;0;0;20
281
+ $1;1;280000;1;0;399;23692;23267;285;403;0;3872;3872;3871;3873;3873;3873;0;0;0;0;19
282
+ $1;1;281000;1;0;398;23692;23267;286;403;0;3872;3872;3871;3873;3873;3873;0;0;0;0;16
283
+ $1;1;282000;1;0;400;23691;23269;287;403;0;3872;3872;3871;3874;3873;3873;0;0;0;0;30
284
+ $1;1;283000;1;0;401;23691;23270;289;403;0;3872;3873;3871;3874;3873;3873;0;0;0;0;25
285
+ $1;1;284000;1;0;402;23691;23271;290;403;0;3873;3873;3871;3874;3873;3873;0;0;0;0;21
286
+ $1;1;285000;1;0;402;23691;23272;291;403;0;3873;3873;3871;3874;3873;3874;0;0;0;0;17
287
+ $1;1;286000;1;0;401;23693;23270;292;403;0;3873;3873;3871;3874;3874;3873;0;0;0;0;18
288
+ $1;1;287000;1;0;398;23692;23270;293;403;0;3872;3873;3871;3874;3874;3873;0;0;0;0;21
289
+ $1;1;288000;1;0;396;23691;23269;294;403;0;3872;3873;3871;3874;3873;3873;0;0;0;0;31
290
+ $1;1;289000;1;0;397;23691;23269;295;403;0;3873;3873;3871;3874;3873;3873;0;0;0;0;31
291
+ $1;1;290000;1;0;399;23692;23271;296;403;0;3873;3873;3872;3874;3874;3873;0;0;0;0;20
292
+ $1;1;291000;1;0;400;23691;23272;297;403;0;3873;3873;3872;3874;3874;3873;0;0;0;0;19
293
+ $1;1;292000;1;0;400;23689;23273;299;403;0;3873;3873;3872;3874;3873;3873;0;0;0;0;17
294
+ $1;1;293000;1;0;401;23689;23273;300;403;0;3873;3874;3872;3874;3873;3874;0;0;0;0;16
295
+ $1;1;294000;1;0;402;23690;23275;301;403;0;3873;3874;3872;3874;3874;3874;0;0;0;0;28
296
+ $1;1;295000;1;0;402;23691;23275;302;401;0;3874;3874;3872;3874;3874;3874;0;0;0;0;26
297
+ $1;1;296000;1;0;403;23690;23276;303;401;0;3874;3874;3872;3875;3874;3874;0;0;0;0;26
298
+ $1;1;297000;1;0;400;23691;23275;304;401;0;3873;3874;3872;3874;3874;3874;0;0;0;0;27
299
+ $1;1;298000;1;0;398;23691;23274;305;401;0;3873;3874;3872;3875;3874;3874;0;0;0;0;19
300
+ $1;1;299000;1;0;397;23692;23275;306;401;0;3873;3874;3871;3875;3874;3874;0;0;0;0;31
301
+ $1;1;300000;1;0;397;23691;23276;307;401;0;3873;3874;3872;3875;3874;3874;0;0;0;0;28
302
+ $1;1;301000;1;0;398;23691;23277;309;401;0;3874;3874;3872;3875;3874;3874;0;0;0;0;26
303
+ $1;1;302000;1;0;399;23690;23278;310;401;0;3874;3874;3873;3875;3874;3874;0;0;0;0;31
304
+ $1;1;303000;1;0;401;23691;23279;311;401;0;3874;3874;3873;3875;3875;3875;0;0;0;0;25
305
+ $1;1;304000;1;0;401;23689;23279;312;401;0;3874;3875;3873;3875;3875;3875;0;0;0;0;21
306
+ $1;1;305000;1;0;401;23688;23281;313;401;0;3874;3875;3873;3876;3875;3875;0;0;0;0;16
307
+ $1;1;306000;1;0;402;23690;23282;314;401;0;3874;3875;3873;3876;3875;3875;0;0;0;0;29
308
+ $1;1;307000;1;0;402;23690;23282;315;401;0;3874;3875;3873;3876;3875;3875;0;0;0;0;29
309
+ $1;1;308000;1;0;402;23691;23282;316;401;0;3875;3875;3873;3875;3875;3875;0;0;0;0;18
310
+ $1;1;309000;1;0;399;23691;23280;318;401;0;3874;3875;3873;3875;3875;3875;0;0;0;0;27
311
+ $1;1;310000;1;0;397;23691;23280;319;401;0;3874;3875;3873;3875;3875;3875;0;0;0;0;28
312
+ $1;1;311000;1;0;395;23690;23279;320;401;0;3874;3875;3873;3875;3875;3875;0;0;0;0;18
313
+ $1;1;312000;1;0;399;23689;23283;321;401;0;3875;3875;3873;3876;3875;3875;0;0;0;0;19
314
+ $1;1;313000;1;0;401;23688;23285;322;401;0;3875;3875;3873;3876;3876;3875;0;0;0;0;19
315
+ $1;1;314000;1;0;402;23690;23286;323;401;0;3875;3876;3874;3876;3876;3875;0;0;0;0;24
316
+ $1;1;315000;1;0;402;23689;23286;324;401;0;3875;3876;3874;3876;3876;3875;0;0;0;0;22
317
+ $1;1;316000;1;0;392;23691;23279;325;401;0;3874;3875;3873;3875;3875;3874;0;0;0;0;23
318
+ $1;1;317000;1;0;396;23690;23282;326;401;0;3875;3875;3873;3876;3875;3875;0;0;0;0;23
319
+ $1;1;318000;1;0;401;23689;23287;327;401;0;3875;3876;3874;3876;3876;3876;0;0;0;0;25
320
+ $1;1;319000;1;0;404;23690;23289;329;401;0;3876;3876;3874;3876;3876;3876;0;0;0;0;22
321
+ $1;1;320000;1;0;400;23690;23287;330;401;0;3875;3876;3874;3876;3876;3876;0;0;0;0;29
322
+ $1;1;321000;1;0;399;23691;23286;331;401;0;3875;3876;3874;3876;3876;3876;0;0;0;0;26
323
+ $1;1;322000;1;0;398;23691;23285;332;401;0;3875;3876;3873;3876;3876;3876;0;0;0;0;31
324
+ $1;1;323000;1;0;396;23691;23285;333;401;0;3875;3876;3873;3876;3876;3876;0;0;0;0;17
325
+ $1;1;324000;1;0;398;23689;23288;334;401;0;3876;3876;3874;3876;3876;3876;0;0;0;0;31
326
+ $1;1;325000;1;0;403;23691;23291;335;401;0;3876;3876;3874;3877;3876;3877;0;0;0;0;27
327
+ $1;1;326000;1;0;403;23689;23291;336;401;0;3876;3876;3875;3877;3876;3877;0;0;0;0;19
328
+ $1;1;327000;1;0;402;23689;23291;338;401;0;3876;3876;3875;3877;3877;3877;0;0;0;0;28
329
+ $1;1;328000;1;0;399;23688;23289;339;401;0;3876;3876;3874;3877;3876;3876;0;0;0;0;30
330
+ $1;1;329000;1;0;398;23689;23288;340;401;0;3876;3876;3874;3877;3877;3876;0;0;0;0;17
331
+ $1;1;330000;1;0;397;23690;23289;341;401;0;3876;3876;3875;3877;3877;3876;0;0;0;0;31
332
+ $1;1;331000;1;0;397;23691;23290;342;401;0;3876;3876;3875;3877;3877;3876;0;0;0;0;20
333
+ $1;1;332000;1;0;400;23689;23294;343;401;0;3876;3877;3875;3878;3877;3877;0;0;0;0;29
334
+ $1;1;333000;1;0;402;23687;23296;344;401;0;3877;3877;3876;3878;3877;3877;0;0;0;0;23
335
+ $1;1;334000;1;0;403;23688;23297;345;401;0;3877;3877;3876;3878;3877;3877;0;0;0;0;30
336
+ $1;1;335000;1;0;401;23691;23295;346;401;0;3877;3877;3875;3878;3877;3877;0;0;0;0;23
337
+ $1;1;336000;1;0;398;23690;23292;347;401;0;3876;3877;3875;3877;3877;3877;0;0;0;0;26
338
+ $1;1;337000;1;0;395;23689;23291;349;401;0;3876;3877;3875;3877;3877;3877;0;0;0;0;19
339
+ $1;1;338000;1;0;399;23689;23295;350;401;0;3877;3877;3875;3877;3877;3877;0;0;0;0;29
340
+ $1;1;339000;1;0;401;23688;23298;351;398;0;3877;3877;3876;3878;3878;3878;0;0;0;0;28
341
+ $1;1;340000;1;0;398;23688;23295;352;401;0;3877;3877;3875;3877;3877;3877;0;0;0;0;16
342
+ $1;1;341000;1;0;391;23690;23288;353;401;0;3876;3877;3875;3876;3876;3877;0;0;0;0;29
343
+ $1;1;342000;1;0;394;23691;23292;354;401;0;3877;3877;3875;3876;3876;3877;0;0;0;0;23
344
+ $1;1;343000;1;0;397;23688;23297;355;401;0;3877;3878;3876;3878;3877;3877;0;0;0;0;26
345
+ $1;1;344000;1;0;399;23688;23298;356;401;0;3877;3878;3876;3878;3877;3878;0;0;0;0;16
346
+ $1;1;345000;1;0;401;23688;23299;357;401;0;3878;3878;3876;3878;3878;3878;0;0;0;0;23
347
+ $1;1;346000;1;0;400;23690;23298;359;401;0;3878;3878;3876;3877;3878;3878;0;0;0;0;28
348
+ $1;1;347000;1;0;398;23689;23296;360;401;0;3877;3878;3876;3878;3877;3878;0;0;0;0;24
349
+ $1;1;348000;1;0;397;23689;23296;361;401;0;3878;3877;3876;3877;3878;3878;0;0;0;0;25
350
+ $1;1;349000;1;0;396;23688;23296;362;401;0;3878;3877;3876;3877;3877;3878;0;0;0;0;20
351
+ $1;1;350000;1;0;395;23689;23296;363;401;0;3878;3877;3876;3878;3877;3878;0;0;0;0;16
352
+ $1;1;351000;1;0;395;23689;23297;364;401;0;3878;3877;3876;3877;3878;3878;0;0;0;0;23
353
+ $1;1;352000;1;0;395;23689;23296;365;401;0;3878;3877;3876;3878;3878;3877;0;0;0;0;20
354
+ $1;1;353000;1;0;395;23689;23297;366;401;0;3878;3878;3876;3877;3878;3877;0;0;0;0;23
355
+ $1;1;354000;1;0;393;23689;23295;367;401;0;3877;3877;3876;3877;3877;3877;0;0;0;0;26
356
+ $1;1;355000;1;0;386;23689;23289;368;401;0;3877;3876;3876;3876;3876;3877;0;0;0;0;28
357
+ $1;1;356000;1;0;388;23689;23292;369;398;0;3877;3876;3876;3877;3876;3877;0;0;0;0;28
358
+ $1;1;357000;1;0;397;23688;23299;370;398;0;3878;3877;3877;3878;3878;3878;0;0;0;0;16
359
+ $1;1;358000;1;0;398;23688;23298;372;398;0;3878;3877;3877;3877;3878;3878;0;0;0;0;28
360
+ $1;1;359000;1;0;396;23687;23296;373;398;0;3877;3877;3877;3878;3877;3877;0;0;0;0;19
361
+ $1;1;360000;1;0;395;23688;23296;374;398;0;3877;3877;3877;3878;3877;3877;0;0;0;0;18
362
+ $1;1;361000;1;0;395;23689;23296;375;398;0;3877;3877;3877;3877;3877;3877;0;0;0;0;28
363
+ $1;1;362000;1;0;393;23689;23297;376;398;0;3877;3878;3877;3878;3878;3877;0;0;0;0;20
364
+ $1;1;363000;1;0;391;23689;23294;377;398;0;3877;3877;3877;3877;3877;3877;0;0;0;0;26
365
+ $1;1;364000;1;0;387;23689;23290;378;398;0;3876;3877;3877;3877;3877;3876;0;0;0;0;17
366
+ $1;1;365000;1;0;394;23689;23298;379;398;0;3877;3877;3878;3878;3877;3877;0;0;0;0;27
367
+ $1;1;366000;1;0;401;23688;23303;380;398;0;3878;3878;3878;3879;3878;3878;0;0;0;0;22
368
+ $1;1;367000;1;0;398;23688;23299;382;398;0;3878;3878;3878;3878;3878;3877;0;0;0;0;30
369
+ $1;1;368000;1;0;396;23689;23297;383;398;0;3878;3877;3877;3878;3877;3878;0;0;0;0;17
370
+ $1;1;369000;1;0;396;23688;23296;384;398;0;3878;3877;3877;3877;3877;3877;0;0;0;0;23
371
+ $1;1;370000;1;0;397;23688;23295;385;398;0;3877;3877;3877;3877;3878;3877;0;0;0;0;28
372
+ $1;1;371000;1;0;397;23688;23297;386;398;0;3877;3877;3877;3877;3877;3877;0;0;0;0;19
373
+ $1;1;372000;1;0;405;23687;23302;387;398;0;3878;3878;3878;3878;3878;3878;0;0;0;0;31
374
+ $1;1;373000;1;0;403;23687;23298;388;398;0;3878;3878;3877;3877;3878;3877;0;0;0;0;26
375
+ $1;1;374000;1;0;400;23686;23296;389;398;0;3878;3877;3877;3878;3877;3877;0;0;0;0;31
376
+ $1;1;375000;1;0;398;23689;23296;390;398;0;3878;3877;3876;3878;3877;3877;0;0;0;0;30
377
+ $1;1;376000;1;0;398;23690;23296;392;398;0;3878;3878;3876;3877;3877;3877;0;0;0;0;23
378
+ $1;1;377000;1;0;395;23686;23295;393;398;0;3878;3877;3876;3878;3877;3877;0;0;0;0;30
379
+ $1;1;378000;1;0;394;23687;23296;394;398;0;3878;3877;3876;3877;3877;3878;0;0;0;0;21
380
+ $1;1;379000;1;0;394;23688;23297;395;398;0;3878;3877;3876;3878;3877;3878;0;0;0;0;20
381
+ $1;1;380000;1;0;394;23688;23296;396;398;0;3878;3878;3876;3877;3878;3877;0;0;0;0;16
382
+ $1;1;381000;1;0;395;23688;23296;397;398;0;3878;3878;3876;3877;3878;3877;0;0;0;0;17
383
+ $1;1;382000;1;0;395;23687;23296;398;398;0;3877;3877;3876;3877;3878;3877;0;0;0;0;18
384
+ $1;1;383000;1;0;394;23687;23295;399;398;0;3877;3877;3877;3878;3878;3877;0;0;0;0;30
385
+ $1;1;384000;1;0;394;23687;23295;400;398;0;3877;3877;3877;3878;3878;3877;0;0;0;0;30
386
+ $1;1;385000;1;0;394;23687;23295;401;398;0;3877;3877;3877;3877;3878;3877;0;0;0;0;17
387
+ $1;1;386000;1;0;394;23687;23295;402;398;0;3877;3877;3877;3877;3878;3878;0;0;0;0;30
388
+ $1;1;387000;1;0;395;23688;23296;403;398;0;3877;3877;3877;3877;3877;3878;0;0;0;0;28
389
+ $1;1;388000;1;0;395;23688;23296;405;398;0;3877;3877;3877;3878;3877;3877;0;0;0;0;21
390
+ $1;1;389000;1;0;394;23688;23296;406;398;0;3877;3877;3877;3878;3877;3877;0;0;0;0;22
391
+ $1;1;390000;1;0;395;23688;23296;407;401;0;3878;3877;3877;3877;3877;3877;0;0;0;0;25
392
+ $1;1;391000;1;0;394;23688;23296;408;398;0;3878;3877;3877;3878;3877;3877;0;0;0;0;30
393
+ $1;1;392000;1;0;394;23687;23296;409;398;0;3878;3877;3877;3878;3877;3877;0;0;0;0;19
394
+ $1;1;393000;1;0;394;23689;23298;410;398;0;3878;3877;3877;3878;3877;3878;0;0;0;0;21
395
+ $1;1;394000;1;0;394;23689;23297;411;401;0;3878;3877;3877;3877;3877;3878;0;0;0;0;20
396
+ $1;1;395000;1;0;393;23687;23296;412;398;0;3878;3877;3877;3877;3877;3878;0;0;0;0;25
397
+ $1;1;396000;1;0;394;23687;23295;413;401;0;3877;3877;3877;3877;3877;3877;0;0;0;0;24
398
+ $1;1;397000;1;0;394;23687;23292;414;401;0;3877;3877;3877;3877;3877;3877;0;0;0;0;25
399
+ $1;1;398000;1;0;386;23689;23283;415;401;0;3876;3876;3875;3876;3876;3876;0;0;0;0;25
400
+ $1;1;399000;1;0;377;23692;23276;416;401;0;3874;3875;3875;3875;3875;3875;0;0;0;0;23
401
+ $1;1;400000;1;0;365;23693;23268;417;401;0;3873;3873;3873;3874;3874;3874;0;0;0;0;26
402
+ $1;1;401000;1;0;361;23692;23269;418;401;0;3874;3873;3873;3874;3874;3874;0;0;0;0;23
403
+ $1;1;402000;1;0;375;23690;23282;419;401;0;3875;3875;3875;3875;3875;3875;0;0;0;0;23
404
+ $1;1;403000;1;0;380;23690;23283;420;401;0;3875;3875;3875;3876;3875;3875;0;0;0;0;20
405
+ $1;1;404000;1;0;383;23691;23284;422;401;0;3876;3875;3875;3876;3876;3875;0;0;0;0;20
406
+ $1;1;405000;1;0;382;23691;23281;423;401;0;3875;3875;3876;3875;3875;3875;0;0;0;0;16
407
+ $1;1;406000;1;0;379;23691;23279;424;401;0;3875;3875;3875;3875;3875;3875;0;0;0;0;20
408
+ $1;1;407000;1;0;377;23694;23280;425;401;0;3875;3875;3875;3875;3875;3875;0;0;0;0;25
409
+ $1;1;408000;1;0;370;23695;23272;426;401;0;3874;3874;3874;3874;3874;3874;0;0;0;0;30
410
+ $1;1;409000;1;0;364;23697;23269;427;401;0;3873;3874;3873;3874;3874;3873;0;0;0;0;20
411
+ $1;1;410000;1;0;375;23698;23279;428;401;0;3875;3875;3874;3875;3875;3875;0;0;0;0;27
412
+ $1;1;411000;1;0;385;23698;23285;429;401;0;3876;3876;3875;3876;3876;3876;0;0;0;0;21
413
+ $1;1;412000;1;0;388;23697;23283;430;401;0;3875;3876;3875;3876;3876;3875;0;0;0;0;26
414
+ $1;1;413000;1;0;382;23695;23278;431;401;0;3875;3875;3875;3875;3875;3875;0;0;0;0;21
415
+ $1;1;414000;1;0;376;23693;23276;432;401;0;3875;3874;3874;3875;3875;3875;0;0;0;0;18
416
+ $1;1;415000;1;0;383;23700;23280;433;401;0;3875;3875;3874;3876;3876;3875;0;0;0;0;27
417
+ $1;1;416000;1;0;385;23703;23282;434;401;0;3875;3875;3875;3876;3876;3876;0;0;0;0;26
418
+ $1;1;417000;1;0;377;23702;23275;435;401;0;3874;3874;3874;3875;3875;3874;0;0;0;0;29
419
+ $1;1;418000;1;0;365;23699;23270;436;401;0;3874;3873;3874;3874;3874;3874;0;0;0;0;19
420
+ $1;1;419000;1;0;361;23695;23272;437;401;0;3874;3874;3874;3875;3874;3874;0;0;0;0;31
421
+ $1;1;420000;1;0;363;23692;23274;438;401;0;3875;3874;3874;3874;3874;3874;0;0;0;0;25
422
+ $1;1;421000;1;0;367;23699;23277;439;401;0;3875;3874;3875;3875;3875;3874;0;0;0;0;20
423
+ $1;1;422000;1;0;371;23702;23279;440;401;0;3875;3875;3875;3875;3875;3875;0;0;0;0;19
424
+ $1;1;423000;1;0;370;23702;23278;441;403;0;3875;3875;3875;3875;3875;3875;0;0;0;0;17
425
+ $1;1;424000;1;0;362;23699;23269;442;403;0;3873;3874;3874;3874;3874;3874;0;0;0;0;18
426
+ $1;1;425000;1;0;348;23696;23260;443;403;0;3872;3873;3873;3873;3873;3872;0;0;0;0;27
427
+ $1;1;426000;1;0;351;23695;23268;444;403;0;3873;3873;3874;3874;3874;3873;0;0;0;0;27
428
+ $1;1;427000;1;0;361;23695;23274;445;403;0;3874;3874;3875;3875;3875;3874;0;0;0;0;19
429
+ $1;1;428000;1;0;351;23696;23264;446;403;0;3873;3873;3874;3873;3873;3873;0;0;0;0;24
430
+ $1;1;429000;1;0;350;23699;23266;447;403;0;3873;3873;3874;3873;3873;3873;0;0;0;0;20
431
+ $1;1;430000;1;0;368;23699;23280;448;403;0;3875;3875;3875;3875;3875;3875;0;0;0;0;23
432
+ $1;1;431000;1;0;374;23701;23281;449;403;0;3875;3875;3875;3876;3876;3875;0;0;0;0;27
433
+ $1;1;432000;1;0;376;23700;23280;450;403;0;3875;3875;3875;3875;3876;3875;0;0;0;0;17
434
+ $1;1;433000;1;0;372;23696;23275;451;403;0;3875;3874;3874;3875;3875;3875;0;0;0;0;18
435
+ $1;1;434000;1;0;367;23696;23274;452;403;0;3875;3874;3874;3875;3875;3875;0;0;0;0;19
436
+ $1;1;435000;1;0;368;23698;23276;453;403;0;3875;3874;3874;3875;3875;3875;0;0;0;0;16
437
+ $1;1;436000;1;0;368;23699;23276;454;403;0;3875;3875;3875;3875;3875;3875;0;0;0;0;21
438
+ $1;1;437000;1;0;368;23699;23276;455;403;0;3874;3875;3875;3875;3875;3875;0;0;0;0;20
439
+ $1;1;438000;1;0;359;23700;23270;456;403;0;3874;3874;3874;3874;3874;3874;0;0;0;0;28
440
+ $1;1;439000;1;0;348;23701;23264;457;403;0;3873;3873;3873;3873;3874;3873;0;0;0;0;31
441
+ $1;1;440000;1;0;345;23702;23266;458;403;0;3873;3873;3873;3874;3874;3873;0;0;0;0;21
442
+ $1;1;441000;1;0;353;23703;23270;459;403;0;3874;3874;3874;3874;3874;3874;0;0;0;0;20
443
+ $1;1;442000;1;0;352;23705;23267;460;403;0;3874;3874;3873;3873;3874;3873;0;0;0;0;27
444
+ $1;1;443000;1;0;350;23703;23269;461;403;0;3874;3874;3873;3874;3874;3874;0;0;0;0;17
445
+ $1;1;444000;1;0;362;23697;23279;462;403;0;3875;3875;3874;3875;3875;3875;0;0;0;0;31
446
+ $1;1;445000;1;0;363;23697;23276;463;403;0;3875;3874;3875;3875;3875;3875;0;0;0;0;17
447
+ $1;1;446000;1;0;358;23698;23268;464;403;0;3873;3873;3873;3873;3874;3874;0;0;0;0;28