whoxy 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b5e8d542fef13e31cc33f00e85b11c7eb9f7cee7
4
+ data.tar.gz: f43c88374d8e526d20783ed953cc7a029a8de821
5
+ SHA512:
6
+ metadata.gz: ef25fcff591bd082712b4850555a197e60904ad88b47bf26840b2d61b91989653ca301ebf4b0d6ecba82a09f4f45df6b54bc4ce331913b97994f7aeb0e8b1131
7
+ data.tar.gz: 4060bd9cbdafed01f9e3abc5f65325de11ac3252154bfbe37942077f812aa70b52ac738395996e43bc77a12608ed8cac59734210edd348a1b2f22d192da57971
Binary file
Binary file
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,7 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0.0
4
+ - 2.1.5
5
+ - 2.2.0
6
+ - 2.3.1
7
+ before_install: gem install bundler -v 1.13.7
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in whoxy.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Will Spurgin
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,85 @@
1
+ # Whoxy
2
+
3
+ Interact with the [Whoxy](https://whoxy.com/) API for retrieving WHOIS
4
+ data on domains.
5
+
6
+ [![Build Status](https://travis-ci.org/ormtech/whoxy.svg?branch=master)](https://travis-ci.org/ormtech/whoxy)
7
+
8
+ ## Installation
9
+
10
+ Add this line to your application's Gemfile:
11
+
12
+ ```ruby
13
+ gem 'whoxy'
14
+ ```
15
+
16
+ And then execute:
17
+
18
+ $ bundle
19
+
20
+ Or install it yourself as:
21
+
22
+ $ gem install whoxy
23
+
24
+ ## Usage
25
+
26
+ Simply require the service, configure your key, then start looking up domains.
27
+
28
+ ```ruby
29
+ require 'whoxy'
30
+
31
+ Whoxy.configure do |config|
32
+ config.key = ENV['WHOXY_KEY']
33
+ # specify your own faraday connection (except for host)
34
+ # config.connection do |conn|
35
+ # ...
36
+ # end
37
+ end
38
+
39
+ whois = Whoxy::Client.new
40
+ whois.lookup("google.com")
41
+ #=> Hash
42
+ ```
43
+
44
+ ### URI Handling
45
+
46
+ Rather than force you to remember to take off sub-domains or URI schemes, the
47
+ `lookup` command can handle that for you.
48
+
49
+ ```ruby
50
+ # ✓ returns Whoxy API results for 'ofdomain.com'
51
+ whois.lookup("subdomain.ofdomain.com")
52
+
53
+ # ✓ returns Whoxy API results for 'google.com'
54
+ whois.lookup("http://google.com")
55
+
56
+ # ✓ returns Whoxy API results for 'bar.com'
57
+ whois.lookup("mailto:foo@bar.com")
58
+
59
+ # ✓ returns Whoxy API results for 'bar.com'
60
+ whois.lookup("foo@bar.com")
61
+ #=> raises ArgumentError
62
+ ```
63
+
64
+ ## Development
65
+
66
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run
67
+ `rake spec` to run the tests. You can also run `bin/console` for an interactive
68
+ prompt that will allow you to experiment.
69
+
70
+ To install this gem onto your local machine, run `bundle exec rake install`. To
71
+ release a new version, update the version number in `version.rb`, and then run
72
+ `bundle exec rake release`, which will create a git tag for the version, push
73
+ git commits and tags, and push the `.gem` file to
74
+ [rubygems.org](https://rubygems.org).
75
+
76
+ ## Contributing
77
+
78
+ Bug reports and pull requests are welcome on GitHub at
79
+ https://github.com/ormtech/whoxy.
80
+
81
+ ## License
82
+
83
+ The gem is available as open source under the terms of the [MIT
84
+ License](http://opensource.org/licenses/MIT).
85
+
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "whoxy"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ require "pry"
11
+ Pry.start
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,22 @@
1
+ -----BEGIN CERTIFICATE-----
2
+ MIIDjjCCAnagAwIBAgIBATANBgkqhkiG9w0BAQUFADBGMRUwEwYDVQQDDAx3aWxs
3
+ LnNwdXJnaW4xGDAWBgoJkiaJk/IsZAEZFghvcm0tdGVjaDETMBEGCgmSJomT8ixk
4
+ ARkWA2NvbTAeFw0xNjA2MjAxNTU4NDJaFw0xNzA2MjAxNTU4NDJaMEYxFTATBgNV
5
+ BAMMDHdpbGwuc3B1cmdpbjEYMBYGCgmSJomT8ixkARkWCG9ybS10ZWNoMRMwEQYK
6
+ CZImiZPyLGQBGRYDY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA
7
+ vRMpVroSt8OrOY/zyh/00HzNryjthX5JabsyIlZBBkqJSBakNa4p9y3EleODdvP8
8
+ 3DPnDgAax5/nYd+UumPbcqPB7lhXHn+vw+082DVVOaL2IMg1fbqLRSpCXGvgz4za
9
+ P4QKMusXXRAo1+nLjl68pumyLfAD6dEF7bNk2diHpKppknb1ENsvs/v8/uWQBv27
10
+ AnIrHntPpKCLwSjxufgCa9IKdSy9EdwCBCwX9IOGTjUhFoRy+Fsx7pUi0NM7eaER
11
+ h0VYrXIPnembxN51iVA6LcM7wnzl6uVnSb/TJshc3zSIqZibvHSPKL1g17S2s8qa
12
+ 2AspSOGAQ7iDAkt1lRnccQIDAQABo4GGMIGDMAkGA1UdEwQCMAAwCwYDVR0PBAQD
13
+ AgSwMB0GA1UdDgQWBBTdymM1YAMQyvVpddd//6sgBWrCOTAkBgNVHREEHTAbgRl3
14
+ aWxsLnNwdXJnaW5Ab3JtLXRlY2guY29tMCQGA1UdEgQdMBuBGXdpbGwuc3B1cmdp
15
+ bkBvcm0tdGVjaC5jb20wDQYJKoZIhvcNAQEFBQADggEBAK4zjjfK53r01ZtIB+xF
16
+ GT8OR3ri+iSrcTAaC7dk4XmjNU42hGBlFZ34RjnzxBGBjBZH9w+3jwCjN8FkPfmO
17
+ f1kiI4+tCt+weUzWFqhKsIaC23TjEDrlhyZ2203HldlW4p26onVwDpIn3YOYG9Qr
18
+ c+9wUpquUpi5e4bBVsIaHoYnECMOrGIgRSleI8YWLAakTWAXRL63dtekC945+3ep
19
+ vbrWi4+bt0feapcxjBsEk2q1TW6XmEWU8HokYJOxNbqKt5XuWZq/fcGgBV+CftFN
20
+ 8o95YBJ2TniSxvMvbz2P9Q/Mh1AhMN4J0OqtcAo1One8UgJBXU8xZHj/qWMLwT9L
21
+ gtM=
22
+ -----END CERTIFICATE-----
@@ -0,0 +1,81 @@
1
+ require 'uri'
2
+
3
+ require "whoxy/version"
4
+ require "whoxy/configuration"
5
+
6
+ module Whoxy
7
+ def self.configure(&block)
8
+ @@configuration = Configuration.new
9
+ yield(@@configuration)
10
+ end
11
+
12
+ def self.configuration
13
+ @@configuration ||= nil
14
+ end
15
+
16
+ class MissingAPIKeyError < Exception
17
+ end
18
+
19
+ class Client
20
+ def initialize
21
+ raise MissingAPIKeyError unless configuration && configuration.key
22
+ end
23
+
24
+ def lookup(uri, &block)
25
+ domain = parse_domain(uri)
26
+ response = connection.get(whois_endpoint, whois: domain, key: configuration.key) do |request|
27
+ yield request if block_given?
28
+ end
29
+
30
+ response.body
31
+ end
32
+
33
+ def parse_domain(uri)
34
+ parsed_uri = URI.parse(uri)
35
+ parsed_uri = URI.parse("http://#{uri}") if parsed_uri.scheme.nil?
36
+
37
+ host = parsed_uri.host
38
+
39
+ # Handle mailto scheme
40
+ if parsed_uri.scheme == "mailto"
41
+ _, address_host = uri.split("@")
42
+ host = address_host
43
+ end
44
+
45
+ fail ArgumentError.new("Could not parse #{uri} for a domain") if host.nil?
46
+
47
+ # Check for subdomains or combined TLD with ccTLD
48
+ num_separators = host.count "."
49
+ domain = if num_separators > 1
50
+ # if this is a combined TLD, one or both of the last two have to be an
51
+ # international ccTLD (like uk or gm) which are only 2 characters long.
52
+ possible_tlds = host.split(".").last(2)
53
+ cctld_detected = possible_tlds.map { |tld| tld.size == 2 }.reduce(:|)
54
+ num_to_select = if cctld_detected
55
+ 3
56
+ else # The were no ccTLDs
57
+ 2
58
+ end
59
+ host.split(".").last(num_to_select).join(".")
60
+ else # there's no subdomain or combined TLD
61
+ host
62
+ end
63
+
64
+ domain
65
+ end
66
+
67
+ private
68
+
69
+ def connection
70
+ configuration.connection
71
+ end
72
+
73
+ def configuration
74
+ Whoxy.configuration
75
+ end
76
+
77
+ def whois_endpoint
78
+ "/"
79
+ end
80
+ end
81
+ end
@@ -0,0 +1,39 @@
1
+ require 'whoxy/faraday_middleware'
2
+
3
+ module Whoxy
4
+ class Configuration
5
+ attr_accessor :key, :debug
6
+
7
+ def connection(&block)
8
+ @connection ||= if block_given?
9
+ Faraday.new(whoxy_host, &block)
10
+ else
11
+ default_connection
12
+ end
13
+ end
14
+
15
+ def default_connection
16
+ @connection = Faraday.new(whoxy_host) do |conn|
17
+ conn.request :url_encoded
18
+
19
+ conn.request :retry, max: 10, interval: 0.05,
20
+ interval_randomness: 0.5, backoff_factor: 2,
21
+ exceptions: [Errno::ETIMEDOUT, 'Timeout::Error',
22
+ ::Faraday::Error::TimeoutError,
23
+ ::Faraday::ConnectionFailed]
24
+
25
+ conn.response :whoxy, content_type: /\bjson$/
26
+ conn.response :logger if debug
27
+
28
+ conn.adapter Faraday.default_adapter
29
+ end
30
+ end
31
+
32
+ private
33
+
34
+ def whoxy_host
35
+ { url: "https://api.whoxy.com" }
36
+ end
37
+ end
38
+ end
39
+
@@ -0,0 +1,12 @@
1
+ require 'faraday'
2
+
3
+ module Whoxy
4
+ module FaradayMiddleware
5
+ autoload :Response, 'whoxy/faraday_middleware/response'
6
+ end
7
+
8
+ if Faraday::Middleware.respond_to? :register_middleware
9
+ Faraday::Response.register_middleware whoxy: -> { Whoxy::FaradayMiddleware::Response }
10
+ end
11
+ end
12
+
@@ -0,0 +1,11 @@
1
+ require 'faraday_middleware'
2
+
3
+ module Whoxy
4
+ module FaradayMiddleware
5
+ class Response < ::FaradayMiddleware::ParseJson
6
+ define_parser do |body|
7
+ JSON.parse(body, symbolize_names: true) unless body.strip.empty?
8
+ end
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,3 @@
1
+ module Whoxy
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,34 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'whoxy/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "whoxy"
8
+ spec.version = Whoxy::VERSION
9
+ spec.authors = ["Will Spurgin"]
10
+ spec.email = ["will.spurgin@orm-tech.com"]
11
+
12
+ spec.summary = %q{Basic Faraday driven ruby gem for interacting with the Whoxy API}
13
+ spec.homepage = "https://github.com/ormtech/whoxy"
14
+ spec.license = "MIT"
15
+
16
+ spec.cert_chain = ['certs/wspurgin.pem']
17
+ spec.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/
18
+
19
+ spec.required_ruby_version = '~> 2.0'
20
+
21
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
22
+ f.match(%r{^(test|spec|features)/})
23
+ end
24
+ spec.bindir = "exe"
25
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
26
+ spec.require_paths = ["lib"]
27
+
28
+ spec.add_dependency "faraday_middleware", "> 0.9.0", "< 0.11.0"
29
+
30
+ spec.add_development_dependency "bundler", "~> 1.13"
31
+ spec.add_development_dependency "rake", "~> 10.0"
32
+ spec.add_development_dependency "rspec", "~> 3.0"
33
+ spec.add_development_dependency "pry"
34
+ end
metadata ADDED
@@ -0,0 +1,159 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: whoxy
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Will Spurgin
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDjjCCAnagAwIBAgIBATANBgkqhkiG9w0BAQUFADBGMRUwEwYDVQQDDAx3aWxs
14
+ LnNwdXJnaW4xGDAWBgoJkiaJk/IsZAEZFghvcm0tdGVjaDETMBEGCgmSJomT8ixk
15
+ ARkWA2NvbTAeFw0xNjA2MjAxNTU4NDJaFw0xNzA2MjAxNTU4NDJaMEYxFTATBgNV
16
+ BAMMDHdpbGwuc3B1cmdpbjEYMBYGCgmSJomT8ixkARkWCG9ybS10ZWNoMRMwEQYK
17
+ CZImiZPyLGQBGRYDY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA
18
+ vRMpVroSt8OrOY/zyh/00HzNryjthX5JabsyIlZBBkqJSBakNa4p9y3EleODdvP8
19
+ 3DPnDgAax5/nYd+UumPbcqPB7lhXHn+vw+082DVVOaL2IMg1fbqLRSpCXGvgz4za
20
+ P4QKMusXXRAo1+nLjl68pumyLfAD6dEF7bNk2diHpKppknb1ENsvs/v8/uWQBv27
21
+ AnIrHntPpKCLwSjxufgCa9IKdSy9EdwCBCwX9IOGTjUhFoRy+Fsx7pUi0NM7eaER
22
+ h0VYrXIPnembxN51iVA6LcM7wnzl6uVnSb/TJshc3zSIqZibvHSPKL1g17S2s8qa
23
+ 2AspSOGAQ7iDAkt1lRnccQIDAQABo4GGMIGDMAkGA1UdEwQCMAAwCwYDVR0PBAQD
24
+ AgSwMB0GA1UdDgQWBBTdymM1YAMQyvVpddd//6sgBWrCOTAkBgNVHREEHTAbgRl3
25
+ aWxsLnNwdXJnaW5Ab3JtLXRlY2guY29tMCQGA1UdEgQdMBuBGXdpbGwuc3B1cmdp
26
+ bkBvcm0tdGVjaC5jb20wDQYJKoZIhvcNAQEFBQADggEBAK4zjjfK53r01ZtIB+xF
27
+ GT8OR3ri+iSrcTAaC7dk4XmjNU42hGBlFZ34RjnzxBGBjBZH9w+3jwCjN8FkPfmO
28
+ f1kiI4+tCt+weUzWFqhKsIaC23TjEDrlhyZ2203HldlW4p26onVwDpIn3YOYG9Qr
29
+ c+9wUpquUpi5e4bBVsIaHoYnECMOrGIgRSleI8YWLAakTWAXRL63dtekC945+3ep
30
+ vbrWi4+bt0feapcxjBsEk2q1TW6XmEWU8HokYJOxNbqKt5XuWZq/fcGgBV+CftFN
31
+ 8o95YBJ2TniSxvMvbz2P9Q/Mh1AhMN4J0OqtcAo1One8UgJBXU8xZHj/qWMLwT9L
32
+ gtM=
33
+ -----END CERTIFICATE-----
34
+ date: 2017-01-18 00:00:00.000000000 Z
35
+ dependencies:
36
+ - !ruby/object:Gem::Dependency
37
+ name: faraday_middleware
38
+ requirement: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">"
41
+ - !ruby/object:Gem::Version
42
+ version: 0.9.0
43
+ - - "<"
44
+ - !ruby/object:Gem::Version
45
+ version: 0.11.0
46
+ type: :runtime
47
+ prerelease: false
48
+ version_requirements: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - ">"
51
+ - !ruby/object:Gem::Version
52
+ version: 0.9.0
53
+ - - "<"
54
+ - !ruby/object:Gem::Version
55
+ version: 0.11.0
56
+ - !ruby/object:Gem::Dependency
57
+ name: bundler
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: '1.13'
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '1.13'
70
+ - !ruby/object:Gem::Dependency
71
+ name: rake
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - "~>"
75
+ - !ruby/object:Gem::Version
76
+ version: '10.0'
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - "~>"
82
+ - !ruby/object:Gem::Version
83
+ version: '10.0'
84
+ - !ruby/object:Gem::Dependency
85
+ name: rspec
86
+ requirement: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - "~>"
89
+ - !ruby/object:Gem::Version
90
+ version: '3.0'
91
+ type: :development
92
+ prerelease: false
93
+ version_requirements: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - "~>"
96
+ - !ruby/object:Gem::Version
97
+ version: '3.0'
98
+ - !ruby/object:Gem::Dependency
99
+ name: pry
100
+ requirement: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: '0'
105
+ type: :development
106
+ prerelease: false
107
+ version_requirements: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ version: '0'
112
+ description:
113
+ email:
114
+ - will.spurgin@orm-tech.com
115
+ executables: []
116
+ extensions: []
117
+ extra_rdoc_files: []
118
+ files:
119
+ - ".gitignore"
120
+ - ".rspec"
121
+ - ".travis.yml"
122
+ - Gemfile
123
+ - LICENSE.txt
124
+ - README.md
125
+ - Rakefile
126
+ - bin/console
127
+ - bin/setup
128
+ - certs/wspurgin.pem
129
+ - lib/whoxy.rb
130
+ - lib/whoxy/configuration.rb
131
+ - lib/whoxy/faraday_middleware.rb
132
+ - lib/whoxy/faraday_middleware/response.rb
133
+ - lib/whoxy/version.rb
134
+ - whoxy.gemspec
135
+ homepage: https://github.com/ormtech/whoxy
136
+ licenses:
137
+ - MIT
138
+ metadata: {}
139
+ post_install_message:
140
+ rdoc_options: []
141
+ require_paths:
142
+ - lib
143
+ required_ruby_version: !ruby/object:Gem::Requirement
144
+ requirements:
145
+ - - "~>"
146
+ - !ruby/object:Gem::Version
147
+ version: '2.0'
148
+ required_rubygems_version: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ requirements: []
154
+ rubyforge_project:
155
+ rubygems_version: 2.4.5.1
156
+ signing_key:
157
+ specification_version: 4
158
+ summary: Basic Faraday driven ruby gem for interacting with the Whoxy API
159
+ test_files: []
@@ -0,0 +1,5 @@
1
+ �f%v��z#)5��T�v=�z�U��O��Ef� r?
2
+ fNw�j�~�
3
+ W�;� �����/!@��~�����;�^g��O�!�qʽ����ƒ��q �|��f����3
4
+ 7����m`"����;޾;Hii�
5
+ �`U �����Vi��v�����x�j�i�`�n���iX���=n}����}jn��]�:~\ TgQ=�߼<V�y0��c�$��C�~Ua���-�lM+�8�O�EL�!2�7����� ;