diff --git a/src/network/f5/bigip/snmp/mode/cpuusage.pm b/src/network/f5/bigip/snmp/mode/cpuusage.pm new file mode 100644 index 000000000..39c098cbd --- /dev/null +++ b/src/network/f5/bigip/snmp/mode/cpuusage.pm @@ -0,0 +1,290 @@ +# +# Copyright 2025 Centreon (http://www.centreon.com/) +# +# Centreon is a full-fledged industry-strength solution that meets +# the needs in IT infrastructure and application monitoring for +# service performance. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +package network::f5::bigip::snmp::mode::cpuusage; + +use base qw(centreon::plugins::templates::counter); + +use strict; +use warnings; +use Digest::MD5 qw(md5_hex); + +sub custom_usage_perfdata { + my ($self, %options) = @_; +} + +sub set_counters { + my ($self, %options) = @_; + + $self->{maps_counters_type} = [ + { name => 'cpu', type => 1, cb_prefix_output => 'prefix_cpu_output', message_multiple => 'All CPU are ok', skipped_code => { -10 => 1 } }, + ]; + + $self->{maps_counters}->{cpu} = [ + { label => 'usage-5s', set => { + key_values => [ { name => 'sysMultiHostCpuUsageRatio5s' }, { name => 'display' } ], + output_template => 'CPU Usage 5sec : %s %%', output_error_template => "CPU Usage 5sec : %s", + perfdatas => [ + { label => 'usage_5s', value => 'sysMultiHostCpuUsageRatio5s', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'usage-1m', set => { + key_values => [ { name => 'sysMultiHostCpuUsageRatio1m' }, { name => 'display' } ], + output_template => 'CPU Usage 1min : %s %%', output_error_template => "CPU Usage 1min : %s", + perfdatas => [ + { label => 'usage_1m', value => 'sysMultiHostCpuUsageRatio1m', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'usage-5m', set => { + key_values => [ { name => 'sysMultiHostCpuUsageRatio5m' }, { name => 'display' } ], + output_template => 'CPU Usage 5min : %s %%', output_error_template => "CPU Usage 5min : %s", + perfdatas => [ + { label => 'usage_5m', value => 'sysMultiHostCpuUsageRatio5m', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'user-5s', set => { + key_values => [ { name => 'sysMultiHostCpuUser5s' }, { name => 'display' } ], + output_template => 'CPU User 5sec : %s %%', output_error_template => "CPU User 5sec : %s", + perfdatas => [ + { label => 'user_5s', value => 'sysMultiHostCpuUser5s', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'user-1m', set => { + key_values => [ { name => 'sysMultiHostCpuUser1m' }, { name => 'display' } ], + output_template => 'CPU User 1min : %s %%', output_error_template => "CPU User 1min : %s", + perfdatas => [ + { label => 'user_1m', value => 'sysMultiHostCpuUser1m', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'user-5m', set => { + key_values => [ { name => 'sysMultiHostCpuUser5m' }, { name => 'display' } ], + output_template => 'CPU User 5min : %s %%', output_error_template => "CPU User 5min : %s", + perfdatas => [ + { label => 'user_5m', value => 'sysMultiHostCpuUser5m', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'iowait-5s', set => { + key_values => [ { name => 'sysMultiHostCpuIowait5s' }, { name => 'display' } ], + output_template => 'CPU IO Wait 5sec : %s %%', output_error_template => "CPU IO Wait 5sec : %s", + perfdatas => [ + { label => 'iowait_5s', value => 'sysMultiHostCpuIowait5s', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'iowait-1m', set => { + key_values => [ { name => 'sysMultiHostCpuIowait1m' }, { name => 'display' } ], + output_template => 'CPU IO Wait 1min : %s %%', output_error_template => "CPU IO Wait 1min : %s", + perfdatas => [ + { label => 'iowait_1m', value => 'sysMultiHostCpuIowait1m', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'iowait-5m', set => { + key_values => [ { name => 'sysMultiHostCpuIowait5m' }, { name => 'display' } ], + output_template => 'CPU IO Wait 5min : %s %%', output_error_template => "CPU IO Wait 5min : %s", + perfdatas => [ + { label => 'iowait_5m', value => 'sysMultiHostCpuIowait5m', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'system-5s', set => { + key_values => [ { name => 'sysMultiHostCpuSystem5s' }, { name => 'display' } ], + output_template => 'CPU System 5sec : %s %%', output_error_template => "CPU System 5sec : %s", + perfdatas => [ + { label => 'system_5s', value => 'sysMultiHostCpuSystem5s', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'system-1m', set => { + key_values => [ { name => 'sysMultiHostCpuSystem1m' }, { name => 'display' } ], + output_template => 'CPU System 1min : %s %%', output_error_template => "CPU System 1min : %s", + perfdatas => [ + { label => 'system_1m', value => 'sysMultiHostCpuSystem1m', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'system-5m', set => { + key_values => [ { name => 'sysMultiHostCpuSystem5m' }, { name => 'display' } ], + output_template => 'CPU System 5min : %s %%', output_error_template => "CPU System 5min : %s", + perfdatas => [ + { label => 'system_5m', value => 'sysMultiHostCpuSystem5m', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'idle-5s', set => { + key_values => [ { name => 'sysMultiHostCpuIdle5s' }, { name => 'display' } ], + output_template => 'CPU Idle 5sec : %s %%', output_error_template => "CPU Idle 5sec : %s", + perfdatas => [ + { label => 'idle_5s', value => 'sysMultiHostCpuIdle5s', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'idle-1m', set => { + key_values => [ { name => 'sysMultiHostCpuIdle1m' }, { name => 'display' } ], + output_template => 'CPU Idle 1min : %s %%', output_error_template => "CPU Idle 1min : %s", + perfdatas => [ + { label => 'idle_1m', value => 'sysMultiHostCpuIdle1m', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + { label => 'idle-5m', set => { + key_values => [ { name => 'sysMultiHostCpuIdle5m' }, { name => 'display' } ], + output_template => 'CPU Idle 5min : %s %%', output_error_template => "CPU Idle 5min : %s", + perfdatas => [ + { label => 'idle_5m', value => 'sysMultiHostCpuIdle5m', template => '%s', + unit => '%', min => 0, max => 100, label_extra_instance => 1, instance_use => 'display' }, + ], + } + }, + ]; +} + +sub prefix_cpu_output { + my ($self, %options) = @_; + + return "CPU '" . $options{instance_value}->{display} . "' "; +} + +sub new { + my ($class, %options) = @_; + my $self = $class->SUPER::new(package => __PACKAGE__, %options, statefile => 1); + bless $self, $class; + + $options{options}->add_options(arguments => { + 'filter-name:s' => { name => 'filter_name' }, + }); + + return $self; +} + +my $mapping = { + sysMultiHostCpuId => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.3' }, + sysMultiHostCpuUsageRatio5s => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.19' }, + sysMultiHostCpuUsageRatio1m => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.27' }, + sysMultiHostCpuUsageRatio5m => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.35' }, + sysMultiHostCpuUser5s => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.12' }, + sysMultiHostCpuUser1m => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.20' }, + sysMultiHostCpuUser5m => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.28' }, + sysMultiHostCpuIowait5s => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.18' }, + sysMultiHostCpuIowait1m => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.26' }, + sysMultiHostCpuIowait5m => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.34' }, + sysMultiHostCpuSystem5s => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.14' }, + sysMultiHostCpuSystem1m => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.22' }, + sysMultiHostCpuSystem5m => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.30' }, + sysMultiHostCpuIdle5s => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.15' }, + sysMultiHostCpuIdle1m => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.23' }, + sysMultiHostCpuIdle5m => { oid => '.1.3.6.1.4.1.3375.2.1.7.5.2.1.31' }, +}; +my $oid_sysMultiHostCpuEntry = '.1.3.6.1.4.1.3375.2.1.7.5.2.1'; + +sub manage_selection { + my ($self, %options) = @_; + + if ($options{snmp}->is_snmpv1()) { + $self->{output}->add_option_msg(short_msg => "Need to use SNMP v2c or v3."); + $self->{output}->option_exit(); + } + + my $results = $options{snmp}->get_table( + oid => $oid_sysMultiHostCpuEntry, + nothing_quit => 1 + ); + + $self->{cpu} = {}; + foreach my $oid (keys %$results) { + next if ($oid !~ /^$mapping->{sysMultiHostCpuId}->{oid}\.(.*)$/); + my $instance = $1; + my $result = $options{snmp}->map_instance(mapping => $mapping, results => $results, instance => $instance); + + if (defined($self->{option_results}->{filter_name}) && $self->{option_results}->{filter_name} ne '' && + $result->{sysMultiHostCpuId} !~ /$self->{option_results}->{filter_name}/) { + $self->{output}->output_add(long_msg => "skipping '" . $result->{sysMultiHostCpuId} . "': no matching filter name.", debug => 1); + next; + } + + $self->{cpu}->{$result->{sysMultiHostCpuId}} = { + display => $result->{sysMultiHostCpuId}, + %$result + }; + } + + if (scalar(keys %{$self->{cpu}}) <= 0) { + $self->{output}->add_option_msg(short_msg => "No CPU found."); + $self->{output}->option_exit(); + } + + $self->{cache_name} = "f5_bipgip_" . $options{snmp}->get_hostname() . '_' . $options{snmp}->get_port() . '_' . $self->{mode} . '_' . + (defined($self->{option_results}->{filter_name}) ? md5_hex($self->{option_results}->{filter_name}) : md5_hex('all')) . '_' . + (defined($self->{option_results}->{filter_counters}) ? md5_hex($self->{option_results}->{filter_counters}) : md5_hex('all')); +} + +1; + +__END__ + +=head1 MODE + +Check CPU usages. + +=over 8 + +=item B<--filter-counters> + +Only display some counters (regexp can be used). +Example : --filter-counters='^usage$' + +=item B<--filter-name> + +Filter by CPU id (regexp can be used). +Example : --filter-name='2' + +=item B<--warning-*> + +Warning threshold. +Can be: 'usage-1m', 'usage-5m', 'iowait-5s'. + +=item B<--critical-*> + +Critical threshold. +Can be: 'usage-1m', 'usage-5m', 'iowait-5s'. + +=back + +=cut diff --git a/src/network/f5/bigip/snmp/plugin.pm b/src/network/f5/bigip/snmp/plugin.pm index 29ed15ec8..5e5e9e475 100644 --- a/src/network/f5/bigip/snmp/plugin.pm +++ b/src/network/f5/bigip/snmp/plugin.pm @@ -1,5 +1,5 @@ # -# Copyright 2024 Centreon (http://www.centreon.com/) +# Copyright 2025 Centreon (http://www.centreon.com/) # # Centreon is a full-fledged industry-strength solution that meets # the needs in IT infrastructure and application monitoring for @@ -42,6 +42,7 @@ sub new { 'node-status' => 'network::f5::bigip::snmp::mode::nodestatus', 'pool-status' => 'network::f5::bigip::snmp::mode::poolstatus', 'tmm-usage' => 'network::f5::bigip::snmp::mode::tmmusage', + 'cpu-usage' => 'network::f5::bigip::snmp::mode::cpuusage', 'trunks' => 'network::f5::bigip::snmp::mode::trunks', 'virtualserver-status' => 'network::f5::bigip::snmp::mode::virtualserverstatus' }; diff --git a/tests/network/f5/bigip/snmp/cpu.snmpwalk b/tests/network/f5/bigip/snmp/cpu.snmpwalk new file mode 100644 index 000000000..4b3c796aa --- /dev/null +++ b/tests/network/f5/bigip/snmp/cpu.snmpwalk @@ -0,0 +1,2240 @@ +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.1.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.1 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.2 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.3 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.4 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.5 = 5 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.6 = 6 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.7 = 7 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.8 = 8 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.9 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.10 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.11 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.12 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.13 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.14 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.15 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.16 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.17 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.18 = 18 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.19 = 19 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.20 = 20 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.21 = 21 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.22 = 22 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.23 = 23 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.24 = 24 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.25 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.26 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.27 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.28 = 28 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.29 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.30 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.31 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.32 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.33 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.34 = 34 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.35 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.36 = 36 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.37 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.38 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.39 = 39 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.40 = 40 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.41 = 41 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.42 = 42 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.43 = 43 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.44 = 44 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.45 = 45 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.46 = 46 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.47 = 47 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.48 = 48 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.49 = 49 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.50 = 50 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.51 = 51 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.52 = 52 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.53 = 53 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.54 = 54 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.55 = 55 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.2.1.48.56 = 56 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.2 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.3 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.4 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.5 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.6 = 5 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.7 = 6 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.8 = 7 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.9 = 8 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.10 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.11 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.12 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.13 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.14 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.15 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.16 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.17 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.18 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.19 = 18 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.20 = 19 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.21 = 20 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.22 = 21 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.23 = 22 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.24 = 23 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.25 = 24 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.26 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.27 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.28 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.29 = 28 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.30 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.31 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.32 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.33 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.34 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.35 = 34 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.36 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.37 = 36 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.38 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.39 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.40 = 39 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.41 = 40 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.42 = 41 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.43 = 42 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.44 = 43 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.45 = 44 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.46 = 45 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.47 = 46 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.48 = 47 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.49 = 48 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.50 = 49 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.51 = 50 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.52 = 51 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.53 = 52 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.54 = 53 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.55 = 54 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.3.1.48.56 = 55 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.1 = 211670011 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.2 = 75404966 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.3 = 205801278 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.4 = 76904406 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.5 = 203495430 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.6 = 77957011 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.7 = 202448724 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.8 = 76909323 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.9 = 198485821 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.10 = 76010132 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.11 = 198780785 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.12 = 74635437 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.13 = 198343037 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.14 = 74941652 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.15 = 204769241 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.16 = 74522690 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.17 = 207724724 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.18 = 74610428 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.19 = 204815125 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.20 = 74262602 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.21 = 206063805 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.22 = 74692987 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.23 = 205460488 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.24 = 74421661 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.25 = 202289872 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.26 = 74418258 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.27 = 202225103 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.28 = 75840363 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.29 = 184577624 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.30 = 55999173 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.31 = 179654920 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.32 = 54718304 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.33 = 175613371 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.34 = 54352935 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.35 = 174632668 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.36 = 54331311 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.37 = 169521899 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.38 = 53570670 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.39 = 167101678 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.40 = 53165543 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.41 = 167933064 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.42 = 52802358 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.43 = 173786862 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.44 = 52835897 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.45 = 173216807 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.46 = 51723205 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.47 = 172306394 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.48 = 52728583 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.49 = 170176871 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.50 = 52144027 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.51 = 171875689 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.52 = 52652659 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.53 = 172969605 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.54 = 52656557 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.55 = 162447782 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.4.1.48.56 = 173316142 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.2 = 7774682 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.4 = 13354523 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.6 = 11750987 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.8 = 10960705 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.10 = 9781283 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.12 = 9270233 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.14 = 8775482 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.16 = 8627185 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.18 = 8173583 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.20 = 7803205 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.22 = 7725362 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.24 = 7679436 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.26 = 7508826 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.28 = 10797691 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.30 = 34332351 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.32 = 35278190 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.34 = 34453830 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.36 = 35774113 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.38 = 35683141 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.40 = 35917425 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.42 = 35527681 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.44 = 35631238 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.46 = 34538325 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.48 = 35453625 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.50 = 35024434 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.52 = 35226646 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.54 = 35268071 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.5.1.48.56 = 11115734 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.1 = 23270957 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.2 = 12514137 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.3 = 22894096 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.4 = 12762135 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.5 = 22785208 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.6 = 12718879 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.7 = 22617314 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.8 = 12658184 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.9 = 22208292 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.10 = 12302829 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.11 = 22077645 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.12 = 12273230 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.13 = 21881610 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.14 = 12073897 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.15 = 22520525 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.16 = 12103343 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.17 = 22560789 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.18 = 12044119 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.19 = 22717419 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.20 = 11960132 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.21 = 22639099 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.22 = 12286412 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.23 = 22585670 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.24 = 12290940 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.25 = 22217197 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.26 = 12182804 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.27 = 22380285 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.28 = 12438528 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.29 = 20377963 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.30 = 8065500 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.31 = 19508037 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.32 = 8610380 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.33 = 19501827 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.34 = 8496499 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.35 = 19264322 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.36 = 8434051 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.37 = 18776185 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.38 = 8222088 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.39 = 18532243 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.40 = 8207752 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.41 = 18560074 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.42 = 8077345 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.43 = 19250730 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.44 = 8087330 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.45 = 19219727 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.46 = 7979151 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.47 = 19202128 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.48 = 8107173 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.49 = 19047789 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.50 = 7944591 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.51 = 18980571 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.52 = 8066466 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.53 = 18746663 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.54 = 7959774 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.55 = 18139105 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.6.1.48.56 = 15154621 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.1 = 410504933 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.2 = 564190351 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.3 = 418723971 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.4 = 558581386 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.5 = 421315535 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.6 = 559225218 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.7 = 422675913 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.8 = 561330859 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.9 = 427064909 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.10 = 563792475 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.11 = 426764319 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.12 = 565481529 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.13 = 427562061 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.14 = 565609241 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.15 = 420659575 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.16 = 566151389 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.17 = 421523462 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.18 = 566755960 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.19 = 421099359 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.20 = 567294297 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.21 = 422883599 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.22 = 566883827 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.23 = 423526006 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.24 = 567407631 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.25 = 424661019 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.26 = 567351868 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.27 = 426539891 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.28 = 558466381 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.29 = 446037896 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.30 = 564057018 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.31 = 451896014 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.32 = 564219813 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.33 = 453826557 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.34 = 565194939 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.35 = 456717377 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.36 = 564258622 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.37 = 458373142 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.38 = 565016983 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.39 = 460890690 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.40 = 565465454 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.41 = 459851182 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.42 = 566046585 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.43 = 453611210 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.44 = 566084196 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.45 = 454253576 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.46 = 567862097 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.47 = 455388648 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.48 = 566335945 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.49 = 457254296 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.50 = 567096869 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.51 = 457743032 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.52 = 566638079 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.53 = 459218446 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.54 = 566607635 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.55 = 463716983 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.7.1.48.56 = 462756724 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.8.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.1 = 242951 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.2 = 467432 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.3 = 58621 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.4 = 367945 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.5 = 50988 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.6 = 487812 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.7 = 48412 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.8 = 532702 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.9 = 56525 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.10 = 411325 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.11 = 56554 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.12 = 648700 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.13 = 57143 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.14 = 452329 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.15 = 79106 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.16 = 499304 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.17 = 73206 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.18 = 449286 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.19 = 82641 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.20 = 618607 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.21 = 74385 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.22 = 505841 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.23 = 86511 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.24 = 510058 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.25 = 82687 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.26 = 590938 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.27 = 93692 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.28 = 657481 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.29 = 21246 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.30 = 471914 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.31 = 22928 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.32 = 229823 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.33 = 23533 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.34 = 491366 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.35 = 23476 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.36 = 324577 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.37 = 23232 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.38 = 440617 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.39 = 22878 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.40 = 327258 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.41 = 22452 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.42 = 446355 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.43 = 21568 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.44 = 365545 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.45 = 22033 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.46 = 792610 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.47 = 22540 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.48 = 374840 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.49 = 22253 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.50 = 394221 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.51 = 22123 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.52 = 432359 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.53 = 21711 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.54 = 422770 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.55 = 4686 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.9.1.48.56 = 1656396 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.1 = 20539 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.2 = 142911 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.3 = 18918 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.4 = 95353 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.5 = 16111 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.6 = 93498 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.7 = 12394 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.8 = 64929 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.9 = 10862 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.10 = 51985 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.11 = 10734 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.12 = 78438 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.13 = 9998 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.14 = 176417 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.15 = 17198 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.16 = 68203 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.17 = 13245 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.18 = 136380 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.19 = 14588 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.20 = 134842 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.21 = 15204 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.22 = 109664 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.23 = 14804 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.24 = 71479 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.25 = 12997 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.26 = 115934 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.27 = 14617 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.28 = 122844 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.29 = 7400 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.30 = 17759 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.31 = 6544 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.32 = 48597 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.33 = 5469 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.34 = 17027 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.35 = 5008 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.36 = 21497 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.37 = 4381 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.38 = 16007 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.39 = 4052 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.40 = 15577 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.41 = 3730 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.42 = 14790 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.43 = 3242 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.44 = 14205 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.45 = 2994 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.46 = 12535 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.47 = 2801 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.48 = 12694 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.49 = 2611 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.50 = 179117 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.51 = 2397 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.52 = 11942 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.53 = 2527 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.54 = 11505 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.55 = 1495 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.10.1.48.56 = 200114 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.1 = 44 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.2 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.3 = 40 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.4 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.5 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.6 = 43 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.7 = 43 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.8 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.9 = 40 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.10 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.11 = 36 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.12 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.13 = 40 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.14 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.15 = 43 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.16 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.17 = 44 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.18 = 18 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.19 = 42 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.20 = 19 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.21 = 41 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.22 = 19 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.23 = 46 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.24 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.25 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.26 = 70 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.27 = 41 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.28 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.29 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.30 = 19 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.31 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.32 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.33 = 34 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.34 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.35 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.36 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.37 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.38 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.39 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.40 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.41 = 34 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.42 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.43 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.44 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.45 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.46 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.47 = 34 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.48 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.49 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.50 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.51 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.52 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.53 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.54 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.55 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.11.1.48.56 = 24 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.1 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.2 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.3 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.4 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.5 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.6 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.7 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.8 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.9 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.10 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.11 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.12 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.13 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.14 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.15 = 34 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.16 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.17 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.18 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.19 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.20 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.21 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.22 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.23 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.24 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.25 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.26 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.27 = 34 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.28 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.29 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.30 = 8 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.31 = 28 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.32 = 7 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.33 = 28 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.34 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.35 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.36 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.37 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.38 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.39 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.40 = 8 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.41 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.42 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.43 = 28 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.44 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.45 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.46 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.47 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.48 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.49 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.50 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.51 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.52 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.53 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.54 = 8 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.55 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.1.48.56 = 22 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.30 = 5 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.46 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.54 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.1.48.56 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.1 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.2 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.3 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.4 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.5 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.6 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.7 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.8 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.9 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.10 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.11 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.12 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.13 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.14 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.15 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.16 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.17 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.18 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.19 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.20 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.21 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.22 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.23 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.24 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.25 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.26 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.27 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.28 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.29 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.30 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.31 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.32 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.33 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.34 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.35 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.36 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.37 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.38 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.39 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.40 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.41 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.42 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.43 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.44 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.45 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.46 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.47 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.48 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.49 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.50 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.51 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.52 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.53 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.54 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.55 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.1.48.56 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.1 = 58 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.2 = 86 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.3 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.4 = 86 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.5 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.6 = 79 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.7 = 59 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.8 = 84 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.9 = 62 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.10 = 81 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.11 = 62 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.12 = 81 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.13 = 62 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.14 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.15 = 59 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.16 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.17 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.18 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.19 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.20 = 81 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.21 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.22 = 84 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.23 = 58 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.24 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.25 = 63 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.26 = 71 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.27 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.28 = 82 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.29 = 65 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.30 = 84 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.31 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.32 = 90 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.33 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.34 = 86 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.35 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.36 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.37 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.38 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.39 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.40 = 90 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.41 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.42 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.43 = 66 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.44 = 89 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.45 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.46 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.47 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.48 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.49 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.50 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.51 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.52 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.53 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.54 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.55 = 69 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.1.48.56 = 73 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.1 = 40 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.2 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.3 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.4 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.5 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.6 = 19 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.7 = 39 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.8 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.9 = 36 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.10 = 18 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.11 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.12 = 18 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.13 = 36 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.14 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.15 = 39 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.16 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.17 = 39 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.18 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.19 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.20 = 18 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.21 = 39 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.22 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.23 = 40 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.24 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.25 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.26 = 28 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.27 = 39 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.28 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.29 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.30 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.31 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.32 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.33 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.34 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.35 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.36 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.37 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.38 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.39 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.40 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.41 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.42 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.43 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.44 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.45 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.46 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.47 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.48 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.49 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.50 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.51 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.52 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.53 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.54 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.55 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.1.48.56 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.1 = 34 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.2 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.3 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.4 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.5 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.6 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.7 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.8 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.9 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.10 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.11 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.12 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.13 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.14 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.15 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.16 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.17 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.18 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.19 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.20 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.21 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.22 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.23 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.24 = 18 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.25 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.26 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.27 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.28 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.29 = 28 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.30 = 8 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.31 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.32 = 8 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.33 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.34 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.35 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.36 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.37 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.38 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.39 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.40 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.41 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.42 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.43 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.44 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.45 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.46 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.47 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.48 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.49 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.50 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.51 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.52 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.53 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.54 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.55 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.1.48.56 = 22 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.28 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.30 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.32 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.34 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.36 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.38 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.40 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.42 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.44 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.46 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.50 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.52 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.1.48.56 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.1 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.2 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.3 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.4 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.5 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.6 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.7 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.8 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.9 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.10 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.11 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.12 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.13 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.14 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.15 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.16 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.17 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.18 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.19 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.20 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.21 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.22 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.23 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.24 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.25 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.26 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.27 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.28 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.29 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.30 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.31 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.32 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.33 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.34 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.35 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.36 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.37 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.38 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.39 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.40 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.41 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.42 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.43 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.44 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.45 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.46 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.47 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.48 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.49 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.50 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.51 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.52 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.53 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.54 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.55 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.1.48.56 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.1 = 59 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.2 = 84 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.3 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.4 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.5 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.6 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.7 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.8 = 82 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.9 = 62 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.10 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.11 = 62 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.12 = 79 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.13 = 62 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.14 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.15 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.16 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.17 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.18 = 84 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.19 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.20 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.21 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.22 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.23 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.24 = 79 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.25 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.26 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.27 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.28 = 81 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.29 = 66 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.30 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.31 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.32 = 89 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.33 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.34 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.35 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.36 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.37 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.38 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.39 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.40 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.41 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.42 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.43 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.44 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.45 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.46 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.47 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.48 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.49 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.50 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.51 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.52 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.53 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.54 = 89 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.55 = 69 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.1.48.56 = 74 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.1 = 39 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.2 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.3 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.4 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.5 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.6 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.7 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.8 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.9 = 36 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.10 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.11 = 35 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.12 = 20 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.13 = 36 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.14 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.15 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.16 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.17 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.18 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.19 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.20 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.21 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.22 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.23 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.24 = 20 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.25 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.26 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.27 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.28 = 18 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.29 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.30 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.31 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.32 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.33 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.34 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.35 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.36 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.37 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.38 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.39 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.40 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.41 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.42 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.43 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.44 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.45 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.46 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.47 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.48 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.49 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.50 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.51 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.52 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.53 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.54 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.55 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.1.48.56 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.1 = 34 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.2 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.3 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.4 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.5 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.6 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.7 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.8 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.9 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.10 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.11 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.12 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.13 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.14 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.15 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.16 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.17 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.18 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.19 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.20 = 13 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.21 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.22 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.23 = 33 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.24 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.25 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.26 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.27 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.28 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.29 = 28 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.30 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.31 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.32 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.33 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.34 = 10 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.35 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.36 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.37 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.38 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.39 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.40 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.41 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.42 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.43 = 27 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.44 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.45 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.46 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.47 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.48 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.49 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.50 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.51 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.52 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.53 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.54 = 9 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.55 = 25 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.1.48.56 = 23 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.30 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.32 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.34 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.36 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.38 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.40 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.42 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.44 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.46 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.48 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.50 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.52 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.54 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.1.48.56 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.1 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.2 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.3 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.4 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.5 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.6 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.7 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.8 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.9 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.10 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.11 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.12 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.13 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.14 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.15 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.16 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.17 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.18 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.19 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.20 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.21 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.22 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.23 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.24 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.25 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.26 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.27 = 4 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.28 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.29 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.30 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.31 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.32 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.33 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.34 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.35 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.36 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.37 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.38 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.39 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.40 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.41 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.42 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.43 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.44 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.45 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.46 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.47 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.48 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.49 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.50 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.51 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.52 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.53 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.54 = 1 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.55 = 3 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.1.48.56 = 2 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.1 = 59 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.2 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.3 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.4 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.5 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.6 = 82 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.7 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.8 = 82 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.9 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.10 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.11 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.12 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.13 = 62 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.14 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.15 = 59 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.16 = 85 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.17 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.18 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.19 = 60 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.20 = 84 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.21 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.22 = 83 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.23 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.24 = 82 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.25 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.26 = 81 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.27 = 61 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.28 = 81 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.29 = 66 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.30 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.31 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.32 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.33 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.34 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.35 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.36 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.37 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.38 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.39 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.40 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.41 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.42 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.43 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.44 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.45 = 67 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.46 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.47 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.48 = 87 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.49 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.50 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.51 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.52 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.53 = 68 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.54 = 88 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.55 = 69 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.1.48.56 = 73 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.1 = 39 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.2 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.3 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.4 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.5 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.6 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.7 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.8 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.9 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.10 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.11 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.12 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.13 = 36 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.14 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.15 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.16 = 14 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.17 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.18 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.19 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.20 = 15 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.21 = 38 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.22 = 16 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.23 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.24 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.25 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.26 = 17 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.27 = 37 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.28 = 18 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.29 = 32 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.30 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.31 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.32 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.33 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.34 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.35 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.36 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.37 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.38 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.39 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.40 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.41 = 29 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.42 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.43 = 31 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.44 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.45 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.46 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.47 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.48 = 12 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.49 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.50 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.51 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.52 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.53 = 30 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.54 = 11 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.55 = 28 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.1.48.56 = 26 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.36.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.1.48.56 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.1 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.2 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.3 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.4 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.5 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.6 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.7 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.8 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.9 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.10 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.11 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.12 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.13 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.14 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.15 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.16 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.17 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.18 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.19 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.20 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.21 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.22 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.23 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.24 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.25 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.26 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.27 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.28 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.29 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.30 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.31 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.32 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.33 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.34 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.35 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.36 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.37 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.38 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.39 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.40 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.41 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.42 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.43 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.44 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.45 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.46 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.47 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.48 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.49 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.50 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.51 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.52 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.53 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.54 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.55 = 0 +.1.3.6.1.4.1.3375.2.1.7.5.2.1.40.1.48.56 = 0 \ No newline at end of file diff --git a/tests/network/f5/bigip/snmp/cpuusage.robot b/tests/network/f5/bigip/snmp/cpuusage.robot new file mode 100644 index 000000000..70a10cdf1 --- /dev/null +++ b/tests/network/f5/bigip/snmp/cpuusage.robot @@ -0,0 +1,30 @@ +*** Settings *** + +Resource ${CURDIR}${/}..${/}..${/}..${/}..${/}resources/import.resource + +Suite Setup Ctn Generic Suite Setup +Test Timeout 120s + + +*** Variables *** +${CMD} ${CENTREON_PLUGINS} --plugin=network::f5::bigip::snmp::plugin + +*** Test Cases *** +cpu-usage ${tc} + [Tags] network + ${command} Catenate + ... ${CMD} + ... --mode=cpu-usage + ... --hostname=${HOSTNAME} + ... --snmp-version=${SNMPVERSION} + ... --snmp-port=${SNMPPORT} + ... --snmp-community=network/f5/bigip/snmp/cpu + ... ${extra_options} + + Ctn Run Command And Check Result As Strings ${command} ${expected_result} + + Examples: tc extra_options expected_result -- + ... 1 ${EMPTY} --filter-counters='^usage-5s' --filter-name='10' OK: CPU '10' CPU Usage 5sec : 35 % | 'usage_5s'=35%;;;0;100 + ... 2 --filter-name='12' OK: CPU '12' CPU Usage 5sec : 36 %, CPU Usage 1min : 36 %, CPU Usage 5min : 36 %, CPU User 5sec : 31 %, CPU User 1min : 31 %, CPU User 5min : 32 %, CPU IO Wait 5sec : 0 %, CPU IO Wait 1min : 0 %, CPU IO Wait 5min : 0 %, CPU System 5sec : 3 %, CPU System 1min : 4 %, CPU System 5min : 3 %, CPU Idle 5sec : 62 %, CPU Idle 1min : 62 %, CPU Idle 5min : 62 % | 'usage_5s'=36%;;;0;100 'usage_1m'=36%;;;0;100 'usage_5m'=36%;;;0;100 'user_5s'=31%;;;0;100 'user_1m'=31%;;;0;100 'user_5m'=32%;;;0;100 'iowait_5s'=0%;;;0;100 'iowait_1m'=0%;;;0;100 'iowait_5m'=0%;;;0;100 'system_5s'=3%;;;0;100 'system_1m'=4%;;;0;100 'system_5m'=3%;;;0;100 'idle_5s'=62%;;;0;100 'idle_1m'=62%;;;0;100 'idle_5m'=62%;;;0;100 + ... 3 --warning-usage-1m='30' --filter-counters='^usage-1m' --filter-name='0' WARNING: CPU '0' CPU Usage 1min : 39 % - CPU '10' CPU Usage 1min : 35 % - CPU '20' CPU Usage 1min : 38 % - CPU '30' CPU Usage 1min : 31 % | 'usage_1m_0'=39%;0:30;;0;100 'usage_1m_10'=35%;0:30;;0;100 'usage_1m_20'=38%;0:30;;0;100 'usage_1m_30'=31%;0:30;;0;100 'usage_1m_40'=29%;0:30;;0;100 'usage_1m_50'=30%;0:30;;0;100 + ... 4 --critical-usage-5m='32' --filter-counters='^usage-5m' --filter-name='0' CRITICAL: CPU '0' CPU Usage 5min : 39 % - CPU '10' CPU Usage 5min : 37 % - CPU '20' CPU Usage 5min : 38 % | 'usage_5m_0'=39%;;0:32;0;100 'usage_5m_10'=37%;;0:32;0;100 'usage_5m_20'=38%;;0:32;0;100 'usage_5m_30'=31%;;0:32;0;100 'usage_5m_40'=29%;;0:32;0;100 'usage_5m_50'=30%;;0:32;0;100 \ No newline at end of file