extr 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. checksums.yaml +7 -0
  2. data/app/controllers/extr/router_controller.rb +8 -8
  3. data/app/helpers/extr/application_helper.rb +5 -5
  4. data/config/routes.rb +3 -4
  5. data/lib/extr/engine.rb +1 -1
  6. data/lib/extr/transaction.rb +8 -8
  7. data/lib/extr/version.rb +1 -1
  8. data/readme.md +6 -4
  9. data/test/dummy/app/controllers/projects_controller.rb +3 -2
  10. data/test/dummy/config/application.rb +22 -4
  11. data/test/dummy/config/boot.rb +3 -8
  12. data/test/dummy/config/environments/development.rb +3 -0
  13. data/test/dummy/config/initializers/secret_token.rb +1 -1
  14. data/test/dummy/config/routes.rb +1 -1
  15. data/test/dummy/db/{production.sqlite3 → test.sqlite3} +0 -0
  16. data/test/dummy/log/development.log +1296 -1464
  17. data/test/dummy/log/test.log +62 -0
  18. data/test/dummy/script/rails +1 -1
  19. data/test/dummy/test/functional/profils_controller_test.rb +12 -12
  20. data/test/dummy/tmp/cache/assets/C76/160/sprockets%2F49c594d143212b346d11f1ecf9358103 +0 -0
  21. data/test/dummy/tmp/cache/assets/C7B/980/sprockets%2F2e74b041ed6358212e539348c1356e4b +0 -0
  22. data/test/dummy/tmp/cache/assets/C8C/B80/sprockets%2F371bf96e99717688ed7313a0c53f4212 +0 -0
  23. data/test/dummy/tmp/cache/assets/CC9/AF0/sprockets%2F6a96ab5877a885921b0ea6c4997195f4 +0 -0
  24. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  25. data/test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2 +0 -0
  26. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  27. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  28. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  29. data/test/dummy/tmp/cache/assets/DA8/900/sprockets%2Fde7a2b3987b89b9d9afb268ce4204a4a +0 -0
  30. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  31. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  32. data/test/extr_test.rb +5 -4
  33. metadata +132 -144
  34. data/test/dummy/log/production.log +0 -90
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 59de7e5b4fbaca55e143e7aa6db7e433f6ebcba8
4
+ data.tar.gz: be519bd2f8f275afc16501a4ad8e646e534c99bd
5
+ SHA512:
6
+ metadata.gz: 8da22a582c7d445a45ec0e3988b7c6d840adbb59df10ee89954ba0193bbddea08bb670a02c9e28fa7c6c69f11f49c29bd250418ac8100afa5f63374d24241d8b
7
+ data.tar.gz: a77fdf15dab39d6b81c3571ab5444fb18d8ee8e80806308c217185b3f660844046008674f282b435ed1f1a857ae97128ee4d3529105a5765e5c4eae4830e2e9f
@@ -15,9 +15,9 @@ module Extr
15
15
  body = transactions.map(&:response)
16
16
 
17
17
  if request.form_data? and extjs_form_with_upload?
18
- render :inline => "<html><body><textarea>#{body.to_json}</textarea></body></html>", :content_type => 'text/html'
18
+ render inline: "<html><body><textarea>#{body.to_json}</textarea></body></html>", content_type: 'text/html'
19
19
  else
20
- render :json => body ||= ""
20
+ render json: body ||= ""
21
21
  end
22
22
  end
23
23
 
@@ -61,14 +61,14 @@ module Extr
61
61
  body = []
62
62
  transactions.each do |t|
63
63
  body << {
64
- 'type' => 'exception',
65
- 'tid' => t.tid,
66
- 'action' => t.action,
67
- 'method' => t.method,
68
- 'result' => "WARNING: Can't verify CSRF token authenticity"
64
+ type: 'exception',
65
+ tid: t.tid,
66
+ action: t.action,
67
+ method: t.method,
68
+ result: "WARNING: Can't verify CSRF token authenticity"
69
69
  }
70
70
  end
71
- render :json => body
71
+ render json: body
72
72
 
73
73
  end
74
74
 
@@ -9,11 +9,11 @@ module Extr
9
9
  namespaced_apis=""
10
10
  Extr::Config.controller_config.each do |namespace,extr_config|
11
11
  config = {
12
- 'url' => Extr::Config::ROUTER_PATH,
13
- 'type' => 'remoting',
14
- 'actions' => Extr::Config.controller_config[namespace],
15
- 'namespace' => namespace,
16
- 'srv_env' => Rails.env
12
+ url: Extr::Config::ROUTER_PATH,
13
+ type: 'remoting',
14
+ actions: Extr::Config.controller_config[namespace],
15
+ namespace: namespace,
16
+ srv_env: Rails.env
17
17
  }
18
18
  api="REMOTING_API_#{namespace.upcase} = #{config.to_json}"
19
19
  namespaced_apis+="Ext.Direct.addProvider(#{api});"
data/config/routes.rb CHANGED
@@ -2,9 +2,8 @@ Extr::Engine.routes.draw do
2
2
  end
3
3
 
4
4
  Rails.application.routes.draw do
5
- match "#{Extr::Config::ROUTER_PATH}" => "extr/router#direct",
6
- :format => false,
7
- :defaults => { :format => :json },
8
- :via => :post
5
+ post "#{Extr::Config::ROUTER_PATH}", to: "extr/router#direct",
6
+ format: false,
7
+ defaults: { format: :json }
9
8
  end
10
9
 
data/lib/extr/engine.rb CHANGED
@@ -21,7 +21,7 @@ module Extr
21
21
  (options.keys & keys).each do |key|
22
22
  unless options[key].nil?
23
23
  options[key].stringify_keys!.each do |mtd, mcfg|
24
- method_hash = mcfg.is_a?(Hash) ? {'name' => mtd}.merge!(mcfg) : {'name' => mtd, 'len' => mcfg || 1}
24
+ method_hash = mcfg.is_a?(Hash) ? {name: mtd}.merge!(mcfg) : {name: mtd, len: mcfg || 1}
25
25
  method_hash[key]= true if key == "formHandler"
26
26
  Config.controller_config[ns][action] << method_hash
27
27
  end
@@ -4,9 +4,9 @@ module Extr
4
4
 
5
5
  include ActiveModel::Validations
6
6
 
7
- validates :action, :presence => true
8
- validates :method, :presence => true
9
- validates :tid, :presence => true, :numericality => {:greater_than => 0}
7
+ validates :action, presence: true
8
+ validates :method, presence: true
9
+ validates :tid, presence: true, numericality: {greater_than: 0}
10
10
 
11
11
  attr_reader :request, :action, :method, :data, :tid, :upload
12
12
 
@@ -33,11 +33,11 @@ module Extr
33
33
  def invoke_controller_method
34
34
 
35
35
  ext = {
36
- 'type' => 'rpc',
37
- 'tid' => self.tid,
38
- 'action' => self.action,
39
- 'method' => self.method,
40
- 'result' => ""
36
+ type: 'rpc',
37
+ tid: self.tid,
38
+ action: self.action,
39
+ method: self.method,
40
+ result: ""
41
41
  }
42
42
 
43
43
  begin
data/lib/extr/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Extr
2
- VERSION = "1.0.4"
2
+ VERSION = "1.0.5"
3
3
  end
4
4
 
data/readme.md CHANGED
@@ -5,14 +5,16 @@
5
5
  # __ExtR__
6
6
 
7
7
 
8
- __An open source Ruby on Rails 3.x engine for using Ext.Direct in Rails Applications.__
8
+ __An open source Ruby on Rails 4.x and Ruby on Rails 3.x engine for using Ext.Direct in Rails Applications.__
9
9
 
10
- ExtR is an Rails 3.x compatible implementation of the [Ext.Direct API specification](http://www.sencha.com/products/extjs/extdirect) from the famous [Sencha ExtJS Framework](http://www.sencha.com/). If you want to write ExtJS UI's with the power of Ruby have a look at [Netzke](http://netzke.org/), the brilliant Sencha ExtJS and Ruby on Rails component framework.
10
+ ExtR is an Ruby on Rails 4.x and Ruby on Rails 3.x compatible implementation of the [Ext.Direct API specification](http://www.sencha.com/products/extjs/extdirect) from the famous [Sencha ExtJS Framework](http://www.sencha.com/). If you want to write ExtJS UI's with the power of Ruby have a look at [Netzke](http://netzke.org/), the brilliant Sencha ExtJS and Ruby on Rails component framework.
11
11
 
12
12
 
13
13
  ## Intension
14
14
 
15
- The Ext.Direct API allows you to call serverside methods within the client side (Javascript). This makes the development of complex UI's' easier and more efficient. Have a look:
15
+ The Ext.Direct API allows you to call serverside methods within the client side (Javascript). This makes the development of complex UI's' easier and more efficient. Each Ext Direct Action is routed to the specified Rails controller action.
16
+
17
+ Have a look:
16
18
 
17
19
 
18
20
  Normal Ajax call with JQuery
@@ -35,7 +37,7 @@ ExtJS call with Ext.Direct API
35
37
 
36
38
  ## Requirements
37
39
  * ExtJS
38
- * [Rails 3.x](http://github.com/rails/rails)
40
+ * [Rails 3.x/4.x](http://github.com/rails/rails)
39
41
 
40
42
 
41
43
  ## Install
@@ -15,8 +15,9 @@ class ProjectsController < ApplicationController
15
15
  end
16
16
 
17
17
  def index
18
- @projects = Project.all
19
- respond_with @projects
18
+ render :text => "est"
19
+ #@projects = Project.all
20
+ r#espond_with @projects
20
21
  end
21
22
 
22
23
  # GET /projects/1
@@ -2,8 +2,12 @@ require File.expand_path('../boot', __FILE__)
2
2
 
3
3
  require 'rails/all'
4
4
 
5
- Bundler.require
6
- require "extr"
5
+ if defined?(Bundler)
6
+ # If you precompile assets before deploying to production, use this line
7
+ Bundler.require(*Rails.groups(:assets => %w(development test)))
8
+ # If you want your assets lazily compiled in production, use this line
9
+ # Bundler.require(:default, :assets, Rails.env)
10
+ end
7
11
 
8
12
  module Dummy
9
13
  class Application < Rails::Application
@@ -35,12 +39,26 @@ module Dummy
35
39
  # Configure sensitive parameters which will be filtered from the log file.
36
40
  config.filter_parameters += [:password]
37
41
 
42
+ # Enable escaping HTML in JSON.
43
+ config.active_support.escape_html_entities_in_json = true
44
+
45
+ # Use SQL instead of Active Record's schema dumper when creating the database.
46
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
47
+ # like if you have constraints or database-specific column types
48
+ # config.active_record.schema_format = :sql
49
+
50
+ # Enforce whitelist mode for mass assignment.
51
+ # This will create an empty whitelist of attributes available for mass-assignment for all models
52
+ # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
53
+ # parameters by using an attr_accessible or attr_protected declaration.
54
+ config.active_record.whitelist_attributes = true
55
+
38
56
  # Enable the asset pipeline
39
57
  config.assets.enabled = true
40
58
 
41
59
  # Version of your assets, change this if you want to expire all your assets
42
60
  config.assets.version = '1.0'
43
- #config.action_controller.request_forgery_protection_token = "mike"
61
+
62
+ config.active_record.whitelist_attributes = false
44
63
  end
45
64
  end
46
-
@@ -1,11 +1,6 @@
1
1
  require 'rubygems'
2
2
 
3
- gemfile = File.expand_path('../../../../Gemfile', __FILE__)
4
-
5
- if File.exist?(gemfile)
6
- ENV['BUNDLE_GEMFILE'] = gemfile
7
- require 'bundler'
8
- Bundler.setup
9
- end
10
- $:.unshift File.expand_path('../../../../lib', __FILE__)
3
+ # Set up gems listed in the Gemfile.
4
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
11
5
 
6
+ require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
@@ -34,4 +34,7 @@ Dummy::Application.configure do
34
34
 
35
35
  # Expands the lines which load the assets
36
36
  config.assets.debug = true
37
+
38
+ # eager loading
39
+ config.eager_load = false
37
40
  end
@@ -4,4 +4,4 @@
4
4
  # If you change this key, all old signed cookies will become invalid!
5
5
  # Make sure the secret is at least 30 characters and all random,
6
6
  # no regular words or you'll be exposed to dictionary attacks.
7
- Dummy::Application.config.secret_token = '3f710c50dd0a160b0d9856dbb87a806c443710391a4db96b45d53d0712644c6fd5fc574e8e67bece7cb02baaf7d023fac6116a1d6d7a99d1d426275fcbaac64b'
7
+ Dummy::Application.config.secret_token = 'de930b3b29e5d2f4c46014ade3592181a17b5e9df0107bda6d0838da283638dcb7a95a826048876e0330d26110ae9588310ee0ce590ea0a3218387fe15087421'
@@ -3,7 +3,7 @@ Rails.application.routes.draw do
3
3
  root :to => "projects#index"
4
4
 
5
5
  resources :projects do
6
- match "rpcextjs410" => 'projects#rpcextjs410', :on => :collection
6
+ get "rpcextjs410" => 'projects#rpcextjs410', :on => :collection
7
7
  end
8
8
 
9
9
  mount Extr::Engine => "/extr"
File without changes
@@ -1,1615 +1,1447 @@
1
- Connecting to database specified by database.yml
2
- Connecting to database specified by database.yml
3
- Connecting to database specified by database.yml
4
- Connecting to database specified by database.yml
5
- Connecting to database specified by database.yml
6
- Connecting to database specified by database.yml
7
- Connecting to database specified by database.yml
8
- Connecting to database specified by database.yml
9
- Connecting to database specified by database.yml
10
- Connecting to database specified by database.yml
11
- Connecting to database specified by database.yml
12
- Connecting to database specified by database.yml
13
- Connecting to database specified by database.yml
14
- Connecting to database specified by database.yml
15
- Connecting to database specified by database.yml
16
- Connecting to database specified by database.yml
17
- Connecting to database specified by database.yml
18
- Connecting to database specified by database.yml
19
- Connecting to database specified by database.yml
20
- Connecting to database specified by database.yml
21
- Connecting to database specified by database.yml
22
- Connecting to database specified by database.yml
23
- Connecting to database specified by database.yml
24
- Connecting to database specified by database.yml
25
- Connecting to database specified by database.yml
26
- Connecting to database specified by database.yml
27
- Connecting to database specified by database.yml
28
- Connecting to database specified by database.yml
29
- Connecting to database specified by database.yml
30
- Connecting to database specified by database.yml
31
- Connecting to database specified by database.yml
32
- Connecting to database specified by database.yml
33
- Connecting to database specified by database.yml
34
- Connecting to database specified by database.yml
35
- Connecting to database specified by database.yml
1
+ Reload config from extdirect.yml file
2
+ Reload config from extdirect.yml file
36
3
 
37
4
 
38
- Started GET "/" for 127.0.0.1 at 2013-02-07 00:46:45 +0100
5
+ Started GET "/" for 127.0.0.1 at 2014-04-10 19:03:40 +0200
6
+ Reload config from extdirect.yml file
39
7
  Connecting to database specified by database.yml
40
8
  Processing by ProjectsController#index as HTML
41
- Completed 500 Internal Server Error in 1ms
9
+ Completed 500 Internal Server Error in 2ms
42
10
 
43
11
  ActiveRecord::StatementInvalid (Could not find table 'projects'):
44
12
  app/controllers/projects_controller.rb:18:in `index'
45
13
 
46
14
 
47
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
48
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
49
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.7ms)
15
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
16
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
17
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.4ms)
18
+ Reload config from extdirect.yml file
50
19
  Connecting to database specified by database.yml
51
-  (0.2ms) select sqlite_version(*)
52
-  (169.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
53
-  (146.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
54
-  (3.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
20
+  (0.1ms) select sqlite_version(*)
21
+  (191.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
22
+  (122.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
23
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
55
24
  Migrating to CreateProjects (20111003211619)
56
25
   (0.1ms) begin transaction
57
-  (0.6ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
58
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111003211619')
26
+  (1.0ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "description" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
27
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111003211619')
59
28
   (167.7ms) commit transaction
60
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
29
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
30
+ Reload config from extdirect.yml file
61
31
 
62
32
 
63
- Started GET "/" for 127.0.0.1 at 2013-02-07 00:47:58 +0100
33
+ Started GET "/" for 127.0.0.1 at 2014-04-10 19:04:35 +0200
34
+ Reload config from extdirect.yml file
64
35
  Connecting to database specified by database.yml
65
36
  Processing by ProjectsController#index as HTML
66
37
  Project Load (0.2ms) SELECT "projects".* FROM "projects" 
67
- Rendered projects/index.html.erb within layouts/application (5.3ms)
68
- Compiled profils.css (0ms) (pid 3859)
69
- Compiled projects.css (0ms) (pid 3859)
70
- Compiled scaffold.css (0ms) (pid 3859)
71
- Compiled application.css (72ms) (pid 3859)
72
- Completed 500 Internal Server Error in 182ms
73
-
74
- ActionView::Template::Error (couldn't find file 'jquery'
75
- (in /home/neo/Projekte/extr/test/dummy/app/assets/javascripts/application.js:7)):
76
- 3: <head>
77
- 4: <title>Extr</title>
78
- 5: <%= stylesheet_link_tag "application" %>
79
- 6: <%= javascript_include_tag "application" %>
80
- 7: <%= csrf_meta_tags %>
81
- 8:
82
- 9: <%= ext_base_tag %>
83
- app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___168170596_89798300'
84
- app/controllers/projects_controller.rb:19:in `index'
85
-
86
-
87
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.2ms)
88
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
89
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (21.3ms)
90
-
91
-
92
- Started GET "/" for 127.0.0.1 at 2013-02-07 00:48:25 +0100
93
- Processing by ProjectsController#index as HTML
94
- Project Load (0.2ms) SELECT "projects".* FROM "projects"
95
- Rendered projects/index.html.erb within layouts/application (0.6ms)
96
- Completed 500 Internal Server Error in 12ms
97
-
98
- ActionView::Template::Error (couldn't find file 'jquery'
99
- (in /home/neo/Projekte/extr/test/dummy/app/assets/javascripts/application.js:7)):
100
- 3: <head>
101
- 4: <title>Extr</title>
102
- 5: <%= stylesheet_link_tag "application" %>
103
- 6: <%= javascript_include_tag "application" %>
104
- 7: <%= csrf_meta_tags %>
105
- 8:
106
- 9: <%= ext_base_tag %>
107
- app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___168170596_89798300'
108
- app/controllers/projects_controller.rb:19:in `index'
109
-
110
-
111
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
112
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
113
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.6ms)
114
-
115
-
116
- Started GET "/" for 127.0.0.1 at 2013-02-07 00:48:26 +0100
117
- Processing by ProjectsController#index as HTML
118
- Project Load (0.2ms) SELECT "projects".* FROM "projects" 
119
- Rendered projects/index.html.erb within layouts/application (0.7ms)
120
- Completed 500 Internal Server Error in 13ms
121
-
122
- ActionView::Template::Error (couldn't find file 'jquery'
123
- (in /home/neo/Projekte/extr/test/dummy/app/assets/javascripts/application.js:7)):
124
- 3: <head>
125
- 4: <title>Extr</title>
126
- 5: <%= stylesheet_link_tag "application" %>
127
- 6: <%= javascript_include_tag "application" %>
128
- 7: <%= csrf_meta_tags %>
129
- 8:
130
- 9: <%= ext_base_tag %>
131
- app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___168170596_89798300'
132
- app/controllers/projects_controller.rb:19:in `index'
133
-
134
-
135
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
136
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
137
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.7ms)
138
-
139
-
140
- Started GET "/" for 127.0.0.1 at 2013-02-07 00:48:26 +0100
141
- Processing by ProjectsController#index as HTML
142
- Project Load (0.2ms) SELECT "projects".* FROM "projects"
143
- Rendered projects/index.html.erb within layouts/application (0.6ms)
144
- Completed 500 Internal Server Error in 12ms
145
-
146
- ActionView::Template::Error (couldn't find file 'jquery'
147
- (in /home/neo/Projekte/extr/test/dummy/app/assets/javascripts/application.js:7)):
148
- 3: <head>
149
- 4: <title>Extr</title>
150
- 5: <%= stylesheet_link_tag "application" %>
151
- 6: <%= javascript_include_tag "application" %>
152
- 7: <%= csrf_meta_tags %>
153
- 8:
154
- 9: <%= ext_base_tag %>
155
- app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___168170596_89798300'
156
- app/controllers/projects_controller.rb:19:in `index'
157
-
158
-
159
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
160
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
161
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.5ms)
162
-
163
-
164
- Started GET "/" for 127.0.0.1 at 2013-02-07 00:48:27 +0100
165
- Processing by ProjectsController#index as HTML
166
- Project Load (0.8ms) SELECT "projects".* FROM "projects" 
167
- Rendered projects/index.html.erb within layouts/application (0.6ms)
168
- Completed 500 Internal Server Error in 13ms
169
-
170
- ActionView::Template::Error (couldn't find file 'jquery'
171
- (in /home/neo/Projekte/extr/test/dummy/app/assets/javascripts/application.js:7)):
172
- 3: <head>
173
- 4: <title>Extr</title>
174
- 5: <%= stylesheet_link_tag "application" %>
175
- 6: <%= javascript_include_tag "application" %>
176
- 7: <%= csrf_meta_tags %>
177
- 8:
178
- 9: <%= ext_base_tag %>
179
- app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___168170596_89798300'
180
- app/controllers/projects_controller.rb:19:in `index'
181
-
182
-
183
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
184
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
185
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.6ms)
38
+ Rendered projects/index.html.erb within layouts/application (3.0ms)
39
+ Compiled profils.css (0ms) (pid 12129)
40
+ Compiled projects.css (0ms) (pid 12129)
41
+ Compiled scaffold.css (0ms) (pid 12129)
42
+ Compiled application.css (13ms) (pid 12129)
43
+ Compiled application.js (0ms) (pid 12129)
44
+ Completed 200 OK in 46ms (Views: 43.3ms | ActiveRecord: 0.2ms)
186
45
 
187
46
 
188
- Started GET "/" for 127.0.0.1 at 2013-02-07 00:48:28 +0100
189
- Processing by ProjectsController#index as HTML
190
- Project Load (0.2ms) SELECT "projects".* FROM "projects"
191
- Rendered projects/index.html.erb within layouts/application (0.6ms)
192
- Completed 500 Internal Server Error in 12ms
193
-
194
- ActionView::Template::Error (couldn't find file 'jquery'
195
- (in /home/neo/Projekte/extr/test/dummy/app/assets/javascripts/application.js:7)):
196
- 3: <head>
197
- 4: <title>Extr</title>
198
- 5: <%= stylesheet_link_tag "application" %>
199
- 6: <%= javascript_include_tag "application" %>
200
- 7: <%= csrf_meta_tags %>
201
- 8:
202
- 9: <%= ext_base_tag %>
203
- app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___168170596_89798300'
204
- app/controllers/projects_controller.rb:19:in `index'
205
-
206
-
207
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
208
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
209
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.1ms)
210
-
211
-
212
- Started GET "/" for 127.0.0.1 at 2013-02-07 00:49:53 +0100
213
- Processing by ProjectsController#index as HTML
214
- Project Load (0.3ms) SELECT "projects".* FROM "projects" 
215
- Rendered projects/index.html.erb within layouts/application (0.7ms)
216
- Completed 500 Internal Server Error in 52ms
217
-
218
- ActionView::Template::Error (couldn't find file 'jquery'
219
- (in /home/neo/Projekte/extr/test/dummy/app/assets/javascripts/application.js:7)):
220
- 3: <head>
221
- 4: <title>Extr</title>
222
- 5: <%= stylesheet_link_tag "application" %>
223
- 6: <%= javascript_include_tag "application" %>
224
- 7: <%= csrf_meta_tags %>
225
- 8:
226
- 9: <%= ext_base_tag %>
227
- app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___168170596_89798300'
228
- app/controllers/projects_controller.rb:19:in `index'
229
-
230
-
231
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
232
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
233
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.0ms)
234
-
235
-
236
- Started GET "/" for 127.0.0.1 at 2013-02-07 00:49:54 +0100
237
- Processing by ProjectsController#index as HTML
238
- Project Load (0.2ms) SELECT "projects".* FROM "projects"
239
- Rendered projects/index.html.erb within layouts/application (0.6ms)
240
- Completed 500 Internal Server Error in 12ms
241
-
242
- ActionView::Template::Error (couldn't find file 'jquery'
243
- (in /home/neo/Projekte/extr/test/dummy/app/assets/javascripts/application.js:7)):
244
- 3: <head>
245
- 4: <title>Extr</title>
246
- 5: <%= stylesheet_link_tag "application" %>
247
- 6: <%= javascript_include_tag "application" %>
248
- 7: <%= csrf_meta_tags %>
249
- 8:
250
- 9: <%= ext_base_tag %>
251
- app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___168170596_89798300'
252
- app/controllers/projects_controller.rb:19:in `index'
253
-
254
-
255
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
256
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
257
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.7ms)
258
-
259
-
260
- Started GET "/" for 127.0.0.1 at 2013-02-07 00:50:14 +0100
261
- Processing by ProjectsController#index as HTML
262
- Project Load (0.3ms) SELECT "projects".* FROM "projects" 
263
- Rendered projects/index.html.erb within layouts/application (0.6ms)
264
- Compiled application.js (0ms) (pid 3859)
265
- Completed 200 OK in 25ms (Views: 22.8ms | ActiveRecord: 0.3ms)
266
-
267
-
268
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-02-07 00:50:14 +0100
269
- Served asset /application.css - 200 OK (11ms)
270
-
271
-
272
- Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-02-07 00:50:14 +0100
273
- Served asset /profils.css - 200 OK (4ms)
47
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-10 19:04:35 +0200
48
+ Reload config from extdirect.yml file
49
+ Served asset /application.css - 200 OK (26ms)
274
50
 
275
51
 
276
- Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-02-07 00:50:14 +0100
277
- Served asset /projects.css - 200 OK (2ms)
52
+ Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2014-04-10 19:04:35 +0200
53
+ Reload config from extdirect.yml file
54
+ Served asset /profils.css - 200 OK (2ms)
278
55
 
279
56
 
280
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-02-07 00:50:14 +0100
57
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-04-10 19:04:35 +0200
58
+ Reload config from extdirect.yml file
281
59
  Served asset /scaffold.css - 200 OK (2ms)
282
60
 
283
61
 
284
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-02-07 00:50:14 +0100
285
- Served asset /application.js - 200 OK (2ms)
62
+ Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2014-04-10 19:04:35 +0200
63
+ Reload config from extdirect.yml file
64
+ Served asset /projects.css - 200 OK (5ms)
286
65
 
287
66
 
288
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-02-07 00:50:16 +0100
289
- Processing by ProjectsController#rpcextjs410 as HTML
290
- Rendered projects/rpcextjs410.html.erb within layouts/application (5.5ms)
291
- Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)
67
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-10 19:04:35 +0200
68
+ Reload config from extdirect.yml file
69
+ Served asset /application.js - 200 OK (4ms)
292
70
 
293
71
 
294
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-02-07 00:50:16 +0100
295
- Served asset /application.js - 304 Not Modified (0ms)
72
+ Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2014-04-10 19:04:38 +0200
73
+ Reload config from extdirect.yml file
74
+ Processing by ProjectsController#rpcextjs410 as HTML
75
+ Rendered projects/rpcextjs410.html.erb within layouts/application (6.9ms)
76
+ Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms)
296
77
 
297
78
 
298
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-02-07 00:50:17 +0100
79
+ Started POST "/extr/direct_router" for 127.0.0.1 at 2014-04-10 19:04:40 +0200
80
+ Reload config from extdirect.yml file
299
81
  Processing by Extr::RouterController#direct as JSON
300
- Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"op9iXngWlN/x8ppy+qTwvJtVErHgFB/fuVP+1rjZE4s=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"op9iXngWlN/x8ppy+qTwvJtVErHgFB/fuVP+1rjZE4s=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
82
+ Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
301
83
  Processing by ProfilsController#getBasicInfo as JSON
302
- Parameters: {"data"=>[{"authenticity_token"=>"op9iXngWlN/x8ppy+qTwvJtVErHgFB/fuVP+1rjZE4s=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
84
+ Parameters: {"data"=>[{"authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
303
85
  Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
304
86
  Processing by ProfilsController#getPhoneInfo as JSON
305
87
  Parameters: {"data"=>[{"uid"=>5}]}
306
- Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
307
- Completed 200 OK in 20ms (Views: 0.8ms | ActiveRecord: 0.0ms)
88
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
89
+ Completed 200 OK in 22ms (Views: 0.8ms | ActiveRecord: 0.0ms)
308
90
 
309
91
 
310
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-02-07 00:50:18 +0100
92
+ Started POST "/extr/direct_router" for 127.0.0.1 at 2014-04-10 19:04:40 +0200
93
+ Reload config from extdirect.yml file
311
94
  Processing by Extr::RouterController#direct as JSON
312
95
  Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
313
96
  Processing by ProfilsController#getLocationInfo as JSON
314
97
  Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
315
- Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
316
- Completed 200 OK in 7ms (Views: 1.0ms | ActiveRecord: 0.0ms)
98
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
99
+ Completed 200 OK in 16ms (Views: 0.5ms | ActiveRecord: 0.0ms)
317
100
 
318
101
 
319
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-02-07 00:50:32 +0100
102
+ Started POST "/extr/direct_router" for 127.0.0.1 at 2014-04-10 19:04:43 +0200
103
+ Reload config from extdirect.yml file
320
104
  Processing by Extr::RouterController#direct as JSON
321
- Parameters: {"extTID"=>"4", "extAction"=>"Profil", "extMethod"=>"updateBasicInfo", "extType"=>"rpc", "extUpload"=>"false", "authenticity_token"=>"op9iXngWlN/x8ppy+qTwvJtVErHgFB/fuVP+1rjZE4s=", "foo"=>"bar", "uid"=>"34", "name"=>"Test name", "email"=>"test@company.com", "company"=>"Test company"}
105
+ Parameters: {"extTID"=>"4", "extAction"=>"Profil", "extMethod"=>"updateBasicInfo", "extType"=>"rpc", "extUpload"=>"false", "authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "foo"=>"bar", "uid"=>"34", "name"=>"Test name", "email"=>"test@company.com", "company"=>"Test company"}
322
106
  Processing by ProfilsController#updateBasicInfo as JSON
323
- Parameters: {"extTID"=>"4", "extAction"=>"Profil", "extMethod"=>"updateBasicInfo", "extType"=>"rpc", "extUpload"=>"false", "authenticity_token"=>"op9iXngWlN/x8ppy+qTwvJtVErHgFB/fuVP+1rjZE4s=", "foo"=>"bar", "uid"=>"34", "name"=>"Test name", "email"=>"test@company.com", "company"=>"Test company"}
107
+ Parameters: {"extTID"=>"4", "extAction"=>"Profil", "extMethod"=>"updateBasicInfo", "extType"=>"rpc", "extUpload"=>"false", "authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "foo"=>"bar", "uid"=>"34", "name"=>"Test name", "email"=>"test@company.com", "company"=>"Test company"}
324
108
  Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
325
- Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
326
-
327
-
328
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-02-07 00:50:48 +0100
329
- Processing by Extr::RouterController#direct as JSON
330
- Parameters: {"authenticity_token"=>"op9iXngWlN/x8ppy+qTwvJtVErHgFB/fuVP+1rjZE4s=", "textArea"=>"", "fileUpload1"=>#<ActionDispatch::Http::UploadedFile:0xb5aa5630 @original_filename="A1771.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"fileUpload1\"; filename=\"A1771.txt\"\r\nContent-Type: text/plain\r\n", @tempfile=#<File:/tmp/RackMultipart20130207-3859-kflnzx>>, "extTID"=>"5", "extAction"=>"ApplicationController", "extMethod"=>"action3", "extType"=>"rpc", "extUpload"=>"true"}
331
- Processing by ApplicationController#action3 as JSON
332
- Parameters: {"authenticity_token"=>"op9iXngWlN/x8ppy+qTwvJtVErHgFB/fuVP+1rjZE4s=", "textArea"=>"", "fileUpload1"=>#<ActionDispatch::Http::UploadedFile:0xb5aa5630 @original_filename="A1771.txt", @content_type="text/plain", @headers="Content-Disposition: form-data; name=\"fileUpload1\"; filename=\"A1771.txt\"\r\nContent-Type: text/plain\r\n", @tempfile=#<File:/tmp/RackMultipart20130207-3859-kflnzx>>, "extTID"=>"5", "extAction"=>"ApplicationController", "extMethod"=>"action3", "extType"=>"rpc", "extUpload"=>"true"}
333
- Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
334
- Rendered inline template (0.6ms)
335
- Completed 200 OK in 6ms (Views: 1.9ms | ActiveRecord: 0.0ms)
336
- Connecting to database specified by database.yml
337
- Connecting to database specified by database.yml
338
-
109
+ Completed 200 OK in 15ms (Views: 0.3ms | ActiveRecord: 0.0ms)
339
110
 
340
- Started GET "/" for 127.0.0.1 at 2013-05-12 20:43:42 +0200
341
- Connecting to database specified by database.yml
342
- Processing by ProjectsController#index as HTML
343
- Project Load (0.4ms) SELECT "projects".* FROM "projects" 
344
- Rendered projects/index.html.erb within layouts/application (7.1ms)
345
- Completed 200 OK in 163ms (Views: 159.9ms | ActiveRecord: 0.4ms)
346
111
 
347
-
348
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 20:43:44 +0200
349
- Served asset /application.css - 200 OK (13ms)
112
+ Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2014-04-10 19:04:55 +0200
113
+ Reload config from extdirect.yml file
114
+ Processing by ProjectsController#rpcextjs410 as HTML
115
+ Rendered projects/rpcextjs410.html.erb within layouts/application (5.5ms)
116
+ Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
350
117
 
351
118
 
352
- Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 20:43:44 +0200
353
- Served asset /profils.css - 200 OK (2ms)
119
+ Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2014-04-10 19:04:56 +0200
120
+ Reload config from extdirect.yml file
121
+ Served asset /profils.css - 304 Not Modified (0ms)
354
122
 
355
123
 
356
- Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 20:43:44 +0200
357
- Served asset /projects.css - 200 OK (2ms)
124
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-10 19:04:56 +0200
125
+ Reload config from extdirect.yml file
126
+ Served asset /application.css - 304 Not Modified (1ms)
358
127
 
359
128
 
360
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 20:43:44 +0200
361
- Served asset /scaffold.css - 200 OK (2ms)
129
+ Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2014-04-10 19:04:56 +0200
130
+ Reload config from extdirect.yml file
131
+ Served asset /projects.css - 304 Not Modified (0ms)
362
132
 
363
133
 
364
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 20:43:44 +0200
365
- Served asset /application.js - 200 OK (2ms)
134
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-04-10 19:04:56 +0200
135
+ Reload config from extdirect.yml file
136
+ Served asset /scaffold.css - 304 Not Modified (0ms)
366
137
 
367
138
 
368
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:43:47 +0200
369
- Processing by ProjectsController#rpcextjs410 as HTML
370
- Rendered projects/rpcextjs410.html.erb within layouts/application (7.7ms)
371
- Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.0ms)
139
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-10 19:04:56 +0200
140
+ Reload config from extdirect.yml file
141
+ Served asset /application.js - 304 Not Modified (0ms)
372
142
 
373
143
 
374
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:43:48 +0200
144
+ Started POST "/extr/direct_router" for 127.0.0.1 at 2014-04-10 19:04:57 +0200
145
+ Reload config from extdirect.yml file
375
146
  Processing by Extr::RouterController#direct as JSON
376
- Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
147
+ Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
377
148
  Processing by ProfilsController#getBasicInfo as JSON
378
- Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
149
+ Parameters: {"data"=>[{"authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
379
150
  Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
380
151
  Processing by ProfilsController#getPhoneInfo as JSON
381
152
  Parameters: {"data"=>[{"uid"=>5}]}
382
153
  Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
383
- Completed 200 OK in 23ms (Views: 1.0ms | ActiveRecord: 0.0ms)
154
+ Completed 200 OK in 58ms (Views: 0.9ms | ActiveRecord: 0.0ms)
384
155
 
385
156
 
386
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:43:49 +0200
157
+ Started POST "/extr/direct_router" for 127.0.0.1 at 2014-04-10 19:04:57 +0200
158
+ Reload config from extdirect.yml file
387
159
  Processing by Extr::RouterController#direct as JSON
388
160
  Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
389
161
  Processing by ProfilsController#getLocationInfo as JSON
390
162
  Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
391
163
  Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
392
- Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.0ms)
393
-
394
-
395
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:45:51 +0200
396
- Processing by ProjectsController#rpcextjs410 as HTML
397
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.0ms)
398
- Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
399
-
400
-
401
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:45:54 +0200
402
- Processing by ProjectsController#rpcextjs410 as HTML
403
- Rendered projects/rpcextjs410.html.erb within layouts/application (39.9ms)
404
- Completed 200 OK in 46ms (Views: 45.5ms | ActiveRecord: 0.0ms)
405
-
406
-
407
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:45:57 +0200
408
- Processing by ProjectsController#rpcextjs410 as HTML
409
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.1ms)
410
- Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
411
-
412
-
413
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:46:03 +0200
414
- Processing by ProjectsController#rpcextjs410 as HTML
415
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.2ms)
416
- Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
417
-
418
-
419
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:46:04 +0200
420
- Processing by ProjectsController#rpcextjs410 as HTML
421
- Rendered projects/rpcextjs410.html.erb within layouts/application (3.9ms)
422
- Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
423
-
424
-
425
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:46:04 +0200
426
- Processing by ProjectsController#rpcextjs410 as HTML
427
- Rendered projects/rpcextjs410.html.erb within layouts/application (3.7ms)
428
- Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
429
-
430
-
431
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:46:05 +0200
432
- Processing by ProjectsController#rpcextjs410 as HTML
433
- Rendered projects/rpcextjs410.html.erb within layouts/application (3.8ms)
434
- Completed 200 OK in 9ms (Views: 9.3ms | ActiveRecord: 0.0ms)
164
+ Completed 200 OK in 18ms (Views: 0.5ms | ActiveRecord: 0.0ms)
435
165
 
436
166
 
437
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:46:19 +0200
167
+ Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2014-04-10 19:19:14 +0200
168
+ Reload config from extdirect.yml file
438
169
  Processing by ProjectsController#rpcextjs410 as HTML
439
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.2ms)
440
- Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)
170
+ Rendered projects/rpcextjs410.html.erb within layouts/application (5.6ms)
171
+ Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms)
441
172
 
442
173
 
443
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 20:46:19 +0200
444
- Served asset /application.css - 304 Not Modified (4ms)
174
+ Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2014-04-10 19:19:14 +0200
175
+ Reload config from extdirect.yml file
176
+ Served asset /profils.css - 304 Not Modified (3ms)
445
177
 
446
178
 
447
- Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 20:46:19 +0200
448
- Served asset /profils.css - 304 Not Modified (0ms)
179
+ Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2014-04-10 19:19:14 +0200
180
+ Reload config from extdirect.yml file
181
+ Served asset /projects.css - 304 Not Modified (0ms)
449
182
 
450
183
 
451
- Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 20:46:19 +0200
452
- Served asset /projects.css - 304 Not Modified (0ms)
184
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-04-10 19:19:14 +0200
185
+ Reload config from extdirect.yml file
186
+ Served asset /application.css - 304 Not Modified (0ms)
453
187
 
454
188
 
455
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 20:46:19 +0200
189
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2014-04-10 19:19:14 +0200
190
+ Reload config from extdirect.yml file
456
191
  Served asset /scaffold.css - 304 Not Modified (0ms)
457
192
 
458
193
 
459
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 20:46:19 +0200
194
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-04-10 19:19:14 +0200
195
+ Reload config from extdirect.yml file
460
196
  Served asset /application.js - 304 Not Modified (0ms)
461
197
 
462
198
 
463
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:46:20 +0200
199
+ Started POST "/extr/direct_router" for 127.0.0.1 at 2014-04-10 19:19:15 +0200
200
+ Reload config from extdirect.yml file
464
201
  Processing by Extr::RouterController#direct as JSON
465
- Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
202
+ Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
466
203
  Processing by ProfilsController#getBasicInfo as JSON
467
- Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
204
+ Parameters: {"data"=>[{"authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
468
205
  Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
469
206
  Processing by ProfilsController#getPhoneInfo as JSON
470
207
  Parameters: {"data"=>[{"uid"=>5}]}
471
- Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
472
- Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
208
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
209
+ Completed 200 OK in 20ms (Views: 0.9ms | ActiveRecord: 0.0ms)
473
210
 
474
211
 
475
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:46:20 +0200
212
+ Started POST "/extr/direct_router" for 127.0.0.1 at 2014-04-10 19:19:16 +0200
213
+ Reload config from extdirect.yml file
476
214
  Processing by Extr::RouterController#direct as JSON
477
215
  Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
478
216
  Processing by ProfilsController#getLocationInfo as JSON
479
217
  Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
480
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
481
- Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.0ms)
482
-
483
-
484
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:49:47 +0200
485
- Processing by ProjectsController#rpcextjs410 as HTML
486
- Rendered projects/rpcextjs410.html.erb within layouts/application (3.8ms)
487
- Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms)
488
-
489
-
490
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 20:49:47 +0200
491
- Served asset /application.css - 304 Not Modified (8ms)
492
-
493
-
494
- Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 20:49:47 +0200
495
- Served asset /profils.css - 304 Not Modified (0ms)
218
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
219
+ Completed 200 OK in 15ms (Views: 0.5ms | ActiveRecord: 0.0ms)
496
220
 
497
221
 
498
- Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 20:49:47 +0200
499
- Served asset /projects.css - 304 Not Modified (0ms)
222
+ Started POST "/extr/direct_router" for 127.0.0.1 at 2014-04-10 19:19:24 +0200
223
+ Reload config from extdirect.yml file
224
+ Processing by Extr::RouterController#direct as JSON
225
+ Parameters: {"authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "textArea"=>"", "fileUpload1"=>#<ActionDispatch::Http::UploadedFile:0xa6556d0 @original_filename="sgj.pdf", @content_type="application/pdf", @headers="Content-Disposition: form-data; name=\"fileUpload1\"; filename=\"sgj.pdf\"\r\nContent-Type: application/pdf\r\n", @tempfile=#<Tempfile:/tmp/RackMultipart20140410-12129-yczn8q>>, "extTID"=>"4", "extAction"=>"ApplicationController", "extMethod"=>"action3", "extType"=>"rpc", "extUpload"=>"true"}
226
+ Processing by ApplicationController#action3 as JSON
227
+ Parameters: {"authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "textArea"=>"", "fileUpload1"=>#<ActionDispatch::Http::UploadedFile:0xa6556d0 @original_filename="sgj.pdf", @content_type="application/pdf", @headers="Content-Disposition: form-data; name=\"fileUpload1\"; filename=\"sgj.pdf\"\r\nContent-Type: application/pdf\r\n", @tempfile=#<Tempfile:/tmp/RackMultipart20140410-12129-yczn8q>>, "extTID"=>"4", "extAction"=>"ApplicationController", "extMethod"=>"action3", "extType"=>"rpc", "extUpload"=>"true"}
228
+ Completed 200 OK in 365ms (Views: 364.1ms | ActiveRecord: 0.0ms)
229
+ Rendered inline template (126.1ms)
230
+ Completed 200 OK in 770ms (Views: 127.2ms | ActiveRecord: 0.0ms)
500
231
 
501
232
 
502
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 20:49:47 +0200
503
- Served asset /scaffold.css - 304 Not Modified (0ms)
233
+ Started POST "/extr/direct_router" for 127.0.0.1 at 2014-04-10 19:19:39 +0200
234
+ Reload config from extdirect.yml file
235
+ Processing by Extr::RouterController#direct as JSON
236
+ Parameters: {"authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "textArea"=>"%PDF-1.4\r\n%��������\r\n2 0 obj\r\n<</Length 3 0 R/Filter/FlateDecode>>\r\nstream\r\nx��XK��6\u0010����9�\u001DU�a\e����\u000E���@\u000ECNyA�\u0006����)����G7��2��������W%�\v4�O�4�\u0011t�{}��Sp��O��~��������?N��I\ez��p������34�����\u0006\u0001�\u001C\u0004�g\u001C���Jha�3]���so��\f�:������z�@��[�L��\u007F�x\u0012t��\e����h������#_���������1\u000E\u001C6�\u0001�&pB\r\n5�\t�\u001E\t�\u0011��\b����T/)�b�%'^�����\b�8?���53��\a\u0010cK������Q�v(\u000F��_���x\u0010�wd\u007F\u0015��-�?H�����72���\u0002��c\u0014�O��\u0005!aQ�\u0012\f�����V��\u0003qYjC�<��+�\\�=�r���2]K��K�Q\"���\e]��3�\u0004z\v�R\a��dG��>\u0014�U�����h/>l�0>\u0006�����B:\u0013�\\�n�Q��X��4�E������\u0003y'y$-���c\u001C%���98s���5=�P��\u001C���0j��u��\u0015<��*��-�\u0014���p�V\u0015�`vL����\u0018X�(,�lm6�\u0010�%��l��}���xX'�������|�����}2����gm{���>�2\u0014ak��.�&��o9\u000E�BF�\u0017\t�\u0001�\\ya\u000E��0\u0002=d!H���4T �]�\u0011Q��\e�=�\u0001X�-T4C�b�p��ds��>�\blY\u001F��\u0015�1����\r\nD`\u0006�-\u0012\u001Erd]��v\u0004�#k^2�}�j�:�h�D`\u0016w�����\u0013���3�k*��IOW\u000E^K3lU��Jm\u0005Nxs�d�\e%��}0�\u0019t�����\u0003�\u0014��J�]*/��\b��\u0006��hx�qD�2�\u0010>t��s�\u001D�'�k��~\r\n����\u0010�\u0003\u0018������(��{Hi���\u0003���9��,�\u001E�v�_\r\n\u0013��\u001C�0�\"��;�7dN�A��k�����������0� h@\u000E��������\u001CN�\u0005e�\u001F�L�g\u0010c\u0014 �{�;�����%����Y�D���?W�`�:�m���] \u0011u�\"����u�\u0017en���z5'h�������@���}P�\f�9�$��)�\u001DN��\u0014����$�G�X�z��\u0011�j�;7������\u0010�}�����~wd��\u0013�s8���=J��U����|='����\u0014��D�NT��\u001E!��\u0010U�H\u0019v��\u0010d���~T\u001C�'e�%\"�\u001F!*f�%m��A\vBNig�\u0014�C�����\bL5���1cm��`W�e_FY��=V�sy�\u0017\u001D o�*\a�����z����(����f�zH'����4��dr�\v�����jysh���?���(�\u001C:������P\u0010���!� }b�GH%���|�\u000E�NUi�n9�����C���Eh����8���t\u0014�����E�\u001F������1,���\ev\u0019RlV���8�oU7��'P&�[L\u0006\u0018\u00141�\u000F����n�\u0019��#�4\u0011\ef���\u001C�t\u000E��//������Z8G����3IF��_T���\u000FCY��l��6Kr*\u000F\v��\r\n\"\u0012z\r\n9�R��uk���J�Hr#AW�T\u0018\u001C#\u0018���\u0017��%�4S�*���6��Ba�Z#��5\u001F�\u001D\b����Y\u0012|q����xL�|�\u0011HV\u0015r{�JwT�$%�p�C/�����]�RI��\\��&v����������\u0010\v�[� ���CP��(��4����y���xBq���\u00126�aK�m4bY����\u007F����Q�,��3P�\v��x��P���=\e�\"1���\f4��������m<1����l-�n\u0002�*\e��\u0019ns�3H�d����}>o$�O���B�_���V������XB\u000F�\"'O\u001F\u001F�x\u001E\u001F���m����4��G�\r\nKE=#~\u0002�O\u0004���\t\\�\u0013��{x?wO��6����?e�C�/1\u0015/�\r\nendstream\r\nendobj\r\n\r\n3 0 obj\r\n1596\r\nendobj\r\n\r\n5 0 obj\r\n<</Length 6 0 R/Filter/FlateDecode>>\r\nstream\r\nx��YI��F\u0014��W�\u001C�S{I`\u0004�m\u0005\u0006r��!�&�,0d\u0002������VI�d��\u0004��R��m����I6_\u000F�4�\u0011��v�����S�|����w���\u0006�/\u007F\u001E���u���\u0001�����G�H����z6�Wg9���\a�\r\n%e\u007F�g1j#.��/\u001F\u000E�����aR��_<M\eiD���Tp�\u0011�;<^�CX|��\r\nX\u0001�Q\r\n������\u001D�\u0017�{��@��Di�c\vKB\t'=�\u0018^�/�@�\u0010����2�Q)�I\u0010I�\\y��(\v\a�'��+�[�)�*\u001A\u0004�\u0015X��W-������$:\u001F�aE��YZ�l��}�/�V�������h�����\u000E@�&�W���\u0004�\u001A���BZ���\u0001����<;��@\u000E#�I?g\u0019����\bY�\u001Du}�>���\u000E��u����7�����@i�8�\u001D�w�1.����\u00154�h�E�����\u0011x�n����{TPlg&\r\n����\u000E�JPdi���\u0014\u001Ds���\u001E����0�\u0001��^\u001C���\b}lP\u0004�\r\n�w�Q]\v�X�X��~ 9���\a�����G��7����>\u001F��������\u001C\u0014�7�4�\u000FVw\e���8U0�o�\f�\u000Ed�NO\ft�\u0010�\f��:��\u0003\u0019��3\u0003k���\u0001}�`\u0010v\u0010�Uzb���������\u001A�^��l_xz�)���,Sl��h�u\u001F\u0010�c���\u001E�M��\u0003=��6����+Z\u0012\u001AwA?Ak\u0017�\u0003Z������[��G����k�3���zV�w��p_�-�[�\u000E4� �\"3�Ka���+��n�S��$$O\r\n�i�\u000E\u0019�F���\u001E��\u001F4�a��\t�%')�\u000E�\u00108�ReB����K'�^z�K�\r\n�\"�\r\n���\u0015uy�\u0003]U�+\u0011�\u0016\u0012����K���m�Z��� $��:���Z:!L\u001E��\u0011^��U\r\n4+\u001C�/�vK3�f5�8`��_\u0017�\u0003�JyJja�+:h�����BR]J��Z�\u000F���inQ�\r\n����Gtmt�\u00168��e:\u0011\r\n�@e���u\u0003(5��!|�\r\n���i\u0010��\u0015h�L�\f�Af�s3�\":e7D\u0010�lTUm6p�U6a\u0018OJ\u0013R|���-�\vB��2�S�\u0012\"!�d|���\u0003\u0001\u001D7I�\b3\u001E5C\u001FE��;)U\u0005�\u001C�!>��z�3���\fuT\v(����\u001C�\u0011 \b�K�qL\e\u000F�B���v��]&�����!\u0012�@�;�/���\u0004���W2�\u0004&l\u0001\u0004�\u0003� }y�P���6\u0017Z�2:&�a�-�]����������_�R�\u0018r��=t�\u0015)\v^o$\u0005�\e\u0010��NPU'Y*�7&��\u0018���-�\u000E}\u000FI6�\u0005�iN\u007F>���\u0014�I�\u00192��@��s���L�<TF�\u001A=\u0014��k��&�x|�R���\r\n[��p����\"���4�����T&7�*�I3\u0003W��(��p��!t��=�E3.�����\u001CQ\u001D\u0015���\u0012����k�dN,��,�\u0010�R�u0�$�L�\u0013�RQ(��H���\u000E\u001C��2\u001D�c\u0015\\F�����\u0004�,q\t\b\u0010�l\u0018*�u���\fa\u0017���-\\����7p���P����\\�F&�f1������\efPn\u0016L�\u001C\"xyJ�\u001EsE�)��|�\u001F��\t ��itB� L�\bv���#\t�G��74�\u0010$R�mL�\u0003�-wDE\u001DB!�tGg���y�l��\u0011I�>\u001C����[�l\u0004�\u0017����h���*y�W\t<h��R\u0013W������\u0002\u0012\u0019�i��(�\r\n�\t�����:x.Yi\u0011��X�n�[1M1�t|���\"��V�t��dJ��D�\u0015���\e����,=\u0016���`�T�=��$���4�������\u001Dd��\f\u001EZ�%P�}q��/�0\u0002�\r\nendstream\r\nendobj\r\n\r\n6 0 obj\r\n1516\r\nendobj\r\n\r\n8 0 obj\r\n<</Length 9 0 R/Filter/FlateDecode>>\r\nstream\r\nx��YK��6\u0010����9�\u0013����1tO�\u0003\v9l2�C�-\u000FX���e�~JO�,Y���a\t�4��T���R�'>|>�;���75�'\u0018F�����\u001F�_�\e������_���Ii|d���_~\u001F�_`�0�����/3\\���'�\"����\u0001�����B�gsa\v��\u0002��M��\u0016������������������%w\u0013����9�d\u001A_;�x1�����x9�?�\u001F��jBS�Ab��|2� o�O?8�>��;��0��Gk�\u0019�\u0014h��\u0013G+U��{�\u00197.\u0017�w>�$�2�+�;�b��\u0015^)�������(\u0015V\u0004��\u0015����\u0001\u0019\u0012&L�(�_�e�\u0015NF{��\u0001\f��(�_�e�\u0015NF{�s�K��[w�V)���5�'�D}��g�&�xD}��Xf\u001CO�\u0018���\u0017c@�\u001Fr*]~0]\u000FW]��GJ\"O�#\t��F�\fRg���V��:�5p��H��J���^����t�\tU4(v�t���\u000E�\u0011��#\u007F��\\\u00147\u0006\u0011�&\v����8a����3���������\u0003���-�]H���:jiB\u0003\\:�r]�S�_l�0�h?\u0014~�U�9\\O\u0016\u0011�m�}u�Wuj{��\t[w��K�\u001A\r\n��\u0002b�c��\u001C��\u0015\u001D�]\u001F�)g�{��M�����\u0018�����X�=��H6��\u0010\u0012�Q�)%P���\u0003�{�c�\bE|��7��Wv��mx�4��[�m����E|\u001D_4)%�\u001E����P��4�DbJ�\u0004\u000E�~�\u001A=\u0015i\u0005W�\u0019�=N����*�\u0019��e�\u0005S�\u001C��=\f�,�/��!~E�F��\u0018��\b\u001D\u0013t��>z����R��m`d�J���s��$8u��d]�`LF��c�W��g��\u001C��F�����c�EGU�FUM����LQ�\\b�\t\u0015��W�t&&�-�I�\\\u0004\u0012}�`>��`J\t�=x\v��Q����d\e\r\nRiI���jCt\u000E�\u0016f���tz#V\u001F)}_�.�W��u\\�\u0018C\u001AT0\u001CkY���X9�x�bPIE=��*���Tdd[�\u001Au���Wm�\u001D�\u001E�����Y\u0014�+������m�5�|5/��: �\u0014�V�(��\u001A�J\u0001���@����9)'�]}\r\n��\u001C���\u000E�����X[�\u0002���k\u0001B��\u0004�\u000E��\u0005a��\u0018o�����>�x��Z���\u0012�z�F�'y�����aF�951-xX0�}�a�nE�6�UV�Z�y�\u0013k��D�&��G|�\u00023���cH�\u0018N\f$���$v5��3f����\\q��\u007F����E��d1�s����cM\\Q�������F�l��*\u0010;e���\u001D��\u0002q��v\u001F\u000F��Rc�\u0002�����u���>%5�@Z�\u0018i\u0006�\f�)\u0014\u0013\b���?���CE�!x�\u0006���\u0012H\bO�=��\e�b��\u001D3�X@h����Cg�Zu\u001E�d�5���\u007F�Lj���XG^��\u0002\u000F�&�\u007F���\u0016rWD�In\u0010��A������\u0004�N���� s;�~���T 1�bt�N*���cc��I���V'�S v�B6\u0005��\u0013\u0013��\u001E��Z��m�\u0018\r\n��5��b���Wil��d����6il\u001D\u0013�=h������\u001D+�<\v�� '�����\u0011O�f��\u0004�O��\u0005����\u0018/\u0012/�E^�>Hfx? �m����Q��>���?0�v{g)B����/4C\b(*�[�\u00190\u0015D��\u001Cw\u0001?�D98�:�\u0010�ea��1(j�5�K\u0004����p���ON{��`7Y�\u0016�M��=���V3��pK�2���I�\u0002�|Fya!T7�_4�i����\u0005�����C�l\u000F\bp�x;D�\u0016\u007F8�D��\r\nz�A�~���%L'�}^@j�\u0018���j���h�������[�\v6M��X\u0004��1m\u000F����m�4/�&G��M��p����6�`���wa���j��\u001D�v����FJLMmr�0��^\u0014����i_{/>���U�s\u001D9��1C';_��Y'�zv�����W\u0004iz\u0010=A���\u001D:��,Z��\b��@���\u007F�\u001A��8t��9Q�e\u0002�8q�Yn(\\�����\f)�V0���������4�xG���\t.���/�\u0013���}�f�l?E%S�g���v��\u000F��Z���\u000F��Q����&fu����\u0002��m\u0002����<Y��\r\nendstream\r\nendobj\r\n\r\n9 0 obj\r\n1782\r\nendobj\r\n\r\n11 0 obj\r\n<</Length 12 0 R/Filter/FlateDecode>>\r\nstream\r\nx��YK�$7\u0012�����B���R&\u0014\t��U\v�=�n�\u000F�7?��,x.��\u000EE�\u0011J����\u0019���K�x~�E�x��\u001F��'1\t�4����\u0016#_�������1���y���������s�Z���\u007F��g�\u0001�����Mr��e��nr�?��E:�:���M��|nl�k�\\�X�w\u007F\a_\u0003;\u0016y�\u0003���$����@������+�(��(�l\u001D�2�BO}a�\u000E������\"�w�PF;ps\u0014���B�\u001Dta\u007F\a_\u0013��� ��aqDO'B�\u001D���\u000E�&\t���B�eaB�S_���.���k�P�\u001D(�\\��5\tEO}��\u000E������B�w\u0010\f\b\u0016��p\u0002\u0002�Eyw=[�\u0010���\u0001�\u0003��,M[���m\u001D�l�y(����x`�G\\�����8���w\u000E�%\u001C�`�\u0001+\u0006��L�\u0011t)�l$��\u0014\u0018I2^wF�`Y\u001A�+U��#����\u00038_��\b\b�`4��\u0005V�\u00186��1��k�HQ��l���Z3V\u000Ey!\u0018�U\u001C��\r\n\t��\u0016�\u0013'|�\u0018\vJ��}����C�{���������\u000F8SM���p�N�m�*�x���E]�Q���*V|~�O\e�����*���0\u0012\u001E�U����^�_��c���y���\u0003�\u0015��;nU�\u0016��V�W\u000F!�Ex\u001A���S���]�M�1\u000E\u000EG�H�����.��`�J��A���\u0006}�\r\n�\u0006R;��$}\u0004�A}X�g\\DZJ�*\eJ���Tt��s������X�=����{��N\u000F��\u0002�\u0015$!,��i4���K\r\n\\(��$_�@�B\u000F����U\"���zHc��\u0015\u001C���U�\u007F�o����\a��Ma$�~�1p��S`(��\u0013M��>�+M���\u007F���|V\u001C|��0IM��F}\u0015h(�9�\r\nc�(W�Ep�tW�Q\t�Zz��\u0002P\r\nL���g�\u0001chi\u0016��_)�'��\u0016����!Gbx�WA�|5~�!�\r\n��}\v�.>�k#��)_��P�\r\nr>j�\u0004\u001A\b\va�%\u0003(��(�,�V�A)r�cW��n\u0001��\u0018\u0002��^`1��C�R\u0005}4<\u001A�����\u007F#��:��=\"n�-u�\u001E\u0016�h��\u000F��������A��fIW%�\u0017&�d��=j\b��\u0015U�2\u0004��0�X w������\u0012\u001D�+ \u001EOn0��A�G*l�vO�]�7��\eV-4\t|�3�y�\u0002�g�\u00176�Xs�����\u0004��(�u�5d\u0014���-�\u0018XL,��\u000Fe�>�a�bI\u0011�\u0003��\u0012�\u0018�0\u0018*�=Z�`\u0011z\"�����\r\nQ�\u0018��.\fz��5\u000E��\\� \f��7��\u0010o\u0006\u0002�{S�\u0011u$\u00189\u000F\u0002R\u0015���KF���N��/\r\n�� &��\u0001��\u0017v��\u0017[�0\u0004��1\u0010�\f\u001E5��\u0001|f�\u0014@p��S�\u001EQJy;�!\u001E���h�T�\u007F���!��HRtK��\r\n���\u0001�s}S\u0011R�\u001AE��<�z1:�\u001A\bE?F1�����>�k���}��7��Yn�\"kF�5\u0015t\u0012+�9NF��6���k�\u000F�a��Tx��(��\u00135��j�a�����Z9�\u0003;�\u001E^\f��`\r\n�)!�c�\u001A$���\u0003�\u0018\u0019����!��n�\t�f���^e\u0013s� �XT��i���8f�_(����X>�:��g��S{`O�\r\n\u001Fy�=M\u0003���\r\n\r\n�(�,}3yH�&�0�\u0011����\u0014�\u00184�*\u0017EO(\u0002�0��A��%z'\u0006\u0010�����D�bM@#9�w�k��&��td>��}F����|����K\u0006M�����D�52fe����k\u0016S\u0001�SYJ�\u000E��\u001CtA�x\u0013\u0001:\u001D�����\e�����Y�kT��\u0013d-�J8Q�F��\u0015� ���T��G������\u001Dh6��b��������\u000F��\a��@\u0013��'zV5�'*��B\u0010�ma�0��\u0006�!pn\t\u007F3\u0003����\b;$���)\f\u001D�h�I-�\u00134@I\u0019�k�/�����:\r\n����\f-��*��\r\n\u0017�B#\u0014[�#��f@���\u001CZ5�od\u000EF�*h?B\tZ��R�VI\u001F�%\u0010:\v���\u001A���\aE>X\u001F��r�G�U�\\X\v\\B��`C?6\r\n���Q;[���BH�\u00133:�*�*�f��|!����\u0013\e�Is�/wD�����\u0019�\u001D\u0019.i�\u001A���O\b=B\r\n\u001C���X�_�K�Ra*\u0013\r\n3\u0006(+K�\u0019�T-�\u001C`�;T��p�f��\u0005\r\n���O\u0011#\u001C���X\r\n\u0010T�dm��-��TF2�bU��i`�<\u000F>\bM��t�\u0014�Y`@\t�\u001C��\u001A4��2����i\tUm\"L��\u0015����E=3�3������S4�|�����\u0016�W\u0003G�;�9\u001FU��t�[P1s�����N���<P��.\a����{\t��[\u0006T�z-(1&�t�\u0011��3����\u0004:�h\b�\r\nv��\bifu\u001F��9\e��5TTV4�O�m�=����&�\a�sr��-�#��S4#�E��\u000F��\u0002*\u0010\e�$��������\u0001W�m�I��f1�/�����<TGv��/L\u0016\u0017�w/\u001At-�x\u0018����o��_�|�\u001C\u0019I��p`�\u0019���e\u001A�u���\u0004�_��\u00105��4Zf����\u0018>!�C�\u0003�',=6*a��\a9�?��%�3\t\u000Ed�mBS��D[����5�\u0019�w��\a���u�|=�wRn\u0016���z��Wg^*�Y7\\��\b�\u001A���sY\u000E�L�\u0013X���y�i�W��i#(���\b4�u�f>��H�x\u001F���G\r\n<�\u0018��R�h/�8��*��'\u0014N���\v\u0010\v���5\u0004���-�i&����q�\u0016v�\u0019�A`��{R���5�|\u0010\u0019?O\u007F\u0002\b�h\u001F\r\nendstream\r\nendobj\r\n\r\n12 0 obj\r\n2294\r\nendobj\r\n\r\n14 0 obj\r\n<</Length 15 0 R/Filter/FlateDecode>>\r\nstream\r\nx��ZK��F\u0012����y����\u0004���Ue0�0�\u0006\u001F���\u0005fga}����\u0011���J��6�TwI��x~�Eh�Uw�.��T��/?���\u0006��C��?/?�����K\u0017��a�;�������*��~�\u001E��\u0006�~�\u007F�v��������!����{w���?�_/_V\u0016�g�^�\u001A���\r\n�\f�\u0018��\r\n\u0012*xP0\v��\u000E��\u0015|��\r\n�L\u0016jw\u0005\r\n\u0015�\u0001�&����Pi\u0005\u001D��B>���_�B���c\u0016���\v�V���+�3I��\u0015(�U�5d����Pi\u0005\u001D��B>���_�BQ�$����Pi\u0005\u001D��B>���_Q\u0005�H�S1(\u0016�\r\n\u000F������SF\u0015����y����\f\u0016�9q&Q��=�Eu4�\t�\u0005B���\u001A>�`Z��g��N�3hPg���\u0002[���\u0004�s�,Q�\u001CpJ�8�j2�� �J�V��Jp��������GX��\u001A$��G���t�t\u001F���f�I\esS�4��U��fnZO�1O������}z�7�'���z�W�\u0003��'�/e��}�py~�rE\u0006��p��\u0010ZM�����M�&?���'��\u0012\u0018�\u000F\u000F�c��!\u0011-�\u0013\u000ENw����Nw\u0016���\f�����x�4�������^�g\u0017\u0016�S\u0018x����\r\n\r\n}l���Z�p(������f{\u0003vyNo=X�������h��(��\v\u000E���S\u0015h�d<F����\u0014\u000F��\u0006����\u000FO��d\ap���t���O4\u000E4\b���^���Q�geXT(�s?���6\b�\u0004\a�Mg���\u0012h�\u0012� \u0002�5�dU�E���\u0001�W{\u0011O�N���Rk�=\e�D�`G<\t�\r\n�f��7@�������VP,\u0016���E���NF)�Q\r\n�\u001C�m0���YFZ1�������\u0014px�\u0005{Q���\"�c.���t\bc,��\u000E��#6z������\e8zH%�d�\v���\u001F\t���\u0001iz�'\u007F6Q�`6\u0012���@j���\"����Y��l�bX\u0002�����.�����7��\a�\u0001���p\u001D�-Zc���jc�\r\n=\u0019�����al�0��\u0014���(\u0013;�z�tJ\u001F\u0011��#��C3.O\u0005�\u0002U}�s�O�8�Af\u0001��f�#�t����^����\b\u001Ek5\u0003\u000F`�\tM��S*\u0004\u0002�\r\nv�\u0016q���:)^4�#���(>���MV9�\f=H�R���\u0018R/�\f}\u0018\u0014\u0014���\u000FPb�w0\u000E�[�u\e\u0014\u0016t�B��������R��[��������[�z\u000E�1l-�:$�y�\u0010\u0013\u0015w�����j^�\esR������9T\u001E)�,�b\u0019�\u001A�#'\u0001]\u0005�[��\"RK)',��\u0016\u0011�o`�,x�U6��������\u0003�,@�\u0010r����HMEs�%����RC<�\u0016�n����\u0012\u000F�\u0005A�q\u000E��\u000F\r\nx���^\u0006�buQ3Ca\u001F{DH��\u0004LUB�\u0016���Kc��*x���T�1f���/\t���.��HJ��;\u0004\u000F!�\\��f���z&�`���5�\u001Ex�[P\u007F\u0011�\e6��hj0�p�S����(����#\u000F��$41��\u0019\u000EY��c\u00038\u001A��B��\u001D�or\u0012v \u001A9�p�:���\u0018��,��;X�\u0011\u0019`\e�\eI���j�0*xB��\u000F������}\u0001�����Dp\u0013EH������\u001E!\u007F7���*��+\u0014^vQl\u001Df�K��^�1����A������\\�?�\u0003��R<���j<Xw���\u007F�(�\u000E�*�~����7\r\n��+t\u001D\u0010/�w\u0019o,�'���1<���@5wM����3�%������\u0010�\b��\u001E\u0016�84p�5%�L�*j3B};���\u001A���0uF;��r|\u0013Cw/�F�.Y$e�W�?\b�A��Ny,�'6\u0012��l������\u000Ev��.�2�m&T��P��\u0011�9C��E�{#d0O;����\u001C��,<��U��5��'���o��2�\u0011�\u001CV?\u0017�@N\u001C���~w��=F�d\e������\u0014�\u0013Ul���)��\u0010�J�%��>���M3\u0003Y�^������v�Qav�o\v3�\u0005�������'��%MB�B��R\b��VQ�f@vP�����xQ�r�!+�4����\tj\\)�\\��$K��lgG�R\u0017�x��X�\u001D���Ah\u0016$\u001D���98,\f�\u0017�/\u0002�\b��\u0019������J*��2����\u001CteM�L�V#����i��N��\u001E_\u0019��6X��\u0005����9�\u0006^����N��/=\u001E&8�\u001F��X\u0016�.D���e,4�����&��3\u0016��[2&\u001DIl9�*`'f����'\b]���oM�pf�r\u0001��X������Lc�\u001C�C��Q\u0003dMh)�)m`\"`�Dv���T��\u0014\"��g\u001E�;Jp�b����k1w\u0015��\r\n\u0006\u000E�{�\\3\u0018b��\u001F\b�\u0019���L�������\b�G��g���T\u0003�\u00170:���\"Q-o��\u001F\e E�\u001A��\u0019\u001A�\u000E[��x3c�1�81���p�c�\u0001L���M��7�m4��\u0012l�34%���l� �\u0012!\r\nn�>�4����/�7���W�M#[�rJW���\u0019S7�JD)W��g��\u001D�\u0018�/G\u0003{\u0012�Z���\u0011]�G�\u0019����K\f>.5�<���w��� FZ���Y�����H2S��Z�]\u0010�������\u0002XnQ\u00027s�lH�W\r\n\t>le]���k���p�V�������\a9\u000E������Z�L��N��b���\\���\u001E�V����\u0019�4�}�\"���g\"x��E�7�\u0013��4�O0���I\v�\u0005\e6����S�7���mO\u001F������7���\f)XF����^ �-��|���j�%B\u001Ep�����\u001AJ��M\u007F�PG�v.���6��\u001Dy�a�<���\u001D\r\n\r\n7��-����\u0004�i\bJ�`(T��QJs���\u001E!��>-_�$\u0005�<'f;fUAV�h\u000F�~M7Ig9��E�m���\u001C�\fw�.�A\u0010V�\u000F�\u001C\u0002��6�!K\u0019m����\u00163���\fj\tL�����\u0015�gS���t\u0004\u0016F��\\���\u000E�v�Hv�ec��O�B�?\u001C��*����O��i�\u0011�\v/�\r\n93�\u0003��\"J[����#X�������[��K�\u007F���}\r\nendstream\r\nendobj\r\n\r\n15 0 obj\r\n2526\r\nendobj\r\n\r\n17 0 obj\r\n<</Length 18 0 R/Filter/FlateDecode>>\r\nstream\r\nx��Q=k�0\u0010��+4\u0017���dI\u0006!�c{�\u00160t(��\u0016:\u0014��\u007F�����!-\u0014\u000F���}�\u001D�����\u0006\r\n|���%\u001D,�A����N\u007F�\u001E\u007F�75,�[nyOm��\u0017}?\e����\b��w5-�p\u0005��'�\r\n�)\u001A�\u000Ef�\u0013E\u0018`L\u0018���q\u0011f��*�.�'��t��i\u0004�0)�\u0001�\u0015D}j.Q�����)D��f��VV��\b\r\n0��G��� eb�\u0018.�����7��i'�\u0015.+*�X\u001C��\u0017��b�������p+�������*&&\u000F�\u001F�v��j(,(�D����|���6a�c��\u0001Y�\v�Z�6~^*&vdV�\u0012_����\u0012T\t��#�Xw\u0003uOk�@�i�/U�\u001F��\e\u000F�\e�8��\r\nendstream\r\nendobj\r\n\r\n18 0 obj\r\n311\r\nendobj\r\n\r\n29 0 obj\r\n<</Length 30 0 R/Filter/FlateDecode/Length1 53020>>\r\nstream\r\nx���y|\e��?>3{�^������a��lI�e�x\u0013\u001Fq�8q\u0012'�\u0013��;�@l\u0003��!�\u001C!�\u0012s\u0013�8����9\b\u000E���B�%m�B�>%����\u0003~��!O�$��3+;����=������3�����|���\u0018_1t�:�\u0005��\u0002��KW\r\n����\u0002��\u0003���l�B|��N\u0013�\u001F\a�{s���K����\u007F�@�\u0018���\e6o[�_��K�\f\u000E�v|�q���7V����\u001E�\u0013�j#>�@~\e��5�\u001D�x�\u0015WW���q�B������Y���������\u0003O\\����3��\f�w��m��U��[�\v�\a��\u0019���\u0003[.�b-\b\u0016�x�\u0004�>0�n�?���\u0001`�.�\u0001@���\u0016WY�F\u0014��\u001C�Rk�:�A0��\u0016���p���\u0012�O��\u0006�R(\u001C����\u0013�TEe:��������_0�A�=����en�����\u001D\v\u0016v.\u0002�\u007F�0w�}>���C�\u0003��\u0014>�;\u001E��\u0017���Y�\u0012\u0010�_\\8N���?��\u0001��}`\u0014\u0004�IX\u0001��\u0013�\r\n<\u0001f�Np\u000F�\v�\a��\u001El��\u0002\u001A\u0004@\u0013x\r\nH�\a\u0010h\u0001v����\u0013p!\u0018\u0002\u007F\u0002�A\u0004��?B\u0013��f0�l W�\u0012\u001F������.5h\u0004?\u0001/��p\tH�z+��\u0018~���\u0004��H����q�\a�O0X8�Zq�s`\u0004a�\u0003�\tL�b���Y�� X\r\n����/�\u001F����\f��p\t�\u0003��\u000Fa;�u�m�����f��\u001FA;�(|Z�3x��`\u001D����[q�\u000F�\t��\u001A�}@\u0004!p\u0001X�V����O�\u0019VPr!\\�S���>\t��b�g\u0014��\u0011\u0003�@\u001F�>x\u0014��G�\u0004�\u0006j`\u0016��>��_��`>�}k\aW�k0o������9p\u0014V�\r\ndGv<Zv\u0010\u0005K��=�q��C�\u0018l�=p\u0002�N=���\r\n\u0005K�Z�s���@7��(x\u001D?�\u0014L�{�\u0013�R�\r\n�K_�TN���p-x\u0018\u001C\u0003����#\u001E�o�?`\u0019�>C��\u001D����\r\n\u007F�}��\u000F��E`\u0005�\u0002����\u000F���\u0001�\u0004\u007F�g�\r\n��>�\u0016s\r\ns�p\u0017\u001E�\u0010����\u0010��\u0004��mx�\u000E�q�}���\bE�\u00165p\u0001\\\f7�=�>8\u000E?�� \u0016�� �wj�z��\u0003]�0�Z�K6���\r\n��`#����h����)�\u0016x\aZa\b��7�\b\u007F�4�CMx�\u0011z\u001F�����C�en�\u001F�\u007F�?S�\r\n8Les�8\\\t����\u0017h�}�������p�G�aJO\tT��R��.������z��\u0015=D?K�����b��V�/����^�\t\u0010)��~�A\u001Cd@5�����.��\e��\u0010�\u000E��v�;0��\u0005��g�{�\u0006�\u0001\u001F�\u007F\u0005_�\u0019�����\t?�RLu7�;��\u0017>\a_�o�w�g�4�P)�\"�\r\n5�F��6���v\u000F:�>B_P\u001Ej\r\n��\u001A��#�\u0011�\u0013\u001A�4]`*�����<���E�Vn5���������?�A��_��/�z���e�m��\u0012(\a\t�����{1\r\n>��g0%\u001E\u0001?���wJ_�\u0006\u0011d0�;`�SC\u001C�Z\u0003�\v���\u0003.��R�-�+��\r\n��\e��\u0003\u000E���\e�M���^e{�����ix\u0004o/�\u0017��!�\u0014~\u000E�\u001D�\r\na\"F\u0014�f\t�Q\u0012���6��h!Z��\r\nh\v�\u0006�\u0010��g�It\b\u001DE\u001FQfJ���U� ���\t�\u0006�\u0001�O\u001A�q:I����\r\n���������3��if62�0o�n6�.e/f\u001F`��_�g9���Vs�q\u001Fp\u0005^����������K����\u0019\v}5�\u0014���\u001A`v��x�X�Em���~���')\u0011�\u001E��6Q�\u0014~D��\u007FP[�2�\u001A,�|L-�\u001E�\u000E\r\n�Y�\u0019:��L[a\u0017�\u0012F�;�\vh\v��XE�����72_��~\aj�v8���n�n,�\u0002j�G���#��@��#3�\u0014s�Nt?����&t\e��3�\u0019�\t�����x�g�[a\u0019�\u0001�\b�\u0013\u0015@\u007F�'�}Xj�\u0012��At\u0011��g����^0\t\a���\u0017��%��p\u001C@�\u0014�$���x���\u000EVc��K�\u000F?�����\u0011��\u0015v��h)�2{��B���o�5��)L;3�<�\fs�=(�eZ3�&����\u0001����T�e\"�����0�=J��b�\u0002��]P�y�Ox�\u0006��J�\"��[A\r\n=��+\f��X�w`���8�\u0018$�\u0006KK;��\u000E�/l�\u0014��>��\u007F`��\v,���\u007F����9k\u0002Dhr�v�\u0019K�~,\u007Fo��Z��[\u000F���������\u000E�-�\u001F�T�\ap\u0011�9����\u0002��\u007F+��t\u001C�Z��y\u0010\u007F��|+��v\vx\u0017\"�\u001D�y\u0016��N�\u0015K��\r\n\u0017�7��u�|�\u0013�\u0001�\r\n��F<w�\v7\u0016n\u0003}�G\v\u0017�\r\n`I�),\u007F�\u0016\u000E�*���A��\u0018��2�\u001D�&�G�\u0002o�r�\u0015�\u001E�#\t:����'�G����n�wXv6\u0014n/|\b�x<J�\b��Z�\u0004�\u0014�\a\u001E�Vj\u0002��\v��B\v5�5��`Q���\u000F����f,y_\u0006�s\f�=���<.�r��\v��js5�U�L��\"�L��ce�H8$\u0005\u0003�~��-��]N��f1���A��j�*�c\u0019�B\u0010��\u0003-��X�\u007F�\u000E\u0005Z[�I;�\r\n�Xu���1\u0011�j��=cb�r���;e|����N�x�|�N(����<.6\a��_6\u0005�q�bQ7�\u007F�)�#�M*�\u000E�>��u����/����M�\u0018�\u0017��Z�n�����\u007F��F�\u0018h\\�.��\u0003j\r\n�jpm�\u001E\u00188����RA���\u0003\b�:��1W��y�\u0019h\"=\u0018���Uk�:\u0017u77������\u0018l\\\u0013X=\u0006\u0002s�\f1�\u0016��<f�m\u001C����������\u0003�����\v`u\u007FL�6�v���c��\u001E�\fc\f?�i�~�\t��M�������_uS��\u001D�D���{�8�oQ��W�����\u007Fc\fI-��[��o�C��D��B7�t����\u0003E�\u001E���o�.�L��_,��\u0002s\u0002\ew_��'��{\f,��?�r�G\v���Y���\u001D��5�\u0003=��<\a,`��m���������\u0001�X\u001C�\u0003z�tE�;����5���Nj����+$=\r\n���0&�\u0011qO�\u0003��j�a]\r\n���\u0006��?=\u0010\u007Fkl-��Mc����B->/���1�\u0010\u0010w\u007F\u0003��\a&����U�gXI�\u0006�*��s������b���2B \\#�Q��YJ;[\u001E�:��\u0002\u0003��\v<|�\u0013�����$\u001E|��L�m�2X�\ec����m\u0011�v\u001F\u0004r2�3������+�������s_�\u000F`:>�X#�1>t�� ���\ek���\u007F���x�}I�}��n�yw����w}�U�^s��t\r\n\u0016/�\u0001\u001F�%<R�\u0002��\u0016��&'�\u001F#�\u0004�7��bV�}\u001C37vSn�S�!7��\u0014��\v��2itk�o�\u0012����q��\u0004���b����Z<��������\v'������M��Xm��������=�n\r\nw�\u000E���\u0015�w��s�\u0005\v���[\u0002b������\v��\u0003�\u0010�}����w\u000F4��L�x����c-�����\bk��Z's��\r\n[�\u001C�8��K�U�\e9��A������\u0014Ps��<\u0004N�e^��\u0011�`\u0014��%�\"��\t����\u0017\b��;��A\u0003�\vg��\"�7��\u0012>@�\u0011����Y�\u0001g0Z��\u0004Q���1��\u001A�,��Z��z�\u0019�\u001D�Jt�~kj[�����/��K�yN7'�k���R�\u000E\r\n�]�\b�+\u001F�\u001D���~��C��*u&\r\n��\u0018�3���������>��+y\r\nF\u000E�1Z���+��[R��Z��\u001D�,�\t�[���85)�Eiy����\u0004�\u0011z\\>������\u0012��c�\u0003\f��\u0002_a������o:�-m�d*S�.�\u0017���������qn��s;��I�;�/��}����i7c�������\u000E�\u0003u�Zw\u001D\u001E�R�����f\u00030����R\u0019K*�\u0001P���4���\f]���(4��\u000F�_�#}��9�fs>�����D�\u0017��F����\u000E��e�0b���i}*���\u00198�@f\u001C��ZY��C�:8���q��\u0017��R������a=�\u001EWA'���\u0002e�N�\u000E\u000EM�\u000E�\vd;\u0001\u001A\u001A�bu�^�v+6��\\o�d��?����Dl��&.\u001C�t�a\u0012\r\n\u0013��R|�Q��C��`p��[V%����s�\e����\u0018f\u001DY]���\u001A��%W9^8~D���>\a�\v_\u001C���>sPiM\u001C\u0014Hk��.b�\a�b=p�\u0017\f�Bh����l%\u0006\r\n�04Z�6�-��g��\u0018H\u00183�P8\u0014\bd��@)��VcU5 ��xN�0�Fk��k\u007F�|����9����b,��z5�\u0015r���x*��$�q��r%��r�U�����\e���G'��k{XI\r\n;\u001C�\f|?����49$�B������A�vA^�_e�\f��\u0011�= I���b9���\u0015NPS�=\u0018��A��p���J\f��\a�ca:�������V�q���^G8�_���\u0001>\fgs^�I�H%�8l��j IN��-���j�Z��c\f�A�cE\u0002\r\np����!\r\n��+�dr��&S�y����a�L\u0001�`\u0016qe�|����Co�p�03c��� SO�c�\u001E\u0013�fma��H\u0012��\u001Ar�L����b\u0015��m���\u0018�\u001E��\u0003\u0004�[(��\u0018\u0014�c7��zao\f����'��\u0004�,\e(\r\n����B\\��/�+��q+���\u0018�6_X������5w\f�=��pvOC����\r\n���\u000FG�z���7����>\f���tCi�������[P�$<�:,�^��c$���ED��\u0012U\u001Ad$\e�Gsr\u0019�+��(\u001E�Rc�k�%\u0010\u000E��C�p\u0013Pk��\u0016Q��cX\u0005U9A\v�=\u0014��\u000E����2\v���\f�\u0001c����pX\u001C\u0011\u0011\u0010\u0005qL�\u0010����\u001F}���\u000E����!<^d��&{��e��\u0001�����A<4��t��j!CBh�#�k#��\tW!�\u00109\u001F�����U�f���V��<e�������:��.�����J����\u001A���fK�����aw0\u0018�\t\u0001c'\\��\u0002�!8�G'���fLmV�'��x�A����Q���8�����~����\u0013t\e:�����������O�c\u0006\u000E�\u0016��V/����\\�0��^\r\n�7\u0018�\u0014m�(�� ���z��2 =��EQJ�e�>\u00034� R\e^B��\u001E�h�\u001C�`b\u0014�&���)��\e�Q:W��`_h����&�u\u0012r����\u007F�K�S�\u001D�N,\u0010zO�\u000Eu��=!� r�~j�^9�����%��������o:�0�5\u001E����6\u0018�aJ�\u0002�(�\u0017��*���J�\u0003�����\u0015�LZA[�0^��\u0011[��XH��#�\u001C=`\"��#�\u001C����\u0017G��jP�\a\f9\u0018;�\u0003�`��Y�/e��\u0006��V��4^UM]�9�1��\u007F�����#,\u0005�\u001E�\v6��\u0005\r\nt��\u001C�������t��@\\��I\u0019�{�q�\u001D@������� �\u000F\u000E\u0004G���'��\u0018�\f\"�\u001C��%\u000EUVf����X���e@RJ9�te\u001CQ���T\u0017���\u0002��s���7i�Z�\b&�\u001CVPZ�lR�\u0010\u001E���m��B64d�K�Z�S\u0017t�����sU�fF\u001C��\u0001�\u001D\u0003�\u0011�>�I\a�8\u00188�#�\a0\u001F�b�DP��e�\u0013\u001A&��\u0004��\u0001E1��\u0005�\u0010���l���\b\vE�\u0017��4\vD��������wV��76&�*���D����A.������S���'\u0018t�/������\"�k1��'�\vi���Y�,�g��Me;�����H�)�����qk,��e�e�X\u0016��\u0013\u0013Y���E��q� \eK�Qo����z�m���70N��D�\"\\6;��h��@e�s�\u0011\u0017\f\u0004\f\u0006��n\vr#<\u001C���\u001F�G��y�'��\u001DM�\u0004�|��h\u007Ft J\u000FGG�cQ\r\nD�(��\u0011VYl�h\u007F��\u001Dd@cD�\u0014�1)AQ\f7`ql<'��%����XZrRv\u000FdX\a��@E\u0016ca�\a\e�a��g\a\u0012�c�Y��\u001C\"�\u0015�������J�4l\u007F�����M�����3�i5=����\u001A}E{���Ra��<a\u0003����\e�����o[�s��\b�\f\v�U�\a��/���`�4w-�z��E&\a��B<;�0�c�Q\"��M�k�\e���&m��f�f-� \r\n��;�#�\b7���\u001E\u0011\u001E1���\u0004V�P_Y_\fyx�a/\u007FW)<���)^�\u0005������k\fJv\u0018�\u0014��*���,��\u00057t��������qt� ,��CA�E��d0\r\nw\u0019\f0�'\\���Q���b��P,�\u0015J)�<���\u001E\u0002����`mB\u007FL����\u0017)��@Q\u0017\f)\u0004�����2[�����D�\e�\u0015\t6e��jf����\u0016��!�\u0016���%H�-�L�\u0010�9xW��4�!�\u0011��1��y�Os\u000F�9�\u0018�X�V��G��d�_��9��\a��\u001F��]����m>_(!{���O=1\\\u001A\u000F\u0006#M�����]�^�T^���/5�+6|4�\u0015K�f�N�b�1�\u0012�-7����I�\u0011�[�\u001D��%��X����U�l[n�\u0019���e������,�k��5��?���B�\u000F��\u0005\tpv���\u0014q\e3i\u001A\u0016b~��1r����\u0001z�\u001E�Y�k��/��Q-�6z\e���\u001C���KDJ�XdI�X��\u0015\a��y\a|�<l��\u0002��\t@��W�����i�~\u0019��JlsX��/�/��5'��\u001E��fR\u0019�*Xb��!$yBj�\r\n\u0019\r\n\u0016\u0011��K�6\u0015�98\\3�\u0004\u0011�)|�j�\"p2�0�>g>xz \u0011w�� F��+���5�k�����]����c�\v���U\u001E��s�����\u0003\u001A\u0005�������\v\u0013�We'\u0013h1\u0011���\u000F�c�_���\u001D�_�a�{K���\u0019����7���?�s��g�\u001F��������\r\n�\\�v���~z��~�Ok\v'��x�*(�\u001CU��qd2%dM.\u001E��\u001C�\u001E���C�=AF��#�h\u007Fz =�f\r\n�q(�;����{W�f�M�w�����?�?\u000F|\u001E�2�15�{���o���{�\u001Ej�:�\u001Av\u000F{v��I���GjJ�e=�����\u0004x\u000Fe��<�\u0012g�\u001D����~H�;pwPc��\"����t_�����[�O\u0005����>�h�|�\u0017����\a�\u0010�q\u0018;\b^I�C�l,sx����.�\v\r\n.��\\���\u0015\e�Xj2\u0005\u0003:\r\nm\b+\u0005��?\a�dY\u00056.�2�u=\u0006��T�l�%��I��3Ahz����/~�?NYd��\u0001�\e\u0006\f#\u0006�0\u000E�dg��L�x��G�����0%�Sa\u0014~\u0011��\u0012�\a�gp^���)E\u001EO�6v\u001F,�aoO.�g�`\u0001��$��\u0013�\b^V��\t\u0002�\u0015\u0010h�a\u001AQc�\u0010�i,:���Qzl?�`\u0003��S��C\u0018���,���B��H�'\r\nF��\u0019�\u001E�Fy\u000F��^\u000F�\"�\a\u0002�\u001Co���wbb��N\v��g\"����\a�{|�9\r\nG�(5�yP7b\u001Dq��G<{K�\u000F��k�\u001D\u0006\a1<���4�@2x[���Cq�����1\":s��3\aeu\u000E��M��:�\"��T�\u0012�T\\�U9��!�^$\aL�\a�9�p����3�\u0002�BK��9\u0017w���e*��\u0001�8��\u001Fa��E\u0013��I�`��\u0019r������\u001F8)�t�9:|\u000F�\u001DFe\a���C\fE���\u0001��0ka�pZ^\u0012i�\u0005�ib�\u0010{0�p \u0011�D\u0017�\u0011\u007F��\v[������}����~�]��{\u001EY��|U����\u000F][��6\r\n&-�?���\u0017���D���k~�}�W��so�cQ��������\a�\u0006������\t8B�a<g\as\u000EP�q(�%�\r\nU#�}N���#�� [)Y�\u0019���\"��P\u0002\u000E�\e\b\u0014?K�),��\u0005\u0018����M���?1{v\u0002����9����&���s��9�?�3D�c|i#1py�\u0010���G���\u007F��L�Hq1t%�����I?A=�ss9X�[���f���a�\u0002�m\u0003�\u001F�{\u0010��T\u001Ao��\u0019aP?3��g(�+�\r\n�;��\u0013��q���\u001E��1\u001D\u0005t�N��puBwL��0\u0001�P���Ko\u0014�+v��\",6T|��\u0006lG)XG���S�4\\H��\"t�\u001D\u001E�th�\u001E\u001E�|�_�N��\u0003JX�\b�B\u0004D\u0003+�\u0014`A\u001D#\u0018\b\u0016�/�\fZ�[�c4��\u00031�`��\u000F~�7?������\u0019D��L\u000F���Ks+\u007F����l\u0004�>��_��w���z��V�\u0010\u0018��L��2��kc��-E���;\u001E�*�_r�\u0006#Ou\r\nA�\u0006�\u0010\u001A�\u0019���j&j��P1\u0016v���\f�Sr\r\n\u0014y���E�Y\u001E���J�Q��1{�\e*��l81;��6A1\\\u0005@I��0P6\u001A\u0005��\u0011T����\u001A\u001A�\u0003�Q��jZ�X���\u001FL��;���\a�����r4V\u000EA�P>Q~��.��.B���=���<\f�J���qz ����\u0019�I`\v6���5�G�X���6\tSr� \u007Fu��Vo����^0�6��)9?�*W�)_S���6k�%_{A�������C\u0013s���k��](?�\u007Fy9�&�9�\u0005�������y�E\t_0hV�,�.��2K�\u0017�c�_�y�\u0002JP��4�9z�����\u0011�8EO��w�����pR7�ex\u0005����H$��^Y���Y���|��������AJ�r*^�X������N�n���\u001F�g\u001D��?@�\u0018~/�B\u007F��&�\u0001^�\u0004����\a�an��u�m�INKCNw\u0013�T/\u0016�\u0003�p\\n�R������.��Z���.�.�^�c�������1�����q�)��?�A�\u001D����p��1����\u0016��YI_�������:j��J[����\u0010��c\a�y[����Xn�&n�Fs!�������m\u0011w�`�[l;l{l����2��\u0014?��\u0014�����\u0004^��+�c�q����[i���D��lJ�e}��\" Y�S'�P��*<��s�.684�15��\eqDNb�Qd�P�$&�!c.I\u0014�\u0016+��1B�D����\u000355����}�\u0005\u0010�����\u0019\u0013|H1�9�0M ���s:��D�Dr\\�`I�.���k�-u��.�TJK��rV��s���NTT\u000E�}G�������\u0013,��\u0019\u0013�.�?�\u0018������;W�\\����������\a\u007F6�\u0013>�\b�5UKnDu�]q���-�>���� ��3���\u001A�\u0006@�\v�-��`,W\a��\u001E�'�{&[����U\u0014f��hk��%\b��\tv�m\"�P�p���+C\u0003+��{�\e�79�dw���yO�-\v������p�>�\u001C�\u001Fv��y�}b����W�\\�v�����T�V2O�mU\r\nn`���mn�l�6��2�-*~X�&�p�E�@JY�����_zM��q�����\r\n��i����\u001A�X�[�\u0012��'��F�`����\u0011���i��q�\u001F����F�8NU�Zg�:����a'r��~\u0003X��:@=��f9�\"�(\u001E7t�J�@\r\nx�1\a:���\u0010RpKjOj4E���\u00045�\u0005�$_\u0004FH?K����\b\\\u0018\u0019�LD�E������Jy�><\b�J���h3+�{�k�-\u0015�\r\n\u001Al\u0003��1�\u0013�i���\e*RT'�:)\b(�B�/r�Y�!�\u0011�Mj���/���\u001F�\u000F\u0010���\u0018Qa���>9tB�\r\n��d=49(��v!���\u0014>�9��\u0006arH8�w�%L���\u000F\u0013��z{�0\r\n$������\u0012i\u0017\u001D��\u0019w��U�\u007F�4��}yms0�)�; \u0013�*+�\u0015�\r\n��\u001DZ\u0018JHe�eR�\az�0jl�v�`\u000El\u0010�\u0005L�\at�wx��X�\b�\u001C-\u001E�4��\u0003�-/�u���u`~E�\b���U2j\u0014�F�E�{���\"\u000FX\u0012]$�f{�GQ�X�\u0016���!�\u001D�X�\u0002P�-���\a\u0015\u0016��\t\u0001�@V0�\u0012�$2M�D�i\u001CV�\u0019XC���4d#����l����6�-�V�\u0005�\u0010o�|���-��v����\e����)��\f��j�|�in��Oy\u0006~uA���\u001F>����\u001Ac����r����)�9\u007Fus:��d�v�+��Mg\u001E�\f.���s��2���.5��\u000E\f\u001F��r\u0016���\u0014��\r\n,\u001E\\s���*�C��Z���\u0005.B;�^���9C����s��t��\r\n������h,����\u0019���\u000Fr�)�I�JZ^����\u0014��Lz����h�\u0010���r��\u001E\\�\u0005\\�Re�m�\u001E�[���\r\n�1>��h#��+�.��+���+���6q��Vw\u0017��u�=�nm��;�U��]�m�ltmt_��Joe�r[�Wk��^�����s�xe�f�v~������]\u0015wq{5w��v�u=��'ro���S�3�g4���r?�y����!�\u0010��z�u8���?�\u007Fj���Sl��\\��X�KE��7{��.+��q���*�]5��\u001AiO�=���E���N~���9��4\u001A�-Y���*��F��xx�J���K�^\u001E��\r\n�.�[��#��;b�\u001A���7�\u000E�*j�����!�F-�\u0017���\u0014��Z�����w�<\u001E�J�&\u00118���Ox�%<_�JZR�d\u0005�q��'U��\u0015fS8\u0012�\f\u0006�F��yNU�\b�x\u0005\u001E��r��(�Z��C��L�b�b��ZX�W�_1�4�W���+����Z�q?����D���%kdm�����>Y[7�.>��d7\u0011\u0019��'��\t�0u�\u0014\u0001M���g�W�t$n'����o\u007F\u0013���*�t�����t$�\u007F>r����\e'�\u0013U:�\u0001��^��K��\u0012��t\r\n^r\u0010S��s`^\u0005���^hU��0�������\e�7h\u000E\u0013fS�n���Jx\u000E���g�x-��-����_\u0006���k-�u��#[\u0013���\"���3;��(\u0012�5�rHC\u0014/��.`�K�L��3/Qk���^\u007F�=$IR�4p�\u0014�v\u000E��\f�u&�F�T4�c����.e��z�xD,���z�u�\u0006\u001F\u001D\u0005��\u0017�lm�\u000F�!�P�������5���\v'7Z\u0002w��B�B]��O���a\u001DVG�A��\u000E����`q���5E�C���T\r\n!�j�|�������_��u���\u001E\t�|-�E-�&�%c%�\u0004@H�L��i��fH�n���q\u0012u�<�k�o^?\u001Dz�=�K���^���N�@�0�/���\b\u0002x7a��HR,P�0�N[\u0003����L�-��\"r\u0011�}�Q:��e\f\a��\u0012�ewV_^n����\u007F�2���Y���5��5h����5�\u000E[����Q/b�\u0011\u00069H����\b��\t����.#}K\u001C��\e���+�\u0017\e/�_�o3n���?�}��S�K�u�{2�3�\\\a�<\u0015���b�����L\u0002o\u0001\u0010�/\f{A\u00132�\"\u0014�\u0010�`U\u000F�!.!�5N�����\u001EQ�~��z��R\u007F%\"3\td�E��?�G\u0018Z���\u001F�O���\u0019\u007F\u007F-1\u0017��V�T\u0012K��*$�`?\u0017k��B=�(JRLf9\u001D/eB�PJ�r�\"L��!��\u0012a�&�X���K�`���QR�:�g-��������g�0E��D�3�s�E�\u0015��g��\v\ao\u001Dx��*Ri���Egu�l\u0015\u0002^�\u00043*��K��Zt���J\u0006���G�Vm�����vX\r\n��//J{I�XS��Z��r�w���\u0012��^���o\u0006\u00178��\u0005@\u0015N�Y����bY\u0005�w}\e�0��SaY�(\vB\u0014E�<4`\u001C�d�H��~j��G\u001D�X�%�c�.��-\a>%�8�INqN\u00139�eIE*F�\e��[;�W�\u001D���y�<q\t\u001CF����� ��\u0019.Y[��!�\u0016`\f?\f\t�\u0013��\u0011�\u000F\u001E�,\u001C����0���<a������'�80�~�\u007F\tb�� ���\u001F�&�\u0002�0{�\u0006D�\u0017G\u001EvA�\tcD������AL�r�36\u0012{J�T��\u0018+��p�\u0012��c1��G����7��4�TeN�\u0018�r�q��M�t�K��\u007F%\u0018F�P!�xY1�%��R�����juA�oD�\u0006\u0011�����\"%\u001E,���O�Z�\u0005���\v��uM�w��a�6�\v�\u0004Gb�9�\u0002�0���O!x�zC��1�<��w\u0013�\u0004g���T�,����t�P�-�\u007F��\"���XY}����VvW�]n�*�#a�6\u0012�G�\\\u0016���g�\u007FubN P���K��D��\u001F�OG��,��[�\ex�c�\a����UrmV%7d�TpT�_�T7k/����\u0012�\u0003��$��`\u0002IY�(�Q�+%e��j*��\u0019L�>P\u000E\u0013GA\u0012���s3I2\u007Fsb�L\u007F�:�:f7=����Hrrr8�@�Vf�-e��]��8���b�Z=W�L���d��$7�<\u0019C�\bD?1�5� n�\u0017\u0017�\u0017�����k�Q0*>�\u001D�~V�\t���v��kn���m�=��&\u001F����[�$�8_\u001C��>J�\u0003\u001A�V��0Y�m���6�g\e�!�W�NV��\u0013\u0019R�07�6&\u001A��\u0010$�35�K\u0012!�\a3\t1O\e������2��P���R��� F�C��DX����\u0016�\u0015Q�?J�J�\f$�8��h�g�uE}�6aL \"O�D���7\u000E��w�\u001F?��� :\\1\u001D4�\e�6w�&\u007F2���Iv7�\u001C��rC�\u0005g�z\v��x���8���*\t\u0014����\u0006r\v7����\u0011nv\u0001@?���\u0011��&��\u0006���fW��P#41m�[�]�\u0017TG\r\nG\u0005�\u0004\u0017�f�@��^�������\u0001�-�����i���q�kX���\u001E�Y\f\u0002�r\fE�F�%�X�*�\u0005�7�����b����)YN�jM�h\u0004X�\u00068�W�\"�bev��YW��`^h���JQ��\u001D��d����WaD�\b�@���W�J��\"�\u0016X\u0001|n*�����X�\u0001l\e)g�w�w\u0014�A/�\u0011��0\u0010�$���AKN=^��\u0001�\u0012���J��>\u001D�g���~���(>�+����Q��\v6�J[C\u001Ef�\u0019v�Y6�W�?J�\\\u0003�����3�\u0001��\u0015<���}�~�N���aK��rm�.\u0003�\auk�:�P�w���\u0003�\u0011�>|#��z��R\u0018�������\r\n���\u0001\f���?�UB�����\u0016vja�v@;���=�e�\am����~���o��\u0018((�\u000E\u000E����gD�����|CC���9\\\u0011#42w�����D��S�Cs\u0015�\u0019~K#�l\r\n����I�d�c=\u007F�Q�=��C���\u0016Gz��c��\u0018Gg\u000F�VG�\u0015�\"kJ�G�s����qJ\u007F8\u0010�zS���p`v���+����p��.��&>Z�!��\u0011\u001Ep��e���8#��j\r\n��\f7��\"���{��\u0016�A\u007FJ�\u0003���0CgeCu4\u0011\v����@�X5�&�l\u001D�g\a���utv����\u000E\u0004:�\u000E�A�v�-����3�V\u001C�?��1\u000E��L��[��)\u0002�N\u0014��\u0005D��\u0006E�4(\u007F\u001D�D�O\av�E~\u0011:\u0014���A�A'\u0005BA��\u0003��R�t�wt\b��K/�\u0010Mq��7.��$ %��q�o'��i�<��wTE\u001Av�5�oL/������y�~�N]uA��\\���iwxY���\bYk[�\u0015�s\u001A�\u001F_X�]R�$���J��P�����\u001ABek��no_Z{]~�2��\v\u0006�Jf�����m�����\u007F5\u00184.��*��xu����\u001D\f�������\u0017\u0015\u000F�\u0010�\r\n��.L;��\u0002�T����N#��*h\u0012}����TG��)f�\u000E��o\u0001�in��%&[��0�@�<���l��\\:�Vn�U����\bJ��v�<��l{uc��\v�k6hnV���Ic���hC���\u0006���A�>\u0011-���mF-\t\u0017\u001FQ��\u0011M��M�Y\u0001�c��d�ZJT��ZZ[� \u000E��&���������\u001D\u000E��������R�r=���\u0003����<\e��H��Hk\u0012\u0013���_\u0002i�V���_�\e@\u0010H�A\u0016}\u000EH>iX\u001A�hY:)�a\tJ/�F�\u0001+6%}9+�I^w2W�����ur�\u001C%p�$\a;9�5�j<�dF\"��&c��>V\u007F.Y�41\u0016NM��\u0015&\a\e\u0014�S��S\u0004B,99�$����l�'���k�j\u0010���<b��b)b���\b�%f\u000F0�\r\n>�\a�\u0006���\a��\u0019\u0011f3\u001A�G��\\�\u000F�l��xk�\u0015OO��\u0013+++S|<p\u0010+6��o�>�`��=$����\r\n�j\t��)(�\u0011}�Z�/K\\�ZR\u001C�5��C���x����K�S�����R�K5.U�T�?��\u001E�+�\\Q�b�����X���*���(��Z���\u001C;�Y�~?XuA�����_/_� �P2$%�F�YP�1��\u0006Ak�\u001FX_Q\v��/lZV3��K���]�X�t���������De�|�H�7'vs��\e�,�������ao�3��k�#\u0012TW8�\u001C��\u0001q���)A������EA4Ja1����\u001AH|)}\u0019�������p��U�{����\u0013����\u0012���\u000E\b\tZ\u001D*\t�C��R���'\u001DO�x�T\u001D�\u000E/\u0004�a\a7��\el\twD:��r��������[���\a�{���K�Q�h�������O�O\"�\u0012>��x�h�J���\b\e��\e�Fc'��[�X\u001C���#�����\u0015�U�54���T�b�\u0019�t�\u001Ex�p��V��P(,Ij�!/\u0014�F� \u0006�^\u0011D�^`P��\u0006�����\u0017n9D��xa�,;���s��\vF#�h4\u0012\r\n��p�WY0\"����\u001ATK\u0016�Z\r\n\u0004�)���p8���\u0013+\u0001\u0015��A��\u0012�\u001A��\v�>��\u0006#i\t@��o�� \b>\u001FF���� �o��u�\u0004/\u0006\u0012��\u0013�!\"��\u0006�\u0011�x��N���\u0003�'��h`\u001C��Uv';�p�\u0013��|����r�\u0015Lb5�~A4HX\r\n@�\u0015��f����B���W+��}!(��C(4\u000E�>��\u001EN�/b��C���h\u0010\u000EGNF\u0010�J?��\u001A��)\u0016ng\u0014\u000EG!��\u0012�rt,:\u0011=\u0016������\u0002�D/9]�S'NM�\u000E:N�&�J���O���\u0013�I�\u0014�'��F.AQO��0#\u001F���b2\u00021��3\u0019�<�03��3�kg\u0012q%)~�A\u0005b\r\n)�}���|H�h\eH0��\u0001���Kr��\r\n\v)N\u001E��$RX��\u0001��\u0019�=�DT��f��Q��&Wl+�$�\r\n\u0003\u0014qB��:8��\e�|+�\b����V��?��%��������\u007F�\u007F#�\u007F_RSO�#�^�/>�W����v=%I\u0014�i\u0016�����*��E���t�+4o�\u0005\r\n�K�0��\u0014NPmXw���\u000E�44\u0005\bC^^V�\u0001\u0001�\u001F���3�c���0K�.�����60[�a0�?�~K<&\u001E\a\u007FbT�p.\\�X��\v�;�=[\u001DC���;�#�\u0011�\u0013�1�?p\b�\u000E\u007F����%\u007F����)�`Q�i��6�m�p�d�3��el\b�x���\u0003%��������a?\"�\u0011�����\u000F�G���]%��'�:���O\r\n��s\e��J�j�CO\r\n���+��4��|Z�P�G��I\u0001��\f���\u0018\u0001c`\u0002\u001C\a*r\u0002�g.w��B�.8���q��M'Y�P\u0002[��\f�X�x\u0014�YL�\e\u001A���\u001D\u001A�\u001A�=1���c����AE�� �+b\u0002)FP���\e+�r\aqt�<b�1�0��/���\u000FI�?�\u000E�����p1�m�B\"��m��7>�\u0005��w��\"^�5j\u0002�Yk/X����\v�3���\u007F\r\n�O?��=\u001D�d����m[��cg\u001A\u0013����v&s��D\t�8\r\nR�����\u0014av1��r�������|v���\u0002R�2P\u0019n\u000E4�\u001F\u000Fs�p.�:SWh�5<\u0018~-��\u0010[��}n�/���N\u007Fi��\r\n�\u00013Y6���\u0003�>H��TeQ�y6a\u0001*ks<��E>�#��<Ol�\r\n)8���\u001AK\u001DO�)�Xj2�0�-�^s&O��\b\fz��\u0013X���F��\"�����\a�K�\u0017m;P�c\b\u0010�G��R\u007F��X�\u0014��z�\u001C\b��6Z\u000E5j� ���\u0006\u001Fb\r\n`U�]�$�\u0002b��i�^O���b�����s�,�i/:��\bP�����1������yJl�H��LW�Y2\u007F���\u007F��\tw0X\u000E7�\u0006�~��g�>���o�i�\u0002I�\u0006��\u000E,|o����?F�\u000E1Nf�\f[������_��rv��*�C��\u001D��^J\u001D����\u0003������\u001Af��=�\u001E�*�s��K%�;�\u000F�~���r��\u001F!\u001F��<�\e\e�z��$\r\n\u001E�%H>\u0004*\u001FG��[��\u0018�Z\u001E/q\u007F������x�}����!�\t�B���&���|�I�����D����M��tf\a���T\u0016\b�R�����p��\")��>�m��������\"��\u0016\u0014�5�KLXS.�o#��w2����\\\r\nh�\u0013�N\e\u0003�����\u0019%��:M\u0015-��\u0001��`\u000E(<\u0001��eW�3�$����K�\u001F\t���/���5;r���R��hw\u0005�R��\u0010��+#�\u00184�E qE>��\u0013��g�\b��������2�5��\r\n�����%�VC�\u0016�����Fur������\u0015 ��[u�zD3�}����!�����!�:�����>c�o������\u0010R}����a�\r\n��Q?3|��4L\u001A�b�\e�\r\n�\u0006_���k1\f��4�IT&��\u0018J���\u00108��\u0014.\u0016�D: ,��\r\n�\v�\b�<c��\r\n�\e�\u007FS3v�M���|�h���\u0018\r\nf�K[b��}�\u0012j)��=B����:\r\n%%^�\u0012D\v\u0006��&�Yp�\\^g\"�\r\n�K�H�U�t�p�*����V5�$��\u0005!(�,\"D�\u000F��\u0014D\u0016\b\u0011\u0014���\r\nfH��A-\b\u000Eu5�v\u0012��������Y<[N�C�Ii����\u0016\u001E�\u001E��\u0001�\u0004��v��\u0003:\\�\u001C���\t\u0010L&ABH�%&\u0012�\u0012Lg\u0002\u000E'F\u0012(�_�\e�WcC�����!��X�/\u0010�N�*����s�:�E�����$!bl�\r\n���bWt>?]\u0001�\u0006�����fK9�$���8�rbh�H��� \u0011��^I�\u0010\r\n_�\u0016���\u00171� �Kd<�\u0011C\u000E\u0011���iHa$\v$H�*\u0016��:`,*w\u0010�\u0011���\u0015CwZ�cK���w�Q[E<��������Y�e�����\u001D�/���W�KSA��|c�\u001D������'Z\u0002V�A/��eF(0w�\u001D�����ZJ�(�D�'��]�O��� ���i�!\u007F���\u0001�\u0019���\u0017QsF���\u0001�/5b�?����je�i����\u0012cA�B5�R\"�WY�\u0016��\u0015P���F�\u0014t�N�U���k��f���6~��I��hv�sm�\u001F���~�z�=Z�4x�\u007F\\�C�\u000F]O�_�����\u0011�\v�\u0017]/�'J?t�V�v�q���`����?����b��\u0016��s�e8\\,\u0003�bi4*�,;=\u0019C�u`\b\u000E�\u0001�:�\u0006�f��RU-�Qg���\u0019;������������M�\u000EdvX�f�\u0016���6zM\u0018��q��):��T���v��*\u001E����4����d�\u0018\v��\u001A\f�KdS�\u001A\r\n��zT}D���QoW�\t�\u0015d6��?������*��.b��@��k0eT�i\u0015\r\n�TfI��6\vT\u0013*�\u001A��\u001D\u0011J�piq4�]�<b0g�\u0004$;�Xlp�T/�*���s��{�Qr���\u0018�(�`\u0012A�9�}��M�\e�[\f�\u000E� Qe%[\f\u0012+�y�h�5��h}\u0001������9~�L\\��e�9����\e���\u000E�8�\u0018\bU��t�t:�J�t�\b�{�Q��\u001F�yMi\u0006�2��'�R4\u007F�\u0016�\u0019+1b\r\n��T�E��\u0012����$��m9�\u001F\u0014S�\u0014T<��]�6t\u001D��fP+\a�3>iD�hw\u0019��\u0001�\u0011<��\u0010���)}i'\v�aK�E�a19��OI)UT�\u0015w\u0006e\u0005��c\u0016�?�\u0017���_7�0�<}�#\v�����-���w��\u001F�*X������}o}�\u007F��\u000F��\u0010�\u0011��\u007Fb\u0002���+�\r\n��d��\u0012x\t���\u0012/��7�\u0017�\u001F`�w?�<��\u0010,��|n�_���\r\n���\b�\u001F\u0012\f�\u007F\u001CM�f\u0015�\u0001��o0\u0019��u���\u0006�(�\u0002�*��|1���E.\u0003��������\u0017Q\u0004�\u0010�ik{����m���K\u0004R���%C\u0006OE�����)%Y\u001A��,�g�\u007F���T=�=����Eu\e8o�\u0005�C�rR�\"~�\u0010��}\e�^s�\u0016&�^O-\v�~�\u0017��q!���\u007F�+X[}��v_�$e�!Z�7o�\u0010�\"3vY�Y��x\e��\u00129��z�o�(���y�I� �h����\u0011�����\u0006��:l����L��\f}\u0006dp:\u001E~���:�z���i\ax��k.�O\u0005\u0016��?\bZ�l����4��RQ�^5g������=�f����MW�\\�����]\u0002��2��rr0J���\f�\t��\t�\f T�11\u0015�?�\u000E[�\u001F�\u007F\t\r\n���X���\u0002�pgL�7X�=�n��������\u000E���:fmY����W}��E\u001E^&5\u007F\u0005/y����O\u0010jj-|�<�\\\u00022P���tK\u00029��\b\u0012\u001C�\u0013�UrU\u007F����c�yu��c�9�\u0018sj��[5;5��*���\u001A����1}���R�h&��V����{�IY��q�q�\u001CBn\b_������X��q��Q�F��>R�)��-5\u001A;M#&d0-4!`\u0012L;L\u0005\u0013m2��\u007F����3\u0004\r\n!\u001F���e���^��1u:9\u001D�>�\f\u0005�u$�_I���\u000Fg�\u0018���H8\u001A.\vS�6\u0014�\f~c\u001D\u0014}������.�\u000F���\u0003�0�a��//�2�$3�)1j%�Y1�\u0006��\u001A\u0010�\u0019d�YY\e�\u0016�c�.��K)�fr\v�%F�]�^�O�\u001C���������^�t�\u0005%�����_���e�\u000F��n��-5f��b.�w�[t�/\u007F��7�\u0013��$x��\u0006\u007F(��.���U{���<��O7-wD��4�A\u0013���\u0010y�\u007F,\e�\u0006��L�V�����6H�\u0002\u000F:�Jz`:�Q�xR)���@���3��~�E�Q�K�1�?9�i�s���#�Q\u000E������3�'m�C��a���m��l���_AoS\u000F��\u0015���N�:v\u0013���z�����=VF�w�.j96�\u0019���k�-`����(\u0017�#���\u0001��Na\u0003���\u0001\fVN\u0006��6�y�[��{����N�h�X���R�M6��aYb�aJ'8�g0���q���\u001D������\u0011�I\em�\"e����1�I+#Z��\u0003��i�8�������\u0003�A�\u0013�\a��1���yi�'MuN_\r\n�~�)�����Uj�)g�MJ��\u0011!��f���16���b��y�X���\u0019�D,���\u0013f&�'�e~�*e�������s�,TvQM\u0002�@9Y��h����_������+,��#I�D����\u007F��W��d5��\u0005\b\u0004�`�a��\u0001?x_^�qkJn\u0011�\u0015>\u0014���V�N�\u0001�^�;�wJ>\u0010x��d)�R�\u0015�t��E\u0011��������u�����E�z\u001DrFl6�{�\u0017� �S��2�&�4Oq��\u001A�r��\u00018\u0010�\u00178\u001E�\u0002~;��GJW�Q��D\u0011;\u0004�,'\v�'g\u0016�O\u001As�i~����\u0016$K�k�,�.+>�\u0018}����\\6�5BB����\u001D����\u0003�\u0016\u0013i,\u00039�\u001F�\u001C\a�\u0002 \vO�XM`�7�\"0\u0005/x����W���e_����N��\\��_Nm�\u0016��;��o�\u007Fz���\u001E�\u0002��\t�J�t\u001E.|F3X6�����to\u001C�UX\u001A\r\n\u0018�\b�2��p!R\u0019k�a�|����E��>G�����f\u0019\u001D�\ae\u0013��\u0015�+tW��\u001A\u0006�\u0003���@j\u0017\u007F�f�n��&���S�Si��K�2�lI�$S�M�$*�E���F����,�@��)o���_�� ��k-��,�-\u0017�E��J|���i_�]���rv�z*/L_��0{a��j=��D�\u001Aw4�\u0011k����!��yW�\u0001�����S����e?�M����,�k�`\vr���cCk\a��\u001A�cI��>X�q�l����\u0017K����AKY,V��[�Z}L[��C*�`\u0003p\r\n�6RA\u0005\"\u0016\u0015z\u000E�^���/\u0004C�0 \vI�kF��\u0011����O��q\u001C�|���7&�05��7���%��($��<7+'��\r\n$�D\r\n[it�e�\u0002rxr\u001C�+?{c��a�$>35�K��+X��[\u00066������;��\u0006g�}U\u0005S�9\u0012��Ui\u00105��0h�\a.���rm\u001Ah��XX(KC�>Z&�����l�,\b�6\u0011\u0017��2��!\u0005�����m\u0010���\u007F� \v\u0017�\u0015bXDh5\u000EC�N\u0019ri�\u0017�p�\u0001�uP\\3�E3~6\u0012�\f\u0018��{G�\u0006������g%S�s\u0017n�56��Wok���u\u0019�O]�\u0012N�\\��o�~gum8������x��\u001A����\r\n%�s�E;\u0016�J�o_\u007F�=�\u001E�T�4x���w��\u007F����q�O������f�����)|F\u0019��\b��r]�\t���,h�}�~��Y����\u001C0%�\u0012r�E�[��p�9<��� JYd\vR��)�,9#:U��T�J�2��\u001F����k��|\u0001\e(.�S\u0001\r\n���8�8�?�Cby��%��\u0019�\u001A���/&���\t��Vk]ZO\u001D���\u001Ag��\u007F�P��z1(����(�\u0019U<��J�C�\u0015KB�����h��\u001F\u0017�a{��T�+\tq�U��Lm����{�+����Us��G�\u007F;R(\u0014��25(\u0004�I��8x\u001A�-��\u0014\"�\u0019��a\u0018\u0006K[c�B���� J����l\u0016��\u001C������:m�\u001C��]��UZy�\t���\u0003[\r\nN��E��T�I��A��n�\"+f�\u00153 �t�T1L����L�\u0012\u0004��Ej����-oh(/���{�\u00069^.709�|��tIf;P�;�*F����\\�r.,�t�;o�<d{�����j@���\u001A�r��\b8\u0004��H9�v��zA[�1-����1�,\u0019�O�\"HI�$����\u0014�Hvu0!V\u0010Wv6���OW�H��\u0014����s�A�q��\u007F�\u007F���\u007F�Y ����\"������\u0013��/�P\"*Jt�\u0010B�\f�25R����eR�*�\u0001<���=0��< $Emq\u000F���<0����3�\u00011k�3��&���d�0.&���tv\u0016��Q=�h�#���<X�M��O{R�W�a:\v����������������]�)\u0016\f�h�`p���w�s����/Z\u001Fd�\\\u001F��?7nx������\u00066u\\\v�3�j�%��-]��eK��\u0005\e��\u0001\u0003�\u0010;�&P[�\u0005v0��l�\u0004j�\u0012HSh�/\u0005��4)I1v \u0006�&M��uy/���M�%�%i������K��wf��\u0002I���������9wf�,g�����{�������}m�r������`��M:]��/�������;v�y��_����\u001AJm�\fj�x#�_��=0`�f/�`�)���\r\n@k,�u�]v��\v�P\u0010%�N�L\v,(\u0012�Da(�������!��o\t�\t�O<m=j�J`T��������U�V�Tk�#\u0015�i\u0019�2d�Z�\u0001m@��?�o���{\u001A���\u001A7�F�\u0010n�7��'nD7�nfS��PW�&�+��hW����#����x��@�\u0001����\u0015�\u001A�7=b~2�l�������=��4���\v�WZ �*C���g�J\u0017(��\u001E�P�`���lD&-&N�6�N��H�yj��\e�F����r�(�8R~�\\R�{\u0001\u0002XX\u0003\u0016b=��[x�A\vk�������\u0013\a\u0011r�\u000F���]�pI\u0018=��a\u0011\u000E�K#1X��%���G�kGny~;.�-lGQS�\u001D{%\\;v)�����Q�\b��{�����$���lA:��<u3\u0016�\u0002\u0015�$�k���'����}�m���O�K�����o��f��A\\����q�����\u0015�wo��%��9v�����8�Yzh���m�z������\u0013?�����}[SYWl��\v������5��n\u0004\r\nZ\u00024�<��\u0001������bV*�#�Vk\u001F\u0003\\��v\u0014��\f\u001Fl\v\u001E\t�\u000FJ�F��kEi4�\u000E�#H�l�3���\u0014\u001A�y���]����\u0014�}~���1���L\u001E�y���`e9A}@\u001D��,6F��\u0018\u0001�2{;��\u0001d�����Q\aA�����l*���ZHMa��9e�J:\u001A\u001As\u0019��J�02V����\u0005/�\\���Gw=r���_�y�+�U[+�]�����zA��2����iy��oO\u001C���������'�=q_2�\f�z��,L�VL<*hQ��\u0019F�8�&����uHa���a}��P\u0012����9�\u0016k\u001AwY��\u0006�\u000F��c���i}\u0017����Z��\"�/��\u0015���\"+k����8+�J�\u0016\v\eA\u0005�\u0004��Bv0����M�]h'�f\u001D�����}���\u000F�\a�O�'�GJ�K\u007F`������[���+�h���w���\u007FC���=\u001EX�\e,\vc�p�eu�F�\u000E���o�\u007Fb�I�m��q���Pz���a�x�T�\u001A�v(<>��a��<T\u007F\u001AY�#���6�mV+Yk�%�5��x�\r\n<\u0006�n��l\u0016F��A/\u001E\u000F�\u0015�\e\u0010bl����f���<��R\\�\u0019H��A\u007F�$���s\u007F��>^\u0003�yl\u0002M��\u0010�ad�V�W\u0011�H'w�\t`���\"'���\u000EEfR�\u00189���e��Z�UV��\r\n)��x��IK�%.�\e���/\bX�\a_��$n\u0012b<5a�*\u0018�\v�/9\u0002���0�p��5��{�\u001F�\u0005��k`e\u0011h���\u0014_�3��U2�����'v��p~(p�g\u0012���������\"2Z\u0006X�\r\n���\tk�gx�B��k\r\n*�������s\fv���pZ�et�\u001E\u0010V�����=\u0012��H���\u0005\u0005o�K��P���ra�o�)����x�~�~�����i��1��]��Q�����f�#�����k�k�������\u0011�C�G\\D\u0018��������g�����~�\u007F��{���w]\u001F����A�\a�\"������\u000F�]\f�w��J���4;-\u000E���;\u0014�NG�\u000E��@\u0014)8�FC�����}G\u001D!0#��e\u0018�;�(B}�W���$�Q\u0018�l��LDU�c�\u001F�R\u000F�0Gu<�\u0019��M.�\u001Ac���8r��}\u001D��\r\nG��0c���7\\�\u0012��\r\n\u0017�\u000Fi.�C?�\u0014�t��������'��������k��.��D�`��=���\u001C��k\u001F\tQ/\u001E�\u0004T3���\u007FY���>�j�\r\n\u0016o�����6�\u0018\u007F���p�;\u007F����)���$]o��#Y\u007F��;��e�$�)j�Z�?�s2\u0017{\u001F!V\u0006\u001C��\u001E�syk�����U�������@��.\aw�:\u0018���ob)��\u0018V����\u001Ew#3� �g^��zF�`�R�aXt\u0006�\u001D�7�0������~H\u007FP\u007FD/��,g\u0018?� 2sr�}��A\u0010n��\u001F��.����\r\n9��4�7�/\t����%����\u0013L�,�J\u001E�\a�I������YD���/�����B��&u� $!�\u0011(��D86�]|e��B)Q��c���3�W#o�?��'yOuYrY�������C�=�=�\u0003�\u0003\r\n�\\�,d�\u001E�f\f\ay��!�'��^��a�O��!�Q��r;�\u001E_�(�Rh$R\"\u0003��j-��\u0017Da\u0003\u0011\u0011b~�\aB� c�(B��3�\b\b�\vx�.���L���&9~Q���6UH�u�\u001F�����\u0017\u0016�r��U\t�����3fa�J��\u0011��y|�\u0015.\u0016m�Jn\u0015���fX\u0006�>Y�b\u000E\t���}U�6\u0010���\u0005\u007F��JQ�d���@\u0011\u001A����g�O�(e�\u007F���(oZ\u0012�X}��D\r\nO���%LZ�\b(�\u0018P�\v/�o�[�U\u0016�sN��\a�F,��l.���\e�O�e<w�d��\u0006�:�fE������K�������}W�]��X��a�<���\u0003K^\u001E�����<��f����\u0016�U�_f[d�g9���6���Dc�iY\e#�Y���\u001C\t,\f�x���Z�CE�\u0013�� �\u001F�����6�v�M���=�\u0019�k\f��k���M9�9���\u001CI�\u0018��9<\u0015��xn\u000F���%\fg;�?���\u0016�|n+�f��\u0003���k�[�\u001F\u0019\u0005cs������\\�\u0011�1\e��{a�\u0006\u0002Q�X;�5rA\u0014y��P����k�\u0016�{�0�\f�x�gP��\u001C!aB'�UL-#�RK+������8��C����\u0001�k�\u001C�E|��\u001F���=k\u0016��t�r���\u000F>}��\u0003[O��\u001F\a7m�����g\u0019J�a�O�z�U�\u000Ep�/�\u0014�#\u0014�m��\\�g��E����\u0016�[�.r��+�\u0005�����\u001A�h\u0005��VCk��������\u0011\r\n=2�k4Uu�z�Bu�W��\u0012\u0017\u0014�*����^+;_�w�\u001C��:��og�����3��F���\u0015�Y�w��\u0002�\u0006E�\u0018��h8l@c���sq\u001C\u001Fc�N�R�\u0019������|$V\u0006����\u0006mA�,�B�H���W7C\v1\ai\vA;�\u000Ek0t���O$}\u000F\u0016\u001F!�!l�d+�\u0004��1o�*�\f\u001F){��)Ccx��|��9L�-A&��N5\u001Fm��\e�^\"�\u0005��D\u001E�\\\"�@\u0017���1\u001As\u0005Uz�����=\u0001�D&\r\n��A\u0015L8c�b���\u0001��C�X���`�������\u001EqbO�oo�|0��F\"9S��������E3.E�>\f����vU����5������������ylv�\u000EK�p�\u0003>�;r�u\\���7�=�%Y���\e���{���M�7?� �_������z�\u001Ag���\\�����i�I2���/���U!-�)\u001F6ka�S���,���\u001A�'�I8f�R\u0019�h�Z$�h%2��c�����\\�\\�`%r�F��Z�=�\u001FE2���y�\u0014��\r\n�L!�h4���\u0001z�\u0002V[j�R����qrO\u001F����Z�����#��zV/��i�t3z��\u001A�B5���|����V�D���\f�\r\n�m����\u0004�j\u0002��z`�\u0019�*38�g�\u0019=�\u0018�%L�N�::�23�{t��/}~�a�q\u000F{���c\u001E\e�\u0012��@�d���e��'$����v\r\nI�dC�����//g�=��U�\u001A�f�6��s/�����8���l]��\u000F�o������eX����yr9V�y�\u000E'+�J��{x\u0014��9g��X�\u001C\u001Ep�\u007F��_{<H\u0002#�\\���N��\u001F!t��\r\nt���������|p��\u001C�`\u000FI�Wr����1��g�}�\u0002��\u0006\"~��`���\u0005$\r\n�\\�\u0004\r\n#3��\u0014��H<��*�BSo��M�.\u0018;��D:\u001C�=r��\bm�Y�H���\u0001���Mt�`�#��������t�g\u000F�\u001A�\r\n�8t��\u0017�D����B��\u001C�|jO�rE�3b���\u0018�����rFO�p-��\u0004P�\u0015��E�p@�M�]w����{\u0001����������-�\u001AEX&e}��M�r�\r\n��\u001Eq�\v�:Y\u000Fs��G�HJ\u0016��z-\u0006$��-x���\r\n�B�/l+<Rx�PRh\u0013�\vA�~�x\u000E�s0�H�<�V0�<�p���\v���� �G���bfr��2�\"g@i�w����\u0018�\u0006\u0003J\u001Ft}��\u001Dyt��U�v�4q�����EuG\"7�����X����P�Xf�W$��JaR�������<��\u007F�\vw�`��\u001F����\u0017���6����ha�a��;w\a�H�\u0002��/\u007Fg_����~���Gq�)�xb����+�~5/������\u0011�&�u�\u0002}���������\u001C�\\)����`S`)[���xm����{�����u��\u0016���\u0018iy-�H%�1|\u000Fog�\\�e$�V�/*��\u001A���r���F�1���#j��i�g�w\u0011���� �AB\u0014\r\n\u001E�H%/0� ��ir.}�2�Kd��\u0018.Fj�n���d\u0006�����>�!�jB���t��\u000F�7q����D�ti�\u001F��|�\u0011mS�\u001Aj&\u0016���{a����)�\u0016\v]��\u0002&�,j���Uz��Q*�&�MaWFr�A����\a#�p��������Ru�6�;\u001C]E;\u0014��A�v{�cG�>�>���A�\u0003��#g����e>�R\u0011�\u0014\u0015\u0016�0\u0015��\u0011���RQ2'��lv{�P�\v\u0011�\"\u0011*�\u0013)�W\r\n�J�JQ\u0004�M\u0005�b�(�\u0013�B\u0013P�P�W��/��l�lz:\u000E��[�����>�\u001FU�j7Q���d��\u0015�\u0006m~�'zr-�0��\aZ�p����)�%��&7������\v0��_�p\t\u0016��6p-�wDX�L�{(f�����\u0013W;���x+9��|�\u0014\r\n=�����A���X�A������=o��Q��Fpa lU�&��8~����qOUX�Z���x^��\u0019,\t��@(?T?Q��Q\u00106)�0��X=��\u000F{o�sAQa����r�\u0019uG}\u001A�\u0006���@�O\u0001W��\u0010����BoH\u007F�}\#$��\fJw+v*�kvh\as�sw)n���8P��VHCVO�*e]\u0001\t�K��\u000Ed��s�f:���+c�t��%�E6�tR�:�{�bAZ+�)v�\u007F^8�dMc8\u0005�\u0005\u0016\u0004{\r\nX����H�yX\u0019`��<\u0010�W��bT��U3���Td\\���\"�1\\\u0012v�EE���\u0014:�\r\n�&h\b8���[�iG�z�\t���S����\b�W\u0019��s�k���-D��r���0w\u0006�\u000F=A���\a��s��\u001F\u0016|i��\u000F6���W�\u007F���>�\r\n&a�7��������g�\u0001f����~���]O�?v��\u0013�7��������v\u001C9�����\u0010�����I�\u001D�\u0010��7�7a�\u0001�\u0019�����M�\f\u000E1�9�rv�<\bs�+�<��5\u0019�\u000E���q;\u001C\u001E/K��|�d\u000F�g2\u00191�xM�\\���\u001D�_���g`������0)Y�w\u0004=h���\u0019�\u0006��\u001A\u000EQu���r��s\u0005�4\u0002S��K�y<q/~����pR\u0014�\u0016��&��\u0001x��5����\u0017��\u0003&�����\u0012U��6\u0010��a��f*��L��\t-1��u�4�����\b~\u001A��'M�����?2�\b���\f\u0010\v�����F]�Z\"�9j����\f��4��\"���8�s�V�\u0015V\u0002�Nt2��&XS���U�P�G\"�yNp��dn\u0015�O+`�$\u0001D�b�\u001E<y�-n`�����\u0002�\u000E���!�U�u�����\u0016G�)>\u0011&�X�����-]����M�S]�'Y����v���\u0017�(��>\u007F�\u0015v\u0005������9�:\u001E�>\u001D\e��K���l�n��_\a����\f!,�{\u0014�\u001A��B��\u0016��Jj����X_��Y>[Ld��GB8�����F��x�\u0018�\u001F��#/r\u000Fy|�E�K\e2d�s�\u0002�O\u001E\u0002�w����'HaI?�?��U��*��\\X��r����c�2�J�5[�\u0005s�T,��}����\r\ns�:�BQ\u0013�/�������85���*\u0014s#��\u0003�:��8a7�+���\u0019\u0015�[�0F:��\u0012p��^�Q\u001D���,F^}\r\nYX��`(����D�\u0017T�Q}\u0004\u001A�[z�[�G����RR}<\u0017�����H��2N���7�L�v\u0019��I�r\u00156���1%f�\u0004\u0006>�\e/\\�T��j�LP���=�37�x�Z�.2\u0017�Y6k��wH7\u0017D;g��:���x}?T:\u0018�^?\u0017\u0010c�\u001D)Y�Y��,\u0019��\\��T\u000FX����<���1����~�C�����N��7�\u0015.l��$���\u001D�����/����a��J\r\n��0���\u0016V\u001AS\u0018�~*3v���\u00119�S������c�['��a\u00036��u'\u000Fh\u000Fk\u0019�\u0018\e�\v��\u0001�\u0018�\u001A�9n�nc��1�y�N*k8+�[�V��\u0010����\u001C#�����3���*\u007F\u001C\u0016�����8)\"@D\u0012�\u0016�<�L#\u000F����9 s(��&\u000F,�MZ�U\u0016m�5ZL\u0004��9�\u0006TfR4�\"�\b�`&�0fVVTJ~�v�}���o��v����7��8����������_��@���kWK7O$^;�o�?�\u001A�����O��|�\u001Fg>�>^yv�9�\u0011�U�\u0017!�;��](�f1-||\u001DZ����t�K<d�R�\u0019�3����\v�6���v�\u0006\u0013\u000F�>�8��j�u�����*I�\u0018��Q���j����2������%xO\u0011X6WY)�\v���/[�_\u0010�g\u007F\u0003���f���\\��\u0001m����9��.��\u001C��GK��K�����u��\u0019�\u0001\u0019�W�u�����=�G�\u0015����\u0019�\u0006���\r\n�b\u0012\u0019��,�������o$�\\5_�\\��t�m�6Y��-�M��g\u001D}�~\u007F6�3|��\u000E�\u001D�\u0003�=����\u0019���\u001F~[�B8�\u0010�1\u0012~�J�Py��g�\u0005��\u0012l�\e./W�\v�\u0016�������A\"�B�JQg\u001Eq���������\v������V'V��N��J\u0012q�*�J�\f��&\u001Ef�\f\u0002������UZc\u0019�`�({�?<U�5�\u000FUU��\u007FH?\u0004c��\u0010\f�K�l�J�eK���\u001C���\u0012!zs\bU^����\u0016�\"K<��d\u0011���I���X�/lua��as02Y�\u000FS�D0l\r\n&pL^��>W0����\u0004\er\u0014$p\\\u001AM�@�7�\\�ly\u0002����H���D�� ��3\u0019\"�8u�����YT���Z���j��\u0005D\r\n*�N{q�C7����\u0017&���������%�Ha-y���C��o\r\n�V}���^>������7V�|`�Z\a��k���S�W\u0005*|\u0019����������������[�m\u007F�|9�x|G�\u0017WJ�H����y�\u007F\u000E��;���\u0005\u0011�{�0����~�!�i�4��0��<��uV�b��\u0018���z��J�q�WE��}���7�X�[���8}\f�@��\u001E������\u0016�R�:�In\u00107|aZq�^�$mta\u0003�H�_\u001A�����^����L&�\u001A 8������Nbu ���m�Y�\u00194��v<��.�]>q00��g7\u0013q��\f\u0004�\u001F>����\e\u001D �\u0019\bI�\u0004u�G����-:������$9�\u000E9��f�\u0019����x�n���-s;�\u001Eo��1�\u001E���=8��\u0017p;�=�r�c��\aI��~��9s�j\u0015\u0013-.v:\u001D\r\nS�����-/��qo�������W�\u001Dc8�nX����E,�\b/�\u000Fx�������C\v��\u001E\fE\u0019�\u0015n w\u0003�Rh+�J�^�$�\tJ�7`�G�\u0019t�������\u0010>�l�\";qf\u0001�e%|Ih�����m|?\r\n*\u0019?;�\eC�%�\b\f\a?��u\t\e�\u0016C]���M���/Mt��3�<#\u001A\u0012�)��%��\f�����b���o��]�6��R�X���F?���@0�\b��i&��\t��d�Yn�wG`?��=X|\f\u001F\v<\u001F|���?O���?��-���(~�y�\u007F������\u007F,�R�5!3�3�0p���hu|��;�*T0N'�#��^\u0014\b;����y|f��>�)\r\n��^\u0006�2\f�?�p������ o�����t\e\r\n9�q���/���p~����t�\u0011\u0014&zj�V85�4�#�q\u000F��9�a<'\r\n\u0015����8W�V�)���C����\vW�\u0019�aC���#�-&��\u0018�m3nJ]4�*hC&F�(����SKSS��*~�*B7�K�V\"\bZ\\���\u0003��X\u0002����z�\u0012���s�D�N����n\u0003��\a��6\u0016T�����\\:�\u0006�������\b���EZ�\u0006�\a\v�\t>r&L�\eeorr��K��UK�&��(OpZ��\u0019\\Z>~v�?��|�_\u000F<~\f[���?���T����������xb�\u001E7��Y�~��@�O\u000F�\u001E\vN�t�Z\r\ns/~����9Dg\u0014���I?�����w���]\u007FC�i������/\u007F��������BE�t�n���>;X^Y�0�\\��o�\u001Ajr�r���/r\u0014��q����q]}���~��uf�\u000F.��z�����\u0016?h��y��\a\u0017\u007F������c\r\n�\v~����a~��ti��\r\n�=\u0012��[\f\u0012�J�B\u0015�\u0012UD���������y���i�\u001C�\a�?�+s�8�`��kk�����-=�T���\u0015�2+r�:>~i\u001Cx��K�5\u0017��*U�N��Yb�� L\v���Z\bH%e��*t���f**I�8�\u0015\u0014����1���X�%~w�\\VY�`��S<��e�����b��an�\u001C&�\u001Fw\u0004\\yQ�tvQC����\v\r\n\u001CmsgW4��_\\��,����/h\u000F@N���-��6\u0005����|���3�\v��\r\n\eJ\"U��E���y���Di(��l�:m�&M������<1Gq�\u0010\u0019�\u0012�8v��:7�\e<|���I\u001A;+\u0004�I��a�xmT|\u0012F'#,���y\u0015V�W����8�`�\u0010m���6\u0005��xIqN�*�\\�g������{�,\u0011�`��\u0005�_����\u0011?\u0014X+�I�D\u0002��E'�.��\u001AF\t,�2��U��\u0004��^\r\n��9\u0010b\u007F���f�)���^�\u000Fh\u000F�\u000E\u0018�\u0006���D�\u0013���7\u0013J}4�\r\n����j@�N��Y\u001D����Dk���Z��`m��,^��n24\u0019\u0017�\u001A�K��e|�j��@s��|H=d\u00182\u000E��,��\u000F\e\u000E\e�b=\et��z���/r\e�FwQ���\u0012�V�|S����Z\u0012�Zm@:���r�Z�IX���l����Dy�t�\u001C3bc�F�5k�w��]�\u0015\v�}C>�w��}�@4Z�(�sAA(�\f\u0015�]���Ry�&���\u0003���\u0001�9\u0014�'4���\u0006X�U��$B\u0001�zV�/\fZU��L^�wb��]\u0014�Es\f�,\u00172\u0019�dg0*)�@^�|�f\f��L��9\r\n\vA�(g�6�w5�r�6l;o{�&!\u001E����,S\u0001$$��F���1�\u0018E\t�8�|\u0013U�jf���\t/r���a<�!�UT1H�[N��#*�\f���\u0006�!/��R���*Nu��Sl5U��Y��3\e2�$+�\u0018�&�\u0006�1�G��?�$W\u0018jt5{u�����B�W\u0014���Q�/�\u0016!�03y�U\r\n\fYE������*\v�x\u0005�����<py��X��9\\����\u0003q�\u001C��VJ�W��N�\r\n\u0002�%\r\n�#k\v�z�����U\u0001NOn\u0004�>�'w-��C?q���-�!\e,A�\u0018#�\u0019�{d���\"\u001C1\t�Q�S��V\u0019��F0\u0016�Te���\b���#�2Dq�YpLT��|R�}>'��B�W\u0015��V\u0015�1*��T\u0015\u00123W\u0015�F0yU��@�\u0016�;\u0018��\e�\u001F�]�o\a_\u0015@�8N~`C���x�Q�3u}��,\u0014�JJ����:��\u0002�Om�k\\�\r\n��\u0012\u007F���\u0017V.��h.���w����x��~Gp�K_[r�\u001C����b-5x��:�y���k�f�216X����:�e�+��`��\u0018�_������=�dvD��\u0011����u�Q\u0014H����Xt����w�\r\n�E�s�\a�����\u007F����M��\u00162D���@Uhv8\u001E]\u0017�\u000E�E�D��\"lw\u00168\e�?���!}*���\u007F����\r\nX���/s����BG������{|�\u0010���P>WT�\u001F��5Ag���\r\n�0�0\r\n����\u0006�E��>���\u0010\u0015���(���Q�0�\u0006�F��W�;T\u001C\u001D��G=D�C\u0014I��G\\F�7Aa~\u0013\u0014�7�+5r�\\e\u0012V\u0003d��/�8��p��B�\u00148�\r\n�\r\n\u00138��%f�ciX9�\e\\^��7[�uq���s#L�\u0014�� >�����;~�,�\f�����\u001C?�\f.+�s�\\\a������\u001F����d����w=�����f�����g%�#;�<�[�R=�g�\u0003�9��\u0001�3�z6K�[���L>��NI�$�\u0012F�\r\nv)�D-\e\"_\u001E����]]��\u001E�4�u\u0004�C��\u0014�dR)�\u00180>�q\u001C��\bf�v��,^��K$,��+��K�����4\r\n��\b\u0013�\u001A��T��[����\u0005$���K\f�]~i9d\u001D@g%-�{�\f��k��\"c\"l\u00159�b�vV�L�+c\u0019��\u0011��D����{g�yH��\ea9I�\u0012/�\u0005��y\u0003�`8��\u0005|���\u0016��\u0010��%X*a��\t3���>�%i���\u0018x�B�\u0019f\u0005b����\fFD���!�]\u000E\u0002\u001A$\u0006DV��H�P\u001F f��\e�*��\u001FR��\u0006�6l�h�������-j\"�(�\u0014��PM��z\t���_�r�\a��\u000F��2����j�E|�\r\n\u0013�\u0014\u001FwKn�|\v��a�N��8\u0005���\u0010'�d1u\u001A���6\u0019������\u001C\u001AO\u0005��6#\u0003\u0010B\r\n������j�&����'���l�y�����25A�]�\u0006����8�3}�9F�1�Y�\u0011���\u0012i�\v\eP��\u00052v�\b��\u0006�9M�\u0004\u001D0z�=��\u0011Z��X&t�������n����O\u0013��\u0013Z��tb�\u0004��Q>���_�����\u0006\u0016\u0017SE��5�\\���{��\b\u001F)���qOm��H����\u0012�pqd�����j��+l��\r\n��vO�p�a�}���3\u0014��~w�Q���G]�{\u001E,<\u0014y��������i�7\"�\u001Ay3����H!W�\r\nd�\ar\u001E�y ��b��\u001C�U�\r\n\\���H�a�����^�\vZLj_ �*��t\u000E\ar�u�2�\u000F��A��\u0001\u001D\u001D\a��}���������\u001A�c=�H�~Jn3�o�\bRc1�Y.��g�\u0016j��X��\u001C��\u0012�P8\a�����P.Q�:���l�l����i\r\n���\u0012��\u000EQ-���q�|�0\r\nv�5�d�4gV~���;\en�!��VU[����Pgm��������/o\\[�\f\u0004\f���x\u007FO����\u001E\u000Ep��?\u001E�_k\\]��o�~)\u0001�En\u0013��nF\u001A�\u0019��K\u001E0=%\u007FZ��A�\u001D\u000F���;���\r\nm\u0018�ya��Z�fc,C��@T&���m�\u0017Y3���3��\u001A��S2z�[�(\e�36p�\u0019�N�!��8/�\u000E\"Yn\u000F�\u0004u\u001Ac1r`k1��\u0003d�\u0002dPi���\u0001���+F\u0016I^��_�#�@0G.\u000Ez�]YA�.\u001A�X��h\b\u0005��X�o��9���w'n���\u007F?����[F_�`_�t�Dz�?&�?��?�k��\u001F�h����\v\u0013����\vq\u001D^\u007F�NB������\u0006�xQ\u0014�{R���\u0019��\u0015f���b��xS�5�Ky������q�2��hu���J=n\t��rT2��5�\u0019��\u0006�����S'U\vm�T������\u0017�q\u0017B�\"�����>\u001F��\r\n\u001A���)���-�\ay�(^�\u0014�e�(���r���::u\u001C\u007F�v��[�MGT;��\u001Ar�J\\���bU�q�����Th\u001C\u0001�U���vy>�XT�X�\u0004kJ\u0003/\u0019��b\u001FQ�>}�!o��@����g\u001EH�Z /YV������&�)�\u007F��\u007FK.���\vuy�w�0����l\u001D�;t��x���/Y�d��v����p�\u0013�.����d\"�{��\u0013\v%�����r����x-���B��M�E��M��F\u0010\u0012\u0003�\r\n�Hb��\v�ob�J���F����V%h\u000Ej�-|\u00105�od\f�X�S:��Y��lu�E�iG:�N���t�$���~��\\F\\�Hg*+�\u0013�x��P����V�V���W�?�MN��FrdsK�\r\n�\u001A-S(�����w�3w�\\'+)�\u0016�cr�p\u0016��\"ss����\a\u0011� ,!��������*��!^mX���lP� \"9\u001D\u001FE�A���ch.�\u000E��\u0002������F���\u001D���96r\u0017��6X���}\"��s3�1\\�;\u0016�����!�\u0001\e\u0011�|�����Me�-i��f\u001EA]\"��.f\f���x\u0002e�������Y�%�^�\u0001�\u0019\u001F\u000F�\u0012\u0014>\bJ�7d�b\"Z������\t�&�\f��F*���\b�t3���\u0004���K3�<���\u0015��-�[T��\e\b<�e���������_{?��l����\u007Falh���\\0q���Z��i���m\e��\u0018�?P;�v\a��\u0013/��Z�������\e{W\r\n�\u001C���]��9�n���n<���\u0017��`����g��~�g\u0006�K\u0006�m�=yS����_.���L�\u0010��?��x��U_�W�MA|��\u007F��2\u0012\u007FD��|����J\u001A_|O���Gk&cM�L�����S�\u001D����a�������U�\u0006�5��\u0004n=��:�oX��\\�g\u0012g)�s\u0018H@~7r@X.�}�.\v��`��t@�\u0017 �\u0002�o�\u001D������{\r\n�\u0017y\u007F!�j\b+�8Fb����<\u0017��\u00058\r\n������$Y�\a�@��CX\u0015�>R^0��,��#/�3��>���[D�\u0002w\u0005\u0018\u000EL;��`H�5`��~\ax��h>1��h\t\u0018/�_@�\u0003���\u0005�+\u0001�\u0003��JnE�)\u0003�\"��w�C��\buk\u0004T���`62\u007Fe�M�������\u0014�\u0014\u0013���]���/k_�g\fJ�y������)��r��Z�*�������[\u001C.�\u0017��v�\\�pk��q1�\u001C��}-�������+0;X\u001F�eXQ`.���1���+*):S�\u001F-�>\u0012;\u001Co/�,���������s�oW�T^����\u007F�������|i��\\v���o��E���h\u001Dp��0\u0001#7Fb\b���_�V�#M��]�\b�\"�\tj��=\u0017}\"0�t�)�,L\t\r\nEX�\\�Q\u0011�\"+>#�2���.�r�:�$�\r\n\u0014d~ �Jt\a�g\u0011VIW�;DX�2�\u007F\u0013a\r\n���EX+{N��\b��z��)�\u001E2�\u0012a���r\u0011f���@�YTel\u0014a\t��M��Hc�G�e�h<,�r�c\u001C\u0016a\u0005�19EX���b\"�b��2\"�FUy�\"�A���\"�e���\u0013a\u001D�Z\u007F\u0003%�\u0012�u��Ha)i\u0011[>�e����r�_Ea\u0005�\e(�$mdk\u0011ah#�\u001A\u0011�6�\u000F�0���V\u0011�6��U���\u001C9\"\fm���0��c�\bC\e9\u0003\"\fm�l\u0014ah#�\u000FE\u0018��\e\u0012ah#�C\"\fm��\"��F\u0005�\u0014V�z\u0015�)�&u)tPXC��2�(\\Ia\u0003�K�|\r\n�����z\r\n��8\u001D\u0014����)l��C\u0014��w�����\u0011��O�<Ma7�OR�O�\u007F���\u0014~���\u0014�\u0005�\u0015B�\u007FOa!��\u0013XC�#,�i]\"��zB?(�@+� ��Rh#J�\u000Ep9�4������P\u001A���\u0017cqh><e�&v\u0012��i\f\u000E|z��(@\v�\u007F��eJ���qh\u0005�����8Y�k�W��\u0004U�_\u001C\u0015�P)���7z�]\u000E�l�2����CzY0\u0019�\r\n�N��\em�~\u001C�\u000E��4N\u001A���>��\t�����GjP����]�~5�6�sv�������\u0015\u000E��\r\n��@H\u0016�F����I��R�~Kxg��f��2\b���~��\u001Ai�N\b�B��\u0019�H������/�F7��OKN���3��/��\r\nJ�A9��\u001C\r\n�����\u0004yo��JJH�KA�YZ�.1����I��4�K��\aq\a?1V��.����j�T��b�(���O��\u0003>�\"\u001E2�V$�\"�YM��S\u007F\u000E-��#���u\"4����E�\u0012�2��$j�)sS�����\u001C\u0019�=����&���d�����5���v\\J��)�Q/�d\u0016�L�t3�&\e�:l�e�����O}�4�N�&�a��\u001C��H�$q��8Y�\u0001����\u0002$�����\u001D�:(��h�zEw�\f��N��\u0003i������/��A1������q3���b&9�g\be����j�(�������>K�\u0016(����I�\u0001��\u0014��?�����n�F��\u001E�Nc�s:\u0011z�G�o&�\u0005\u001C��%���#\\d�r=N�D)����^�Z�h��b?\u0014p$���w'�*P�6�}�M�\t����wf��6O����K�����\t��G)G���T�\u0005�\u0014��+���1.�\\'m}��\a(���\u0006h��<�iZ$�~�O��+��[�R�\b���*j\u0016x� -Y\u000F}#Kk�#R]\u0017m���oF�w�vY��\u0003W�\u001FRZ��&�H���T)�\a�w\a�u=S-�#��v0=�t�b�\a(�\u0015R�NC�hji�\u0013xf��6[�\u001D\u0001�k ^'�aP��L~�N��,�U�\u0010��&0;i\u001CB)3y\u0005�ua\f�\u0017C�W��NJ_\u0003W��d�I���3R�����m2xU�N��\f��d�F�8�\u000F��a�\u0010\u0003\u001C��(�\u001A3)2*r�\u0018��\u0005R���O9\u0001)\u0017y��V����\u0004���\u001A#�So�\u007F��v�\u0012�<q:������^�\u0010�|��\u0010�\t|I�YH�\a��\a�\u0015`���\"\u0018���o\u0019�]�����j����\u0011f��k\u0006/�\u0013�<8���g��t[u��,��$�\e��:�'���\u0019���\\v�<B\u007F�2c\fK�� PV��z��\"E�T��\b�������M����{w�#���'afrN�]\u001CqI_���\u0003gry�'m\u0014�����\u0016�E0����N�����)r�\f��\u0003S\u001C�]l��c��s��1%�%\u001F�����-�Q\u000E0�����YJ��\u0013)��>>o��U�\u0018)�)�\u001Fi\v����\u0013\r\n�0IK�G1�-r��I�s\"-N��M3�%���bZ\u0018���?3c�P4\u0015;3�n��%�\u001CS=�kt_�����\u001C/����g\u0005�<o:f\u001A�\r\n3�\u0001�q�~�T}�r���-\"�\u0014�/��>�>����4��j4M\u001F\r\n��\u001Fm���P��eg�F\u0018i:h��^�\u0006�k�=�2�_���:����;�\u0015�$\u001F����dzB�L������dz\u001FmG\u0001[B\r\n�������d�%�����Ui����\u001C:��[��4�D)q$���g2\u0005�~�C�J%\f��2T\t�H\u000E�\u0012x*�Ur\u0019\"�8'�&�P�\u00183\u000E�%\u0010R&������oU�rXQ\u0010CR���u���q2,v\r\n������}����\u0014�4��+�-K����������3���t/���\u0011�\u0016$���M�\u0018I�[��\u0019 >Y��\u0017�+���\u0017�U\u001A��zz���������T6����\\��%���Km����${��6\r\n�$3�\u0019T_\u0013�����S�,��4:��\v/��������\u0005���\u0019�\u0006A\b\r\nh^�l�5q��Vf���-��f.�������6ug�S�T'����C�U+��d?\u0017�V.��6n�r��N.��Mm��h����C�M�d_��L�\u0014� ��������\r\n�Q���O���\u0006�\f��l���[�����pK���To?�5Q���;\ve!EN������������s���TR,#�N\\R-��P����N�Qoj{�/���\u0014q\e!��]�\u001D]\\w?�=��:S��M���(�5�s]��\u001Dh���\u000E@\u0019z\u0006��TGzK�K��Hz\u0004\u0011�����,�%\r\n\u0005�\u000Ett����\u0003=�h\\G&Eq���HA�j��{�=\\�P�,�\u001D��m�f�\u0006z;S�k�\u0010�\u0002ugR\u001D�!�\a��\t4�T��\u0002C�z!�^\u0002e�\u0003���]����To�{[\r\n*�\"�\r\nP_&M�\r\n(����FZb�@\u0006���\r\nm&��l/(���\u0018d7/�\u0005\\�I��K(C/��Xp�\\'�\u0001�\u001E���H\u0003Y�fs*���\u001FHRZi�I��wC;w\vh\u0006�\u001C��=�\\�\u007F\u0010���+�I���Z\u007FwG�k\u001F\u0010�'���#)���M�\u001E�\u001D\u001D��\u001ER�\u001E�������A�x��\a\"m����6��@�P���A(����\u00144�@V���tzs�\u0016hKrSrgwo*+PE&\u0005=�\u001F\u001E�\u0002�v�;\u0006�*����l�F�����$\a\u0005��m�L\u007F7�k�����:\u0016��}{t���(�N��\u007FKOlK\u007ForK*�%��O�\u000E�1Czd�\u0004�\u000F_���!�H_��ie����u+\e����\u0016rK\e��_����[���~Y�u+�*�����\u000EC�.J\u0005�t�1 �����V�Pe�\u0016!����y�#���\u0002�dI:�N[h\u000FKr=��^����I�\b��\\\v�����J��'\u0001��zW\u0015�p���q�T7�@����6\u0002Z��\u0005��OoJ\tDJZv�=h��L7�\b$\r\n�\u0014{�\f\u0002\u0016\v\u0005�d\r\n\u0015S/\u0003���%{\u0006(KIf����oG�U�#��\fN�\u0002�$rB �$��Kut\u0003�|��\u001C`���&�n�����c��\u0019:&\u0014\u0011�\f�-�%�\u0014��{K�H�4\u001E���~�'\u0013�������\a�{��]$\u001FHK@�\u0016 I(?4U� '�����3��h�8]9�\v��ei6�i:R�^�\u0006\u0019��4r�+=��5���\r\n\u0003\r\n���V����LA?\u0015�\"�7UG(\u0016d�\u000F�|��I��b�7~|���S/t�\u007FkOM&\u0004�$��I�U+�`P\t�*�,�*Kf\u0015���q�rU#x�KJ����LTr�\u0015�U�UZ�'��\u007F�\u0019�SL,\u001E���XN�e&Y\u0016�E� ����F���G'.�a��\u007F���\u001D�0{��:�\"���\u0019��O\u000FV>=X��`���\u0015�����\a+�\u001E�|z������\a+�\u001E�|z������\a+�\u001E�|z�������v?��$��qa�����U�\"�������\u0014>�Y���H\u001A%�$s���*\a��?)��h�!�G�}\u0017\u001E������:���c\u001E)�'������9����?�w��K��F��K�1p#Q���\vJi���Y�u�W�30N����\u0011����rd�<\u0011��%�����o���_�?�a�_�o\u0001���F����������\"=������@�`\u0018��o�����_d\u007F���c�\v%%�}wDk,�\u0004��>�L���bO�!'Gu�RT�e�F\u0018�\u0004�90���\u000FF���W�\u0010�\u0003`��� =�n010M��=�\u001E�r\u001E%��`����\u001C�#A+����fb�O�7\"/��9�^�\a�]�=�}\u0002\\;�_\u0006\u007F\u0017���3q\u000F����K�\u001F\u0016�\u001F�g3�\u000F��\u0003����~x&�}��6v���/�G����m�sA8\a&\u000E�\u0005�^��\u0005��K\u001A\u0018l������N�[\r\n�\u0016�\u0005t�\u001E��h\e�\u001E��J��Jw\u0003�w\u0003�v\u0003�v#\t\u0004����K�S���8� �.��\v�\u0012g��_�\\e�����\u0017����>�\u001F\u0006�%0���m`\u001F\u0004s�<��\u0001�\u0005P�}��#a7\u0010���*���,�\u0011P��\eGm��\a���*B���DWO��hhjT�!��Q{��B��u:�\u0003�\u0004�A�`����Y�F�v��c�3�uh�\u0002�:�\u00103�\u000EI����\u0002lz�-E�\r\n\u0004$ib�Q\r\nD(p����6e�r��%\u0017\u001A�J^�����!����K��l\u0013��J�^\u0001yu�\\\u001E[$�N\u001CT\u001FQ\u000F�_R�SK�e/�������I���6��d}�=���#2�A�A9���S�Q�\u00065���yu�Z���#u����*\u0003�\u00060}`\u000E����[��c?\u0003�\u0015Z�\u0015P�\u0019z��3`Z!v+`�3�\u001E�H\r\nOz���xz����\u001E|\u0011�$�\u0019L\e�>1T6\u00152�\u000E��>\t\u0001\u0013�P\u001D���\u0003��~�@`���\u0016�����X��\u000F��\u0006�90�`X�w\u001E\fP\r\n��aq1�\r\n����O�L���]�C>\u0019z��\u000F\u0013���`\u0001�kj�Jy/X&����\u001Ah\r\n�\u001E��}�@:�>*i�5\u0005��MG%���@m���$��\u0005b��Q���\u000E�����\u0003K�/}q�kK%�K�K�������H$^J]o��'Gl��J}�\u001C�8T�\u0015��`�\u0002�\"=�n010�`�`��q��,�>\v���&0�`��������\u0016���a\u001AF \u0012�\\\u0015�B��\u0019�N4�-\u0005��\r\n�0\u0018\u0016�~\u0006����\u0005�8�\u001F\u0006�<�o\u0012�\u001F��$�\e��{�\t���n\u001Dt�u�\u0016L+�>0R�\u001A�\u0006�\u0005\u0006R\a�\r\n�\u000F�q0\u0012v\u001D��a�0���3�3l\u0011�-�s#�\u0019�\u000F�Qa�30\u001A�\u0005-~��\u000FR{\u001F�k���uK�\u007F[���\u0012�\u001DK�!��0\flZ|/�=��N�\\���N[P���,���L\u001E�e�����u�.�s=�\u000F<��x�\u007F�h���n�h�x�{N��Z&��jb������A^������qk+��:->�!w4��.j;�����~�\u001E)��?�\u0005�\u0012\u001E�)p�1�:��HM\u001D8\u0013#5��\u0019\u001F�9\u0004�?Fj�q��?�th�\u007F\e�_p���K�AB��\"�\u007F�\r\n�\u0018����\t�'Q\r\n\u000E���H��$�������e�U����f��a�@��$���HQ;���H� ��0*��>0Rt\u0001|�\u0019)�\a�\u0017G�z�90\u0012 \u0005�q���]g����!q;P�!%Y*��\u0018R�\u0001w��r�H\u0011yk\u0001�`\f�\u001F���\u0013\"�|\u0001�P3��=����G>��\u0013�h�\u001D(@]\u001D���k����\u0011�������\u0005��k�����b��!�o^�����_���c�\u001F�&�\u001Aq�V4�\u0003����;���\u007F\f�\u001Eq�T4���\u0017��\u0018|�}\u0002�<\fq\u0019|�}�h��Y\u001F\r\n=��Ph��5��G|��\u000F\u0005�y�}s�\v�\u0018h\v�x5\u0004�\u0014�u/�9�^\u0018\u0018�\u0010��@f��]�����{�\u0018n\u0018=�.�����!�c����c�G����\fS��x�/���������g�\u0013�b9'��;��\r\n����)4\r\n�B��)$\r\nF�\u0014�T�;�?�+3\u0010G&!���\u0006��@zQ\u0010�?�\u0015\f���\u001C��i\\1\u000F\u000F�\u001AQ��y����1�����\"����\e�����-�4��9����@���v����>�8v��\u000E������\u0016�8�R\ajl����\u0002���~���7����j�������\v>�j\u0013�\u0019:n�Wi���\u000F���b��W�[�K\tp%��qx�\r\nn����V&]��4�G�����Nfk�r��w.h����L\u001FDC5�!�F��DC^<J�-���L��\vNx�B��q\u0003�\u0004��2��IH�\u000FY@Z���h�\v�iZ~�E�\u0001=\b��g&�AXO\u0013�k\u0010M�I\"�\b\u0004 JQ�D9Q\u0019�\b'\u0002�4��t�/ \u0014�\u0005\u0005h>\u0001�B��x:NX�\u0003T �a\u0014\u0010��5\r\n�\u001F\u007F�y���x4���������W�\u0002�6|��.���v�;��s\u0012�\r\n�����.�&S�?��\u0016\fw�\u0016p'�\u001D\u001F\u0013�A���\u0005'PG���':����$���%\u0017��>94�����M�5\u007F�c\u0012\e\"��'y=��1��$�I�W#�����$�$��q�<�����\u0002�k��^pG\u0019�\r\n�C���2�l��K;�l����3\u0012\u0004��:�2���\e��!A�u�u$\bz'\t���^\f�~v��q\u0006?%\u0006\u0019�����\"�Z��`�?���\u001330\u0010\u0001�\u007F�J����zV4\u000E/�~�������a�mA\v�g1 ����\r\n/��V��k�j\u000E�\u001C�9^#\u001D\u0018h\u0001o�����L�7�\u001D�\u001E�\u001E�\u001E��H��������?z�\u0001�&�\u000F��\u00054�\u0001p��<�\u000Fd�\u000FA\u0006Y0Bv�����u^�\u0001�^\f3�b�\u0003�\a&\u0001f\u0005\u0018)�\u0016�?\u0002�\e0\u007F\u0001#A��}\u000F����\u0012\u001F��-��v/ 9�P��V�t4^^:k\f��F�]�Np��\u0013���R+�#�\tU�\u001E&�D�O)�\u001E�7��\u000E�?�H�R��&> PmK\u0016e#\u0018�O4��\u0013+\e��D�\u0016&���F\"(+h���\u0002D��5Z�\u0010�\u000E @\u00054\b8\u0010��f�k\u0003����?��/Q\r\nendstream\r\nendobj\r\n\r\n30 0 obj\r\n34154\r\nendobj\r\n\r\n31 0 obj\r\n<</Type/FontDescriptor/FontName/CAAAAA+TimesNewRomanPSMT\r\n/Flags 4\r\n/FontBBox[-568 -306 2027 1006]/ItalicAngle 0\r\n/Ascent 891\r\n/Descent -216\r\n/CapHeight 1006\r\n/StemV 80\r\n/FontFile2 29 0 R\r\n>>\r\nendobj\r\n\r\n32 0 obj\r\n<</Length 567/Filter/FlateDecode>>\r\nstream\r\nx�]����0\u0014��<\u0005��b\u0004�6���H�$HY�G��\u0001\b8)R\u0003��E��>����E�\u000F���|0�v��q����<�'���~�f\u007F\u001F\u001Fs�����Cb$��v�W����)��������q���u�}\u000F����L_��x��������\u001F�����)\\�\u001E�������y������>���Ks���z=v�q�<_��\u007F\u0005\u001F������*������~n��O�y�I�u�I����l�s����l�PjBi���M`Q�\r\n�%\v����B�|\u0003��\u0003�\"��\u0015�\u0006�q�\u0005o���yg����W�=Y\u001D\u000E�\r\n\\+K\u001E���\u0005�\e�W\u000E\u001C����\u0002\aC\u007F���?\u001C\f�\u0005�&�k\u001F�\u0017ZC�r\a�\u007F�}��\u0001��R����\u001A�\u0017X���\u0003\v�Kd.�\u001F�\t�\u00059\b�\v�H����_����a^�\u007F�}��t,�\v�\b�\u001D�%�����{d%��u.�[���E���\u000E9��\u007F����U��C\u007FK\u007F�wm�\u007F����������������j��\u007F�^K�\r\n9X�[e�;�S\v\u007F��rM��\\���.�����iM���\u001D�\v���#C\u0017�����������\\�GV.����_�\a\\�?��E\u007F�\v\u0017�Wf�\u0005��\u007Fx������O\u001Dg��\#$m\u001F�\u001C�\u000F=������\u000F���6�\u0013F��7��'z\r\nendstream\r\nendobj\r\n\r\n33 0 obj\r\n<</Type/Font/Subtype/TrueType/BaseFont/CAAAAA+TimesNewRomanPSMT\r\n/FirstChar 0\r\n/LastChar 80\r\n/Widths[777 722 500 333 443 277 500 333 500 389 277 500 500 443 500 250\r\n943 277 500 277 333 277 250 500 610 277 777 443 722 443 722 610\r\n500 500 333 610 250 333 722 722 722 556 389 500 500 500 500 500\r\n889 722 500 556 500 443 500 500 500 500 500 500 500 722 443 443\r\n666 666 610 722 666 500 333 500 556 563 563 563 500 722 443 500\r\n777 ]\r\n/FontDescriptor 31 0 R\r\n/ToUnicode 32 0 R\r\n>>\r\nendobj\r\n\r\n34 0 obj\r\n<</Length 35 0 R/Filter/FlateDecode/Length1 25972>>\r\nstream\r\nx��|\vX����;���e��~g?XX`�[\b�@\u0012��&�@H�\u0011bhX`\tk�%�K\u0010�&��Z������S���s���H�\u0017����6�����&��Uk��\u0013ck\r\n��3��M���������g���;3����g>6���� \u001Cv��R��s8�d�\u0003���HT�N�hxSs\u0015�'�t���m���1�\r\n�\u007F\a@�z��X�7\u000FZ{\u0001LEX>�w9{�^Wj\u0002��!��~\u001C�83��>�@f������~W����_2��q6$/���S�O\u0019t^>�\u001F�'��:��!������S��3��{�=>�\u0011�\f\u0001l�\u0016�\u001F���k���a\u001F�G>�c\u0004\u001F�\tGP��TP�u�0C8���Q�\vX�kyI\u0011n�d��[XNbyg���g��`��,tB@+�L�(�,�\u00162�\u001D�\u0015��N�\t\u0015��\u0014@;�H\u0002$\u0002%\u0015�D�\u0010\u000Fj\u0012\u00069`�&h�X�\b~G��\u0018,��H#�!Y�\u000E�\u0005\u0019�\u0002qP\u0003�\r\n��U�wa\u000F�J��(�~�H�\r\nk���qX\u000F��'p\u000F��p\e�I\"��3a�\u001Az\u0013)��:x\u0012~\t!�\f���A*��\u0001�BO�\u0016x�l&��R`\r\n\f��p;�\vO�Ir=�V�C]P\r\n��%Z\u0012Mr�kB\u000F�2����C����\u0019��E��S��1�\u0001H�����1\u001A�a)>Cp\u001F\u001C���\u0004R*�A\u0004��^�p\u0015<&� ���\e(���J��\u0010\u0011z��)�\u001E�\u0005'��d���_W\u007F\u0014�\u0002�P�\u0012�t\u001C\u001E���\u0011�#Rk$m��Lu�\u0005�U\a\u000Eh�������Ps?��9b\"�d\r\nR�>y��%\f\t�G�\u000F�)8\u0003\u007F&9�M����\u001Au��=����\u0012JHc\r\n\\\u0002\u0003�\u001F�F$r)��\u0016\u001D�W�]�A�7�\u001C���e�#��B��\u0006\u001EA�~\r\n��kh�F�L~I�\u0016&�_\u000F]��\u0016B?Jq-|\a\u000E��DM�$��\u0010�,%�(��d��ES���\v��c�\eCc�� \u001D}�\u0013\\��2�\u001A��'�(�\u0016�\b�H\u0012�,������D����Q�\u0012a�p�JR��zT�\u0003�g�H�\u000Ff^�9�Zgt��\u0019�N��+P�S�\u001C�_\u0013�$�4���\\����>r\u0015�O���O�K\u000E���1�.����&�\e�-�0�!=J�\t��]�\u0017�\u0016^R��~����y6u���\u000FC��#�4�?���\e�S�\r\n)���P���\u001D����\u001F�\r\n�\u001Du~�^�_��\u001D��I�\bm�W�AoJD�2��d�<��\u0012�NF�8��<@~D�\"'�g\u0014h8���N��Et\v���O?\u0013�\u0004�P#\\.�&�L�T5�.��Q����4'�Y��>����30���u��P)��\u0006=/\u001Ac�\u0004j��.B+��\u000E|��\u0013FQGW������\u0018\u0004�0����(>o�o8��y\u0017-q\u001A��\f�hO5��#�^���Co�\".���\\I�!� ��s\u0017�6�\u0017��\r\n�\u0019y�\u001C'o��Q&�����B�Z���\u0013������7�\u0003������A\u007FK?\u0015�B�`\u0011��\u0006a�p�0.\u0004�\u0003���_�l�\u001A�j�v���WP���5���\u001E�\r\n�{���\u007F�����:��Ys�fJ��6L[�m��i��}X{X�\emH�������.Hs7�KU�t?\t�)��\u0019�\u0017~Bo!�.����A/l�S������/�V�\u000Fz\r\n���O��,�\u0012<\u0005/�_U�����i\u0012|���\u0016�I��w�\u0004R&,W�U��Yg\f���\u001E�Z�\u0018b�\u0011��\u0015.&��'�&�\u0010�\u007FT=�:m�o�G���E����\u0003�0�\u0001����#w��8|\r\n�J\u000E\t\"9�~�\v���pb�[U��ZZ�I�;5�h�Cd}�y�\e�#F�[d/�!|������B�.��V�\u0005)!\u0016��*\u0019^���\u0006w���\u0001&1\u0006\u007F���\b�\u0018\u000E\t%�Yu\u0002m^x���z�_�\u001A9Ck���<s�c�\u0018s����X\u001E����\u00130����#�L2P��j~\r\nw�>xR��,�;t7\r\n\t/�D�&�\u0010���_���BJ�� �Q\u000E1���\a��e�\f��n�\u0019�qf5��\u0006���b.�B[Bw�;�\u000E�)YKb�Y�^\t��[���S�y���\r\nXMn���^��s%�d�b��S�����G�\a���_�,��1j�B+�\u0016N��!�\u001E��{�\t�z-FO\u001E�O\r\nr�\u001A��\u0001�!<\r\nu$\t�1\a�`��E\u001DlFK���5p#��w�\f�)|D�d\v<\u0003�c��c����:��\u0004\u0017��}�]��_#�8�\vi`G=}J\"�2���X��\u0015��4��\e�=f�\u0010�+�,'�h�\u001E���2�P\u0006�d\u0002\u001AC\a�\u0013Z�^x\t~\a�x��b�>����7\" \u0015*�o\u0013\r\ny3-�e�-<M��4�@�j��}%��\\�P��\u0010K�A��*��3v7���#IRu��\u0015�++����,-^RTX������d��2�\u0019��%-5%9)1!>.6&:*�l�0�\e��:�F�\u0012(��\u0006kc�\u0018�u\u0005T6�����ou��s�@W@����8\u0001�����1%���\u001C�$cJs��,��\u0015�yb�U\f�\\o\u0015�����\b�To�\u0010\u0003�8����\u001C6\"���\v����z1@���@������z$7a\b�������`\"���\u0001�@�ux��W\u0011\u000E����\t\r\n:#2\u0015H��7\u0004\u0012���������\r\n��oo�ONO���\v��\u001Ekw���\u0001���@\u001D�&��\vh�6��I\u00037�\u0013y��7N����\u0011�k�uni\u000F\b�\u000E�G�\u0003��\u000F�_q2a�������[8�,�7$�E�\u001D\u001F�N\f���}�l:�;:�\u0006��Y�]���������\"�F�v�\a�^�Rd�0�d�\\�\u00066�u�\u0018�[k����u�i��\u0003�a,=��$\u001D\r\n���\u0006q����\u001E�N�v8�S&b`|��d�$&.����0G����0)@�q!����\u0010GgP��9�\u0012��u\r\n:D@�\u0011��v+���U�e0��\f���ApU�\u0017-�\u000E������l��\u000F���Vq�c@\u000F��z\u007F��S\u0019�d�?\u0006\u00062?�s5���\u0003\u000EG�ng.��C�\"�U�_���s��m\u001D6�����\u0015u���,D���3\u0003�0%A7v\u0002����}\u0011��� \u0015::\u0002���L���^�fv���-���'\u001F��4�\u0001�m���\u001C\u0017��_\u0019 q\u007Fg�%�7m�6���.6�w)�mj[������)P ��]H�\r\nD�\u0005>�N�e\u000E�u��\u0003�,���N�;���W�\u0011\"6\u0006�]���#,=�K.�\r\n}�V�f~��f�����|Q\u007F\u0011{��\u00022��������a��\u001A1\u0003��7Z����q�Thw�U4[�\u000F�m%{|��k��S�'oH\u000E4���B���||�aw\t|�^���\u0003�\u001C�h�\u0004�\u0014\r\nj�\u0011\u0001���#\u0004\u0012u\u001A�\u0011*<Ej@���&Hp���8���|zE��\u0015P���3��\u0014�G�GfaE@\u0005����g�\u001A�\r\n�j������*\u001D��*\b�*\u0012�.�\u001DM\u00174\u0011Do�:4E\t�xG��a��,�\u0010\u001D�ye�2���o�~��p�������T�LS\t�\"k�X�l*���������m\u0016S-��X���Rc�fH2'���cs\u001D&�\u001E���bH1�v�v��e���q�s&�#�dPY��K\u0004ki�~\u001D��=d\u0017����\u0012��m�6E�RDT�r�`,Yn�YtT�C\a,K\r\n\u0012+�H�D{�\u0003�o>y����8�|��d'T��>\u0015\u0019_���DFUTT������:����S2��%E�\u0018�$�j�Y34�1�q�\u0013\e��f�����\u001A�4.niqYi���]@KK��\u0016���r�\a������\e�M�\r\n\u001F�`���O^����,I�QYYy\u007F����K��=t�%\u001F<^[Ux]rR�Q�}f�#G\aW�[\v\v��F������I�19�\u0014^\u007F���E���\\���[�;i\u000E�\u0011W2Km\f��d�\a`)\u0019�����L!+\"�r���k3���)�z{�\u0015�lR\u001FV\u0012��\u001A��c+�!���7�\u001AF3\u000F\t���4Od>a{�\u001EVom�����~����v��A����\f?��I����\u0004)�\\=�@�^HM��\u0011?\u0015��bpdW<�|!5>��t��1R\u0006l.z��f!f�1>!!C]�\u0010��\u0019z�4G��*��T�����%�Q9�%�O���26DN��:ZN7��\u001F4�-z�o~�3yB�|���q\u0005\u001A��1��p\u0005��Dq3*�s�N\a+h���c\u0013\r\n��1�X�kL\u00064RVvf���f�[�Y\u0010�n�%��d���\u0017�m�\u0002�h�\u0005]�:�8������\u0002\u0001�c�\u001E�$;���\u0001�8V\e^_446&�\e;\u0012�o����j4ZMl��y\b�H�\u0019�g�A�7�n������m��7-�V\u0016���JonZn�_3����\u001F:R�H�G\u001A]��~\u0018�R\u0014�����K�����#3�\u001E��!I����,�%3����W.w?�}�QRL�k�5�V0_�\v�%�V����%RX��J32lb*��?�\u0012���&Jhz�Io�,s\u0016��\r\n��@\fS�{2/55a��MF�s�;�\u0015o>s���|�s���\u0015L���B\a�����\f-\u00171F�A\u0019��cDh5<@P��R�\vb�����L4\u0019Z����W7U���U�'�V:����U����b#2\u0012���\u001F�\u0018=0�xIKEJl����������_��dC(\u0004\u0017�N\r\nO�;�\r\n�F�h1�=���H�\u0002uH��\u0012������8T\u000E�]��\u0002�9D��\\@�u:JK�-�S\u0010��\u0011�I���|\u0012�\u000E'Q��\"lF\u0002�x�V�3�J*��\u0011���*��(1��*\t\u0003g:�T��UrS�����%��2s\u001C%��cV\r\nV��ee�Z��m�VS�%�FI���q\u0001��-�f����\u0012Cb\u0006��\u0003���v0O7�F��lfi�s��y���\u000E���\u0014&�\u0015�XYR�n\\O���,ib\u001A��D�FS��������\"hL��l�25����� A��M\"�#�I�\u0010�F���� E\u001D�\r\n\u000E�����v�cO]��$�T�5d�y,\\=��\u0015��<��[�/|�yw�\v�G��]�a��iW�>�n�n��\u0004\u001D�����\u0011A���\u0003X30�E�g����P^V^���m#3W�l�u�k��|���5�\u0011��\u0005�i��\u0018[V�p��w����}$��������\u001Fo�\\uQb���$��]���\u0016�S��[��`�7�2)E�\u0017����\u0003$��'\t{Mz���iolb��[�\\\u007F�L���\u0006W��Qu��Sf�\u001Ca>��k�\u0002�F.kn)/oi���\u0002��y����U���09C\u0003�Qj��>.��\u0018�PB�F�-�#%{�hV�h4}-��\f����dPM���\a����\u0015�H\u0012Yn++K��-�\u001C�\u0010\tO���\u0012��A�w2�Uw9�=\u000E�!���A<��\b��N��R��BR����1�\r\n��x���H�����%���Vl��\u0006\u0013XPA�i$��z�ZP'6�\u001C\"���a\a\u001E��x��a^u��l��\u0015\b��}�\u0003\u001D\f/\u0004�\u001DL���;x\u0016=[��NCTU�\u000E���>���<��fC\\���nA���j��/-�f��\u001F������K\u0014�X\u0012���<����W~�P�s�\u007F���7\u007F��4/5#]k2EG[3��:�~ueI�*.}]nrVJ�vE��v��/y���k\vcb7?9t��][�\v��\r\n4����9�\t�����}��|����\u0004�\r\nyRt��+X\u0016l���r�w\aU\u001D\u0002M���\r\n\u0015z\r\n�g�]�T��O�j�&K#���R�E�\u0010�)U7R���x2�2E����D�����L��t$9%&�b��oH�\u0019�LK�5#,�\u0012a��dZ�\r\n�k)���iqX���h2E�%��\u0005�6y�l�<F�\u0004\f=.mJ(%c�\u000EM�\u0005=�\u001E\e\e#��T�H+KM1D�9\u001ACc��U%1R]i�TQ�@i\u0019VEK�r�c���UF&Vi\u0016���%�\u0018\u00123E\u000EK&K~ �\u0016�\u000F��|��4����\u0012�\"\u0011�\"\u001D��\u0015�-R�-��:1E�����~d����<�\f~d#��i�1���&�+Kx[����>5������'a6u�p`����\u001D��s��N�c��p�0��d\u0005.�qJNk���p\b��\u0015+H'^�\u000F��\eE\u0019�E�QLx�I����������*��\u0015^;L,1��T�n����\u0017Oj�����Ab����-2&.>\u0016]�\\9�2��G�K��������\u0018sv�Lvi�9�������������U��c-�\\M\u0015���2P����f%��{|+���1����F�\e���JtY,k�������)��\u0014��;2��\u0014\tQ�b�4G�S4����)���\fc�%�\u0001��LK�a�\u0001X�o�%\f���4D#\u0001\tO�DE���\u0006Rp\u0014�f�\u0010IBnx��h��`O���<��\u0005+KY3)ZKx\e\u001D�[�0��$\u0010O��\u0013�7���+���4jI�J�'-��*L�N���t��4Mj�4�\u00010K��df�\u000F�\b����@��s�\e�tb�p,L��_���f����y�K\u0005u3�����Z��\u001F��Kg��M�)Wef���\u001E��`\u0016��-���V�YH����}�}��W�pH�\"\a�D���\u0011b�F�F4\u0014\u0019$�`��]\u0011\u0006*L�\b)Um8\u0018��LT*0�-j��G�����DK�1��L\u000F��������c�BtbR���\u007FQ\u001Ct���?�!1g6��\u0019���N������\r\nb~\u0011\u0005��n\u007FKc�(*;��5�]�4�����L����f��L[\u007F�����+���U��y�����\vS{��{Vf�J�b�xn��*<��\u0001�A�\"��\fQ �\t�\r\n\u007F\u0015T���;���U\"�I�%�7�&��#imbrI%���\v����qz�p������aMBcx��RaS�a�����q�H��(-�\u0015��H1jS�k�\u007F\b�$\\g���d\u001A\u0013��b���\f���#�\"q�pcT��o��x��\u0001�\u0001���'�g�z�W�\u0010C�jE\u0004#��c\f4�\b�\u0006��`���0�2�U'��i��H��\u0011��\u0016#��\a0SI���\u0018<�\r\n��z}��D\u00181�F9�\e#�\u0002����j\b\u0001��B�hV�8B�\\\u0018.7a\u000EM��\\�4�����\v�\u000EG����+O�f&2�j1������&Z��\a�x�u�W|`>��\u0019;��K^T�u\u0005\u000E/�.���Ic\\5���$z\u0005�ON\u001A���9VnM|�D0\"Z�+\u001D�}�9F����E`/\u0016,2�w�\u001C\a�������pf&}dJ5M�\r\n�|0\u0011_��\fx�w��J����6��\u0012�R�T���g���l+I�\r\n�3T�~��\u0012'�Y�{�9��\u0003C��?h���\u007F�\r\n����V|�K������vi��O���@\u0002z��h�_�M�i�K��\b,�\u00185\u0015$E���4\u0015�����\u0003����`��>��\u000F*�4�\r\n�c�&��|\u0016�����\e��~K�*�6��~]������;\u0018�\f�P��(��\u0010j�����A���V\u0015\u001E�\b��\f�\u0005�Y\u001A�1����(��\u0003��a�3�C�+�\u001A\u0012��\u0002k �\u001CS`-�N>S`\u001D���\u0015X\u000F_��*p�z��[�\r\n���R���O�Z���\u0003��)p\u0004l1w��n��\u0019\u0005&`�\\��\u0014T�k\u0015X���V\u0005VAL��\u0015X\r\n��w*�\u0006�\"���Z\u0018�|J�u\u0010\u001D���z��Z��a����\u0015��\u0015��s��`i�,oFas��)p\u0004\u0014$|��\u0010\u0015�zDb�\u0002�� ��a5��%v(�\r\n��=\u001C���&�&\u0005V�-�f\u000Ek�]\u0012\u000F)0�\"��\u001C��xx��\r\n�����9�g�MJW`�o�E��N�J\u0005F�&7(0�L�P`�o��\u0014\u0018���_\r\n��MIU`�o��^h��d\u0005F�����h��O\u0014\u0018�ku+0��zT�����q8���~\\�QW�S\u001C6�x�#Y�UP���p8���U��\u007F�6\u000EG0�w�S`\u0015\u00149�����9����[\u001C�f:��V`�y^\"�c\u0018?y�\r\n���5s8\u0016�c��T`\u0015���{�q�#\r\n��_�p\"�\u000F)0���{%3\u001F�_���\u0003��9�����R����=\u001C�p�\a\u0015�����d>���\u0002�\u000F����v���h\u0005F�\u0014�:�g���N�U����\u007F\u000EF�\v8?:.W�.\u0005f��?�e��\r\n��_�0�K�'\r\n��\r\nA\e��0��\u000F����\b\u000Fci�~\u000E7�\a���\u0015,\u0011���E��N\u001Cws\f\u0011G\u0006p}\u0001B�|��OR*��L��83�#s8>\u001Cc����-�\r\n|� _���h\r\n�\u0018�v\u0003���<���\r\nH���}W��^��\r\n�|L�\u0016lG9�\a��H�����\u0005�+��N�[Y\t��n�9�\u0018w��\u0016!\a��Q\u0006/����!��/M�o��_/��_��z�_ S�y��\u001E�\u001E�M/��1/l�1�����\"���\"n���e`v\u0010��p�\r\n���W\u00119f�E�����^�{�q�2\u000E�:\u0017R�q��\u0015j\u0005��I�%\u000F��x\u001AF������>��F9W���u+\u0011��}��y\u0018��1E\u000F^.\u0015���#�8��������ir���|u)�W?_%�eV�N����9��������\u0013�,l��9=�R���Zk��e;����*6\u001A���!M'�����)2�r^{�ft�|��i�r�,��8\u001F�B,F\u0019N����\b��������\u0001��n��p�sq����o�G�r\u001E\u0006��\t\u0010\u0011��h�Q���������\u0005Z\u0013y|�\u0016��O�mV#���q=9���E����e�\u0012�}z94����z�����h��i�,��n����D��/�o��e\u001D\r\n)�\u000E����2����d\u000F\u0017\\��n�[k'��V�P��<6���jU���<s���\t�k���w�B��|���%�����,]-�\u001C��=s��~)�aH���5.�\\/����#\\�2�\u0011.��g+��(�q�� ����NN����{�7�9r�s6�W���\u0003���s;:�}�J�c����G\u0016�\u000F��E�,��\eD���=��=<�\r\n�Yx@���X\u00068wc��#<���F�L?���G��=�m\u0006q���K\u0010���0��ha>��k�+��\u001Ab\u001A���\r\n��<ea�`�.�\u0001~e��(��r�\u001AYd�Y�N��=\v��r�\r\ns��-���\u001A�r�������~���{D!��=\u0005<k,��\u0002%�\u0014r�A�^���g\u0002�\u0017��`+�-G��\u001F�sgd�����;�rK����]Z0J�0�\e���\u001D���p�EO#�\u001El�\u0001G6b�nA��Do������[h\u0018/���\u0017O����\u0005�`X���\\f�r�������e���~c�_g�d\u0012�\\p+X�eg���ip�\u0019��� {��B���p�3U�0��\u001D�n,:w*���go�rr���-����F�\u0013���{A\u000E\\���H�S��\\��(r1��\u0016e�����~�J&���\u001F��\u0018��e\u0016������5%�%_��/��VbTD�9�}|���������s���\u007F�rF�g��\u0017l!�i��P��N��0��[�\"_������y|��}Y������c���.x_����.���{������\u001A����yz��������`6��cz\u0010W�A�p�3��s��|-��A%K����jX���l�����D������E��������@\u001A����V\u001D��\r\n����<e&����z����;�7��<�e�?KO�I�r�.>\u0017g�}����d\t��Y~�8����s��������\u0017w�Q�o�Jo!G.�$���3K��?��������%P���\"�K���o�%X�����bhR0�pv\t��(p9�C��UeP�o\u0014�0���Y�??\u0019g�\r\n?�����ml����q�\u000F�m�.��3����X��\u000E{�N��3$\u000E\u000F�\u0014��N��<H�����30�F|��!\\����(\u001F��\u0002�f`@�������\e\\>�w����=���-�Qq�g�9T�\u0019���^��9�MVnry}l���e�bN�����y����B^���q���n��;�}n�Cb����\u001Atz�����+��ums��.��Wt\u000F�~D�x�����6��Y\\��W :�zE���5��h\u0005s�PK�m^�p���!�X�u������n4H����\u001C\u001Ap�!\u000F^��3�'nr��=^q����\u001A��j�\u0016���}�\vc��=�\u0012����s{}~�9<�r*<2t�2�d�Q����^�h�5�\ev\u000E��yb\u001F�0����\u0017�~q��\u0013{]>��!Wo�(����8�\e���v� \u000F\u0003cb���3�\u0012=C.F�)b��\u001D����\u001Ed�7������F\u00068kb���u�Cj�\u0011\u0014m�{�9 �����QT�8�f\u0010G�z]��k!\e\u0019r{]=�\u0010�c��\t\u001A`N>�a�h\b�\u000E1��\u0019���v\u0011]��]C>�N\u0017\r\n�bVEh��a���vz\u0006v2K��xq��\t��in�^��9,���:}�k\u000F���D\u001E���\u0015�Qs�b\u000F�{���H#>����\u001Dv�G��WZ\a�C~7��-�\u0019=rLD?\u0015}�14mO�����H������#�}���aF��\u0011�19\\���\u0006\u0006��\u0003����\u0001�\u007F\f7\u001E\u0019\u001E@�Q��_����g\"/��1��\u0012w�\v\r\n9���������\f\r\n:�9�p\u000F�|�Wx]\u0018\u0001~�xd\u000F�����\"2d�����z���\u0001��<��������\u0005�~�pea���h����\u0002t��~��@����vd��o���\u000E���\"��M~����\u0001��|I���5�k�j���k\u0011�5�k��5�ll\u0010kVmhhhnhi3�\u0019�x��\u0005\f���\u0017��Pc���\bY.�\eEFm1�\e����=��<\u0015�.����\u0006y�9�\u0001T�\u0010�;�y].��\u0002�\u0003��;�X�n�\u00135��[�\f�i�\u0018����=Pvy4R\u001F�e�/�����%;)���:4���F\u0017A���\u0012�\v\u001CXa\r\n�dN\u0015s�\u0011v�;�\u0003#<�8}>�\u007F��\u0002�b�H���Y)P&%\u0013�\u0013:E�����.�E�E�\"��m|������\u0018�����<6������sL\r\n�\a���s<\u0016�>������A�(&���\u0001������du\u000F�K\"�h��1QvSEC�7��X�7/\u001C�BLv>�\r\n\u0006M��;�H�U����~�\b\u0006�����\a\r\n��/�����.�S%\u0016\u0019����\u0016n��(��1\u0013��p�wn����\u0005=���]��p\u001F���!\\��\u0006\u000F��e%��b��e�E%EEz��M8X�dII\t��K�������\r\nc�����\e��W������P\\������~4�\u0018�\u000F#�����w�<f\u001F��K\tQ�j�������\t�\vO\v�\t�b=q�5����\u0005��/�.|At�\v�\v_\u0010]����\u0017D\u0017� ��\u0005��/�.|At�\v�\v_\u0010]����\u0017D\u0017� �\u007F�\v������\u001F�\t���\u0016[��=|d�����b\u0015�.�����k�w���p\u0006i��c����b�Y:r�e\u0019���<�b\u0013���N�Z���N�3���Y����\u0004F�\r\nU����p�5\v�v~y\u0017a�,�*�rU��L�L%�V��T\u0015���7�|����c6~)��XMLsd\t��\u000F\u007F\u001E�I�co�\u0012ZY�K\"���\u0015g��f\u000E����\u007F�v����h\\��n\u000E���\b��s(4�\u0012&\e\u001A��)l\u001D\u0005�\r\n��\u0016��`RJ��*���w,\v\u000E�`\\2��`m�\u0002�-��I{~���0\u0015��X�\r\nT\u0004s4_5�SP����'�\f�\ba��g��\u0018�M8;i�.�j��_�\u0015\v��0\u0001�X(x��a\u0017\u0016���\u0005������&�\"����!�Xv\v�7c��������\u007F8\u0019\u001D���!h����\a�Jd`��P�Z\u0013#�\u0006�yQ�\u0019X�\"�\u0016�4l��6\u0015�\u001F\t/����|`�d.�������\vcx�X��\bW@1�\u000F\tWC2G�U0B��W�\u001C{qM���p\u0015G�\t;���\b\u0003��`�E<,<��J���z\u0003����9��i�]a;� �I�����\u0016��\u0010\v�djRo,�_\u0013.L��S�\u0016\v�H�n^K���H\b�{X�\r\nq8wT�\u0003��>\"\\\u0013��L\u001F\u0016>�hg\u0018\u0015����n)k&�\u0011��5z�>�\r\n\b\u007FB����vz���\u0018jl��P���R�F�m�K0�\a\b}�f��M�\u0001��\u0003��\u0003��\u001C�S8s\r\nq\r\n�7aXx\u0003�c�\ea\u0015�\u001C\v�\u0006\u000Fq 3����U�*���0�������\b��U��h�v�dxDq���k�\u000E\vE�_��O(�\u001C\u0016����\u007F2!�-�yP\u001F���R�\u0005.����ia�p\r\n��\u001E���3�%`\u0012��\u0017�&�#�w������z\u001F�cX>��B�6��\r\n�b\u0011\u0010�u2�Tl:,l���\u0004#�Z�\u0016V�����V\ac38��&\u0011X\u007FXhB'Y'�\u0004{-��� .f�-��*��\u000E\v-\\����*\u000F\a�\u00139�\u0018���S7\u0019\u0016�������.�\u000F;��\u0013��1��\u0016t�J.�R�\vb\u0002�e�\u0014a��#L����(t�^���]\f]X��\u0012��BC\u0016#z1\u001A�\u0018N�\u0011�P�2�A\b��\u0006,���P\u001C_\u0002�X�ay\u0016�\t,j>����x\u0011����~,\u0014)\u0016b�����\v�n,�`���\u0011\u0016-\u001C\u0015�q\u001F�[CEX��\u0012�r\\`�;�\u0011���<��U�\bgu�\u0016�E��*�.�Ev�]�.�.�.��H�T��W,]��\u0002V�`U��\u001F���\vEzI��\u0017�zQO��Qk+���B��T.�u�{��6\vQ��5���hM8\u001E\b��|�E����=3���u����U\u001FV\tG��7\u007F�,\u001C}���\u001F�)\u001C�?��a� 5'W\u0016���\u0005#��\u0014�j����\r\n\u001Ea��OPY�B�\u001A}A�e\u00186�6\b���[\r\n�� \u001A�~�=��a�p��\u000Eh�5�4'4\u001Fi���.��f�f��\u001E���-�Vk%����:�\u0006*�\u001E�\u0003X(��z?��|f\u001A�c������\u001E�}\t�V\u000EY�.b\u0010\u0016+��5���z?\u0016���V��X\u001F�\u0015S��pl\u0018��X(����Q�)eRs��I!�|�I�e������L:]SI_�\\��\\���|\u001DW���~\u001D�\"�������^C��8�k���s�ua=�!\t�V\u000EY�.b\u0010}-h-7�$����V���r\u001C���XWc���\tk\v\u0016J��Z�wNf�\u0015���w\u0006m�\f����4�I��dbR��\u001A\u0013�\u0013���d����DBw\"i����\u001D�z�{Gp��T.=^S��%c�\u000Ex\f\v�uX���B��9�\u0018�1��\u0003X���0������!�g�2�^E���\u000E�L�\r\n\u001C�B2P�c\u007Fs;*R\u00175E�\f��,S�@0�����\u0004YS\u0013M\u0005����]\u0002#�\u001E����-����&�`5��j������X\u0013F/�L\u001C������2)\"��N��G���3��e\u001A\u000F��!\u0003'���\f��2��+��D���\f��\u0019�-\u0019��\u0019��\u0019�T\u000E�O�4���+�N��E�g��-��\u0013���h�W4v��J\u0011�����4�o��6^�>Qb��\u0018SK�OR�\r\n�4h\u0002�aJ��`\u0014���*����\r\nM\u000F6ga�\u0012l��&9��\u0001��`�\u0017��`���\u001A=5�\t��Xh\u0004���6<h���\u0006��\u0005�_�F\u001D�WX��L�n�����Tl>\r\n��as&�W����y��7�Q$C�+��m$O��\u001CF��\u0001l�Ql��������;9�U$\v�� 1.�\u007F\u0004��\u001Cy(h�����=\u0013�����A�\u0005�{�}\u0005�|;�w36�\u001E�;�����\u0001F�\u000E��tn\a\eo}��d��\u0011lf\u0014�����x����l\u000FV���;Xu�-�F&\bz7�\u0003;��\u0019����VE�N���[��S^\u0015lf*idDj��A\u0011����\v\u001E�%\u0013��\u0014�\u0017!ZU�n�f���\u0015�>\a6��9�cR\u001E��6j�L� ���)��l0B���QD�\u0004�r�I\v�5`��V\"S���QP���\f�\u0019�9h\u0017-�\u0010\u0003�q�a`#w\u001E��E�\u007F��\"���O�)\u001D\tZ>�������n�\u001F���zky\u000F��������f\u0015����\e�I�\e}\u0019�\u001F�\u0011CJ��h/�\u001C��Y�r\u000E[&��,\u0013�X����X\u001F��=\e.\vZ\u001E���\u0004W����r��a��6�x�&\"_��@B{�c�kl{,#�\r\n��oX|�T�p�W,�����-n�\u0006K?\r\n�\r\n����Y���-]�����_�l,�24�q��T���}\e,��\u0001NT�\t�`9�e1.-(=�t\u0004��n�e���OQ<��n,^�@���jm��M[��N�6K��M����tf]�.\\\u0017���4:���@\a4f*tBr������Y�Q�Z�a3e5��@\u0001%:\r\n\u0017A Zh�M\ek\u0003���)mhC`��)�m��}��\u007F� M��\u001Eh�\u0016\u0003g6Z�H���\u0001���\u0004�����6\u0001�\u0003��)\u0002m�S$�V�Mf\u007F��\u0010\u0010����d�6����\u0003�vV'TGUEV4����R����?d�Hp8\u0016�R\u0003�6ml\u000F<��\u0011(f@(��)�����!:@/k�?D�����\u0010��\u0003\r\n\e�8���@��\u001C\r\n��vD�f� \u001A�\u0002U\f\r\n��,@#\u00138\\?QU%#�#\u0013\f\t�f\u001DG�,#�-D\u0012n u\u001C�N��#}[���|��\u0012k\u0010M=�v��]=��\u0012\u0018������l\fe���\b\u0013�b>�~~:G��Oy�?��\u0014!���6��\u001C��\u001Dl4\aq\u001C�\u0017?����\"2�r�P;���]�\u0006\u0017���\r\n;�\u0013\u0002��Eqbh���lm]�=��u�\u0002;������^�X�~��v6��Z?\u0001�\r\nm�\u0013���>�RZ�`u�wL��Y�c�^���k��s\u0010���-c{��8��\u000E6���������j�Z�^M\ejISk��\u000Ej;����$5�a�t%�w�����x�,OO�:�I\u0015�����\b�[k\u0003F,l*�&��MaH��\b�w�������'?I\u001ER��8\u001Ci�\u0005\u007FB��\u001E�������\au����N�'��\u0006>�\b~�����\b������\u001FF�?\u000E��\v>G]�DssC��>��-$v�vt����7t8��D���?�_�\r\n����h�]����4��\u001F�r������\u007F\f�\t���\t�U��NT\t����O ����<��0�\u007F,�D�P�p��� ���3����a\a��r���w�\u001CL�Y\u001D`��F�V�#��u\u000E���[��\a|��\b_\"����\u0017s��\u0006��\u001A�\r\nendstream\r\nendobj\r\n\r\n35 0 obj\r\n12584\r\nendobj\r\n\r\n36 0 obj\r\n<</Type/FontDescriptor/FontName/BAAAAA+TimesNewRomanPS-BoldMT\r\n/Flags 4\r\n/FontBBox[-558 -306 2032 1025]/ItalicAngle 0\r\n/Ascent 891\r\n/Descent -216\r\n/CapHeight 1025\r\n/StemV 80\r\n/FontFile2 34 0 R\r\n>>\r\nendobj\r\n\r\n37 0 obj\r\n<</Length 272/Filter/FlateDecode>>\r\nstream\r\nx�]��n� \u0014��<\u0005��b\":��I��������v\u001E��jI*\u0010��o_�N��\v�w���s ���V+��9#:�tPZ:���\u0004�\u001EF�I�Q���W���[�\u0004m��\u001E�V\u000F�,I�\u001Ez�w+�����@�W'�)=������[���\t���T\u0015�0�{��}�\u0013$���2��_�A�7��Z�\u0019��fE\u0018\t��\u0002\u001C�#�����MS\u0011��_/e��\u001F�'wa4\r\n��\u001D\u000FU�\f9/\"\u001F�3\u00169����G��\u0014��|m\"\u0017�����\e�#���<r�q���\u000E����?��X�\v���1oL�4���56�p}\u0003�2��\r\nendstream\r\nendobj\r\n\r\n38 0 obj\r\n<</Type/Font/Subtype/TrueType/BaseFont/BAAAAA+TimesNewRomanPS-BoldMT\r\n/FirstChar 0\r\n/LastChar 10\r\n/Widths[777 556 777 250 500 500 556 556 277 333 443 ]\r\n/FontDescriptor 36 0 R\r\n/ToUnicode 37 0 R\r\n>>\r\nendobj\r\n\r\n39 0 obj\r\n<</Length 40 0 R/Filter/FlateDecode/Length1 2924>>\r\nstream\r\nx��V��\u0013U\u0014?w�������]�\u000E\u0003\r\n�t\u001F] �,Pv�]�����T7��r�;�Nk\u001F\e�H@#�M$��\u0018E��D�����!!1\u001A�\u0003��\u0017n�bb��\u0017�b�\u0017#�g����&�\u0003N;���9�������+2X\r\n�A�@\"�e=��^_\u0002���d���?�D�\v�������m��\u0001\b�x�djj|�����\u001C/���\t�\u001D�voW��A�wM���[\u000F�Q~\f�-\u0013���s��\u0003��(W�2\tM�C\b�o��Jk��\u001E�\u0011\vpr�������?���5���L�����\u0001V5��l�e\e��x\u001F�\u000E���&`��\u001D\u0001qY���\v�<<\u0003�C/\\�8��\u000EP�\u000F�� �\u0010�N��\u0013�\r\n����&<\u0005/���*\\\u0004\u000EoA�N���\u0002l\u0010g�������Z\u000E\r\n��~~����&�\u001C�}\r\n�����[��qz����\u0006\u001F'\r\n���n�qA���!9.����\r\n�\a�U�\a�>�PLWI�N�?{g�^����7�^Y��&�wO�-C<�������|���7�����\u001D\u001D�r�0n���R\u0005\u0016TUJ]-����+\u0014z�L�\u0019��\\��+S������Zb%���\u0001�$��%K�T$3��Ju5�\u001A\t#�R��V;�\u0015���M�*�=r�v����X%��[cf���D{J��\\�%�J'��y������\u0001f\r\n�����g�A��t����N�X��]�d��\u0015����e��G�\u0012'q��\r\n��%��zK�f:T\\���k���\u000E��5\e0A�\u001D\r\n��M��\u001E^���Z�`\u0013���c�;\"���\u000E�\u001D����Q>��\ttv���5��k5�#��FTy\f��;��\u0011�\u0013O>\u0010Q��BW�s�P�\e�\t��5��Z�p�����3�Z\u0001�M\u0010�8Gp2���L��c�����/��7:�E\u0001!�ES�4��n�}\u007FwL\u0013S�^+�n�j��@�����&�#\u007F�\et��9\u0011��5���3������Q�����\u0016����f�]�!M��F6�w��\u001D���w�_�q��C��������@?�64�1.�\a����5e����~�<�Hu�������}�����/��\r\n�=��r�����SK(w�+A�\u001D��\u000F���2*�u6�v\f\u0001e\u0001��jq�w3y}!����\u0004V�Dl/7N�\r\n\u0016Q���\u001D�_��\u0013��<�`\u0017��\u0015�K\u0003\\�1�\u0015���\u0005��\e6\u0016�\u0006nZ�X�[6F>Ygc\u00016��6\u0016����t��D�66�Y\e\vp\u0017���\b��R���:���\tT�\u000Fm����l,B=���\u000E\\\u001A��66���X�:�mc\u0011\u001A�\r\nx2��\u0002�9a��\tx�v\e\v�V�����\u0011\e;\u0010�6v���I\e�P\u007F~[b;�������A\a�D.���\u0017X:O{�D����P$D��P�\u000E�c4��Fc����F��)�\u0019tH\ec����PW(��\u000E��E��HWW(\u0014\\�\t��I���\u0001-��\u0014�YfD��c�T�%�)-��XD�X.�g\f���o�/���R46��$sZvBO�n�\u0015�9�\u001F��\u0015`\u0013���+�Nc�\u0005Bw�H\u00140r�\u0016\u0016�<Z\\\u0012!�)\u0016X���\u0017����,��R�y���OL��\f��L���cL/0c�������\u0013\fmF�H��\u001C��2����\u0005^w�8��u\u001A���\u0018t�U��b��(��Y�\u0006��_��n���]\u0012=��4�\u001D��\u001A$�\u0005S\u000FK3f ]�fYJ?zlIM�\r\n'�v\u001C�~h��nDQ(��� �h�A\u0006�0�w\u0001\u0018�q��co��\u0019��18�!��Mq��q�\"\u001AB\u0014�=\u0004*r�\u0016^��\r\n_\u0014�N\u0011R��Y��@�1�\u0005�:lE��;hG��\u001F�]6G\u0014F�irM�ry�V�I+S\u000E�\u0003�)��\f�\r\nC��\u001F�\u000E��?��\bj�Vm\u001A��c,�;dE�c���O\e���\u0019��e[���n'����*�Ln���Y��U�j��s�r�������!O\u0004���=��>����\t�\u001F�^b\u001D\r\nendstream\r\nendobj\r\n\r\n40 0 obj\r\n1652\r\nendobj\r\n\r\n41 0 obj\r\n<</Type/FontDescriptor/FontName/DAAAAA+OpenSymbol\r\n/Flags 4\r\n/FontBBox[-179 -312 1082 916]/ItalicAngle 0\r\n/Ascent 799\r\n/Descent -200\r\n/CapHeight 916\r\n/StemV 80\r\n/FontFile2 39 0 R\r\n>>\r\nendobj\r\n\r\n42 0 obj\r\n<</Length 221/Filter/FlateDecode>>\r\nstream\r\nx�]�AO� \u0010����9�\u001E6���&f�&=�\u001A�?������L����)VM<@�x��7�k��Q�����1�\u0018�3.qe�0�\u0014H�\u0006|p�Pew�MJ\v�oK���16����-�78=�8�Y�;{�@\u0013�����~M�\u0013g�\f�j[�8�=O6=�\u0019u�.�\u0017;��\"�_�mK\b������\u001E�d\u001D��\tUSU-4�[���?� ��}X�d-IS\u0019S���N�c��\u0001�2K�2{��?\u001E\b\u007F�'��Se}\u0001~�my\r\nendstream\r\nendobj\r\n\r\n43 0 obj\r\n<</Type/Font/Subtype/TrueType/BaseFont/DAAAAA+OpenSymbol\r\n/FirstChar 0\r\n/LastChar 1\r\n/Widths[365 355 ]\r\n/FontDescriptor 41 0 R\r\n/ToUnicode 42 0 R\r\n>>\r\nendobj\r\n\r\n44 0 obj\r\n<</F1 38 0 R/F2 33 0 R/F3 43 0 R\r\n>>\r\nendobj\r\n\r\n45 0 obj\r\n<</Font 44 0 R\r\n/ProcSet[/PDF/Text]\r\n>>\r\nendobj\r\n\r\n1 0 obj\r\n<</Type/Page/Parent 28 0 R/Resources 45 0 R/MediaBox[0 0 595 842]/Annots[\r\n19 0 R 25 0 R 26 0 R 27 0 R ]\r\n/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 2 0 R>>\r\nendobj\r\n\r\n4 0 obj\r\n<</Type/Page/Parent 28 0 R/Resources 45 0 R/MediaBox[0 0 595 842]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 5 0 R>>\r\nendobj\r\n\r\n7 0 obj\r\n<</Type/Page/Parent 28 0 R/Resources 45 0 R/MediaBox[0 0 595 842]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 8 0 R>>\r\nendobj\r\n\r\n10 0 obj\r\n<</Type/Page/Parent 28 0 R/Resources 45 0 R/MediaBox[0 0 595 842]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 11 0 R>>\r\nendobj\r\n\r\n13 0 obj\r\n<</Type/Page/Parent 28 0 R/Resources 45 0 R/MediaBox[0 0 595 842]/Annots[\r\n20 0 R 21 0 R 22 0 R 23 0 R 24 0 R ]\r\n/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 14 0 R>>\r\nendobj\r\n\r\n16 0 obj\r\n<</Type/Page/Parent 28 0 R/Resources 45 0 R/MediaBox[0 0 595 842]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 17 0 R>>\r\nendobj\r\n\r\n28 0 obj\r\n<</Type/Pages\r\n/Resources 45 0 R\r\n/MediaBox[ 0 0 595 842 ]\r\n/Kids[ 1 0 R 4 0 R 7 0 R 10 0 R 13 0 R 16 0 R ]\r\n/Count 6>>\r\nendobj\r\n\r\n19 0 obj\r\n<</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[197.8 699 298.9 712.8]/A<</Type/Action/S/URI/URI(http://sg-joessnitz.de/)>>\r\n>>\r\nendobj\r\n\r\n20 0 obj\r\n<</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[74 145.7 216.1 159.5]/A<</Type/Action/S/URI/URI(http://www.dynamo-dresden.de/aktuelles.html)>>\r\n>>\r\nendobj\r\n\r\n21 0 obj\r\n<</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[410.9 159.5 539.4 174.5]/A<</Type/Action/S/URI/URI(http://www.dynamo-dresden.de/aktuelles.html)>>\r\n>>\r\nendobj\r\n\r\n22 0 obj\r\n<</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[176.5 467.8 221.4 481.6]/A<</Type/Action/S/URI/URI(http://www.sg-joessnitz.de/sgj/index.php?option=com_content&view=article&id=55&Itemid=385)>>\r\n>>\r\nendobj\r\n\r\n23 0 obj\r\n<</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[333.7 509.2 407.2 523]/A<</Type/Action/S/URI/URI(http://www.sg-joessnitz.de/sgj/index.php?option=com_content&view=article&id=55&Itemid=385)>>\r\n>>\r\nendobj\r\n\r\n24 0 obj\r\n<</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[176.5 481.6 407.2 509.2]/A<</Type/Action/S/URI/URI(http://www.sg-joessnitz.de/sgj/index.php?option=com_content&view=article&id=55&Itemid=385)>>\r\n>>\r\nendobj\r\n\r\n25 0 obj\r\n<</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[277.1 671.4 411.5 685.2]/A<</Type/Action/S/URI/URI(http://skell.sgj.webseiten.cc/)>>\r\n>>\r\nendobj\r\n\r\n26 0 obj\r\n<</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[287 685.2 388.1 699]/A<</Type/Action/S/URI/URI(http://sg-joessnitz.de/)>>\r\n>>\r\nendobj\r\n\r\n27 0 obj\r\n<</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[197.8 685.2 260.3 699]/A<</Type/Action/S/URI/URI(http://sg-j.de/)>>\r\n>>\r\nendobj\r\n\r\n46 0 obj\r\n<</Type/Catalog/Pages 28 0 R\r\n/OpenAction[1 0 R /XYZ null null 0]\r\n/Lang(de-DE)\r\n>>\r\nendobj\r\n\r\n47 0 obj\r\n<</Author<FEFF005300740065007000680061006E0020004B0065006C006C00650072>\r\n/Creator<FEFF005700720069007400650072>\r\n/Producer<FEFF004C0069006200720065004F0066006600690063006500200033002E0035>\r\n/CreationDate(D:20131204231540+01'00')>>\r\nendobj\r\n\r\nxref\r\n0 48\r\n0000000000 65535 f \r\n0000062155 00000 n \r\n0000000019 00000 n \r\n0000001686 00000 n \r\n0000062338 00000 n \r\n0000001707 00000 n \r\n0000003294 00000 n \r\n0000062482 00000 n \r\n0000003315 00000 n \r\n0000005168 00000 n \r\n0000062626 00000 n \r\n0000005189 00000 n \r\n0000007556 00000 n \r\n0000062772 00000 n \r\n0000007578 00000 n \r\n0000010177 00000 n \r\n0000062964 00000 n \r\n0000010199 00000 n \r\n0000010583 00000 n \r\n0000063243 00000 n \r\n0000063385 00000 n \r\n0000063546 00000 n \r\n0000063710 00000 n \r\n0000063920 00000 n \r\n0000064128 00000 n \r\n0000064338 00000 n \r\n0000064489 00000 n \r\n0000064629 00000 n \r\n0000063110 00000 n \r\n0000010604 00000 n \r\n0000044845 00000 n \r\n0000044868 00000 n \r\n0000045069 00000 n \r\n0000045706 00000 n \r\n0000046191 00000 n \r\n0000058862 00000 n \r\n0000058885 00000 n \r\n0000059091 00000 n \r\n0000059433 00000 n \r\n0000059643 00000 n \r\n0000061381 00000 n \r\n0000061403 00000 n \r\n0000061595 00000 n \r\n0000061886 00000 n \r\n0000062047 00000 n \r\n0000062100 00000 n \r\n0000064763 00000 n \r\n0000064861 00000 n \r\ntrailer\r\n<</Size 48/Root 46 0 R\r\n/Info 47 0 R\r\n/ID [ <A2CD500624499F3CA1BD7C4884477B2C>\r\n<A2CD500624499F3CA1BD7C4884477B2C> ]\r\n/DocChecksum /9770C368EA0A5A502A739495D4B23AF1\r\n>>\r\nstartxref\r\n65106\r\n%%EOF\r\n", "fileUpload1"=>#<ActionDispatch::Http::UploadedFile:0x9ee3dac @original_filename="playercorefactory.xml", @content_type="text/xml", @headers="Content-Disposition: form-data; name=\"fileUpload1\"; filename=\"playercorefactory.xml\"\r\nContent-Type: text/xml\r\n", @tempfile=#<Tempfile:/tmp/RackMultipart20140410-12129-1o3vf42>>, "extTID"=>"5", "extAction"=>"ApplicationController", "extMethod"=>"action3", "extType"=>"rpc", "extUpload"=>"true"}
237
+ Processing by ApplicationController#action3 as JSON
238
+ Parameters: {"authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "textArea"=>"%PDF-1.4\r\n%��������\r\n2 0 obj\r\n<</Length 3 0 R/Filter/FlateDecode>>\r\nstream\r\nx��XK��6\u0010����9�\u001DU�a\e����\u000E���@\u000ECNyA�\u0006����)����G7��2��������W%�\v4�O�4�\u0011t�{}��Sp��O��~��������?N��I\ez��p������34�����\u0006\u0001�\u001C\u0004�g\u001C���Jha�3]���so��\f�:������z�@��[�L��\u007F�x\u0012t��\e����h������#_���������1\u000E\u001C6�\u0001�&pB\r\n5�\t�\u001E\t�\u0011��\b����T/)�b�%'^�����\b�8?���53��\a\u0010cK������Q�v(\u000F��_���x\u0010�wd\u007F\u0015��-�?H�����72���\u0002��c\u0014�O��\u0005!aQ�\u0012\f�����V��\u0003qYjC�<��+�\\�=�r���2]K��K�Q\"���\e]��3�\u0004z\v�R\a��dG��>\u0014�U�����h/>l�0>\u0006�����B:\u0013�\\�n�Q��X��4�E������\u0003y'y$-���c\u001C%���98s���5=�P��\u001C���0j��u��\u0015<��*��-�\u0014���p�V\u0015�`vL����\u0018X�(,�lm6�\u0010�%��l��}���xX'�������|�����}2����gm{���>�2\u0014ak��.�&��o9\u000E�BF�\u0017\t�\u0001�\\ya\u000E��0\u0002=d!H���4T �]�\u0011Q��\e�=�\u0001X�-T4C�b�p��ds��>�\blY\u001F��\u0015�1����\r\nD`\u0006�-\u0012\u001Erd]��v\u0004�#k^2�}�j�:�h�D`\u0016w�����\u0013���3�k*��IOW\u000E^K3lU��Jm\u0005Nxs�d�\e%��}0�\u0019t�����\u0003�\u0014��J�]*/��\b��\u0006��hx�qD�2�\u0010>t��s�\u001D�'�k��~\r\n����\u0010�\u0003\u0018������(��{Hi���\u0003���9��,�\u001E�v�_\r\n\u0013��\u001C�0�\"��;�7dN�A��k�����������0� h@\u000E��������\u001CN�\u0005e�\u001F�L�g\u0010c\u0014 �{�;�����%����Y�D���?W�`�:�m���] \u0011u�\"����u�\u0017en���z5'h�������@���}P�\f�9�$��)�\u001DN��\u0014����$�G�X�z��\u0011�j�;7������\u0010�}�����~wd��\u0013�s8���=J��U����|='����\u0014��D�NT��\u001E!��\u0010U�H\u0019v��\u0010d���~T\u001C�'e�%\"�\u001F!*f�%m��A\vBNig�\u0014�C�����\bL5���1cm��`W�e_FY��=V�sy�\u0017\u001D o�*\a�����z����(����f�zH'����4��dr�\v�����jysh���?���(�\u001C:������P\u0010���!� }b�GH%���|�\u000E�NUi�n9�����C���Eh����8���t\u0014�����E�\u001F������1,���\ev\u0019RlV���8�oU7��'P&�[L\u0006\u0018\u00141�\u000F����n�\u0019��#�4\u0011\ef���\u001C�t\u000E��//������Z8G����3IF��_T���\u000FCY��l��6Kr*\u000F\v��\r\n\"\u0012z\r\n9�R��uk���J�Hr#AW�T\u0018\u001C#\u0018���\u0017��%�4S�*���6��Ba�Z#��5\u001F�\u001D\b����Y\u0012|q����xL�|�\u0011HV\u0015r{�JwT�$%�p�C/�����]�RI��\\��&v����������\u0010\v�[� ���CP��(��4����y���xBq���\u00126�aK�m4bY����\u007F����Q�,��3P�\v��x��P���=\e�\"1���\f4��������m<1����l-�n\u0002�*\e��\u0019ns�3H�d����}>o$�O���B�_���V������XB\u000F�\"'O\u001F\u001F�x\u001E\u001F���m����4��G�\r\nKE=#~\u0002�O\u0004���\t\\�\u0013��{x?wO��6����?e�C�/1\u0015/�\r\nendstream\r\nendobj\r\n\r\n3 0 obj\r\n1596\r\nendobj\r\n\r\n5 0 obj\r\n<</Length 6 0 R/Filter/FlateDecode>>\r\nstream\r\nx��YI��F\u0014��W�\u001C�S{I`\u0004�m\u0005\u0006r��!�&�,0d\u0002������VI�d��\u0004��R��m����I6_\u000F�4�\u0011��v�����S�|����w���\u0006�/\u007F\u001E���u���\u0001�����G�H����z6�Wg9���\a�\r\n%e\u007F�g1j#.��/\u001F\u000E�����aR��_<M\eiD���Tp�\u0011�;<^�CX|��\r\nX\u0001�Q\r\n������\u001D�\u0017�{��@��Di�c\vKB\t'=�\u0018^�/�@�\u0010����2�Q)�I\u0010I�\\y��(\v\a�'��+�[�)�*\u001A\u0004�\u0015X��W-������$:\u001F�aE��YZ�l��}�/�V�������h�����\u000E@�&�W���\u0004�\u001A���BZ���\u0001����<;��@\u000E#�I?g\u0019����\bY�\u001Du}�>���\u000E��u����7�����@i�8�\u001D�w�1.����\u00154�h�E�����\u0011x�n����{TPlg&\r\n����\u000E�JPdi���\u0014\u001Ds���\u001E����0�\u0001��^\u001C���\b}lP\u0004�\r\n�w�Q]\v�X�X��~ 9���\a�����G��7����>\u001F��������\u001C\u0014�7�4�\u000FVw\e���8U0�o�\f�\u000Ed�NO\ft�\u0010�\f��:��\u0003\u0019��3\u0003k���\u0001}�`\u0010v\u0010�Uzb���������\u001A�^��l_xz�)���,Sl��h�u\u001F\u0010�c���\u001E�M��\u0003=��6����+Z\u0012\u001AwA?Ak\u0017�\u0003Z������[��G����k�3���zV�w��p_�-�[�\u000E4� �\"3�Ka���+��n�S��$$O\r\n�i�\u000E\u0019�F���\u001E��\u001F4�a��\t�%')�\u000E�\u00108�ReB����K'�^z�K�\r\n�\"�\r\n���\u0015uy�\u0003]U�+\u0011�\u0016\u0012����K���m�Z��� $��:���Z:!L\u001E��\u0011^��U\r\n4+\u001C�/�vK3�f5�8`��_\u0017�\u0003�JyJja�+:h�����BR]J��Z�\u000F���inQ�\r\n����Gtmt�\u00168��e:\u0011\r\n�@e���u\u0003(5��!|�\r\n���i\u0010��\u0015h�L�\f�Af�s3�\":e7D\u0010�lTUm6p�U6a\u0018OJ\u0013R|���-�\vB��2�S�\u0012\"!�d|���\u0003\u0001\u001D7I�\b3\u001E5C\u001FE��;)U\u0005�\u001C�!>��z�3���\fuT\v(����\u001C�\u0011 \b�K�qL\e\u000F�B���v��]&�����!\u0012�@�;�/���\u0004���W2�\u0004&l\u0001\u0004�\u0003� }y�P���6\u0017Z�2:&�a�-�]����������_�R�\u0018r��=t�\u0015)\v^o$\u0005�\e\u0010��NPU'Y*�7&��\u0018���-�\u000E}\u000FI6�\u0005�iN\u007F>���\u0014�I�\u00192��@��s���L�<TF�\u001A=\u0014��k��&�x|�R���\r\n[��p����\"���4�����T&7�*�I3\u0003W��(��p��!t��=�E3.�����\u001CQ\u001D\u0015���\u0012����k�dN,��,�\u0010�R�u0�$�L�\u0013�RQ(��H���\u000E\u001C��2\u001D�c\u0015\\F�����\u0004�,q\t\b\u0010�l\u0018*�u���\fa\u0017���-\\����7p���P����\\�F&�f1������\efPn\u0016L�\u001C\"xyJ�\u001EsE�)��|�\u001F��\t ��itB� L�\bv���#\t�G��74�\u0010$R�mL�\u0003�-wDE\u001DB!�tGg���y�l��\u0011I�>\u001C����[�l\u0004�\u0017����h���*y�W\t<h��R\u0013W������\u0002\u0012\u0019�i��(�\r\n�\t�����:x.Yi\u0011��X�n�[1M1�t|���\"��V�t��dJ��D�\u0015���\e����,=\u0016���`�T�=��$���4�������\u001Dd��\f\u001EZ�%P�}q��/�0\u0002�\r\nendstream\r\nendobj\r\n\r\n6 0 obj\r\n1516\r\nendobj\r\n\r\n8 0 obj\r\n<</Length 9 0 R/Filter/FlateDecode>>\r\nstream\r\nx��YK��6\u0010����9�\u0013����1tO�\u0003\v9l2�C�-\u000FX���e�~JO�,Y���a\t�4��T���R�'>|>�;���75�'\u0018F�����\u001F�_�\e������_���Ii|d���_~\u001F�_`�0�����/3\\���'�\"����\u0001�����B�gsa\v��\u0002��M��\u0016������������������%w\u0013����9�d\u001A_;�x1�����x9�?�\u001F��jBS�Ab��|2� o�O?8�>��;��0��Gk�\u0019�\u0014h��\u0013G+U��{�\u00197.\u0017�w>�$�2�+�;�b��\u0015^)�������(\u0015V\u0004��\u0015����\u0001\u0019\u0012&L�(�_�e�\u0015NF{��\u0001\f��(�_�e�\u0015NF{�s�K��[w�V)���5�'�D}��g�&�xD}��Xf\u001CO�\u0018���\u0017c@�\u001Fr*]~0]\u000FW]��GJ\"O�#\t��F�\fRg���V��:�5p��H��J���^����t�\tU4(v�t���\u000E�\u0011��#\u007F��\\\u00147\u0006\u0011�&\v����8a����3���������\u0003���-�]H���:jiB\u0003\\:�r]�S�_l�0�h?\u0014~�U�9\\O\u0016\u0011�m�}u�Wuj{��\t[w��K�\u001A\r\n��\u0002b�c��\u001C��\u0015\u001D�]\u001F�)g�{��M�����\u0018�����X�=��H6��\u0010\u0012�Q�)%P���\u0003�{�c�\bE|��7��Wv��mx�4��[�m����E|\u001D_4)%�\u001E����P��4�DbJ�\u0004\u000E�~�\u001A=\u0015i\u0005W�\u0019�=N����*�\u0019��e�\u0005S�\u001C��=\f�,�/��!~E�F��\u0018��\b\u001D\u0013t��>z����R��m`d�J���s��$8u��d]�`LF��c�W��g��\u001C��F�����c�EGU�FUM����LQ�\\b�\t\u0015��W�t&&�-�I�\\\u0004\u0012}�`>��`J\t�=x\v��Q����d\e\r\nRiI���jCt\u000E�\u0016f���tz#V\u001F)}_�.�W��u\\�\u0018C\u001AT0\u001CkY���X9�x�bPIE=��*���Tdd[�\u001Au���Wm�\u001D�\u001E�����Y\u0014�+������m�5�|5/��: �\u0014�V�(��\u001A�J\u0001���@����9)'�]}\r\n��\u001C���\u000E�����X[�\u0002���k\u0001B��\u0004�\u000E��\u0005a��\u0018o�����>�x��Z���\u0012�z�F�'y�����aF�951-xX0�}�a�nE�6�UV�Z�y�\u0013k��D�&��G|�\u00023���cH�\u0018N\f$���$v5��3f����\\q��\u007F����E��d1�s����cM\\Q�������F�l��*\u0010;e���\u001D��\u0002q��v\u001F\u000F��Rc�\u0002�����u���>%5�@Z�\u0018i\u0006�\f�)\u0014\u0013\b���?���CE�!x�\u0006���\u0012H\bO�=��\e�b��\u001D3�X@h����Cg�Zu\u001E�d�5���\u007F�Lj���XG^��\u0002\u000F�&�\u007F���\u0016rWD�In\u0010��A������\u0004�N���� s;�~���T 1�bt�N*���cc��I���V'�S v�B6\u0005��\u0013\u0013��\u001E��Z��m�\u0018\r\n��5��b���Wil��d����6il\u001D\u0013�=h������\u001D+�<\v�� '�����\u0011O�f��\u0004�O��\u0005����\u0018/\u0012/�E^�>Hfx? �m����Q��>���?0�v{g)B����/4C\b(*�[�\u00190\u0015D��\u001Cw\u0001?�D98�:�\u0010�ea��1(j�5�K\u0004����p���ON{��`7Y�\u0016�M��=���V3��pK�2���I�\u0002�|Fya!T7�_4�i����\u0005�����C�l\u000F\bp�x;D�\u0016\u007F8�D��\r\nz�A�~���%L'�}^@j�\u0018���j���h�������[�\v6M��X\u0004��1m\u000F����m�4/�&G��M��p����6�`���wa���j��\u001D�v����FJLMmr�0��^\u0014����i_{/>���U�s\u001D9��1C';_��Y'�zv�����W\u0004iz\u0010=A���\u001D:��,Z��\b��@���\u007F�\u001A��8t��9Q�e\u0002�8q�Yn(\\�����\f)�V0���������4�xG���\t.���/�\u0013���}�f�l?E%S�g���v��\u000F��Z���\u000F��Q����&fu����\u0002��m\u0002����<Y��\r\nendstream\r\nendobj\r\n\r\n9 0 obj\r\n1782\r\nendobj\r\n\r\n11 0 obj\r\n<</Length 12 0 R/Filter/FlateDecode>>\r\nstream\r\nx��YK�$7\u0012�����B���R&\u0014\t��U\v�=�n�\u000F�7?��,x.��\u000EE�\u0011J����\u0019���K�x~�E�x��\u001F��'1\t�4����\u0016#_�������1���y���������s�Z���\u007F��g�\u0001�����Mr��e��nr�?��E:�:���M��|nl�k�\\�X�w\u007F\a_\u0003;\u0016y�\u0003���$����@������+�(��(�l\u001D�2�BO}a�\u000E������\"�w�PF;ps\u0014���B�\u001Dta\u007F\a_\u0013��� ��aqDO'B�\u001D���\u000E�&\t���B�eaB�S_���.���k�P�\u001D(�\\��5\tEO}��\u000E������B�w\u0010\f\b\u0016��p\u0002\u0002�Eyw=[�\u0010���\u0001�\u0003��,M[���m\u001D�l�y(����x`�G\\�����8���w\u000E�%\u001C�`�\u0001+\u0006��L�\u0011t)�l$��\u0014\u0018I2^wF�`Y\u001A�+U��#����\u00038_��\b\b�`4��\u0005V�\u00186��1��k�HQ��l���Z3V\u000Ey!\u0018�U\u001C��\r\n\t��\u0016�\u0013'|�\u0018\vJ��}����C�{���������\u000F8SM���p�N�m�*�x���E]�Q���*V|~�O\e�����*���0\u0012\u001E�U����^�_��c���y���\u0003�\u0015��;nU�\u0016��V�W\u000F!�Ex\u001A���S���]�M�1\u000E\u000EG�H�����.��`�J��A���\u0006}�\r\n�\u0006R;��$}\u0004�A}X�g\\DZJ�*\eJ���Tt��s������X�=����{��N\u000F��\u0002�\u0015$!,��i4���K\r\n\\(��$_�@�B\u000F����U\"���zHc��\u0015\u001C���U�\u007F�o����\a��Ma$�~�1p��S`(��\u0013M��>�+M���\u007F���|V\u001C|��0IM��F}\u0015h(�9�\r\nc�(W�Ep�tW�Q\t�Zz��\u0002P\r\nL���g�\u0001chi\u0016��_)�'��\u0016����!Gbx�WA�|5~�!�\r\n��}\v�.>�k#��)_��P�\r\nr>j�\u0004\u001A\b\va�%\u0003(��(�,�V�A)r�cW��n\u0001��\u0018\u0002��^`1��C�R\u0005}4<\u001A�����\u007F#��:��=\"n�-u�\u001E\u0016�h��\u000F��������A��fIW%�\u0017&�d��=j\b��\u0015U�2\u0004��0�X w������\u0012\u001D�+ \u001EOn0��A�G*l�vO�]�7��\eV-4\t|�3�y�\u0002�g�\u00176�Xs�����\u0004��(�u�5d\u0014���-�\u0018XL,��\u000Fe�>�a�bI\u0011�\u0003��\u0012�\u0018�0\u0018*�=Z�`\u0011z\"�����\r\nQ�\u0018��.\fz��5\u000E��\\� \f��7��\u0010o\u0006\u0002�{S�\u0011u$\u00189\u000F\u0002R\u0015���KF���N��/\r\n�� &��\u0001��\u0017v��\u0017[�0\u0004��1\u0010�\f\u001E5��\u0001|f�\u0014@p��S�\u001EQJy;�!\u001E���h�T�\u007F���!��HRtK��\r\n���\u0001�s}S\u0011R�\u001AE��<�z1:�\u001A\bE?F1�����>�k���}��7��Yn�\"kF�5\u0015t\u0012+�9NF��6���k�\u000F�a��Tx��(��\u00135��j�a�����Z9�\u0003;�\u001E^\f��`\r\n�)!�c�\u001A$���\u0003�\u0018\u0019����!��n�\t�f���^e\u0013s� �XT��i���8f�_(����X>�:��g��S{`O�\r\n\u001Fy�=M\u0003���\r\n\r\n�(�,}3yH�&�0�\u0011����\u0014�\u00184�*\u0017EO(\u0002�0��A��%z'\u0006\u0010�����D�bM@#9�w�k��&��td>��}F����|����K\u0006M�����D�52fe����k\u0016S\u0001�SYJ�\u000E��\u001CtA�x\u0013\u0001:\u001D�����\e�����Y�kT��\u0013d-�J8Q�F��\u0015� ���T��G������\u001Dh6��b��������\u000F��\a��@\u0013��'zV5�'*��B\u0010�ma�0��\u0006�!pn\t\u007F3\u0003����\b;$���)\f\u001D�h�I-�\u00134@I\u0019�k�/�����:\r\n����\f-��*��\r\n\u0017�B#\u0014[�#��f@���\u001CZ5�od\u000EF�*h?B\tZ��R�VI\u001F�%\u0010:\v���\u001A���\aE>X\u001F��r�G�U�\\X\v\\B��`C?6\r\n���Q;[���BH�\u00133:�*�*�f��|!����\u0013\e�Is�/wD�����\u0019�\u001D\u0019.i�\u001A���O\b=B\r\n\u001C���X�_�K�Ra*\u0013\r\n3\u0006(+K�\u0019�T-�\u001C`�;T��p�f��\u0005\r\n���O\u0011#\u001C���X\r\n\u0010T�dm��-��TF2�bU��i`�<\u000F>\bM��t�\u0014�Y`@\t�\u001C��\u001A4��2����i\tUm\"L��\u0015����E=3�3������S4�|�����\u0016�W\u0003G�;�9\u001FU��t�[P1s�����N���<P��.\a����{\t��[\u0006T�z-(1&�t�\u0011��3����\u0004:�h\b�\r\nv��\bifu\u001F��9\e��5TTV4�O�m�=����&�\a�sr��-�#��S4#�E��\u000F��\u0002*\u0010\e�$��������\u0001W�m�I��f1�/�����<TGv��/L\u0016\u0017�w/\u001At-�x\u0018����o��_�|�\u001C\u0019I��p`�\u0019���e\u001A�u���\u0004�_��\u00105��4Zf����\u0018>!�C�\u0003�',=6*a��\a9�?��%�3\t\u000Ed�mBS��D[����5�\u0019�w��\a���u�|=�wRn\u0016���z��Wg^*�Y7\\��\b�\u001A���sY\u000E�L�\u0013X���y�i�W��i#(���\b4�u�f>��H�x\u001F���G\r\n<�\u0018��R�h/�8��*��'\u0014N���\v\u0010\v���5\u0004���-�i&����q�\u0016v�\u0019�A`��{R���5�|\u0010\u0019?O\u007F\u0002\b�h\u001F\r\nendstream\r\nendobj\r\n\r\n12 0 obj\r\n2294\r\nendobj\r\n\r\n14 0 obj\r\n<</Length 15 0 R/Filter/FlateDecode>>\r\nstream\r\nx��ZK��F\u0012����y����\u0004���Ue0�0�\u0006\u001F���\u0005fga}����\u0011���J��6�TwI��x~�Eh�Uw�.��T��/?���\u0006��C��?/?�����K\u0017��a�;�������*��~�\u001E��\u0006�~�\u007F�v��������!����{w���?�_/_V\u0016�g�^�\u001A���\r\n�\f�\u0018��\r\n\u0012*xP0\v��\u000E��\u0015|��\r\n�L\u0016jw\u0005\r\n\u0015�\u0001�&����Pi\u0005\u001D��B>���_�B���c\u0016���\v�V���+�3I��\u0015(�U�5d����Pi\u0005\u001D��B>���_�BQ�$����Pi\u0005\u001D��B>���_Q\u0005�H�S1(\u0016�\r\n\u000F������SF\u0015����y����\f\u0016�9q&Q��=�Eu4�\t�\u0005B���\u001A>�`Z��g��N�3hPg���\u0002[���\u0004�s�,Q�\u001CpJ�8�j2�� �J�V��Jp��������GX��\u001A$��G���t�t\u001F���f�I\esS�4��U��fnZO�1O������}z�7�'���z�W�\u0003��'�/e��}�py~�rE\u0006��p��\u0010ZM�����M�&?���'��\u0012\u0018�\u000F\u000F�c��!\u0011-�\u0013\u000ENw����Nw\u0016���\f�����x�4�������^�g\u0017\u0016�S\u0018x����\r\n\r\n}l���Z�p(������f{\u0003vyNo=X�������h��(��\v\u000E���S\u0015h�d<F����\u0014\u000F��\u0006����\u000FO��d\ap���t���O4\u000E4\b���^���Q�geXT(�s?���6\b�\u0004\a�Mg���\u0012h�\u0012� \u0002�5�dU�E���\u0001�W{\u0011O�N���Rk�=\e�D�`G<\t�\r\n�f��7@�������VP,\u0016���E���NF)�Q\r\n�\u001C�m0���YFZ1�������\u0014px�\u0005{Q���\"�c.���t\bc,��\u000E��#6z������\e8zH%�d�\v���\u001F\t���\u0001iz�'\u007F6Q�`6\u0012���@j���\"����Y��l�bX\u0002�����.�����7��\a�\u0001���p\u001D�-Zc���jc�\r\n=\u0019�����al�0��\u0014���(\u0013;�z�tJ\u001F\u0011��#��C3.O\u0005�\u0002U}�s�O�8�Af\u0001��f�#�t����^����\b\u001Ek5\u0003\u000F`�\tM��S*\u0004\u0002�\r\nv�\u0016q���:)^4�#���(>���MV9�\f=H�R���\u0018R/�\f}\u0018\u0014\u0014���\u000FPb�w0\u000E�[�u\e\u0014\u0016t�B��������R��[��������[�z\u000E�1l-�:$�y�\u0010\u0013\u0015w�����j^�\esR������9T\u001E)�,�b\u0019�\u001A�#'\u0001]\u0005�[��\"RK)',��\u0016\u0011�o`�,x�U6��������\u0003�,@�\u0010r����HMEs�%����RC<�\u0016�n����\u0012\u000F�\u0005A�q\u000E��\u000F\r\nx���^\u0006�buQ3Ca\u001F{DH��\u0004LUB�\u0016���Kc��*x���T�1f���/\t���.��HJ��;\u0004\u000F!�\\��f���z&�`���5�\u001Ex�[P\u007F\u0011�\e6��hj0�p�S����(����#\u000F��$41��\u0019\u000EY��c\u00038\u001A��B��\u001D�or\u0012v \u001A9�p�:���\u0018��,��;X�\u0011\u0019`\e�\eI���j�0*xB��\u000F������}\u0001�����Dp\u0013EH������\u001E!\u007F7���*��+\u0014^vQl\u001Df�K��^�1����A������\\�?�\u0003��R<���j<Xw���\u007F�(�\u000E�*�~����7\r\n��+t\u001D\u0010/�w\u0019o,�'���1<���@5wM����3�%������\u0010�\b��\u001E\u0016�84p�5%�L�*j3B};���\u001A���0uF;��r|\u0013Cw/�F�.Y$e�W�?\b�A��Ny,�'6\u0012��l������\u000Ev��.�2�m&T��P��\u0011�9C��E�{#d0O;����\u001C��,<��U��5��'���o��2�\u0011�\u001CV?\u0017�@N\u001C���~w��=F�d\e������\u0014�\u0013Ul���)��\u0010�J�%��>���M3\u0003Y�^������v�Qav�o\v3�\u0005�������'��%MB�B��R\b��VQ�f@vP�����xQ�r�!+�4����\tj\\)�\\��$K��lgG�R\u0017�x��X�\u001D���Ah\u0016$\u001D���98,\f�\u0017�/\u0002�\b��\u0019������J*��2����\u001CteM�L�V#����i��N��\u001E_\u0019��6X��\u0005����9�\u0006^����N��/=\u001E&8�\u001F��X\u0016�.D���e,4�����&��3\u0016��[2&\u001DIl9�*`'f����'\b]���oM�pf�r\u0001��X������Lc�\u001C�C��Q\u0003dMh)�)m`\"`�Dv���T��\u0014\"��g\u001E�;Jp�b����k1w\u0015��\r\n\u0006\u000E�{�\\3\u0018b��\u001F\b�\u0019���L�������\b�G��g���T\u0003�\u00170:���\"Q-o��\u001F\e E�\u001A��\u0019\u001A�\u000E[��x3c�1�81���p�c�\u0001L���M��7�m4��\u0012l�34%���l� �\u0012!\r\nn�>�4����/�7���W�M#[�rJW���\u0019S7�JD)W��g��\u001D�\u0018�/G\u0003{\u0012�Z���\u0011]�G�\u0019����K\f>.5�<���w��� FZ���Y�����H2S��Z�]\u0010�������\u0002XnQ\u00027s�lH�W\r\n\t>le]���k���p�V�������\a9\u000E������Z�L��N��b���\\���\u001E�V����\u0019�4�}�\"���g\"x��E�7�\u0013��4�O0���I\v�\u0005\e6����S�7���mO\u001F������7���\f)XF����^ �-��|���j�%B\u001Ep�����\u001AJ��M\u007F�PG�v.���6��\u001Dy�a�<���\u001D\r\n\r\n7��-����\u0004�i\bJ�`(T��QJs���\u001E!��>-_�$\u0005�<'f;fUAV�h\u000F�~M7Ig9��E�m���\u001C�\fw�.�A\u0010V�\u000F�\u001C\u0002��6�!K\u0019m����\u00163���\fj\tL�����\u0015�gS���t\u0004\u0016F��\\���\u000E�v�Hv�ec��O�B�?\u001C��*����O��i�\u0011�\v/�\r\n93�\u0003��\"J[����#X�������[��K�\u007F���}\r\nendstream\r\nendobj\r\n\r\n15 0 obj\r\n2526\r\nendobj\r\n\r\n17 0 obj\r\n<</Length 18 0 R/Filter/FlateDecode>>\r\nstream\r\nx��Q=k�0\u0010��+4\u0017���dI\u0006!�c{�\u00160t(��\u0016:\u0014��\u007F�����!-\u0014\u000F���}�\u001D�����\u0006\r\n|���%\u001D,�A����N\u007F�\u001E\u007F�75,�[nyOm��\u0017}?\e����\b��w5-�p\u0005��'�\r\n�)\u001A�\u000Ef�\u0013E\u0018`L\u0018���q\u0011f��*�.�'��t��i\u0004�0)�\u0001�\u0015D}j.Q�����)D��f��VV��\b\r\n0��G��� eb�\u0018.�����7��i'�\u0015.+*�X\u001C��\u0017��b�������p+�������*&&\u000F�\u001F�v��j(,(�D����|���6a�c��\u0001Y�\v�Z�6~^*&vdV�\u0012_����\u0012T\t��#�Xw\u0003uOk�@�i�/U�\u001F��\e\u000F�\e�8��\r\nendstream\r\nendobj\r\n\r\n18 0 obj\r\n311\r\nendobj\r\n\r\n29 0 obj\r\n<</Length 30 0 R/Filter/FlateDecode/Length1 53020>>\r\nstream\r\nx���y|\e��?>3{�^������a��lI�e�x\u0013\u001Fq�8q\u0012'�\u0013��;�@l\u0003��!�\u001C!�\u0012s\u0013�8����9\b\u000E���B�%m�B�>%����\u0003~��!O�$��3+;����=������3�����|���\u0018_1t�:�\u0005��\u0002��KW\r\n����\u0002��\u0003���l�B|��N\u0013�\u001F\a�{s���K����\u007F�@�\u0018���\e6o[�_��K�\f\u000E�v|�q���7V����\u001E�\u0013�j#>�@~\e��5�\u001D�x�\u0015WW���q�B������Y���������\u0003O\\����3��\f�w��m��U��[�\v�\a��\u0019���\u0003[.�b-\b\u0016�x�\u0004�>0�n�?���\u0001`�.�\u0001@���\u0016WY�F\u0014��\u001C�Rk�:�A0��\u0016���p���\u0012�O��\u0006�R(\u001C����\u0013�TEe:��������_0�A�=����en�����\u001D\v\u0016v.\u0002�\u007F�0w�}>���C�\u0003��\u0014>�;\u001E��\u0017���Y�\u0012\u0010�_\\8N���?��\u0001��}`\u0014\u0004�IX\u0001��\u0013�\r\n<\u0001f�Np\u000F�\v�\a��\u001El��\u0002\u001A\u0004@\u0013x\r\nH�\a\u0010h\u0001v����\u0013p!\u0018\u0002\u007F\u0002�A\u0004��?B\u0013��f0�l W�\u0012\u001F������.5h\u0004?\u0001/��p\tH�z+��\u0018~���\u0004��H����q�\a�O0X8�Zq�s`\u0004a�\u0003�\tL�b���Y�� X\r\n����/�\u001F����\f��p\t�\u0003��\u000Fa;�u�m�����f��\u001FA;�(|Z�3x��`\u001D����[q�\u000F�\t��\u001A�}@\u0004!p\u0001X�V����O�\u0019VPr!\\�S���>\t��b�g\u0014��\u0011\u0003�@\u001F�>x\u0014��G�\u0004�\u0006j`\u0016��>��_��`>�}k\aW�k0o������9p\u0014V�\r\ndGv<Zv\u0010\u0005K��=�q��C�\u0018l�=p\u0002�N=���\r\n\u0005K�Z�s���@7��(x\u001D?�\u0014L�{�\u0013�R�\r\n�K_�TN���p-x\u0018\u001C\u0003����#\u001E�o�?`\u0019�>C��\u001D����\r\n\u007F�}��\u000F��E`\u0005�\u0002����\u000F���\u0001�\u0004\u007F�g�\r\n��>�\u0016s\r\ns�p\u0017\u001E�\u0010����\u0010��\u0004��mx�\u000E�q�}���\bE�\u00165p\u0001\\\f7�=�>8\u000E?�� \u0016�� �wj�z��\u0003]�0�Z�K6���\r\n��`#����h����)�\u0016x\aZa\b��7�\b\u007F�4�CMx�\u0011z\u001F�����C�en�\u001F�\u007F�?S�\r\n8Les�8\\\t����\u0017h�}�������p�G�aJO\tT��R��.������z��\u0015=D?K�����b��V�/����^�\t\u0010)��~�A\u001Cd@5�����.��\e��\u0010�\u000E��v�;0��\u0005��g�{�\u0006�\u0001\u001F�\u007F\u0005_�\u0019�����\t?�RLu7�;��\u0017>\a_�o�w�g�4�P)�\"�\r\n5�F��6���v\u000F:�>B_P\u001Ej\r\n��\u001A��#�\u0011�\u0013\u001A�4]`*�����<���E�Vn5���������?�A��_��/�z���e�m��\u0012(\a\t�����{1\r\n>��g0%\u001E\u0001?���wJ_�\u0006\u0011d0�;`�SC\u001C�Z\u0003�\v���\u0003.��R�-�+��\r\n��\e��\u0003\u000E���\e�M���^e{�����ix\u0004o/�\u0017��!�\u0014~\u000E�\u001D�\r\na\"F\u0014�f\t�Q\u0012���6��h!Z��\r\nh\v�\u0006�\u0010��g�It\b\u001DE\u001FQfJ���U� ���\t�\u0006�\u0001�O\u001A�q:I����\r\n���������3��if62�0o�n6�.e/f\u001F`��_�g9���Vs�q\u001Fp\u0005^����������K����\u0019\v}5�\u0014���\u001A`v��x�X�Em���~���')\u0011�\u001E��6Q�\u0014~D��\u007FP[�2�\u001A,�|L-�\u001E�\u000E\r\n�Y�\u0019:��L[a\u0017�\u0012F�;�\vh\v��XE�����72_��~\aj�v8���n�n,�\u0002j�G���#��@��#3�\u0014s�Nt?����&t\e��3�\u0019�\t�����x�g�[a\u0019�\u0001�\b�\u0013\u0015@\u007F�'�}Xj�\u0012��At\u0011��g����^0\t\a���\u0017��%��p\u001C@�\u0014�$���x���\u000EVc��K�\u000F?�����\u0011��\u0015v��h)�2{��B���o�5��)L;3�<�\fs�=(�eZ3�&����\u0001����T�e\"�����0�=J��b�\u0002��]P�y�Ox�\u0006��J�\"��[A\r\n=��+\f��X�w`���8�\u0018$�\u0006KK;��\u000E�/l�\u0014��>��\u007F`��\v,���\u007F����9k\u0002Dhr�v�\u0019K�~,\u007Fo��Z��[\u000F���������\u000E�-�\u001F�T�\ap\u0011�9����\u0002��\u007F+��t\u001C�Z��y\u0010\u007F��|+��v\vx\u0017\"�\u001D�y\u0016��N�\u0015K��\r\n\u0017�7��u�|�\u0013�\u0001�\r\n��F<w�\v7\u0016n\u0003}�G\v\u0017�\r\n`I�),\u007F�\u0016\u000E�*���A��\u0018��2�\u001D�&�G�\u0002o�r�\u0015�\u001E�#\t:����'�G����n�wXv6\u0014n/|\b�x<J�\b��Z�\u0004�\u0014�\a\u001E�Vj\u0002��\v��B\v5�5��`Q���\u000F����f,y_\u0006�s\f�=���<.�r��\v��js5�U�L��\"�L��ce�H8$\u0005\u0003�~��-��]N��f1���A��j�*�c\u0019�B\u0010��\u0003-��X�\u007F�\u000E\u0005Z[�I;�\r\n�Xu���1\u0011�j��=cb�r���;e|����N�x�|�N(����<.6\a��_6\u0005�q�bQ7�\u007F�)�#�M*�\u000E�>��u����/����M�\u0018�\u0017��Z�n�����\u007F��F�\u0018h\\�.��\u0003j\r\n�jpm�\u001E\u00188����RA���\u0003\b�:��1W��y�\u0019h\"=\u0018���Uk�:\u0017u77������\u0018l\\\u0013X=\u0006\u0002s�\f1�\u0016��<f�m\u001C����������\u0003�����\v`u\u007FL�6�v���c��\u001E�\fc\f?�i�~�\t��M�������_uS��\u001D�D���{�8�oQ��W�����\u007Fc\fI-��[��o�C��D��B7�t����\u0003E�\u001E���o�.�L��_,��\u0002s\u0002\ew_��'��{\f,��?�r�G\v���Y���\u001D��5�\u0003=��<\a,`��m���������\u0001�X\u001C�\u0003z�tE�;����5���Nj����+$=\r\n���0&�\u0011qO�\u0003��j�a]\r\n���\u0006��?=\u0010\u007Fkl-��Mc����B->/���1�\u0010\u0010w\u007F\u0003��\a&����U�gXI�\u0006�*��s������b���2B \\#�Q��YJ;[\u001E�:��\u0002\u0003��\v<|�\u0013�����$\u001E|��L�m�2X�\ec����m\u0011�v\u001F\u0004r2�3������+�������s_�\u000F`:>�X#�1>t�� ���\ek���\u007F���x�}I�}��n�yw����w}�U�^s��t\r\n\u0016/�\u0001\u001F�%<R�\u0002��\u0016��&'�\u001F#�\u0004�7��bV�}\u001C37vSn�S�!7��\u0014��\v��2itk�o�\u0012����q��\u0004���b����Z<��������\v'������M��Xm��������=�n\r\nw�\u000E���\u0015�w��s�\u0005\v���[\u0002b������\v��\u0003�\u0010�}����w\u000F4��L�x����c-�����\bk��Z's��\r\n[�\u001C�8��K�U�\e9��A������\u0014Ps��<\u0004N�e^��\u0011�`\u0014��%�\"��\t����\u0017\b��;��A\u0003�\vg��\"�7��\u0012>@�\u0011����Y�\u0001g0Z��\u0004Q���1��\u001A�,��Z��z�\u0019�\u001D�Jt�~kj[�����/��K�yN7'�k���R�\u000E\r\n�]�\b�+\u001F�\u001D���~��C��*u&\r\n��\u0018�3���������>��+y\r\nF\u000E�1Z���+��[R��Z��\u001D�,�\t�[���85)�Eiy����\u0004�\u0011z\\>������\u0012��c�\u0003\f��\u0002_a������o:�-m�d*S�.�\u0017���������qn��s;��I�;�/��}����i7c�������\u000E�\u0003u�Zw\u001D\u001E�R�����f\u00030����R\u0019K*�\u0001P���4���\f]���(4��\u000F�_�#}��9�fs>�����D�\u0017��F����\u000E��e�0b���i}*���\u00198�@f\u001C��ZY��C�:8���q��\u0017��R������a=�\u001EWA'���\u0002e�N�\u000E\u000EM�\u000E�\vd;\u0001\u001A\u001A�bu�^�v+6��\\o�d��?����Dl��&.\u001C�t�a\u0012\r\n\u0013��R|�Q��C��`p��[V%����s�\e����\u0018f\u001DY]���\u001A��%W9^8~D���>\a�\v_\u001C���>sPiM\u001C\u0014Hk��.b�\a�b=p�\u0017\f�Bh����l%\u0006\r\n�04Z�6�-��g��\u0018H\u00183�P8\u0014\bd��@)��VcU5 ��xN�0�Fk��k\u007F�|����9����b,��z5�\u0015r���x*��$�q��r%��r�U�����\e���G'��k{XI\r\n;\u001C�\f|?����49$�B������A�vA^�_e�\f��\u0011�= I���b9���\u0015NPS�=\u0018��A��p���J\f��\a�ca:�������V�q���^G8�_���\u0001>\fgs^�I�H%�8l��j IN��-���j�Z��c\f�A�cE\u0002\r\np����!\r\n��+�dr��&S�y����a�L\u0001�`\u0016qe�|����Co�p�03c��� SO�c�\u001E\u0013�fma��H\u0012��\u001Ar�L����b\u0015��m���\u0018�\u001E��\u0003\u0004�[(��\u0018\u0014�c7��zao\f����'��\u0004�,\e(\r\n����B\\��/�+��q+���\u0018�6_X������5w\f�=��pvOC����\r\n���\u000FG�z���7����>\f���tCi�������[P�$<�:,�^��c$���ED��\u0012U\u001Ad$\e�Gsr\u0019�+��(\u001E�Rc�k�%\u0010\u000E��C�p\u0013Pk��\u0016Q��cX\u0005U9A\v�=\u0014��\u000E����2\v���\f�\u0001c����pX\u001C\u0011\u0011\u0010\u0005qL�\u0010����\u001F}���\u000E����!<^d��&{��e��\u0001�����A<4��t��j!CBh�#�k#��\tW!�\u00109\u001F�����U�f���V��<e�������:��.�����J����\u001A���fK�����aw0\u0018�\t\u0001c'\\��\u0002�!8�G'���fLmV�'��x�A����Q���8�����~����\u0013t\e:�����������O�c\u0006\u000E�\u0016��V/����\\�0��^\r\n�7\u0018�\u0014m�(�� ���z��2 =��EQJ�e�>\u00034� R\e^B��\u001E�h�\u001C�`b\u0014�&���)��\e�Q:W��`_h����&�u\u0012r����\u007F�K�S�\u001D�N,\u0010zO�\u000Eu��=!� r�~j�^9�����%��������o:�0�5\u001E����6\u0018�aJ�\u0002�(�\u0017��*���J�\u0003�����\u0015�LZA[�0^��\u0011[��XH��#�\u001C=`\"��#�\u001C����\u0017G��jP�\a\f9\u0018;�\u0003�`��Y�/e��\u0006��V��4^UM]�9�1��\u007F�����#,\u0005�\u001E�\v6��\u0005\r\nt��\u001C�������t��@\\��I\u0019�{�q�\u001D@������� �\u000F\u000E\u0004G���'��\u0018�\f\"�\u001C��%\u000EUVf����X���e@RJ9�te\u001CQ���T\u0017���\u0002��s���7i�Z�\b&�\u001CVPZ�lR�\u0010\u001E���m��B64d�K�Z�S\u0017t�����sU�fF\u001C��\u0001�\u001D\u0003�\u0011�>�I\a�8\u00188�#�\a0\u001F�b�DP��e�\u0013\u001A&��\u0004��\u0001E1��\u0005�\u0010���l���\b\vE�\u0017��4\vD��������wV��76&�*���D����A.������S���'\u0018t�/������\"�k1��'�\vi���Y�,�g��Me;�����H�)�����qk,��e�e�X\u0016��\u0013\u0013Y���E��q� \eK�Qo����z�m���70N��D�\"\\6;��h��@e�s�\u0011\u0017\f\u0004\f\u0006��n\vr#<\u001C���\u001F�G��y�'��\u001DM�\u0004�|��h\u007Ft J\u000FGG�cQ\r\nD�(��\u0011VYl�h\u007F��\u001Dd@cD�\u0014�1)AQ\f7`ql<'��%����XZrRv\u000FdX\a��@E\u0016ca�\a\e�a��g\a\u0012�c�Y��\u001C\"�\u0015�������J�4l\u007F�����M�����3�i5=����\u001A}E{���Ra��<a\u0003����\e�����o[�s��\b�\f\v�U�\a��/���`�4w-�z��E&\a��B<;�0�c�Q\"��M�k�\e���&m��f�f-� \r\n��;�#�\b7���\u001E\u0011\u001E1���\u0004V�P_Y_\fyx�a/\u007FW)<���)^�\u0005������k\fJv\u0018�\u0014��*���,��\u00057t��������qt� ,��CA�E��d0\r\nw\u0019\f0�'\\���Q���b��P,�\u0015J)�<���\u001E\u0002����`mB\u007FL����\u0017)��@Q\u0017\f)\u0004�����2[�����D�\e�\u0015\t6e��jf����\u0016��!�\u0016���%H�-�L�\u0010�9xW��4�!�\u0011��1��y�Os\u000F�9�\u0018�X�V��G��d�_��9��\a��\u001F��]����m>_(!{���O=1\\\u001A\u000F\u0006#M�����]�^�T^���/5�+6|4�\u0015K�f�N�b�1�\u0012�-7����I�\u0011�[�\u001D��%��X����U�l[n�\u0019���e������,�k��5��?���B�\u000F��\u0005\tpv���\u0014q\e3i\u001A\u0016b~��1r����\u0001z�\u001E�Y�k��/��Q-�6z\e���\u001C���KDJ�XdI�X��\u0015\a��y\a|�<l��\u0002��\t@��W�����i�~\u0019��JlsX��/�/��5'��\u001E��fR\u0019�*Xb��!$yBj�\r\n\u0019\r\n\u0016\u0011��K�6\u0015�98\\3�\u0004\u0011�)|�j�\"p2�0�>g>xz \u0011w�� F��+���5�k�����]����c�\v���U\u001E��s�����\u0003\u001A\u0005�������\v\u0013�We'\u0013h1\u0011���\u000F�c�_���\u001D�_�a�{K���\u0019����7���?�s��g�\u001F��������\r\n�\\�v���~z��~�Ok\v'��x�*(�\u001CU��qd2%dM.\u001E��\u001C�\u001E���C�=AF��#�h\u007Fz =�f\r\n�q(�;����{W�f�M�w�����?�?\u000F|\u001E�2�15�{���o���{�\u001Ej�:�\u001Av\u000F{v��I���GjJ�e=�����\u0004x\u000Fe��<�\u0012g�\u001D����~H�;pwPc��\"����t_�����[�O\u0005����>�h�|�\u0017����\a�\u0010�q\u0018;\b^I�C�l,sx����.�\v\r\n.��\\���\u0015\e�Xj2\u0005\u0003:\r\nm\b+\u0005��?\a�dY\u00056.�2�u=\u0006��T�l�%��I��3Ahz����/~�?NYd��\u0001�\e\u0006\f#\u0006�0\u000E�dg��L�x��G�����0%�Sa\u0014~\u0011��\u0012�\a�gp^���)E\u001EO�6v\u001F,�aoO.�g�`\u0001��$��\u0013�\b^V��\t\u0002�\u0015\u0010h�a\u001AQc�\u0010�i,:���Qzl?�`\u0003��S��C\u0018���,���B��H�'\r\nF��\u0019�\u001E�Fy\u000F��^\u000F�\"�\a\u0002�\u001Co���wbb��N\v��g\"����\a�{|�9\r\nG�(5�yP7b\u001Dq��G<{K�\u000F��k�\u001D\u0006\a1<���4�@2x[���Cq�����1\":s��3\aeu\u000E��M��:�\"��T�\u0012�T\\�U9��!�^$\aL�\a�9�p����3�\u0002�BK��9\u0017w���e*��\u0001�8��\u001Fa��E\u0013��I�`��\u0019r������\u001F8)�t�9:|\u000F�\u001DFe\a���C\fE���\u0001��0ka�pZ^\u0012i�\u0005�ib�\u0010{0�p \u0011�D\u0017�\u0011\u007F��\v[������}����~�]��{\u001EY��|U����\u000F][��6\r\n&-�?���\u0017���D���k~�}�W��so�cQ��������\a�\u0006������\t8B�a<g\as\u000EP�q(�%�\r\nU#�}N���#�� [)Y�\u0019���\"��P\u0002\u000E�\e\b\u0014?K�),��\u0005\u0018����M���?1{v\u0002����9����&���s��9�?�3D�c|i#1py�\u0010���G���\u007F��L�Hq1t%�����I?A=�ss9X�[���f���a�\u0002�m\u0003�\u001F�{\u0010��T\u001Ao��\u0019aP?3��g(�+�\r\n�;��\u0013��q���\u001E��1\u001D\u0005t�N��puBwL��0\u0001�P���Ko\u0014�+v��\",6T|��\u0006lG)XG���S�4\\H��\"t�\u001D\u001E�th�\u001E\u001E�|�_�N��\u0003JX�\b�B\u0004D\u0003+�\u0014`A\u001D#\u0018\b\u0016�/�\fZ�[�c4��\u00031�`��\u000F~�7?������\u0019D��L\u000F���Ks+\u007F����l\u0004�>��_��w���z��V�\u0010\u0018��L��2��kc��-E���;\u001E�*�_r�\u0006#Ou\r\nA�\u0006�\u0010\u001A�\u0019���j&j��P1\u0016v���\f�Sr\r\n\u0014y���E�Y\u001E���J�Q��1{�\e*��l81;��6A1\\\u0005@I��0P6\u001A\u0005��\u0011T����\u001A\u001A�\u0003�Q��jZ�X���\u001FL��;���\a�����r4V\u000EA�P>Q~��.��.B���=���<\f�J���qz ����\u0019�I`\v6���5�G�X���6\tSr� \u007Fu��Vo����^0�6��)9?�*W�)_S���6k�%_{A�������C\u0013s���k��](?�\u007Fy9�&�9�\u0005�������y�E\t_0hV�,�.��2K�\u0017�c�_�y�\u0002JP��4�9z�����\u0011�8EO��w�����pR7�ex\u0005����H$��^Y���Y���|��������AJ�r*^�X������N�n���\u001F�g\u001D��?@�\u0018~/�B\u007F��&�\u0001^�\u0004����\a�an��u�m�INKCNw\u0013�T/\u0016�\u0003�p\\n�R������.��Z���.�.�^�c�������1�����q�)��?�A�\u001D����p��1����\u0016��YI_�������:j��J[����\u0010��c\a�y[����Xn�&n�Fs!�������m\u0011w�`�[l;l{l����2��\u0014?��\u0014�����\u0004^��+�c�q����[i���D��lJ�e}��\" Y�S'�P��*<��s�.684�15��\eqDNb�Qd�P�$&�!c.I\u0014�\u0016+��1B�D����\u000355����}�\u0005\u0010�����\u0019\u0013|H1�9�0M ���s:��D�Dr\\�`I�.���k�-u��.�TJK��rV��s���NTT\u000E�}G�������\u0013,��\u0019\u0013�.�?�\u0018������;W�\\����������\a\u007F6�\u0013>�\b�5UKnDu�]q���-�>���� ��3���\u001A�\u0006@�\v�-��`,W\a��\u001E�'�{&[����U\u0014f��hk��%\b��\tv�m\"�P�p���+C\u0003+��{�\e�79�dw���yO�-\v������p�>�\u001C�\u001Fv��y�}b����W�\\�v�����T�V2O�mU\r\nn`���mn�l�6��2�-*~X�&�p�E�@JY�����_zM��q�����\r\n��i����\u001A�X�[�\u0012��'��F�`����\u0011���i��q�\u001F����F�8NU�Zg�:����a'r��~\u0003X��:@=��f9�\"�(\u001E7t�J�@\r\nx�1\a:���\u0010RpKjOj4E���\u00045�\u0005�$_\u0004FH?K����\b\\\u0018\u0019�LD�E������Jy�><\b�J���h3+�{�k�-\u0015�\r\n\u001Al\u0003��1�\u0013�i���\e*RT'�:)\b(�B�/r�Y�!�\u0011�Mj���/���\u001F�\u000F\u0010���\u0018Qa���>9tB�\r\n��d=49(��v!���\u0014>�9��\u0006arH8�w�%L���\u000F\u0013��z{�0\r\n$������\u0012i\u0017\u001D��\u0019w��U�\u007F�4��}yms0�)�; \u0013�*+�\u0015�\r\n��\u001DZ\u0018JHe�eR�\az�0jl�v�`\u000El\u0010�\u0005L�\at�wx��X�\b�\u001C-\u001E�4��\u0003�-/�u���u`~E�\b���U2j\u0014�F�E�{���\"\u000FX\u0012]$�f{�GQ�X�\u0016���!�\u001D�X�\u0002P�-���\a\u0015\u0016��\t\u0001�@V0�\u0012�$2M�D�i\u001CV�\u0019XC���4d#����l����6�-�V�\u0005�\u0010o�|���-��v����\e����)��\f��j�|�in��Oy\u0006~uA���\u001F>����\u001Ac����r����)�9\u007Fus:��d�v�+��Mg\u001E�\f.���s��2���.5��\u000E\f\u001F��r\u0016���\u0014��\r\n,\u001E\\s���*�C��Z���\u0005.B;�^���9C����s��t��\r\n������h,����\u0019���\u000Fr�)�I�JZ^����\u0014��Lz����h�\u0010���r��\u001E\\�\u0005\\�Re�m�\u001E�[���\r\n�1>��h#��+�.��+���+���6q��Vw\u0017��u�=�nm��;�U��]�m�ltmt_��Joe�r[�Wk��^�����s�xe�f�v~������]\u0015wq{5w��v�u=��'ro���S�3�g4���r?�y����!�\u0010��z�u8���?�\u007Fj���Sl��\\��X�KE��7{��.+��q���*�]5��\u001AiO�=���E���N~���9��4\u001A�-Y���*��F��xx�J���K�^\u001E��\r\n�.�[��#��;b�\u001A���7�\u000E�*j�����!�F-�\u0017���\u0014��Z�����w�<\u001E�J�&\u00118���Ox�%<_�JZR�d\u0005�q��'U��\u0015fS8\u0012�\f\u0006�F��yNU�\b�x\u0005\u001E��r��(�Z��C��L�b�b��ZX�W�_1�4�W���+����Z�q?����D���%kdm�����>Y[7�.>��d7\u0011\u0019��'��\t�0u�\u0014\u0001M���g�W�t$n'����o\u007F\u0013���*�t�����t$�\u007F>r����\e'�\u0013U:�\u0001��^��K��\u0012��t\r\n^r\u0010S��s`^\u0005���^hU��0�������\e�7h\u000E\u0013fS�n���Jx\u000E���g�x-��-����_\u0006���k-�u��#[\u0013���\"���3;��(\u0012�5�rHC\u0014/��.`�K�L��3/Qk���^\u007F�=$IR�4p�\u0014�v\u000E��\f�u&�F�T4�c����.e��z�xD,���z�u�\u0006\u001F\u001D\u0005��\u0017�lm�\u000F�!�P�������5���\v'7Z\u0002w��B�B]��O���a\u001DVG�A��\u000E����`q���5E�C���T\r\n!�j�|�������_��u���\u001E\t�|-�E-�&�%c%�\u0004@H�L��i��fH�n���q\u0012u�<�k�o^?\u001Dz�=�K���^���N�@�0�/���\b\u0002x7a��HR,P�0�N[\u0003����L�-��\"r\u0011�}�Q:��e\f\a��\u0012�ewV_^n����\u007F�2���Y���5��5h����5�\u000E[����Q/b�\u0011\u00069H����\b��\t����.#}K\u001C��\e���+�\u0017\e/�_�o3n���?�}��S�K�u�{2�3�\\\a�<\u0015���b�����L\u0002o\u0001\u0010�/\f{A\u00132�\"\u0014�\u0010�`U\u000F�!.!�5N�����\u001EQ�~��z��R\u007F%\"3\td�E��?�G\u0018Z���\u001F�O���\u0019\u007F\u007F-1\u0017��V�T\u0012K��*$�`?\u0017k��B=�(JRLf9\u001D/eB�PJ�r�\"L��!��\u0012a�&�X���K�`���QR�:�g-��������g�0E��D�3�s�E�\u0015��g��\v\ao\u001Dx��*Ri���Egu�l\u0015\u0002^�\u00043*��K��Zt���J\u0006���G�Vm�����vX\r\n��//J{I�XS��Z��r�w���\u0012��^���o\u0006\u00178��\u0005@\u0015N�Y����bY\u0005�w}\e�0��SaY�(\vB\u0014E�<4`\u001C�d�H��~j��G\u001D�X�%�c�.��-\a>%�8�INqN\u00139�eIE*F�\e��[;�W�\u001D���y�<q\t\u001CF����� ��\u0019.Y[��!�\u0016`\f?\f\t�\u0013��\u0011�\u000F\u001E�,\u001C����0���<a������'�80�~�\u007F\tb�� ���\u001F�&�\u0002�0{�\u0006D�\u0017G\u001EvA�\tcD������AL�r�36\u0012{J�T��\u0018+��p�\u0012��c1��G����7��4�TeN�\u0018�r�q��M�t�K��\u007F%\u0018F�P!�xY1�%��R�����juA�oD�\u0006\u0011�����\"%\u001E,���O�Z�\u0005���\v��uM�w��a�6�\v�\u0004Gb�9�\u0002�0���O!x�zC��1�<��w\u0013�\u0004g���T�,����t�P�-�\u007F��\"���XY}����VvW�]n�*�#a�6\u0012�G�\\\u0016���g�\u007FubN P���K��D��\u001F�OG��,��[�\ex�c�\a����UrmV%7d�TpT�_�T7k/����\u0012�\u0003��$��`\u0002IY�(�Q�+%e��j*��\u0019L�>P\u000E\u0013GA\u0012���s3I2\u007Fsb�L\u007F�:�:f7=����Hrrr8�@�Vf�-e��]��8���b�Z=W�L���d��$7�<\u0019C�\bD?1�5� n�\u0017\u0017�\u0017�����k�Q0*>�\u001D�~V�\t���v��kn���m�=��&\u001F����[�$�8_\u001C��>J�\u0003\u001A�V��0Y�m���6�g\e�!�W�NV��\u0013\u0019R�07�6&\u001A��\u0010$�35�K\u0012!�\a3\t1O\e������2��P���R��� F�C��DX����\u0016�\u0015Q�?J�J�\f$�8��h�g�uE}�6aL \"O�D���7\u000E��w�\u001F?��� :\\1\u001D4�\e�6w�&\u007F2���Iv7�\u001C��rC�\u0005g�z\v��x���8���*\t\u0014����\u0006r\v7����\u0011nv\u0001@?���\u0011��&��\u0006���fW��P#41m�[�]�\u0017TG\r\nG\u0005�\u0004\u0017�f�@��^�������\u0001�-�����i���q�kX���\u001E�Y\f\u0002�r\fE�F�%�X�*�\u0005�7�����b����)YN�jM�h\u0004X�\u00068�W�\"�bev��YW��`^h���JQ��\u001D��d����WaD�\b�@���W�J��\"�\u0016X\u0001|n*�����X�\u0001l\e)g�w�w\u0014�A/�\u0011��0\u0010�$���AKN=^��\u0001�\u0012���J��>\u001D�g���~���(>�+����Q��\v6�J[C\u001Ef�\u0019v�Y6�W�?J�\\\u0003�����3�\u0001��\u0015<���}�~�N���aK��rm�.\u0003�\auk�:�P�w���\u0003�\u0011�>|#��z��R\u0018�������\r\n���\u0001\f���?�UB�����\u0016vja�v@;���=�e�\am����~���o��\u0018((�\u000E\u000E����gD�����|CC���9\\\u0011#42w�����D��S�Cs\u0015�\u0019~K#�l\r\n����I�d�c=\u007F�Q�=��C���\u0016Gz��c��\u0018Gg\u000F�VG�\u0015�\"kJ�G�s����qJ\u007F8\u0010�zS���p`v���+����p��.��&>Z�!��\u0011\u001Ep��e���8#��j\r\n��\f7��\"���{��\u0016�A\u007FJ�\u0003���0CgeCu4\u0011\v����@�X5�&�l\u001D�g\a���utv����\u000E\u0004:�\u000E�A�v�-����3�V\u001C�?��1\u000E��L��[��)\u0002�N\u0014��\u0005D��\u0006E�4(\u007F\u001D�D�O\av�E~\u0011:\u0014���A�A'\u0005BA��\u0003��R�t�wt\b��K/�\u0010Mq��7.��$ %��q�o'��i�<��wTE\u001Av�5�oL/������y�~�N]uA��\\���iwxY���\bYk[�\u0015�s\u001A�\u001F_X�]R�$���J��P�����\u001ABek��no_Z{]~�2��\v\u0006�Jf�����m�����\u007F5\u00184.��*��xu����\u001D\f�������\u0017\u0015\u000F�\u0010�\r\n��.L;��\u0002�T����N#��*h\u0012}����TG��)f�\u000E��o\u0001�in��%&[��0�@�<���l��\\:�Vn�U����\bJ��v�<��l{uc��\v�k6hnV���Ic���hC���\u0006���A�>\u0011-���mF-\t\u0017\u001FQ��\u0011M��M�Y\u0001�c��d�ZJT��ZZ[� \u000E��&���������\u001D\u000E��������R�r=���\u0003����<\e��H��Hk\u0012\u0013���_\u0002i�V���_�\e@\u0010H�A\u0016}\u000EH>iX\u001A�hY:)�a\tJ/�F�\u0001+6%}9+�I^w2W�����ur�\u001C%p�$\a;9�5�j<�dF\"��&c��>V\u007F.Y�41\u0016NM��\u0015&\a\e\u0014�S��S\u0004B,99�$����l�'���k�j\u0010���<b��b)b���\b�%f\u000F0�\r\n>�\a�\u0006���\a��\u0019\u0011f3\u001A�G��\\�\u000F�l��xk�\u0015OO��\u0013+++S|<p\u0010+6��o�>�`��=$����\r\n�j\t��)(�\u0011}�Z�/K\\�ZR\u001C�5��C���x����K�S�����R�K5.U�T�?��\u001E�+�\\Q�b�����X���*���(��Z���\u001C;�Y�~?XuA�����_/_� �P2$%�F�YP�1��\u0006Ak�\u001FX_Q\v��/lZV3��K���]�X�t���������De�|�H�7'vs��\e�,�������ao�3��k�#\u0012TW8�\u001C��\u0001q���)A������EA4Ja1����\u001AH|)}\u0019�������p��U�{����\u0013����\u0012���\u000E\b\tZ\u001D*\t�C��R���'\u001DO�x�T\u001D�\u000E/\u0004�a\a7��\el\twD:��r��������[���\a�{���K�Q�h�������O�O\"�\u0012>��x�h�J���\b\e��\e�Fc'��[�X\u001C���#�����\u0015�U�54���T�b�\u0019�t�\u001Ex�p��V��P(,Ij�!/\u0014�F� \u0006�^\u0011D�^`P��\u0006�����\u0017n9D��xa�,;���s��\vF#�h4\u0012\r\n��p�WY0\"����\u001ATK\u0016�Z\r\n\u0004�)���p8���\u0013+\u0001\u0015��A��\u0012�\u001A��\v�>��\u0006#i\t@��o�� \b>\u001FF���� �o��u�\u0004/\u0006\u0012��\u0013�!\"��\u0006�\u0011�x��N���\u0003�'��h`\u001C��Uv';�p�\u0013��|����r�\u0015Lb5�~A4HX\r\n@�\u0015��f����B���W+��}!(��C(4\u000E�>��\u001EN�/b��C���h\u0010\u000EGNF\u0010�J?��\u001A��)\u0016ng\u0014\u000EG!��\u0012�rt,:\u0011=\u0016������\u0002�D/9]�S'NM�\u000E:N�&�J���O���\u0013�I�\u0014�'��F.AQO��0#\u001F���b2\u00021��3\u0019�<�03��3�kg\u0012q%)~�A\u0005b\r\n)�}���|H�h\eH0��\u0001���Kr��\r\n\v)N\u001E��$RX��\u0001��\u0019�=�DT��f��Q��&Wl+�$�\r\n\u0003\u0014qB��:8��\e�|+�\b����V��?��%��������\u007F�\u007F#�\u007F_RSO�#�^�/>�W����v=%I\u0014�i\u0016�����*��E���t�+4o�\u0005\r\n�K�0��\u0014NPmXw���\u000E�44\u0005\bC^^V�\u0001\u0001�\u001F���3�c���0K�.�����60[�a0�?�~K<&\u001E\a\u007FbT�p.\\�X��\v�;�=[\u001DC���;�#�\u0011�\u0013�1�?p\b�\u000E\u007F����%\u007F����)�`Q�i��6�m�p�d�3��el\b�x���\u0003%��������a?\"�\u0011�����\u000F�G���]%��'�:���O\r\n��s\e��J�j�CO\r\n���+��4��|Z�P�G��I\u0001��\f���\u0018\u0001c`\u0002\u001C\a*r\u0002�g.w��B�.8���q��M'Y�P\u0002[��\f�X�x\u0014�YL�\e\u001A���\u001D\u001A�\u001A�=1���c����AE�� �+b\u0002)FP���\e+�r\aqt�<b�1�0��/���\u000FI�?�\u000E�����p1�m�B\"��m��7>�\u0005��w��\"^�5j\u0002�Yk/X����\v�3���\u007F\r\n�O?��=\u001D�d����m[��cg\u001A\u0013����v&s��D\t�8\r\nR�����\u0014av1��r�������|v���\u0002R�2P\u0019n\u000E4�\u001F\u000Fs�p.�:SWh�5<\u0018~-��\u0010[��}n�/���N\u007Fi��\r\n�\u00013Y6���\u0003�>H��TeQ�y6a\u0001*ks<��E>�#��<Ol�\r\n)8���\u001AK\u001DO�)�Xj2�0�-�^s&O��\b\fz��\u0013X���F��\"�����\a�K�\u0017m;P�c\b\u0010�G��R\u007F��X�\u0014��z�\u001C\b��6Z\u000E5j� ���\u0006\u001Fb\r\n`U�]�$�\u0002b��i�^O���b�����s�,�i/:��\bP�����1������yJl�H��LW�Y2\u007F���\u007F��\tw0X\u000E7�\u0006�~��g�>���o�i�\u0002I�\u0006��\u000E,|o����?F�\u000E1Nf�\f[������_��rv��*�C��\u001D��^J\u001D����\u0003������\u001Af��=�\u001E�*�s��K%�;�\u000F�~���r��\u001F!\u001F��<�\e\e�z��$\r\n\u001E�%H>\u0004*\u001FG��[��\u0018�Z\u001E/q\u007F������x�}����!�\t�B���&���|�I�����D����M��tf\a���T\u0016\b�R�����p��\")��>�m��������\"��\u0016\u0014�5�KLXS.�o#��w2����\\\r\nh�\u0013�N\e\u0003�����\u0019%��:M\u0015-��\u0001��`\u000E(<\u0001��eW�3�$����K�\u001F\t���/���5;r���R��hw\u0005�R��\u0010��+#�\u00184�E qE>��\u0013��g�\b��������2�5��\r\n�����%�VC�\u0016�����Fur������\u0015 ��[u�zD3�}����!�����!�:�����>c�o������\u0010R}����a�\r\n��Q?3|��4L\u001A�b�\e�\r\n�\u0006_���k1\f��4�IT&��\u0018J���\u00108��\u0014.\u0016�D: ,��\r\n�\v�\b�<c��\r\n�\e�\u007FS3v�M���|�h���\u0018\r\nf�K[b��}�\u0012j)��=B����:\r\n%%^�\u0012D\v\u0006��&�Yp�\\^g\"�\r\n�K�H�U�t�p�*����V5�$��\u0005!(�,\"D�\u000F��\u0014D\u0016\b\u0011\u0014���\r\nfH��A-\b\u000Eu5�v\u0012��������Y<[N�C�Ii����\u0016\u001E�\u001E��\u0001�\u0004��v��\u0003:\\�\u001C���\t\u0010L&ABH�%&\u0012�\u0012Lg\u0002\u000E'F\u0012(�_�\e�WcC�����!��X�/\u0010�N�*����s�:�E�����$!bl�\r\n���bWt>?]\u0001�\u0006�����fK9�$���8�rbh�H��� \u0011��^I�\u0010\r\n_�\u0016���\u00171� �Kd<�\u0011C\u000E\u0011���iHa$\v$H�*\u0016��:`,*w\u0010�\u0011���\u0015CwZ�cK���w�Q[E<��������Y�e�����\u001D�/���W�KSA��|c�\u001D������'Z\u0002V�A/��eF(0w�\u001D�����ZJ�(�D�'��]�O��� ���i�!\u007F���\u0001�\u0019���\u0017QsF���\u0001�/5b�?����je�i����\u0012cA�B5�R\"�WY�\u0016��\u0015P���F�\u0014t�N�U���k��f���6~��I��hv�sm�\u001F���~�z�=Z�4x�\u007F\\�C�\u000F]O�_�����\u0011�\v�\u0017]/�'J?t�V�v�q���`����?����b��\u0016��s�e8\\,\u0003�bi4*�,;=\u0019C�u`\b\u000E�\u0001�:�\u0006�f��RU-�Qg���\u0019;������������M�\u000EdvX�f�\u0016���6zM\u0018��q��):��T���v��*\u001E����4����d�\u0018\v��\u001A\f�KdS�\u001A\r\n��zT}D���QoW�\t�\u0015d6��?������*��.b��@��k0eT�i\u0015\r\n�TfI��6\vT\u0013*�\u001A��\u001D\u0011J�piq4�]�<b0g�\u0004$;�Xlp�T/�*���s��{�Qr���\u0018�(�`\u0012A�9�}��M�\e�[\f�\u000E� Qe%[\f\u0012+�y�h�5��h}\u0001������9~�L\\��e�9����\e���\u000E�8�\u0018\bU��t�t:�J�t�\b�{�Q��\u001F�yMi\u0006�2��'�R4\u007F�\u0016�\u0019+1b\r\n��T�E��\u0012����$��m9�\u001F\u0014S�\u0014T<��]�6t\u001D��fP+\a�3>iD�hw\u0019��\u0001�\u0011<��\u0010���)}i'\v�aK�E�a19��OI)UT�\u0015w\u0006e\u0005��c\u0016�?�\u0017���_7�0�<}�#\v�����-���w��\u001F�*X������}o}�\u007F��\u000F��\u0010�\u0011��\u007Fb\u0002���+�\r\n��d��\u0012x\t���\u0012/��7�\u0017�\u001F`�w?�<��\u0010,��|n�_���\r\n���\b�\u001F\u0012\f�\u007F\u001CM�f\u0015�\u0001��o0\u0019��u���\u0006�(�\u0002�*��|1���E.\u0003��������\u0017Q\u0004�\u0010�ik{����m���K\u0004R���%C\u0006OE�����)%Y\u001A��,�g�\u007F���T=�=����Eu\e8o�\u0005�C�rR�\"~�\u0010��}\e�^s�\u0016&�^O-\v�~�\u0017��q!���\u007F�+X[}��v_�$e�!Z�7o�\u0010�\"3vY�Y��x\e��\u00129��z�o�(���y�I� �h����\u0011�����\u0006��:l����L��\f}\u0006dp:\u001E~���:�z���i\ax��k.�O\u0005\u0016��?\bZ�l����4��RQ�^5g������=�f����MW�\\�����]\u0002��2��rr0J���\f�\t��\t�\f T�11\u0015�?�\u000E[�\u001F�\u007F\t\r\n���X���\u0002�pgL�7X�=�n��������\u000E���:fmY����W}��E\u001E^&5\u007F\u0005/y����O\u0010jj-|�<�\\\u00022P���tK\u00029��\b\u0012\u001C�\u0013�UrU\u007F����c�yu��c�9�\u0018sj��[5;5��*���\u001A����1}���R�h&��V����{�IY��q�q�\u001CBn\b_������X��q��Q�F��>R�)��-5\u001A;M#&d0-4!`\u0012L;L\u0005\u0013m2��\u007F����3\u0004\r\n!\u001F���e���^��1u:9\u001D�>�\f\u0005�u$�_I���\u000Fg�\u0018���H8\u001A.\vS�6\u0014�\f~c\u001D\u0014}������.�\u000F���\u0003�0�a��//�2�$3�)1j%�Y1�\u0006��\u001A\u0010�\u0019d�YY\e�\u0016�c�.��K)�fr\v�%F�]�^�O�\u001C���������^�t�\u0005%�����_���e�\u000F��n��-5f��b.�w�[t�/\u007F��7�\u0013��$x��\u0006\u007F(��.���U{���<��O7-wD��4�A\u0013���\u0010y�\u007F,\e�\u0006��L�V�����6H�\u0002\u000F:�Jz`:�Q�xR)���@���3��~�E�Q�K�1�?9�i�s���#�Q\u000E������3�'m�C��a���m��l���_AoS\u000F��\u0015���N�:v\u0013���z�����=VF�w�.j96�\u0019���k�-`����(\u0017�#���\u0001��Na\u0003���\u0001\fVN\u0006��6�y�[��{����N�h�X���R�M6��aYb�aJ'8�g0���q���\u001D������\u0011�I\em�\"e����1�I+#Z��\u0003��i�8�������\u0003�A�\u0013�\a��1���yi�'MuN_\r\n�~�)�����Uj�)g�MJ��\u0011!��f���16���b��y�X���\u0019�D,���\u0013f&�'�e~�*e�������s�,TvQM\u0002�@9Y��h����_������+,��#I�D����\u007F��W��d5��\u0005\b\u0004�`�a��\u0001?x_^�qkJn\u0011�\u0015>\u0014���V�N�\u0001�^�;�wJ>\u0010x��d)�R�\u0015�t��E\u0011��������u�����E�z\u001DrFl6�{�\u0017� �S��2�&�4Oq��\u001A�r��\u00018\u0010�\u00178\u001E�\u0002~;��GJW�Q��D\u0011;\u0004�,'\v�'g\u0016�O\u001As�i~����\u0016$K�k�,�.+>�\u0018}����\\6�5BB����\u001D����\u0003�\u0016\u0013i,\u00039�\u001F�\u001C\a�\u0002 \vO�XM`�7�\"0\u0005/x����W���e_����N��\\��_Nm�\u0016��;��o�\u007Fz���\u001E�\u0002��\t�J�t\u001E.|F3X6�����to\u001C�UX\u001A\r\n\u0018�\b�2��p!R\u0019k�a�|����E��>G�����f\u0019\u001D�\ae\u0013��\u0015�+tW��\u001A\u0006�\u0003���@j\u0017\u007F�f�n��&���S�Si��K�2�lI�$S�M�$*�E���F����,�@��)o���_�� ��k-��,�-\u0017�E��J|���i_�]���rv�z*/L_��0{a��j=��D�\u001Aw4�\u0011k����!��yW�\u0001�����S����e?�M����,�k�`\vr���cCk\a��\u001A�cI��>X�q�l����\u0017K����AKY,V��[�Z}L[��C*�`\u0003p\r\n�6RA\u0005\"\u0016\u0015z\u000E�^���/\u0004C�0 \vI�kF��\u0011����O��q\u001C�|���7&�05��7���%��($��<7+'��\r\n$�D\r\n[it�e�\u0002rxr\u001C�+?{c��a�$>35�K��+X��[\u00066������;��\u0006g�}U\u0005S�9\u0012��Ui\u00105��0h�\a.���rm\u001Ah��XX(KC�>Z&�����l�,\b�6\u0011\u0017��2��!\u0005�����m\u0010���\u007F� \v\u0017�\u0015bXDh5\u000EC�N\u0019ri�\u0017�p�\u0001�uP\\3�E3~6\u0012�\f\u0018��{G�\u0006������g%S�s\u0017n�56��Wok���u\u0019�O]�\u0012N�\\��o�~gum8������x��\u001A����\r\n%�s�E;\u0016�J�o_\u007F�=�\u001E�T�4x���w��\u007F����q�O������f�����)|F\u0019��\b��r]�\t���,h�}�~��Y����\u001C0%�\u0012r�E�[��p�9<��� JYd\vR��)�,9#:U��T�J�2��\u001F����k��|\u0001\e(.�S\u0001\r\n���8�8�?�Cby��%��\u0019�\u001A���/&���\t��Vk]ZO\u001D���\u001Ag��\u007F�P��z1(����(�\u0019U<��J�C�\u0015KB�����h��\u001F\u0017�a{��T�+\tq�U��Lm����{�+����Us��G�\u007F;R(\u0014��25(\u0004�I��8x\u001A�-��\u0014\"�\u0019��a\u0018\u0006K[c�B���� J����l\u0016��\u001C������:m�\u001C��]��UZy�\t���\u0003[\r\nN��E��T�I��A��n�\"+f�\u00153 �t�T1L����L�\u0012\u0004��Ej����-oh(/���{�\u00069^.709�|��tIf;P�;�*F����\\�r.,�t�;o�<d{�����j@���\u001A�r��\b8\u0004��H9�v��zA[�1-����1�,\u0019�O�\"HI�$����\u0014�Hvu0!V\u0010Wv6���OW�H��\u0014����s�A�q��\u007F�\u007F���\u007F�Y ����\"������\u0013��/�P\"*Jt�\u0010B�\f�25R����eR�*�\u0001<���=0��< $Emq\u000F���<0����3�\u00011k�3��&���d�0.&���tv\u0016��Q=�h�#���<X�M��O{R�W�a:\v����������������]�)\u0016\f�h�`p���w�s����/Z\u001Fd�\\\u001F��?7nx������\u00066u\\\v�3�j�%��-]��eK��\u0005\e��\u0001\u0003�\u0010;�&P[�\u0005v0��l�\u0004j�\u0012HSh�/\u0005��4)I1v \u0006�&M��uy/���M�%�%i������K��wf��\u0002I���������9wf�,g�����{�������}m�r������`��M:]��/�������;v�y��_����\u001AJm�\fj�x#�_��=0`�f/�`�)���\r\n@k,�u�]v��\v�P\u0010%�N�L\v,(\u0012�Da(�������!��o\t�\t�O<m=j�J`T��������U�V�Tk�#\u0015�i\u0019�2d�Z�\u0001m@��?�o���{\u001A���\u001A7�F�\u0010n�7��'nD7�nfS��PW�&�+��hW����#����x��@�\u0001����\u0015�\u001A�7=b~2�l�������=��4���\v�WZ �*C���g�J\u0017(��\u001E�P�`���lD&-&N�6�N��H�yj��\e�F����r�(�8R~�\\R�{\u0001\u0002XX\u0003\u0016b=��[x�A\vk�������\u0013\a\u0011r�\u000F���]�pI\u0018=��a\u0011\u000E�K#1X��%���G�kGny~;.�-lGQS�\u001D{%\\;v)�����Q�\b��{�����$���lA:��<u3\u0016�\u0002\u0015�$�k���'����}�m���O�K�����o��f��A\\����q�����\u0015�wo��%��9v�����8�Yzh���m�z������\u0013?�����}[SYWl��\v������5��n\u0004\r\nZ\u00024�<��\u0001������bV*�#�Vk\u001F\u0003\\��v\u0014��\f\u001Fl\v\u001E\t�\u000FJ�F��kEi4�\u000E�#H�l�3���\u0014\u001A�y���]����\u0014�}~���1���L\u001E�y���`e9A}@\u001D��,6F��\u0018\u0001�2{;��\u0001d�����Q\aA�����l*���ZHMa��9e�J:\u001A\u001As\u0019��J�02V����\u0005/�\\���Gw=r���_�y�+�U[+�]�����zA��2����iy��oO\u001C���������'�=q_2�\f�z��,L�VL<*hQ��\u0019F�8�&����uHa���a}��P\u0012����9�\u0016k\u001AwY��\u0006�\u000F��c���i}\u0017����Z��\"�/��\u0015���\"+k����8+�J�\u0016\v\eA\u0005�\u0004��Bv0����M�]h'�f\u001D�����}���\u000F�\a�O�'�GJ�K\u007F`������[���+�h���w���\u007FC���=\u001EX�\e,\vc�p�eu�F�\u000E���o�\u007Fb�I�m��q���Pz���a�x�T�\u001A�v(<>��a��<T\u007F\u001AY�#���6�mV+Yk�%�5��x�\r\n<\u0006�n��l\u0016F��A/\u001E\u000F�\u0015�\e\u0010bl����f���<��R\\�\u0019H��A\u007F�$���s\u007F��>^\u0003�yl\u0002M��\u0010�ad�V�W\u0011�H'w�\t`���\"'���\u000EEfR�\u00189���e��Z�UV��\r\n)��x��IK�%.�\e���/\bX�\a_��$n\u0012b<5a�*\u0018�\v�/9\u0002���0�p��5��{�\u001F�\u0005��k`e\u0011h���\u0014_�3��U2�����'v��p~(p�g\u0012���������\"2Z\u0006X�\r\n���\tk�gx�B��k\r\n*�������s\fv���pZ�et�\u001E\u0010V�����=\u0012��H���\u0005\u0005o�K��P���ra�o�)����x�~�~�����i��1��]��Q�����f�#�����k�k�������\u0011�C�G\\D\u0018��������g�����~�\u007F��{���w]\u001F����A�\a�\"������\u000F�]\f�w��J���4;-\u000E���;\u0014�NG�\u000E��@\u0014)8�FC�����}G\u001D!0#��e\u0018�;�(B}�W���$�Q\u0018�l��LDU�c�\u001F�R\u000F�0Gu<�\u0019��M.�\u001Ac���8r��}\u001D��\r\nG��0c���7\\�\u0012��\r\n\u0017�\u000Fi.�C?�\u0014�t��������'��������k��.��D�`��=���\u001C��k\u001F\tQ/\u001E�\u0004T3���\u007FY���>�j�\r\n\u0016o�����6�\u0018\u007F���p�;\u007F����)���$]o��#Y\u007F��;��e�$�)j�Z�?�s2\u0017{\u001F!V\u0006\u001C��\u001E�syk�����U�������@��.\aw�:\u0018���ob)��\u0018V����\u001Ew#3� �g^��zF�`�R�aXt\u0006�\u001D�7�0������~H\u007FP\u007FD/��,g\u0018?� 2sr�}��A\u0010n��\u001F��.����\r\n9��4�7�/\t����%����\u0013L�,�J\u001E�\a�I������YD���/�����B��&u� $!�\u0011(��D86�]|e��B)Q��c���3�W#o�?��'yOuYrY�������C�=�=�\u0003�\u0003\r\n�\\�,d�\u001E�f\f\ay��!�'��^��a�O��!�Q��r;�\u001E_�(�Rh$R\"\u0003��j-��\u0017Da\u0003\u0011\u0011b~�\aB� c�(B��3�\b\b�\vx�.���L���&9~Q���6UH�u�\u001F�����\u0017\u0016�r��U\t�����3fa�J��\u0011��y|�\u0015.\u0016m�Jn\u0015���fX\u0006�>Y�b\u000E\t���}U�6\u0010���\u0005\u007F��JQ�d���@\u0011\u001A����g�O�(e�\u007F���(oZ\u0012�X}��D\r\nO���%LZ�\b(�\u0018P�\v/�o�[�U\u0016�sN��\a�F,��l.���\e�O�e<w�d��\u0006�:�fE������K�������}W�]��X��a�<���\u0003K^\u001E�����<��f����\u0016�U�_f[d�g9���6���Dc�iY\e#�Y���\u001C\t,\f�x���Z�CE�\u0013�� �\u001F�����6�v�M���=�\u0019�k\f��k���M9�9���\u001CI�\u0018��9<\u0015��xn\u000F���%\fg;�?���\u0016�|n+�f��\u0003���k�[�\u001F\u0019\u0005cs������\\�\u0011�1\e��{a�\u0006\u0002Q�X;�5rA\u0014y��P����k�\u0016�{�0�\f�x�gP��\u001C!aB'�UL-#�RK+������8��C����\u0001�k�\u001C�E|��\u001F���=k\u0016��t�r���\u000F>}��\u0003[O��\u001F\a7m�����g\u0019J�a�O�z�U�\u000Ep�/�\u0014�#\u0014�m��\\�g��E����\u0016�[�.r��+�\u0005�����\u001A�h\u0005��VCk��������\u0011\r\n=2�k4Uu�z�Bu�W��\u0012\u0017\u0014�*����^+;_�w�\u001C��:��og�����3��F���\u0015�Y�w��\u0002�\u0006E�\u0018��h8l@c���sq\u001C\u001Fc�N�R�\u0019������|$V\u0006����\u0006mA�,�B�H���W7C\v1\ai\vA;�\u000Ek0t���O$}\u000F\u0016\u001F!�!l�d+�\u0004��1o�*�\f\u001F){��)Ccx��|��9L�-A&��N5\u001Fm��\e�^\"�\u0005��D\u001E�\\\"�@\u0017���1\u001As\u0005Uz�����=\u0001�D&\r\n��A\u0015L8c�b���\u0001��C�X���`�������\u001EqbO�oo�|0��F\"9S��������E3.E�>\f����vU����5������������ylv�\u000EK�p�\u0003>�;r�u\\���7�=�%Y���\e���{���M�7?� �_������z�\u001Ag���\\�����i�I2���/���U!-�)\u001F6ka�S���,���\u001A�'�I8f�R\u0019�h�Z$�h%2��c�����\\�\\�`%r�F��Z�=�\u001FE2���y�\u0014��\r\n�L!�h4���\u0001z�\u0002V[j�R����qrO\u001F����Z�����#��zV/��i�t3z��\u001A�B5���|����V�D���\f�\r\n�m����\u0004�j\u0002��z`�\u0019�*38�g�\u0019=�\u0018�%L�N�::�23�{t��/}~�a�q\u000F{���c\u001E\e�\u0012��@�d���e��'$����v\r\nI�dC�����//g�=��U�\u001A�f�6��s/�����8���l]��\u000F�o������eX����yr9V�y�\u000E'+�J��{x\u0014��9g��X�\u001C\u001Ep�\u007F��_{<H\u0002#�\\���N��\u001F!t��\r\nt���������|p��\u001C�`\u000FI�Wr����1��g�}�\u0002��\u0006\"~��`���\u0005$\r\n�\\�\u0004\r\n#3��\u0014��H<��*�BSo��M�.\u0018;��D:\u001C�=r��\bm�Y�H���\u0001���Mt�`�#��������t�g\u000F�\u001A�\r\n�8t��\u0017�D����B��\u001C�|jO�rE�3b���\u0018�����rFO�p-��\u0004P�\u0015��E�p@�M�]w����{\u0001����������-�\u001AEX&e}��M�r�\r\n��\u001Eq�\v�:Y\u000Fs��G�HJ\u0016��z-\u0006$��-x���\r\n�B�/l+<Rx�PRh\u0013�\vA�~�x\u000E�s0�H�<�V0�<�p���\v���� �G���bfr��2�\"g@i�w����\u0018�\u0006\u0003J\u001Ft}��\u001Dyt��U�v�4q�����EuG\"7�����X����P�Xf�W$��JaR�������<��\u007F�\vw�`��\u001F����\u0017���6����ha�a��;w\a�H�\u0002��/\u007Fg_����~���Gq�)�xb����+�~5/������\u0011�&�u�\u0002}���������\u001C�\\)����`S`)[���xm����{�����u��\u0016���\u0018iy-�H%�1|\u000Fog�\\�e$�V�/*��\u001A���r���F�1���#j��i�g�w\u0011���� �AB\u0014\r\n\u001E�H%/0� ��ir.}�2�Kd��\u0018.Fj�n���d\u0006�����>�!�jB���t��\u000F�7q����D�ti�\u001F��|�\u0011mS�\u001Aj&\u0016���{a����)�\u0016\v]��\u0002&�,j���Uz��Q*�&�MaWFr�A����\a#�p��������Ru�6�;\u001C]E;\u0014��A�v{�cG�>�>���A�\u0003��#g����e>�R\u0011�\u0014\u0015\u0016�0\u0015��\u0011���RQ2'��lv{�P�\v\u0011�\"\u0011*�\u0013)�W\r\n�J�JQ\u0004�M\u0005�b�(�\u0013�B\u0013P�P�W��/��l�lz:\u000E��[�����>�\u001FU�j7Q���d��\u0015�\u0006m~�'zr-�0��\aZ�p����)�%��&7������\v0��_�p\t\u0016��6p-�wDX�L�{(f�����\u0013W;���x+9��|�\u0014\r\n=�����A���X�A������=o��Q��Fpa lU�&��8~����qOUX�Z���x^��\u0019,\t��@(?T?Q��Q\u00106)�0��X=��\u000F{o�sAQa����r�\u0019uG}\u001A�\u0006���@�O\u0001W��\u0010����BoH\u007F�}\#$��\fJw+v*�kvh\as�sw)n���8P��VHCVO�*e]\u0001\t�K��\u000Ed��s�f:���+c�t��%�E6�tR�:�{�bAZ+�)v�\u007F^8�dMc8\u0005�\u0005\u0016\u0004{\r\nX����H�yX\u0019`��<\u0010�W��bT��U3���Td\\���\"�1\\\u0012v�EE���\u0014:�\r\n�&h\b8���[�iG�z�\t���S����\b�W\u0019��s�k���-D��r���0w\u0006�\u000F=A���\a��s��\u001F\u0016|i��\u000F6���W�\u007F���>�\r\n&a�7��������g�\u0001f����~���]O�?v��\u0013�7��������v\u001C9�����\u0010�����I�\u001D�\u0010��7�7a�\u0001�\u0019�����M�\f\u000E1�9�rv�<\bs�+�<��5\u0019�\u000E���q;\u001C\u001E/K��|�d\u000F�g2\u00191�xM�\\���\u001D�_���g`������0)Y�w\u0004=h���\u0019�\u0006��\u001A\u000EQu���r��s\u0005�4\u0002S��K�y<q/~����pR\u0014�\u0016��&��\u0001x��5����\u0017��\u0003&�����\u0012U��6\u0010��a��f*��L��\t-1��u�4�����\b~\u001A��'M�����?2�\b���\f\u0010\v�����F]�Z\"�9j����\f��4��\"���8�s�V�\u0015V\u0002�Nt2��&XS���U�P�G\"�yNp��dn\u0015�O+`�$\u0001D�b�\u001E<y�-n`�����\u0002�\u000E���!�U�u�����\u0016G�)>\u0011&�X�����-]����M�S]�'Y����v���\u0017�(��>\u007F�\u0015v\u0005������9�:\u001E�>\u001D\e��K���l�n��_\a����\f!,�{\u0014�\u001A��B��\u0016��Jj����X_��Y>[Ld��GB8�����F��x�\u0018�\u001F��#/r\u000Fy|�E�K\e2d�s�\u0002�O\u001E\u0002�w����'HaI?�?��U��*��\\X��r����c�2�J�5[�\u0005s�T,��}����\r\ns�:�BQ\u0013�/�������85���*\u0014s#��\u0003�:��8a7�+���\u0019\u0015�[�0F:��\u0012p��^�Q\u001D���,F^}\r\nYX��`(����D�\u0017T�Q}\u0004\u001A�[z�[�G����RR}<\u0017�����H��2N���7�L�v\u0019��I�r\u00156���1%f�\u0004\u0006>�\e/\\�T��j�LP���=�37�x�Z�.2\u0017�Y6k��wH7\u0017D;g��:���x}?T:\u0018�^?\u0017\u0010c�\u001D)Y�Y��,\u0019��\\��T\u000FX����<���1����~�C�����N��7�\u0015.l��$���\u001D�����/����a��J\r\n��0���\u0016V\u001AS\u0018�~*3v���\u00119�S������c�['��a\u00036��u'\u000Fh\u000Fk\u0019�\u0018\e�\v��\u0001�\u0018�\u001A�9n�nc��1�y�N*k8+�[�V��\u0010����\u001C#�����3���*\u007F\u001C\u0016�����8)\"@D\u0012�\u0016�<�L#\u000F����9 s(��&\u000F,�MZ�U\u0016m�5ZL\u0004��9�\u0006TfR4�\"�\b�`&�0fVVTJ~�v�}���o��v����7��8����������_��@���kWK7O$^;�o�?�\u001A�����O��|�\u001Fg>�>^yv�9�\u0011�U�\u0017!�;��](�f1-||\u001DZ����t�K<d�R�\u0019�3����\v�6���v�\u0006\u0013\u000F�>�8��j�u�����*I�\u0018��Q���j����2������%xO\u0011X6WY)�\v���/[�_\u0010�g\u007F\u0003���f���\\��\u0001m����9��.��\u001C��GK��K�����u��\u0019�\u0001\u0019�W�u�����=�G�\u0015����\u0019�\u0006���\r\n�b\u0012\u0019��,�������o$�\\5_�\\��t�m�6Y��-�M��g\u001D}�~\u007F6�3|��\u000E�\u001D�\u0003�=����\u0019���\u001F~[�B8�\u0010�1\u0012~�J�Py��g�\u0005��\u0012l�\e./W�\v�\u0016�������A\"�B�JQg\u001Eq���������\v������V'V��N��J\u0012q�*�J�\f��&\u001Ef�\f\u0002������UZc\u0019�`�({�?<U�5�\u000FUU��\u007FH?\u0004c��\u0010\f�K�l�J�eK���\u001C���\u0012!zs\bU^����\u0016�\"K<��d\u0011���I���X�/lua��as02Y�\u000FS�D0l\r\n&pL^��>W0����\u0004\er\u0014$p\\\u001AM�@�7�\\�ly\u0002����H���D�� ��3\u0019\"�8u�����YT���Z���j��\u0005D\r\n*�N{q�C7����\u0017&���������%�Ha-y���C��o\r\n�V}���^>������7V�|`�Z\a��k���S�W\u0005*|\u0019����������������[�m\u007F�|9�x|G�\u0017WJ�H����y�\u007F\u000E��;���\u0005\u0011�{�0����~�!�i�4��0��<��uV�b��\u0018���z��J�q�WE��}���7�X�[���8}\f�@��\u001E������\u0016�R�:�In\u00107|aZq�^�$mta\u0003�H�_\u001A�����^����L&�\u001A 8������Nbu ���m�Y�\u00194��v<��.�]>q00��g7\u0013q��\f\u0004�\u001F>����\e\u001D �\u0019\bI�\u0004u�G����-:������$9�\u000E9��f�\u0019����x�n���-s;�\u001Eo��1�\u001E���=8��\u0017p;�=�r�c��\aI��~��9s�j\u0015\u0013-.v:\u001D\r\nS�����-/��qo�������W�\u001Dc8�nX����E,�\b/�\u000Fx�������C\v��\u001E\fE\u0019�\u0015n w\u0003�Rh+�J�^�$�\tJ�7`�G�\u0019t�������\u0010>�l�\";qf\u0001�e%|Ih�����m|?\r\n*\u0019?;�\eC�%�\b\f\a?��u\t\e�\u0016C]���M���/Mt��3�<#\u001A\u0012�)��%��\f�����b���o��]�6��R�X���F?���@0�\b��i&��\t��d�Yn�wG`?��=X|\f\u001F\v<\u001F|���?O���?��-���(~�y�\u007F������\u007F,�R�5!3�3�0p���hu|��;�*T0N'�#��^\u0014\b;����y|f��>�)\r\n��^\u0006�2\f�?�p������ o�����t\e\r\n9�q���/���p~����t�\u0011\u0014&zj�V85�4�#�q\u000F��9�a<'\r\n\u0015����8W�V�)���C����\vW�\u0019�aC���#�-&��\u0018�m3nJ]4�*hC&F�(����SKSS��*~�*B7�K�V\"\bZ\\���\u0003��X\u0002����z�\u0012���s�D�N����n\u0003��\a��6\u0016T�����\\:�\u0006�������\b���EZ�\u0006�\a\v�\t>r&L�\eeorr��K��UK�&��(OpZ��\u0019\\Z>~v�?��|�_\u000F<~\f[���?���T����������xb�\u001E7��Y�~��@�O\u000F�\u001E\vN�t�Z\r\ns/~����9Dg\u0014���I?�����w���]\u007FC�i������/\u007F��������BE�t�n���>;X^Y�0�\\��o�\u001Ajr�r���/r\u0014��q����q]}���~��uf�\u000F.��z�����\u0016?h��y��\a\u0017\u007F������c\r\n�\v~����a~��ti��\r\n�=\u0012��[\f\u0012�J�B\u0015�\u0012UD���������y���i�\u001C�\a�?�+s�8�`��kk�����-=�T���\u0015�2+r�:>~i\u001Cx��K�5\u0017��*U�N��Yb�� L\v���Z\bH%e��*t���f**I�8�\u0015\u0014����1���X�%~w�\\VY�`��S<��e�����b��an�\u001C&�\u001Fw\u0004\\yQ�tvQC����\v\r\n\u001CmsgW4��_\\��,����/h\u000F@N���-��6\u0005����|���3�\v��\r\n\eJ\"U��E���y���Di(��l�:m�&M������<1Gq�\u0010\u0019�\u0012�8v��:7�\e<|���I\u001A;+\u0004�I��a�xmT|\u0012F'#,���y\u0015V�W����8�`�\u0010m���6\u0005��xIqN�*�\\�g������{�,\u0011�`��\u0005�_����\u0011?\u0014X+�I�D\u0002��E'�.��\u001AF\t,�2��U��\u0004��^\r\n��9\u0010b\u007F���f�)���^�\u000Fh\u000F�\u000E\u0018�\u0006���D�\u0013���7\u0013J}4�\r\n����j@�N��Y\u001D����Dk���Z��`m��,^��n24\u0019\u0017�\u001A�K��e|�j��@s��|H=d\u00182\u000E��,��\u000F\e\u000E\e�b=\et��z���/r\e�FwQ���\u0012�V�|S����Z\u0012�Zm@:���r�Z�IX���l����Dy�t�\u001C3bc�F�5k�w��]�\u0015\v�}C>�w��}�@4Z�(�sAA(�\f\u0015�]���Ry�&���\u0003���\u0001�9\u0014�'4���\u0006X�U��$B\u0001�zV�/\fZU��L^�wb��]\u0014�Es\f�,\u00172\u0019�dg0*)�@^�|�f\f��L��9\r\n\vA�(g�6�w5�r�6l;o{�&!\u001E����,S\u0001$$��F���1�\u0018E\t�8�|\u0013U�jf���\t/r���a<�!�UT1H�[N��#*�\f���\u0006�!/��R���*Nu��Sl5U��Y��3\e2�$+�\u0018�&�\u0006�1�G��?�$W\u0018jt5{u�����B�W\u0014���Q�/�\u0016!�03y�U\r\n\fYE������*\v�x\u0005�����<py��X��9\\����\u0003q�\u001C��VJ�W��N�\r\n\u0002�%\r\n�#k\v�z�����U\u0001NOn\u0004�>�'w-��C?q���-�!\e,A�\u0018#�\u0019�{d���\"\u001C1\t�Q�S��V\u0019��F0\u0016�Te���\b���#�2Dq�YpLT��|R�}>'��B�W\u0015��V\u0015�1*��T\u0015\u00123W\u0015�F0yU��@�\u0016�;\u0018��\e�\u001F�]�o\a_\u0015@�8N~`C���x�Q�3u}��,\u0014�JJ����:��\u0002�Om�k\\�\r\n��\u0012\u007F���\u0017V.��h.���w����x��~Gp�K_[r�\u001C����b-5x��:�y���k�f�216X����:�e�+��`��\u0018�_������=�dvD��\u0011����u�Q\u0014H����Xt����w�\r\n�E�s�\a�����\u007F����M��\u00162D���@Uhv8\u001E]\u0017�\u000E�E�D��\"lw\u00168\e�?���!}*���\u007F����\r\nX���/s����BG������{|�\u0010���P>WT�\u001F��5Ag���\r\n�0�0\r\n����\u0006�E��>���\u0010\u0015���(���Q�0�\u0006�F��W�;T\u001C\u001D��G=D�C\u0014I��G\\F�7Aa~\u0013\u0014�7�+5r�\\e\u0012V\u0003d��/�8��p��B�\u00148�\r\n�\r\n\u00138��%f�ciX9�\e\\^��7[�uq���s#L�\u0014�� >�����;~�,�\f�����\u001C?�\f.+�s�\\\a������\u001F����d����w=�����f�����g%�#;�<�[�R=�g�\u0003�9��\u0001�3�z6K�[���L>��NI�$�\u0012F�\r\nv)�D-\e\"_\u001E����]]��\u001E�4�u\u0004�C��\u0014�dR)�\u00180>�q\u001C��\bf�v��,^��K$,��+��K�����4\r\n��\b\u0013�\u001A��T��[����\u0005$���K\f�]~i9d\u001D@g%-�{�\f��k��\"c\"l\u00159�b�vV�L�+c\u0019��\u0011��D����{g�yH��\ea9I�\u0012/�\u0005��y\u0003�`8��\u0005|���\u0016��\u0010��%X*a��\t3���>�%i���\u0018x�B�\u0019f\u0005b����\fFD���!�]\u000E\u0002\u001A$\u0006DV��H�P\u001F f��\e�*��\u001FR��\u0006�6l�h�������-j\"�(�\u0014��PM��z\t���_�r�\a��\u000F��2����j�E|�\r\n\u0013�\u0014\u001FwKn�|\v��a�N��8\u0005���\u0010'�d1u\u001A���6\u0019������\u001C\u001AO\u0005��6#\u0003\u0010B\r\n������j�&����'���l�y�����25A�]�\u0006����8�3}�9F�1�Y�\u0011���\u0012i�\v\eP��\u00052v�\b��\u0006�9M�\u0004\u001D0z�=��\u0011Z��X&t�������n����O\u0013��\u0013Z��tb�\u0004��Q>���_�����\u0006\u0016\u0017SE��5�\\���{��\b\u001F)���qOm��H����\u0012�pqd�����j��+l��\r\n��vO�p�a�}���3\u0014��~w�Q���G]�{\u001E,<\u0014y��������i�7\"�\u001Ay3����H!W�\r\nd�\ar\u001E�y ��b��\u001C�U�\r\n\\���H�a�����^�\vZLj_ �*��t\u000E\ar�u�2�\u000F��A��\u0001\u001D\u001D\a��}���������\u001A�c=�H�~Jn3�o�\bRc1�Y.��g�\u0016j��X��\u001C��\u0012�P8\a�����P.Q�:���l�l����i\r\n���\u0012��\u000EQ-���q�|�0\r\nv�5�d�4gV~���;\en�!��VU[����Pgm��������/o\\[�\f\u0004\f���x\u007FO����\u001E\u000Ep��?\u001E�_k\\]��o�~)\u0001�En\u0013��nF\u001A�\u0019��K\u001E0=%\u007FZ��A�\u001D\u000F���;���\r\nm\u0018�ya��Z�fc,C��@T&���m�\u0017Y3���3��\u001A��S2z�[�(\e�36p�\u0019�N�!��8/�\u000E\"Yn\u000F�\u0004u\u001Ac1r`k1��\u0003d�\u0002dPi���\u0001���+F\u0016I^��_�#�@0G.\u000Ez�]YA�.\u001A�X��h\b\u0005��X�o��9���w'n���\u007F?����[F_�`_�t�Dz�?&�?��?�k��\u001F�h����\v\u0013����\vq\u001D^\u007F�NB������\u0006�xQ\u0014�{R���\u0019��\u0015f���b��xS�5�Ky������q�2��hu���J=n\t��rT2��5�\u0019��\u0006�����S'U\vm�T������\u0017�q\u0017B�\"�����>\u001F��\r\n\u001A���)���-�\ay�(^�\u0014�e�(���r���::u\u001C\u007F�v��[�MGT;��\u001Ar�J\\���bU�q�����Th\u001C\u0001�U���vy>�XT�X�\u0004kJ\u0003/\u0019��b\u001FQ�>}�!o��@����g\u001EH�Z /YV������&�)�\u007F��\u007FK.���\vuy�w�0����l\u001D�;t��x���/Y�d��v����p�\u0013�.����d\"�{��\u0013\v%�����r����x-���B��M�E��M��F\u0010\u0012\u0003�\r\n�Hb��\v�ob�J���F����V%h\u000Ej�-|\u00105�od\f�X�S:��Y��lu�E�iG:�N���t�$���~��\\F\\�Hg*+�\u0013�x��P����V�V���W�?�MN��FrdsK�\r\n�\u001A-S(�����w�3w�\\'+)�\u0016�cr�p\u0016��\"ss����\a\u0011� ,!��������*��!^mX���lP� \"9\u001D\u001FE�A���ch.�\u000E��\u0002������F���\u001D���96r\u0017��6X���}\"��s3�1\\�;\u0016�����!�\u0001\e\u0011�|�����Me�-i��f\u001EA]\"��.f\f���x\u0002e�������Y�%�^�\u0001�\u0019\u001F\u000F�\u0012\u0014>\bJ�7d�b\"Z������\t�&�\f��F*���\b�t3���\u0004���K3�<���\u0015��-�[T��\e\b<�e���������_{?��l����\u007Falh���\\0q���Z��i���m\e��\u0018�?P;�v\a��\u0013/��Z�������\e{W\r\n�\u001C���]��9�n���n<���\u0017��`����g��~�g\u0006�K\u0006�m�=yS����_.���L�\u0010��?��x��U_�W�MA|��\u007F��2\u0012\u007FD��|����J\u001A_|O���Gk&cM�L�����S�\u001D����a�������U�\u0006�5��\u0004n=��:�oX��\\�g\u0012g)�s\u0018H@~7r@X.�}�.\v��`��t@�\u0017 �\u0002�o�\u001D������{\r\n�\u0017y\u007F!�j\b+�8Fb����<\u0017��\u00058\r\n������$Y�\a�@��CX\u0015�>R^0��,��#/�3��>���[D�\u0002w\u0005\u0018\u000EL;��`H�5`��~\ax��h>1��h\t\u0018/�_@�\u0003���\u0005�+\u0001�\u0003��JnE�)\u0003�\"��w�C��\buk\u0004T���`62\u007Fe�M�������\u0014�\u0014\u0013���]���/k_�g\fJ�y������)��r��Z�*�������[\u001C.�\u0017��v�\\�pk��q1�\u001C��}-�������+0;X\u001F�eXQ`.���1���+*):S�\u001F-�>\u0012;\u001Co/�,���������s�oW�T^����\u007F�������|i��\\v���o��E���h\u001Dp��0\u0001#7Fb\b���_�V�#M��]�\b�\"�\tj��=\u0017}\"0�t�)�,L\t\r\nEX�\\�Q\u0011�\"+>#�2���.�r�:�$�\r\n\u0014d~ �Jt\a�g\u0011VIW�;DX�2�\u007F\u0013a\r\n���EX+{N��\b��z��)�\u001E2�\u0012a���r\u0011f���@�YTel\u0014a\t��M��Hc�G�e�h<,�r�c\u001C\u0016a\u0005�19EX���b\"�b��2\"�FUy�\"�A���\"�e���\u0013a\u001D�Z\u007F\u0003%�\u0012�u��Ha)i\u0011[>�e����r�_Ea\u0005�\e(�$mdk\u0011ah#�\u001A\u0011�6�\u000F�0���V\u0011�6��U���\u001C9\"\fm���0��c�\bC\e9\u0003\"\fm�l\u0014ah#�\u000FE\u0018��\e\u0012ah#�C\"\fm��\"��F\u0005�\u0014V�z\u0015�)�&u)tPXC��2�(\\Ia\u0003�K�|\r\n�����z\r\n��8\u001D\u0014����)l��C\u0014��w�����\u0011��O�<Ma7�OR�O�\u007F���\u0014~���\u0014�\u0005�\u0015B�\u007FOa!��\u0013XC�#,�i]\"��zB?(�@+� ��Rh#J�\u000Ep9�4������P\u001A���\u0017cqh><e�&v\u0012��i\f\u000E|z��(@\v�\u007F��eJ���qh\u0005�����8Y�k�W��\u0004U�_\u001C\u0015�P)���7z�]\u000E�l�2����CzY0\u0019�\r\n�N��\em�~\u001C�\u000E��4N\u001A���>��\t�����GjP����]�~5�6�sv�������\u0015\u000E��\r\n��@H\u0016�F����I��R�~Kxg��f��2\b���~��\u001Ai�N\b�B��\u0019�H������/�F7��OKN���3��/��\r\nJ�A9��\u001C\r\n�����\u0004yo��JJH�KA�YZ�.1����I��4�K��\aq\a?1V��.����j�T��b�(���O��\u0003>�\"\u001E2�V$�\"�YM��S\u007F\u000E-��#���u\"4����E�\u0012�2��$j�)sS�����\u001C\u0019�=����&���d�����5���v\\J��)�Q/�d\u0016�L�t3�&\e�:l�e�����O}�4�N�&�a��\u001C��H�$q��8Y�\u0001����\u0002$�����\u001D�:(��h�zEw�\f��N��\u0003i������/��A1������q3���b&9�g\be����j�(�������>K�\u0016(����I�\u0001��\u0014��?�����n�F��\u001E�Nc�s:\u0011z�G�o&�\u0005\u001C��%���#\\d�r=N�D)����^�Z�h��b?\u0014p$���w'�*P�6�}�M�\t����wf��6O����K�����\t��G)G���T�\u0005�\u0014��+���1.�\\'m}��\a(���\u0006h��<�iZ$�~�O��+��[�R�\b���*j\u0016x� -Y\u000F}#Kk�#R]\u0017m���oF�w�vY��\u0003W�\u001FRZ��&�H���T)�\a�w\a�u=S-�#��v0=�t�b�\a(�\u0015R�NC�hji�\u0013xf��6[�\u001D\u0001�k ^'�aP��L~�N��,�U�\u0010��&0;i\u001CB)3y\u0005�ua\f�\u0017C�W��NJ_\u0003W��d�I���3R�����m2xU�N��\f��d�F�8�\u000F��a�\u0010\u0003\u001C��(�\u001A3)2*r�\u0018��\u0005R���O9\u0001)\u0017y��V����\u0004���\u001A#�So�\u007F��v�\u0012�<q:������^�\u0010�|��\u0010�\t|I�YH�\a��\a�\u0015`���\"\u0018���o\u0019�]�����j����\u0011f��k\u0006/�\u0013�<8���g��t[u��,��$�\e��:�'���\u0019���\\v�<B\u007F�2c\fK�� PV��z��\"E�T��\b�������M����{w�#���'afrN�]\u001CqI_���\u0003gry�'m\u0014�����\u0016�E0����N�����)r�\f��\u0003S\u001C�]l��c��s��1%�%\u001F�����-�Q\u000E0�����YJ��\u0013)��>>o��U�\u0018)�)�\u001Fi\v����\u0013\r\n�0IK�G1�-r��I�s\"-N��M3�%���bZ\u0018���?3c�P4\u0015;3�n��%�\u001CS=�kt_�����\u001C/����g\u0005�<o:f\u001A�\r\n3�\u0001�q�~�T}�r���-\"�\u0014�/��>�>����4��j4M\u001F\r\n��\u001Fm���P��eg�F\u0018i:h��^�\u0006�k�=�2�_���:����;�\u0015�$\u001F����dzB�L������dz\u001FmG\u0001[B\r\n�������d�%�����Ui����\u001C:��[��4�D)q$���g2\u0005�~�C�J%\f��2T\t�H\u000E�\u0012x*�Ur\u0019\"�8'�&�P�\u00183\u000E�%\u0010R&������oU�rXQ\u0010CR���u���q2,v\r\n������}����\u0014�4��+�-K����������3���t/���\u0011�\u0016$���M�\u0018I�[��\u0019 >Y��\u0017�+���\u0017�U\u001A��zz���������T6����\\��%���Km����${��6\r\n�$3�\u0019T_\u0013�����S�,��4:��\v/��������\u0005���\u0019�\u0006A\b\r\nh^�l�5q��Vf���-��f.�������6ug�S�T'����C�U+��d?\u0017�V.��6n�r��N.��Mm��h����C�M�d_��L�\u0014� ��������\r\n�Q���O���\u0006�\f��l���[�����pK���To?�5Q���;\ve!EN������������s���TR,#�N\\R-��P����N�Qoj{�/���\u0014q\e!��]�\u001D]\\w?�=��:S��M���(�5�s]��\u001Dh���\u000E@\u0019z\u0006��TGzK�K��Hz\u0004\u0011�����,�%\r\n\u0005�\u000Ett����\u0003=�h\\G&Eq���HA�j��{�=\\�P�,�\u001D��m�f�\u0006z;S�k�\u0010�\u0002ugR\u001D�!�\a��\t4�T��\u0002C�z!�^\u0002e�\u0003���]����To�{[\r\n*�\"�\r\nP_&M�\r\n(����FZb�@\u0006���\r\nm&��l/(���\u0018d7/�\u0005\\�I��K(C/��Xp�\\'�\u0001�\u001E���H\u0003Y�fs*���\u001FHRZi�I��wC;w\vh\u0006�\u001C��=�\\�\u007F\u0010���+�I���Z\u007FwG�k\u001F\u0010�'���#)���M�\u001E�\u001D\u001D��\u001ER�\u001E�������A�x��\a\"m����6��@�P���A(����\u00144�@V���tzs�\u0016hKrSrgwo*+PE&\u0005=�\u001F\u001E�\u0002�v�;\u0006�*����l�F�����$\a\u0005��m�L\u007F7�k�����:\u0016��}{t���(�N��\u007FKOlK\u007ForK*�%��O�\u000E�1Czd�\u0004�\u000F_���!�H_��ie����u+\e����\u0016rK\e��_����[���~Y�u+�*�����\u000EC�.J\u0005�t�1 �����V�Pe�\u0016!����y�#���\u0002�dI:�N[h\u000FKr=��^����I�\b��\\\v�����J��'\u0001��zW\u0015�p���q�T7�@����6\u0002Z��\u0005��OoJ\tDJZv�=h��L7�\b$\r\n�\u0014{�\f\u0002\u0016\v\u0005�d\r\n\u0015S/\u0003���%{\u0006(KIf����oG�U�#��\fN�\u0002�$rB �$��Kut\u0003�|��\u001C`���&�n�����c��\u0019:&\u0014\u0011�\f�-�%�\u0014��{K�H�4\u001E���~�'\u0013�������\a�{��]$\u001FHK@�\u0016 I(?4U� '�����3��h�8]9�\v��ei6�i:R�^�\u0006\u0019��4r�+=��5���\r\n\u0003\r\n���V����LA?\u0015�\"�7UG(\u0016d�\u000F�|��I��b�7~|���S/t�\u007FkOM&\u0004�$��I�U+�`P\t�*�,�*Kf\u0015���q�rU#x�KJ����LTr�\u0015�U�UZ�'��\u007F�\u0019�SL,\u001E���XN�e&Y\u0016�E� ����F���G'.�a��\u007F���\u001D�0{��:�\"���\u0019��O\u000FV>=X��`���\u0015�����\a+�\u001E�|z������\a+�\u001E�|z������\a+�\u001E�|z�������v?��$��qa�����U�\"�������\u0014>�Y���H\u001A%�$s���*\a��?)��h�!�G�}\u0017\u001E������:���c\u001E)�'������9����?�w��K��F��K�1p#Q���\vJi���Y�u�W�30N����\u0011����rd�<\u0011��%�����o���_�?�a�_�o\u0001���F����������\"=������@�`\u0018��o�����_d\u007F���c�\v%%�}wDk,�\u0004��>�L���bO�!'Gu�RT�e�F\u0018�\u0004�90���\u000FF���W�\u0010�\u0003`��� =�n010M��=�\u001E�r\u001E%��`����\u001C�#A+����fb�O�7\"/��9�^�\a�]�=�}\u0002\\;�_\u0006\u007F\u0017���3q\u000F����K�\u001F\u0016�\u001F�g3�\u000F��\u0003����~x&�}��6v���/�G����m�sA8\a&\u000E�\u0005�^��\u0005��K\u001A\u0018l������N�[\r\n�\u0016�\u0005t�\u001E��h\e�\u001E��J��Jw\u0003�w\u0003�v\u0003�v#\t\u0004����K�S���8� �.��\v�\u0012g��_�\\e�����\u0017����>�\u001F\u0006�%0���m`\u001F\u0004s�<��\u0001�\u0005P�}��#a7\u0010���*���,�\u0011P��\eGm��\a���*B���DWO��hhjT�!��Q{��B��u:�\u0003�\u0004�A�`����Y�F�v��c�3�uh�\u0002�:�\u00103�\u000EI����\u0002lz�-E�\r\n\u0004$ib�Q\r\nD(p����6e�r��%\u0017\u001A�J^�����!����K��l\u0013��J�^\u0001yu�\\\u001E[$�N\u001CT\u001FQ\u000F�_R�SK�e/�������I���6��d}�=���#2�A�A9���S�Q�\u00065���yu�Z���#u����*\u0003�\u00060}`\u000E����[��c?\u0003�\u0015Z�\u0015P�\u0019z��3`Z!v+`�3�\u001E�H\r\nOz���xz����\u001E|\u0011�$�\u0019L\e�>1T6\u00152�\u000E��>\t\u0001\u0013�P\u001D���\u0003��~�@`���\u0016�����X��\u000F��\u0006�90�`X�w\u001E\fP\r\n��aq1�\r\n����O�L���]�C>\u0019z��\u000F\u0013���`\u0001�kj�Jy/X&����\u001Ah\r\n�\u001E��}�@:�>*i�5\u0005��MG%���@m���$��\u0005b��Q���\u000E�����\u0003K�/}q�kK%�K�K�������H$^J]o��'Gl��J}�\u001C�8T�\u0015��`�\u0002�\"=�n010�`�`��q��,�>\v���&0�`��������\u0016���a\u001AF \u0012�\\\u0015�B��\u0019�N4�-\u0005��\r\n�0\u0018\u0016�~\u0006����\u0005�8�\u001F\u0006�<�o\u0012�\u001F��$�\e��{�\t���n\u001Dt�u�\u0016L+�>0R�\u001A�\u0006�\u0005\u0006R\a�\r\n�\u000F�q0\u0012v\u001D��a�0���3�3l\u0011�-�s#�\u0019�\u000F�Qa�30\u001A�\u0005-~��\u000FR{\u001F�k���uK�\u007F[���\u0012�\u001DK�!��0\flZ|/�=��N�\\���N[P���,���L\u001E�e�����u�.�s=�\u000F<��x�\u007F�h���n�h�x�{N��Z&��jb������A^������qk+��:->�!w4��.j;�����~�\u001E)��?�\u0005�\u0012\u001E�)p�1�:��HM\u001D8\u0013#5��\u0019\u001F�9\u0004�?Fj�q��?�th�\u007F\e�_p���K�AB��\"�\u007F�\r\n�\u0018����\t�'Q\r\n\u000E���H��$�������e�U����f��a�@��$���HQ;���H� ��0*��>0Rt\u0001|�\u0019)�\a�\u0017G�z�90\u0012 \u0005�q���]g����!q;P�!%Y*��\u0018R�\u0001w��r�H\u0011yk\u0001�`\f�\u001F���\u0013\"�|\u0001�P3��=����G>��\u0013�h�\u001D(@]\u001D���k����\u0011�������\u0005��k�����b��!�o^�����_���c�\u001F�&�\u001Aq�V4�\u0003����;���\u007F\f�\u001Eq�T4���\u0017��\u0018|�}\u0002�<\fq\u0019|�}�h��Y\u001F\r\n=��Ph��5��G|��\u000F\u0005�y�}s�\v�\u0018h\v�x5\u0004�\u0014�u/�9�^\u0018\u0018�\u0010��@f��]�����{�\u0018n\u0018=�.�����!�c����c�G����\fS��x�/���������g�\u0013�b9'��;��\r\n����)4\r\n�B��)$\r\nF�\u0014�T�;�?�+3\u0010G&!���\u0006��@zQ\u0010�?�\u0015\f���\u001C��i\\1\u000F\u000F�\u001AQ��y����1�����\"����\e�����-�4��9����@���v����>�8v��\u000E������\u0016�8�R\ajl����\u0002���~���7����j�������\v>�j\u0013�\u0019:n�Wi���\u000F���b��W�[�K\tp%��qx�\r\nn����V&]��4�G�����Nfk�r��w.h����L\u001FDC5�!�F��DC^<J�-���L��\vNx�B��q\u0003�\u0004��2��IH�\u000FY@Z���h�\v�iZ~�E�\u0001=\b��g&�AXO\u0013�k\u0010M�I\"�\b\u0004 JQ�D9Q\u0019�\b'\u0002�4��t�/ \u0014�\u0005\u0005h>\u0001�B��x:NX�\u0003T �a\u0014\u0010��5\r\n�\u001F\u007F�y���x4���������W�\u0002�6|��.���v�;��s\u0012�\r\n�����.�&S�?��\u0016\fw�\u0016p'�\u001D\u001F\u0013�A���\u0005'PG���':����$���%\u0017��>94�����M�5\u007F�c\u0012\e\"��'y=��1��$�I�W#�����$�$��q�<�����\u0002�k��^pG\u0019�\r\n�C���2�l��K;�l����3\u0012\u0004��:�2���\e��!A�u�u$\bz'\t���^\f�~v��q\u0006?%\u0006\u0019�����\"�Z��`�?���\u001330\u0010\u0001�\u007F�J����zV4\u000E/�~�������a�mA\v�g1 ����\r\n/��V��k�j\u000E�\u001C�9^#\u001D\u0018h\u0001o�����L�7�\u001D�\u001E�\u001E�\u001E��H��������?z�\u0001�&�\u000F��\u00054�\u0001p��<�\u000Fd�\u000FA\u0006Y0Bv�����u^�\u0001�^\f3�b�\u0003�\a&\u0001f\u0005\u0018)�\u0016�?\u0002�\e0\u007F\u0001#A��}\u000F����\u0012\u001F��-��v/ 9�P��V�t4^^:k\f��F�]�Np��\u0013���R+�#�\tU�\u001E&�D�O)�\u001E�7��\u000E�?�H�R��&> PmK\u0016e#\u0018�O4��\u0013+\e��D�\u0016&���F\"(+h���\u0002D��5Z�\u0010�\u000E @\u00054\b8\u0010��f�k\u0003����?��/Q\r\nendstream\r\nendobj\r\n\r\n30 0 obj\r\n34154\r\nendobj\r\n\r\n31 0 obj\r\n<</Type/FontDescriptor/FontName/CAAAAA+TimesNewRomanPSMT\r\n/Flags 4\r\n/FontBBox[-568 -306 2027 1006]/ItalicAngle 0\r\n/Ascent 891\r\n/Descent -216\r\n/CapHeight 1006\r\n/StemV 80\r\n/FontFile2 29 0 R\r\n>>\r\nendobj\r\n\r\n32 0 obj\r\n<</Length 567/Filter/FlateDecode>>\r\nstream\r\nx�]����0\u0014��<\u0005��b\u0004�6���H�$HY�G��\u0001\b8)R\u0003��E��>����E�\u000F���|0�v��q����<�'���~�f\u007F\u001F\u001Fs�����Cb$��v�W����)��������q���u�}\u000F����L_��x��������\u001F�����)\\�\u001E�������y������>���Ks���z=v�q�<_��\u007F\u0005\u001F������*������~n��O�y�I�u�I����l�s����l�PjBi���M`Q�\r\n�%\v����B�|\u0003��\u0003�\"��\u0015�\u0006�q�\u0005o���yg����W�=Y\u001D\u000E�\r\n\\+K\u001E���\u0005�\e�W\u000E\u001C����\u0002\aC\u007F���?\u001C\f�\u0005�&�k\u001F�\u0017ZC�r\a�\u007F�}��\u0001��R����\u001A�\u0017X���\u0003\v�Kd.�\u001F�\t�\u00059\b�\v�H����_����a^�\u007F�}��t,�\v�\b�\u001D�%�����{d%��u.�[���E���\u000E9��\u007F����U��C\u007FK\u007F�wm�\u007F����������������j��\u007F�^K�\r\n9X�[e�;�S\v\u007F��rM��\\���.�����iM���\u001D�\v���#C\u0017�����������\\�GV.����_�\a\\�?��E\u007F�\v\u0017�Wf�\u0005��\u007Fx������O\u001Dg��\#$m\u001F�\u001C�\u000F=������\u000F���6�\u0013F��7��'z\r\nendstream\r\nendobj\r\n\r\n33 0 obj\r\n<</Type/Font/Subtype/TrueType/BaseFont/CAAAAA+TimesNewRomanPSMT\r\n/FirstChar 0\r\n/LastChar 80\r\n/Widths[777 722 500 333 443 277 500 333 500 389 277 500 500 443 500 250\r\n943 277 500 277 333 277 250 500 610 277 777 443 722 443 722 610\r\n500 500 333 610 250 333 722 722 722 556 389 500 500 500 500 500\r\n889 722 500 556 500 443 500 500 500 500 500 500 500 722 443 443\r\n666 666 610 722 666 500 333 500 556 563 563 563 500 722 443 500\r\n777 ]\r\n/FontDescriptor 31 0 R\r\n/ToUnicode 32 0 R\r\n>>\r\nendobj\r\n\r\n34 0 obj\r\n<</Length 35 0 R/Filter/FlateDecode/Length1 25972>>\r\nstream\r\nx��|\vX����;���e��~g?XX`�[\b�@\u0012��&�@H�\u0011bhX`\tk�%�K\u0010�&��Z������S���s���H�\u0017����6�����&��Uk��\u0013ck\r\n��3��M���������g���;3����g>6���� \u001Cv��R��s8�d�\u0003���HT�N�hxSs\u0015�'�t���m���1�\r\n�\u007F\a@�z��X�7\u000FZ{\u0001LEX>�w9{�^Wj\u0002��!��~\u001C�83��>�@f������~W����_2��q6$/���S�O\u0019t^>�\u001F�'��:��!������S��3��{�=>�\u0011�\f\u0001l�\u0016�\u001F���k���a\u001F�G>�c\u0004\u001F�\tGP��TP�u�0C8���Q�\vX�kyI\u0011n�d��[XNbyg���g��`��,tB@+�L�(�,�\u00162�\u001D�\u0015��N�\t\u0015��\u0014@;�H\u0002$\u0002%\u0015�D�\u0010\u000Fj\u0012\u00069`�&h�X�\b~G��\u0018,��H#�!Y�\u000E�\u0005\u0019�\u0002qP\u0003�\r\n��U�wa\u000F�J��(�~�H�\r\nk���qX\u000F��'p\u000F��p\e�I\"��3a�\u001Az\u0013)��:x\u0012~\t!�\f���A*��\u0001�BO�\u0016x�l&��R`\r\n\f��p;�\vO�Ir=�V�C]P\r\n��%Z\u0012Mr�kB\u000F�2����C����\u0019��E��S��1�\u0001H�����1\u001A�a)>Cp\u001F\u001C���\u0004R*�A\u0004��^�p\u0015<&� ���\e(���J��\u0010\u0011z��)�\u001E�\u0005'��d���_W\u007F\u0014�\u0002�P�\u0012�t\u001C\u001E���\u0011�#Rk$m��Lu�\u0005�U\a\u000Eh�������Ps?��9b\"�d\r\nR�>y��%\f\t�G�\u000F�)8\u0003\u007F&9�M����\u001Au��=����\u0012JHc\r\n\\\u0002\u0003�\u001F�F$r)��\u0016\u001D�W�]�A�7�\u001C���e�#��B��\u0006\u001EA�~\r\n��kh�F�L~I�\u0016&�_\u000F]��\u0016B?Jq-|\a\u000E��DM�$��\u0010�,%�(��d��ES���\v��c�\eCc�� \u001D}�\u0013\\��2�\u001A��'�(�\u0016�\b�H\u0012�,������D����Q�\u0012a�p�JR��zT�\u0003�g�H�\u000Ff^�9�Zgt��\u0019�N��+P�S�\u001C�_\u0013�$�4���\\����>r\u0015�O���O�K\u000E���1�.����&�\e�-�0�!=J�\t��]�\u0017�\u0016^R��~����y6u���\u000FC��#�4�?���\e�S�\r\n)���P���\u001D����\u001F�\r\n�\u001Du~�^�_��\u001D��I�\bm�W�AoJD�2��d�<��\u0012�NF�8��<@~D�\"'�g\u0014h8���N��Et\v���O?\u0013�\u0004�P#\\.�&�L�T5�.��Q����4'�Y��>����30���u��P)��\u0006=/\u001Ac�\u0004j��.B+��\u000E|��\u0013FQGW������\u0018\u0004�0����(>o�o8��y\u0017-q\u001A��\f�hO5��#�^���Co�\".���\\I�!� ��s\u0017�6�\u0017��\r\n�\u0019y�\u001C'o��Q&�����B�Z���\u0013������7�\u0003������A\u007FK?\u0015�B�`\u0011��\u0006a�p�0.\u0004�\u0003���_�l�\u001A�j�v���WP���5���\u001E�\r\n�{���\u007F�����:��Ys�fJ��6L[�m��i��}X{X�\emH�������.Hs7�KU�t?\t�)��\u0019�\u0017~Bo!�.����A/l�S������/�V�\u000Fz\r\n���O��,�\u0012<\u0005/�_U�����i\u0012|���\u0016�I��w�\u0004R&,W�U��Yg\f���\u001E�Z�\u0018b�\u0011��\u0015.&��'�&�\u0010�\u007FT=�:m�o�G���E����\u0003�0�\u0001����#w��8|\r\n�J\u000E\t\"9�~�\v���pb�[U��ZZ�I�;5�h�Cd}�y�\e�#F�[d/�!|������B�.��V�\u0005)!\u0016��*\u0019^���\u0006w���\u0001&1\u0006\u007F���\b�\u0018\u000E\t%�Yu\u0002m^x���z�_�\u001A9Ck���<s�c�\u0018s����X\u001E����\u00130����#�L2P��j~\r\nw�>xR��,�;t7\r\n\t/�D�&�\u0010���_���BJ�� �Q\u000E1���\a��e�\f��n�\u0019�qf5��\u0006���b.�B[Bw�;�\u000E�)YKb�Y�^\t��[���S�y���\r\nXMn���^��s%�d�b��S�����G�\a���_�,��1j�B+�\u0016N��!�\u001E��{�\t�z-FO\u001E�O\r\nr�\u001A��\u0001�!<\r\nu$\t�1\a�`��E\u001DlFK���5p#��w�\f�)|D�d\v<\u0003�c��c����:��\u0004\u0017��}�]��_#�8�\vi`G=}J\"�2���X��\u0015��4��\e�=f�\u0010�+�,'�h�\u001E���2�P\u0006�d\u0002\u001AC\a�\u0013Z�^x\t~\a�x��b�>����7\" \u0015*�o\u0013\r\ny3-�e�-<M��4�@�j��}%��\\�P��\u0010K�A��*��3v7���#IRu��\u0015�++����,-^RTX������d��2�\u0019��%-5%9)1!>.6&:*�l�0�\e��:�F�\u0012(��\u0006kc�\u0018�u\u0005T6�����ou��s�@W@����8\u0001�����1%���\u001C�$cJs��,��\u0015�yb�U\f�\\o\u0015�����\b�To�\u0010\u0003�8����\u001C6\"���\v����z1@���@������z$7a\b�������`\"���\u0001�@�ux��W\u0011\u000E����\t\r\n:#2\u0015H��7\u0004\u0012���������\r\n��oo�ONO���\v��\u001Ekw���\u0001���@\u001D�&��\vh�6��I\u00037�\u0013y��7N����\u0011�k�uni\u000F\b�\u000E�G�\u0003��\u000F�_q2a�������[8�,�7$�E�\u001D\u001F�N\f���}�l:�;:�\u0006��Y�]���������\"�F�v�\a�^�Rd�0�d�\\�\u00066�u�\u0018�[k����u�i��\u0003�a,=��$\u001D\r\n���\u0006q����\u001E�N�v8�S&b`|��d�$&.����0G����0)@�q!����\u0010GgP��9�\u0012��u\r\n:D@�\u0011��v+���U�e0��\f���ApU�\u0017-�\u000E������l��\u000F���Vq�c@\u000F��z\u007F��S\u0019�d�?\u0006\u00062?�s5���\u0003\u000EG�ng.��C�\"�U�_���s��m\u001D6�����\u0015u���,D���3\u0003�0%A7v\u0002����}\u0011��� \u0015::\u0002���L���^�fv���-���'\u001F��4�\u0001�m���\u001C\u0017��_\u0019 q\u007Fg�%�7m�6���.6�w)�mj[������)P ��]H�\r\nD�\u0005>�N�e\u000E�u��\u0003�,���N�;���W�\u0011\"6\u0006�]���#,=�K.�\r\n}�V�f~��f�����|Q\u007F\u0011{��\u00022��������a��\u001A1\u0003��7Z����q�Thw�U4[�\u000F�m%{|��k��S�'oH\u000E4���B���||�aw\t|�^���\u0003�\u001C�h�\u0004�\u0014\r\nj�\u0011\u0001���#\u0004\u0012u\u001A�\u0011*<Ej@���&Hp���8���|zE��\u0015P���3��\u0014�G�GfaE@\u0005����g�\u001A�\r\n�j������*\u001D��*\b�*\u0012�.�\u001DM\u00174\u0011Do�:4E\t�xG��a��,�\u0010\u001D�ye�2���o�~��p�������T�LS\t�\"k�X�l*���������m\u0016S-��X���Rc�fH2'���cs\u001D&�\u001E���bH1�v�v��e���q�s&�#�dPY��K\u0004ki�~\u001D��=d\u0017����\u0012��m�6E�RDT�r�`,Yn�YtT�C\a,K\r\n\u0012+�H�D{�\u0003�o>y����8�|��d'T��>\u0015\u0019_���DFUTT������:����S2��%E�\u0018�$�j�Y34�1�q�\u0013\e��f�����\u001A�4.niqYi���]@KK��\u0016���r�\a������\e�M�\r\n\u001F�`���O^����,I�QYYy\u007F����K��=t�%\u001F<^[Ux]rR�Q�}f�#G\aW�[\v\v��F������I�19�\u0014^\u007F���E���\\���[�;i\u000E�\u0011W2Km\f��d�\a`)\u0019�����L!+\"�r���k3���)�z{�\u0015�lR\u001FV\u0012��\u001A��c+�!���7�\u001AF3\u000F\t���4Od>a{�\u001EVom�����~����v��A����\f?��I����\u0004)�\\=�@�^HM��\u0011?\u0015��bpdW<�|!5>��t��1R\u0006l.z��f!f�1>!!C]�\u0010��\u0019z�4G��*��T�����%�Q9�%�O���26DN��:ZN7��\u001F4�-z�o~�3yB�|���q\u0005\u001A��1��p\u0005��Dq3*�s�N\a+h���c\u0013\r\n��1�X�kL\u00064RVvf���f�[�Y\u0010�n�%��d���\u0017�m�\u0002�h�\u0005]�:�8������\u0002\u0001�c�\u001E�$;���\u0001�8V\e^_446&�\e;\u0012�o����j4ZMl��y\b�H�\u0019�g�A�7�n������m��7-�V\u0016���JonZn�_3����\u001F:R�H�G\u001A]��~\u0018�R\u0014�����K�����#3�\u001E��!I����,�%3����W.w?�}�QRL�k�5�V0_�\v�%�V����%RX��J32lb*��?�\u0012���&Jhz�Io�,s\u0016��\r\n��@\fS�{2/55a��MF�s�;�\u0015o>s���|�s���\u0015L���B\a�����\f-\u00171F�A\u0019��cDh5<@P��R�\vb�����L4\u0019Z����W7U���U�'�V:����U����b#2\u0012���\u001F�\u0018=0�xIKEJl����������_��dC(\u0004\u0017�N\r\nO�;�\r\n�F�h1�=���H�\u0002uH��\u0012������8T\u000E�]��\u0002�9D��\\@�u:JK�-�S\u0010��\u0011�I���|\u0012�\u000E'Q��\"lF\u0002�x�V�3�J*��\u0011���*��(1��*\t\u0003g:�T��UrS�����%��2s\u001C%��cV\r\nV��ee�Z��m�VS�%�FI���q\u0001��-�f����\u0012Cb\u0006��\u0003���v0O7�F��lfi�s��y���\u000E���\u0014&�\u0015�XYR�n\\O���,ib\u001A��D�FS��������\"hL��l�25����� A��M\"�#�I�\u0010�F���� E\u001D�\r\n\u000E�����v�cO]��$�T�5d�y,\\=��\u0015��<��[�/|�yw�\v�G��]�a��iW�>�n�n��\u0004\u001D�����\u0011A���\u0003X30�E�g����P^V^���m#3W�l�u�k��|���5�\u0011��\u0005�i��\u0018[V�p��w����}$��������\u001Fo�\\uQb���$��]���\u0016�S��[��`�7�2)E�\u0017����\u0003$��'\t{Mz���iolb��[�\\\u007F�L���\u0006W��Qu��Sf�\u001Ca>��k�\u0002�F.kn)/oi���\u0002��y����U���09C\u0003�Qj��>.��\u0018�PB�F�-�#%{�hV�h4}-��\f����dPM���\a����\u0015�H\u0012Yn++K��-�\u001C�\u0010\tO���\u0012��A�w2�Uw9�=\u000E�!���A<��\b��N��R��BR����1�\r\n��x���H�����%���Vl��\u0006\u0013XPA�i$��z�ZP'6�\u001C\"���a\a\u001E��x��a^u��l��\u0015\b��}�\u0003\u001D\f/\u0004�\u001DL���;x\u0016=[��NCTU�\u000E���>���<��fC\\���nA���j��/-�f��\u001F������K\u0014�X\u0012���<����W~�P�s�\u007F���7\u007F��4/5#]k2EG[3��:�~ueI�*.}]nrVJ�vE��v��/y���k\vcb7?9t��][�\v��\r\n4����9�\t�����}��|����\u0004�\r\nyRt��+X\u0016l���r�w\aU\u001D\u0002M���\r\n\u0015z\r\n�g�]�T��O�j�&K#���R�E�\u0010�)U7R���x2�2E����D�����L��t$9%&�b��oH�\u0019�LK�5#,�\u0012a��dZ�\r\n�k)���iqX���h2E�%��\u0005�6y�l�<F�\u0004\f=.mJ(%c�\u000EM�\u0005=�\u001E\e\e#��T�H+KM1D�9\u001ACc��U%1R]i�TQ�@i\u0019VEK�r�c���UF&Vi\u0016���%�\u0018\u00123E\u000EK&K~ �\u0016�\u000F��|��4����\u0012�\"\u0011�\"\u001D��\u0015�-R�-��:1E�����~d����<�\f~d#��i�1���&�+Kx[����>5������'a6u�p`����\u001D��s��N�c��p�0��d\u0005.�qJNk���p\b��\u0015+H'^�\u000F��\eE\u0019�E�QLx�I����������*��\u0015^;L,1��T�n����\u0017Oj�����Ab����-2&.>\u0016]�\\9�2��G�K��������\u0018sv�Lvi�9�������������U��c-�\\M\u0015���2P����f%��{|+���1����F�\e���JtY,k�������)��\u0014��;2��\u0014\tQ�b�4G�S4����)���\fc�%�\u0001��LK�a�\u0001X�o�%\f���4D#\u0001\tO�DE���\u0006Rp\u0014�f�\u0010IBnx��h��`O���<��\u0005+KY3)ZKx\e\u001D�[�0��$\u0010O��\u0013�7���+���4jI�J�'-��*L�N���t��4Mj�4�\u00010K��df�\u000F�\b����@��s�\e�tb�p,L��_���f����y�K\u0005u3�����Z��\u001F��Kg��M�)Wef���\u001E��`\u0016��-���V�YH����}�}��W�pH�\"\a�D���\u0011b�F�F4\u0014\u0019$�`��]\u0011\u0006*L�\b)Um8\u0018��LT*0�-j��G�����DK�1��L\u000F��������c�BtbR���\u007FQ\u001Ct���?�!1g6��\u0019���N������\r\nb~\u0011\u0005��n\u007FKc�(*;��5�]�4�����L����f��L[\u007F�����+���U��y�����\vS{��{Vf�J�b�xn��*<��\u0001�A�\"��\fQ �\t�\r\n\u007F\u0015T���;���U\"�I�%�7�&��#imbrI%���\v����qz�p������aMBcx��RaS�a�����q�H��(-�\u0015��H1jS�k�\u007F\b�$\\g���d\u001A\u0013��b���\f���#�\"q�pcT��o��x��\u0001�\u0001���'�g�z�W�\u0010C�jE\u0004#��c\f4�\b�\u0006��`���0�2�U'��i��H��\u0011��\u0016#��\a0SI���\u0018<�\r\n��z}��D\u00181�F9�\e#�\u0002����j\b\u0001��B�hV�8B�\\\u0018.7a\u000EM��\\�4�����\v�\u000EG����+O�f&2�j1������&Z��\a�x�u�W|`>��\u0019;��K^T�u\u0005\u000E/�.���Ic\\5���$z\u0005�ON\u001A���9VnM|�D0\"Z�+\u001D�}�9F����E`/\u0016,2�w�\u001C\a�������pf&}dJ5M�\r\n�|0\u0011_��\fx�w��J����6��\u0012�R�T���g���l+I�\r\n�3T�~��\u0012'�Y�{�9��\u0003C��?h���\u007F�\r\n����V|�K������vi��O���@\u0002z��h�_�M�i�K��\b,�\u00185\u0015$E���4\u0015�����\u0003����`��>��\u000F*�4�\r\n�c�&��|\u0016�����\e��~K�*�6��~]������;\u0018�\f�P��(��\u0010j�����A���V\u0015\u001E�\b��\f�\u0005�Y\u001A�1����(��\u0003��a�3�C�+�\u001A\u0012��\u0002k �\u001CS`-�N>S`\u001D���\u0015X\u000F_��*p�z��[�\r\n���R���O�Z���\u0003��)p\u0004l1w��n��\u0019\u0005&`�\\��\u0014T�k\u0015X���V\u0005VAL��\u0015X\r\n��w*�\u0006�\"���Z\u0018�|J�u\u0010\u001D���z��Z��a����\u0015��\u0015��s��`i�,oFas��)p\u0004\u0014$|��\u0010\u0015�zDb�\u0002�� ��a5��%v(�\r\n��=\u001C���&�&\u0005V�-�f\u000Ek�]\u0012\u000F)0�\"��\u001C��xx��\r\n�����9�g�MJW`�o�E��N�J\u0005F�&7(0�L�P`�o��\u0014\u0018���_\r\n��MIU`�o��^h��d\u0005F�����h��O\u0014\u0018�ku+0��zT�����q8���~\\�QW�S\u001C6�x�#Y�UP���p8���U��\u007F�6\u000EG0�w�S`\u0015\u00149�����9����[\u001C�f:��V`�y^\"�c\u0018?y�\r\n���5s8\u0016�c��T`\u0015���{�q�#\r\n��_�p\"�\u000F)0���{%3\u001F�_���\u0003��9�����R����=\u001C�p�\a\u0015�����d>���\u0002�\u000F����v���h\u0005F�\u0014�:�g���N�U����\u007F\u000EF�\v8?:.W�.\u0005f��?�e��\r\n��_�0�K�'\r\n��\r\nA\e��0��\u000F����\b\u000Fci�~\u000E7�\a���\u0015,\u0011���E��N\u001Cws\f\u0011G\u0006p}\u0001B�|��OR*��L��83�#s8>\u001Cc����-�\r\n|� _���h\r\n�\u0018�v\u0003���<���\r\nH���}W��^��\r\n�|L�\u0016lG9�\a��H�����\u0005�+��N�[Y\t��n�9�\u0018w��\u0016!\a��Q\u0006/����!��/M�o��_/��_��z�_ S�y��\u001E�\u001E�M/��1/l�1�����\"���\"n���e`v\u0010��p�\r\n���W\u00119f�E�����^�{�q�2\u000E�:\u0017R�q��\u0015j\u0005��I�%\u000F��x\u001AF������>��F9W���u+\u0011��}��y\u0018��1E\u000F^.\u0015���#�8��������ir���|u)�W?_%�eV�N����9��������\u0013�,l��9=�R���Zk��e;����*6\u001A���!M'�����)2�r^{�ft�|��i�r�,��8\u001F�B,F\u0019N����\b��������\u0001��n��p�sq����o�G�r\u001E\u0006��\t\u0010\u0011��h�Q���������\u0005Z\u0013y|�\u0016��O�mV#���q=9���E����e�\u0012�}z94����z�����h��i�,��n����D��/�o��e\u001D\r\n)�\u000E����2����d\u000F\u0017\\��n�[k'��V�P��<6���jU���<s���\t�k���w�B��|���%�����,]-�\u001C��=s��~)�aH���5.�\\/����#\\�2�\u0011.��g+��(�q�� ����NN����{�7�9r�s6�W���\u0003���s;:�}�J�c����G\u0016�\u000F��E�,��\eD���=��=<�\r\n�Yx@���X\u00068wc��#<���F�L?���G��=�m\u0006q���K\u0010���0��ha>��k�+��\u001Ab\u001A���\r\n��<ea�`�.�\u0001~e��(��r�\u001AYd�Y�N��=\v��r�\r\ns��-���\u001A�r�������~���{D!��=\u0005<k,��\u0002%�\u0014r�A�^���g\u0002�\u0017��`+�-G��\u001F�sgd�����;�rK����]Z0J�0�\e���\u001D���p�EO#�\u001El�\u0001G6b�nA��Do������[h\u0018/���\u0017O����\u0005�`X���\\f�r�������e���~c�_g�d\u0012�\\p+X�eg���ip�\u0019��� {��B���p�3U�0��\u001D�n,:w*���go�rr���-����F�\u0013���{A\u000E\\���H�S��\\��(r1��\u0016e�����~�J&���\u001F��\u0018��e\u0016������5%�%_��/��VbTD�9�}|���������s���\u007F�rF�g��\u0017l!�i��P��N��0��[�\"_������y|��}Y������c���.x_����.���{������\u001A����yz��������`6��cz\u0010W�A�p�3��s��|-��A%K����jX���l�����D������E��������@\u001A����V\u001D��\r\n����<e&����z����;�7��<�e�?KO�I�r�.>\u0017g�}����d\t��Y~�8����s��������\u0017w�Q�o�Jo!G.�$���3K��?��������%P���\"�K���o�%X�����bhR0�pv\t��(p9�C��UeP�o\u0014�0���Y�??\u0019g�\r\n?�����ml����q�\u000F�m�.��3����X��\u000E{�N��3$\u000E\u000F�\u0014��N��<H�����30�F|��!\\����(\u001F��\u0002�f`@�������\e\\>�w����=���-�Qq�g�9T�\u0019���^��9�MVnry}l���e�bN�����y����B^���q���n��;�}n�Cb����\u001Atz�����+��ums��.��Wt\u000F�~D�x�����6��Y\\��W :�zE���5��h\u0005s�PK�m^�p���!�X�u������n4H����\u001C\u001Ap�!\u000F^��3�'nr��=^q����\u001A��j�\u0016���}�\vc��=�\u0012����s{}~�9<�r*<2t�2�d�Q����^�h�5�\ev\u000E��yb\u001F�0����\u0017�~q��\u0013{]>��!Wo�(����8�\e���v� \u000F\u0003cb���3�\u0012=C.F�)b��\u001D����\u001Ed�7������F\u00068kb���u�Cj�\u0011\u0014m�{�9 �����QT�8�f\u0010G�z]��k!\e\u0019r{]=�\u0010�c��\t\u001A`N>�a�h\b�\u000E1��\u0019���v\u0011]��]C>�N\u0017\r\n�bVEh��a���vz\u0006v2K��xq��\t��in�^��9,���:}�k\u000F���D\u001E���\u0015�Qs�b\u000F�{���H#>����\u001Dv�G��WZ\a�C~7��-�\u0019=rLD?\u0015}�14mO�����H������#�}���aF��\u0011�19\\���\u0006\u0006��\u0003����\u0001�\u007F\f7\u001E\u0019\u001E@�Q��_����g\"/��1��\u0012w�\v\r\n9���������\f\r\n:�9�p\u000F�|�Wx]\u0018\u0001~�xd\u000F�����\"2d�����z���\u0001��<��������\u0005�~�pea���h����\u0002t��~��@����vd��o���\u000E���\"��M~����\u0001��|I���5�k�j���k\u0011�5�k��5�ll\u0010kVmhhhnhi3�\u0019�x��\u0005\f���\u0017��Pc���\bY.�\eEFm1�\e����=��<\u0015�.����\u0006y�9�\u0001T�\u0010�;�y].��\u0002�\u0003��;�X�n�\u00135��[�\f�i�\u0018����=Pvy4R\u001F�e�/�����%;)���:4���F\u0017A���\u0012�\v\u001CXa\r\n�dN\u0015s�\u0011v�;�\u0003#<�8}>�\u007F��\u0002�b�H���Y)P&%\u0013�\u0013:E�����.�E�E�\"��m|������\u0018�����<6������sL\r\n�\a���s<\u0016�>������A�(&���\u0001������du\u000F�K\"�h��1QvSEC�7��X�7/\u001C�BLv>�\r\n\u0006M��;�H�U����~�\b\u0006�����\a\r\n��/�����.�S%\u0016\u0019����\u0016n��(��1\u0013��p�wn����\u0005=���]��p\u001F���!\\��\u0006\u000F��e%��b��e�E%EEz��M8X�dII\t��K�������\r\nc�����\e��W������P\\������~4�\u0018�\u000F#�����w�<f\u001F��K\tQ�j�������\t�\vO\v�\t�b=q�5����\u0005��/�.|At�\v�\v_\u0010]����\u0017D\u0017� ��\u0005��/�.|At�\v�\v_\u0010]����\u0017D\u0017� �\u007F�\v������\u001F�\t���\u0016[��=|d�����b\u0015�.�����k�w���p\u0006i��c����b�Y:r�e\u0019���<�b\u0013���N�Z���N�3���Y����\u0004F�\r\nU����p�5\v�v~y\u0017a�,�*�rU��L�L%�V��T\u0015���7�|����c6~)��XMLsd\t��\u000F\u007F\u001E�I�co�\u0012ZY�K\"���\u0015g��f\u000E����\u007F�v����h\\��n\u000E���\b��s(4�\u0012&\e\u001A��)l\u001D\u0005�\r\n��\u0016��`RJ��*���w,\v\u000E�`\\2��`m�\u0002�-��I{~���0\u0015��X�\r\nT\u0004s4_5�SP����'�\f�\ba��g��\u0018�M8;i�.�j��_�\u0015\v��0\u0001�X(x��a\u0017\u0016���\u0005������&�\"����!�Xv\v�7c��������\u007F8\u0019\u001D���!h����\a�Jd`��P�Z\u0013#�\u0006�yQ�\u0019X�\"�\u0016�4l��6\u0015�\u001F\t/����|`�d.�������\vcx�X��\bW@1�\u000F\tWC2G�U0B��W�\u001C{qM���p\u0015G�\t;���\b\u0003��`�E<,<��J���z\u0003����9��i�]a;� �I�����\u0016��\u0010\v�djRo,�_\u0013.L��S�\u0016\v�H�n^K���H\b�{X�\r\nq8wT�\u0003��>\"\\\u0013��L\u001F\u0016>�hg\u0018\u0015����n)k&�\u0011��5z�>�\r\n\b\u007FB����vz���\u0018jl��P���R�F�m�K0�\a\b}�f��M�\u0001��\u0003��\u0003��\u001C�S8s\r\nq\r\n�7aXx\u0003�c�\ea\u0015�\u001C\v�\u0006\u000Fq 3����U�*���0�������\b��U��h�v�dxDq���k�\u000E\vE�_��O(�\u001C\u0016����\u007F2!�-�yP\u001F���R�\u0005.����ia�p\r\n��\u001E���3�%`\u0012��\u0017�&�#�w������z\u001F�cX>��B�6��\r\n�b\u0011\u0010�u2�Tl:,l���\u0004#�Z�\u0016V�����V\ac38��&\u0011X\u007FXhB'Y'�\u0004{-��� .f�-��*��\u000E\v-\\����*\u000F\a�\u00139�\u0018���S7\u0019\u0016�������.�\u000F;��\u0013��1��\u0016t�J.�R�\vb\u0002�e�\u0014a��#L����(t�^���]\f]X��\u0012��BC\u0016#z1\u001A�\u0018N�\u0011�P�2�A\b��\u0006,���P\u001C_\u0002�X�ay\u0016�\t,j>����x\u0011����~,\u0014)\u0016b�����\v�n,�`���\u0011\u0016-\u001C\u0015�q\u001F�[CEX��\u0012�r\\`�;�\u0011���<��U�\bgu�\u0016�E��*�.�Ev�]�.�.�.��H�T��W,]��\u0002V�`U��\u001F���\vEzI��\u0017�zQO��Qk+���B��T.�u�{��6\vQ��5���hM8\u001E\b��|�E����=3���u����U\u001FV\tG��7\u007F�,\u001C}���\u001F�)\u001C�?��a� 5'W\u0016���\u0005#��\u0014�j����\r\n\u001Ea��OPY�B�\u001A}A�e\u00186�6\b���[\r\n�� \u001A�~�=��a�p��\u000Eh�5�4'4\u001Fi���.��f�f��\u001E���-�Vk%����:�\u0006*�\u001E�\u0003X(��z?��|f\u001A�c������\u001E�}\t�V\u000EY�.b\u0010\u0016+��5���z?\u0016���V��X\u001F�\u0015S��pl\u0018��X(����Q�)eRs��I!�|�I�e������L:]SI_�\\��\\���|\u001DW���~\u001D�\"�������^C��8�k���s�ua=�!\t�V\u000EY�.b\u0010}-h-7�$����V���r\u001C���XWc���\tk\v\u0016J��Z�wNf�\u0015���w\u0006m�\f����4�I��dbR��\u001A\u0013�\u0013���d����DBw\"i����\u001D�z�{Gp��T.=^S��%c�\u000Ex\f\v�uX���B��9�\u0018�1��\u0003X���0������!�g�2�^E���\u000E�L�\r\n\u001C�B2P�c\u007Fs;*R\u00175E�\f��,S�@0�����\u0004YS\u0013M\u0005����]\u0002#�\u001E����-����&�`5��j������X\u0013F/�L\u001C������2)\"��N��G���3��e\u001A\u000F��!\u0003'���\f��2��+��D���\f��\u0019�-\u0019��\u0019��\u0019�T\u000E�O�4���+�N��E�g��-��\u0013���h�W4v��J\u0011�����4�o��6^�>Qb��\u0018SK�OR�\r\n�4h\u0002�aJ��`\u0014���*����\r\nM\u000F6ga�\u0012l��&9��\u0001��`�\u0017��`���\u001A=5�\t��Xh\u0004���6<h���\u0006��\u0005�_�F\u001D�WX��L�n�����Tl>\r\n��as&�W����y��7�Q$C�+��m$O��\u001CF��\u0001l�Ql��������;9�U$\v�� 1.�\u007F\u0004��\u001Cy(h�����=\u0013�����A�\u0005�{�}\u0005�|;�w36�\u001E�;�����\u0001F�\u000E��tn\a\eo}��d��\u0011lf\u0014�����x����l\u000FV���;Xu�-�F&\bz7�\u0003;��\u0019����VE�N���[��S^\u0015lf*idDj��A\u0011����\v\u001E�%\u0013��\u0014�\u0017!ZU�n�f���\u0015�>\a6��9�cR\u001E��6j�L� ���)��l0B���QD�\u0004�r�I\v�5`��V\"S���QP���\f�\u0019�9h\u0017-�\u0010\u0003�q�a`#w\u001E��E�\u007F��\"���O�)\u001D\tZ>�������n�\u001F���zky\u000F��������f\u0015����\e�I�\e}\u0019�\u001F�\u0011CJ��h/�\u001C��Y�r\u000E[&��,\u0013�X����X\u001F��=\e.\vZ\u001E���\u0004W����r��a��6�x�&\"_��@B{�c�kl{,#�\r\n��oX|�T�p�W,�����-n�\u0006K?\r\n�\r\n����Y���-]�����_�l,�24�q��T���}\e,��\u0001NT�\t�`9�e1.-(=�t\u0004��n�e���OQ<��n,^�@���jm��M[��N�6K��M����tf]�.\\\u0017���4:���@\a4f*tBr������Y�Q�Z�a3e5��@\u0001%:\r\n\u0017A Zh�M\ek\u0003���)mhC`��)�m��}��\u007F� M��\u001Eh�\u0016\u0003g6Z�H���\u0001���\u0004�����6\u0001�\u0003��)\u0002m�S$�V�Mf\u007F��\u0010\u0010����d�6����\u0003�vV'TGUEV4����R����?d�Hp8\u0016�R\u0003�6ml\u000F<��\u0011(f@(��)�����!:@/k�?D�����\u0010��\u0003\r\n\e�8���@��\u001C\r\n��vD�f� \u001A�\u0002U\f\r\n��,@#\u00138\\?QU%#�#\u0013\f\t�f\u001DG�,#�-D\u0012n u\u001C�N��#}[���|��\u0012k\u0010M=�v��]=��\u0012\u0018������l\fe���\b\u0013�b>�~~:G��Oy�?��\u0014!���6��\u001C��\u001Dl4\aq\u001C�\u0017?����\"2�r�P;���]�\u0006\u0017���\r\n;�\u0013\u0002��Eqbh���lm]�=��u�\u0002;������^�X�~��v6��Z?\u0001�\r\nm�\u0013���>�RZ�`u�wL��Y�c�^���k��s\u0010���-c{��8��\u000E6���������j�Z�^M\ejISk��\u000Ej;����$5�a�t%�w�����x�,OO�:�I\u0015�����\b�[k\u0003F,l*�&��MaH��\b�w�������'?I\u001ER��8\u001Ci�\u0005\u007FB��\u001E�������\au����N�'��\u0006>�\b~�����\b������\u001FF�?\u000E��\v>G]�DssC��>��-$v�vt����7t8��D���?�_�\r\n����h�]����4��\u001F�r������\u007F\f�\t���\t�U��NT\t����O ����<��0�\u007F,�D�P�p��� ���3����a\a��r���w�\u001CL�Y\u001D`��F�V�#��u\u000E���[��\a|��\b_\"����\u0017s��\u0006��\u001A�\r\nendstream\r\nendobj\r\n\r\n35 0 obj\r\n12584\r\nendobj\r\n\r\n36 0 obj\r\n<</Type/FontDescriptor/FontName/BAAAAA+TimesNewRomanPS-BoldMT\r\n/Flags 4\r\n/FontBBox[-558 -306 2032 1025]/ItalicAngle 0\r\n/Ascent 891\r\n/Descent -216\r\n/CapHeight 1025\r\n/StemV 80\r\n/FontFile2 34 0 R\r\n>>\r\nendobj\r\n\r\n37 0 obj\r\n<</Length 272/Filter/FlateDecode>>\r\nstream\r\nx�]��n� \u0014��<\u0005��b\":��I��������v\u001E��jI*\u0010��o_�N��\v�w���s ���V+��9#:�tPZ:���\u0004�\u001EF�I�Q���W���[�\u0004m��\u001E�V\u000F�,I�\u001Ez�w+�����@�W'�)=������[���\t���T\u0015�0�{��}�\u0013$���2��_�A�7��Z�\u0019��fE\u0018\t��\u0002\u001C�#�����MS\u0011��_/e��\u001F�'wa4\r\n��\u001D\u000FU�\f9/\"\u001F�3\u00169����G��\u0014��|m\"\u0017�����\e�#���<r�q���\u000E����?��X�\v���1oL�4���56�p}\u0003�2��\r\nendstream\r\nendobj\r\n\r\n38 0 obj\r\n<</Type/Font/Subtype/TrueType/BaseFont/BAAAAA+TimesNewRomanPS-BoldMT\r\n/FirstChar 0\r\n/LastChar 10\r\n/Widths[777 556 777 250 500 500 556 556 277 333 443 ]\r\n/FontDescriptor 36 0 R\r\n/ToUnicode 37 0 R\r\n>>\r\nendobj\r\n\r\n39 0 obj\r\n<</Length 40 0 R/Filter/FlateDecode/Length1 2924>>\r\nstream\r\nx��V��\u0013U\u0014?w�������]�\u000E\u0003\r\n�t\u001F] �,Pv�]�����T7��r�;�Nk\u001F\e�H@#�M$��\u0018E��D�����!!1\u001A�\u0003��\u0017n�bb��\u0017�b�\u0017#�g����&�\u0003N;���9�������+2X\r\n�A�@\"�e=��^_\u0002���d���?�D�\v�������m��\u0001\b�x�djj|�����\u001C/���\t�\u001D�voW��A�wM���[\u000F�Q~\f�-\u0013���s��\u0003��(W�2\tM�C\b�o��Jk��\u001E�\u0011\vpr�������?���5���L�����\u0001V5��l�e\e��x\u001F�\u000E���&`��\u001D\u0001qY���\v�<<\u0003�C/\\�8��\u000EP�\u000F�� �\u0010�N��\u0013�\r\n����&<\u0005/���*\\\u0004\u000EoA�N���\u0002l\u0010g�������Z\u000E\r\n��~~����&�\u001C�}\r\n�����[��qz����\u0006\u001F'\r\n���n�qA���!9.����\r\n�\a�U�\a�>�PLWI�N�?{g�^����7�^Y��&�wO�-C<�������|���7�����\u001D\u001D�r�0n���R\u0005\u0016TUJ]-����+\u0014z�L�\u0019��\\��+S������Zb%���\u0001�$��%K�T$3��Ju5�\u001A\t#�R��V;�\u0015���M�*�=r�v����X%��[cf���D{J��\\�%�J'��y������\u0001f\r\n�����g�A��t����N�X��]�d��\u0015����e��G�\u0012'q��\r\n��%��zK�f:T\\���k���\u000E��5\e0A�\u001D\r\n��M��\u001E^���Z�`\u0013���c�;\"���\u000E�\u001D����Q>��\ttv���5��k5�#��FTy\f��;��\u0011�\u0013O>\u0010Q��BW�s�P�\e�\t��5��Z�p�����3�Z\u0001�M\u0010�8Gp2���L��c�����/��7:�E\u0001!�ES�4��n�}\u007FwL\u0013S�^+�n�j��@�����&�#\u007F�\et��9\u0011��5���3������Q�����\u0016����f�]�!M��F6�w��\u001D���w�_�q��C��������@?�64�1.�\a����5e����~�<�Hu�������}�����/��\r\n�=��r�����SK(w�+A�\u001D��\u000F���2*�u6�v\f\u0001e\u0001��jq�w3y}!����\u0004V�Dl/7N�\r\n\u0016Q���\u001D�_��\u0013��<�`\u0017��\u0015�K\u0003\\�1�\u0015���\u0005��\e6\u0016�\u0006nZ�X�[6F>Ygc\u00016��6\u0016����t��D�66�Y\e\vp\u0017���\b��R���:���\tT�\u000Fm����l,B=���\u000E\\\u001A��66���X�:�mc\u0011\u001A�\r\nx2��\u0002�9a��\tx�v\e\v�V�����\u0011\e;\u0010�6v���I\e�P\u007F~[b;�������A\a�D.���\u0017X:O{�D����P$D��P�\u000E�c4��Fc����F��)�\u0019tH\ec����PW(��\u000E��E��HWW(\u0014\\�\t��I���\u0001-��\u0014�YfD��c�T�%�)-��XD�X.�g\f���o�/���R46��$sZvBO�n�\u0015�9�\u001F��\u0015`\u0013���+�Nc�\u0005Bw�H\u00140r�\u0016\u0016�<Z\\\u0012!�)\u0016X���\u0017����,��R�y���OL��\f��L���cL/0c�������\u0013\fmF�H��\u001C��2����\u0005^w�8��u\u001A���\u0018t�U��b��(��Y�\u0006��_��n���]\u0012=��4�\u001D��\u001A$�\u0005S\u000FK3f ]�fYJ?zlIM�\r\n'�v\u001C�~h��nDQ(��� �h�A\u0006�0�w\u0001\u0018�q��co��\u0019��18�!��Mq��q�\"\u001AB\u0014�=\u0004*r�\u0016^��\r\n_\u0014�N\u0011R��Y��@�1�\u0005�:lE��;hG��\u001F�]6G\u0014F�irM�ry�V�I+S\u000E�\u0003�)��\f�\r\nC��\u001F�\u000E��?��\bj�Vm\u001A��c,�;dE�c���O\e���\u0019��e[���n'����*�Ln���Y��U�j��s�r�������!O\u0004���=��>����\t�\u001F�^b\u001D\r\nendstream\r\nendobj\r\n\r\n40 0 obj\r\n1652\r\nendobj\r\n\r\n41 0 obj\r\n<</Type/FontDescriptor/FontName/DAAAAA+OpenSymbol\r\n/Flags 4\r\n/FontBBox[-179 -312 1082 916]/ItalicAngle 0\r\n/Ascent 799\r\n/Descent -200\r\n/CapHeight 916\r\n/StemV 80\r\n/FontFile2 39 0 R\r\n>>\r\nendobj\r\n\r\n42 0 obj\r\n<</Length 221/Filter/FlateDecode>>\r\nstream\r\nx�]�AO� \u0010����9�\u001E6���&f�&=�\u001A�?������L����)VM<@�x��7�k��Q�����1�\u0018�3.qe�0�\u0014H�\u0006|p�Pew�MJ\v�oK���16����-�78=�8�Y�;{�@\u0013�����~M�\u0013g�\f�j[�8�=O6=�\u0019u�.�\u0017;��\"�_�mK\b������\u001E�d\u001D��\tUSU-4�[���?� ��}X�d-IS\u0019S���N�c��\u0001�2K�2{��?\u001E\b\u007F�'��Se}\u0001~�my\r\nendstream\r\nendobj\r\n\r\n43 0 obj\r\n<</Type/Font/Subtype/TrueType/BaseFont/DAAAAA+OpenSymbol\r\n/FirstChar 0\r\n/LastChar 1\r\n/Widths[365 355 ]\r\n/FontDescriptor 41 0 R\r\n/ToUnicode 42 0 R\r\n>>\r\nendobj\r\n\r\n44 0 obj\r\n<</F1 38 0 R/F2 33 0 R/F3 43 0 R\r\n>>\r\nendobj\r\n\r\n45 0 obj\r\n<</Font 44 0 R\r\n/ProcSet[/PDF/Text]\r\n>>\r\nendobj\r\n\r\n1 0 obj\r\n<</Type/Page/Parent 28 0 R/Resources 45 0 R/MediaBox[0 0 595 842]/Annots[\r\n19 0 R 25 0 R 26 0 R 27 0 R ]\r\n/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 2 0 R>>\r\nendobj\r\n\r\n4 0 obj\r\n<</Type/Page/Parent 28 0 R/Resources 45 0 R/MediaBox[0 0 595 842]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 5 0 R>>\r\nendobj\r\n\r\n7 0 obj\r\n<</Type/Page/Parent 28 0 R/Resources 45 0 R/MediaBox[0 0 595 842]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 8 0 R>>\r\nendobj\r\n\r\n10 0 obj\r\n<</Type/Page/Parent 28 0 R/Resources 45 0 R/MediaBox[0 0 595 842]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 11 0 R>>\r\nendobj\r\n\r\n13 0 obj\r\n<</Type/Page/Parent 28 0 R/Resources 45 0 R/MediaBox[0 0 595 842]/Annots[\r\n20 0 R 21 0 R 22 0 R 23 0 R 24 0 R ]\r\n/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 14 0 R>>\r\nendobj\r\n\r\n16 0 obj\r\n<</Type/Page/Parent 28 0 R/Resources 45 0 R/MediaBox[0 0 595 842]/Group<</S/Transparency/CS/DeviceRGB/I true>>/Contents 17 0 R>>\r\nendobj\r\n\r\n28 0 obj\r\n<</Type/Pages\r\n/Resources 45 0 R\r\n/MediaBox[ 0 0 595 842 ]\r\n/Kids[ 1 0 R 4 0 R 7 0 R 10 0 R 13 0 R 16 0 R ]\r\n/Count 6>>\r\nendobj\r\n\r\n19 0 obj\r\n<</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[197.8 699 298.9 712.8]/A<</Type/Action/S/URI/URI(http://sg-joessnitz.de/)>>\r\n>>\r\nendobj\r\n\r\n20 0 obj\r\n<</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[74 145.7 216.1 159.5]/A<</Type/Action/S/URI/URI(http://www.dynamo-dresden.de/aktuelles.html)>>\r\n>>\r\nendobj\r\n\r\n21 0 obj\r\n<</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[410.9 159.5 539.4 174.5]/A<</Type/Action/S/URI/URI(http://www.dynamo-dresden.de/aktuelles.html)>>\r\n>>\r\nendobj\r\n\r\n22 0 obj\r\n<</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[176.5 467.8 221.4 481.6]/A<</Type/Action/S/URI/URI(http://www.sg-joessnitz.de/sgj/index.php?option=com_content&view=article&id=55&Itemid=385)>>\r\n>>\r\nendobj\r\n\r\n23 0 obj\r\n<</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[333.7 509.2 407.2 523]/A<</Type/Action/S/URI/URI(http://www.sg-joessnitz.de/sgj/index.php?option=com_content&view=article&id=55&Itemid=385)>>\r\n>>\r\nendobj\r\n\r\n24 0 obj\r\n<</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[176.5 481.6 407.2 509.2]/A<</Type/Action/S/URI/URI(http://www.sg-joessnitz.de/sgj/index.php?option=com_content&view=article&id=55&Itemid=385)>>\r\n>>\r\nendobj\r\n\r\n25 0 obj\r\n<</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[277.1 671.4 411.5 685.2]/A<</Type/Action/S/URI/URI(http://skell.sgj.webseiten.cc/)>>\r\n>>\r\nendobj\r\n\r\n26 0 obj\r\n<</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[287 685.2 388.1 699]/A<</Type/Action/S/URI/URI(http://sg-joessnitz.de/)>>\r\n>>\r\nendobj\r\n\r\n27 0 obj\r\n<</Type/Annot/Subtype/Link/Border[0 0 0]/Rect[197.8 685.2 260.3 699]/A<</Type/Action/S/URI/URI(http://sg-j.de/)>>\r\n>>\r\nendobj\r\n\r\n46 0 obj\r\n<</Type/Catalog/Pages 28 0 R\r\n/OpenAction[1 0 R /XYZ null null 0]\r\n/Lang(de-DE)\r\n>>\r\nendobj\r\n\r\n47 0 obj\r\n<</Author<FEFF005300740065007000680061006E0020004B0065006C006C00650072>\r\n/Creator<FEFF005700720069007400650072>\r\n/Producer<FEFF004C0069006200720065004F0066006600690063006500200033002E0035>\r\n/CreationDate(D:20131204231540+01'00')>>\r\nendobj\r\n\r\nxref\r\n0 48\r\n0000000000 65535 f \r\n0000062155 00000 n \r\n0000000019 00000 n \r\n0000001686 00000 n \r\n0000062338 00000 n \r\n0000001707 00000 n \r\n0000003294 00000 n \r\n0000062482 00000 n \r\n0000003315 00000 n \r\n0000005168 00000 n \r\n0000062626 00000 n \r\n0000005189 00000 n \r\n0000007556 00000 n \r\n0000062772 00000 n \r\n0000007578 00000 n \r\n0000010177 00000 n \r\n0000062964 00000 n \r\n0000010199 00000 n \r\n0000010583 00000 n \r\n0000063243 00000 n \r\n0000063385 00000 n \r\n0000063546 00000 n \r\n0000063710 00000 n \r\n0000063920 00000 n \r\n0000064128 00000 n \r\n0000064338 00000 n \r\n0000064489 00000 n \r\n0000064629 00000 n \r\n0000063110 00000 n \r\n0000010604 00000 n \r\n0000044845 00000 n \r\n0000044868 00000 n \r\n0000045069 00000 n \r\n0000045706 00000 n \r\n0000046191 00000 n \r\n0000058862 00000 n \r\n0000058885 00000 n \r\n0000059091 00000 n \r\n0000059433 00000 n \r\n0000059643 00000 n \r\n0000061381 00000 n \r\n0000061403 00000 n \r\n0000061595 00000 n \r\n0000061886 00000 n \r\n0000062047 00000 n \r\n0000062100 00000 n \r\n0000064763 00000 n \r\n0000064861 00000 n \r\ntrailer\r\n<</Size 48/Root 46 0 R\r\n/Info 47 0 R\r\n/ID [ <A2CD500624499F3CA1BD7C4884477B2C>\r\n<A2CD500624499F3CA1BD7C4884477B2C> ]\r\n/DocChecksum /9770C368EA0A5A502A739495D4B23AF1\r\n>>\r\nstartxref\r\n65106\r\n%%EOF\r\n", "fileUpload1"=>#<ActionDispatch::Http::UploadedFile:0x9ee3dac @original_filename="playercorefactory.xml", @content_type="text/xml", @headers="Content-Disposition: form-data; name=\"fileUpload1\"; filename=\"playercorefactory.xml\"\r\nContent-Type: text/xml\r\n", @tempfile=#<Tempfile:/tmp/RackMultipart20140410-12129-1o3vf42>>, "extTID"=>"5", "extAction"=>"ApplicationController", "extMethod"=>"action3", "extType"=>"rpc", "extUpload"=>"true"}
239
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
240
+ Rendered inline template (0.5ms)
241
+ Completed 200 OK in 24ms (Views: 1.3ms | ActiveRecord: 0.0ms)
504
242
 
505
243
 
506
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 20:49:47 +0200
507
- Served asset /application.js - 304 Not Modified (0ms)
244
+ Started POST "/extr/direct_router" for 127.0.0.1 at 2014-04-10 19:20:16 +0200
245
+ Reload config from extdirect.yml file
246
+ Processing by Extr::RouterController#direct as JSON
247
+ Parameters: {"authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "textArea"=>"", "fileUpload2"=>#<ActionDispatch::Http::UploadedFile:0x9e43438 @original_filename="passwort", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"fileUpload2\"; filename=\"passwort\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<Tempfile:/tmp/RackMultipart20140410-12129-dfydz4>>, "extTID"=>"6", "extAction"=>"ApplicationController", "extMethod"=>"action3", "extType"=>"rpc", "extUpload"=>"true"}
248
+ Processing by ApplicationController#action3 as JSON
249
+ Parameters: {"authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "textArea"=>"", "fileUpload2"=>#<ActionDispatch::Http::UploadedFile:0x9e43438 @original_filename="passwort", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"fileUpload2\"; filename=\"passwort\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<Tempfile:/tmp/RackMultipart20140410-12129-dfydz4>>, "extTID"=>"6", "extAction"=>"ApplicationController", "extMethod"=>"action3", "extType"=>"rpc", "extUpload"=>"true"}
250
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
251
+ Rendered inline template (0.4ms)
252
+ Completed 200 OK in 13ms (Views: 1.3ms | ActiveRecord: 0.0ms)
508
253
 
509
254
 
510
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:49:48 +0200
255
+ Started POST "/extr/direct_router" for 127.0.0.1 at 2014-04-10 19:20:33 +0200
256
+ Reload config from extdirect.yml file
511
257
  Processing by Extr::RouterController#direct as JSON
512
- Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
513
- Processing by ProfilsController#getBasicInfo as JSON
514
- Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
258
+ Parameters: {"authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "textArea"=>"", "fileUpload1"=>#<ActionDispatch::Http::UploadedFile:0xa5b4af0 @original_filename="passwort", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"fileUpload1\"; filename=\"passwort\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<Tempfile:/tmp/RackMultipart20140410-12129-1vuokgd>>, "extTID"=>"7", "extAction"=>"ApplicationController", "extMethod"=>"action3", "extType"=>"rpc", "extUpload"=>"true"}
259
+ Processing by ApplicationController#action3 as JSON
260
+ Parameters: {"authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "textArea"=>"", "fileUpload1"=>#<ActionDispatch::Http::UploadedFile:0xa5b4af0 @original_filename="passwort", @content_type="application/octet-stream", @headers="Content-Disposition: form-data; name=\"fileUpload1\"; filename=\"passwort\"\r\nContent-Type: application/octet-stream\r\n", @tempfile=#<Tempfile:/tmp/RackMultipart20140410-12129-1vuokgd>>, "extTID"=>"7", "extAction"=>"ApplicationController", "extMethod"=>"action3", "extType"=>"rpc", "extUpload"=>"true"}
515
261
  Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
516
- Processing by ProfilsController#getPhoneInfo as JSON
517
- Parameters: {"data"=>[{"uid"=>5}]}
518
- Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
519
- Completed 200 OK in 5ms (Views: 1.1ms | ActiveRecord: 0.0ms)
262
+ Rendered inline template (0.4ms)
263
+ Completed 200 OK in 12ms (Views: 1.2ms | ActiveRecord: 0.0ms)
520
264
 
521
265
 
522
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:49:48 +0200
266
+ Started POST "/extr/direct_router" for 127.0.0.1 at 2014-04-10 19:20:43 +0200
267
+ Reload config from extdirect.yml file
523
268
  Processing by Extr::RouterController#direct as JSON
524
- Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
525
- Processing by ProfilsController#getLocationInfo as JSON
526
- Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
527
- Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
528
- Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
269
+ Parameters: {"extTID"=>"8", "extAction"=>"Profil", "extMethod"=>"updateBasicInfo", "extType"=>"rpc", "extUpload"=>"false", "authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "foo"=>"bar", "uid"=>"34", "name"=>"fdsfdsfsdf", "email"=>"test@company.com", "company"=>"Test company"}
270
+ Processing by ProfilsController#updateBasicInfo as JSON
271
+ Parameters: {"extTID"=>"8", "extAction"=>"Profil", "extMethod"=>"updateBasicInfo", "extType"=>"rpc", "extUpload"=>"false", "authenticity_token"=>"axzRUhmleMauB4Jt9P0s2bgWnqEq6j/n2y91OO1asBU=", "foo"=>"bar", "uid"=>"34", "name"=>"fdsfdsfsdf", "email"=>"test@company.com", "company"=>"Test company"}
272
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
273
+ Completed 200 OK in 15ms (Views: 0.3ms | ActiveRecord: 0.0ms)
274
+ Reload config from extdirect.yml file
275
+ Reload config from extdirect.yml file
276
+ Reload config from extdirect.yml file
529
277
 
530
278
 
531
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:50:09 +0200
532
- Connecting to database specified by database.yml
533
- Processing by ProjectsController#rpcextjs410 as HTML
534
- Rendered projects/rpcextjs410.html.erb within layouts/application (9.1ms)
535
- Completed 200 OK in 70ms (Views: 69.3ms | ActiveRecord: 0.0ms)
279
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:17:59 +0200
280
+ Reload config from extdirect.yml file
536
281
 
282
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0xa45be4c>):
283
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
284
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
285
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
286
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
287
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
288
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
289
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
290
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
291
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
292
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
293
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
294
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
295
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
296
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
297
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
298
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
299
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
300
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
301
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
302
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
303
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
304
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
305
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
306
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
307
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
308
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
309
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
310
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
311
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
312
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
313
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
314
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
315
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
316
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
317
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
318
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
319
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
320
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
321
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
322
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
323
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
324
+
325
+
326
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.2ms)
327
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms)
328
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
329
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (34.4ms)
330
+
331
+
332
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:18:00 +0200
333
+ Reload config from extdirect.yml file
537
334
 
538
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:51:43 +0200
539
- Processing by ProjectsController#rpcextjs410 as HTML
540
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.5ms)
541
- Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
335
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0xa45be4c>):
336
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
337
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
338
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
339
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
340
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
341
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
342
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
343
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
344
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
345
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
346
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
347
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
348
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
349
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
350
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
351
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
352
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
353
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
354
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
355
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
356
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
357
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
358
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
359
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
360
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
361
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
362
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
363
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
364
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
365
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
366
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
367
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
368
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
369
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
370
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
371
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
372
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
373
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
374
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
375
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
376
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
377
+
378
+
379
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
380
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
381
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
382
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.0ms)
383
+ Reload config from extdirect.yml file
542
384
 
543
385
 
544
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 20:51:43 +0200
545
- Served asset /application.css - 304 Not Modified (21ms)
386
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:24:17 +0200
387
+ Reload config from extdirect.yml file
546
388
 
389
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0xa4480cc>):
390
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
391
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
392
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
393
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
394
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
395
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
396
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
397
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
398
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
399
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
400
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
401
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
402
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
403
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
404
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
405
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
406
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
407
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
408
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
409
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
410
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
411
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
412
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
413
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
414
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
415
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
416
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
417
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
418
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
419
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
420
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
421
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
422
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
423
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
424
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
425
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
426
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
427
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
428
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
429
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
430
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
431
+
432
+
433
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
434
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
435
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
436
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.4ms)
437
+
438
+
439
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:24:20 +0200
440
+ Reload config from extdirect.yml file
547
441
 
548
- Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 20:51:43 +0200
549
- Served asset /projects.css - 304 Not Modified (2ms)
442
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0xa4480cc>):
443
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
444
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
445
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
446
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
447
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
448
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
449
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
450
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
451
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
452
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
453
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
454
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
455
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
456
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
457
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
458
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
459
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
460
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
461
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
462
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
463
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
464
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
465
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
466
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
467
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
468
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
469
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
470
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
471
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
472
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
473
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
474
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
475
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
476
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
477
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
478
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
479
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
480
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
481
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
482
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
483
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
484
+
485
+
486
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
487
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
488
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
489
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.3ms)
490
+
491
+
492
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:24:21 +0200
493
+ Reload config from extdirect.yml file
550
494
 
495
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0xa4480cc>):
496
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
497
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
498
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
499
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
500
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
501
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
502
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
503
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
504
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
505
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
506
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
507
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
508
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
509
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
510
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
511
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
512
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
513
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
514
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
515
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
516
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
517
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
518
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
519
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
520
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
521
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
522
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
523
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
524
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
525
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
526
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
527
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
528
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
529
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
530
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
531
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
532
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
533
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
534
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
535
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
536
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
537
+
538
+
539
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
540
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
541
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms)
542
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.5ms)
543
+ Reload config from extdirect.yml file
551
544
 
552
- Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 20:51:43 +0200
553
- Served asset /profils.css - 304 Not Modified (2ms)
554
545
 
546
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:28:50 +0200
547
+ Reload config from extdirect.yml file
555
548
 
556
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 20:51:43 +0200
557
- Served asset /scaffold.css - 304 Not Modified (2ms)
549
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0x9e180f8>):
550
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
551
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
552
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
553
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
554
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
555
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
556
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
557
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
558
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
559
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
560
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
561
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
562
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
563
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
564
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
565
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
566
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
567
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
568
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
569
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
570
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
571
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
572
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
573
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
574
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
575
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
576
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
577
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
578
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
579
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
580
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
581
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
582
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
583
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
584
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
585
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
586
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
587
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
588
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
589
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
590
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
591
+
592
+
593
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.2ms)
594
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
595
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
596
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.5ms)
597
+
598
+
599
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:28:52 +0200
600
+ Reload config from extdirect.yml file
558
601
 
602
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0x9e180f8>):
603
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
604
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
605
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
606
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
607
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
608
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
609
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
610
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
611
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
612
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
613
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
614
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
615
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
616
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
617
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
618
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
619
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
620
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
621
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
622
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
623
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
624
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
625
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
626
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
627
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
628
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
629
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
630
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
631
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
632
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
633
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
634
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
635
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
636
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
637
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
638
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
639
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
640
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
641
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
642
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
643
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
644
+
645
+
646
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
647
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
648
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
649
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.1ms)
650
+
651
+
652
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:28:53 +0200
653
+ Reload config from extdirect.yml file
559
654
 
560
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 20:51:43 +0200
561
- Served asset /application.js - 304 Not Modified (3ms)
655
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0x9e180f8>):
656
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
657
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
658
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
659
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
660
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
661
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
662
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
663
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
664
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
665
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
666
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
667
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
668
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
669
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
670
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
671
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
672
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
673
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
674
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
675
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
676
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
677
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
678
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
679
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
680
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
681
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
682
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
683
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
684
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
685
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
686
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
687
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
688
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
689
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
690
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
691
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
692
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
693
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
694
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
695
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
696
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
697
+
698
+
699
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.2ms)
700
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
701
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
702
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.0ms)
703
+
704
+
705
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:28:53 +0200
706
+ Reload config from extdirect.yml file
562
707
 
708
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0x9e180f8>):
709
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
710
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
711
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
712
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
713
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
714
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
715
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
716
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
717
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
718
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
719
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
720
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
721
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
722
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
723
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
724
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
725
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
726
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
727
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
728
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
729
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
730
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
731
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
732
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
733
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
734
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
735
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
736
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
737
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
738
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
739
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
740
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
741
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
742
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
743
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
744
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
745
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
746
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
747
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
748
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
749
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
750
+
751
+
752
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
753
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
754
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms)
755
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (24.9ms)
756
+
757
+
758
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:28:54 +0200
759
+ Reload config from extdirect.yml file
563
760
 
564
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:51:44 +0200
565
- Processing by Extr::RouterController#direct as JSON
566
- Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
567
- Processing by ProfilsController#getBasicInfo as JSON
568
- Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
569
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
570
- Processing by ProfilsController#getPhoneInfo as JSON
571
- Parameters: {"data"=>[{"uid"=>5}]}
572
- Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
573
- Completed 200 OK in 20ms (Views: 0.8ms | ActiveRecord: 0.0ms)
761
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0x9e180f8>):
762
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
763
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
764
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
765
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
766
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
767
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
768
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
769
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
770
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
771
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
772
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
773
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
774
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
775
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
776
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
777
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
778
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
779
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
780
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
781
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
782
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
783
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
784
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
785
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
786
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
787
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
788
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
789
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
790
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
791
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
792
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
793
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
794
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
795
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
796
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
797
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
798
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
799
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
800
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
801
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
802
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
803
+
804
+
805
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
806
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
807
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
808
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.2ms)
809
+
810
+
811
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:28:54 +0200
812
+ Reload config from extdirect.yml file
574
813
 
814
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0x9e180f8>):
815
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
816
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
817
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
818
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
819
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
820
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
821
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
822
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
823
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
824
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
825
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
826
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
827
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
828
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
829
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
830
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
831
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
832
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
833
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
834
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
835
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
836
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
837
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
838
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
839
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
840
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
841
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
842
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
843
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
844
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
845
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
846
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
847
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
848
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
849
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
850
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
851
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
852
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
853
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
854
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
855
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
856
+
857
+
858
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
859
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
860
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms)
861
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (24.9ms)
862
+
863
+
864
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:28:55 +0200
865
+ Reload config from extdirect.yml file
575
866
 
576
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:51:44 +0200
577
- Processing by Extr::RouterController#direct as JSON
578
- Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
579
- Processing by ProfilsController#getLocationInfo as JSON
580
- Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
581
- Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
582
- Completed 200 OK in 6ms (Views: 0.9ms | ActiveRecord: 0.0ms)
867
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0x9e180f8>):
868
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
869
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
870
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
871
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
872
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
873
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
874
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
875
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
876
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
877
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
878
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
879
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
880
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
881
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
882
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
883
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
884
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
885
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
886
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
887
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
888
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
889
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
890
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
891
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
892
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
893
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
894
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
895
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
896
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
897
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
898
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
899
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
900
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
901
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
902
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
903
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
904
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
905
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
906
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
907
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
908
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
909
+
910
+
911
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.2ms)
912
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
913
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
914
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.1ms)
915
+
916
+
917
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:28:55 +0200
918
+ Reload config from extdirect.yml file
583
919
 
920
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0x9e180f8>):
921
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
922
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
923
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
924
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
925
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
926
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
927
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
928
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
929
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
930
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
931
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
932
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
933
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
934
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
935
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
936
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
937
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
938
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
939
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
940
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
941
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
942
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
943
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
944
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
945
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
946
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
947
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
948
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
949
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
950
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
951
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
952
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
953
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
954
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
955
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
956
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
957
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
958
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
959
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
960
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
961
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
962
+
963
+
964
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
965
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
966
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
967
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (24.4ms)
968
+ Reload config from extdirect.yml file
584
969
 
585
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:52:03 +0200
586
- Connecting to database specified by database.yml
587
- Processing by ProjectsController#rpcextjs410 as HTML
588
- Rendered projects/rpcextjs410.html.erb within layouts/application (9.4ms)
589
- Completed 200 OK in 72ms (Views: 71.3ms | ActiveRecord: 0.0ms)
590
970
 
971
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:38:48 +0200
972
+ Reload config from extdirect.yml file
591
973
 
592
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 20:52:04 +0200
593
- Served asset /application.css - 304 Not Modified (70ms)
974
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0x9c6b610>):
975
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
976
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
977
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
978
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
979
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
980
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
981
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
982
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
983
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
984
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
985
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
986
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
987
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
988
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
989
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
990
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
991
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
992
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
993
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
994
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
995
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
996
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
997
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
998
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
999
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1000
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
1001
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1002
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1003
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1004
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1005
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1006
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1007
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1008
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
1009
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
1010
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1011
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1012
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1013
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1014
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1015
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1016
+
1017
+
1018
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
1019
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
1020
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
1021
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.1ms)
1022
+ Reload config from extdirect.yml file
594
1023
 
595
1024
 
596
- Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 20:52:04 +0200
597
- Served asset /profils.css - 304 Not Modified (2ms)
1025
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:40:27 +0200
1026
+ Reload config from extdirect.yml file
598
1027
 
1028
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0x990717c>):
1029
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
1030
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
1031
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
1032
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
1033
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
1034
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
1035
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
1036
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
1037
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
1038
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
1039
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
1040
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
1041
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
1042
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1043
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
1044
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1045
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1046
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1047
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1048
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1049
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
1050
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
1051
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1052
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1053
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1054
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
1055
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1056
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1057
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1058
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1059
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1060
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1061
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1062
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
1063
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
1064
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1065
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1066
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1067
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1068
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1069
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1070
+
1071
+
1072
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
1073
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
1074
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
1075
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.3ms)
1076
+
1077
+
1078
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:40:29 +0200
1079
+ Reload config from extdirect.yml file
599
1080
 
600
- Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 20:52:04 +0200
601
- Served asset /projects.css - 304 Not Modified (3ms)
1081
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0x990717c>):
1082
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
1083
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
1084
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
1085
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
1086
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
1087
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
1088
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
1089
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
1090
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
1091
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
1092
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
1093
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
1094
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
1095
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1096
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
1097
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1098
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1099
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1100
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1101
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1102
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
1103
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
1104
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1105
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1106
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1107
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
1108
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1109
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1110
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1111
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1112
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1113
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1114
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1115
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
1116
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
1117
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1118
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1119
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1120
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1121
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1122
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1123
+
1124
+
1125
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
1126
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
1127
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
1128
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.1ms)
1129
+
1130
+
1131
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:40:30 +0200
1132
+ Reload config from extdirect.yml file
602
1133
 
1134
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0x990717c>):
1135
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
1136
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
1137
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
1138
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
1139
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
1140
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
1141
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
1142
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
1143
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
1144
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
1145
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
1146
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
1147
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
1148
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1149
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
1150
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1151
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1152
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1153
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1154
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1155
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
1156
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
1157
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1158
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1159
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1160
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
1161
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1162
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1163
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1164
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1165
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1166
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1167
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1168
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
1169
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
1170
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1171
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1172
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1173
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1174
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1175
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1176
+
1177
+
1178
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.2ms)
1179
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
1180
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms)
1181
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (28.2ms)
1182
+
1183
+
1184
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:40:31 +0200
1185
+ Reload config from extdirect.yml file
603
1186
 
604
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 20:52:04 +0200
605
- Served asset /scaffold.css - 304 Not Modified (5ms)
1187
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0x990717c>):
1188
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
1189
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
1190
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
1191
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
1192
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
1193
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
1194
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
1195
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
1196
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
1197
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
1198
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
1199
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
1200
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
1201
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1202
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
1203
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1204
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1205
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1206
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1207
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1208
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
1209
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
1210
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1211
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1212
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1213
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
1214
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1215
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1216
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1217
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1218
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1219
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1220
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1221
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
1222
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
1223
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1224
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1225
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1226
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1227
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1228
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1229
+
1230
+
1231
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
1232
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
1233
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
1234
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.4ms)
1235
+
1236
+
1237
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:40:31 +0200
1238
+ Reload config from extdirect.yml file
606
1239
 
1240
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0x990717c>):
1241
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
1242
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
1243
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
1244
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
1245
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
1246
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
1247
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
1248
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
1249
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
1250
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
1251
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
1252
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
1253
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
1254
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1255
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
1256
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1257
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1258
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1259
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1260
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1261
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
1262
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
1263
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1264
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1265
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1266
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
1267
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1268
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1269
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1270
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1271
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1272
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1273
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1274
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
1275
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
1276
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1277
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1278
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1279
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1280
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1281
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1282
+
1283
+
1284
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
1285
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
1286
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
1287
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.5ms)
1288
+
1289
+
1290
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:40:31 +0200
1291
+ Reload config from extdirect.yml file
607
1292
 
608
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 20:52:04 +0200
609
- Served asset /application.js - 304 Not Modified (4ms)
1293
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0x990717c>):
1294
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
1295
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
1296
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
1297
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
1298
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
1299
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
1300
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
1301
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
1302
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
1303
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
1304
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
1305
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
1306
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
1307
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1308
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
1309
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1310
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1311
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1312
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1313
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1314
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
1315
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
1316
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1317
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1318
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1319
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
1320
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1321
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1322
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1323
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1324
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1325
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1326
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1327
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
1328
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
1329
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1330
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1331
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1332
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1333
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1334
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1335
+
1336
+
1337
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
1338
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
1339
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
1340
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.1ms)
1341
+
1342
+
1343
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:40:32 +0200
1344
+ Reload config from extdirect.yml file
610
1345
 
1346
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0x990717c>):
1347
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
1348
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
1349
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
1350
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
1351
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
1352
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
1353
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
1354
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
1355
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
1356
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
1357
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
1358
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
1359
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
1360
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1361
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
1362
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1363
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1364
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1365
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1366
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1367
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
1368
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
1369
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1370
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1371
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1372
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
1373
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1374
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1375
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1376
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1377
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1378
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1379
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1380
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
1381
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
1382
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1383
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1384
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1385
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1386
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1387
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1388
+
1389
+
1390
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
1391
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
1392
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
1393
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.5ms)
1394
+ Reload config from extdirect.yml file
611
1395
 
612
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:52:05 +0200
613
- Processing by Extr::RouterController#direct as JSON
614
- Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
615
- Processing by ProfilsController#getBasicInfo as JSON
616
- Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
617
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
618
- Processing by ProfilsController#getPhoneInfo as JSON
619
- Parameters: {"data"=>[{"uid"=>5}]}
620
- Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
621
- Completed 200 OK in 20ms (Views: 0.8ms | ActiveRecord: 0.0ms)
622
1396
 
1397
+ Started GET "/" for 127.0.0.1 at 2014-04-11 18:43:05 +0200
1398
+ Reload config from extdirect.yml file
623
1399
 
624
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:52:05 +0200
625
- Processing by Extr::RouterController#direct as JSON
626
- Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
627
- Processing by ProfilsController#getLocationInfo as JSON
628
- Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
629
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
630
- Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.0ms)
631
-
632
-
633
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:52:26 +0200
634
- Processing by ProjectsController#rpcextjs410 as HTML
635
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.5ms)
636
- Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms)
637
-
638
-
639
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 20:52:26 +0200
640
- Served asset /application.css - 304 Not Modified (0ms)
641
-
642
-
643
- Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 20:52:26 +0200
644
- Served asset /profils.css - 304 Not Modified (0ms)
645
-
646
-
647
- Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 20:52:26 +0200
648
- Served asset /projects.css - 304 Not Modified (0ms)
649
-
650
-
651
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 20:52:26 +0200
652
- Served asset /scaffold.css - 304 Not Modified (0ms)
653
-
654
-
655
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 20:52:26 +0200
656
- Served asset /application.js - 304 Not Modified (0ms)
657
-
658
-
659
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:52:28 +0200
660
- Processing by Extr::RouterController#direct as JSON
661
- Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
662
- Processing by ProfilsController#getBasicInfo as JSON
663
- Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
664
- Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
665
- Processing by ProfilsController#getPhoneInfo as JSON
666
- Parameters: {"data"=>[{"uid"=>5}]}
667
- Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
668
- Completed 200 OK in 5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
669
-
670
-
671
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:52:28 +0200
672
- Processing by Extr::RouterController#direct as JSON
673
- Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
674
- Processing by ProfilsController#getLocationInfo as JSON
675
- Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
676
- Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
677
- Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
678
-
679
-
680
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:55:47 +0200
681
- Processing by ProjectsController#rpcextjs410 as HTML
682
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.2ms)
683
- Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
684
-
685
-
686
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 20:55:47 +0200
687
- Served asset /application.css - 304 Not Modified (0ms)
688
-
689
-
690
- Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 20:55:47 +0200
691
- Served asset /profils.css - 304 Not Modified (0ms)
692
-
693
-
694
- Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 20:55:47 +0200
695
- Served asset /projects.css - 304 Not Modified (0ms)
696
-
697
-
698
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 20:55:47 +0200
699
- Served asset /scaffold.css - 304 Not Modified (0ms)
700
-
701
-
702
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 20:55:47 +0200
703
- Served asset /application.js - 304 Not Modified (0ms)
704
-
705
-
706
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:55:48 +0200
707
- Processing by Extr::RouterController#direct as JSON
708
- Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
709
- Processing by ProfilsController#getBasicInfo as JSON
710
- Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
711
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
712
- Processing by ProfilsController#getPhoneInfo as JSON
713
- Parameters: {"data"=>[{"uid"=>5}]}
714
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
715
- Completed 200 OK in 43ms (Views: 1.1ms | ActiveRecord: 0.0ms)
716
-
717
-
718
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:55:48 +0200
719
- Processing by Extr::RouterController#direct as JSON
720
- Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
721
- Processing by ProfilsController#getLocationInfo as JSON
722
- Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
723
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
724
- Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.0ms)
725
-
726
-
727
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:58:27 +0200
728
- Connecting to database specified by database.yml
729
- Processing by ProjectsController#rpcextjs410 as HTML
730
- Rendered projects/rpcextjs410.html.erb within layouts/application (11.2ms)
731
- Completed 200 OK in 73ms (Views: 72.2ms | ActiveRecord: 0.0ms)
732
-
733
-
734
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 20:58:28 +0200
735
- Served asset /application.css - 304 Not Modified (6ms)
736
-
737
-
738
- Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 20:58:28 +0200
739
- Served asset /profils.css - 304 Not Modified (2ms)
740
-
741
-
742
- Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 20:58:28 +0200
743
- Served asset /projects.css - 304 Not Modified (2ms)
744
-
745
-
746
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 20:58:28 +0200
747
- Served asset /scaffold.css - 304 Not Modified (2ms)
748
-
749
-
750
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 20:58:28 +0200
751
- Served asset /application.js - 304 Not Modified (2ms)
752
-
753
-
754
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:58:29 +0200
755
- Processing by Extr::RouterController#direct as JSON
756
- Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
757
- Processing by ProfilsController#getBasicInfo as JSON
758
- Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
759
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
760
- Processing by ProfilsController#getPhoneInfo as JSON
761
- Parameters: {"data"=>[{"uid"=>5}]}
762
- Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
763
- Completed 200 OK in 27ms (Views: 0.8ms | ActiveRecord: 0.0ms)
764
-
765
-
766
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 20:58:29 +0200
767
- Processing by Extr::RouterController#direct as JSON
768
- Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
769
- Processing by ProfilsController#getLocationInfo as JSON
770
- Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
771
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
772
- Completed 200 OK in 53ms (Views: 0.5ms | ActiveRecord: 0.0ms)
773
-
774
-
775
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:03 +0200
776
- Processing by ProjectsController#rpcextjs410 as HTML
777
- Rendered projects/rpcextjs410.html.erb within layouts/application (20.8ms)
778
- Completed 200 OK in 27ms (Views: 26.6ms | ActiveRecord: 0.0ms)
779
-
780
-
781
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:05 +0200
782
- Processing by ProjectsController#rpcextjs410 as HTML
783
- Rendered projects/rpcextjs410.html.erb within layouts/application (22.5ms)
784
- Completed 200 OK in 29ms (Views: 28.3ms | ActiveRecord: 0.0ms)
785
-
786
-
787
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:07 +0200
788
- Processing by ProjectsController#rpcextjs410 as HTML
789
- Rendered projects/rpcextjs410.html.erb within layouts/application (66.1ms)
790
- Completed 200 OK in 73ms (Views: 72.4ms | ActiveRecord: 0.0ms)
791
-
792
-
793
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:08 +0200
794
- Processing by ProjectsController#rpcextjs410 as HTML
795
- Rendered projects/rpcextjs410.html.erb within layouts/application (29.0ms)
796
- Completed 200 OK in 36ms (Views: 35.0ms | ActiveRecord: 0.0ms)
797
-
798
-
799
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:09 +0200
800
- Processing by ProjectsController#rpcextjs410 as HTML
801
- Rendered projects/rpcextjs410.html.erb within layouts/application (28.2ms)
802
- Completed 200 OK in 34ms (Views: 33.9ms | ActiveRecord: 0.0ms)
803
-
804
-
805
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:10 +0200
806
- Processing by ProjectsController#rpcextjs410 as HTML
807
- Rendered projects/rpcextjs410.html.erb within layouts/application (72.9ms)
808
- Completed 200 OK in 79ms (Views: 79.0ms | ActiveRecord: 0.0ms)
809
-
810
-
811
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:11 +0200
812
- Processing by ProjectsController#rpcextjs410 as HTML
813
- Rendered projects/rpcextjs410.html.erb within layouts/application (32.0ms)
814
- Completed 200 OK in 38ms (Views: 37.8ms | ActiveRecord: 0.0ms)
815
-
816
-
817
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:12 +0200
818
- Processing by ProjectsController#rpcextjs410 as HTML
819
- Rendered projects/rpcextjs410.html.erb within layouts/application (34.2ms)
820
- Completed 200 OK in 41ms (Views: 40.1ms | ActiveRecord: 0.0ms)
821
-
822
-
823
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:12 +0200
824
- Processing by ProjectsController#rpcextjs410 as HTML
825
- Rendered projects/rpcextjs410.html.erb within layouts/application (36.8ms)
826
- Completed 200 OK in 43ms (Views: 42.9ms | ActiveRecord: 0.0ms)
827
-
828
-
829
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:13 +0200
830
- Processing by ProjectsController#rpcextjs410 as HTML
831
- Rendered projects/rpcextjs410.html.erb within layouts/application (38.0ms)
832
- Completed 200 OK in 44ms (Views: 43.8ms | ActiveRecord: 0.0ms)
833
-
834
-
835
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:14 +0200
836
- Processing by ProjectsController#rpcextjs410 as HTML
837
- Rendered projects/rpcextjs410.html.erb within layouts/application (39.9ms)
838
- Completed 200 OK in 46ms (Views: 45.6ms | ActiveRecord: 0.0ms)
839
-
840
-
841
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:14 +0200
842
- Processing by ProjectsController#rpcextjs410 as HTML
843
- Rendered projects/rpcextjs410.html.erb within layouts/application (42.3ms)
844
- Completed 200 OK in 49ms (Views: 48.0ms | ActiveRecord: 0.0ms)
845
-
846
-
847
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:15 +0200
848
- Processing by ProjectsController#rpcextjs410 as HTML
849
- Rendered projects/rpcextjs410.html.erb within layouts/application (43.4ms)
850
- Completed 200 OK in 50ms (Views: 49.1ms | ActiveRecord: 0.0ms)
851
-
852
-
853
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 20:59:15 +0200
854
- Processing by ProjectsController#rpcextjs410 as HTML
855
- Rendered projects/rpcextjs410.html.erb within layouts/application (88.2ms)
856
- Completed 200 OK in 95ms (Views: 94.0ms | ActiveRecord: 0.0ms)
857
-
858
-
859
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:00:16 +0200
860
- Processing by ProjectsController#rpcextjs410 as HTML
861
- Rendered projects/rpcextjs410.html.erb within layouts/application (47.3ms)
862
- Completed 200 OK in 54ms (Views: 53.2ms | ActiveRecord: 0.0ms)
863
-
864
-
865
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:00:43 +0200
866
- Processing by ProjectsController#rpcextjs410 as HTML
867
- Rendered projects/rpcextjs410.html.erb within layouts/application (49.5ms)
868
- Completed 200 OK in 101ms (Views: 100.9ms | ActiveRecord: 0.0ms)
869
-
870
-
871
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:01:01 +0200
872
- Connecting to database specified by database.yml
873
- Processing by ProjectsController#rpcextjs410 as HTML
874
- Rendered projects/rpcextjs410.html.erb within layouts/application (11.1ms)
875
- Completed 200 OK in 72ms (Views: 71.7ms | ActiveRecord: 0.0ms)
876
-
877
-
878
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:01:06 +0200
879
- Processing by ProjectsController#rpcextjs410 as HTML
880
- Rendered projects/rpcextjs410.html.erb within layouts/application (8.3ms)
881
- Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.0ms)
882
-
883
-
884
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:04:36 +0200
885
- Connecting to database specified by database.yml
886
- Processing by ProjectsController#rpcextjs410 as HTML
887
- Rendered projects/rpcextjs410.html.erb within layouts/application (9.3ms)
888
- Completed 200 OK in 71ms (Views: 70.0ms | ActiveRecord: 0.0ms)
889
-
890
-
891
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:04:52 +0200
892
- Processing by ProjectsController#rpcextjs410 as HTML
893
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.5ms)
894
- Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
895
-
896
-
897
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:05:05 +0200
898
- Processing by ProjectsController#rpcextjs410 as HTML
899
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.3ms)
900
- Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
901
-
902
-
903
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:05:06 +0200
904
- Processing by ProjectsController#rpcextjs410 as HTML
905
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
906
- Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
907
-
908
-
909
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:05:51 +0200
910
- Connecting to database specified by database.yml
911
- Processing by ProjectsController#rpcextjs410 as HTML
912
- Rendered projects/rpcextjs410.html.erb within layouts/application (9.4ms)
913
- Completed 200 OK in 70ms (Views: 69.5ms | ActiveRecord: 0.0ms)
914
-
915
-
916
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:12:06 +0200
917
- Connecting to database specified by database.yml
918
- Processing by ProjectsController#rpcextjs410 as HTML
919
- Rendered projects/rpcextjs410.html.erb within layouts/application (9.5ms)
920
- Compiled profils.css (0ms) (pid 3859)
921
- Compiled projects.css (0ms) (pid 3859)
922
- Compiled scaffold.css (0ms) (pid 3859)
923
- Compiled application.css (10ms) (pid 3859)
924
- Compiled application.js (0ms) (pid 3859)
925
- Completed 200 OK in 96ms (Views: 95.8ms | ActiveRecord: 0.0ms)
926
-
927
-
928
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 21:12:07 +0200
929
- Served asset /application.css - 304 Not Modified (6ms)
930
-
931
-
932
- Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 21:12:07 +0200
933
- Served asset /profils.css - 304 Not Modified (2ms)
934
-
935
-
936
- Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 21:12:07 +0200
937
- Served asset /projects.css - 304 Not Modified (42ms)
938
-
939
-
940
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 21:12:07 +0200
941
- Served asset /scaffold.css - 304 Not Modified (2ms)
942
-
943
-
944
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 21:12:07 +0200
945
- Served asset /application.js - 304 Not Modified (1ms)
946
-
947
-
948
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 21:12:08 +0200
949
- Processing by Extr::RouterController#direct as JSON
950
- Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
951
- Processing by ProfilsController#getBasicInfo as JSON
952
- Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
953
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
954
- Processing by ProfilsController#getPhoneInfo as JSON
955
- Parameters: {"data"=>[{"uid"=>5}]}
956
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
957
- Completed 200 OK in 26ms (Views: 0.8ms | ActiveRecord: 0.0ms)
958
-
959
-
960
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 21:12:08 +0200
961
- Processing by Extr::RouterController#direct as JSON
962
- Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
963
- Processing by ProfilsController#getLocationInfo as JSON
964
- Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
965
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
966
- Completed 200 OK in 54ms (Views: 0.5ms | ActiveRecord: 0.0ms)
967
-
968
-
969
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:12:12 +0200
970
- Processing by ProjectsController#rpcextjs410 as HTML
971
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
972
- Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
973
-
974
-
975
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:12:13 +0200
976
- Processing by ProjectsController#rpcextjs410 as HTML
977
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
978
- Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
979
-
980
-
981
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:12:14 +0200
982
- Processing by ProjectsController#rpcextjs410 as HTML
983
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
984
- Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
985
-
986
-
987
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:12:14 +0200
988
- Processing by ProjectsController#rpcextjs410 as HTML
989
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.8ms)
990
- Completed 200 OK in 50ms (Views: 49.2ms | ActiveRecord: 0.0ms)
991
-
992
-
993
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:12:14 +0200
994
- Processing by ProjectsController#rpcextjs410 as HTML
995
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
996
- Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
997
-
998
-
999
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:12:14 +0200
1000
- Processing by ProjectsController#rpcextjs410 as HTML
1001
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.6ms)
1002
- Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
1003
-
1004
-
1005
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:12:33 +0200
1006
-
1007
- NoMethodError (undefined method `each' for false:FalseClass):
1008
- /home/neo/Projekte/extr/lib/extr/engine.rb:11:in `block in <class:Engine>'
1009
- activesupport (3.2.11) lib/active_support/callbacks.rb:418:in `_run__782849328__prepare__380549324__callbacks'
1010
- activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
1011
- activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_prepare_callbacks'
1012
- activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
1013
- actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:74:in `prepare!'
1014
- actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1015
- actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1016
- actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1017
- actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1018
- railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
1019
- railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
1020
- activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
1021
- railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
1022
- actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1023
- rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
1024
- rack (1.4.4) lib/rack/runtime.rb:17:in `call'
1025
- activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1026
- rack (1.4.4) lib/rack/lock.rb:15:in `call'
1027
- actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
1028
- railties (3.2.11) lib/rails/engine.rb:479:in `call'
1029
- railties (3.2.11) lib/rails/application.rb:223:in `call'
1030
- rack (1.4.4) lib/rack/content_length.rb:14:in `call'
1031
- railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
1032
- rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
1033
- /home/neo/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1034
- /home/neo/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1035
- /home/neo/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1036
-
1037
-
1038
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
1039
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.8ms)
1040
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.0ms)
1041
-
1042
-
1043
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:12:52 +0200
1044
-
1045
- NoMethodError (undefined method `each' for false:FalseClass):
1046
- /home/neo/Projekte/extr/lib/extr/engine.rb:11:in `block in <class:Engine>'
1047
- activesupport (3.2.11) lib/active_support/callbacks.rb:418:in `_run__782849328__prepare__380549324__callbacks'
1048
- activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
1049
- activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_prepare_callbacks'
1050
- activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
1051
- actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:74:in `prepare!'
1052
- actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1053
- actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1054
- actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1055
- actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1056
- railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
1057
- railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
1058
- activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
1059
- railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
1060
- actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1061
- rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
1062
- rack (1.4.4) lib/rack/runtime.rb:17:in `call'
1063
- activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1064
- rack (1.4.4) lib/rack/lock.rb:15:in `call'
1065
- actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
1066
- railties (3.2.11) lib/rails/engine.rb:479:in `call'
1067
- railties (3.2.11) lib/rails/application.rb:223:in `call'
1068
- rack (1.4.4) lib/rack/content_length.rb:14:in `call'
1069
- railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
1070
- rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
1071
- /home/neo/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1072
- /home/neo/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1073
- /home/neo/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1074
-
1075
-
1076
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
1077
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
1078
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.2ms)
1079
- Check your extdirect.yml file
1080
-
1081
-
1082
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:19:43 +0200
1083
- Check your extdirect.yml file
1084
- Connecting to database specified by database.yml
1085
- Processing by ProjectsController#rpcextjs410 as HTML
1086
- Rendered projects/rpcextjs410.html.erb within layouts/application (6.4ms)
1087
- Completed 200 OK in 67ms (Views: 66.8ms | ActiveRecord: 0.0ms)
1088
-
1089
-
1090
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 21:19:44 +0200
1091
- Check your extdirect.yml file
1092
- Served asset /application.css - 304 Not Modified (81ms)
1093
-
1094
-
1095
- Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 21:19:44 +0200
1096
- Check your extdirect.yml file
1097
- Served asset /profils.css - 304 Not Modified (5ms)
1098
-
1099
-
1100
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 21:19:44 +0200
1101
- Check your extdirect.yml file
1102
- Served asset /scaffold.css - 304 Not Modified (3ms)
1103
-
1104
-
1105
- Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 21:19:44 +0200
1106
- Check your extdirect.yml file
1107
- Served asset /projects.css - 304 Not Modified (4ms)
1108
-
1109
-
1110
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 21:19:44 +0200
1111
- Check your extdirect.yml file
1112
- Served asset /application.js - 304 Not Modified (2ms)
1113
-
1114
-
1115
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:21:02 +0200
1116
- Processing by ProjectsController#rpcextjs410 as HTML
1117
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.8ms)
1118
- Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms)
1119
-
1120
-
1121
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 21:21:03 +0200
1122
- Served asset /application.css - 304 Not Modified (12ms)
1123
-
1124
-
1125
- Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 21:21:03 +0200
1126
- Served asset /profils.css - 304 Not Modified (0ms)
1127
-
1128
-
1129
- Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 21:21:03 +0200
1130
- Served asset /projects.css - 304 Not Modified (0ms)
1131
-
1132
-
1133
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 21:21:03 +0200
1134
- Served asset /scaffold.css - 304 Not Modified (0ms)
1135
-
1136
-
1137
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 21:21:03 +0200
1138
- Served asset /application.js - 304 Not Modified (1ms)
1139
-
1140
-
1141
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 21:21:04 +0200
1142
- Processing by Extr::RouterController#direct as JSON
1143
- Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
1144
- Processing by ProfilsController#getBasicInfo as JSON
1145
- Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
1146
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1147
- Processing by ProfilsController#getPhoneInfo as JSON
1148
- Parameters: {"data"=>[{"uid"=>5}]}
1149
- Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1150
- Completed 200 OK in 74ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1151
-
1152
-
1153
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 21:21:04 +0200
1154
- Processing by Extr::RouterController#direct as JSON
1155
- Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
1156
- Processing by ProfilsController#getLocationInfo as JSON
1157
- Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
1158
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1159
- Completed 200 OK in 17ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1160
-
1161
-
1162
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:21:42 +0200
1163
- Processing by ProjectsController#rpcextjs410 as HTML
1164
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
1165
- Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
1166
-
1167
-
1168
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:21:44 +0200
1169
- Processing by ProjectsController#rpcextjs410 as HTML
1170
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
1171
- Completed 200 OK in 48ms (Views: 47.6ms | ActiveRecord: 0.0ms)
1172
-
1173
-
1174
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:05 +0200
1175
- Connecting to database specified by database.yml
1176
- Processing by ProjectsController#rpcextjs410 as HTML
1177
- Rendered projects/rpcextjs410.html.erb within layouts/application (9.6ms)
1178
- Completed 200 OK in 70ms (Views: 69.5ms | ActiveRecord: 0.0ms)
1179
-
1180
-
1181
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 21:22:06 +0200
1182
- Served asset /application.css - 304 Not Modified (10ms)
1183
-
1184
-
1185
- Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 21:22:06 +0200
1186
- Served asset /profils.css - 304 Not Modified (2ms)
1187
-
1188
-
1189
- Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 21:22:06 +0200
1190
- Served asset /projects.css - 304 Not Modified (2ms)
1191
-
1192
-
1193
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 21:22:06 +0200
1194
- Served asset /application.js - 304 Not Modified (2ms)
1195
-
1196
-
1197
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 21:22:06 +0200
1198
- Served asset /scaffold.css - 304 Not Modified (2ms)
1199
-
1200
-
1201
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 21:22:07 +0200
1202
- Processing by Extr::RouterController#direct as JSON
1203
- Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
1204
- Processing by ProfilsController#getBasicInfo as JSON
1205
- Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
1206
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1207
- Processing by ProfilsController#getPhoneInfo as JSON
1208
- Parameters: {"data"=>[{"uid"=>5}]}
1209
- Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1210
- Completed 200 OK in 20ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1211
-
1212
-
1213
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 21:22:08 +0200
1214
- Processing by Extr::RouterController#direct as JSON
1215
- Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
1216
- Processing by ProfilsController#getLocationInfo as JSON
1217
- Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
1218
- Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1219
- Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1220
-
1221
-
1222
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:10 +0200
1223
- Processing by ProjectsController#rpcextjs410 as HTML
1224
- Rendered projects/rpcextjs410.html.erb within layouts/application (5.0ms)
1225
- Completed 200 OK in 11ms (Views: 11.2ms | ActiveRecord: 0.0ms)
1226
-
1227
-
1228
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-12 21:22:11 +0200
1229
- Served asset /application.css - 304 Not Modified (1ms)
1230
-
1231
-
1232
- Started GET "/assets/profils.css?body=1" for 127.0.0.1 at 2013-05-12 21:22:11 +0200
1233
- Served asset /profils.css - 304 Not Modified (0ms)
1234
-
1235
-
1236
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-12 21:22:11 +0200
1237
- Served asset /application.js - 304 Not Modified (2ms)
1238
-
1239
-
1240
- Started GET "/assets/projects.css?body=1" for 127.0.0.1 at 2013-05-12 21:22:11 +0200
1241
- Served asset /projects.css - 304 Not Modified (0ms)
1242
-
1243
-
1244
- Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-05-12 21:22:11 +0200
1245
- Served asset /scaffold.css - 304 Not Modified (1ms)
1246
-
1247
-
1248
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 21:22:12 +0200
1249
- Processing by Extr::RouterController#direct as JSON
1250
- Parameters: {"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}], "router"=>{"_json"=>[{"action"=>"Profil", "method"=>"getBasicInfo", "data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "type"=>"rpc", "tid"=>1}, {"action"=>"Profil", "method"=>"getPhoneInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>2}]}}
1251
- Processing by ProfilsController#getBasicInfo as JSON
1252
- Parameters: {"data"=>[{"authenticity_token"=>"yzxCjDLsNCp1Y2GPstif2YM9phNnUteOZNxB3Vlu+/Y=", "foo"=>"bar", "uid"=>34}], "profil"=>{}}
1253
- Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1254
- Processing by ProfilsController#getPhoneInfo as JSON
1255
- Parameters: {"data"=>[{"uid"=>5}]}
1256
- Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1257
- Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1258
-
1259
-
1260
- Started POST "/extr/direct_router" for 127.0.0.1 at 2013-05-12 21:22:12 +0200
1261
- Processing by Extr::RouterController#direct as JSON
1262
- Parameters: {"method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3, "router"=>{"action"=>"direct", "method"=>"getLocationInfo", "data"=>[{"uid"=>5}], "type"=>"rpc", "tid"=>3}}
1263
- Processing by ProfilsController#getLocationInfo as JSON
1264
- Parameters: {"data"=>[{"uid"=>5}], "profil"=>{"data"=>[{"uid"=>5}]}}
1265
- Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1266
- Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1267
-
1268
-
1269
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:13 +0200
1270
- Processing by ProjectsController#rpcextjs410 as HTML
1271
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
1272
- Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
1273
-
1274
-
1275
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:15 +0200
1276
- Processing by ProjectsController#rpcextjs410 as HTML
1277
- Rendered projects/rpcextjs410.html.erb within layouts/application (42.7ms)
1278
- Completed 200 OK in 49ms (Views: 48.5ms | ActiveRecord: 0.0ms)
1279
-
1280
-
1281
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:28 +0200
1282
- Processing by ProjectsController#rpcextjs410 as HTML
1283
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.5ms)
1284
- Completed 200 OK in 10ms (Views: 10.2ms | ActiveRecord: 0.0ms)
1285
-
1286
-
1287
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:30 +0200
1288
- Processing by ProjectsController#rpcextjs410 as HTML
1289
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.7ms)
1290
- Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)
1291
-
1292
-
1293
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:31 +0200
1294
- Processing by ProjectsController#rpcextjs410 as HTML
1295
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.6ms)
1296
- Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
1297
-
1298
-
1299
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:31 +0200
1300
- Processing by ProjectsController#rpcextjs410 as HTML
1301
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.5ms)
1302
- Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
1303
-
1304
-
1305
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:55 +0200
1306
- Processing by ProjectsController#rpcextjs410 as HTML
1307
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.6ms)
1308
- Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)
1309
-
1310
-
1311
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:57 +0200
1312
- Processing by ProjectsController#rpcextjs410 as HTML
1313
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.5ms)
1314
- Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
1315
-
1316
-
1317
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:22:57 +0200
1318
- Processing by ProjectsController#rpcextjs410 as HTML
1319
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.6ms)
1320
- Completed 200 OK in 10ms (Views: 10.2ms | ActiveRecord: 0.0ms)
1321
-
1322
-
1323
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:23:08 +0200
1324
- Connecting to database specified by database.yml
1325
- Processing by ProjectsController#rpcextjs410 as HTML
1326
- Rendered projects/rpcextjs410.html.erb within layouts/application (9.5ms)
1327
- Completed 200 OK in 70ms (Views: 69.5ms | ActiveRecord: 0.0ms)
1328
-
1329
-
1330
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:23:11 +0200
1331
- Processing by ProjectsController#rpcextjs410 as HTML
1332
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.5ms)
1333
- Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
1334
-
1335
-
1336
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:23:12 +0200
1337
- Processing by ProjectsController#rpcextjs410 as HTML
1338
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
1339
- Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
1340
-
1341
-
1342
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:23:21 +0200
1343
- Processing by ProjectsController#rpcextjs410 as HTML
1344
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
1345
- Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
1346
-
1347
-
1348
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:25:48 +0200
1349
- Connecting to database specified by database.yml
1350
- Processing by ProjectsController#rpcextjs410 as HTML
1351
- Rendered projects/rpcextjs410.html.erb within layouts/application (9.4ms)
1352
- Completed 200 OK in 70ms (Views: 69.5ms | ActiveRecord: 0.0ms)
1353
-
1354
-
1355
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:26:01 +0200
1356
- Processing by ProjectsController#rpcextjs410 as HTML
1357
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.9ms)
1358
- Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
1359
-
1360
-
1361
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:26:04 +0200
1362
- Processing by ProjectsController#rpcextjs410 as HTML
1363
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
1364
- Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
1365
-
1366
-
1367
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:26:05 +0200
1368
- Processing by ProjectsController#rpcextjs410 as HTML
1369
- Rendered projects/rpcextjs410.html.erb within layouts/application (38.1ms)
1370
- Completed 200 OK in 44ms (Views: 43.5ms | ActiveRecord: 0.0ms)
1371
-
1372
-
1373
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:26:06 +0200
1374
- Processing by ProjectsController#rpcextjs410 as HTML
1375
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
1376
- Completed 200 OK in 10ms (Views: 10.2ms | ActiveRecord: 0.0ms)
1377
-
1378
-
1379
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:26:19 +0200
1380
- Processing by ProjectsController#rpcextjs410 as HTML
1381
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.9ms)
1382
- Completed 200 OK in 10ms (Views: 10.2ms | ActiveRecord: 0.0ms)
1383
-
1384
-
1385
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:26:20 +0200
1386
- Processing by ProjectsController#rpcextjs410 as HTML
1387
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.8ms)
1388
- Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)
1389
-
1390
-
1391
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:26:23 +0200
1392
- Processing by ProjectsController#rpcextjs410 as HTML
1393
- Rendered projects/rpcextjs410.html.erb within layouts/application (8.5ms)
1394
- Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.0ms)
1395
-
1396
-
1397
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:26:44 +0200
1398
- Connecting to database specified by database.yml
1399
- Processing by ProjectsController#rpcextjs410 as HTML
1400
- Rendered projects/rpcextjs410.html.erb within layouts/application (9.3ms)
1401
- Completed 200 OK in 70ms (Views: 69.7ms | ActiveRecord: 0.0ms)
1402
-
1403
-
1404
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:26:57 +0200
1405
- Processing by ProjectsController#rpcextjs410 as HTML
1406
- Rendered projects/rpcextjs410.html.erb within layouts/application (5.8ms)
1407
- Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms)
1408
-
1409
-
1410
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:27:00 +0200
1411
- Processing by ProjectsController#rpcextjs410 as HTML
1412
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.5ms)
1413
- Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
1414
-
1415
-
1416
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:27:01 +0200
1417
- Processing by ProjectsController#rpcextjs410 as HTML
1418
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.6ms)
1419
- Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
1420
-
1421
-
1422
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:27:02 +0200
1423
- Processing by ProjectsController#rpcextjs410 as HTML
1424
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
1425
- Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
1426
-
1427
-
1428
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:39:06 +0200
1429
- Connecting to database specified by database.yml
1430
- Processing by ProjectsController#rpcextjs410 as HTML
1431
- Rendered projects/rpcextjs410.html.erb within layouts/application (9.9ms)
1432
- Completed 200 OK in 70ms (Views: 69.0ms | ActiveRecord: 0.0ms)
1433
-
1434
-
1435
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:39:09 +0200
1436
- Processing by ProjectsController#rpcextjs410 as HTML
1437
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.7ms)
1438
- Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)
1439
-
1440
-
1441
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:39:18 +0200
1442
- Processing by ProjectsController#rpcextjs410 as HTML
1443
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
1444
- Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.0ms)
1445
-
1446
-
1447
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:39:19 +0200
1448
- Processing by ProjectsController#rpcextjs410 as HTML
1449
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
1450
- Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
1451
-
1452
-
1453
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:39:20 +0200
1454
- Processing by ProjectsController#rpcextjs410 as HTML
1455
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
1456
- Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
1457
-
1458
-
1459
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:39:21 +0200
1460
- Processing by ProjectsController#rpcextjs410 as HTML
1461
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
1462
- Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.0ms)
1463
-
1464
-
1465
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:39:21 +0200
1466
- Processing by ProjectsController#rpcextjs410 as HTML
1467
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
1468
- Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.0ms)
1469
-
1470
-
1471
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:39:22 +0200
1472
- Processing by ProjectsController#rpcextjs410 as HTML
1473
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
1474
- Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
1475
-
1476
-
1477
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:39:23 +0200
1478
- Processing by ProjectsController#rpcextjs410 as HTML
1479
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
1480
- Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.0ms)
1481
-
1482
-
1483
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:42:32 +0200
1484
- Connecting to database specified by database.yml
1485
- Processing by ProjectsController#rpcextjs410 as HTML
1486
- Rendered projects/rpcextjs410.html.erb within layouts/application (11.4ms)
1487
- Completed 200 OK in 71ms (Views: 70.8ms | ActiveRecord: 0.0ms)
1488
-
1489
-
1490
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:42:37 +0200
1491
- Processing by ProjectsController#rpcextjs410 as HTML
1492
- Rendered projects/rpcextjs410.html.erb within layouts/application (8.6ms)
1493
- Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.0ms)
1494
-
1495
-
1496
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:42:39 +0200
1497
- Processing by ProjectsController#rpcextjs410 as HTML
1498
- Rendered projects/rpcextjs410.html.erb within layouts/application (10.5ms)
1499
- Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
1500
-
1501
-
1502
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:42:40 +0200
1503
- Processing by ProjectsController#rpcextjs410 as HTML
1504
- Rendered projects/rpcextjs410.html.erb within layouts/application (12.9ms)
1505
- Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.0ms)
1506
-
1507
-
1508
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:44:08 +0200
1509
- Connecting to database specified by database.yml
1510
- Processing by ProjectsController#rpcextjs410 as HTML
1511
- Rendered projects/rpcextjs410.html.erb within layouts/application (11.6ms)
1512
- Completed 200 OK in 72ms (Views: 71.6ms | ActiveRecord: 0.0ms)
1513
-
1514
-
1515
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:44:15 +0200
1516
- Processing by ProjectsController#rpcextjs410 as HTML
1517
- Rendered projects/rpcextjs410.html.erb within layouts/application (8.5ms)
1518
- Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.0ms)
1519
-
1520
-
1521
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:44:17 +0200
1522
- Processing by ProjectsController#rpcextjs410 as HTML
1523
- Rendered projects/rpcextjs410.html.erb within layouts/application (10.5ms)
1524
- Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.0ms)
1525
-
1526
-
1527
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:44:18 +0200
1528
- Processing by ProjectsController#rpcextjs410 as HTML
1529
- Rendered projects/rpcextjs410.html.erb within layouts/application (12.5ms)
1530
- Completed 200 OK in 19ms (Views: 18.5ms | ActiveRecord: 0.0ms)
1531
-
1532
-
1533
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:49:38 +0200
1534
- Processing by ProjectsController#rpcextjs410 as HTML
1535
- Rendered projects/rpcextjs410.html.erb within layouts/application (53.9ms)
1536
- Completed 200 OK in 61ms (Views: 60.0ms | ActiveRecord: 0.0ms)
1537
-
1538
-
1539
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:49:53 +0200
1540
- Connecting to database specified by database.yml
1541
- Processing by ProjectsController#rpcextjs410 as HTML
1542
- Rendered projects/rpcextjs410.html.erb within layouts/application (9.3ms)
1543
- Completed 200 OK in 70ms (Views: 69.7ms | ActiveRecord: 0.0ms)
1544
-
1545
-
1546
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:49:58 +0200
1547
- Processing by ProjectsController#rpcextjs410 as HTML
1548
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.5ms)
1549
- Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
1550
-
1551
-
1552
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:49:59 +0200
1553
- Processing by ProjectsController#rpcextjs410 as HTML
1554
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
1555
- Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
1556
- Check your extdirect.yml file
1557
-
1558
-
1559
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:53:01 +0200
1560
- Check your extdirect.yml file
1561
- Connecting to database specified by database.yml
1562
- Processing by ProjectsController#rpcextjs410 as HTML
1563
- Rendered projects/rpcextjs410.html.erb within layouts/application (42.6ms)
1564
- Completed 500 Internal Server Error in 91ms
1565
-
1566
- ActionView::Template::Error (undefined method `each' for nil:NilClass):
1567
- 2:
1568
- 3: <%= stylesheet_link_tag "http://cdn.sencha.io/ext-4.1.0-gpl/resources/css/ext-all.css" %>
1569
- 4: <%= javascript_include_tag "http://cdn.sencha.io/ext-4.1.0-gpl/ext-all.js" %>
1570
- 5: <%= ext_direct_provider %>
1571
- 6:
1572
- 7: <% end %>
1573
- 8:
1574
- app/views/projects/rpcextjs410.html.erb:5:in `block in _app_views_projects_rpcextjs____html_erb__1020544586_88785170'
1575
- app/views/projects/rpcextjs410.html.erb:1:in `_app_views_projects_rpcextjs____html_erb__1020544586_88785170'
1576
-
1577
-
1578
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.3ms)
1579
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
1580
- Rendered /home/neo/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (18.3ms)
1581
-
1582
-
1583
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:57:45 +0200
1584
- Connecting to database specified by database.yml
1585
- Processing by ProjectsController#rpcextjs410 as HTML
1586
- Rendered projects/rpcextjs410.html.erb within layouts/application (10.1ms)
1587
- Completed 200 OK in 72ms (Views: 71.3ms | ActiveRecord: 0.0ms)
1588
-
1589
-
1590
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:57:50 +0200
1591
- Processing by ProjectsController#rpcextjs410 as HTML
1592
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.4ms)
1593
- Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
1594
-
1595
-
1596
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:59:37 +0200
1597
- Processing by ProjectsController#rpcextjs410 as HTML
1598
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.6ms)
1599
- Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
1600
- Reload config from extdirect.yml file
1601
-
1602
-
1603
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 21:59:50 +0200
1604
- Reload config from extdirect.yml file
1605
- Connecting to database specified by database.yml
1606
- Processing by ProjectsController#rpcextjs410 as HTML
1607
- Rendered projects/rpcextjs410.html.erb within layouts/application (9.4ms)
1608
- Completed 200 OK in 70ms (Views: 69.2ms | ActiveRecord: 0.0ms)
1609
-
1610
-
1611
- Started GET "/projects/rpcextjs410" for 127.0.0.1 at 2013-05-12 22:00:03 +0200
1612
- Reload config from extdirect.yml file
1613
- Processing by ProjectsController#rpcextjs410 as HTML
1614
- Rendered projects/rpcextjs410.html.erb within layouts/application (4.7ms)
1615
- Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
1400
+ NoMethodError (undefined method `whitelist_attributes=' for #<Class:0xa6b7d30>):
1401
+ activerecord (4.1.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing'
1402
+ activerecord (4.1.0) lib/active_record/railtie.rb:110:in `block (3 levels) in <class:Railtie>'
1403
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `each'
1404
+ activerecord (4.1.0) lib/active_record/railtie.rb:109:in `block (2 levels) in <class:Railtie>'
1405
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
1406
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
1407
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
1408
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `each'
1409
+ activesupport (4.1.0) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
1410
+ activerecord (4.1.0) lib/active_record/base.rb:326:in `<module:ActiveRecord>'
1411
+ activerecord (4.1.0) lib/active_record/base.rb:23:in `<top (required)>'
1412
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:628:in `rescue in call'
1413
+ activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:619:in `call'
1414
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1415
+ activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
1416
+ actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1417
+ actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1418
+ actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1419
+ actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1420
+ actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1421
+ railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
1422
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
1423
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1424
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1425
+ activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1426
+ railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
1427
+ actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1428
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1429
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1430
+ activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1431
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1432
+ actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1433
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1434
+ railties (4.1.0) lib/rails/engine.rb:514:in `call'
1435
+ railties (4.1.0) lib/rails/application.rb:144:in `call'
1436
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1437
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1438
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1439
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1440
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1441
+ /home/neo/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1442
+
1443
+
1444
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
1445
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
1446
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms)
1447
+ Rendered /home/neo/.rvm/gems/ruby-2.0.0-p247/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.1ms)