ban 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ Yjc1YjBmYzk5YTJkMzczMzEyZTNjZTE3MGExNjNhNDg3NGJmMTEyNg==
5
+ data.tar.gz: !binary |-
6
+ ZTg0MzMwZGNjOGI0M2I1NjYzOGUxOTY0YjFmMzgzYmI2NzZmZmRmNw==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ YmIzODg4ZTMyNTI3NmRhNDY5NmUxMWI4YWJlYTllOGFlNDdhM2ZkNTU0MTA2
10
+ MWM4MzczYTJjNDk3YWU0M2M0NWM0N2QxZGM0NTY3YzgxNTcxNWY3YmQ0MDFh
11
+ YTBhMzY2YjEzNjE2NjEzNmRjYTEyYzQyN2MxMjQxNTAzZmRkZTU=
12
+ data.tar.gz: !binary |-
13
+ MzNlZjlmZGIxYWUwNDA4MzMxYzE5MTE2ZmQ4Njc0YzljZjliNjU2MmRjZGQz
14
+ OTAyMTQzZGEzNDAwYTE3M2FlMDY3ZTJkZDEzYjhkMzJlMTBmN2NjNmIzODM3
15
+ OWM3MTdiZTM5NWJjNTlmYzcyYjQyMjlmZGJlMWZjMzllYTYyZWM=
data/.gitignore ADDED
@@ -0,0 +1,18 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ lib/bundler/man
11
+ pkg
12
+ rdoc
13
+ spec/reports
14
+ test/tmp
15
+ test/version_tmp
16
+ tmp
17
+ .build
18
+ .ruby-gemset
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-1.9.3
data/.travis.yml ADDED
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ban.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Vincent Landgraf
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,99 @@
1
+ # Ban
2
+
3
+ Ban is a arduino firmware (based on firmata) that receives incoming remote control switch commands, infrared commands, door open/close signaling and can send out remote control commands also. Ban distributes all this information over a websocket. The Websocket protocol is described below:
4
+
5
+ ## The Arduino Layout
6
+
7
+ ![Laoyut](https://raw.github.com/threez/ban/master/doc/ban-layout.png)
8
+
9
+ ## Websocket Protocol
10
+
11
+ Basically the protocol has no authentication and is based on JSON.
12
+
13
+ ### Send messages
14
+
15
+ The following commands and there json representation are send by the ban server to all clients:
16
+
17
+ #### rc-turned-on
18
+
19
+ { 'rc-turned-on': { 'decimal': 21780,
20
+ 'bits': 24,
21
+ 'binary': '000000000101010100010100',
22
+ 'tristate': '0000FFFF0FF0',
23
+ 'delay': 322,
24
+ 'protocol': 1 } }
25
+
26
+ #### rc-turned-off
27
+
28
+ { 'rc-turned-off': { 'decimal': 21780,
29
+ 'bits': 24,
30
+ 'binary': '000000000101010100010001',
31
+ 'tristate': '0000FFFF0F0F',
32
+ 'delay': 322,
33
+ 'protocol': 1 } }
34
+
35
+ #### ir-received
36
+
37
+ { 'ir-received': { 'code': 4294967295, 'hex': 'ffffffff' } }
38
+
39
+ #### door-opened
40
+
41
+ { 'door-opened': { 'state': 'open' } }
42
+
43
+ #### door-closed
44
+
45
+ { 'door-closed': { 'state': 'closed' } }
46
+
47
+ ### Received messages
48
+
49
+ The following commands can be send to the ban server:
50
+
51
+ #### rc-turn-off
52
+
53
+ { 'rc-turn-off': { 'address': '11110D' } }
54
+
55
+
56
+ #### rc-turn-on
57
+
58
+ { 'rc-turn-on': { 'address': '11110D' } }
59
+
60
+ ## Installation
61
+
62
+ Add this line to your application's Gemfile:
63
+
64
+ gem 'ban'
65
+
66
+ And then execute:
67
+
68
+ $ bundle
69
+
70
+ Or install it yourself as:
71
+
72
+ $ gem install ban
73
+
74
+ ## Flash the arduino
75
+
76
+ 1. Install the [inotool](http://inotool.org)
77
+ 2. Install the arduino library [rc-switch](https://code.google.com/p/rc-switch/)
78
+ 3. Install the arduino library [IRremote](https://github.com/shirriff/Arduino-IRremote)
79
+ 4. Fetch the git repository
80
+ 5. Configure the arduino board in the **ino.ini** file.
81
+ 6. And build and upload the Firmware to your arduino. using
82
+
83
+ $ ino clean && ino build && ino upload
84
+
85
+ ## Usage
86
+
87
+ Start the ban server using:
88
+
89
+ $ ban server
90
+
91
+ Then by default a websocket server is started on the port 8080 on all interfaces. The websocket server will then send and receive the json messages.
92
+
93
+ ## Contributing
94
+
95
+ 1. Fork it
96
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
97
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
98
+ 4. Push to the branch (`git push origin my-new-feature`)
99
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/ban.gemspec ADDED
@@ -0,0 +1,35 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'ban/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'ban'
8
+ spec.version = Ban::VERSION
9
+ spec.authors = ['Vincent Landgraf']
10
+ spec.email = ['setcool@gmx.de']
11
+ spec.description = %q{A home control system based on firmata}
12
+ spec.summary = %q{
13
+ Ban is a arduino firmware (based on firmata) that receives incoming remote
14
+ control switch commands, infrared commands, door open/close signaling and
15
+ can send out remote control commands also. Ban distributes all this
16
+ information over a websocket.
17
+ }
18
+ spec.homepage = 'https://github.com/threez/ban'
19
+ spec.license = 'MIT'
20
+
21
+ spec.files = `git ls-files`.split($/)
22
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
23
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
24
+ spec.require_paths = ['lib']
25
+
26
+ spec.add_development_dependency 'bundler', '~> 1.3'
27
+ spec.add_development_dependency 'rake'
28
+ spec.add_development_dependency 'rspec'
29
+ spec.add_development_dependency 'simplecov'
30
+
31
+ spec.add_runtime_dependency 'eventmachine'
32
+ spec.add_runtime_dependency 'arduino_firmata'
33
+ spec.add_runtime_dependency 'thor'
34
+ spec.add_runtime_dependency 'em-websocket'
35
+ end
data/bin/ban ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ begin
4
+ require 'ban'
5
+ rescue LoadError
6
+ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
7
+ require 'ban'
8
+ end
9
+
10
+ Ban::CLI.start
Binary file
@@ -0,0 +1,2905 @@
1
+ <?xml version='1.0' encoding='UTF-8' standalone='no'?>
2
+ <!-- Created with Fritzing (http://www.fritzing.org/) -->
3
+ <svg xmlns="http://www.w3.org/2000/svg" width="5.49173in" x="0in" version="1.2" y="0in" height="3.48052in" viewBox="0 0 395.405 250.597" baseProfile="tiny" xmlns:svg="http://www.w3.org/2000/svg">
4
+ <g id="watermark">
5
+ <g >
6
+ <path fill="#8C8C8C" d="M287.588,248.269L285.663,242.705L285.628,242.705c0.017,0.214,0.032,0.427,0.044,0.64c0.012,0.183,0.021,0.375,0.028,0.574c0.007,0.203,0.011,0.385,0.011,0.551l0,3.8L284.963,248.27L284.963,241.914l1.199,0l1.791,5.181l0.025,0l1.8,-5.181L290.978,241.914l0,6.354L290.169,248.268l0,-3.854c0,-0.15,0.003,-0.324,0.009,-0.518s0.013,-0.38,0.021,-0.557c0.012,-0.207,0.021,-0.416,0.029,-0.625L290.196,242.714L288.252,248.269L287.588,248.269z"/>
7
+ <path fill="#8C8C8C" d="M295.288,248.269l-0.16,-0.661l-0.035,0c-0.095,0.131,-0.19,0.243,-0.286,0.338c-0.095,0.095,-0.2,0.172,-0.313,0.231c-0.113,0.062,-0.239,0.106,-0.378,0.136c-0.141,0.028,-0.3,0.042,-0.482,0.042c-0.2,0,-0.384,-0.026,-0.552,-0.084c-0.168,-0.057,-0.314,-0.144,-0.438,-0.261c-0.122,-0.116,-0.219,-0.265,-0.288,-0.443S292.252,247.179,292.252,246.934c0,-0.475,0.167,-0.841,0.501,-1.095c0.335,-0.256,0.845,-0.394,1.528,-0.418l0.799,-0.029l0,-0.301c0,-0.193,-0.021,-0.356,-0.063,-0.486s-0.103,-0.234,-0.183,-0.314s-0.178,-0.138,-0.295,-0.172c-0.117,-0.035,-0.251,-0.052,-0.402,-0.052c-0.241,0,-0.464,0.034,-0.671,0.104c-0.207,0.068,-0.407,0.152,-0.597,0.25L292.59,243.828c0.214,-0.117,0.453,-0.217,0.717,-0.298c0.264,-0.079,0.54,-0.12,0.83,-0.12c0.296,0,0.551,0.029,0.768,0.09c0.216,0.059,0.395,0.151,0.534,0.28c0.141,0.13,0.247,0.294,0.316,0.494c0.07,0.199,0.104,0.44,0.104,0.726l0,3.269L295.288,248.269L295.288,248.269zM293.837,247.718c0.178,0,0.341,-0.028,0.491,-0.084c0.149,-0.055,0.282,-0.138,0.391,-0.249c0.11,-0.111,0.196,-0.252,0.258,-0.422c0.063,-0.17,0.094,-0.369,0.094,-0.599l0,-0.43l-0.621,0.03c-0.262,0.012,-0.48,0.041,-0.656,0.086c-0.175,0.047,-0.317,0.113,-0.423,0.193c-0.105,0.084,-0.183,0.185,-0.229,0.301c-0.046,0.117,-0.068,0.25,-0.068,0.398c0,0.268,0.069,0.462,0.211,0.586C293.424,247.655,293.608,247.718,293.837,247.718z"/>
8
+ <path fill="#8C8C8C" d="M300.27,247.63l-0.034,0c-0.063,0.099,-0.139,0.191,-0.224,0.281c-0.085,0.088,-0.184,0.165,-0.296,0.231c-0.111,0.066,-0.237,0.118,-0.376,0.156c-0.139,0.037,-0.295,0.056,-0.47,0.056c-0.271,0,-0.517,-0.051,-0.738,-0.154c-0.223,-0.105,-0.416,-0.262,-0.575,-0.469s-0.282,-0.464,-0.369,-0.771c-0.087,-0.309,-0.13,-0.664,-0.13,-1.069c0,-0.408,0.043,-0.767,0.13,-1.076c0.086,-0.31,0.209,-0.567,0.369,-0.774c0.159,-0.209,0.352,-0.367,0.575,-0.473c0.222,-0.105,0.469,-0.158,0.738,-0.158c0.171,0,0.327,0.02,0.466,0.057s0.264,0.088,0.376,0.152c0.112,0.063,0.211,0.137,0.297,0.221s0.163,0.172,0.227,0.266l0.052,0c-0.009,-0.1,-0.018,-0.191,-0.026,-0.283c-0.006,-0.074,-0.012,-0.152,-0.018,-0.232c-0.005,-0.078,-0.009,-0.143,-0.009,-0.188L300.235,241.506l0.792,0l0,6.763l-0.641,0L300.27,247.63zM299.022,247.701c0.221,0,0.407,-0.033,0.56,-0.102c0.151,-0.065,0.274,-0.168,0.37,-0.304c0.094,-0.136,0.163,-0.308,0.209,-0.512c0.044,-0.204,0.069,-0.442,0.076,-0.716l0,-0.177c0,-0.292,-0.02,-0.552,-0.059,-0.78c-0.04,-0.229,-0.105,-0.418,-0.2,-0.574c-0.094,-0.154,-0.219,-0.271,-0.376,-0.351c-0.156,-0.08,-0.352,-0.119,-0.586,-0.119c-0.391,0,-0.679,0.157,-0.861,0.474c-0.185,0.315,-0.277,0.771,-0.277,1.359c0,0.605,0.092,1.058,0.277,1.354C298.335,247.551,298.625,247.701,299.022,247.701z"/>
9
+ <path fill="#8C8C8C" d="M304.424,248.355c-0.318,0,-0.609,-0.053,-0.874,-0.16c-0.263,-0.106,-0.49,-0.264,-0.68,-0.469c-0.19,-0.207,-0.338,-0.461,-0.442,-0.766c-0.104,-0.306,-0.156,-0.651,-0.156,-1.045s0.049,-0.744,0.144,-1.055c0.096,-0.311,0.229,-0.574,0.405,-0.789c0.174,-0.216,0.382,-0.381,0.623,-0.492c0.241,-0.113,0.51,-0.17,0.802,-0.17c0.287,0,0.545,0.051,0.772,0.153c0.229,0.104,0.423,0.248,0.583,0.435c0.159,0.188,0.282,0.412,0.367,0.674c0.087,0.263,0.13,0.554,0.13,0.873l0,0.49l-3.008,0c0.015,0.559,0.133,0.971,0.354,1.234c0.222,0.263,0.551,0.396,0.987,0.396c0.149,0,0.285,-0.008,0.411,-0.021s0.248,-0.035,0.365,-0.063c0.118,-0.026,0.23,-0.063,0.342,-0.104s0.222,-0.089,0.334,-0.142l0,0.704c-0.116,0.055,-0.229,0.104,-0.341,0.144c-0.112,0.041,-0.226,0.074,-0.343,0.102c-0.117,0.024,-0.239,0.045,-0.365,0.056S304.573,248.355,304.424,248.355zM304.229,244.067c-0.331,0,-0.592,0.112,-0.783,0.339c-0.193,0.227,-0.307,0.555,-0.338,0.985l2.14,0c0,-0.196,-0.021,-0.378,-0.06,-0.541c-0.039,-0.164,-0.1,-0.304,-0.183,-0.419s-0.187,-0.205,-0.315,-0.27C304.562,244.097,304.409,244.067,304.229,244.067z"/>
10
+ <path fill="#8C8C8C" d="M313.238,248.269l-0.729,-2.678c-0.012,-0.053,-0.026,-0.111,-0.044,-0.176c-0.017,-0.065,-0.034,-0.136,-0.051,-0.207c-0.019,-0.072,-0.036,-0.146,-0.055,-0.223c-0.02,-0.074,-0.037,-0.148,-0.055,-0.222c-0.041,-0.169,-0.083,-0.341,-0.126,-0.521l-0.024,0c-0.041,0.182,-0.08,0.356,-0.117,0.524c-0.032,0.146,-0.066,0.294,-0.104,0.448c-0.037,0.152,-0.069,0.283,-0.103,0.391l-0.75,2.66l-0.917,0l-1.221,-4.771l0.83,0l0.57,2.539c0.029,0.129,0.059,0.27,0.086,0.423c0.028,0.151,0.057,0.303,0.082,0.452c0.026,0.148,0.05,0.288,0.07,0.421c0.02,0.132,0.037,0.238,0.049,0.322l0.025,0c0.015,-0.074,0.034,-0.177,0.059,-0.302c0.025,-0.126,0.052,-0.26,0.083,-0.399c0.031,-0.141,0.063,-0.28,0.093,-0.417c0.032,-0.139,0.063,-0.254,0.091,-0.351l0.778,-2.69l0.853,0l0.748,2.69c0.025,0.098,0.056,0.215,0.089,0.348c0.033,0.135,0.065,0.27,0.098,0.407c0.032,0.139,0.061,0.271,0.087,0.397c0.025,0.127,0.045,0.231,0.056,0.315l0.026,0c0.01,-0.074,0.022,-0.177,0.042,-0.302c0.02,-0.126,0.042,-0.265,0.067,-0.415c0.025,-0.149,0.054,-0.306,0.084,-0.464c0.03,-0.157,0.062,-0.306,0.094,-0.44L314.598,243.496l0.809,0l-1.234,4.771L313.238,248.267L313.238,248.269z"/>
11
+ <path fill="#8C8C8C" d="M316.193,242.206c0,-0.175,0.045,-0.3,0.133,-0.379c0.088,-0.078,0.197,-0.117,0.328,-0.117c0.063,0,0.123,0.011,0.181,0.028c0.056,0.019,0.104,0.049,0.147,0.089c0.042,0.041,0.075,0.092,0.101,0.154c0.023,0.063,0.037,0.137,0.037,0.224c0,0.168,-0.045,0.293,-0.138,0.376c-0.092,0.083,-0.2,0.123,-0.327,0.123c-0.131,0,-0.24,-0.04,-0.328,-0.12C316.239,242.503,316.193,242.376,316.193,242.206zM317.045,248.269l-0.791,0L316.254,243.496l0.791,0L317.045,248.269z"/>
12
+ <path fill="#8C8C8C" d="M320.001,247.708c0.052,0,0.111,-0.003,0.176,-0.01c0.066,-0.006,0.128,-0.013,0.189,-0.021c0.061,-0.009,0.116,-0.019,0.167,-0.031c0.051,-0.011,0.089,-0.021,0.115,-0.028l0,0.6c-0.037,0.017,-0.085,0.035,-0.144,0.052c-0.059,0.018,-0.122,0.033,-0.191,0.046c-0.068,0.015,-0.142,0.022,-0.217,0.03s-0.148,0.011,-0.221,0.011c-0.18,0,-0.347,-0.021,-0.5,-0.068c-0.153,-0.048,-0.286,-0.126,-0.397,-0.239c-0.111,-0.112,-0.198,-0.267,-0.263,-0.458c-0.063,-0.192,-0.095,-0.437,-0.095,-0.729L318.62,244.092l-0.674,0L317.946,243.74l0.673,-0.339l0.339,-0.999l0.456,0l0,1.096l1.199,0l0,0.596l-1.199,0l0,2.769c0,0.281,0.045,0.492,0.137,0.636C319.643,247.637,319.792,247.708,320.001,247.708z"/>
13
+ <path fill="#8C8C8C" d="M324.556,248.269l0,-3.073c0,-0.377,-0.076,-0.659,-0.228,-0.848c-0.152,-0.188,-0.391,-0.282,-0.715,-0.282c-0.234,0,-0.433,0.037,-0.592,0.111c-0.158,0.076,-0.286,0.188,-0.384,0.336c-0.097,0.148,-0.166,0.328,-0.208,0.544c-0.042,0.214,-0.063,0.461,-0.063,0.739l0,2.473l-0.791,0L321.575,241.506l0.791,0l0,2.008l-0.034,0.626l0.044,0c0.072,-0.124,0.158,-0.232,0.258,-0.323s0.209,-0.167,0.328,-0.229c0.118,-0.061,0.245,-0.104,0.378,-0.135c0.133,-0.027,0.27,-0.043,0.408,-0.043c0.531,0,0.93,0.139,1.198,0.416c0.268,0.275,0.401,0.719,0.401,1.326l0,3.117L324.556,248.269L324.556,248.269z"/>
14
+ </g>
15
+ <g >
16
+ <path fill="#8C8C8C" d="M346.316,248.253l-1.324,0L344.992,241.899l3.642,0l0,1.104l-2.316,0l0,1.639l2.156,0l0,1.1l-2.156,0L346.316,248.253L346.316,248.253z"/>
17
+ <path fill="#8C8C8C" d="M352.349,243.303c0.035,0,0.074,0.002,0.116,0.002c0.042,0.002,0.083,0.006,0.12,0.01c0.041,0.005,0.076,0.009,0.11,0.014c0.031,0.004,0.059,0.01,0.075,0.016l0,1.244c-0.022,-0.008,-0.056,-0.012,-0.095,-0.018c-0.04,-0.007,-0.083,-0.012,-0.128,-0.018c-0.045,-0.004,-0.09,-0.006,-0.133,-0.008c-0.044,-0.002,-0.08,-0.002,-0.108,-0.002c-0.171,0,-0.328,0.021,-0.472,0.064c-0.146,0.043,-0.269,0.113,-0.37,0.211s-0.183,0.225,-0.239,0.383c-0.057,0.157,-0.084,0.352,-0.084,0.581l0,2.474l-1.326,0L349.815,243.394l1.005,0l0.194,0.73l0.066,0c0.068,-0.125,0.145,-0.238,0.226,-0.34c0.081,-0.103,0.172,-0.189,0.272,-0.259c0.1,-0.071,0.212,-0.126,0.338,-0.165C352.042,243.323,352.188,243.303,352.349,243.303z"/>
18
+ <path fill="#8C8C8C" d="M353.667,242.138c0,-0.125,0.018,-0.228,0.056,-0.311c0.038,-0.084,0.089,-0.15,0.154,-0.2c0.065,-0.051,0.142,-0.086,0.229,-0.106c0.088,-0.02,0.184,-0.03,0.281,-0.03c0.099,0,0.191,0.01,0.277,0.03c0.088,0.02,0.164,0.055,0.229,0.106c0.066,0.05,0.117,0.116,0.156,0.2c0.04,0.083,0.059,0.186,0.059,0.311c0,0.122,-0.019,0.225,-0.059,0.309c-0.039,0.084,-0.09,0.151,-0.156,0.203c-0.063,0.05,-0.142,0.086,-0.229,0.108c-0.086,0.021,-0.18,0.032,-0.277,0.032c-0.099,0,-0.191,-0.012,-0.281,-0.032c-0.088,-0.021,-0.164,-0.059,-0.229,-0.108c-0.065,-0.051,-0.116,-0.119,-0.154,-0.203C353.686,242.363,353.667,242.26,353.667,242.138zM355.049,248.253l-1.325,0L353.724,243.394l1.325,0L355.049,248.253z"/>
19
+ <path fill="#8C8C8C" d="M358.458,247.284c0.13,0,0.254,-0.016,0.371,-0.045c0.117,-0.027,0.235,-0.064,0.357,-0.107l0,0.986c-0.124,0.063,-0.278,0.116,-0.463,0.157c-0.184,0.042,-0.385,0.063,-0.603,0.063c-0.211,0,-0.408,-0.024,-0.59,-0.073c-0.185,-0.05,-0.342,-0.137,-0.476,-0.259c-0.133,-0.123,-0.237,-0.288,-0.313,-0.495c-0.077,-0.208,-0.114,-0.468,-0.114,-0.781L356.627,244.389l-0.636,0L355.991,243.828l0.729,-0.443l0.383,-1.024l0.848,0l0,1.034l1.184,0l0,0.995l-1.184,0l0,2.343c0,0.188,0.048,0.327,0.141,0.417C358.185,247.239,358.307,247.284,358.458,247.284z"/>
20
+ <path fill="#8C8C8C" d="M363.331,248.253L359.758,248.253l0,-0.781l1.985,-3.064l-1.853,0L359.89,243.394l3.355,0l0,0.859l-1.92,2.985l2.004,0L363.331,248.253L363.331,248.253z"/>
21
+ <path fill="#8C8C8C" d="M364.27,242.138c0,-0.125,0.02,-0.228,0.057,-0.311c0.038,-0.084,0.09,-0.15,0.153,-0.2c0.065,-0.051,0.144,-0.086,0.23,-0.106s0.182,-0.03,0.28,-0.03c0.098,0,0.19,0.01,0.277,0.03c0.088,0.02,0.164,0.055,0.229,0.106c0.064,0.05,0.117,0.116,0.156,0.2c0.038,0.083,0.059,0.186,0.059,0.311c0,0.122,-0.021,0.225,-0.059,0.309c-0.039,0.084,-0.092,0.151,-0.156,0.203c-0.064,0.05,-0.143,0.086,-0.229,0.108c-0.086,0.021,-0.18,0.032,-0.277,0.032c-0.099,0,-0.192,-0.012,-0.28,-0.032c-0.088,-0.021,-0.165,-0.059,-0.23,-0.108c-0.063,-0.051,-0.115,-0.119,-0.153,-0.203C364.289,242.363,364.27,242.26,364.27,242.138zM365.652,248.253L364.328,248.253L364.328,243.394l1.324,0L365.652,248.253z"/>
22
+ <path fill="#8C8C8C" d="M371.302,248.253L369.978,248.253l0,-2.839c0,-0.351,-0.053,-0.613,-0.158,-0.787c-0.105,-0.176,-0.274,-0.265,-0.508,-0.265c-0.173,0,-0.317,0.035,-0.434,0.104c-0.116,0.07,-0.209,0.173,-0.276,0.31c-0.066,0.136,-0.115,0.304,-0.146,0.504c-0.029,0.2,-0.043,0.429,-0.043,0.687l0,2.286L367.088,248.253L367.088,243.394l1.012,0l0.181,0.621l0.073,0c0.069,-0.124,0.153,-0.23,0.253,-0.321c0.102,-0.089,0.21,-0.163,0.328,-0.221s0.245,-0.103,0.378,-0.128c0.136,-0.028,0.271,-0.043,0.409,-0.043c0.237,0,0.454,0.033,0.647,0.104c0.194,0.067,0.36,0.174,0.5,0.318c0.141,0.146,0.247,0.328,0.321,0.555c0.075,0.225,0.113,0.492,0.113,0.807l0,3.168L371.302,248.253L371.302,248.253z"/>
23
+ <path fill="#8C8C8C" d="M376.732,243.403l0,0.722l-0.708,0.221c0.059,0.1,0.1,0.201,0.122,0.308c0.021,0.106,0.033,0.22,0.033,0.343c0,0.246,-0.039,0.471,-0.116,0.676c-0.078,0.203,-0.193,0.379,-0.349,0.522c-0.152,0.146,-0.346,0.258,-0.578,0.337c-0.23,0.08,-0.5,0.119,-0.808,0.119c-0.067,0,-0.141,-0.003,-0.218,-0.012c-0.078,-0.007,-0.137,-0.015,-0.175,-0.021c-0.057,0.049,-0.104,0.101,-0.137,0.152c-0.033,0.054,-0.049,0.117,-0.049,0.193c0,0.061,0.018,0.108,0.056,0.146s0.087,0.065,0.147,0.087c0.06,0.022,0.133,0.036,0.214,0.044s0.165,0.012,0.251,0.012l0.756,0c0.236,0,0.446,0.025,0.631,0.081c0.186,0.055,0.342,0.135,0.472,0.246c0.129,0.109,0.229,0.249,0.299,0.419c0.069,0.169,0.104,0.372,0.104,0.605c0,0.275,-0.054,0.523,-0.164,0.745c-0.109,0.224,-0.274,0.41,-0.494,0.565c-0.219,0.154,-0.488,0.273,-0.813,0.355c-0.324,0.082,-0.699,0.123,-1.126,0.123c-0.329,0,-0.618,-0.031,-0.864,-0.094c-0.247,-0.063,-0.451,-0.15,-0.617,-0.27c-0.165,-0.116,-0.288,-0.258,-0.371,-0.424c-0.084,-0.164,-0.125,-0.353,-0.125,-0.561c0,-0.177,0.031,-0.33,0.093,-0.46c0.061,-0.131,0.143,-0.243,0.243,-0.336c0.102,-0.093,0.218,-0.168,0.347,-0.227c0.129,-0.058,0.262,-0.103,0.396,-0.134c-0.061,-0.026,-0.12,-0.063,-0.181,-0.109c-0.059,-0.047,-0.113,-0.1,-0.161,-0.159c-0.047,-0.063,-0.086,-0.129,-0.116,-0.203c-0.031,-0.072,-0.047,-0.15,-0.047,-0.23c0,-0.093,0.015,-0.178,0.04,-0.252c0.029,-0.076,0.068,-0.146,0.12,-0.212c0.052,-0.064,0.117,-0.126,0.196,-0.184c0.078,-0.06,0.166,-0.117,0.264,-0.18c-0.254,-0.11,-0.456,-0.287,-0.604,-0.53c-0.15,-0.244,-0.225,-0.529,-0.225,-0.859c0,-0.26,0.04,-0.494,0.121,-0.699c0.081,-0.207,0.2,-0.381,0.356,-0.523c0.155,-0.144,0.35,-0.252,0.582,-0.328c0.231,-0.076,0.499,-0.113,0.801,-0.113c0.057,0,0.122,0.004,0.194,0.012s0.145,0.018,0.216,0.025c0.07,0.01,0.137,0.021,0.196,0.033c0.061,0.01,0.109,0.021,0.146,0.029L376.732,243.403L376.732,243.403zM373.255,248.94c0,0.073,0.017,0.145,0.047,0.211c0.03,0.068,0.08,0.129,0.15,0.182c0.068,0.052,0.16,0.094,0.272,0.124c0.113,0.03,0.252,0.046,0.417,0.046c0.452,0,0.792,-0.063,1.021,-0.191c0.229,-0.127,0.343,-0.298,0.343,-0.514c0,-0.183,-0.07,-0.304,-0.213,-0.364c-0.143,-0.06,-0.361,-0.091,-0.66,-0.091l-0.613,0c-0.077,0,-0.162,0.009,-0.252,0.027c-0.09,0.018,-0.172,0.052,-0.248,0.099c-0.075,0.046,-0.139,0.108,-0.188,0.184S373.255,248.825,373.255,248.94zM373.734,244.985c0,0.263,0.049,0.468,0.147,0.612c0.098,0.146,0.248,0.217,0.447,0.217c0.209,0,0.358,-0.07,0.451,-0.217c0.094,-0.145,0.14,-0.35,0.14,-0.612c0,-0.261,-0.046,-0.468,-0.137,-0.622c-0.092,-0.152,-0.243,-0.229,-0.454,-0.229C373.931,244.133,373.734,244.416,373.734,244.985z"/>
24
+ <path fill="#8C8C8C" d="M377.482,247.632c0,-0.136,0.02,-0.251,0.059,-0.346c0.04,-0.095,0.094,-0.172,0.163,-0.229c0.069,-0.058,0.149,-0.101,0.244,-0.126c0.092,-0.026,0.191,-0.039,0.299,-0.039c0.102,0,0.198,0.013,0.289,0.039c0.092,0.025,0.172,0.068,0.242,0.126c0.068,0.057,0.123,0.134,0.163,0.229c0.041,0.095,0.062,0.21,0.062,0.346c0,0.13,-0.021,0.242,-0.062,0.335c-0.04,0.093,-0.095,0.17,-0.163,0.229c-0.07,0.062,-0.15,0.104,-0.242,0.133c-0.091,0.027,-0.188,0.042,-0.289,0.042c-0.106,0,-0.207,-0.015,-0.299,-0.042c-0.095,-0.027,-0.175,-0.071,-0.244,-0.133c-0.069,-0.061,-0.123,-0.138,-0.163,-0.229C377.5,247.874,377.482,247.762,377.482,247.632z"/>
25
+ <path fill="#8C8C8C" d="M384.441,245.814c0,0.406,-0.052,0.767,-0.153,1.079c-0.104,0.313,-0.251,0.576,-0.443,0.79c-0.192,0.215,-0.428,0.378,-0.704,0.489c-0.277,0.111,-0.587,0.167,-0.933,0.167c-0.321,0,-0.617,-0.056,-0.886,-0.167c-0.271,-0.112,-0.503,-0.274,-0.698,-0.489c-0.195,-0.214,-0.35,-0.479,-0.458,-0.79c-0.11,-0.313,-0.165,-0.673,-0.165,-1.079c0,-0.402,0.051,-0.76,0.154,-1.072c0.103,-0.314,0.25,-0.576,0.442,-0.789C380.789,243.739,381.023,243.578,381.298,243.469s0.587,-0.164,0.937,-0.164c0.319,0,0.615,0.055,0.886,0.164c0.27,0.111,0.502,0.271,0.695,0.484c0.197,0.213,0.351,0.477,0.459,0.789C384.385,245.054,384.441,245.412,384.441,245.814zM381.355,245.814c0,0.484,0.068,0.851,0.205,1.093c0.137,0.246,0.357,0.368,0.664,0.368c0.306,0,0.524,-0.123,0.66,-0.37c0.137,-0.245,0.205,-0.608,0.205,-1.091s-0.068,-0.846,-0.205,-1.084c-0.136,-0.238,-0.358,-0.357,-0.668,-0.357c-0.305,0,-0.523,0.119,-0.659,0.357C381.422,244.969,381.355,245.332,381.355,245.814z"/>
26
+ <path fill="#8C8C8C" d="M388.161,243.303c0.035,0,0.073,0.002,0.115,0.002c0.042,0.002,0.083,0.006,0.12,0.01c0.04,0.005,0.076,0.009,0.109,0.014c0.033,0.004,0.059,0.01,0.076,0.016l0,1.244c-0.023,-0.008,-0.055,-0.012,-0.095,-0.018c-0.041,-0.007,-0.083,-0.012,-0.13,-0.018c-0.045,-0.004,-0.089,-0.006,-0.132,-0.008c-0.045,-0.002,-0.08,-0.002,-0.108,-0.002c-0.171,0,-0.328,0.021,-0.473,0.064c-0.144,0.043,-0.267,0.113,-0.37,0.211c-0.102,0.098,-0.182,0.225,-0.237,0.383c-0.058,0.157,-0.084,0.352,-0.084,0.581l0,2.474l-1.326,0L385.626,243.394l1.004,0l0.195,0.73l0.065,0c0.068,-0.125,0.146,-0.238,0.226,-0.34c0.081,-0.103,0.172,-0.189,0.271,-0.259c0.101,-0.071,0.213,-0.126,0.339,-0.165C387.855,243.323,387.999,243.303,388.161,243.303z"/>
27
+ <path fill="#8C8C8C" d="M393.469,243.403l0,0.722l-0.708,0.221c0.058,0.1,0.099,0.201,0.121,0.308s0.034,0.22,0.034,0.343c0,0.246,-0.039,0.471,-0.116,0.676c-0.079,0.203,-0.194,0.379,-0.349,0.522c-0.153,0.146,-0.348,0.258,-0.578,0.337c-0.232,0.08,-0.501,0.119,-0.809,0.119c-0.067,0,-0.141,-0.003,-0.219,-0.012c-0.078,-0.007,-0.135,-0.015,-0.173,-0.021c-0.058,0.049,-0.104,0.101,-0.137,0.152c-0.034,0.054,-0.05,0.117,-0.05,0.193c0,0.061,0.019,0.108,0.057,0.146c0.037,0.037,0.086,0.065,0.146,0.087c0.062,0.021,0.133,0.036,0.215,0.044c0.08,0.008,0.164,0.012,0.251,0.012l0.756,0c0.234,0,0.445,0.025,0.63,0.081c0.186,0.055,0.343,0.135,0.472,0.246c0.129,0.109,0.229,0.249,0.298,0.419c0.07,0.169,0.104,0.372,0.104,0.605c0,0.275,-0.054,0.523,-0.165,0.745c-0.109,0.224,-0.275,0.41,-0.493,0.565c-0.219,0.154,-0.489,0.273,-0.815,0.355c-0.323,0.082,-0.698,0.123,-1.125,0.123c-0.329,0,-0.617,-0.031,-0.864,-0.094c-0.246,-0.063,-0.451,-0.15,-0.617,-0.27c-0.164,-0.116,-0.287,-0.258,-0.371,-0.424c-0.083,-0.164,-0.124,-0.353,-0.124,-0.561c0,-0.177,0.03,-0.33,0.091,-0.46c0.063,-0.131,0.144,-0.243,0.244,-0.336c0.103,-0.093,0.217,-0.168,0.346,-0.227c0.129,-0.058,0.263,-0.103,0.398,-0.134c-0.062,-0.026,-0.121,-0.063,-0.182,-0.109c-0.06,-0.047,-0.113,-0.1,-0.16,-0.159c-0.047,-0.063,-0.087,-0.129,-0.117,-0.203c-0.03,-0.073,-0.045,-0.151,-0.045,-0.231c0,-0.093,0.014,-0.178,0.04,-0.252c0.027,-0.076,0.067,-0.146,0.12,-0.212c0.051,-0.064,0.117,-0.126,0.194,-0.184c0.078,-0.06,0.166,-0.117,0.266,-0.18c-0.255,-0.109,-0.456,-0.287,-0.606,-0.529c-0.148,-0.244,-0.223,-0.531,-0.223,-0.861c0,-0.26,0.039,-0.493,0.121,-0.698c0.081,-0.207,0.199,-0.382,0.354,-0.524c0.156,-0.143,0.351,-0.252,0.583,-0.328c0.231,-0.074,0.499,-0.111,0.8,-0.111c0.059,0,0.123,0.003,0.195,0.011s0.146,0.017,0.215,0.026c0.072,0.009,0.138,0.021,0.198,0.031c0.062,0.012,0.108,0.021,0.145,0.03L393.469,243.402L393.469,243.403zM389.993,248.94c0,0.073,0.017,0.145,0.046,0.211c0.031,0.068,0.081,0.129,0.149,0.182c0.07,0.052,0.161,0.094,0.273,0.124c0.114,0.03,0.252,0.046,0.418,0.046c0.451,0,0.792,-0.063,1.021,-0.191c0.229,-0.127,0.343,-0.298,0.343,-0.514c0,-0.183,-0.071,-0.304,-0.214,-0.364s-0.361,-0.091,-0.66,-0.091l-0.612,0c-0.079,0,-0.163,0.009,-0.252,0.027c-0.09,0.019,-0.173,0.052,-0.248,0.099c-0.076,0.046,-0.139,0.108,-0.188,0.184C390.019,248.727,389.993,248.825,389.993,248.94zM390.47,244.985c0,0.263,0.049,0.468,0.148,0.612c0.099,0.146,0.248,0.217,0.447,0.217c0.209,0,0.358,-0.07,0.451,-0.217c0.094,-0.145,0.141,-0.35,0.141,-0.612c0,-0.261,-0.046,-0.468,-0.138,-0.622c-0.092,-0.152,-0.243,-0.229,-0.454,-0.229C390.668,244.133,390.47,244.416,390.47,244.985z"/>
28
+ </g>
29
+ <g >
30
+ <path fill="#8C8C8C" d="M339.063,240.523l-8.146,0c-0.532,0,-0.965,0.432,-0.965,0.964l0,8.146c0,0.531,0.433,0.964,0.965,0.964l5.55,0l3.557,-3.558L340.024,241.487C340.027,240.954,339.595,240.523,339.063,240.523zM337.386,244.252l-1.075,0l0,0.401l1.075,0l0,1.601l-2.196,0l0,2.058l-2.572,0l0,-4.67l0.988,-0.99l3.779,0l0,1.603l0.001,0L337.386,244.252z"/>
31
+ </g>
32
+ </g>
33
+ <g partID="46900">
34
+ <g transform="translate(47.2551,65.48)">
35
+ <g id="breadboardbreadboard">
36
+ <g id="icon">
37
+ <path fill="#0F7391" id="_x30_.1.0.0" d="M200.852,0l4.32,4.32l0,32.4l7.199,7.2l0,92.879L205.172,144l0,4.36c0,1.565,-1.271,2.837,-2.834,2.837c-0.002,0,-0.002,0,-0.002,0L20.806,151.197c-1.565,0,-2.834,-1.271,-2.834,-2.834c0,0,0,0,0,-0.003L17.972,2.834C17.972,1.269,19.241,0,20.806,0l0,0L200.852,0M200.635,50.4c-0.004,2.505,2.023,4.539,4.527,4.543c2.506,0.004,4.539,-2.023,4.545,-4.528c0,-0.005,0,-0.01,0,-0.016c0.004,-2.505,-2.023,-4.539,-4.528,-4.543s-4.539,2.022,-4.544,4.527C200.635,50.39,200.635,50.395,200.635,50.4zM200.635,129.6c-0.004,2.505,2.023,4.539,4.527,4.543c2.506,0.004,4.539,-2.021,4.545,-4.527c0,-0.006,0,-0.011,0,-0.016c0.004,-2.505,-2.023,-4.539,-4.528,-4.543c-2.505,-0.006,-4.539,2.021,-4.544,4.527C200.635,129.588,200.635,129.594,200.635,129.6zM56.636,7.2c-0.004,2.504,2.023,4.539,4.528,4.543c2.504,0.004,4.539,-2.022,4.543,-4.527c0,-0.005,0,-0.011,0,-0.016c0.004,-2.505,-2.024,-4.539,-4.529,-4.542c-2.505,-0.003,-4.539,2.024,-4.542,4.529C56.636,7.191,56.636,7.196,56.636,7.2L56.636,7.2zM53.036,144c-0.003,2.504,2.024,4.537,4.529,4.541s4.539,-2.023,4.542,-4.528c0,-0.005,0,-0.009,0,-0.013c0.004,-2.506,-2.024,-4.539,-4.529,-4.543s-4.538,2.021,-4.542,4.525C53.036,143.991,53.036,143.997,53.036,144zM160.767,144c-0.001,0.664,0.536,1.205,1.202,1.207c0.664,0.002,1.205,-0.537,1.207,-1.203c0,-0.002,0,-0.004,0,-0.004c0.002,-0.666,-0.537,-1.207,-1.201,-1.209c-0.666,0,-1.207,0.537,-1.208,1.203C160.767,143.997,160.767,143.999,160.767,144zM167.967,144c-0.002,0.664,0.537,1.205,1.201,1.207c0.666,0.002,1.207,-0.537,1.207,-1.203c0,-0.002,0,-0.004,0,-0.004c0.002,-0.666,-0.535,-1.207,-1.201,-1.209c-0.666,0,-1.207,0.537,-1.207,1.203C167.967,143.997,167.967,143.999,167.967,144zM175.167,144c0,0.664,0.537,1.205,1.203,1.207s1.205,-0.537,1.207,-1.203c0,-0.002,0,-0.004,0,-0.004c0.002,-0.666,-0.537,-1.207,-1.201,-1.209c-0.666,0,-1.207,0.537,-1.209,1.203C175.167,143.997,175.167,143.999,175.167,144zM182.368,144c-0.002,0.664,0.536,1.205,1.201,1.207c0.666,0.002,1.206,-0.537,1.207,-1.203c0,-0.002,0,-0.004,0,-0.004c0.002,-0.666,-0.535,-1.207,-1.201,-1.209c-0.666,0,-1.205,0.537,-1.207,1.203C182.368,143.997,182.368,143.999,182.368,144zM189.567,144c-0.002,0.664,0.537,1.205,1.202,1.207s1.206,-0.537,1.208,-1.203c0,-0.002,0,-0.004,0,-0.004c0.001,-0.666,-0.537,-1.207,-1.203,-1.209c-0.665,0,-1.205,0.537,-1.207,1.203C189.567,143.997,189.567,143.999,189.567,144zM196.767,144c-0.001,0.664,0.536,1.205,1.202,1.207c0.664,0.002,1.205,-0.537,1.207,-1.203c0,-0.002,0,-0.004,0,-0.004c0.002,-0.666,-0.537,-1.207,-1.201,-1.209c-0.666,0,-1.207,0.537,-1.208,1.203C196.767,143.997,196.767,143.999,196.767,144zM196.986,64.8c-0.001,0.744,0.601,1.348,1.345,1.349s1.352,-0.601,1.352,-1.344c0,-0.001,0,-0.003,0,-0.004c0.002,-0.744,-0.604,-1.347,-1.348,-1.348s-1.348,0.601,-1.349,1.344C196.986,64.797,196.986,64.799,196.986,64.8zM204.186,64.8c-0.001,0.744,0.602,1.348,1.344,1.349c0.744,0.001,1.348,-0.601,1.35,-1.344c0,-0.001,0,-0.003,0,-0.004c0,-0.744,-0.602,-1.347,-1.344,-1.348c-0.744,-0.001,-1.349,0.601,-1.35,1.344C204.186,64.797,204.186,64.799,204.186,64.8zM196.986,72c-0.001,0.744,0.601,1.347,1.345,1.349c0.744,0.001,1.352,-0.601,1.352,-1.345c0,-0.001,0,-0.002,0,-0.004c0.002,-0.744,-0.604,-1.347,-1.348,-1.349c-0.744,-0.001,-1.348,0.601,-1.349,1.345C196.986,71.997,196.986,71.999,196.986,72zM204.186,72c-0.001,0.744,0.602,1.347,1.344,1.349c0.744,0.001,1.348,-0.601,1.35,-1.345c0,-0.001,0,-0.002,0,-0.004c0,-0.744,-0.602,-1.347,-1.344,-1.349c-0.744,-0.001,-1.349,0.601,-1.35,1.345C204.186,71.997,204.186,71.999,204.186,72zM196.986,79.2c-0.001,0.744,0.601,1.348,1.345,1.35c0.744,0,1.352,-0.602,1.352,-1.346c0,0,0,-0.002,0,-0.004c0.002,-0.742,-0.604,-1.348,-1.348,-1.348c-0.744,-0.002,-1.348,0.6,-1.349,1.344C196.986,79.198,196.986,79.2,196.986,79.2zM204.186,79.2c-0.001,0.744,0.602,1.348,1.344,1.35c0.744,0,1.348,-0.602,1.35,-1.346c0,0,0,-0.002,0,-0.004c0,-0.742,-0.602,-1.348,-1.344,-1.348c-0.744,-0.002,-1.349,0.6,-1.35,1.344C204.186,79.198,204.186,79.2,204.186,79.2zM75.666,16.56c-0.001,0.744,0.601,1.347,1.344,1.349c0.744,0.001,1.348,-0.601,1.349,-1.345c0,-0.001,0,-0.002,0,-0.004c0.001,-0.744,-0.601,-1.348,-1.344,-1.349c-0.743,-0.001,-1.348,0.601,-1.349,1.345C75.666,16.557,75.666,16.559,75.666,16.56zM75.666,23.76c-0.001,0.743,0.601,1.347,1.344,1.348c0.744,0.001,1.348,-0.601,1.349,-1.344c0,-0.001,0,-0.003,0,-0.004c0.001,-0.744,-0.601,-1.348,-1.344,-1.349c-0.744,-0.001,-1.348,0.601,-1.349,1.344C75.666,23.757,75.666,23.759,75.666,23.76zM68.465,16.56c-0.001,0.744,0.601,1.347,1.344,1.349c0.744,0.001,1.348,-0.601,1.349,-1.345c0,-0.001,0,-0.002,0,-0.004c0.001,-0.744,-0.601,-1.348,-1.345,-1.349c-0.743,-0.001,-1.347,0.601,-1.348,1.345C68.465,16.557,68.465,16.559,68.465,16.56zM68.465,23.76c-0.001,0.743,0.601,1.347,1.344,1.348c0.744,0.001,1.348,-0.601,1.349,-1.344c0,-0.001,0,-0.003,0,-0.004c0.001,-0.744,-0.601,-1.348,-1.345,-1.349c-0.743,-0.001,-1.347,0.601,-1.348,1.344C68.465,23.757,68.465,23.759,68.465,23.76zM61.265,16.56c0,0.744,0.603,1.346,1.347,1.346c0.744,0,1.346,-0.604,1.346,-1.346c0,-0.743,-0.603,-1.347,-1.346,-1.347C61.869,15.213,61.265,15.816,61.265,16.56zM61.265,23.76c0,0.743,0.603,1.346,1.347,1.346c0.744,0,1.346,-0.603,1.346,-1.346c0,-0.744,-0.603,-1.347,-1.346,-1.347C61.869,22.413,61.265,23.016,61.265,23.76zM134.847,7.2c-0.001,0.665,0.536,1.206,1.202,1.207c0.664,0.001,1.205,-0.537,1.207,-1.202c0,-0.001,0,-0.003,0,-0.005c0.002,-0.666,-0.537,-1.206,-1.202,-1.208c-0.665,-0.002,-1.206,0.537,-1.207,1.202C134.847,7.197,134.847,7.198,134.847,7.2zM127.647,7.2c-0.002,0.665,0.537,1.206,1.202,1.207c0.665,0.001,1.206,-0.537,1.208,-1.202c0,-0.001,0,-0.003,0,-0.005c0.002,-0.666,-0.536,-1.207,-1.201,-1.209c-0.666,-0.002,-1.207,0.536,-1.209,1.201C127.647,7.195,127.647,7.197,127.647,7.2L127.647,7.2zM120.448,7.2c-0.003,0.665,0.535,1.207,1.199,1.208c0.666,0.002,1.207,-0.535,1.209,-1.201c0,-0.002,0,-0.005,0,-0.008c0.002,-0.666,-0.535,-1.207,-1.199,-1.209c-0.666,-0.002,-1.207,0.536,-1.209,1.201C120.448,7.195,120.448,7.197,120.448,7.2zM113.247,7.2c-0.002,0.665,0.535,1.207,1.201,1.208c0.666,0.002,1.207,-0.535,1.209,-1.201c0,-0.002,0,-0.005,0,-0.008c0.002,-0.666,-0.535,-1.207,-1.201,-1.209c-0.664,-0.002,-1.207,0.536,-1.209,1.201C113.247,7.195,113.247,7.197,113.247,7.2zM106.047,7.2c-0.002,0.665,0.536,1.207,1.202,1.208c0.664,0.002,1.205,-0.535,1.209,-1.201c0,-0.002,0,-0.005,0,-0.008c0.002,-0.666,-0.537,-1.207,-1.201,-1.209c-0.666,-0.002,-1.207,0.536,-1.208,1.201C106.047,7.195,106.047,7.197,106.047,7.2zM98.847,7.2c-0.002,0.665,0.535,1.207,1.201,1.208c0.666,0.002,1.207,-0.535,1.208,-1.201c0,-0.002,0,-0.005,0,-0.008c0.002,-0.666,-0.535,-1.207,-1.201,-1.209c-0.665,-0.002,-1.207,0.536,-1.208,1.201C98.847,7.195,98.847,7.197,98.847,7.2zM91.646,7.2c-0.002,0.665,0.536,1.207,1.201,1.208c0.666,0.002,1.207,-0.535,1.209,-1.201c0,-0.002,0,-0.005,0,-0.008c0.002,-0.666,-0.536,-1.207,-1.201,-1.209c-0.666,-0.002,-1.207,0.536,-1.209,1.201C91.646,7.195,91.646,7.197,91.646,7.2zM84.447,7.2c-0.002,0.665,0.535,1.207,1.201,1.208c0.665,0.002,1.207,-0.535,1.208,-1.201c0,-0.002,0,-0.005,0,-0.008c0.002,-0.666,-0.535,-1.207,-1.201,-1.209c-0.665,-0.002,-1.207,0.536,-1.208,1.201C84.447,7.195,84.447,7.197,84.447,7.2zM77.247,7.2c-0.002,0.665,0.536,1.207,1.201,1.208c0.666,0.002,1.207,-0.535,1.209,-1.201c0,-0.002,0,-0.005,0,-0.008c0.002,-0.666,-0.536,-1.207,-1.201,-1.209c-0.665,-0.002,-1.206,0.536,-1.208,1.201C77.247,7.195,77.247,7.197,77.247,7.2zM70.047,7.2c-0.002,0.665,0.535,1.207,1.201,1.208c0.666,0.002,1.207,-0.535,1.209,-1.201c0,-0.002,0,-0.005,0,-0.008c0.002,-0.666,-0.536,-1.207,-1.201,-1.209c-0.666,-0.002,-1.207,0.536,-1.209,1.201C70.047,7.195,70.047,7.197,70.047,7.2zM196.767,7.2c-0.001,0.665,0.536,1.206,1.202,1.207c0.664,0.001,1.205,-0.537,1.207,-1.202c0,-0.001,0,-0.003,0,-0.005c0.002,-0.666,-0.537,-1.206,-1.201,-1.208c-0.666,-0.001,-1.207,0.537,-1.208,1.202C196.767,7.197,196.767,7.198,196.767,7.2zM189.567,7.2c-0.002,0.665,0.537,1.206,1.202,1.207c0.665,0.001,1.206,-0.537,1.208,-1.202c0,-0.001,0,-0.003,0,-0.005c0.001,-0.666,-0.537,-1.206,-1.203,-1.208c-0.665,-0.001,-1.205,0.537,-1.207,1.202C189.567,7.197,189.567,7.198,189.567,7.2zM182.368,7.2c-0.002,0.665,0.536,1.206,1.201,1.207c0.666,0.001,1.206,-0.537,1.207,-1.202c0,-0.001,0,-0.003,0,-0.005c0.002,-0.666,-0.535,-1.206,-1.201,-1.208c-0.666,-0.001,-1.205,0.537,-1.207,1.202C182.368,7.197,182.368,7.198,182.368,7.2zM175.167,7.2c0,0.665,0.537,1.206,1.203,1.207c0.666,0.001,1.205,-0.537,1.207,-1.202c0,-0.001,0,-0.003,0,-0.005c0.002,-0.666,-0.537,-1.206,-1.201,-1.208c-0.666,-0.002,-1.207,0.537,-1.209,1.202C175.167,7.197,175.167,7.198,175.167,7.2zM167.967,7.2c-0.002,0.665,0.537,1.206,1.201,1.207c0.666,0.001,1.207,-0.537,1.207,-1.202c0,-0.001,0,-0.003,0,-0.005c0.002,-0.666,-0.535,-1.206,-1.201,-1.208c-0.666,-0.002,-1.207,0.537,-1.207,1.202C167.967,7.197,167.967,7.198,167.967,7.2zM160.767,7.2c-0.001,0.665,0.536,1.206,1.202,1.207c0.664,0.001,1.205,-0.537,1.207,-1.202c0,-0.001,0,-0.003,0,-0.005c0.002,-0.666,-0.537,-1.206,-1.201,-1.208c-0.666,-0.001,-1.207,0.537,-1.208,1.202C160.767,7.197,160.767,7.198,160.767,7.2zM153.567,7.2c-0.002,0.665,0.537,1.206,1.202,1.207c0.665,0.001,1.206,-0.537,1.208,-1.202c0,-0.001,0,-0.003,0,-0.005c0.001,-0.666,-0.537,-1.206,-1.203,-1.208c-0.665,-0.001,-1.205,0.537,-1.207,1.202C153.567,7.197,153.567,7.198,153.567,7.2zM146.368,7.2c-0.002,0.665,0.536,1.206,1.201,1.207c0.666,0.001,1.206,-0.537,1.207,-1.202c0,-0.001,0,-0.003,0,-0.005c0.002,-0.666,-0.535,-1.206,-1.201,-1.208c-0.666,-0.001,-1.205,0.537,-1.207,1.202C146.368,7.197,146.368,7.198,146.368,7.2zM103.167,144c-0.002,0.664,0.535,1.205,1.201,1.207c0.666,0.004,1.207,-0.535,1.208,-1.199c0,-0.004,0,-0.006,0,-0.008c0.002,-0.666,-0.535,-1.207,-1.2,-1.209c-0.666,-0.002,-1.207,0.535,-1.209,1.201C103.167,143.995,103.167,143.999,103.167,144zM95.968,144c-0.002,0.664,0.535,1.205,1.201,1.207c0.666,0.004,1.207,-0.535,1.208,-1.199c0,-0.004,0,-0.006,0,-0.008c0.002,-0.666,-0.535,-1.207,-1.2,-1.209c-0.666,-0.002,-1.207,0.535,-1.209,1.201C95.968,143.995,95.968,143.999,95.968,144zM110.368,144c-0.002,0.664,0.535,1.205,1.2,1.207c0.665,0.004,1.206,-0.535,1.208,-1.199c0,-0.004,0,-0.006,0,-0.008c0.003,-0.666,-0.535,-1.207,-1.199,-1.209c-0.666,-0.002,-1.207,0.535,-1.209,1.201C110.368,143.995,110.368,143.999,110.368,144zM117.567,144c-0.002,0.664,0.535,1.205,1.201,1.207c0.665,0.004,1.206,-0.535,1.209,-1.199c0,-0.004,0,-0.006,0,-0.008c0.002,-0.666,-0.536,-1.207,-1.201,-1.209c-0.666,-0.002,-1.207,0.535,-1.209,1.201C117.567,143.995,117.567,143.999,117.567,144zM124.767,144c-0.003,0.664,0.534,1.205,1.2,1.207c0.666,0.004,1.207,-0.535,1.209,-1.199c0,-0.004,0,-0.006,0,-0.008c0.002,-0.666,-0.535,-1.207,-1.201,-1.209c-0.664,-0.002,-1.206,0.535,-1.208,1.201C124.767,143.995,124.767,143.999,124.767,144zM131.967,144c-0.002,0.664,0.537,1.205,1.201,1.207c0.666,0.002,1.207,-0.537,1.207,-1.203c0,-0.002,0,-0.004,0,-0.004c0.002,-0.666,-0.535,-1.207,-1.201,-1.209c-0.666,0,-1.207,0.537,-1.207,1.203C131.967,143.997,131.967,143.999,131.967,144zM139.167,144c0,0.664,0.537,1.205,1.203,1.207s1.205,-0.537,1.207,-1.203c0,-0.002,0,-0.004,0,-0.004c0.002,-0.666,-0.537,-1.207,-1.201,-1.209c-0.666,0,-1.207,0.537,-1.209,1.203C139.167,143.997,139.167,143.999,139.167,144zM146.368,144c-0.002,0.664,0.536,1.205,1.201,1.207c0.666,0.002,1.206,-0.537,1.207,-1.203c0,-0.002,0,-0.004,0,-0.004c0.002,-0.666,-0.535,-1.207,-1.201,-1.209c-0.666,0,-1.205,0.537,-1.207,1.203C146.368,143.997,146.368,143.999,146.368,144z"/>
38
+ <g id="_x30_.1.0.1">
39
+ <title id="0.1.0.1.0">layer 21</title>
40
+ <circle fill="none" cx="80.612" cy="12.96" stroke="#FFFFFF" id="_x30_.1.0.1.1" r="0.72" stroke-width="0.72"/>
41
+ <g id="_x30_.1.0.1.2">
42
+ <title id="0.1.0.1.2.0">text:MADE IN</title>
43
+ </g>
44
+ <g id="_x30_.1.0.1.3">
45
+ <title id="0.1.0.1.3.0">text:ITALY</title>
46
+ </g>
47
+ <g id="_x30_.1.0.1.4">
48
+ <title id="0.1.0.1.4.0">text:Prototype</title>
49
+ </g>
50
+ <g id="_x30_.1.0.1.5">
51
+ <title id="0.1.0.1.5.0">text:Limited</title>
52
+ </g>
53
+ <g id="_x30_.1.0.1.6">
54
+ <title id="0.1.0.1.6.0">text:Edition</title>
55
+ </g>
56
+ <g id="_x30_.1.0.1.7">
57
+ <g id="_x30_.1.0.1.7.0">
58
+ <g transform="matrix(1, 0, 0, 1, 102.569, 12.24)">
59
+ <g id="_x30_.1.0.1.7.0.0">
60
+ <g id="_x30_.1.0.1.7.0.0.0">
61
+ <g transform="rotate(-90)">
62
+ <g id="_x30_.1.0.1.7.0.0.0.0">
63
+ <g id="_x30_.1.0.1.7.0.0.0.0.0">
64
+ <g transform="matrix(1, 0, 0, 1, -5.1472, -0.9391)">
65
+ <g id="_x30_.1.0.1.7.0.0.0.0.0.0">
66
+ <g transform="matrix(1, 0, 0, 1, -3.05176e-05, -3.05176e-05)">
67
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.1.7.0.0.0.0.0.0.0" font-size="3.75">13</text>
68
+ </g>
69
+ </g>
70
+ </g>
71
+ </g>
72
+ </g>
73
+ </g>
74
+ </g>
75
+ </g>
76
+ </g>
77
+ </g>
78
+ </g>
79
+ <g id="_x30_.1.0.1.8">
80
+ <g id="_x30_.1.0.1.8.0">
81
+ <g transform="matrix(1, 0, 0, 1, 109.769, 12.24)">
82
+ <g id="_x30_.1.0.1.8.0.0">
83
+ <g id="_x30_.1.0.1.8.0.0.0">
84
+ <g transform="rotate(-90)">
85
+ <g id="_x30_.1.0.1.8.0.0.0.0">
86
+ <g id="_x30_.1.0.1.8.0.0.0.0.0">
87
+ <g transform="matrix(1, 0, 0, 1, -5.1472, -0.9384)">
88
+ <g id="_x30_.1.0.1.8.0.0.0.0.0.0">
89
+ <g transform="matrix(1, 0, 0, 1, -3.05176e-05, 0)">
90
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.1.8.0.0.0.0.0.0.0" font-size="3.75">12</text>
91
+ </g>
92
+ </g>
93
+ </g>
94
+ </g>
95
+ </g>
96
+ </g>
97
+ </g>
98
+ </g>
99
+ </g>
100
+ </g>
101
+ </g>
102
+ <g id="_x30_.1.0.1.9">
103
+ <g id="_x30_.1.0.1.9.0">
104
+ <g transform="matrix(1, 0, 0, 1, 116.969, 12.24)">
105
+ <g id="_x30_.1.0.1.9.0.0">
106
+ <g id="_x30_.1.0.1.9.0.0.0">
107
+ <g transform="rotate(-90)">
108
+ <g id="_x30_.1.0.1.9.0.0.0.0">
109
+ <g id="_x30_.1.0.1.9.0.0.0.0.0">
110
+ <g transform="matrix(1, 0, 0, 1, -5.1472, -0.9392)">
111
+ <g id="_x30_.1.0.1.9.0.0.0.0.0.0">
112
+ <g transform="matrix(1, 0, 0, 1, -3.05176e-05, 0)">
113
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.1.9.0.0.0.0.0.0.0" font-size="3.75">11</text>
114
+ </g>
115
+ </g>
116
+ </g>
117
+ </g>
118
+ </g>
119
+ </g>
120
+ </g>
121
+ </g>
122
+ </g>
123
+ </g>
124
+ </g>
125
+ <g id="_x30_.1.0.1.10">
126
+ <g id="_x30_.1.0.1.10.0">
127
+ <g transform="matrix(1, 0, 0, 1, 124.169, 12.24)">
128
+ <g id="_x30_.1.0.1.10.0.0">
129
+ <g id="_x30_.1.0.1.10.0.0.0">
130
+ <g transform="rotate(-90)">
131
+ <g id="_x30_.1.0.1.10.0.0.0.0">
132
+ <g id="_x30_.1.0.1.10.0.0.0.0.0">
133
+ <g transform="matrix(1, 0, 0, 1, -5.1472, -0.94)">
134
+ <g id="_x30_.1.0.1.10.0.0.0.0.0.0">
135
+ <g transform="matrix(1, 0, 0, 1, -3.05176e-05, 0)">
136
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.1.10.0.0.0.0.0.0.0" font-size="3.75">10</text>
137
+ </g>
138
+ </g>
139
+ </g>
140
+ </g>
141
+ </g>
142
+ </g>
143
+ </g>
144
+ </g>
145
+ </g>
146
+ </g>
147
+ </g>
148
+ <g id="_x30_.1.0.1.11">
149
+ <g id="_x30_.1.0.1.11.0">
150
+ <g transform="matrix(1, 0, 0, 1, 131.369, 12.24)">
151
+ <g id="_x30_.1.0.1.11.0.0">
152
+ <g id="_x30_.1.0.1.11.0.0.0">
153
+ <g transform="rotate(-90)">
154
+ <g id="_x30_.1.0.1.11.0.0.0.0">
155
+ <g id="_x30_.1.0.1.11.0.0.0.0.0">
156
+ <g transform="matrix(1, 0, 0, 1, -2.4402, -0.9388)">
157
+ <g id="_x30_.1.0.1.11.0.0.0.0.0.0">
158
+ <g transform="matrix(1, 0, 0, 1, 0, -6.10352e-05)">
159
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.1.11.0.0.0.0.0.0.0" font-size="3.75">9</text>
160
+ </g>
161
+ </g>
162
+ </g>
163
+ </g>
164
+ </g>
165
+ </g>
166
+ </g>
167
+ </g>
168
+ </g>
169
+ </g>
170
+ </g>
171
+ <g id="_x30_.1.0.1.12">
172
+ <g id="_x30_.1.0.1.12.0">
173
+ <g transform="matrix(1, 0, 0, 1, 138.569, 12.24)">
174
+ <g id="_x30_.1.0.1.12.0.0">
175
+ <g id="_x30_.1.0.1.12.0.0.0">
176
+ <g transform="rotate(-90)">
177
+ <g id="_x30_.1.0.1.12.0.0.0.0">
178
+ <g id="_x30_.1.0.1.12.0.0.0.0.0">
179
+ <g transform="matrix(1, 0, 0, 1, -2.4402, -0.9396)">
180
+ <g id="_x30_.1.0.1.12.0.0.0.0.0.0">
181
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.1.12.0.0.0.0.0.0.0" font-size="3.75">8</text>
182
+ </g>
183
+ </g>
184
+ </g>
185
+ </g>
186
+ </g>
187
+ </g>
188
+ </g>
189
+ </g>
190
+ </g>
191
+ </g>
192
+ <g id="_x30_.1.0.1.13">
193
+ <g id="_x30_.1.0.1.13.0">
194
+ <g transform="matrix(1, 0, 0, 1, 150.089, 12.24)">
195
+ <g id="_x30_.1.0.1.13.0.0">
196
+ <g id="_x30_.1.0.1.13.0.0.0">
197
+ <g transform="rotate(-90)">
198
+ <g id="_x30_.1.0.1.13.0.0.0.0">
199
+ <g id="_x30_.1.0.1.13.0.0.0.0.0">
200
+ <g transform="matrix(1, 0, 0, 1, -2.4402, -0.9401)">
201
+ <g id="_x30_.1.0.1.13.0.0.0.0.0.0">
202
+ <g transform="matrix(1, 0, 0, 1, 0, 6.10352e-05)">
203
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.1.13.0.0.0.0.0.0.0" font-size="3.75">7</text>
204
+ </g>
205
+ </g>
206
+ </g>
207
+ </g>
208
+ </g>
209
+ </g>
210
+ </g>
211
+ </g>
212
+ </g>
213
+ </g>
214
+ </g>
215
+ <g id="_x30_.1.0.1.14">
216
+ <g id="_x30_.1.0.1.14.0">
217
+ <g transform="matrix(1, 0, 0, 1, 157.289, 12.24)">
218
+ <g id="_x30_.1.0.1.14.0.0">
219
+ <g id="_x30_.1.0.1.14.0.0.0">
220
+ <g transform="rotate(-90)">
221
+ <g id="_x30_.1.0.1.14.0.0.0.0">
222
+ <g id="_x30_.1.0.1.14.0.0.0.0.0">
223
+ <g transform="matrix(1, 0, 0, 1, -2.4402, -0.9389)">
224
+ <g id="_x30_.1.0.1.14.0.0.0.0.0.0">
225
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.1.14.0.0.0.0.0.0.0" font-size="3.75">6</text>
226
+ </g>
227
+ </g>
228
+ </g>
229
+ </g>
230
+ </g>
231
+ </g>
232
+ </g>
233
+ </g>
234
+ </g>
235
+ </g>
236
+ <g id="_x30_.1.0.1.15">
237
+ <g id="_x30_.1.0.1.15.0">
238
+ <g transform="matrix(1, 0, 0, 1, 164.489, 12.24)">
239
+ <g id="_x30_.1.0.1.15.0.0">
240
+ <g id="_x30_.1.0.1.15.0.0.0">
241
+ <g transform="rotate(-90)">
242
+ <g id="_x30_.1.0.1.15.0.0.0.0">
243
+ <g id="_x30_.1.0.1.15.0.0.0.0.0">
244
+ <g transform="matrix(1, 0, 0, 1, -2.4402, -0.9397)">
245
+ <g id="_x30_.1.0.1.15.0.0.0.0.0.0">
246
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.1.15.0.0.0.0.0.0.0" font-size="3.75">5</text>
247
+ </g>
248
+ </g>
249
+ </g>
250
+ </g>
251
+ </g>
252
+ </g>
253
+ </g>
254
+ </g>
255
+ </g>
256
+ </g>
257
+ <g id="_x30_.1.0.1.16">
258
+ <g id="_x30_.1.0.1.16.0">
259
+ <g transform="matrix(1, 0, 0, 1, 171.689, 12.24)">
260
+ <g id="_x30_.1.0.1.16.0.0">
261
+ <g id="_x30_.1.0.1.16.0.0.0">
262
+ <g transform="rotate(-90)">
263
+ <g id="_x30_.1.0.1.16.0.0.0.0">
264
+ <g id="_x30_.1.0.1.16.0.0.0.0.0">
265
+ <g transform="matrix(1, 0, 0, 1, -2.4402, -0.9405)">
266
+ <g id="_x30_.1.0.1.16.0.0.0.0.0.0">
267
+ <g transform="matrix(1, 0, 0, 1, 0, 6.10352e-05)">
268
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.1.16.0.0.0.0.0.0.0" font-size="3.75">4</text>
269
+ </g>
270
+ </g>
271
+ </g>
272
+ </g>
273
+ </g>
274
+ </g>
275
+ </g>
276
+ </g>
277
+ </g>
278
+ </g>
279
+ </g>
280
+ <g id="_x30_.1.0.1.17">
281
+ <g id="_x30_.1.0.1.17.0">
282
+ <g transform="matrix(1, 0, 0, 1, 178.889, 12.24)">
283
+ <g id="_x30_.1.0.1.17.0.0">
284
+ <g id="_x30_.1.0.1.17.0.0.0">
285
+ <g transform="rotate(-90)">
286
+ <g id="_x30_.1.0.1.17.0.0.0.0">
287
+ <g id="_x30_.1.0.1.17.0.0.0.0.0">
288
+ <g transform="matrix(1, 0, 0, 1, -2.4402, -0.9393)">
289
+ <g id="_x30_.1.0.1.17.0.0.0.0.0.0">
290
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.1.17.0.0.0.0.0.0.0" font-size="3.75">3</text>
291
+ </g>
292
+ </g>
293
+ </g>
294
+ </g>
295
+ </g>
296
+ </g>
297
+ </g>
298
+ </g>
299
+ </g>
300
+ </g>
301
+ <g id="_x30_.1.0.1.18">
302
+ <g id="_x30_.1.0.1.18.0">
303
+ <g transform="matrix(1, 0, 0, 1, 186.089, 12.24)">
304
+ <g id="_x30_.1.0.1.18.0.0">
305
+ <g id="_x30_.1.0.1.18.0.0.0">
306
+ <g transform="rotate(-90)">
307
+ <g id="_x30_.1.0.1.18.0.0.0.0">
308
+ <g id="_x30_.1.0.1.18.0.0.0.0.0">
309
+ <g transform="matrix(1, 0, 0, 1, -2.4402, -0.9401)">
310
+ <g id="_x30_.1.0.1.18.0.0.0.0.0.0">
311
+ <g transform="matrix(1, 0, 0, 1, 0, 6.10352e-05)">
312
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.1.18.0.0.0.0.0.0.0" font-size="3.75">2</text>
313
+ </g>
314
+ </g>
315
+ </g>
316
+ </g>
317
+ </g>
318
+ </g>
319
+ </g>
320
+ </g>
321
+ </g>
322
+ </g>
323
+ </g>
324
+ <g id="_x30_.1.0.1.20">
325
+ <title id="0.1.0.1.20.0">element:C1</title>
326
+ <g id="_x30_.1.0.1.20.1">
327
+ <title id="0.1.0.1.20.1.0">package:C0603-ROUND</title>
328
+ </g>
329
+ </g>
330
+ <g id="_x30_.1.0.1.21">
331
+ <title id="0.1.0.1.21.0">element:C2</title>
332
+ <g id="_x30_.1.0.1.21.1">
333
+ <title id="0.1.0.1.21.1.0">package:C0603-ROUND</title>
334
+ </g>
335
+ </g>
336
+ <g id="_x30_.1.0.1.22">
337
+ <title id="0.1.0.1.22.0">element:C3</title>
338
+ <g id="_x30_.1.0.1.22.1">
339
+ <title id="0.1.0.1.22.1.0">package:C0603-ROUND</title>
340
+ </g>
341
+ </g>
342
+ <g id="_x30_.1.0.1.23">
343
+ <title id="0.1.0.1.23.0">element:C4</title>
344
+ <g id="_x30_.1.0.1.23.1">
345
+ <title id="0.1.0.1.23.1.0">package:C0603-ROUND</title>
346
+ </g>
347
+ </g>
348
+ <g id="_x30_.1.0.1.24">
349
+ <title id="0.1.0.1.24.0">element:C5</title>
350
+ <g id="_x30_.1.0.1.24.1">
351
+ <title id="0.1.0.1.24.1.0">package:C0603-ROUND</title>
352
+ </g>
353
+ </g>
354
+ <g id="_x30_.1.0.1.25">
355
+ <title id="0.1.0.1.25.0">element:C6</title>
356
+ <g id="_x30_.1.0.1.25.1">
357
+ <title id="0.1.0.1.25.1.0">package:C0603-ROUND</title>
358
+ </g>
359
+ </g>
360
+ <g id="_x30_.1.0.1.26">
361
+ <title id="0.1.0.1.26.0">element:C7</title>
362
+ <g id="_x30_.1.0.1.26.1">
363
+ <title id="0.1.0.1.26.1.0">package:C0603-ROUND</title>
364
+ </g>
365
+ </g>
366
+ <g id="_x30_.1.0.1.27">
367
+ <title id="0.1.0.1.27.0">element:C8</title>
368
+ <g id="_x30_.1.0.1.27.1">
369
+ <title id="0.1.0.1.27.1.0">package:C0603-ROUND</title>
370
+ </g>
371
+ </g>
372
+ <g id="_x30_.1.0.1.28">
373
+ <title id="0.1.0.1.28.0">element:C9</title>
374
+ <g id="_x30_.1.0.1.28.1">
375
+ <title id="0.1.0.1.28.1.0">package:C0603-ROUND</title>
376
+ </g>
377
+ </g>
378
+ <g id="_x30_.1.0.1.29">
379
+ <title id="0.1.0.1.29.0">element:C11</title>
380
+ <g id="_x30_.1.0.1.29.1">
381
+ <title id="0.1.0.1.29.1.0">package:C0603-ROUND</title>
382
+ </g>
383
+ </g>
384
+ <g id="_x30_.1.0.1.31">
385
+ <title id="0.1.0.1.31.0">element:F1</title>
386
+ <g id="_x30_.1.0.1.31.1">
387
+ <title id="0.1.0.1.31.1.0">package:L1812</title>
388
+ </g>
389
+ </g>
390
+ <g id="_x30_.1.0.1.32">
391
+ <title id="0.1.0.1.32.0">element:FD1</title>
392
+ <g id="_x30_.1.0.1.32.1">
393
+ <title id="0.1.0.1.32.1.0">package:FIDUCIA-MOUNT</title>
394
+ </g>
395
+ </g>
396
+ <g id="_x30_.1.0.1.33">
397
+ <title id="0.1.0.1.33.0">element:FD2</title>
398
+ <g id="_x30_.1.0.1.33.1">
399
+ <title id="0.1.0.1.33.1.0">package:FIDUCIA-MOUNT</title>
400
+ </g>
401
+ </g>
402
+ <g id="_x30_.1.0.1.34">
403
+ <title id="0.1.0.1.34.0">element:FD3</title>
404
+ <g id="_x30_.1.0.1.34.1">
405
+ <title id="0.1.0.1.34.1.0">package:FIDUCIA-MOUNT</title>
406
+ </g>
407
+ </g>
408
+ <g id="_x30_.1.0.1.35">
409
+ <title id="0.1.0.1.35.0">element:GROUND</title>
410
+ <g id="_x30_.1.0.1.35.1">
411
+ <title id="0.1.0.1.35.1.0">package:SJ</title>
412
+ </g>
413
+ </g>
414
+ <g id="_x30_.1.0.1.40">
415
+ <title id="0.1.0.1.40.0">element:L</title>
416
+ <g id="_x30_.1.0.1.40.1">
417
+ <title id="0.1.0.1.40.1.0">text:L</title>
418
+ <g transform="matrix(1, 0, 0, 1, 88.3521, 36.1958)">
419
+ <g id="_x30_.1.0.1.40.1.1">
420
+ <g transform="matrix(1, 0, 0, 1, -6.10352e-05, 0)">
421
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.1.40.1.1.0" font-size="4.6771">L</text>
422
+ </g>
423
+ </g>
424
+ </g>
425
+ </g>
426
+ </g>
427
+ <g id="_x30_.1.0.1.44">
428
+ <title id="0.1.0.1.44.0">element:R1</title>
429
+ <g id="_x30_.1.0.1.44.1">
430
+ <title id="0.1.0.1.44.1.0">package:R0603-ROUND</title>
431
+ </g>
432
+ </g>
433
+ <g id="_x30_.1.0.1.45">
434
+ <title id="0.1.0.1.45.0">element:R2</title>
435
+ <g id="_x30_.1.0.1.45.1">
436
+ <title id="0.1.0.1.45.1.0">package:R0603-ROUND</title>
437
+ </g>
438
+ </g>
439
+ <g id="_x30_.1.0.1.46">
440
+ <title id="0.1.0.1.46.0">element:RN1</title>
441
+ <g id="_x30_.1.0.1.46.1">
442
+ <title id="0.1.0.1.46.1.0">package:CAY16</title>
443
+ </g>
444
+ </g>
445
+ <g id="_x30_.1.0.1.47">
446
+ <title id="0.1.0.1.47.0">element:RN2</title>
447
+ <g id="_x30_.1.0.1.47.1">
448
+ <title id="0.1.0.1.47.1.0">package:CAY16</title>
449
+ </g>
450
+ </g>
451
+ <g id="_x30_.1.0.1.48">
452
+ <title id="0.1.0.1.48.0">element:RN3</title>
453
+ <g id="_x30_.1.0.1.48.1">
454
+ <title id="0.1.0.1.48.1.0">package:CAY16</title>
455
+ </g>
456
+ </g>
457
+ <g id="_x30_.1.0.1.49">
458
+ <title id="0.1.0.1.49.0">element:RN4</title>
459
+ <g id="_x30_.1.0.1.49.1">
460
+ <title id="0.1.0.1.49.1.0">package:CAY16</title>
461
+ </g>
462
+ </g>
463
+ <g id="_x30_.1.0.1.52">
464
+ <title id="0.1.0.1.52.0">element:Z1</title>
465
+ <g id="_x30_.1.0.1.52.1">
466
+ <title id="0.1.0.1.52.1.0">package:CT/CN0603</title>
467
+ </g>
468
+ </g>
469
+ <g id="_x30_.1.0.1.53">
470
+ <title id="0.1.0.1.53.0">element:Z2</title>
471
+ <g id="_x30_.1.0.1.53.1">
472
+ <title id="0.1.0.1.53.1.0">package:CT/CN0603</title>
473
+ </g>
474
+ </g>
475
+ </g>
476
+ <g id="_x30_.1.0.2">
477
+ <title id="0.1.0.2.0">layer 25</title>
478
+ <g id="_x30_.1.0.2.1">
479
+ <g id="_x30_.1.0.2.1.0">
480
+ <g transform="matrix(0, -1, 1, 0, 127.364, 138.997)">
481
+ <g id="_x30_.1.0.2.1.0.0">
482
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.1.0.0.0" font-size="3.3408">5V</text>
483
+ </g>
484
+ </g>
485
+ </g>
486
+ </g>
487
+ <g id="_x30_.1.0.2.2">
488
+ <title id="0.1.0.2.2.0">text:A0</title>
489
+ <g transform="matrix(-4.37114e-08, -1, 1, -4.37114e-08, 163.219, 138.997)">
490
+ <g id="_x30_.1.0.2.2.1">
491
+ <g transform="matrix(1, 0, 0, 1, 0, 6.10352e-05)">
492
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.2.1.0" font-size="3.3408">A0</text>
493
+ </g>
494
+ </g>
495
+ </g>
496
+ </g>
497
+ <g id="_x30_.1.0.2.3">
498
+ <g id="_x30_.1.0.2.3.0">
499
+ <g transform="matrix(1, 0, 0, 1, 175.672, 130.811)">
500
+ <g id="_x30_.1.0.2.3.0.0">
501
+ <g transform="matrix(1, 0, 0, 1, 0, 3.05176e-05)">
502
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.3.0.0.0" font-size="3.6749">ANALOG IN</text>
503
+ </g>
504
+ </g>
505
+ </g>
506
+ </g>
507
+ </g>
508
+ <g id="_x30_.1.0.2.4">
509
+ <g id="_x30_.1.0.2.4.0">
510
+ <g transform="matrix(1, 0, 0, 1, 87.8933, 11.8426)">
511
+ <g id="_x30_.1.0.2.4.0.0">
512
+ <g id="_x30_.1.0.2.4.0.0.0">
513
+ <g transform="rotate(-90)">
514
+ <g id="_x30_.1.0.2.4.0.0.0.0">
515
+ <g id="_x30_.1.0.2.4.0.0.0.0.0">
516
+ <g transform="matrix(1, 0, 0, 1, -11.0056, -0.9392)">
517
+ <g id="_x30_.1.0.2.4.0.0.0.0.0.0">
518
+ <g transform="matrix(1, 0, 0, 1, 6.10352e-05, 3.05176e-05)">
519
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.4.0.0.0.0.0.0.0" font-size="3.75">AREF</text>
520
+ </g>
521
+ </g>
522
+ </g>
523
+ </g>
524
+ </g>
525
+ </g>
526
+ </g>
527
+ </g>
528
+ </g>
529
+ </g>
530
+ </g>
531
+ <g id="_x30_.1.0.2.5">
532
+ <title id="0.1.0.2.5.0">text:1</title>
533
+ <g transform="matrix(1, 0, 0, 1, 191.131, 64.604)">
534
+ <g id="_x30_.1.0.2.5.1">
535
+ <g transform="matrix(1, 0, 0, 1, 6.10352e-05, 0)">
536
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.5.1.0" font-size="4.176">1</text>
537
+ </g>
538
+ </g>
539
+ </g>
540
+ </g>
541
+ <g id="_x30_.1.0.2.6">
542
+ <g id="_x30_.1.0.2.6.0">
543
+ <g transform="matrix(1, 0, 0, 1, 95.4223, 11.9146)">
544
+ <g id="_x30_.1.0.2.6.0.0">
545
+ <g id="_x30_.1.0.2.6.0.0.0">
546
+ <g transform="rotate(-90)">
547
+ <g id="_x30_.1.0.2.6.0.0.0.0">
548
+ <g id="_x30_.1.0.2.6.0.0.0.0.0">
549
+ <g transform="matrix(1, 0, 0, 1, -8.246, -0.9399)">
550
+ <g id="_x30_.1.0.2.6.0.0.0.0.0.0">
551
+ <g transform="matrix(1, 0, 0, 1, -3.05176e-05, 3.05176e-05)">
552
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.6.0.0.0.0.0.0.0" font-size="3.75">GND</text>
553
+ </g>
554
+ </g>
555
+ </g>
556
+ </g>
557
+ </g>
558
+ </g>
559
+ </g>
560
+ </g>
561
+ </g>
562
+ </g>
563
+ </g>
564
+ <g id="_x30_.1.0.2.7">
565
+ <title id="0.1.0.2.7.0">text:M.Banzi</title>
566
+ </g>
567
+ <g id="_x30_.1.0.2.8">
568
+ <title id="0.1.0.2.8.0">text:D.Cuartielles</title>
569
+ </g>
570
+ <g id="_x30_.1.0.2.9">
571
+ <title id="0.1.0.2.9.0">text:D.Mellis</title>
572
+ </g>
573
+ <g id="_x30_.1.0.2.10">
574
+ <title id="0.1.0.2.10.0">text:TX</title>
575
+ <g transform="matrix(1, 0, 0, 1, 84.5728, 49.3169)">
576
+ <g id="_x30_.1.0.2.10.1">
577
+ <g transform="matrix(1, 0, 0, 1, -6.10352e-05, 0)">
578
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.10.1.0" font-size="4.6771">TX</text>
579
+ </g>
580
+ </g>
581
+ </g>
582
+ </g>
583
+ <g id="_x30_.1.0.2.11">
584
+ <title id="0.1.0.2.11.0">text:RX</title>
585
+ <g transform="matrix(1, 0, 0, 1, 84.6489, 56.1567)">
586
+ <g id="_x30_.1.0.2.11.1">
587
+ <g transform="matrix(1, 0, 0, 1, 3.05176e-05, 3.05176e-05)">
588
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.11.1.0" font-size="4.6771">RX</text>
589
+ </g>
590
+ </g>
591
+ </g>
592
+ </g>
593
+ <g id="_x30_.1.0.2.12">
594
+ <title id="0.1.0.2.12.0">text:G.Martino</title>
595
+ </g>
596
+ <g id="_x30_.1.0.2.13">
597
+ <title id="0.1.0.2.13.0">text:T.Igoe</title>
598
+ </g>
599
+ <g id="_x30_.1.0.2.14">
600
+ <g id="_x30_.1.0.2.14.0">
601
+ <g transform="matrix(1, 0, 0, 1, 112.292, 138.6)">
602
+ <g id="_x30_.1.0.2.14.0.0">
603
+ <g id="_x30_.1.0.2.14.0.0.0">
604
+ <g transform="rotate(270)">
605
+ <g id="_x30_.1.0.2.14.0.0.0.0">
606
+ <g id="_x30_.1.0.2.14.0.0.0.0.0">
607
+ <g transform="matrix(1, 0, 0, 1, -9.15527e-05, -0.000488281)">
608
+ <g id="_x30_.1.0.2.14.0.0.0.0.0.0">
609
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.14.0.0.0.0.0.0.0" font-size="3.3408">RESET</text>
610
+ </g>
611
+ </g>
612
+ </g>
613
+ </g>
614
+ </g>
615
+ </g>
616
+ </g>
617
+ </g>
618
+ </g>
619
+ </g>
620
+ <g id="_x30_.1.0.2.15">
621
+ <g id="_x30_.1.0.2.15.0">
622
+ <g transform="matrix(1, 0, 0, 1, 120.212, 138.96)">
623
+ <g id="_x30_.1.0.2.15.0.0">
624
+ <g id="_x30_.1.0.2.15.0.0.0">
625
+ <g transform="rotate(270)">
626
+ <g id="_x30_.1.0.2.15.0.0.0.0">
627
+ <g id="_x30_.1.0.2.15.0.0.0.0.0">
628
+ <g transform="matrix(1, 0, 0, 1, 0.000534058, -0.000579834)">
629
+ <g id="_x30_.1.0.2.15.0.0.0.0.0.0">
630
+ <g transform="matrix(1, 0, 0, 1, 3.05176e-05, 6.10352e-05)">
631
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.15.0.0.0.0.0.0.0" font-size="3.3408">3V3</text>
632
+ </g>
633
+ </g>
634
+ </g>
635
+ </g>
636
+ </g>
637
+ </g>
638
+ </g>
639
+ </g>
640
+ </g>
641
+ </g>
642
+ </g>
643
+ <g id="_x30_.1.0.2.16">
644
+ <title id="0.1.0.2.16.0">text:A1</title>
645
+ <g transform="matrix(-4.37114e-08, -1, 1, -4.37114e-08, 170.418, 138.997)">
646
+ <g id="_x30_.1.0.2.16.1">
647
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.16.1.0" font-size="3.3408">A1</text>
648
+ </g>
649
+ </g>
650
+ </g>
651
+ <g id="_x30_.1.0.2.17">
652
+ <title id="0.1.0.2.17.0">text:A2</title>
653
+ <g transform="matrix(-4.37114e-08, -1, 1, -4.37114e-08, 177.622, 138.997)">
654
+ <g id="_x30_.1.0.2.17.1">
655
+ <g transform="matrix(1, 0, 0, 1, 0, 6.10352e-05)">
656
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.17.1.0" font-size="3.3408">A2</text>
657
+ </g>
658
+ </g>
659
+ </g>
660
+ </g>
661
+ <g id="_x30_.1.0.2.18">
662
+ <title id="0.1.0.2.18.0">text:A3</title>
663
+ <g transform="matrix(-4.37114e-08, -1, 1, -4.37114e-08, 184.819, 138.997)">
664
+ <g id="_x30_.1.0.2.18.1">
665
+ <g transform="matrix(1, 0, 0, 1, 0, 0.00012207)">
666
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.18.1.0" font-size="3.3408">A3</text>
667
+ </g>
668
+ </g>
669
+ </g>
670
+ </g>
671
+ <g id="_x30_.1.0.2.19">
672
+ <title id="0.1.0.2.19.0">text:A4</title>
673
+ <g transform="matrix(-4.37114e-08, -1, 1, -4.37114e-08, 192.02, 138.997)">
674
+ <g id="_x30_.1.0.2.19.1">
675
+ <g transform="matrix(1, 0, 0, 1, 0, 6.10352e-05)">
676
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.19.1.0" font-size="3.3408">A4</text>
677
+ </g>
678
+ </g>
679
+ </g>
680
+ </g>
681
+ <g id="_x30_.1.0.2.20">
682
+ <title id="0.1.0.2.20.0">text:A5</title>
683
+ <g transform="matrix(-4.37114e-08, -1, 1, -4.37114e-08, 199.219, 138.997)">
684
+ <g id="_x30_.1.0.2.20.1">
685
+ <g transform="matrix(1, 0, 0, 1, 0, 0.00012207)">
686
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.20.1.0" font-size="3.3408">A5</text>
687
+ </g>
688
+ </g>
689
+ </g>
690
+ </g>
691
+ <g id="_x30_.1.0.2.21">
692
+ <g id="_x30_.1.0.2.21.0">
693
+ <g transform="matrix(-4.37114e-08, -1, 1, -4.37114e-08, 148.965, 138.997)">
694
+ <g id="_x30_.1.0.2.21.0.0">
695
+ <g transform="matrix(1, 0, 0, 1, 0, 0.00012207)">
696
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.21.0.0.0" font-size="3.3408">VIN</text>
697
+ </g>
698
+ </g>
699
+ </g>
700
+ </g>
701
+ </g>
702
+ <g id="_x30_.1.0.2.22">
703
+ <g id="_x30_.1.0.2.22.0">
704
+ <g transform="matrix(-4.37114e-08, -1, 1, -4.37114e-08, 134.561, 138.997)">
705
+ <g id="_x30_.1.0.2.22.0.0">
706
+ <g transform="matrix(1, 0, 0, 1, 0, 0.00012207)">
707
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.22.0.0.0" font-size="3.3408">GND</text>
708
+ </g>
709
+ </g>
710
+ </g>
711
+ </g>
712
+ </g>
713
+ <g id="_x30_.1.0.2.23">
714
+ <g id="_x30_.1.0.2.23.0">
715
+ <g transform="matrix(-4.37114e-08, -1, 1, -4.37114e-08, 141.557, 138.959)">
716
+ <g id="_x30_.1.0.2.23.0.0">
717
+ <g transform="matrix(1, 0, 0, 1, 3.05176e-05, 0.00012207)">
718
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.23.0.0.0" font-size="3.3408">GND</text>
719
+ </g>
720
+ </g>
721
+ </g>
722
+ </g>
723
+ </g>
724
+ <g id="_x30_.1.0.2.24">
725
+ <title id="0.1.0.2.24.0">text:[#=PWM]</title>
726
+ <g transform="matrix(1, 0, 0, 1, 145.157, 27.2759)">
727
+ <g id="_x30_.1.0.2.24.1">
728
+ <g transform="matrix(1, 0, 0, 1, 0.00012207, -3.05176e-05)">
729
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.24.1.0" font-size="3.6749">DIGITAL (PWM=</text>
730
+ </g>
731
+ </g>
732
+ </g>
733
+ <g transform="matrix(1, 0, 0, 1, 179.696, 27.2759)">
734
+ <g id="_x30_.1.0.2.24.2"/>
735
+ </g>
736
+ <g transform="matrix(1, 0, 0, 1, 182.028, 27.2759)">
737
+ <g id="_x30_.1.0.2.24.3">
738
+ <g transform="matrix(1, 0, 0, 1, 0.00012207, -3.05176e-05)">
739
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.24.3.0" font-size="3.6749">)</text>
740
+ </g>
741
+ </g>
742
+ </g>
743
+ </g>
744
+ <g id="_x30_.1.0.2.25">
745
+ <g id="_x30_.1.0.2.25.0">
746
+ <g transform="matrix(1, 0, 0, 1, 123.452, 22.68)">
747
+ <g id="_x30_.1.0.2.25.0.0">
748
+ <g id="_x30_.1.0.2.25.0.0.0">
749
+ <g transform="rotate(270)">
750
+ <g id="_x30_.1.0.2.25.0.0.0.0">
751
+ <g id="_x30_.1.0.2.25.0.0.0.0.0">
752
+ <g id="_x30_.1.0.2.25.0.0.0.0.0.0" enable-background="new ">
753
+ <path fill="#FFFFFF" id="_x30_.1.0.2.25.0.0.0.0.0.0.0" d="M1.565,-1.051c-0.021,-0.5,0.25,-0.756,0.596,-0.756c0.21,0,0.37,0.064,0.706,0.225c0.255,0.121,0.44,0.211,0.625,0.211c0.181,0,0.266,-0.145,0.271,-0.42l0.3,0C4.088,-1.23,3.798,-1.035,3.487,-1.035c-0.2,0,-0.38,-0.061,-0.726,-0.221C2.526,-1.371,2.341,-1.477,2.16,-1.477s-0.29,0.125,-0.3,0.426L1.565,-1.051z"/>
754
+ </g>
755
+ </g>
756
+ </g>
757
+ </g>
758
+ </g>
759
+ </g>
760
+ </g>
761
+ </g>
762
+ </g>
763
+ <g id="_x30_.1.0.2.26">
764
+ <g id="_x30_.1.0.2.26.0">
765
+ <g transform="matrix(1, 0, 0, 1, 123.452, 22.68)">
766
+ <g id="_x30_.1.0.2.26.0.0">
767
+ <g id="_x30_.1.0.2.26.0.0.0">
768
+ <g transform="rotate(270)">
769
+ <g id="_x30_.1.0.2.26.0.0.0.0">
770
+ <g id="_x30_.1.0.2.26.0.0.0.0.0">
771
+ <g id="_x30_.1.0.2.26.0.0.0.0.0.0" enable-background="new ">
772
+ <path fill="#FFFFFF" id="_x30_.1.0.2.26.0.0.0.0.0.0.0" d="M1.565,-8.473c-0.021,-0.5,0.25,-0.756,0.596,-0.756c0.21,0,0.37,0.064,0.706,0.225c0.255,0.121,0.44,0.211,0.625,0.211c0.181,0,0.266,-0.145,0.271,-0.42l0.3,0c0.025,0.561,-0.265,0.756,-0.576,0.756c-0.2,0,-0.38,-0.061,-0.726,-0.221C2.526,-8.793,2.341,-8.899,2.16,-8.899s-0.29,0.125,-0.3,0.426L1.565,-8.473L1.565,-8.473z"/>
773
+ </g>
774
+ </g>
775
+ </g>
776
+ </g>
777
+ </g>
778
+ </g>
779
+ </g>
780
+ </g>
781
+ </g>
782
+ <g id="_x30_.1.0.2.27">
783
+ <g id="_x30_.1.0.2.27.0">
784
+ <g transform="matrix(1, 0, 0, 1, 163.412, 19.08)">
785
+ <g id="_x30_.1.0.2.27.0.0">
786
+ <g id="_x30_.1.0.2.27.0.0.0">
787
+ <g transform="rotate(270)">
788
+ <g id="_x30_.1.0.2.27.0.0.0.0">
789
+ <g id="_x30_.1.0.2.27.0.0.0.0.0">
790
+ <g id="_x30_.1.0.2.27.0.0.0.0.0.0" enable-background="new ">
791
+ <path fill="#FFFFFF" id="_x30_.1.0.2.27.0.0.0.0.0.0.0" d="M0.994,-1.05c-0.02,-0.502,0.25,-0.756,0.596,-0.756c0.21,0,0.37,0.064,0.706,0.225C2.55,-1.46,2.735,-1.37,2.92,-1.37c0.181,0,0.266,-0.146,0.271,-0.422l0.3,0C3.516,-1.23,3.226,-1.036,2.915,-1.036c-0.2,0,-0.38,-0.059,-0.726,-0.219c-0.234,-0.115,-0.42,-0.221,-0.6,-0.221c-0.18,0,-0.29,0.125,-0.3,0.426L0.994,-1.05z"/>
792
+ </g>
793
+ </g>
794
+ </g>
795
+ </g>
796
+ </g>
797
+ </g>
798
+ </g>
799
+ </g>
800
+ </g>
801
+ <g id="_x30_.1.0.2.28">
802
+ <title id="0.1.0.2.28.0">text:#</title>
803
+ <g transform="matrix(1, 0, 0, 1, 177.812, 19.08)">
804
+ <g id="_x30_.1.0.2.28.1">
805
+ <g id="_x30_.1.0.2.28.1.0">
806
+ <g transform="rotate(270)">
807
+ <g id="_x30_.1.0.2.28.1.0.0">
808
+ <g id="_x30_.1.0.2.28.1.0.0.0">
809
+ <g id="_x30_.1.0.2.28.1.0.0.0.0" enable-background="new ">
810
+ <path fill="#FFFFFF" id="_x30_.1.0.2.28.1.0.0.0.0.0" d="M0.994,-1.051c-0.02,-0.501,0.25,-0.757,0.596,-0.757c0.21,0,0.37,0.063,0.706,0.226C2.55,-1.461,2.735,-1.371,2.92,-1.371c0.181,0,0.266,-0.146,0.271,-0.421l0.3,0c0.025,0.561,-0.265,0.756,-0.576,0.756c-0.2,0,-0.38,-0.061,-0.726,-0.22c-0.235,-0.115,-0.42,-0.222,-0.601,-0.222c-0.181,0,-0.29,0.125,-0.3,0.427L0.994,-1.051z"/>
811
+ </g>
812
+ </g>
813
+ </g>
814
+ </g>
815
+ </g>
816
+ </g>
817
+ </g>
818
+ </g>
819
+ <g id="_x30_.1.0.2.29">
820
+ <g id="_x30_.1.0.2.29.0">
821
+ <g transform="matrix(1, 0, 0, 1, 156.572, 19.08)">
822
+ <g id="_x30_.1.0.2.29.0.0">
823
+ <g id="_x30_.1.0.2.29.0.0.0">
824
+ <g transform="rotate(270)">
825
+ <g id="_x30_.1.0.2.29.0.0.0.0">
826
+ <g id="_x30_.1.0.2.29.0.0.0.0.0">
827
+ <g id="_x30_.1.0.2.29.0.0.0.0.0.0" enable-background="new ">
828
+ <path fill="#FFFFFF" id="_x30_.1.0.2.29.0.0.0.0.0.0.0" d="M0.994,-1.05c-0.02,-0.502,0.25,-0.756,0.596,-0.756c0.21,0,0.37,0.064,0.706,0.225C2.55,-1.46,2.735,-1.37,2.92,-1.37c0.181,0,0.266,-0.146,0.271,-0.422l0.3,0c0.025,0.561,-0.265,0.756,-0.576,0.756c-0.2,0,-0.38,-0.059,-0.726,-0.219c-0.234,-0.115,-0.42,-0.221,-0.6,-0.221c-0.18,0,-0.29,0.125,-0.3,0.426L0.994,-1.05z"/>
829
+ </g>
830
+ </g>
831
+ </g>
832
+ </g>
833
+ </g>
834
+ </g>
835
+ </g>
836
+ </g>
837
+ </g>
838
+ <g id="_x30_.1.0.2.30">
839
+ <g id="_x30_.1.0.2.30.0">
840
+ <g transform="matrix(1, 0, 0, 1, 130.292, 19.08)">
841
+ <g id="_x30_.1.0.2.30.0.0">
842
+ <g id="_x30_.1.0.2.30.0.0.0">
843
+ <g transform="rotate(270)">
844
+ <g id="_x30_.1.0.2.30.0.0.0.0">
845
+ <g id="_x30_.1.0.2.30.0.0.0.0.0">
846
+ <g id="_x30_.1.0.2.30.0.0.0.0.0.0" enable-background="new ">
847
+ <path fill="#FFFFFF" id="_x30_.1.0.2.30.0.0.0.0.0.0.0" d="M0.994,-1.051c-0.02,-0.5,0.25,-0.756,0.596,-0.756c0.21,0,0.37,0.064,0.706,0.225C2.55,-1.461,2.735,-1.372,2.92,-1.372c0.181,0,0.266,-0.146,0.271,-0.42l0.3,0c0.025,0.561,-0.265,0.756,-0.576,0.756c-0.2,0,-0.38,-0.063,-0.726,-0.221C1.954,-1.372,1.769,-1.48,1.588,-1.48c-0.181,0,-0.29,0.125,-0.3,0.429L0.994,-1.051L0.994,-1.051z"/>
848
+ </g>
849
+ </g>
850
+ </g>
851
+ </g>
852
+ </g>
853
+ </g>
854
+ </g>
855
+ </g>
856
+ </g>
857
+ <g id="_x30_.1.0.2.31">
858
+ <g id="_x30_.1.0.2.31.0">
859
+ <title id="0.1.0.2.31.0.0">text:Arduino</title>
860
+ <g transform="matrix(1, 0, 0, 1, 109.016, 55.1792)">
861
+ <g id="_x30_.1.0.2.31.0.1">
862
+ <g transform="matrix(1, 0, 0, 1, 6.10352e-05, 0)">
863
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.31.0.1.0" font-size="6.1209">Arduino</text>
864
+ </g>
865
+ </g>
866
+ </g>
867
+ </g>
868
+ <g id="_x30_.1.0.2.31.1">
869
+ <title id="0.1.0.2.31.1.0">text:TM</title>
870
+ <g transform="matrix(1, 0, 0, 1, 138.998, 51.5815)">
871
+ <g id="_x30_.1.0.2.31.1.1">
872
+ <g transform="matrix(1, 0, 0, 1, 0, 3.05176e-05)">
873
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.31.1.1.0" font-size="2.2258">TM</text>
874
+ </g>
875
+ </g>
876
+ </g>
877
+ </g>
878
+ </g>
879
+ <g id="_x30_.1.0.2.32">
880
+ <g id="_x30_.1.0.2.32.0">
881
+ <g transform="matrix(1, 0, 0, 1, 106.172, 138.6)">
882
+ <g id="_x30_.1.0.2.32.0.0">
883
+ <g id="_x30_.1.0.2.32.0.0.0">
884
+ <g transform="rotate(270)">
885
+ <g id="_x30_.1.0.2.32.0.0.0.0">
886
+ <g id="_x30_.1.0.2.32.0.0.0.0.0">
887
+ <g transform="matrix(1, 0, 0, 1, -9.15527e-05, -0.00012207)">
888
+ <g id="_x30_.1.0.2.32.0.0.0.0.0.0">
889
+ <g transform="matrix(1, 0, 0, 1, 0, 6.10352e-05)">
890
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.32.0.0.0.0.0.0.0" font-size="3.3408">IOREF</text>
891
+ </g>
892
+ </g>
893
+ </g>
894
+ </g>
895
+ </g>
896
+ </g>
897
+ </g>
898
+ </g>
899
+ </g>
900
+ </g>
901
+ </g>
902
+ <g id="_x30_.1.0.2.33">
903
+ <title id="0.1.0.2.33.0">text:SDA</title>
904
+ </g>
905
+ <g id="_x30_.1.0.2.34">
906
+ <title id="0.1.0.2.34.0">text:SCL</title>
907
+ </g>
908
+ <g id="_x30_.1.0.2.35">
909
+ <title id="0.1.0.2.35.0">element:AD</title>
910
+ <g id="_x30_.1.0.2.35.1">
911
+ <title id="0.1.0.2.35.1.0">package:1X06</title>
912
+ </g>
913
+ </g>
914
+ <g id="_x30_.1.0.2.36">
915
+ <title id="0.1.0.2.36.0">element:C1</title>
916
+ <g id="_x30_.1.0.2.36.1">
917
+ <title id="0.1.0.2.36.1.0">package:C0603-ROUND</title>
918
+ </g>
919
+ </g>
920
+ <g id="_x30_.1.0.2.37">
921
+ <title id="0.1.0.2.37.0">element:C2</title>
922
+ <g id="_x30_.1.0.2.37.1">
923
+ <title id="0.1.0.2.37.1.0">package:C0603-ROUND</title>
924
+ </g>
925
+ </g>
926
+ <g id="_x30_.1.0.2.38">
927
+ <title id="0.1.0.2.38.0">element:C3</title>
928
+ <g id="_x30_.1.0.2.38.1">
929
+ <title id="0.1.0.2.38.1.0">package:C0603-ROUND</title>
930
+ </g>
931
+ </g>
932
+ <g id="_x30_.1.0.2.39">
933
+ <title id="0.1.0.2.39.0">element:C4</title>
934
+ <g id="_x30_.1.0.2.39.1">
935
+ <title id="0.1.0.2.39.1.0">package:C0603-ROUND</title>
936
+ </g>
937
+ </g>
938
+ <g id="_x30_.1.0.2.40">
939
+ <title id="0.1.0.2.40.0">element:C5</title>
940
+ <g id="_x30_.1.0.2.40.1">
941
+ <title id="0.1.0.2.40.1.0">package:C0603-ROUND</title>
942
+ </g>
943
+ </g>
944
+ <g id="_x30_.1.0.2.41">
945
+ <title id="0.1.0.2.41.0">element:C6</title>
946
+ <g id="_x30_.1.0.2.41.1">
947
+ <title id="0.1.0.2.41.1.0">package:C0603-ROUND</title>
948
+ </g>
949
+ </g>
950
+ <g id="_x30_.1.0.2.42">
951
+ <title id="0.1.0.2.42.0">element:C7</title>
952
+ <g id="_x30_.1.0.2.42.1">
953
+ <title id="0.1.0.2.42.1.0">package:C0603-ROUND</title>
954
+ </g>
955
+ </g>
956
+ <g id="_x30_.1.0.2.43">
957
+ <title id="0.1.0.2.43.0">element:C8</title>
958
+ <g id="_x30_.1.0.2.43.1">
959
+ <title id="0.1.0.2.43.1.0">package:C0603-ROUND</title>
960
+ </g>
961
+ </g>
962
+ <g id="_x30_.1.0.2.44">
963
+ <title id="0.1.0.2.44.0">element:C9</title>
964
+ <g id="_x30_.1.0.2.44.1">
965
+ <title id="0.1.0.2.44.1.0">package:C0603-ROUND</title>
966
+ </g>
967
+ </g>
968
+ <g id="_x30_.1.0.2.45">
969
+ <title id="0.1.0.2.45.0">element:C11</title>
970
+ <g id="_x30_.1.0.2.45.1">
971
+ <title id="0.1.0.2.45.1.0">package:C0603-ROUND</title>
972
+ </g>
973
+ </g>
974
+ <g id="_x30_.1.0.2.46">
975
+ <title id="0.1.0.2.46.0">element:D1</title>
976
+ <g id="_x30_.1.0.2.46.1">
977
+ <title id="0.1.0.2.46.1.0">package:SMB</title>
978
+ </g>
979
+ </g>
980
+ <g id="_x30_.1.0.2.47">
981
+ <title id="0.1.0.2.47.0">element:D2</title>
982
+ <g id="_x30_.1.0.2.47.1">
983
+ <title id="0.1.0.2.47.1.0">package:MINIMELF</title>
984
+ </g>
985
+ </g>
986
+ <g id="_x30_.1.0.2.48">
987
+ <title id="0.1.0.2.48.0">element:D3</title>
988
+ <g id="_x30_.1.0.2.48.1">
989
+ <title id="0.1.0.2.48.1.0">package:MINIMELF</title>
990
+ </g>
991
+ </g>
992
+ <g id="_x30_.1.0.2.49">
993
+ <title id="0.1.0.2.49.0">element:F1</title>
994
+ <g id="_x30_.1.0.2.49.1">
995
+ <title id="0.1.0.2.49.1.0">package:L1812</title>
996
+ </g>
997
+ </g>
998
+ <g id="_x30_.1.0.2.50">
999
+ <title id="0.1.0.2.50.0">element:FD1</title>
1000
+ <g id="_x30_.1.0.2.50.1">
1001
+ <title id="0.1.0.2.50.1.0">package:FIDUCIA-MOUNT</title>
1002
+ </g>
1003
+ </g>
1004
+ <g id="_x30_.1.0.2.51">
1005
+ <title id="0.1.0.2.51.0">element:FD2</title>
1006
+ <g id="_x30_.1.0.2.51.1">
1007
+ <title id="0.1.0.2.51.1.0">package:FIDUCIA-MOUNT</title>
1008
+ </g>
1009
+ </g>
1010
+ <g id="_x30_.1.0.2.52">
1011
+ <title id="0.1.0.2.52.0">element:FD3</title>
1012
+ <g id="_x30_.1.0.2.52.1">
1013
+ <title id="0.1.0.2.52.1.0">package:FIDUCIA-MOUNT</title>
1014
+ </g>
1015
+ </g>
1016
+ <g id="_x30_.1.0.2.53">
1017
+ <title id="0.1.0.2.53.0">element:GROUND</title>
1018
+ <g id="_x30_.1.0.2.53.1">
1019
+ <title id="0.1.0.2.53.1.0">package:SJ</title>
1020
+ </g>
1021
+ </g>
1022
+ <g id="_x30_.1.0.2.54">
1023
+ <title id="0.1.0.2.54.0">element:ICSP</title>
1024
+ <g id="_x30_.1.0.2.54.1">
1025
+ <title id="0.1.0.2.54.1.0">text:ICSP</title>
1026
+ <g transform="matrix(1, 0, 0, 1, 194.553, 82.3349)">
1027
+ <g id="_x30_.1.0.2.54.1.1">
1028
+ <g id="_x30_.1.0.2.54.1.1.0">
1029
+ <g transform="rotate(270)">
1030
+ <g id="_x30_.1.0.2.54.1.1.0.0">
1031
+ <g id="_x30_.1.0.2.54.1.1.0.0.0">
1032
+ <g transform="matrix(1, 0, 0, 1, -0.7808, -0.783)">
1033
+ <g id="_x30_.1.0.2.54.1.1.0.0.0.0">
1034
+ <g transform="matrix(1, 0, 0, 1, -3.05176e-05, 0.00012207)">
1035
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.54.1.1.0.0.0.0.0" font-size="4.176">ICSP</text>
1036
+ </g>
1037
+ </g>
1038
+ </g>
1039
+ </g>
1040
+ </g>
1041
+ </g>
1042
+ </g>
1043
+ </g>
1044
+ </g>
1045
+ </g>
1046
+ <g id="_x30_.1.0.2.54.2">
1047
+ <title id="0.1.0.2.54.2.0">package:2X03</title>
1048
+ </g>
1049
+ </g>
1050
+ <g id="_x30_.1.0.2.55">
1051
+ <title id="0.1.0.2.55.0">element:ICSP</title>
1052
+ <g id="_x30_.1.0.2.55.1">
1053
+ <title id="0.1.0.2.55.1.0">text:ICSP</title>
1054
+ <g transform="matrix(1, 0, 0, 1, 194.553, 82.3349)">
1055
+ <g id="_x30_.1.0.2.55.1.1">
1056
+ <g id="_x30_.1.0.2.55.1.1.0">
1057
+ <g transform="rotate(270)">
1058
+ <g id="_x30_.1.0.2.55.1.1.0.0">
1059
+ <g id="_x30_.1.0.2.55.1.1.0.0.0">
1060
+ <g transform="matrix(0, 1, -1, 0, 50.2719, -135.181)">
1061
+ <g id="_x30_.1.0.2.55.1.1.0.0.0.0">
1062
+ <g transform="matrix(1, 0, 0, 1, 6.10352e-05, 0)">
1063
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.55.1.1.0.0.0.0.0" font-size="4.176">ICSP2</text>
1064
+ </g>
1065
+ </g>
1066
+ </g>
1067
+ </g>
1068
+ </g>
1069
+ </g>
1070
+ </g>
1071
+ </g>
1072
+ </g>
1073
+ </g>
1074
+ <g id="_x30_.1.0.2.55.2">
1075
+ <title id="0.1.0.2.55.2.0">package:2X03</title>
1076
+ </g>
1077
+ </g>
1078
+ <g id="_x30_.1.0.2.56">
1079
+ <title id="0.1.0.2.56.0">element:ICSP1</title>
1080
+ <g id="_x30_.1.0.2.56.1">
1081
+ <title id="0.1.0.2.56.1.0">package:2X03</title>
1082
+ </g>
1083
+ </g>
1084
+ <g id="_x30_.1.0.2.57">
1085
+ <title id="0.1.0.2.57.0">element:IOH</title>
1086
+ <g id="_x30_.1.0.2.57.1">
1087
+ <title id="0.1.0.2.57.1.0">package:1X10@1</title>
1088
+ </g>
1089
+ </g>
1090
+ <g id="_x30_.1.0.2.58">
1091
+ <title id="0.1.0.2.58.0">element:IOL</title>
1092
+ <g id="_x30_.1.0.2.58.1">
1093
+ <title id="0.1.0.2.58.1.0">package:1X08</title>
1094
+ </g>
1095
+ </g>
1096
+ <g id="_x30_.1.0.2.59">
1097
+ <title id="0.1.0.2.59.0">element:JP2</title>
1098
+ <g id="_x30_.1.0.2.59.1">
1099
+ <title id="0.1.0.2.59.1.0">package:2X02</title>
1100
+ </g>
1101
+ </g>
1102
+ <g id="_x30_.1.0.2.60">
1103
+ <title id="0.1.0.2.60.0">element:L</title>
1104
+ <g id="_x30_.1.0.2.60.1">
1105
+ <title id="0.1.0.2.60.1.0">package:CHIP-LED0805</title>
1106
+ </g>
1107
+ </g>
1108
+ <g id="_x30_.1.0.2.61">
1109
+ <title id="0.1.0.2.61.0">element:L1</title>
1110
+ <g id="_x30_.1.0.2.61.1">
1111
+ <title id="0.1.0.2.61.1.0">package:0805</title>
1112
+ </g>
1113
+ </g>
1114
+ <g id="_x30_.1.0.2.62">
1115
+ <title id="0.1.0.2.62.0">element:ON</title>
1116
+ <g id="_x30_.1.0.2.62.1">
1117
+ <title id="0.1.0.2.62.1.0">text:ON</title>
1118
+ <g transform="matrix(1, 0, 0, 1, 190.772, 49.3208)">
1119
+ <g id="_x30_.1.0.2.62.1.1">
1120
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.2.62.1.1.0" font-size="4.6771">ON</text>
1121
+ </g>
1122
+ </g>
1123
+ </g>
1124
+ <g id="_x30_.1.0.2.62.2">
1125
+ <title id="0.1.0.2.62.2.0">package:CHIP-LED0805</title>
1126
+ </g>
1127
+ </g>
1128
+ <g id="_x30_.1.0.2.63">
1129
+ <title id="0.1.0.2.63.0">element:PC1</title>
1130
+ <g id="_x30_.1.0.2.63.1">
1131
+ <title id="0.1.0.2.63.1.0">package:PANASONIC_D</title>
1132
+ </g>
1133
+ </g>
1134
+ <g id="_x30_.1.0.2.64">
1135
+ <title id="0.1.0.2.64.0">element:PC2</title>
1136
+ <g id="_x30_.1.0.2.64.1">
1137
+ <title id="0.1.0.2.64.1.0">package:PANASONIC_D</title>
1138
+ </g>
1139
+ </g>
1140
+ <g id="_x30_.1.0.2.65">
1141
+ <title id="0.1.0.2.65.0">element:R1</title>
1142
+ <g id="_x30_.1.0.2.65.1">
1143
+ <title id="0.1.0.2.65.1.0">package:R0603-ROUND</title>
1144
+ </g>
1145
+ </g>
1146
+ <g id="_x30_.1.0.2.66">
1147
+ <title id="0.1.0.2.66.0">element:R2</title>
1148
+ <g id="_x30_.1.0.2.66.1">
1149
+ <title id="0.1.0.2.66.1.0">package:R0603-ROUND</title>
1150
+ </g>
1151
+ </g>
1152
+ <g id="_x30_.1.0.2.67">
1153
+ <title id="0.1.0.2.67.0">element:RESET</title>
1154
+ <g id="_x30_.1.0.2.67.1">
1155
+ <title id="0.1.0.2.67.1.0">package:TS42</title>
1156
+ </g>
1157
+ </g>
1158
+ <g id="_x30_.1.0.2.68">
1159
+ <title id="0.1.0.2.68.0">element:RESET-EN</title>
1160
+ <g id="_x30_.1.0.2.68.1">
1161
+ <title id="0.1.0.2.68.1.0">package:SJ</title>
1162
+ </g>
1163
+ </g>
1164
+ <g id="_x30_.1.0.2.69">
1165
+ <title id="0.1.0.2.69.0">element:RN1</title>
1166
+ <g id="_x30_.1.0.2.69.1">
1167
+ <title id="0.1.0.2.69.1.0">package:CAY16</title>
1168
+ </g>
1169
+ </g>
1170
+ <g id="_x30_.1.0.2.70">
1171
+ <title id="0.1.0.2.70.0">element:RN2</title>
1172
+ <g id="_x30_.1.0.2.70.1">
1173
+ <title id="0.1.0.2.70.1.0">package:CAY16</title>
1174
+ </g>
1175
+ </g>
1176
+ <g id="_x30_.1.0.2.71">
1177
+ <title id="0.1.0.2.71.0">element:RN3</title>
1178
+ <g id="_x30_.1.0.2.71.1">
1179
+ <title id="0.1.0.2.71.1.0">package:CAY16</title>
1180
+ </g>
1181
+ </g>
1182
+ <g id="_x30_.1.0.2.72">
1183
+ <title id="0.1.0.2.72.0">element:RN4</title>
1184
+ <g id="_x30_.1.0.2.72.1">
1185
+ <title id="0.1.0.2.72.1.0">package:CAY16</title>
1186
+ </g>
1187
+ </g>
1188
+ <g id="_x30_.1.0.2.73">
1189
+ <title id="0.1.0.2.73.0">element:RX</title>
1190
+ <g id="_x30_.1.0.2.73.1">
1191
+ <title id="0.1.0.2.73.1.0">package:CHIP-LED0805</title>
1192
+ </g>
1193
+ </g>
1194
+ <g id="_x30_.1.0.2.74">
1195
+ <title id="0.1.0.2.74.0">element:T1</title>
1196
+ <g id="_x30_.1.0.2.74.1">
1197
+ <title id="0.1.0.2.74.1.0">package:SOT-23</title>
1198
+ </g>
1199
+ </g>
1200
+ <g id="_x30_.1.0.2.75">
1201
+ <title id="0.1.0.2.75.0">element:TX</title>
1202
+ <g id="_x30_.1.0.2.75.1">
1203
+ <title id="0.1.0.2.75.1.0">package:CHIP-LED0805</title>
1204
+ </g>
1205
+ </g>
1206
+ <g id="_x30_.1.0.2.76">
1207
+ <title id="0.1.0.2.76.0">element:U1</title>
1208
+ <g id="_x30_.1.0.2.76.1">
1209
+ <title id="0.1.0.2.76.1.0">package:SOT223</title>
1210
+ </g>
1211
+ </g>
1212
+ <g id="_x30_.1.0.2.77">
1213
+ <title id="0.1.0.2.77.0">element:U2</title>
1214
+ <g id="_x30_.1.0.2.77.1">
1215
+ <title id="0.1.0.2.77.1.0">package:SOT23-DBV</title>
1216
+ </g>
1217
+ </g>
1218
+ <g id="_x30_.1.0.2.78">
1219
+ <title id="0.1.0.2.78.0">element:U3</title>
1220
+ <g id="_x30_.1.0.2.78.1">
1221
+ <title id="0.1.0.2.78.1.0">package:MLF32</title>
1222
+ </g>
1223
+ </g>
1224
+ <g id="_x30_.1.0.2.79">
1225
+ <title id="0.1.0.2.79.0">element:U5</title>
1226
+ <g id="_x30_.1.0.2.79.1">
1227
+ <title id="0.1.0.2.79.1.0">package:MSOP08</title>
1228
+ </g>
1229
+ </g>
1230
+ <g id="_x30_.1.0.2.80">
1231
+ <title id="0.1.0.2.80.0">element:X1</title>
1232
+ <g id="_x30_.1.0.2.80.1">
1233
+ <title id="0.1.0.2.80.1.0">package:POWERSUPPLY_DC-21MM</title>
1234
+ </g>
1235
+ </g>
1236
+ <g id="_x30_.1.0.2.81">
1237
+ <title id="0.1.0.2.81.0">element:X2</title>
1238
+ <g id="_x30_.1.0.2.81.1">
1239
+ <title id="0.1.0.2.81.1.0">package:PN61729</title>
1240
+ </g>
1241
+ </g>
1242
+ <g id="_x30_.1.0.2.82">
1243
+ <title id="0.1.0.2.82.0">element:Y1</title>
1244
+ <g id="_x30_.1.0.2.82.1">
1245
+ <title id="0.1.0.2.82.1.0">package:QS</title>
1246
+ </g>
1247
+ </g>
1248
+ <g id="_x30_.1.0.2.83">
1249
+ <title id="0.1.0.2.83.0">element:Y2</title>
1250
+ <g id="_x30_.1.0.2.83.1">
1251
+ <title id="0.1.0.2.83.1.0">package:RESONATOR</title>
1252
+ </g>
1253
+ </g>
1254
+ <g id="_x30_.1.0.2.84">
1255
+ <title id="0.1.0.2.84.0">element:Z1</title>
1256
+ <g id="_x30_.1.0.2.84.1">
1257
+ <title id="0.1.0.2.84.1.0">package:CT/CN0603</title>
1258
+ </g>
1259
+ </g>
1260
+ <g id="_x30_.1.0.2.85">
1261
+ <title id="0.1.0.2.85.0">element:Z2</title>
1262
+ <g id="_x30_.1.0.2.85.1">
1263
+ <title id="0.1.0.2.85.1.0">package:CT/CN0603</title>
1264
+ </g>
1265
+ </g>
1266
+ <g id="_x30_.1.0.2.86">
1267
+ <title id="0.1.0.2.86.0">element:ZU4</title>
1268
+ <g id="_x30_.1.0.2.86.1">
1269
+ <title id="0.1.0.2.86.1.0">package:DIL28-3</title>
1270
+ </g>
1271
+ </g>
1272
+ </g>
1273
+ <rect width="14.173" x="67.405" y="45.833" fill="#333333" height="14.173" id="_x30_.1.0.6"/>
1274
+ <rect width="105.12" x="96.812" y="96.84" fill="#333333" height="15.84" id="_x30_.1.0.8"/>
1275
+ <circle fill="none" cx="161.972" cy="144" stroke="#9A916C" id="connector0pin" r="1.61" stroke-width="0.8113"/>
1276
+ <path fill="#9A916C" id="_x30_.1.0.10" d="M160.361,140.295l3.222,0l0,7.408l-3.222,0L160.361,140.295M160.361,144c0,0.889,0.722,1.605,1.61,1.605c0.89,0,1.609,-0.721,1.609,-1.605l0,0c0,-0.894,-0.724,-1.611,-1.609,-1.611C161.083,142.389,160.361,143.111,160.361,144z"/>
1277
+ <circle fill="none" cx="169.172" cy="144" stroke="#9A916C" id="connector1pin" r="1.61" stroke-width="0.8113"/>
1278
+ <path fill="#9A916C" id="_x30_.1.0.12" d="M167.561,140.295l3.221,0l0,7.408l-3.221,0L167.561,140.295M167.561,144c0,0.889,0.721,1.605,1.609,1.605c0.89,0,1.608,-0.721,1.608,-1.605l0,0c0,-0.894,-0.722,-1.611,-1.608,-1.611C168.282,142.389,167.561,143.111,167.561,144z"/>
1279
+ <circle fill="none" cx="176.372" cy="144" stroke="#9A916C" id="connector2pin" r="1.61" stroke-width="0.8113"/>
1280
+ <path fill="#9A916C" id="_x30_.1.0.14" d="M174.76,140.295l3.222,0l0,7.408l-3.222,0L174.76,140.295M174.76,144c0,0.889,0.722,1.605,1.611,1.605c0.889,0,1.606,-0.721,1.606,-1.605l0,0c0,-0.894,-0.726,-1.611,-1.606,-1.611C175.482,142.389,174.76,143.111,174.76,144z"/>
1281
+ <circle fill="none" cx="183.573" cy="144" stroke="#9A916C" id="connector3pin" r="1.61" stroke-width="0.8113"/>
1282
+ <path fill="#9A916C" id="_x30_.1.0.16" d="M181.961,140.295l3.221,0l0,7.408l-3.221,0L181.961,140.295M181.961,144c0,0.889,0.721,1.605,1.605,1.605c0.895,0,1.611,-0.721,1.611,-1.605l0,0c0,-0.894,-0.725,-1.611,-1.611,-1.611C182.682,142.389,181.961,143.111,181.961,144z"/>
1283
+ <circle fill="none" cx="190.772" cy="144" stroke="#9A916C" id="connector4pin" r="1.61" stroke-width="0.8113"/>
1284
+ <path fill="#9A916C" id="_x30_.1.0.18" d="M189.161,140.295l3.221,0l0,7.408l-3.221,0L189.161,140.295M189.161,144c0,0.889,0.721,1.605,1.611,1.605c0.889,0,1.609,-0.721,1.609,-1.605l0,0c0,-0.894,-0.721,-1.611,-1.609,-1.611C189.881,142.389,189.161,143.111,189.161,144z"/>
1285
+ <circle fill="none" cx="197.972" cy="144" stroke="#9A916C" id="connector5pin" r="1.61" stroke-width="0.8113"/>
1286
+ <path fill="#9A916C" id="_x30_.1.0.20" d="M196.361,140.295l3.222,0l0,7.408l-3.222,0L196.361,140.295M196.361,144c0,0.889,0.722,1.605,1.61,1.605c0.89,0,1.609,-0.721,1.609,-1.605l0,0c0,-0.894,-0.724,-1.611,-1.609,-1.611C197.083,142.389,196.361,143.111,196.361,144z"/>
1287
+ <circle fill="none" cx="198.333" cy="64.8" stroke="#9A916C" id="connector39pin" r="1.772" stroke-width="0.8504"/>
1288
+ <circle fill="none" cx="205.532" cy="64.8" stroke="#9A916C" id="connector40pin" r="1.772" stroke-width="0.8504"/>
1289
+ <circle fill="none" cx="198.333" cy="72" stroke="#9A916C" id="connector41pin" r="1.771" stroke-width="0.8504"/>
1290
+ <circle fill="none" cx="205.532" cy="72" stroke="#9A916C" id="connector42pin" r="1.771" stroke-width="0.8504"/>
1291
+ <circle fill="none" cx="198.333" cy="79.2" stroke="#9A916C" id="connector43pin" r="1.771" stroke-width="0.8504"/>
1292
+ <circle fill="none" cx="205.532" cy="79.2" stroke="#9A916C" id="connector44pin" r="1.771" stroke-width="0.8504"/>
1293
+ <circle fill="none" cx="77.012" cy="16.56" stroke="#9A916C" id="connector45pin" r="1.771" stroke-width="0.8504"/>
1294
+ <circle fill="none" cx="77.012" cy="23.76" stroke="#9A916C" id="connector46pin" r="1.772" stroke-width="0.8504"/>
1295
+ <circle fill="none" cx="69.812" cy="16.56" stroke="#9A916C" id="connector47pin" r="1.771" stroke-width="0.8504"/>
1296
+ <circle fill="none" cx="69.812" cy="23.76" stroke="#9A916C" id="connector48pin" r="1.772" stroke-width="0.8504"/>
1297
+ <circle fill="none" cx="62.611" cy="16.56" stroke="#9A916C" id="connector49pin" r="1.771" stroke-width="0.8504"/>
1298
+ <circle fill="none" cx="62.611" cy="23.76" stroke="#9A916C" id="connector50pin" r="1.772" stroke-width="0.8504"/>
1299
+ <circle fill="none" cx="136.051" cy="7.2" stroke="#9A916C" id="connector51pin" r="1.61" stroke-width="0.8113"/>
1300
+ <path fill="#9A916C" id="_x30_.1.0.34" d="M134.441,3.496l3.222,0l0,7.408l-3.222,0L134.441,3.496M134.441,7.2c0,0.889,0.722,1.61,1.61,1.61c0.89,0,1.609,-0.721,1.609,-1.61c0,-0.89,-0.724,-1.61,-1.609,-1.61C135.163,5.59,134.441,6.311,134.441,7.2z"/>
1301
+ <circle fill="none" cx="128.852" cy="7.2" stroke="#9A916C" id="connector52pin" r="1.61" stroke-width="0.8113"/>
1302
+ <path fill="#9A916C" id="_x30_.1.0.36" d="M127.241,3.496l3.221,0l0,7.408l-3.221,0L127.241,3.496M127.241,7.2c0,0.889,0.721,1.61,1.611,1.61c0.889,0,1.609,-0.721,1.609,-1.61c0,-0.89,-0.721,-1.61,-1.609,-1.61C127.961,5.59,127.241,6.311,127.241,7.2z"/>
1303
+ <circle fill="none" cx="121.652" cy="7.2" stroke="#9A916C" id="connector53pin" r="1.61" stroke-width="0.8113"/>
1304
+ <path fill="#9A916C" id="_x30_.1.0.38" d="M120.042,3.496l3.225,0l0,7.408l-3.225,0L120.042,3.496M120.042,7.2c0,0.889,0.725,1.61,1.609,1.61c0.891,0,1.611,-0.721,1.611,-1.61c0,-0.89,-0.721,-1.61,-1.611,-1.61C120.762,5.59,120.042,6.311,120.042,7.2z"/>
1305
+ <circle fill="none" cx="114.452" cy="7.2" stroke="#9A916C" id="connector54pin" r="1.61" stroke-width="0.8113"/>
1306
+ <path fill="#9A916C" id="_x30_.1.0.40" d="M112.84,3.496l3.221,0l0,7.408l-3.221,0L112.84,3.496M112.84,7.2c0,0.889,0.722,1.61,1.611,1.61c0.889,0,1.605,-0.721,1.605,-1.61c0,-0.89,-0.725,-1.61,-1.605,-1.61C113.562,5.59,112.84,6.311,112.84,7.2z"/>
1307
+ <circle fill="none" cx="107.252" cy="7.2" stroke="#9A916C" id="connector55pin" r="1.61" stroke-width="0.8113"/>
1308
+ <path fill="#9A916C" id="_x30_.1.0.42" d="M105.641,3.496l3.221,0l0,7.408l-3.221,0L105.641,3.496M105.641,7.2c0,0.889,0.721,1.61,1.609,1.61c0.89,0,1.607,-0.721,1.607,-1.61c0,-0.89,-0.721,-1.61,-1.607,-1.61C106.362,5.59,105.641,6.311,105.641,7.2z"/>
1309
+ <circle fill="none" cx="100.052" cy="7.2" stroke="#9A916C" id="connector56pin" r="1.61" stroke-width="0.8113"/>
1310
+ <path fill="#9A916C" id="_x30_.1.0.44" d="M98.441,3.496l3.221,0l0,7.408l-3.221,0L98.441,3.496M98.441,7.2c0,0.889,0.721,1.61,1.61,1.61c0.889,0,1.61,-0.721,1.61,-1.61c0,-0.89,-0.721,-1.61,-1.61,-1.61C99.162,5.59,98.441,6.311,98.441,7.2z"/>
1311
+ <circle fill="none" cx="92.852" cy="7.2" stroke="#9A916C" id="connector57pin" r="1.61" stroke-width="0.8113"/>
1312
+ <path fill="#9A916C" id="_x30_.1.0.46" d="M91.241,3.496l3.221,0l0,7.408l-3.221,0L91.241,3.496M91.241,7.2c0,0.889,0.721,1.61,1.61,1.61c0.89,0,1.61,-0.721,1.61,-1.61c0,-0.89,-0.721,-1.61,-1.61,-1.61S91.241,6.311,91.241,7.2z"/>
1313
+ <circle fill="none" cx="85.652" cy="7.2" stroke="#9A916C" id="connector58pin" r="1.61" stroke-width="0.8113"/>
1314
+ <path fill="#9A916C" id="_x30_.1.0.48" d="M84.042,3.496l3.221,0l0,7.408l-3.221,0L84.042,3.496M84.042,7.2c0,0.889,0.721,1.61,1.61,1.61c0.889,0,1.61,-0.721,1.61,-1.61c0,-0.89,-0.721,-1.61,-1.61,-1.61C84.762,5.59,84.042,6.311,84.042,7.2z"/>
1315
+ <circle fill="none" cx="78.452" cy="7.2" stroke="#9A916C" id="connector59pin" r="1.61" stroke-width="0.8113"/>
1316
+ <path fill="#9A916C" id="_x30_.1.0.50" d="M76.841,3.496l3.221,0l0,7.408l-3.221,0L76.841,3.496M76.841,7.2c0,0.889,0.721,1.61,1.61,1.61c0.889,0,1.61,-0.721,1.61,-1.61c0,-0.89,-0.721,-1.61,-1.61,-1.61C77.562,5.59,76.841,6.311,76.841,7.2z"/>
1317
+ <circle fill="none" cx="71.251" cy="7.2" stroke="#9A916C" id="connector60pin" r="1.61" stroke-width="0.8113"/>
1318
+ <path fill="#9A916C" id="_x30_.1.0.52" d="M69.641,3.496l3.221,0l0,7.408l-3.221,0L69.641,3.496M69.641,7.2c0,0.889,0.721,1.61,1.61,1.61c0.89,0,1.611,-0.721,1.611,-1.61c0,-0.89,-0.721,-1.61,-1.611,-1.61C70.362,5.59,69.641,6.311,69.641,7.2z"/>
1319
+ <circle fill="none" cx="197.972" cy="7.2" stroke="#9A916C" id="connector61pin" r="1.61" stroke-width="0.8113"/>
1320
+ <path fill="#9A916C" id="_x30_.1.0.54" d="M196.361,3.496l3.222,0l0,7.408l-3.222,0L196.361,3.496M196.361,7.2c0,0.889,0.722,1.61,1.61,1.61c0.89,0,1.609,-0.721,1.609,-1.61c0,-0.89,-0.724,-1.61,-1.609,-1.61C197.083,5.59,196.361,6.311,196.361,7.2z"/>
1321
+ <circle fill="none" cx="190.772" cy="7.2" stroke="#9A916C" id="connector62pin" r="1.61" stroke-width="0.8113"/>
1322
+ <path fill="#9A916C" id="_x30_.1.0.56" d="M189.161,3.496l3.221,0l0,7.408l-3.221,0L189.161,3.496M189.161,7.2c0,0.889,0.721,1.61,1.611,1.61c0.889,0,1.609,-0.721,1.609,-1.61c0,-0.89,-0.721,-1.61,-1.609,-1.61C189.881,5.59,189.161,6.311,189.161,7.2z"/>
1323
+ <circle fill="none" cx="183.573" cy="7.2" stroke="#9A916C" id="connector63pin" r="1.61" stroke-width="0.8113"/>
1324
+ <path fill="#9A916C" id="_x30_.1.0.58" d="M181.961,3.496l3.221,0l0,7.408l-3.221,0L181.961,3.496M181.961,7.2c0,0.889,0.721,1.61,1.605,1.61c0.895,0,1.611,-0.721,1.611,-1.61c0,-0.89,-0.725,-1.61,-1.611,-1.61C182.682,5.59,181.961,6.311,181.961,7.2z"/>
1325
+ <circle fill="none" cx="176.372" cy="7.2" stroke="#9A916C" id="connector64pin" r="1.61" stroke-width="0.8113"/>
1326
+ <path fill="#9A916C" id="_x30_.1.0.60" d="M174.76,3.496l3.222,0l0,7.408l-3.222,0L174.76,3.496M174.76,7.2c0,0.889,0.722,1.61,1.611,1.61c0.889,0,1.606,-0.721,1.606,-1.61c0,-0.89,-0.726,-1.61,-1.606,-1.61C175.482,5.59,174.76,6.311,174.76,7.2z"/>
1327
+ <circle fill="none" cx="169.172" cy="7.2" stroke="#9A916C" id="connector65pin" r="1.61" stroke-width="0.8113"/>
1328
+ <path fill="#9A916C" id="_x30_.1.0.62" d="M167.561,3.496l3.221,0l0,7.408l-3.221,0L167.561,3.496M167.561,7.2c0,0.889,0.721,1.61,1.609,1.61c0.89,0,1.608,-0.721,1.608,-1.61c0,-0.89,-0.722,-1.61,-1.608,-1.61C168.282,5.59,167.561,6.311,167.561,7.2z"/>
1329
+ <circle fill="none" cx="161.972" cy="7.2" stroke="#9A916C" id="connector66pin" r="1.61" stroke-width="0.8113"/>
1330
+ <path fill="#9A916C" id="_x30_.1.0.64" d="M160.361,3.496l3.222,0l0,7.408l-3.222,0L160.361,3.496M160.361,7.2c0,0.889,0.722,1.61,1.61,1.61c0.89,0,1.609,-0.721,1.609,-1.61c0,-0.89,-0.724,-1.61,-1.609,-1.61C161.083,5.59,160.361,6.311,160.361,7.2z"/>
1331
+ <circle fill="none" cx="154.772" cy="7.2" stroke="#9A916C" id="connector67pin" r="1.61" stroke-width="0.8113"/>
1332
+ <path fill="#9A916C" id="_x30_.1.0.66" d="M153.161,3.496l3.221,0l0,7.408l-3.221,0L153.161,3.496M153.161,7.2c0,0.889,0.721,1.61,1.611,1.61c0.889,0,1.609,-0.721,1.609,-1.61c0,-0.89,-0.721,-1.61,-1.609,-1.61C153.881,5.59,153.161,6.311,153.161,7.2z"/>
1333
+ <circle fill="none" cx="147.573" cy="7.2" stroke="#9A916C" id="connector68pin" r="1.61" stroke-width="0.8113"/>
1334
+ <path fill="#9A916C" id="_x30_.1.0.68" d="M145.961,3.496l3.221,0l0,7.408l-3.221,0L145.961,3.496M145.961,7.2c0,0.889,0.721,1.61,1.605,1.61c0.895,0,1.611,-0.721,1.611,-1.61c0,-0.89,-0.725,-1.61,-1.611,-1.61C146.682,5.59,145.961,6.311,145.961,7.2z"/>
1335
+ <circle fill="none" cx="104.372" cy="144" stroke="#9A916C" id="connector84pin" r="1.61" stroke-width="0.8113"/>
1336
+ <circle fill="none" cx="97.172" cy="144" stroke="#9A916C" id="connector91pin" r="1.61" stroke-width="0.8113"/>
1337
+ <path fill="#9A916C" id="_x30_.1.0.71" d="M102.761,140.295l3.221,0l0,7.408l-3.221,0L102.761,140.295M102.761,144c0,0.889,0.721,1.605,1.61,1.605c0.89,0,1.611,-0.721,1.611,-1.605l0,0c0,-0.894,-0.721,-1.611,-1.611,-1.611C103.482,142.389,102.761,143.111,102.761,144z"/>
1338
+ <path fill="#9A916C" id="_x30_.1.0.72" d="M95.562,140.295l3.221,0l0,7.408l-3.221,0L95.562,140.295M95.562,144c0,0.889,0.721,1.605,1.61,1.605c0.89,0,1.611,-0.721,1.611,-1.605l0,0c0,-0.894,-0.721,-1.611,-1.611,-1.611C96.282,142.389,95.562,143.111,95.562,144z"/>
1339
+ <circle fill="none" cx="111.573" cy="144" stroke="#9A916C" id="connector85pin" r="1.61" stroke-width="0.8113"/>
1340
+ <path fill="#9A916C" id="_x30_.1.0.74" d="M109.961,140.295l3.221,0l0,7.408l-3.221,0L109.961,140.295M109.961,144c0,0.889,0.721,1.605,1.605,1.605c0.895,0,1.611,-0.721,1.611,-1.605l0,0c0,-0.894,-0.725,-1.611,-1.611,-1.611C110.682,142.389,109.961,143.111,109.961,144z"/>
1341
+ <circle fill="none" cx="118.772" cy="144" stroke="#9A916C" id="connector86pin" r="1.61" stroke-width="0.8113"/>
1342
+ <path fill="#9A916C" id="_x30_.1.0.76" d="M117.161,140.295l3.221,0l0,7.408l-3.221,0L117.161,140.295M117.161,144c0,0.889,0.721,1.605,1.611,1.605c0.889,0,1.609,-0.721,1.609,-1.605l0,0c0,-0.894,-0.721,-1.611,-1.609,-1.611C117.881,142.389,117.161,143.111,117.161,144z"/>
1343
+ <circle fill="none" cx="125.972" cy="144" stroke="#9A916C" id="connector87pin" r="1.61" stroke-width="0.8113"/>
1344
+ <path fill="#9A916C" id="_x30_.1.0.78" d="M124.361,140.295l3.222,0l0,7.408l-3.222,0L124.361,140.295M124.361,144c0,0.889,0.722,1.605,1.61,1.605c0.89,0,1.609,-0.721,1.609,-1.605l0,0c0,-0.894,-0.724,-1.611,-1.609,-1.611C125.083,142.389,124.361,143.111,124.361,144z"/>
1345
+ <circle fill="none" cx="133.172" cy="144" stroke="#9A916C" id="connector88pin" r="1.61" stroke-width="0.8113"/>
1346
+ <path fill="#9A916C" id="_x30_.1.0.80" d="M131.561,140.295l3.221,0l0,7.408l-3.221,0L131.561,140.295M131.561,144c0,0.889,0.721,1.605,1.609,1.605c0.89,0,1.608,-0.721,1.608,-1.605l0,0c0,-0.894,-0.722,-1.611,-1.608,-1.611C132.282,142.389,131.561,143.111,131.561,144z"/>
1347
+ <circle fill="none" cx="140.372" cy="144" stroke="#9A916C" id="connector89pin" r="1.61" stroke-width="0.8113"/>
1348
+ <path fill="#9A916C" id="_x30_.1.0.82" d="M138.76,140.295l3.222,0l0,7.408l-3.222,0L138.76,140.295M138.76,144c0,0.889,0.722,1.605,1.611,1.605c0.889,0,1.606,-0.721,1.606,-1.605l0,0c0,-0.894,-0.726,-1.611,-1.606,-1.611C139.482,142.389,138.76,143.111,138.76,144z"/>
1349
+ <circle fill="none" cx="147.573" cy="144" stroke="#9A916C" id="connector90pin" r="1.61" stroke-width="0.8113"/>
1350
+ <path fill="#9A916C" id="_x30_.1.0.84" d="M145.961,140.295l3.221,0l0,7.408l-3.221,0L145.961,140.295M145.961,144c0,0.889,0.721,1.605,1.605,1.605c0.895,0,1.611,-0.721,1.611,-1.605l0,0c0,-0.894,-0.725,-1.611,-1.611,-1.611C146.682,142.389,145.961,143.111,145.961,144z"/>
1351
+ <line fill="none" stroke="#FFFFFF" id="_x30_.1.0.85" stroke-linecap="round" y1="29.16" stroke-width="0.864" x1="92.794" y2="29.16" x2="199.704"/>
1352
+ <line fill="none" stroke="#FFFFFF" id="_x30_.1.0.86" stroke-linecap="round" y1="126.206" stroke-width="0.864" x1="160.068" y2="126.206" x2="199.704"/>
1353
+ <g id="_x30_.1.0.87">
1354
+ <g id="_x30_.1.0.87.0">
1355
+ <g transform="matrix(1, 0, 0, 1, 137.956, 130.811)">
1356
+ <g id="_x30_.1.0.87.0.0">
1357
+ <g transform="matrix(1, 0, 0, 1, 0, 3.05176e-05)">
1358
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.87.0.0.0" font-size="3.6749">POWER</text>
1359
+ </g>
1360
+ </g>
1361
+ </g>
1362
+ </g>
1363
+ </g>
1364
+ <line fill="none" stroke="#FFFFFF" id="_x30_.1.0.88" stroke-linecap="round" y1="126.206" stroke-width="0.864" x1="115.172" y2="126.206" x2="151.085"/>
1365
+ <g id="_x30_.1.0.89">
1366
+ <g id="_x30_.1.0.89.0">
1367
+ <g transform="matrix(1, 0, 0, 1, 199.772, 16.2)">
1368
+ <g id="_x30_.1.0.89.0.0">
1369
+ <g id="_x30_.1.0.89.0.0.0">
1370
+ <g transform="rotate(270)">
1371
+ <g id="_x30_.1.0.89.0.0.0.0">
1372
+ <g id="_x30_.1.0.89.0.0.0.0.0">
1373
+ <g transform="matrix(1, 0, 0, 1, 1.5198, -0.0449)">
1374
+ <g id="_x30_.1.0.89.0.0.0.0.0.0">
1375
+ <g transform="matrix(1, 0, 0, 1, 3.05176e-05, 0)">
1376
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.89.0.0.0.0.0.0.0" font-size="3.75">0</text>
1377
+ </g>
1378
+ </g>
1379
+ </g>
1380
+ </g>
1381
+ </g>
1382
+ </g>
1383
+ </g>
1384
+ </g>
1385
+ </g>
1386
+ </g>
1387
+ </g>
1388
+ <g id="_x30_.1.0.90">
1389
+ <g id="_x30_.1.0.90.0">
1390
+ <g transform="matrix(1, 0, 0, 1, 192.572, 16.2)">
1391
+ <g id="_x30_.1.0.90.0.0">
1392
+ <g id="_x30_.1.0.90.0.0.0">
1393
+ <g transform="rotate(270)">
1394
+ <g id="_x30_.1.0.90.0.0.0.0">
1395
+ <g id="_x30_.1.0.90.0.0.0.0.0">
1396
+ <g transform="matrix(1, 0, 0, 1, 1.5198, -0.0441)">
1397
+ <g id="_x30_.1.0.90.0.0.0.0.0.0">
1398
+ <g transform="matrix(1, 0, 0, 1, 3.05176e-05, 0)">
1399
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.90.0.0.0.0.0.0.0" font-size="3.75">1</text>
1400
+ </g>
1401
+ </g>
1402
+ </g>
1403
+ </g>
1404
+ </g>
1405
+ </g>
1406
+ </g>
1407
+ </g>
1408
+ </g>
1409
+ </g>
1410
+ </g>
1411
+ <g id="_x30_.1.0.91">
1412
+ <g id="_x30_.1.0.91.0">
1413
+ <g transform="matrix(1, 0, 0, 1, 192.572, 30.96)">
1414
+ <g id="_x30_.1.0.91.0.0">
1415
+ <g id="_x30_.1.0.91.0.0.0">
1416
+ <g transform="rotate(270)">
1417
+ <g id="_x30_.1.0.91.0.0.0.0">
1418
+ <g id="_x30_.1.0.91.0.0.0.0.0">
1419
+ <g transform="matrix(1, 0, 0, 1, 3.524, -0.0441)">
1420
+ <g id="_x30_.1.0.91.0.0.0.0.0.0">
1421
+ <g transform="matrix(1, 0, 0, 1, -3.05176e-05, 0)">
1422
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.91.0.0.0.0.0.0.0" font-size="3.75">TX0</text>
1423
+ </g>
1424
+ </g>
1425
+ </g>
1426
+ </g>
1427
+ </g>
1428
+ </g>
1429
+ </g>
1430
+ </g>
1431
+ </g>
1432
+ </g>
1433
+ </g>
1434
+ <g id="_x30_.1.0.92">
1435
+ <g id="_x30_.1.0.92.0">
1436
+ <g transform="matrix(1, 0, 0, 1, 199.772, 30.96)">
1437
+ <g id="_x30_.1.0.92.0.0">
1438
+ <g id="_x30_.1.0.92.0.0.0">
1439
+ <g transform="rotate(270)">
1440
+ <g id="_x30_.1.0.92.0.0.0.0">
1441
+ <g id="_x30_.1.0.92.0.0.0.0.0">
1442
+ <g transform="matrix(1, 0, 0, 1, 3.524, -0.0449)">
1443
+ <g id="_x30_.1.0.92.0.0.0.0.0.0">
1444
+ <g transform="matrix(1, 0, 0, 1, -3.05176e-05, 0)">
1445
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.0.92.0.0.0.0.0.0.0" font-size="3.75">RX0</text>
1446
+ </g>
1447
+ </g>
1448
+ </g>
1449
+ </g>
1450
+ </g>
1451
+ </g>
1452
+ </g>
1453
+ </g>
1454
+ </g>
1455
+ </g>
1456
+ </g>
1457
+ <g id="_x30_.1.0.93">
1458
+ <path fill="#FFFFFF" id="_x30_.1.0.93.0" d="M192.11,18.007c-0.004,0,-0.01,0,-0.014,0l-1.945,0c-0.125,0,-0.236,-0.068,-0.297,-0.179c-0.061,-0.11,-0.053,-0.243,0.018,-0.347l0.978,-1.459c0.125,-0.188,0.438,-0.188,0.563,0l0.93,1.394c0.066,0.062,0.113,0.152,0.113,0.253C192.448,17.856,192.297,18.007,192.11,18.007z"/>
1459
+ </g>
1460
+ <g id="_x30_.1.0.94">
1461
+ <path fill="#FFFFFF" id="_x30_.1.0.94.0" d="M197.409,15.88c0.006,0,0.01,0,0.016,0l1.939,0c0.125,0,0.238,0.068,0.301,0.178c0.063,0.111,0.053,0.244,-0.02,0.348l-0.973,1.459c-0.125,0.188,-0.438,0.188,-0.563,0l-0.93,-1.396c-0.07,-0.063,-0.113,-0.151,-0.113,-0.252C197.07,16.032,197.222,15.88,197.409,15.88z"/>
1462
+ </g>
1463
+ <g id="_x30_.1.0.95">
1464
+ <path fill="#FFFFFF" id="_x30_.1.0.95.0" d="M179.901,26.121c-0.021,-0.549,0.273,-0.829,0.653,-0.829c0.229,0,0.405,0.071,0.774,0.247c0.276,0.132,0.479,0.23,0.687,0.23c0.198,0,0.291,-0.159,0.297,-0.461l0.329,0c0.027,0.615,-0.291,0.829,-0.631,0.829c-0.221,0,-0.418,-0.066,-0.797,-0.242c-0.258,-0.126,-0.461,-0.242,-0.659,-0.242s-0.318,0.138,-0.329,0.467L179.901,26.121L179.901,26.121z"/>
1465
+ </g>
1466
+ <g id="_x30_.1.0.96">
1467
+ <g id="_x30_.1.0.96.0">
1468
+ <g id="_x30_.1.0.96.0.0">
1469
+ <path fill="#FFFFFF" id="_x30_.1.0.96.0.0.0" d="M125.862,37.068c0.848,-0.93,1.498,-1.778,2.281,-2.478c2.966,-2.656,6.307,-3.641,10.131,-2.03c3.618,1.524,5.575,5.294,4.788,9.14c-0.726,3.549,-4.138,6.252,-7.864,6.379c-3.453,0.117,-6.047,-1.427,-8.21,-3.934c-0.331,-0.385,-0.646,-0.786,-1.063,-1.297c-0.299,0.351,-0.533,0.618,-0.758,0.899c-2.313,2.913,-5.187,4.567,-9.047,4.32c-3.785,-0.243,-7.248,-3.72,-7.48,-7.501c-0.301,-4.792,3.354,-8.726,8.432,-8.769c3.362,-0.029,5.991,1.707,8.042,4.321C125.336,36.405,125.563,36.69,125.862,37.068z"/>
1470
+ <path fill="#0F7391" id="_x30_.1.0.96.0.0.1" d="M117.56,34.457c-3.496,-0.006,-6.05,2.237,-6.332,5.133c-0.251,2.569,1.789,5.137,4.597,5.746c2.766,0.6,4.977,-0.55,6.643,-2.557c2.558,-3.073,2.466,-2.542,0.031,-5.591C121.145,35.492,119.297,34.542,117.56,34.457z"/>
1471
+ <path fill="#0F7391" id="_x30_.1.0.96.0.0.2" d="M134.883,34.434c-0.428,0.03,-0.74,0.019,-1.041,0.079c-2.965,0.599,-4.824,2.568,-6.221,5.082c-0.109,0.198,-0.113,0.564,-0.004,0.757c1.262,2.183,2.838,4.053,5.348,4.841c2.433,0.763,4.563,0.132,6.24,-1.735c1.504,-1.675,1.846,-3.656,0.852,-5.72C139.002,35.555,137.124,34.592,134.883,34.434z"/>
1472
+ </g>
1473
+ <g id="_x30_.1.0.96.0.1">
1474
+ <path fill="#FFFFFF" id="_x30_.1.0.96.0.1.0" d="M120.061,40.583c0,0.078,-0.063,0.142,-0.143,0.142l-5.168,0c-0.078,0,-0.145,-0.064,-0.145,-0.142l0,-1.561c0,-0.078,0.063,-0.142,0.145,-0.142l5.168,0c0.078,0,0.143,0.064,0.143,0.142L120.061,40.583z"/>
1475
+ </g>
1476
+ <g id="_x30_.1.0.96.0.2">
1477
+ <path fill="#FFFFFF" id="_x30_.1.0.96.0.2.0" d="M137.129,39.024c0,-0.078,-0.063,-0.142,-0.144,-0.142l-1.521,0c-0.077,0,-0.144,-0.064,-0.144,-0.142l0,-1.521c0,-0.078,-0.063,-0.142,-0.142,-0.142l-1.563,0c-0.078,0,-0.143,0.064,-0.143,0.142l0,1.521c0,0.078,-0.063,0.142,-0.143,0.142l-1.521,0c-0.078,0,-0.145,0.064,-0.145,0.142l0,1.561c0,0.078,0.063,0.142,0.145,0.142l1.521,0c0.078,0,0.143,0.064,0.143,0.142l0,1.52c0,0.078,0.063,0.142,0.143,0.142l1.563,0c0.076,0,0.142,-0.064,0.142,-0.142l0,-1.52c0,-0.078,0.063,-0.142,0.144,-0.142l1.521,0c0.078,0,0.144,-0.064,0.144,-0.142L137.129,39.024z"/>
1478
+ </g>
1479
+ <g id="_x30_.1.0.96.0.3">
1480
+ <circle fill="#FFFFFF" cx="172.388" cy="32.522" id="_x30_.1.0.96.0.3.0" r="0.568"/>
1481
+ <circle fill="#FFFFFF" cx="170.971" cy="32.522" id="_x30_.1.0.96.0.3.1" r="0.568"/>
1482
+ <circle fill="#FFFFFF" cx="169.554" cy="32.522" id="_x30_.1.0.96.0.3.2" r="0.568"/>
1483
+ <circle fill="#FFFFFF" cx="168.137" cy="32.522" id="_x30_.1.0.96.0.3.3" r="0.568"/>
1484
+ <circle fill="#FFFFFF" cx="166.72" cy="32.522" id="_x30_.1.0.96.0.3.4" r="0.568"/>
1485
+ <circle fill="#FFFFFF" cx="165.303" cy="32.522" id="_x30_.1.0.96.0.3.5" r="0.568"/>
1486
+ <circle fill="#FFFFFF" cx="163.886" cy="32.522" id="_x30_.1.0.96.0.3.6" r="0.568"/>
1487
+ <circle fill="#FFFFFF" cx="162.469" cy="32.522" id="_x30_.1.0.96.0.3.7" r="0.568"/>
1488
+ <circle fill="#FFFFFF" cx="161.051" cy="32.522" id="_x30_.1.0.96.0.3.8" r="0.568"/>
1489
+ <circle fill="#FFFFFF" cx="159.635" cy="32.522" id="_x30_.1.0.96.0.3.9" r="0.568"/>
1490
+ <circle fill="#FFFFFF" cx="158.217" cy="32.522" id="_x30_.1.0.96.0.3.10" r="0.568"/>
1491
+ <circle fill="#FFFFFF" cx="156.801" cy="32.522" id="_x30_.1.0.96.0.3.11" r="0.568"/>
1492
+ <circle fill="#FFFFFF" cx="155.383" cy="32.522" id="_x30_.1.0.96.0.3.12" r="0.568"/>
1493
+ <circle fill="#FFFFFF" cx="153.967" cy="32.522" id="_x30_.1.0.96.0.3.13" r="0.568"/>
1494
+ </g>
1495
+ <g id="_x30_.1.0.96.0.4">
1496
+ <circle fill="#FFFFFF" cx="172.445" cy="47.404" id="_x30_.1.0.96.0.4.0" r="0.567"/>
1497
+ <circle fill="#FFFFFF" cx="173.793" cy="47.137" id="_x30_.1.0.96.0.4.1" r="0.567"/>
1498
+ <circle fill="#FFFFFF" cx="175.071" cy="46.628" id="_x30_.1.0.96.0.4.2" r="0.568"/>
1499
+ <circle fill="#FFFFFF" cx="176.233" cy="45.894" id="_x30_.1.0.96.0.4.3" r="0.567"/>
1500
+ <circle fill="#FFFFFF" cx="177.241" cy="44.959" id="_x30_.1.0.96.0.4.4" r="0.568"/>
1501
+ <circle fill="#FFFFFF" cx="178.061" cy="43.855" id="_x30_.1.0.96.0.4.5" r="0.567"/>
1502
+ <circle fill="#FFFFFF" cx="178.665" cy="42.62" id="_x30_.1.0.96.0.4.6" r="0.567"/>
1503
+ <circle fill="#FFFFFF" cx="179.032" cy="41.295" id="_x30_.1.0.96.0.4.7" r="0.567"/>
1504
+ <circle fill="#FFFFFF" cx="179.151" cy="39.925" id="_x30_.1.0.96.0.4.8" r="0.567"/>
1505
+ <circle fill="#FFFFFF" cx="179.017" cy="38.557" id="_x30_.1.0.96.0.4.9" r="0.567"/>
1506
+ <circle fill="#FFFFFF" cx="178.633" cy="37.236" id="_x30_.1.0.96.0.4.10" r="0.567"/>
1507
+ <circle fill="#FFFFFF" cx="178.017" cy="36.008" id="_x30_.1.0.96.0.4.11" r="0.567"/>
1508
+ <circle fill="#FFFFFF" cx="177.185" cy="34.914" id="_x30_.1.0.96.0.4.12" r="0.567"/>
1509
+ <circle fill="#FFFFFF" cx="176.167" cy="33.99" id="_x30_.1.0.96.0.4.13" r="0.568"/>
1510
+ <circle fill="#FFFFFF" cx="174.997" cy="33.269" id="_x30_.1.0.96.0.4.14" r="0.568"/>
1511
+ <circle fill="#FFFFFF" cx="173.713" cy="32.774" id="_x30_.1.0.96.0.4.15" r="0.568"/>
1512
+ <circle fill="#FFFFFF" cx="172.361" cy="32.522" id="_x30_.1.0.96.0.4.16" r="0.568"/>
1513
+ <circle fill="#FFFFFF" cx="170.986" cy="32.522" id="_x30_.1.0.96.0.4.17" r="0.568"/>
1514
+ </g>
1515
+ <g id="_x30_.1.0.96.0.5">
1516
+ <circle fill="#FFFFFF" cx="152.413" cy="47.309" id="_x30_.1.0.96.0.5.0" r="0.568"/>
1517
+ <circle fill="#FFFFFF" cx="151.083" cy="47.026" id="_x30_.1.0.96.0.5.1" r="0.568"/>
1518
+ <circle fill="#FFFFFF" cx="149.825" cy="46.506" id="_x30_.1.0.96.0.5.2" r="0.568"/>
1519
+ <circle fill="#FFFFFF" cx="148.684" cy="45.765" id="_x30_.1.0.96.0.5.3" r="0.568"/>
1520
+ <circle fill="#FFFFFF" cx="147.697" cy="44.828" id="_x30_.1.0.96.0.5.4" r="0.568"/>
1521
+ <circle fill="#FFFFFF" cx="146.897" cy="43.727" id="_x30_.1.0.96.0.5.5" r="0.568"/>
1522
+ <circle fill="#FFFFFF" cx="146.312" cy="42.499" id="_x30_.1.0.96.0.5.6" r="0.568"/>
1523
+ <circle fill="#FFFFFF" cx="145.96" cy="41.185" id="_x30_.1.0.96.0.5.7" r="0.568"/>
1524
+ <circle fill="#FFFFFF" cx="145.853" cy="39.829" id="_x30_.1.0.96.0.5.8" r="0.568"/>
1525
+ <path fill="#FFFFFF" id="_x30_.1.0.96.0.5.9" d="M146.054,37.911c0.31,0.033,0.538,0.313,0.505,0.623c-0.033,0.313,-0.313,0.54,-0.624,0.507c-0.312,-0.033,-0.537,-0.313,-0.505,-0.627C145.463,38.104,145.743,37.877,146.054,37.911z"/>
1526
+ <path fill="#FFFFFF" id="_x30_.1.0.96.0.5.10" d="M146.543,36.626c0.299,0.089,0.472,0.406,0.383,0.705c-0.09,0.302,-0.405,0.474,-0.706,0.385c-0.3,-0.089,-0.472,-0.406,-0.382,-0.708C145.926,36.709,146.243,36.537,146.543,36.626z"/>
1527
+ <circle fill="#FFFFFF" cx="146.999" cy="35.959" id="_x30_.1.0.96.0.5.11" r="0.568"/>
1528
+ <circle fill="#FFFFFF" cx="147.827" cy="34.879" id="_x30_.1.0.96.0.5.12" r="0.568"/>
1529
+ <circle fill="#FFFFFF" cx="148.836" cy="33.969" id="_x30_.1.0.96.0.5.13" r="0.568"/>
1530
+ <circle fill="#FFFFFF" cx="149.999" cy="33.258" id="_x30_.1.0.96.0.5.14" r="0.568"/>
1531
+ <circle fill="#FFFFFF" cx="151.268" cy="32.77" id="_x30_.1.0.96.0.5.15" r="0.568"/>
1532
+ <circle fill="#FFFFFF" cx="152.606" cy="32.522" id="_x30_.1.0.96.0.5.16" r="0.568"/>
1533
+ <circle fill="#FFFFFF" cx="153.967" cy="32.522" id="_x30_.1.0.96.0.5.17" r="0.568"/>
1534
+ </g>
1535
+ <g id="_x30_.1.0.96.0.6">
1536
+ <circle fill="#FFFFFF" cx="172.388" cy="47.454" id="_x30_.1.0.96.0.6.0" r="0.568"/>
1537
+ <circle fill="#FFFFFF" cx="170.971" cy="47.454" id="_x30_.1.0.96.0.6.1" r="0.568"/>
1538
+ <circle fill="#FFFFFF" cx="169.554" cy="47.454" id="_x30_.1.0.96.0.6.2" r="0.568"/>
1539
+ <circle fill="#FFFFFF" cx="168.137" cy="47.454" id="_x30_.1.0.96.0.6.3" r="0.568"/>
1540
+ <circle fill="#FFFFFF" cx="166.72" cy="47.454" id="_x30_.1.0.96.0.6.4" r="0.568"/>
1541
+ <circle fill="#FFFFFF" cx="165.303" cy="47.454" id="_x30_.1.0.96.0.6.5" r="0.568"/>
1542
+ <circle fill="#FFFFFF" cx="163.886" cy="47.454" id="_x30_.1.0.96.0.6.6" r="0.568"/>
1543
+ <circle fill="#FFFFFF" cx="162.469" cy="47.454" id="_x30_.1.0.96.0.6.7" r="0.568"/>
1544
+ <circle fill="#FFFFFF" cx="161.051" cy="47.454" id="_x30_.1.0.96.0.6.8" r="0.568"/>
1545
+ <circle fill="#FFFFFF" cx="159.635" cy="47.454" id="_x30_.1.0.96.0.6.9" r="0.568"/>
1546
+ <circle fill="#FFFFFF" cx="158.217" cy="47.454" id="_x30_.1.0.96.0.6.10" r="0.568"/>
1547
+ <circle fill="#FFFFFF" cx="156.801" cy="47.454" id="_x30_.1.0.96.0.6.11" r="0.568"/>
1548
+ <circle fill="#FFFFFF" cx="155.383" cy="47.454" id="_x30_.1.0.96.0.6.12" r="0.568"/>
1549
+ <circle fill="#FFFFFF" cx="153.967" cy="47.454" id="_x30_.1.0.96.0.6.13" r="0.568"/>
1550
+ </g>
1551
+ </g>
1552
+ <g id="_x30_.1.0.96.1">
1553
+ <path fill="#FFFFFF" id="_x30_.1.0.96.1.0" d="M154.165,44.561c-0.994,0,-1.742,-0.206,-2.244,-0.618c-0.485,-0.401,-0.799,-0.879,-0.936,-1.434c-0.07,-0.28,-0.119,-0.58,-0.15,-0.899c-0.027,-0.319,-0.045,-0.661,-0.045,-1.025l0,-5.236l0.939,0l0,5.22c0,1.183,0.189,2.117,0.572,2.498c0.377,0.375,0.932,0.563,1.664,0.563c0.738,0,1.494,-0.188,1.871,-0.563c0.381,-0.38,0.572,-1.314,0.572,-2.498l0,-5.22l0.959,0l0,5.236c0,1.088,-0.125,1.896,-0.377,2.424C156.491,44.044,155.67,44.561,154.165,44.561z"/>
1554
+ <path fill="#FFFFFF" id="_x30_.1.0.96.1.1" d="M166.251,44.39l-0.944,0l-4.742,-7.433l0,7.446l-0.797,0l0,-9.054l0.88,0l4.659,7.455l0,-7.455l0.944,0L166.251,44.39z"/>
1555
+ <path fill="#FFFFFF" id="_x30_.1.0.96.1.2" d="M171.911,35.131c0.576,0,1.107,0.115,1.594,0.346c0.488,0.231,0.906,0.555,1.256,0.975c0.354,0.42,0.623,0.926,0.818,1.517c0.196,0.59,0.295,1.247,0.295,1.968c0,0.72,-0.099,1.376,-0.295,1.966c-0.195,0.592,-0.468,1.099,-0.818,1.521c-0.35,0.422,-0.77,0.749,-1.256,0.979c-0.483,0.23,-1.018,0.345,-1.594,0.345c-0.58,0,-1.113,-0.115,-1.602,-0.345c-0.484,-0.231,-0.904,-0.557,-1.258,-0.979c-0.354,-0.422,-0.629,-0.93,-0.823,-1.521c-0.194,-0.589,-0.294,-1.246,-0.294,-1.966c0,-0.721,0.1,-1.377,0.294,-1.968c0.194,-0.591,0.47,-1.097,0.823,-1.517c0.353,-0.42,0.773,-0.745,1.258,-0.975C170.795,35.247,171.331,35.131,171.911,35.131zM171.905,43.692c0.41,0,0.789,-0.085,1.135,-0.256s0.646,-0.418,0.896,-0.74c0.251,-0.323,0.447,-0.716,0.588,-1.179c0.141,-0.464,0.211,-0.991,0.211,-1.581c0,-0.591,-0.07,-1.118,-0.211,-1.582c-0.141,-0.463,-0.335,-0.856,-0.585,-1.179c-0.248,-0.322,-0.545,-0.568,-0.888,-0.736c-0.346,-0.167,-0.719,-0.252,-1.125,-0.252c-0.412,0,-0.793,0.084,-1.141,0.252c-0.352,0.168,-0.65,0.412,-0.904,0.732s-0.451,0.713,-0.596,1.178c-0.144,0.467,-0.216,0.995,-0.216,1.586c0,0.59,0.07,1.117,0.214,1.581c0.141,0.463,0.336,0.856,0.588,1.179c0.25,0.322,0.551,0.569,0.896,0.74C171.113,43.606,171.493,43.692,171.905,43.692z"/>
1556
+ </g>
1557
+ </g>
1558
+ </g>
1559
+ <g transform="matrix(1, 0, 0, 1, 157.652, 140.628)">
1560
+ <g id="_x30_.1.1">
1561
+ <g id="_x31_x06">
1562
+ <rect width="43.199" x="0.722" y="-0.228" fill="#404040" height="7.199" id="_x30_.1.1.0.0"/>
1563
+ <rect width="2.781" x="2.931" y="1.981" height="2.783" id="_x30_.1.1.0.1"/>
1564
+ <polygon fill="#2A2A29" points="1.905,0.956,2.929,1.981,5.714,1.981,6.737,0.956" id="_x30_.1.1.0.2"/>
1565
+ <polygon fill="#474747" points="6.737,0.956,5.714,1.985,5.714,4.766,6.737,5.789" id="_x30_.1.1.0.3"/>
1566
+ <polygon fill="#595959" points="6.737,5.789,5.712,4.766,2.929,4.766,1.905,5.789" id="_x30_.1.1.0.4"/>
1567
+ <polygon fill="#373737" points="1.903,5.789,2.929,4.764,2.929,1.981,1.903,0.956" id="_x30_.1.1.0.5"/>
1568
+ <rect width="2.781" x="10.132" y="1.981" height="2.783" id="_x30_.1.1.0.6"/>
1569
+ <polygon fill="#2A2A29" points="9.104,0.956,10.13,1.981,12.911,1.981,13.936,0.956" id="_x30_.1.1.0.7"/>
1570
+ <polygon fill="#474747" points="13.936,0.956,12.911,1.985,12.911,4.766,13.936,5.789" id="_x30_.1.1.0.8"/>
1571
+ <polygon fill="#595959" points="13.936,5.789,12.911,4.766,10.13,4.766,9.104,5.789" id="_x30_.1.1.0.9"/>
1572
+ <polygon fill="#373737" points="9.102,5.789,10.13,4.764,10.13,1.981,9.102,0.956" id="_x30_.1.1.0.10"/>
1573
+ <rect width="2.781" x="17.331" y="1.981" height="2.783" id="_x30_.1.1.0.11"/>
1574
+ <polygon fill="#2A2A29" points="16.306,0.956,17.329,1.981,20.112,1.981,21.138,0.956" id="_x30_.1.1.0.12"/>
1575
+ <polygon fill="#474747" points="21.138,0.956,20.112,1.985,20.112,4.766,21.138,5.789" id="_x30_.1.1.0.13"/>
1576
+ <polygon fill="#595959" points="21.138,5.789,20.112,4.766,17.329,4.766,16.306,5.789" id="_x30_.1.1.0.14"/>
1577
+ <polygon fill="#373737" points="16.304,5.789,17.329,4.764,17.329,1.981,16.304,0.956" id="_x30_.1.1.0.15"/>
1578
+ <rect width="2.781" x="24.532" y="1.981" height="2.783" id="_x30_.1.1.0.16"/>
1579
+ <polygon fill="#2A2A29" points="23.507,0.956,24.53,1.981,27.313,1.981,28.339,0.956" id="_x30_.1.1.0.17"/>
1580
+ <polygon fill="#474747" points="28.339,0.956,27.313,1.985,27.313,4.766,28.339,5.789" id="_x30_.1.1.0.18"/>
1581
+ <polygon fill="#595959" points="28.337,5.789,27.311,4.766,24.53,4.766,23.507,5.789" id="_x30_.1.1.0.19"/>
1582
+ <polygon fill="#373737" points="23.503,5.789,24.53,4.764,24.53,1.981,23.503,0.956" id="_x30_.1.1.0.20"/>
1583
+ <rect width="2.779" x="31.731" y="1.981" height="2.783" id="_x30_.1.1.0.21"/>
1584
+ <polygon fill="#2A2A29" points="30.706,0.956,31.729,1.981,34.513,1.981,35.538,0.956" id="_x30_.1.1.0.22"/>
1585
+ <polygon fill="#474747" points="35.538,0.956,34.513,1.985,34.513,4.766,35.538,5.789" id="_x30_.1.1.0.23"/>
1586
+ <polygon fill="#595959" points="35.536,5.789,34.513,4.766,31.729,4.766,30.706,5.789" id="_x30_.1.1.0.24"/>
1587
+ <polygon fill="#373737" points="30.704,5.789,31.729,4.764,31.729,1.981,30.704,0.956" id="_x30_.1.1.0.25"/>
1588
+ <rect width="2.781" x="38.931" y="1.981" height="2.783" id="_x30_.1.1.0.26"/>
1589
+ <polygon fill="#2A2A29" points="37.905,0.956,38.929,1.981,41.714,1.981,42.737,0.956" id="_x30_.1.1.0.27"/>
1590
+ <polygon fill="#474747" points="42.737,0.956,41.714,1.985,41.714,4.766,42.737,5.789" id="_x30_.1.1.0.28"/>
1591
+ <polygon fill="#595959" points="42.737,5.789,41.712,4.766,38.929,4.766,37.905,5.789" id="_x30_.1.1.0.29"/>
1592
+ <polygon fill="#373737" points="37.903,5.789,38.929,4.764,38.929,1.981,37.903,0.956" id="_x30_.1.1.0.30"/>
1593
+ </g>
1594
+ </g>
1595
+ </g>
1596
+ <g transform="matrix(1, 0, 0, 1, 191.155, 64.2515)">
1597
+ <g id="_x30_.1.2">
1598
+ <g id="_x32_x03">
1599
+ <g transform="matrix(0, -1, 1, 0, 3.52001, 17.793)">
1600
+ <g id="_x30_.1.2.0.0">
1601
+ <g id="_x30_.1.2.0.0.0">
1602
+ <g id="_x30_.1.2.0.0.0.0">
1603
+ <polygon fill="#404040" points="20.748,12.861,20.748,8.927,20.748,5.587,20.748,1.654,19.236,0.143,15.306,0.143,13.796,1.654,13.796,5.587,13.796,8.927,13.796,12.861,15.306,14.372,19.236,14.372" id="_x30_.1.2.0.0.0.0.0"/>
1604
+ <polygon fill="#404040" points="13.566,12.861,13.566,8.927,13.566,5.587,13.566,1.654,12.057,0.143,8.125,0.143,6.611,1.654,6.611,5.587,6.611,8.927,6.611,12.861,8.125,14.372,12.057,14.372" id="_x30_.1.2.0.0.0.0.1"/>
1605
+ <polygon fill="#404040" points="6.389,12.861,6.389,8.927,6.389,5.587,6.389,1.654,4.877,0.143,0.942,0.143,-0.565,1.654,-0.565,5.587,-0.565,8.927,-0.565,12.861,0.942,14.372,4.877,14.372" id="_x30_.1.2.0.0.0.0.2"/>
1606
+ <polygon fill="#404040" points="20.748,12.861,20.748,8.927,20.748,5.587,20.748,1.654,19.236,0.143,15.306,0.143,13.796,1.654,13.796,5.587,13.796,8.927,13.796,12.861,15.306,14.372,19.236,14.372" id="_x30_.1.2.0.0.0.0.3"/>
1607
+ <polygon fill="#404040" points="13.566,12.861,13.566,8.927,13.566,5.587,13.566,1.654,12.057,0.143,8.125,0.143,6.611,1.654,6.611,5.587,6.611,8.927,6.611,12.861,8.125,14.372,12.057,14.372" id="_x30_.1.2.0.0.0.0.4"/>
1608
+ <polygon fill="#404040" points="6.389,12.861,6.389,8.927,6.389,5.587,6.389,1.654,4.877,0.143,0.942,0.143,-0.565,1.654,-0.565,5.587,-0.565,8.927,-0.565,12.861,0.942,14.372,4.877,14.372" id="_x30_.1.2.0.0.0.0.5"/>
1609
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, -0.656, 6.746)">
1610
+ <g id="_x30_.1.2.0.0.0.0.6">
1611
+ <rect width="2.298" x="1.898" y="2.555" fill="#8D8C8C" height="2.299" id="_x30_.1.2.0.0.0.0.6.0"/>
1612
+ </g>
1613
+ </g>
1614
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, -7.8547, 13.9447)">
1615
+ <g id="_x30_.1.2.0.0.0.0.7">
1616
+ <rect width="2.297" x="1.9" y="9.754" fill="#8D8C8C" height="2.299" id="_x30_.1.2.0.0.0.0.7.0"/>
1617
+ </g>
1618
+ </g>
1619
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 6.5428, 13.9447)">
1620
+ <g id="_x30_.1.2.0.0.0.0.8">
1621
+ <rect width="2.299" x="9.097" y="2.556" fill="#8D8C8C" height="2.298" id="_x30_.1.2.0.0.0.0.8.0"/>
1622
+ </g>
1623
+ </g>
1624
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, -0.6552, 21.1442)">
1625
+ <g id="_x30_.1.2.0.0.0.0.9">
1626
+ <rect width="2.297" x="9.098" y="9.755" fill="#8D8C8C" height="2.298" id="_x30_.1.2.0.0.0.0.9.0"/>
1627
+ </g>
1628
+ </g>
1629
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 13.7415, 21.1424)">
1630
+ <g id="_x30_.1.2.0.0.0.0.10">
1631
+ <rect width="2.297" x="16.297" y="2.556" fill="#8D8C8C" height="2.298" id="_x30_.1.2.0.0.0.0.10.0"/>
1632
+ </g>
1633
+ </g>
1634
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 6.5423, 28.3417)">
1635
+ <g id="_x30_.1.2.0.0.0.0.11">
1636
+ <rect width="2.297" x="16.297" y="9.755" fill="#8D8455" height="2.298" id="_x30_.1.2.0.0.0.0.11.0"/>
1637
+ </g>
1638
+ </g>
1639
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 6.5401, 28.3434)">
1640
+ <g id="_x30_.1.2.0.0.0.0.12">
1641
+ <rect width="1.185" x="16.852" y="10.314" fill="#8C8663" height="1.183" id="_x30_.1.2.0.0.0.0.12.0"/>
1642
+ </g>
1643
+ </g>
1644
+ <polygon fill="#B8AF82" points="18.594,9.748,18.035,10.306,18.035,11.486,18.594,12.046" id="_x30_.1.2.0.0.0.0.13"/>
1645
+ <polygon fill="#80795B" points="16.855,11.486,18.035,11.486,18.594,12.046,16.297,12.046" id="_x30_.1.2.0.0.0.0.14"/>
1646
+ <polygon fill="#5E5B43" points="16.855,10.306,16.855,11.486,16.297,12.046,16.297,9.748" id="_x30_.1.2.0.0.0.0.15"/>
1647
+ <polygon fill="#9A916C" points="18.594,9.748,18.035,10.306,16.855,10.306,16.297,9.748" id="_x30_.1.2.0.0.0.0.16"/>
1648
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 13.7423, 21.1432)">
1649
+ <g id="_x30_.1.2.0.0.0.0.17">
1650
+ <rect width="1.185" x="16.853" y="3.113" fill="#8C8663" height="1.183" id="_x30_.1.2.0.0.0.0.17.0"/>
1651
+ </g>
1652
+ </g>
1653
+ <polygon fill="#B8AF82" points="18.594,2.55,18.035,3.107,18.035,4.287,18.594,4.845" id="_x30_.1.2.0.0.0.0.18"/>
1654
+ <polygon fill="#80795B" points="16.855,4.287,18.035,4.287,18.594,4.845,16.297,4.845" id="_x30_.1.2.0.0.0.0.19"/>
1655
+ <polygon fill="#5E5B43" points="16.855,3.107,16.855,4.287,16.297,4.845,16.297,2.55" id="_x30_.1.2.0.0.0.0.20"/>
1656
+ <polygon fill="#9A916C" points="18.594,2.55,18.035,3.107,16.855,3.107,16.297,2.55" id="_x30_.1.2.0.0.0.0.21"/>
1657
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, -0.6572, 21.1461)">
1658
+ <g id="_x30_.1.2.0.0.0.0.22">
1659
+ <rect width="1.185" x="9.656" y="10.314" fill="#8C8663" height="1.184" id="_x30_.1.2.0.0.0.0.22.0"/>
1660
+ </g>
1661
+ </g>
1662
+ <polygon fill="#B8AF82" points="11.396,9.748,10.839,10.306,10.839,11.486,11.396,12.046" id="_x30_.1.2.0.0.0.0.23"/>
1663
+ <polygon fill="#80795B" points="9.655,11.486,10.839,11.486,11.396,12.046,9.099,12.046" id="_x30_.1.2.0.0.0.0.24"/>
1664
+ <polygon fill="#5E5B43" points="9.655,10.306,9.655,11.486,9.099,12.046,9.099,9.748" id="_x30_.1.2.0.0.0.0.25"/>
1665
+ <polygon fill="#9A916C" points="11.396,9.748,10.839,10.306,9.655,10.306,9.099,9.748" id="_x30_.1.2.0.0.0.0.26"/>
1666
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 6.543, 13.9439)">
1667
+ <g id="_x30_.1.2.0.0.0.0.27">
1668
+ <rect width="1.185" x="9.655" y="3.112" fill="#8C8663" height="1.184" id="_x30_.1.2.0.0.0.0.27.0"/>
1669
+ </g>
1670
+ </g>
1671
+ <polygon fill="#B8AF82" points="11.396,2.55,10.839,3.107,10.839,4.287,11.396,4.845" id="_x30_.1.2.0.0.0.0.28"/>
1672
+ <polygon fill="#80795B" points="9.655,4.287,10.839,4.287,11.396,4.845,9.099,4.845" id="_x30_.1.2.0.0.0.0.29"/>
1673
+ <polygon fill="#5E5B43" points="9.655,3.107,9.655,4.287,9.099,4.845,9.099,2.55" id="_x30_.1.2.0.0.0.0.30"/>
1674
+ <polygon fill="#9A916C" points="11.396,2.55,10.839,3.107,9.655,3.107,9.099,2.55" id="_x30_.1.2.0.0.0.0.31"/>
1675
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, -7.8591, 13.9442)">
1676
+ <g id="_x30_.1.2.0.0.0.0.32">
1677
+ <rect width="1.184" x="2.454" y="10.313" fill="#8C8663" height="1.185" id="_x30_.1.2.0.0.0.0.32.0"/>
1678
+ </g>
1679
+ </g>
1680
+ <polygon fill="#B8AF82" points="4.196,9.748,3.639,10.306,3.639,11.486,4.196,12.046" id="_x30_.1.2.0.0.0.0.33"/>
1681
+ <polygon fill="#80795B" points="2.454,11.486,3.639,11.486,4.196,12.046,1.899,12.046" id="_x30_.1.2.0.0.0.0.34"/>
1682
+ <polygon fill="#5E5B43" points="2.454,10.306,2.454,11.486,1.899,12.046,1.899,9.748" id="_x30_.1.2.0.0.0.0.35"/>
1683
+ <polygon fill="#9A916C" points="4.196,9.748,3.639,10.306,2.454,10.306,1.899,9.748" id="_x30_.1.2.0.0.0.0.36"/>
1684
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, -0.6574, 6.7435)">
1685
+ <g id="_x30_.1.2.0.0.0.0.37">
1686
+ <rect width="1.184" x="2.455" y="3.111" fill="#8C8663" height="1.187" id="_x30_.1.2.0.0.0.0.37.0"/>
1687
+ </g>
1688
+ </g>
1689
+ <polygon fill="#B8AF82" points="4.196,2.55,3.639,3.107,3.639,4.287,4.196,4.846" id="_x30_.1.2.0.0.0.0.38"/>
1690
+ <polygon fill="#80795B" points="2.454,4.287,3.639,4.287,4.196,4.846,1.899,4.846" id="_x30_.1.2.0.0.0.0.39"/>
1691
+ <polygon fill="#5E5B43" points="2.454,3.107,2.454,4.287,1.899,4.846,1.899,2.55" id="_x30_.1.2.0.0.0.0.40"/>
1692
+ <polygon fill="#9A916C" points="4.196,2.55,3.639,3.107,2.454,3.107,1.899,2.55" id="_x30_.1.2.0.0.0.0.41"/>
1693
+ </g>
1694
+ </g>
1695
+ </g>
1696
+ </g>
1697
+ </g>
1698
+ </g>
1699
+ </g>
1700
+ <g transform="matrix(1, 0, 0, 1, 59.7671, 12.9035)">
1701
+ <g id="_x30_.1.3">
1702
+ <g id="_x32_x03_1_">
1703
+ <g transform="matrix(-1, 0, 0, -1, 21.313, 14.273)">
1704
+ <g id="_x30_.1.3.0.0">
1705
+ <g id="_x30_.1.3.0.0.0">
1706
+ <g id="_x30_.1.3.0.0.0.0">
1707
+ <polygon fill="#404040" points="21.925,12.619,21.925,8.687,21.925,5.347,21.925,1.413,20.414,-0.098,16.483,-0.098,14.973,1.413,14.973,5.347,14.973,8.687,14.973,12.619,16.483,14.131,20.414,14.131" id="_x30_.1.3.0.0.0.0.0"/>
1708
+ <polygon fill="#404040" points="14.743,12.619,14.743,8.687,14.743,5.347,14.743,1.413,13.234,-0.098,9.302,-0.098,7.789,1.413,7.789,5.347,7.789,8.687,7.789,12.619,9.302,14.131,13.234,14.131" id="_x30_.1.3.0.0.0.0.1"/>
1709
+ <polygon fill="#404040" points="7.566,12.619,7.566,8.687,7.566,5.347,7.566,1.413,6.054,-0.098,2.121,-0.098,0.612,1.413,0.612,5.347,0.612,8.687,0.612,12.619,2.121,14.131,6.054,14.131" id="_x30_.1.3.0.0.0.0.2"/>
1710
+ <polygon fill="#404040" points="21.925,12.619,21.925,8.687,21.925,5.347,21.925,1.413,20.414,-0.098,16.483,-0.098,14.973,1.413,14.973,5.347,14.973,8.687,14.973,12.619,16.483,14.131,20.414,14.131" id="_x30_.1.3.0.0.0.0.3"/>
1711
+ <polygon fill="#404040" points="14.743,12.619,14.743,8.687,14.743,5.347,14.743,1.413,13.234,-0.098,9.302,-0.098,7.789,1.413,7.789,5.347,7.789,8.687,7.789,12.619,9.302,14.131,13.234,14.131" id="_x30_.1.3.0.0.0.0.4"/>
1712
+ <polygon fill="#404040" points="7.566,12.619,7.566,8.687,7.566,5.347,7.566,1.413,6.054,-0.098,2.121,-0.098,0.612,1.413,0.612,5.347,0.612,8.687,0.612,12.619,2.121,14.131,6.054,14.131" id="_x30_.1.3.0.0.0.0.5"/>
1713
+ <rect width="2.299" x="3.073" y="2.311" fill="#8D8C8C" height="2.298" id="_x30_.1.3.0.0.0.0.6"/>
1714
+ <rect width="2.299" x="3.073" y="9.51" fill="#8D8C8C" height="2.298" id="_x30_.1.3.0.0.0.0.7"/>
1715
+ <rect width="2.298" x="10.272" y="2.311" fill="#8D8C8C" height="2.298" id="_x30_.1.3.0.0.0.0.8"/>
1716
+ <rect width="2.298" x="10.272" y="9.51" fill="#8D8C8C" height="2.298" id="_x30_.1.3.0.0.0.0.9"/>
1717
+ <rect width="2.298" x="17.47" y="2.311" fill="#8D8C8C" height="2.298" id="_x30_.1.3.0.0.0.0.10"/>
1718
+ <rect width="2.298" x="17.47" y="9.51" fill="#8D8455" height="2.298" id="_x30_.1.3.0.0.0.0.11"/>
1719
+ <rect width="1.183" x="18.028" y="10.069" fill="#8C8663" height="1.184" id="_x30_.1.3.0.0.0.0.12"/>
1720
+ <polygon fill="#B8AF82" points="19.769,9.51,19.209,10.069,19.209,11.25,19.769,11.808" id="_x30_.1.3.0.0.0.0.13"/>
1721
+ <polygon fill="#80795B" points="18.028,11.25,19.209,11.25,19.769,11.808,17.47,11.808" id="_x30_.1.3.0.0.0.0.14"/>
1722
+ <polygon fill="#5E5B43" points="18.028,10.069,18.028,11.25,17.47,11.808,17.47,9.51" id="_x30_.1.3.0.0.0.0.15"/>
1723
+ <polygon fill="#9A916C" points="19.769,9.51,19.209,10.069,18.028,10.069,17.47,9.51" id="_x30_.1.3.0.0.0.0.16"/>
1724
+ <rect width="1.183" x="18.028" y="2.869" fill="#8C8663" height="1.182" id="_x30_.1.3.0.0.0.0.17"/>
1725
+ <polygon fill="#B8AF82" points="19.769,2.311,19.209,2.869,19.209,4.05,19.769,4.608" id="_x30_.1.3.0.0.0.0.18"/>
1726
+ <polygon fill="#80795B" points="18.028,4.05,19.209,4.05,19.769,4.608,17.47,4.608" id="_x30_.1.3.0.0.0.0.19"/>
1727
+ <polygon fill="#5E5B43" points="18.028,2.869,18.028,4.05,17.47,4.608,17.47,2.311" id="_x30_.1.3.0.0.0.0.20"/>
1728
+ <polygon fill="#9A916C" points="19.769,2.311,19.209,2.869,18.028,2.869,17.47,2.311" id="_x30_.1.3.0.0.0.0.21"/>
1729
+ <rect width="1.184" x="10.829" y="10.069" fill="#8C8663" height="1.184" id="_x30_.1.3.0.0.0.0.22"/>
1730
+ <polygon fill="#B8AF82" points="12.569,9.51,12.012,10.069,12.012,11.25,12.569,11.808" id="_x30_.1.3.0.0.0.0.23"/>
1731
+ <polygon fill="#80795B" points="10.829,11.25,12.012,11.25,12.569,11.808,10.272,11.808" id="_x30_.1.3.0.0.0.0.24"/>
1732
+ <polygon fill="#5E5B43" points="10.829,10.069,10.829,11.25,10.272,11.808,10.272,9.51" id="_x30_.1.3.0.0.0.0.25"/>
1733
+ <polygon fill="#9A916C" points="12.569,9.51,12.012,10.069,10.829,10.069,10.272,9.51" id="_x30_.1.3.0.0.0.0.26"/>
1734
+ <rect width="1.184" x="10.829" y="2.869" fill="#8C8663" height="1.182" id="_x30_.1.3.0.0.0.0.27"/>
1735
+ <polygon fill="#B8AF82" points="12.569,2.311,12.012,2.869,12.012,4.05,12.569,4.608" id="_x30_.1.3.0.0.0.0.28"/>
1736
+ <polygon fill="#80795B" points="10.829,4.05,12.012,4.05,12.569,4.608,10.272,4.608" id="_x30_.1.3.0.0.0.0.29"/>
1737
+ <polygon fill="#5E5B43" points="10.829,2.869,10.829,4.05,10.272,4.608,10.272,2.311" id="_x30_.1.3.0.0.0.0.30"/>
1738
+ <polygon fill="#9A916C" points="12.569,2.311,12.012,2.869,10.829,2.869,10.272,2.311" id="_x30_.1.3.0.0.0.0.31"/>
1739
+ <rect width="1.185" x="3.628" y="10.069" fill="#8C8663" height="1.184" id="_x30_.1.3.0.0.0.0.32"/>
1740
+ <polygon fill="#B8AF82" points="5.371,9.51,4.813,10.069,4.813,11.25,5.371,11.808" id="_x30_.1.3.0.0.0.0.33"/>
1741
+ <polygon fill="#80795B" points="3.628,11.25,4.813,11.25,5.371,11.808,3.073,11.808" id="_x30_.1.3.0.0.0.0.34"/>
1742
+ <polygon fill="#5E5B43" points="3.628,10.069,3.628,11.25,3.073,11.808,3.073,9.51" id="_x30_.1.3.0.0.0.0.35"/>
1743
+ <polygon fill="#9A916C" points="5.371,9.51,4.813,10.069,3.628,10.069,3.073,9.51" id="_x30_.1.3.0.0.0.0.36"/>
1744
+ <rect width="1.185" x="3.628" y="2.869" fill="#8C8663" height="1.182" id="_x30_.1.3.0.0.0.0.37"/>
1745
+ <polygon fill="#B8AF82" points="5.371,2.311,4.813,2.869,4.813,4.05,5.371,4.608" id="_x30_.1.3.0.0.0.0.38"/>
1746
+ <polygon fill="#80795B" points="3.628,4.05,4.813,4.05,5.371,4.608,3.073,4.608" id="_x30_.1.3.0.0.0.0.39"/>
1747
+ <polygon fill="#5E5B43" points="3.628,2.869,3.628,4.05,3.073,4.608,3.073,2.311" id="_x30_.1.3.0.0.0.0.40"/>
1748
+ <polygon fill="#9A916C" points="5.371,2.311,4.813,2.869,3.628,2.869,3.073,2.311" id="_x30_.1.3.0.0.0.0.41"/>
1749
+ </g>
1750
+ </g>
1751
+ </g>
1752
+ </g>
1753
+ </g>
1754
+ </g>
1755
+ </g>
1756
+ <g transform="matrix(1, 0, 0, 1, 144.692, 3.372)">
1757
+ <g id="_x30_.1.4">
1758
+ <g id="_x31_x08">
1759
+ <g transform="matrix(-1, 0, 0, -1, 57.6, 7.2)">
1760
+ <g id="_x30_.1.4.0.0">
1761
+ <g id="_x30_.1.4.0.0.0">
1762
+ <rect width="57.6" x="0.72" y="-0.228" fill="#404040" height="7.199" id="_x30_.1.4.0.0.0.0"/>
1763
+ <rect width="2.78" x="53.331" y="1.98" height="2.782" id="_x30_.1.4.0.0.0.1"/>
1764
+ <polygon fill="#2A2A29" points="57.135,5.787,56.113,4.762,53.331,4.762,52.303,5.787" id="_x30_.1.4.0.0.0.2"/>
1765
+ <polygon fill="#474747" points="52.303,5.787,53.331,4.759,53.331,1.978,52.303,0.955" id="_x30_.1.4.0.0.0.3"/>
1766
+ <polygon fill="#595959" points="52.304,0.955,53.331,1.978,56.113,1.978,57.135,0.955" id="_x30_.1.4.0.0.0.4"/>
1767
+ <polygon fill="#373737" points="57.137,0.955,56.113,1.98,56.113,4.762,57.137,5.787" id="_x30_.1.4.0.0.0.5"/>
1768
+ <rect width="2.779" x="46.13" y="1.98" height="2.782" id="_x30_.1.4.0.0.0.6"/>
1769
+ <polygon fill="#2A2A29" points="49.937,5.787,48.913,4.762,46.128,4.762,45.103,5.787" id="_x30_.1.4.0.0.0.7"/>
1770
+ <polygon fill="#474747" points="45.103,5.787,46.128,4.759,46.128,1.978,45.103,0.955" id="_x30_.1.4.0.0.0.8"/>
1771
+ <polygon fill="#595959" points="45.105,0.955,46.13,1.978,48.913,1.978,49.937,0.955" id="_x30_.1.4.0.0.0.9"/>
1772
+ <polygon fill="#373737" points="49.939,0.955,48.913,1.98,48.913,4.762,49.939,5.787" id="_x30_.1.4.0.0.0.10"/>
1773
+ <rect width="2.781" x="38.928" y="1.98" height="2.782" id="_x30_.1.4.0.0.0.11"/>
1774
+ <polygon fill="#2A2A29" points="42.736,5.787,41.712,4.762,38.928,4.762,37.904,5.787" id="_x30_.1.4.0.0.0.12"/>
1775
+ <polygon fill="#474747" points="37.904,5.787,38.928,4.759,38.928,1.978,37.904,0.955" id="_x30_.1.4.0.0.0.13"/>
1776
+ <polygon fill="#595959" points="37.907,0.955,38.929,1.978,41.712,1.978,42.736,0.955" id="_x30_.1.4.0.0.0.14"/>
1777
+ <polygon fill="#373737" points="42.738,0.955,41.712,1.98,41.712,4.762,42.738,5.787" id="_x30_.1.4.0.0.0.15"/>
1778
+ <rect width="2.78" x="31.728" y="1.98" height="2.782" id="_x30_.1.4.0.0.0.16"/>
1779
+ <polygon fill="#2A2A29" points="35.538,5.787,34.51,4.762,31.728,4.762,30.706,5.787" id="_x30_.1.4.0.0.0.17"/>
1780
+ <polygon fill="#474747" points="30.706,5.787,31.728,4.759,31.728,1.978,30.706,0.955" id="_x30_.1.4.0.0.0.18"/>
1781
+ <polygon fill="#595959" points="30.706,0.955,31.73,1.978,34.51,1.978,35.538,0.955" id="_x30_.1.4.0.0.0.19"/>
1782
+ <polygon fill="#373737" points="35.54,0.955,34.51,1.98,34.51,4.762,35.54,5.787" id="_x30_.1.4.0.0.0.20"/>
1783
+ <rect width="2.781" x="24.529" y="1.98" height="2.782" id="_x30_.1.4.0.0.0.21"/>
1784
+ <polygon fill="#2A2A29" points="28.335,5.787,27.312,4.762,24.529,4.762,23.503,5.787" id="_x30_.1.4.0.0.0.22"/>
1785
+ <polygon fill="#474747" points="23.503,5.787,24.529,4.759,24.529,1.978,23.503,0.955" id="_x30_.1.4.0.0.0.23"/>
1786
+ <polygon fill="#595959" points="23.505,0.955,24.532,1.978,27.312,1.978,28.335,0.955" id="_x30_.1.4.0.0.0.24"/>
1787
+ <polygon fill="#373737" points="28.337,0.955,27.312,1.98,27.312,4.762,28.337,5.787" id="_x30_.1.4.0.0.0.25"/>
1788
+ <rect width="2.78" x="17.331" y="1.98" height="2.782" id="_x30_.1.4.0.0.0.26"/>
1789
+ <polygon fill="#2A2A29" points="21.135,5.787,20.113,4.762,17.331,4.762,16.303,5.787" id="_x30_.1.4.0.0.0.27"/>
1790
+ <polygon fill="#474747" points="16.303,5.787,17.331,4.759,17.331,1.978,16.303,0.955" id="_x30_.1.4.0.0.0.28"/>
1791
+ <polygon fill="#595959" points="16.304,0.955,17.331,1.978,20.113,1.978,21.135,0.955" id="_x30_.1.4.0.0.0.29"/>
1792
+ <polygon fill="#373737" points="21.137,0.955,20.113,1.98,20.113,4.762,21.137,5.787" id="_x30_.1.4.0.0.0.30"/>
1793
+ <rect width="2.779" x="10.13" y="1.98" height="2.782" id="_x30_.1.4.0.0.0.31"/>
1794
+ <polygon fill="#2A2A29" points="13.937,5.787,12.913,4.762,10.128,4.762,9.103,5.787" id="_x30_.1.4.0.0.0.32"/>
1795
+ <polygon fill="#474747" points="9.103,5.787,10.128,4.759,10.128,1.978,9.103,0.955" id="_x30_.1.4.0.0.0.33"/>
1796
+ <polygon fill="#595959" points="9.105,0.955,10.13,1.978,12.913,1.978,13.937,0.955" id="_x30_.1.4.0.0.0.34"/>
1797
+ <polygon fill="#373737" points="13.939,0.955,12.913,1.98,12.913,4.762,13.939,5.787" id="_x30_.1.4.0.0.0.35"/>
1798
+ <rect width="2.781" x="2.928" y="1.98" height="2.782" id="_x30_.1.4.0.0.0.36"/>
1799
+ <polygon fill="#2A2A29" points="6.736,5.787,5.712,4.762,2.928,4.762,1.904,5.787" id="_x30_.1.4.0.0.0.37"/>
1800
+ <polygon fill="#474747" points="1.904,5.787,2.928,4.759,2.928,1.978,1.904,0.955" id="_x30_.1.4.0.0.0.38"/>
1801
+ <polygon fill="#595959" points="1.907,0.955,2.929,1.978,5.712,1.978,6.736,0.955" id="_x30_.1.4.0.0.0.39"/>
1802
+ <polygon fill="#373737" points="6.738,0.955,5.712,1.98,5.712,4.762,6.738,5.787" id="_x30_.1.4.0.0.0.40"/>
1803
+ </g>
1804
+ </g>
1805
+ </g>
1806
+ </g>
1807
+ </g>
1808
+ </g>
1809
+ <g transform="matrix(1, 0, 0, 1, 101.471, 28.0955)">
1810
+ <g id="_x30_.1.5">
1811
+ <g id="chip-led0805">
1812
+ <g transform="matrix(0, -1, 1, 0, -1.77951, 5.62951)">
1813
+ <g id="_x30_.1.5.0.0">
1814
+ <g id="_x30_.1.5.0.0.0">
1815
+ <g transform="matrix(1, 0, 0, 1, 21.5539, 31.3385)">
1816
+ <g id="_x30_.1.5.0.0.0.0">
1817
+ <g id="led-0603_1_">
1818
+ <line fill="none" id="_x30_.1.5.0.0.0.0.0.0" y1="-37.873" x1="-23.902" y2="-30.637" x2="-23.902"/>
1819
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 12.2098, -56.1861)">
1820
+ <g id="_x30_.1.5.0.0.0.0.0.1">
1821
+ <rect width="7.348" x="-25.658" y="-36.111" fill="#F2F2F2" height="3.833" id="_x30_.1.5.0.0.0.0.0.1.0"/>
1822
+ </g>
1823
+ </g>
1824
+ <path fill="#22B573" fill-opacity="0.7" id="_x30_.1.5.0.0.0.0.0.2" d="M-23.902,-33.129c0,0,0.467,0.645,0.426,0.867c-0.041,0.219,0.148,0.541,0,0.676l-0.424,-0.018L-23.902,-33.129z"/>
1825
+ <g id="_x30_.1.5.0.0.0.0.0.3">
1826
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 12.3107, -56.2284)">
1827
+ <g id="_x30_.1.5.0.0.0.0.0.3.0">
1828
+ <rect width="0.854" x="-22.382" y="-34.748" fill="#FFFFFF" height="0.961" id="_x30_.1.5.0.0.0.0.0.3.0.0"/>
1829
+ </g>
1830
+ </g>
1831
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 11.8297, -56.7093)">
1832
+ <g id="_x30_.1.5.0.0.0.0.0.3.1">
1833
+ <rect width="0.854" x="-22.863" y="-34.29" fill="#B3B3B3" height="0.049" id="_x30_.1.5.0.0.0.0.0.3.1.0"/>
1834
+ </g>
1835
+ </g>
1836
+ </g>
1837
+ <g id="_x30_.1.5.0.0.0.0.0.4">
1838
+ <polygon fill="#D1C690" points="-23.476,-32.549,-23.582,-31.585,-22.849,-31.585,-22.954,-32.549" id="_x30_.1.5.0.0.0.0.0.4.0"/>
1839
+ <g id="_x30_.1.5.0.0.0.0.0.4.1">
1840
+ <path fill="#D1C690" id="_x30_.1.5.0.0.0.0.0.4.1.0" d="M-23.279,-32.488c0,-0.002,0,-0.004,0,-0.008c0.035,-0.266,0.104,-0.447,0.162,-0.598c0.08,-0.209,0.782,-0.559,0.696,-0.828c-0.012,-0.027,0.011,-0.06,0.043,-0.066c0.035,-0.008,0.068,0.01,0.078,0.039c0.095,0.305,-0.617,0.674,-0.701,0.893c-0.06,0.148,-0.123,0.318,-0.155,0.572c-0.004,0.029,-0.033,0.055,-0.068,0.049C-23.254,-32.436,-23.279,-32.46,-23.279,-32.488z"/>
1841
+ </g>
1842
+ <polygon fill="#D1C690" points="-20.59,-35.969,-20.487,-36.933,-21.217,-36.933,-21.114,-35.969" id="_x30_.1.5.0.0.0.0.0.4.2"/>
1843
+ <g id="_x30_.1.5.0.0.0.0.0.4.3">
1844
+ <path fill="#D1C690" id="_x30_.1.5.0.0.0.0.0.4.3.0" d="M-22.111,-34.316c0,-0.025,0.02,-0.049,0.047,-0.055c0.292,-0.063,1.152,-1.088,1.152,-1.885c0,-0.033,0.026,-0.057,0.063,-0.057c0.034,0.002,0.063,0.025,0.063,0.057l0,0.002c0,0.749,-0.77,1.891,-1.245,1.993c-0.035,0.008,-0.068,-0.012,-0.078,-0.041C-22.111,-34.304,-22.111,-34.309,-22.111,-34.316z"/>
1845
+ </g>
1846
+ <path fill="#D1C690" id="_x30_.1.5.0.0.0.0.0.4.4" d="M-22.127,-33.845c0,0,0.002,-0.356,-0.311,-0.383c0,0.07,0,0.383,0,0.383L-22.127,-33.845z"/>
1847
+ <path fill="#D1C690" id="_x30_.1.5.0.0.0.0.0.4.5" d="M-21.806,-34.281c0,0,-0.306,0.158,-0.351,0.053c-0.048,-0.107,-0.052,-0.178,0.028,-0.24C-22.047,-34.529,-21.806,-34.281,-21.806,-34.281z"/>
1848
+ <path fill="#9D956C" id="_x30_.1.5.0.0.0.0.0.4.6" d="M-22.474,-33.922c0.084,0.27,-0.618,0.619,-0.698,0.828c-0.06,0.145,-0.127,0.33,-0.162,0.598l0.059,0c0.035,-0.266,0.104,-0.447,0.162,-0.598c0.08,-0.209,0.782,-0.559,0.696,-0.828L-22.474,-33.922z"/>
1849
+ <polygon fill="#9D956C" points="-21.169,-35.969,-21.272,-36.933,-21.217,-36.933,-21.114,-35.969" id="_x30_.1.5.0.0.0.0.0.4.7"/>
1850
+ <path fill="#9D956C" id="_x30_.1.5.0.0.0.0.0.4.8" d="M-22.119,-34.371c0.291,-0.062,1.212,-1.07,1.149,-1.885l0.06,0c0.06,0.877,-0.86,1.826,-1.152,1.887L-22.119,-34.371z"/>
1851
+ <path fill="#9D956C" id="_x30_.1.5.0.0.0.0.0.4.9" d="M-22.492,-34.227c0,0.07,0,0.381,0,0.381l0.057,0c0,0,0,-0.311,0,-0.381L-22.492,-34.227z"/>
1852
+ <path fill="#9D956C" id="_x30_.1.5.0.0.0.0.0.4.10" d="M-22.181,-34.469c-0.08,0.063,-0.076,0.131,-0.031,0.238l0.06,0.002c-0.049,-0.107,-0.052,-0.179,0.028,-0.24L-22.181,-34.469L-22.181,-34.469z"/>
1853
+ </g>
1854
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 14.1869, -54.3814)">
1855
+ <g id="_x30_.1.5.0.0.0.0.0.5">
1856
+ <rect width="4.223" x="-22.205" opacity="0.5" y="-34.308" fill="#FFFFFF" height="0.051" id="_x30_.1.5.0.0.0.0.0.5.0" enable-background="new "/>
1857
+ </g>
1858
+ </g>
1859
+ <path opacity="0.5" fill="#F2F2F2" id="_x30_.1.5.0.0.0.0.0.6" enable-background="new " d="M-20.069,-36.916L-23.9,-36.916l0,5.317l3.831,0.004L-20.069,-36.916z"/>
1860
+ <path opacity="0.55" fill="#FFFFFF" id="_x30_.1.5.0.0.0.0.0.7" enable-background="new " d="M-20.719,-36.866l0.271,0c0.151,0.018,0.271,-0.012,0.271,0.098c0,0.611,0,4.703,0,4.854c0,0.168,-0.065,0.176,-0.065,-0.012c0,-0.131,0,-3.893,0,-4.346c0,-0.457,-0.105,-0.518,-0.197,-0.518l-0.272,0.002C-20.893,-36.788,-20.893,-36.866,-20.719,-36.866z"/>
1861
+ <path opacity="0.03" id="_x30_.1.5.0.0.0.0.0.8" enable-background="new " d="M-23.678,-31.74c-0.068,0,-0.138,0.012,-0.138,-0.098c0,-0.611,0,-4.667,0,-4.817c0,-0.168,0.065,-0.176,0.065,0.008c0,0.135,0.002,3.138,0.002,3.589C-23.75,-32.463,-23.678,-31.74,-23.678,-31.74z"/>
1862
+ <path fill="#D1C690" id="_x30_.1.5.0.0.0.0.0.9" d="M-23.902,-37.874l0,0.771l0.521,0c0.125,0,0.213,0.08,0.268,0.188l3.047,0l0,-1.01l-3.784,0l-0.05,0"/>
1863
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 17.3219, -57.5155)">
1864
+ <g id="_x30_.1.5.0.0.0.0.0.10">
1865
+ <rect width="1.006" x="-20.596" opacity="0.5" y="-37.443" fill="#FFFFFF" height="0.052" id="_x30_.1.5.0.0.0.0.0.10.0" enable-background="new "/>
1866
+ </g>
1867
+ </g>
1868
+ <path fill="#D1C690" id="_x30_.1.5.0.0.0.0.0.11" d="M-23.902,-30.529l0.049,0l3.784,0L-20.069,-31.6l-3.464,0c-0.056,0.104,-0.146,0.191,-0.271,0.191l-0.1,0l0,0.829"/>
1869
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 10.966, -51.159)">
1870
+ <g id="_x30_.1.5.0.0.0.0.0.12">
1871
+ <rect width="1.072" x="-20.628" opacity="0.5" y="-31.084" fill="#FFFFFF" height="0.052" id="_x30_.1.5.0.0.0.0.0.12.0" enable-background="new "/>
1872
+ </g>
1873
+ </g>
1874
+ </g>
1875
+ </g>
1876
+ </g>
1877
+ </g>
1878
+ </g>
1879
+ </g>
1880
+ </g>
1881
+ </g>
1882
+ </g>
1883
+ <g transform="matrix(1, 0, 0, 1, 186.214, 43.9355)">
1884
+ <g id="_x30_.1.6">
1885
+ <g id="chip-led0805_1_">
1886
+ <g transform="matrix(0, -1, 1, 0, -1.77951, 5.62951)">
1887
+ <g id="_x30_.1.6.0.0">
1888
+ <g id="_x30_.1.6.0.0.0">
1889
+ <g transform="matrix(1, 0, 0, 1, 21.5539, 31.3385)">
1890
+ <g id="_x30_.1.6.0.0.0.0">
1891
+ <g id="led-0603_2_">
1892
+ <line fill="none" id="_x30_.1.6.0.0.0.0.0.0" y1="-33.306" x1="-21.535" y2="-26.07" x2="-21.535"/>
1893
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 10.012, -49.2526)">
1894
+ <g id="_x30_.1.6.0.0.0.0.0.1">
1895
+ <rect width="7.349" x="-23.291" y="-31.546" fill="#F2F2F2" height="3.833" id="_x30_.1.6.0.0.0.0.0.1.0"/>
1896
+ </g>
1897
+ </g>
1898
+ <path fill="#22B573" fill-opacity="0.7" id="_x30_.1.6.0.0.0.0.0.2" d="M-21.533,-28.561c0,0,0.467,0.646,0.426,0.865c-0.041,0.219,0.148,0.541,0,0.678l-0.424,-0.021L-21.533,-28.561z"/>
1899
+ <g id="_x30_.1.6.0.0.0.0.0.3">
1900
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 10.1107, -49.2956)">
1901
+ <g id="_x30_.1.6.0.0.0.0.0.3.0">
1902
+ <rect width="0.854" x="-20.017" y="-30.18" fill="#FFFFFF" height="0.961" id="_x30_.1.6.0.0.0.0.0.3.0.0"/>
1903
+ </g>
1904
+ </g>
1905
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 9.6297, -49.7766)">
1906
+ <g id="_x30_.1.6.0.0.0.0.0.3.1">
1907
+ <rect width="0.854" x="-20.497" y="-29.724" fill="#B3B3B3" height="0.049" id="_x30_.1.6.0.0.0.0.0.3.1.0"/>
1908
+ </g>
1909
+ </g>
1910
+ </g>
1911
+ <g id="_x30_.1.6.0.0.0.0.0.4">
1912
+ <polygon fill="#D1C690" points="-21.109,-27.981,-21.213,-27.018,-20.482,-27.018,-20.586,-27.981" id="_x30_.1.6.0.0.0.0.0.4.0"/>
1913
+ <g id="_x30_.1.6.0.0.0.0.0.4.1">
1914
+ <path fill="#D1C690" id="_x30_.1.6.0.0.0.0.0.4.1.0" d="M-20.91,-27.919c0,-0.002,0,-0.004,0,-0.008c0.035,-0.269,0.104,-0.447,0.162,-0.601c0.08,-0.209,0.782,-0.561,0.696,-0.826c-0.012,-0.026,0.011,-0.063,0.043,-0.065c0.035,-0.008,0.068,0.011,0.078,0.039c0.095,0.306,-0.617,0.674,-0.701,0.894c-0.06,0.147,-0.123,0.317,-0.155,0.571c-0.004,0.029,-0.033,0.056,-0.068,0.05C-20.885,-27.871,-20.91,-27.893,-20.91,-27.919z"/>
1915
+ </g>
1916
+ <polygon fill="#D1C690" points="-18.221,-31.401,-18.118,-32.368,-18.848,-32.368,-18.745,-31.401" id="_x30_.1.6.0.0.0.0.0.4.2"/>
1917
+ <g id="_x30_.1.6.0.0.0.0.0.4.3">
1918
+ <path fill="#D1C690" id="_x30_.1.6.0.0.0.0.0.4.3.0" d="M-19.742,-29.749c0,-0.025,0.021,-0.049,0.047,-0.055c0.292,-0.063,1.152,-1.088,1.152,-1.885c0,-0.033,0.026,-0.062,0.063,-0.062c0.034,0.002,0.063,0.022,0.063,0.062l0,0.002c0,0.748,-0.77,1.891,-1.245,1.992c-0.035,0.008,-0.068,-0.016,-0.078,-0.041C-19.742,-29.739,-19.742,-29.743,-19.742,-29.749z"/>
1919
+ </g>
1920
+ <path fill="#D1C690" id="_x30_.1.6.0.0.0.0.0.4.4" d="M-19.758,-29.278c0,0,0.002,-0.354,-0.311,-0.383c0,0.068,0,0.383,0,0.383L-19.758,-29.278z"/>
1921
+ <path fill="#D1C690" id="_x30_.1.6.0.0.0.0.0.4.5" d="M-19.439,-29.712c0,0,-0.306,0.157,-0.351,0.054c-0.048,-0.107,-0.052,-0.179,0.028,-0.24C-19.678,-29.96,-19.439,-29.712,-19.439,-29.712z"/>
1922
+ <path fill="#9D956C" id="_x30_.1.6.0.0.0.0.0.4.6" d="M-20.107,-29.354c0.084,0.271,-0.618,0.617,-0.698,0.826c-0.06,0.146,-0.127,0.33,-0.162,0.601l0.059,0c0.035,-0.269,0.104,-0.447,0.162,-0.601c0.08,-0.209,0.782,-0.561,0.696,-0.826L-20.107,-29.354z"/>
1923
+ <polygon fill="#9D956C" points="-18.8,-31.401,-18.903,-32.368,-18.848,-32.368,-18.745,-31.401" id="_x30_.1.6.0.0.0.0.0.4.7"/>
1924
+ <path fill="#9D956C" id="_x30_.1.6.0.0.0.0.0.4.8" d="M-19.752,-29.805c0.291,-0.063,1.212,-1.069,1.149,-1.885l0.06,0c0.06,0.877,-0.86,1.824,-1.152,1.888L-19.752,-29.805z"/>
1925
+ <path fill="#9D956C" id="_x30_.1.6.0.0.0.0.0.4.9" d="M-20.125,-29.661c0,0.068,0,0.381,0,0.381l0.057,0c0,0,0,-0.313,0,-0.381L-20.125,-29.661z"/>
1926
+ <path fill="#9D956C" id="_x30_.1.6.0.0.0.0.0.4.10" d="M-19.814,-29.901c-0.08,0.063,-0.076,0.131,-0.031,0.237l0.06,0.003c-0.049,-0.107,-0.052,-0.18,0.028,-0.24L-19.814,-29.901z"/>
1927
+ </g>
1928
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 11.9871, -47.4465)">
1929
+ <g id="_x30_.1.6.0.0.0.0.0.5">
1930
+ <rect width="4.225" x="-19.839" opacity="0.5" y="-29.738" fill="#FFFFFF" height="0.051" id="_x30_.1.6.0.0.0.0.0.5.0" enable-background="new "/>
1931
+ </g>
1932
+ </g>
1933
+ <path opacity="0.5" fill="#F2F2F2" id="_x30_.1.6.0.0.0.0.0.6" enable-background="new " d="M-17.701,-32.35l-3.831,0l0,5.316l3.831,0.004L-17.701,-32.35z"/>
1934
+ <path opacity="0.55" fill="#FFFFFF" id="_x30_.1.6.0.0.0.0.0.7" enable-background="new " d="M-18.352,-32.298l0.271,0c0.151,0.019,0.271,-0.013,0.271,0.099c0,0.61,0,4.702,0,4.854c0,0.168,-0.065,0.176,-0.065,-0.014c0,-0.131,0,-3.895,0,-4.348c0,-0.457,-0.105,-0.52,-0.197,-0.52l-0.272,0.004C-18.526,-32.223,-18.526,-32.298,-18.352,-32.298z"/>
1935
+ <path opacity="0.03" id="_x30_.1.6.0.0.0.0.0.8" enable-background="new " d="M-21.311,-27.171c-0.068,0,-0.138,0.013,-0.138,-0.099c0,-0.61,0,-4.668,0,-4.817c0,-0.168,0.065,-0.177,0.065,0.009c0,0.137,0.002,3.139,0.002,3.59C-21.381,-27.895,-21.311,-27.171,-21.311,-27.171z"/>
1936
+ <path fill="#D1C690" id="_x30_.1.6.0.0.0.0.0.9" d="M-21.533,-33.309l0,0.771l0.521,0c0.125,0,0.213,0.08,0.268,0.188l3.047,0l0,-1.01l-3.784,0l-0.05,0"/>
1937
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 15.1234, -50.5798)">
1938
+ <g id="_x30_.1.6.0.0.0.0.0.10">
1939
+ <rect width="1.007" x="-18.229" opacity="0.5" y="-32.873" fill="#FFFFFF" height="0.052" id="_x30_.1.6.0.0.0.0.0.10.0" enable-background="new "/>
1940
+ </g>
1941
+ </g>
1942
+ <path fill="#D1C690" id="_x30_.1.6.0.0.0.0.0.11" d="M-21.533,-25.96l0.049,0l3.784,0l0,-1.071l-3.464,0c-0.056,0.104,-0.146,0.19,-0.271,0.19l-0.1,0l0,0.83"/>
1943
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 8.7664, -44.2238)">
1944
+ <g id="_x30_.1.6.0.0.0.0.0.12">
1945
+ <rect width="1.07" x="-18.26" opacity="0.5" y="-26.517" fill="#FFFFFF" height="0.052" id="_x30_.1.6.0.0.0.0.0.12.0" enable-background="new "/>
1946
+ </g>
1947
+ </g>
1948
+ </g>
1949
+ </g>
1950
+ </g>
1951
+ </g>
1952
+ </g>
1953
+ </g>
1954
+ </g>
1955
+ </g>
1956
+ </g>
1957
+ <g transform="matrix(1, 0, 0, 1, 80.1173, 116.104)">
1958
+ <g id="_x30_.1.7">
1959
+ <g id="panasonic_d">
1960
+ <g transform="matrix(0, 1, -1, 0, 19.39, -1.039)">
1961
+ <g id="_x30_.1.7.0.0">
1962
+ <g id="_x30_.1.7.0.0.0">
1963
+ <g id="_x30_.1.7.0.0.0.0">
1964
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 9.7242, 8.6814)">
1965
+ <g id="_x30_.1.7.0.0.0.0.0">
1966
+ <rect width="1.272" x="-0.167" y="-10.702" fill="#CCCCCC" height="1.039" id="_x30_.1.7.0.0.0.0.0.0"/>
1967
+ </g>
1968
+ </g>
1969
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 29.1148, -10.7073)">
1970
+ <g id="_x30_.1.7.0.0.0.0.1">
1971
+ <rect width="1.272" x="19.221" y="28.079" fill="#CCCCCC" height="1.037" id="_x30_.1.7.0.0.0.0.1.0"/>
1972
+ </g>
1973
+ </g>
1974
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 10.2611, 9.2182)">
1975
+ <g id="_x30_.1.7.0.0.0.0.2">
1976
+ <rect width="0.203" x="-0.706" opacity="0.1" y="-10.165" height="1.039" id="_x30_.1.7.0.0.0.0.2.0" enable-background="new "/>
1977
+ </g>
1978
+ </g>
1979
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 29.6512, -10.1709)">
1980
+ <g id="_x30_.1.7.0.0.0.0.3">
1981
+ <rect width="0.203" x="18.682" opacity="0.1" y="28.616" height="1.037" id="_x30_.1.7.0.0.0.0.3.0" enable-background="new "/>
1982
+ </g>
1983
+ </g>
1984
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 9.1903, 8.1474)">
1985
+ <g id="_x30_.1.7.0.0.0.0.4">
1986
+ <rect width="0.204" x="1.435" opacity="0.2" y="-11.236" fill="#FFFFFF" height="1.039" id="_x30_.1.7.0.0.0.0.4.0" enable-background="new "/>
1987
+ </g>
1988
+ </g>
1989
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 28.5809, -11.2412)">
1990
+ <g id="_x30_.1.7.0.0.0.0.5">
1991
+ <rect width="0.204" x="20.822" opacity="0.2" y="27.545" fill="#FFFFFF" height="1.037" id="_x30_.1.7.0.0.0.0.5.0" enable-background="new "/>
1992
+ </g>
1993
+ </g>
1994
+ <path fill="#1A1A1A" id="_x30_.1.7.0.0.0.0.6" d="M4.845,18.353l13.157,0c0.76,0,1.385,-0.623,1.385,-1.383l0,-15.58c0,-0.764,-0.625,-1.387,-1.385,-1.387l-13.157,0l-3.81,3.811l0,3.633l0,3.635l0,3.463L4.845,18.353z"/>
1995
+ <circle fill="#E6E6E6" cx="10.211" cy="9.178" id="_x30_.1.7.0.0.0.0.7" r="8.703"/>
1996
+ <path fill="#333333" id="_x30_.1.7.0.0.0.0.8" d="M4.845,18.353l13.157,0c0.76,0,1.385,-0.623,1.385,-1.383l0,-15.58c0,-0.764,-0.625,-1.387,-1.385,-1.387L15.25,0.003l-10.405,0l-3.81,3.811l0,3.633l0,3.635l0,3.463L4.845,18.353z"/>
1997
+ <path id="_x30_.1.7.0.0.0.0.9" d="M1.036,3.997l3.811,-3.811l10.404,0l2.752,0c0.76,0,1.385,0.623,1.385,1.387L19.388,1.389c0,-0.764,-0.625,-1.387,-1.385,-1.387L15.25,0.002l-10.405,0l-3.81,3.811L1.035,3.997L1.036,3.997z"/>
1998
+ <path opacity="0.1" fill="#FFFFFF" id="_x30_.1.7.0.0.0.0.10" enable-background="new " d="M19.386,16.785c0,0.761,-0.625,1.384,-1.385,1.384l-13.157,0l-3.811,-3.807l0,0.183l3.811,3.808l13.157,0c0.76,0,1.385,-0.623,1.385,-1.383L19.386,16.785z"/>
1999
+ <path fill="#E6E6E6" id="_x30_.1.7.0.0.0.0.11" d="M10.211,0.354c1.881,0,3.615,0.604,5.039,1.614c2.215,1.579,3.664,4.163,3.664,7.088c0,2.927,-1.449,5.509,-3.664,7.087c-1.424,1.013,-3.158,1.615,-5.039,1.615c-4.805,0,-8.702,-3.896,-8.702,-8.703C1.509,4.251,5.407,0.354,10.211,0.354z"/>
2000
+ <path id="_x30_.1.7.0.0.0.0.12" d="M18.915,9.178c0,-2.926,-1.449,-5.509,-3.664,-7.088l0,14.175C17.465,14.688,18.915,12.105,18.915,9.178z"/>
2001
+ <path opacity="0.3" fill="#FFFFFF" id="_x30_.1.7.0.0.0.0.13" enable-background="new " d="M1.509,8.934c0,4.807,3.897,8.703,8.702,8.703c1.881,0,3.615,-0.604,5.039,-1.616c2.215,-1.578,3.664,-4.161,3.664,-7.087l0,0.244c0,2.927,-1.449,5.51,-3.664,7.087c-1.424,1.014,-3.158,1.615,-5.039,1.615c-4.805,0,-8.702,-3.896,-8.702,-8.702L1.509,8.934z"/>
2002
+ <path opacity="0.5" fill="#FFFFFF" id="_x30_.1.7.0.0.0.0.14" enable-background="new " d="M18.915,9.407c0,-2.925,-1.449,-5.508,-3.664,-7.088L15.251,2.09c2.215,1.579,3.664,4.162,3.664,7.088L18.915,9.407z"/>
2003
+ <path opacity="0.2" id="_x30_.1.7.0.0.0.0.15" enable-background="new " d="M15.25,2.319c-1.424,-1.012,-3.158,-1.615,-5.039,-1.615c-4.805,0,-8.702,3.898,-8.702,8.703L1.509,9.178c0,-4.805,3.897,-8.703,8.702,-8.703c1.881,0,3.615,0.604,5.039,1.615L15.25,2.319z"/>
2004
+ </g>
2005
+ </g>
2006
+ </g>
2007
+ </g>
2008
+ </g>
2009
+ </g>
2010
+ </g>
2011
+ <g transform="matrix(1, 0, 0, 1, 59.9571, 116.104)">
2012
+ <g id="_x30_.1.8">
2013
+ <g id="panasonic_d_1_">
2014
+ <g transform="matrix(0, 1, -1, 0, 19.39, -1.039)">
2015
+ <g id="_x30_.1.8.0.0">
2016
+ <g id="_x30_.1.8.0.0.0">
2017
+ <g id="_x30_.1.8.0.0.0.0">
2018
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 9.7247, 8.6818)">
2019
+ <g id="_x30_.1.8.0.0.0.0.0">
2020
+ <rect width="1.272" x="-0.168" y="-10.702" fill="#CCCCCC" height="1.038" id="_x30_.1.8.0.0.0.0.0.0"/>
2021
+ </g>
2022
+ </g>
2023
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 29.1148, -10.7074)">
2024
+ <g id="_x30_.1.8.0.0.0.0.1">
2025
+ <rect width="1.272" x="19.22" y="28.078" fill="#CCCCCC" height="1.037" id="_x30_.1.8.0.0.0.0.1.0"/>
2026
+ </g>
2027
+ </g>
2028
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 10.261, 9.2182)">
2029
+ <g id="_x30_.1.8.0.0.0.0.2">
2030
+ <rect width="0.203" x="-0.707" opacity="0.1" y="-10.165" height="1.039" id="_x30_.1.8.0.0.0.0.2.0" enable-background="new "/>
2031
+ </g>
2032
+ </g>
2033
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 29.6506, -10.1715)">
2034
+ <g id="_x30_.1.8.0.0.0.0.3">
2035
+ <rect width="0.203" x="18.683" opacity="0.1" y="28.615" height="1.037" id="_x30_.1.8.0.0.0.0.3.0" enable-background="new "/>
2036
+ </g>
2037
+ </g>
2038
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 9.1902, 8.1474)">
2039
+ <g id="_x30_.1.8.0.0.0.0.4">
2040
+ <rect width="0.204" x="1.435" opacity="0.2" y="-11.237" fill="#FFFFFF" height="1.039" id="_x30_.1.8.0.0.0.0.4.0" enable-background="new "/>
2041
+ </g>
2042
+ </g>
2043
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 28.5808, -11.2413)">
2044
+ <g id="_x30_.1.8.0.0.0.0.5">
2045
+ <rect width="0.204" x="20.822" opacity="0.2" y="27.544" fill="#FFFFFF" height="1.037" id="_x30_.1.8.0.0.0.0.5.0" enable-background="new "/>
2046
+ </g>
2047
+ </g>
2048
+ <path fill="#1A1A1A" id="_x30_.1.8.0.0.0.0.6" d="M4.846,18.353l13.157,0c0.76,0,1.385,-0.623,1.385,-1.383l0,-15.58c0,-0.764,-0.625,-1.387,-1.385,-1.387l-13.157,0l-3.81,3.811l0,3.633l0,3.635l0,3.463L4.846,18.353z"/>
2049
+ <circle fill="#E6E6E6" cx="10.212" cy="9.178" id="_x30_.1.8.0.0.0.0.7" r="8.703"/>
2050
+ <path fill="#333333" id="_x30_.1.8.0.0.0.0.8" d="M4.846,18.353l13.157,0c0.76,0,1.385,-0.623,1.385,-1.383l0,-15.58c0,-0.764,-0.625,-1.387,-1.385,-1.387l-2.752,0l-10.405,0l-3.81,3.811l0,3.633l0,3.635l0,3.463L4.846,18.353z"/>
2051
+ <path id="_x30_.1.8.0.0.0.0.9" d="M1.037,3.997l3.811,-3.811l10.404,0l2.752,0c0.76,0,1.385,0.623,1.385,1.387l0,-0.184c0,-0.764,-0.625,-1.387,-1.385,-1.387l-2.752,0l-10.405,0l-3.81,3.811L1.037,3.997L1.037,3.997z"/>
2052
+ <path opacity="0.1" fill="#FFFFFF" id="_x30_.1.8.0.0.0.0.10" enable-background="new " d="M19.387,16.785c0,0.761,-0.625,1.384,-1.385,1.384l-13.157,0l-3.811,-3.807l0,0.183l3.811,3.808l13.157,0c0.76,0,1.385,-0.623,1.385,-1.383L19.387,16.785z"/>
2053
+ <path fill="#E6E6E6" id="_x30_.1.8.0.0.0.0.11" d="M10.212,0.354c1.881,0,3.615,0.604,5.039,1.614c2.215,1.579,3.664,4.163,3.664,7.088c0,2.927,-1.449,5.509,-3.664,7.087c-1.424,1.013,-3.158,1.615,-5.039,1.615c-4.805,0,-8.702,-3.896,-8.702,-8.703C1.51,4.251,5.408,0.354,10.212,0.354z"/>
2054
+ <path id="_x30_.1.8.0.0.0.0.12" d="M18.915,9.178c0,-2.926,-1.449,-5.509,-3.664,-7.088l0,14.175C17.466,14.688,18.916,12.105,18.915,9.178z"/>
2055
+ <path opacity="0.3" fill="#FFFFFF" id="_x30_.1.8.0.0.0.0.13" enable-background="new " d="M1.51,8.934c0,4.807,3.897,8.703,8.702,8.703c1.881,0,3.615,-0.604,5.039,-1.616c2.215,-1.578,3.664,-4.161,3.664,-7.087l0,0.244c0,2.927,-1.449,5.51,-3.664,7.087c-1.424,1.014,-3.158,1.615,-5.039,1.615c-4.805,0,-8.702,-3.896,-8.702,-8.702L1.51,8.934z"/>
2056
+ <path opacity="0.5" fill="#FFFFFF" id="_x30_.1.8.0.0.0.0.14" enable-background="new " d="M18.915,9.407c0,-2.925,-1.449,-5.508,-3.664,-7.088L15.251,2.09c2.215,1.579,3.664,4.162,3.664,7.088L18.915,9.407z"/>
2057
+ <path opacity="0.2" id="_x30_.1.8.0.0.0.0.15" enable-background="new " d="M15.251,2.319c-1.424,-1.012,-3.158,-1.615,-5.039,-1.615c-4.805,0,-8.702,3.898,-8.702,8.703L1.51,9.178c0,-4.805,3.897,-8.703,8.702,-8.703c1.881,0,3.615,0.604,5.039,1.615L15.251,2.319z"/>
2058
+ </g>
2059
+ </g>
2060
+ </g>
2061
+ </g>
2062
+ </g>
2063
+ </g>
2064
+ </g>
2065
+ <g transform="matrix(1, 0, 0, 1, 92.8519, 140.628)">
2066
+ <g id="_x30_.1.9">
2067
+ <g id="_x31_x08_1_">
2068
+ <rect width="57.601" x="0.72" y="-0.228" fill="#404040" height="7.199" id="_x30_.1.9.0.0"/>
2069
+ <rect width="2.781" x="2.93" y="1.981" height="2.783" id="_x30_.1.9.0.1"/>
2070
+ <polygon fill="#2A2A29" points="1.905,0.956,2.928,1.981,5.711,1.981,6.737,0.956" id="_x30_.1.9.0.2"/>
2071
+ <polygon fill="#474747" points="6.737,0.956,5.711,1.985,5.711,4.766,6.737,5.789" id="_x30_.1.9.0.3"/>
2072
+ <polygon fill="#595959" points="6.736,5.789,5.71,4.766,2.928,4.766,1.905,5.789" id="_x30_.1.9.0.4"/>
2073
+ <polygon fill="#373737" points="1.903,5.789,2.928,4.764,2.928,1.981,1.903,0.956" id="_x30_.1.9.0.5"/>
2074
+ <rect width="2.781" x="10.13" y="1.981" height="2.783" id="_x30_.1.9.0.6"/>
2075
+ <polygon fill="#2A2A29" points="9.104,0.956,10.128,1.981,12.912,1.981,13.938,0.956" id="_x30_.1.9.0.7"/>
2076
+ <polygon fill="#474747" points="13.938,0.956,12.912,1.985,12.912,4.766,13.938,5.789" id="_x30_.1.9.0.8"/>
2077
+ <polygon fill="#595959" points="13.936,5.789,12.911,4.766,10.128,4.766,9.104,5.789" id="_x30_.1.9.0.9"/>
2078
+ <polygon fill="#373737" points="9.102,5.789,10.128,4.764,10.128,1.981,9.102,0.956" id="_x30_.1.9.0.10"/>
2079
+ <rect width="2.78" x="17.331" y="1.981" height="2.783" id="_x30_.1.9.0.11"/>
2080
+ <polygon fill="#2A2A29" points="16.304,0.956,17.328,1.981,20.112,1.981,21.136,0.956" id="_x30_.1.9.0.12"/>
2081
+ <polygon fill="#474747" points="21.136,0.956,20.112,1.985,20.112,4.766,21.136,5.789" id="_x30_.1.9.0.13"/>
2082
+ <polygon fill="#595959" points="21.135,5.789,20.11,4.766,17.328,4.766,16.304,5.789" id="_x30_.1.9.0.14"/>
2083
+ <polygon fill="#373737" points="16.302,5.789,17.328,4.764,17.328,1.981,16.302,0.956" id="_x30_.1.9.0.15"/>
2084
+ <rect width="2.781" x="24.53" y="1.981" height="2.783" id="_x30_.1.9.0.16"/>
2085
+ <polygon fill="#2A2A29" points="23.503,0.956,24.528,1.981,27.313,1.981,28.335,0.956" id="_x30_.1.9.0.17"/>
2086
+ <polygon fill="#474747" points="28.335,0.956,27.313,1.985,27.313,4.766,28.335,5.789" id="_x30_.1.9.0.18"/>
2087
+ <polygon fill="#595959" points="28.335,5.789,27.311,4.766,24.528,4.766,23.503,5.789" id="_x30_.1.9.0.19"/>
2088
+ <polygon fill="#373737" points="23.501,5.789,24.528,4.764,24.528,1.981,23.501,0.956" id="_x30_.1.9.0.20"/>
2089
+ <rect width="2.78" x="31.731" y="1.981" height="2.783" id="_x30_.1.9.0.21"/>
2090
+ <polygon fill="#2A2A29" points="30.703,0.956,31.729,1.981,34.511,1.981,35.535,0.956" id="_x30_.1.9.0.22"/>
2091
+ <polygon fill="#474747" points="35.535,0.956,34.511,1.985,34.511,4.766,35.535,5.789" id="_x30_.1.9.0.23"/>
2092
+ <polygon fill="#595959" points="35.535,5.789,34.51,4.766,31.729,4.766,30.703,5.789" id="_x30_.1.9.0.24"/>
2093
+ <polygon fill="#373737" points="30.701,5.789,31.729,4.764,31.729,1.981,30.701,0.956" id="_x30_.1.9.0.25"/>
2094
+ <rect width="2.78" x="38.93" y="1.981" height="2.783" id="_x30_.1.9.0.26"/>
2095
+ <polygon fill="#2A2A29" points="37.905,0.956,38.928,1.981,41.71,1.981,42.737,0.956" id="_x30_.1.9.0.27"/>
2096
+ <polygon fill="#474747" points="42.737,0.956,41.71,1.985,41.71,4.766,42.737,5.789" id="_x30_.1.9.0.28"/>
2097
+ <polygon fill="#595959" points="42.735,5.789,41.71,4.766,38.928,4.766,37.905,5.789" id="_x30_.1.9.0.29"/>
2098
+ <polygon fill="#373737" points="37.903,5.789,38.928,4.764,38.928,1.981,37.903,0.956" id="_x30_.1.9.0.30"/>
2099
+ <rect width="2.78" x="46.13" y="1.981" height="2.783" id="_x30_.1.9.0.31"/>
2100
+ <polygon fill="#2A2A29" points="45.104,0.956,46.128,1.981,48.91,1.981,49.938,0.956" id="_x30_.1.9.0.32"/>
2101
+ <polygon fill="#474747" points="49.938,0.956,48.91,1.985,48.91,4.766,49.938,5.789" id="_x30_.1.9.0.33"/>
2102
+ <polygon fill="#595959" points="49.936,5.789,48.91,4.766,46.128,4.766,45.104,5.789" id="_x30_.1.9.0.34"/>
2103
+ <polygon fill="#373737" points="45.102,5.789,46.128,4.764,46.128,1.981,45.102,0.956" id="_x30_.1.9.0.35"/>
2104
+ <rect width="2.78" x="53.331" y="1.981" height="2.783" id="_x30_.1.9.0.36"/>
2105
+ <polygon fill="#2A2A29" points="52.304,0.956,53.328,1.981,56.112,1.981,57.136,0.956" id="_x30_.1.9.0.37"/>
2106
+ <polygon fill="#474747" points="57.136,0.956,56.112,1.985,56.112,4.766,57.136,5.789" id="_x30_.1.9.0.38"/>
2107
+ <polygon fill="#595959" points="57.135,5.789,56.11,4.766,53.328,4.766,52.304,5.789" id="_x30_.1.9.0.39"/>
2108
+ <polygon fill="#373737" points="52.302,5.789,53.328,4.764,53.328,1.981,52.302,0.956" id="_x30_.1.9.0.40"/>
2109
+ </g>
2110
+ </g>
2111
+ </g>
2112
+ <g transform="matrix(1, 0, 0, 1, 89.0222, 50.1755)">
2113
+ <g id="_x30_.1.10">
2114
+ <g id="chip-led0805_2_">
2115
+ <g transform="matrix(0, 1, -1, 0, 5.62951, 1.77951)">
2116
+ <g id="_x30_.1.10.0.0">
2117
+ <g id="_x30_.1.10.0.0.0">
2118
+ <g transform="matrix(1, 0, 0, 1, 21.5539, 31.3385)">
2119
+ <g id="_x30_.1.10.0.0.0.0">
2120
+ <g id="led-0603_3_">
2121
+ <line fill="none" id="_x30_.1.10.0.0.0.0.0.0" y1="-37.083" x1="-21.535" y2="-29.847" x2="-21.535"/>
2122
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, -53.0294, -13.7889)">
2123
+ <g id="_x30_.1.10.0.0.0.0.0.1">
2124
+ <rect width="7.348" x="-23.292" y="-35.322" fill="#F2F2F2" height="3.833" id="_x30_.1.10.0.0.0.0.0.1.0"/>
2125
+ </g>
2126
+ </g>
2127
+ <path fill="#22B573" fill-opacity="0.7" id="_x30_.1.10.0.0.0.0.0.2" d="M-21.541,-32.333c0,0,0.467,0.645,0.426,0.867c-0.041,0.219,0.148,0.541,0,0.676l-0.424,-0.018L-21.541,-32.333z"/>
2128
+ <g id="_x30_.1.10.0.0.0.0.0.3">
2129
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, -53.0695, -13.8875)">
2130
+ <g id="_x30_.1.10.0.0.0.0.0.3.0">
2131
+ <rect width="0.854" x="-20.016" y="-33.957" fill="#FFFFFF" height="0.961" id="_x30_.1.10.0.0.0.0.0.3.0.0"/>
2132
+ </g>
2133
+ </g>
2134
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, -53.5526, -13.4083)">
2135
+ <g id="_x30_.1.10.0.0.0.0.0.3.1">
2136
+ <rect width="0.854" x="-20.497" y="-33.503" fill="#B3B3B3" height="0.049" id="_x30_.1.10.0.0.0.0.0.3.1.0"/>
2137
+ </g>
2138
+ </g>
2139
+ </g>
2140
+ <g id="_x30_.1.10.0.0.0.0.0.4">
2141
+ <polygon fill="#D1C690" points="-21.115,-31.753,-21.219,-30.79,-20.488,-30.79,-20.592,-31.753" id="_x30_.1.10.0.0.0.0.0.4.0"/>
2142
+ <g id="_x30_.1.10.0.0.0.0.0.4.1">
2143
+ <path fill="#D1C690" id="_x30_.1.10.0.0.0.0.0.4.1.0" d="M-20.918,-31.692c0,-0.002,0,-0.004,0,-0.008c0.035,-0.266,0.104,-0.447,0.162,-0.598c0.08,-0.209,0.782,-0.559,0.696,-0.828c-0.012,-0.027,0.011,-0.06,0.043,-0.066c0.035,-0.008,0.068,0.01,0.078,0.039c0.095,0.305,-0.617,0.674,-0.701,0.893c-0.06,0.148,-0.123,0.318,-0.155,0.572c-0.004,0.029,-0.033,0.055,-0.068,0.049C-20.893,-31.642,-20.918,-31.665,-20.918,-31.692z"/>
2144
+ </g>
2145
+ <polygon fill="#D1C690" points="-18.229,-35.173,-18.126,-36.139,-18.856,-36.139,-18.753,-35.173" id="_x30_.1.10.0.0.0.0.0.4.2"/>
2146
+ <g id="_x30_.1.10.0.0.0.0.0.4.3">
2147
+ <path fill="#D1C690" id="_x30_.1.10.0.0.0.0.0.4.3.0" d="M-19.75,-33.52c0,-0.025,0.02,-0.049,0.047,-0.055c0.292,-0.063,1.152,-1.088,1.152,-1.885c0,-0.033,0.026,-0.057,0.063,-0.057c0.034,0.002,0.063,0.025,0.063,0.057l0,0.002c0,0.749,-0.77,1.891,-1.245,1.993c-0.035,0.008,-0.068,-0.012,-0.078,-0.041C-19.75,-33.511,-19.75,-33.515,-19.75,-33.52z"/>
2148
+ </g>
2149
+ <path fill="#D1C690" id="_x30_.1.10.0.0.0.0.0.4.4" d="M-19.766,-33.05c0,0,0.002,-0.356,-0.311,-0.383c0,0.07,0,0.383,0,0.383L-19.766,-33.05z"/>
2150
+ <path fill="#D1C690" id="_x30_.1.10.0.0.0.0.0.4.5" d="M-19.446,-33.485c0,0,-0.306,0.158,-0.351,0.053c-0.048,-0.107,-0.052,-0.178,0.028,-0.24C-19.686,-33.733,-19.446,-33.485,-19.446,-33.485z"/>
2151
+ <path fill="#9D956C" id="_x30_.1.10.0.0.0.0.0.4.6" d="M-20.113,-33.126c0.084,0.27,-0.618,0.619,-0.698,0.828c-0.06,0.145,-0.127,0.33,-0.162,0.598l0.059,0c0.035,-0.266,0.104,-0.447,0.162,-0.598c0.08,-0.209,0.782,-0.559,0.696,-0.828L-20.113,-33.126z"/>
2152
+ <polygon fill="#9D956C" points="-18.808,-35.173,-18.909,-36.139,-18.856,-36.139,-18.753,-35.173" id="_x30_.1.10.0.0.0.0.0.4.7"/>
2153
+ <path fill="#9D956C" id="_x30_.1.10.0.0.0.0.0.4.8" d="M-19.759,-33.577c0.291,-0.062,1.212,-1.07,1.149,-1.885l0.06,0c0.06,0.877,-0.86,1.826,-1.152,1.887L-19.759,-33.577z"/>
2154
+ <path fill="#9D956C" id="_x30_.1.10.0.0.0.0.0.4.9" d="M-20.133,-33.433c0,0.07,0,0.381,0,0.381l0.057,0c0,0,0,-0.311,0,-0.381L-20.133,-33.433z"/>
2155
+ <path fill="#9D956C" id="_x30_.1.10.0.0.0.0.0.4.10" d="M-19.821,-33.673c-0.08,0.063,-0.076,0.131,-0.031,0.238l0.06,0.002c-0.049,-0.107,-0.052,-0.179,0.028,-0.24L-19.821,-33.673z"/>
2156
+ </g>
2157
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, -51.2218, -15.764)">
2158
+ <g id="_x30_.1.10.0.0.0.0.0.5">
2159
+ <rect width="4.223" x="-19.838" opacity="0.5" y="-33.517" fill="#FFFFFF" height="0.051" id="_x30_.1.10.0.0.0.0.0.5.0" enable-background="new "/>
2160
+ </g>
2161
+ </g>
2162
+ <path opacity="0.5" fill="#F2F2F2" id="_x30_.1.10.0.0.0.0.0.6" enable-background="new " d="M-17.708,-36.122l-3.831,0l0,5.317l3.831,0.004L-17.708,-36.122z"/>
2163
+ <path opacity="0.55" fill="#FFFFFF" id="_x30_.1.10.0.0.0.0.0.7" enable-background="new " d="M-18.36,-36.071l0.271,0c0.151,0.018,0.271,-0.012,0.271,0.098c0,0.611,0,4.703,0,4.854c0,0.168,-0.065,0.176,-0.065,-0.012c0,-0.131,0,-3.893,0,-4.346c0,-0.457,-0.105,-0.518,-0.197,-0.518l-0.272,0.002C-18.532,-35.994,-18.532,-36.071,-18.36,-36.071z"/>
2164
+ <path opacity="0.03" id="_x30_.1.10.0.0.0.0.0.8" enable-background="new " d="M-21.319,-30.944c-0.068,0,-0.138,0.012,-0.138,-0.098c0,-0.611,0,-4.667,0,-4.817c0,-0.168,0.065,-0.176,0.065,0.008c0,0.135,0.002,3.138,0.002,3.589C-21.387,-31.667,-21.319,-30.944,-21.319,-30.944z"/>
2165
+ <path fill="#D1C690" id="_x30_.1.10.0.0.0.0.0.9" d="M-21.541,-37.08l0,0.771l0.521,0c0.125,0,0.213,0.08,0.268,0.188l3.047,0l0,-1.01l-3.784,0l-0.05,0"/>
2166
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, -54.3568, -18.9)">
2167
+ <g id="_x30_.1.10.0.0.0.0.0.10">
2168
+ <rect width="1.006" x="-18.23" opacity="0.5" y="-36.653" fill="#FFFFFF" height="0.052" id="_x30_.1.10.0.0.0.0.0.10.0" enable-background="new "/>
2169
+ </g>
2170
+ </g>
2171
+ <path fill="#D1C690" id="_x30_.1.10.0.0.0.0.0.11" d="M-21.541,-29.733l0.049,0l3.784,0l0,-1.072l-3.464,0c-0.056,0.105,-0.146,0.191,-0.271,0.191l-0.1,0l0,0.83"/>
2172
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, -47.9999, -12.5431)">
2173
+ <g id="_x30_.1.10.0.0.0.0.0.12">
2174
+ <rect width="1.072" x="-18.262" opacity="0.5" y="-30.296" fill="#FFFFFF" height="0.052" id="_x30_.1.10.0.0.0.0.0.12.0" enable-background="new "/>
2175
+ </g>
2176
+ </g>
2177
+ </g>
2178
+ </g>
2179
+ </g>
2180
+ </g>
2181
+ </g>
2182
+ </g>
2183
+ </g>
2184
+ </g>
2185
+ </g>
2186
+ <g transform="matrix(1, 0, 0, 1, 89.0222, 43.6955)">
2187
+ <g id="_x30_.1.11">
2188
+ <g id="chip-led0805_3_">
2189
+ <g transform="matrix(0, 1, -1, 0, 5.62951, 1.77951)">
2190
+ <g id="_x30_.1.11.0.0">
2191
+ <g id="_x30_.1.11.0.0.0">
2192
+ <g transform="matrix(1, 0, 0, 1, 21.5539, 31.3385)">
2193
+ <g id="_x30_.1.11.0.0.0.0">
2194
+ <g id="led-0603_4_">
2195
+ <line fill="none" id="_x30_.1.11.0.0.0.0.0.0" y1="-37.083" x1="-21.535" y2="-29.847" x2="-21.535"/>
2196
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, -53.0294, -13.788)">
2197
+ <g id="_x30_.1.11.0.0.0.0.0.1">
2198
+ <rect width="7.348" x="-23.292" y="-35.322" fill="#F2F2F2" height="3.833" id="_x30_.1.11.0.0.0.0.0.1.0"/>
2199
+ </g>
2200
+ </g>
2201
+ <path fill="#22B573" fill-opacity="0.7" id="_x30_.1.11.0.0.0.0.0.2" d="M-21.541,-32.333c0,0,0.467,0.645,0.426,0.867c-0.041,0.219,0.148,0.541,0,0.676l-0.424,-0.018L-21.541,-32.333z"/>
2202
+ <g id="_x30_.1.11.0.0.0.0.0.3">
2203
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, -53.0694, -13.8876)">
2204
+ <g id="_x30_.1.11.0.0.0.0.0.3.0">
2205
+ <rect width="0.854" x="-20.016" y="-33.957" fill="#FFFFFF" height="0.961" id="_x30_.1.11.0.0.0.0.0.3.0.0"/>
2206
+ </g>
2207
+ </g>
2208
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, -53.5514, -13.4056)">
2209
+ <g id="_x30_.1.11.0.0.0.0.0.3.1">
2210
+ <rect width="0.854" x="-20.498" y="-33.501" fill="#B3B3B3" height="0.049" id="_x30_.1.11.0.0.0.0.0.3.1.0"/>
2211
+ </g>
2212
+ </g>
2213
+ </g>
2214
+ <g id="_x30_.1.11.0.0.0.0.0.4">
2215
+ <polygon fill="#D1C690" points="-21.115,-31.753,-21.219,-30.79,-20.488,-30.79,-20.592,-31.753" id="_x30_.1.11.0.0.0.0.0.4.0"/>
2216
+ <g id="_x30_.1.11.0.0.0.0.0.4.1">
2217
+ <path fill="#D1C690" id="_x30_.1.11.0.0.0.0.0.4.1.0" d="M-20.918,-31.692c0,-0.002,0,-0.004,0,-0.008c0.035,-0.266,0.104,-0.447,0.162,-0.598c0.08,-0.209,0.782,-0.559,0.696,-0.828c-0.012,-0.027,0.011,-0.06,0.043,-0.066c0.035,-0.008,0.068,0.01,0.078,0.039c0.095,0.305,-0.617,0.674,-0.701,0.893c-0.06,0.148,-0.123,0.318,-0.155,0.572c-0.004,0.029,-0.033,0.055,-0.068,0.049C-20.892,-31.642,-20.918,-31.665,-20.918,-31.692z"/>
2218
+ </g>
2219
+ <polygon fill="#D1C690" points="-18.229,-35.173,-18.126,-36.139,-18.856,-36.139,-18.753,-35.173" id="_x30_.1.11.0.0.0.0.0.4.2"/>
2220
+ <g id="_x30_.1.11.0.0.0.0.0.4.3">
2221
+ <path fill="#D1C690" id="_x30_.1.11.0.0.0.0.0.4.3.0" d="M-19.75,-33.52c0,-0.025,0.02,-0.049,0.047,-0.055c0.292,-0.063,1.152,-1.088,1.152,-1.885c0,-0.033,0.026,-0.057,0.063,-0.057c0.034,0.002,0.063,0.025,0.063,0.057l0,0.002c0,0.749,-0.77,1.891,-1.245,1.993c-0.035,0.008,-0.068,-0.012,-0.078,-0.041C-19.75,-33.511,-19.75,-33.515,-19.75,-33.52z"/>
2222
+ </g>
2223
+ <path fill="#D1C690" id="_x30_.1.11.0.0.0.0.0.4.4" d="M-19.764,-33.05c0,0,0.002,-0.356,-0.311,-0.383c0,0.07,0,0.383,0,0.383L-19.764,-33.05z"/>
2224
+ <path fill="#D1C690" id="_x30_.1.11.0.0.0.0.0.4.5" d="M-19.445,-33.485c0,0,-0.306,0.158,-0.351,0.053c-0.048,-0.107,-0.052,-0.178,0.028,-0.24C-19.686,-33.733,-19.445,-33.485,-19.445,-33.485z"/>
2225
+ <path fill="#9D956C" id="_x30_.1.11.0.0.0.0.0.4.6" d="M-20.113,-33.126c0.084,0.27,-0.618,0.619,-0.698,0.828c-0.06,0.145,-0.127,0.33,-0.162,0.598l0.059,0c0.035,-0.266,0.104,-0.447,0.162,-0.598c0.08,-0.209,0.782,-0.559,0.696,-0.828L-20.113,-33.126z"/>
2226
+ <polygon fill="#9D956C" points="-18.806,-35.173,-18.91,-36.139,-18.856,-36.139,-18.753,-35.173" id="_x30_.1.11.0.0.0.0.0.4.7"/>
2227
+ <path fill="#9D956C" id="_x30_.1.11.0.0.0.0.0.4.8" d="M-19.758,-33.577c0.291,-0.062,1.212,-1.07,1.149,-1.885l0.06,0c0.06,0.877,-0.86,1.826,-1.152,1.887L-19.758,-33.577z"/>
2228
+ <path fill="#9D956C" id="_x30_.1.11.0.0.0.0.0.4.9" d="M-20.131,-33.433c0,0.07,0,0.381,0,0.381l0.057,0c0,0,0,-0.311,0,-0.381L-20.131,-33.433z"/>
2229
+ <path fill="#9D956C" id="_x30_.1.11.0.0.0.0.0.4.10" d="M-19.82,-33.673c-0.08,0.063,-0.076,0.131,-0.031,0.238l0.06,0.002c-0.049,-0.107,-0.052,-0.179,0.028,-0.24L-19.82,-33.673z"/>
2230
+ </g>
2231
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, -51.2218, -15.7626)">
2232
+ <g id="_x30_.1.11.0.0.0.0.0.5">
2233
+ <rect width="4.223" x="-19.839" opacity="0.5" y="-33.516" fill="#FFFFFF" height="0.051" id="_x30_.1.11.0.0.0.0.0.5.0" enable-background="new "/>
2234
+ </g>
2235
+ </g>
2236
+ <path opacity="0.5" fill="#F2F2F2" id="_x30_.1.11.0.0.0.0.0.6" enable-background="new " d="M-17.708,-36.122l-3.831,0l0,5.317l3.831,0.004L-17.708,-36.122z"/>
2237
+ <path opacity="0.55" fill="#FFFFFF" id="_x30_.1.11.0.0.0.0.0.7" enable-background="new " d="M-18.359,-36.071l0.271,0c0.151,0.018,0.271,-0.012,0.271,0.098c0,0.611,0,4.703,0,4.854c0,0.168,-0.065,0.176,-0.065,-0.012c0,-0.131,0,-3.893,0,-4.346c0,-0.457,-0.105,-0.518,-0.197,-0.518l-0.272,0.002C-18.532,-35.994,-18.532,-36.071,-18.359,-36.071z"/>
2238
+ <path opacity="0.03" id="_x30_.1.11.0.0.0.0.0.8" enable-background="new " d="M-21.317,-30.944c-0.068,0,-0.138,0.012,-0.138,-0.098c0,-0.611,0,-4.667,0,-4.817c0,-0.168,0.065,-0.176,0.065,0.008c0,0.135,0.002,3.138,0.002,3.589C-21.387,-31.667,-21.317,-30.944,-21.317,-30.944z"/>
2239
+ <path fill="#D1C690" id="_x30_.1.11.0.0.0.0.0.9" d="M-21.541,-37.08l0,0.771l0.521,0c0.125,0,0.213,0.08,0.268,0.188l3.047,0l0,-1.01l-3.784,0l-0.05,0"/>
2240
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, -54.3578, -18.8995)">
2241
+ <g id="_x30_.1.11.0.0.0.0.0.10">
2242
+ <rect width="1.006" x="-18.23" opacity="0.5" y="-36.653" fill="#FFFFFF" height="0.052" id="_x30_.1.11.0.0.0.0.0.10.0" enable-background="new "/>
2243
+ </g>
2244
+ </g>
2245
+ <path fill="#D1C690" id="_x30_.1.11.0.0.0.0.0.11" d="M-21.541,-29.733l0.049,0l3.784,0l0,-1.072l-3.464,0c-0.056,0.105,-0.146,0.191,-0.271,0.191l-0.1,0l0,0.83"/>
2246
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, -48.0001, -12.5429)">
2247
+ <g id="_x30_.1.11.0.0.0.0.0.12">
2248
+ <rect width="1.072" x="-18.262" opacity="0.5" y="-30.294" fill="#FFFFFF" height="0.052" id="_x30_.1.11.0.0.0.0.0.12.0" enable-background="new "/>
2249
+ </g>
2250
+ </g>
2251
+ </g>
2252
+ </g>
2253
+ </g>
2254
+ </g>
2255
+ </g>
2256
+ </g>
2257
+ </g>
2258
+ </g>
2259
+ </g>
2260
+ <g transform="matrix(1, 0, 0, 1, 31.1856, 77.2272)">
2261
+ <g id="_x30_.1.12">
2262
+ <g id="sot223">
2263
+ <g transform="matrix(0, 1, -1, 0, 19.6385, 0.486504)">
2264
+ <g id="_x30_.1.12.0.0">
2265
+ <g id="_x30_.1.12.0.0.0">
2266
+ <g id="_x30_.1.12.0.0.0.0">
2267
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 34.358, -27.0816)">
2268
+ <g id="_x30_.1.12.0.0.0.0.0">
2269
+ <rect width="4.896" x="28.274" y="1.913" fill="#999999" height="3.458" id="_x30_.1.12.0.0.0.0.0.0"/>
2270
+ </g>
2271
+ </g>
2272
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 27.8034, -20.526)">
2273
+ <g id="_x30_.1.12.0.0.0.0.1">
2274
+ <rect width="4.896" x="21.719" y="1.913" fill="#999999" height="3.459" id="_x30_.1.12.0.0.0.0.1.0"/>
2275
+ </g>
2276
+ </g>
2277
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 21.2482, -13.9718)">
2278
+ <g id="_x30_.1.12.0.0.0.0.2">
2279
+ <rect width="4.896" x="15.164" y="1.914" fill="#999999" height="3.455" id="_x30_.1.12.0.0.0.0.2.0"/>
2280
+ </g>
2281
+ </g>
2282
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 31.983, -29.4566)">
2283
+ <g id="_x30_.1.12.0.0.0.0.3">
2284
+ <rect width="0.146" x="30.649" opacity="0.2" y="-0.462" fill="#FFFFFF" height="3.458" id="_x30_.1.12.0.0.0.0.3.0" enable-background="new "/>
2285
+ </g>
2286
+ </g>
2287
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 25.4284, -22.901)">
2288
+ <g id="_x30_.1.12.0.0.0.0.4">
2289
+ <rect width="0.146" x="24.094" opacity="0.2" y="-0.462" fill="#FFFFFF" height="3.459" id="_x30_.1.12.0.0.0.0.4.0" enable-background="new "/>
2290
+ </g>
2291
+ </g>
2292
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 18.8732, -16.3468)">
2293
+ <g id="_x30_.1.12.0.0.0.0.5">
2294
+ <rect width="0.146" x="17.539" opacity="0.2" y="-0.461" fill="#FFFFFF" height="3.455" id="_x30_.1.12.0.0.0.0.5.0" enable-background="new "/>
2295
+ </g>
2296
+ </g>
2297
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 42.8349, -5.4926)">
2298
+ <g id="_x30_.1.12.0.0.0.0.6">
2299
+ <rect width="5.285" x="21.523" y="13.571" fill="#999999" height="10.207" id="_x30_.1.12.0.0.0.0.6.0"/>
2300
+ </g>
2301
+ </g>
2302
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 45.3969, -2.9306)">
2303
+ <g id="_x30_.1.12.0.0.0.0.7">
2304
+ <rect width="0.161" x="24.085" opacity="0.2" y="16.133" fill="#FFFFFF" height="10.207" id="_x30_.1.12.0.0.0.0.7.0" enable-background="new "/>
2305
+ </g>
2306
+ </g>
2307
+ <g transform="matrix(2.57889e-06, 1, -1, 2.57889e-06, 35.224, -13.1073)">
2308
+ <g id="_x30_.1.12.0.0.0.0.8">
2309
+ <rect width="9.943" x="19.196" y="1.482" fill="#303030" height="19.16" id="_x30_.1.12.0.0.0.0.8.0"/>
2310
+ </g>
2311
+ </g>
2312
+ <polygon fill="#1F1F1F" points="33.744,16.031,14.582,16.031,15.301,15.31,33.021,15.31" id="_x30_.1.12.0.0.0.0.9"/>
2313
+ <polygon fill="#1F1F1F" points="33.744,6.088,14.582,6.088,15.301,6.811,33.021,6.811" id="_x30_.1.12.0.0.0.0.10"/>
2314
+ <polygon points="33.744,16.031,33.744,6.088,33.021,6.811,33.021,15.31" id="_x30_.1.12.0.0.0.0.11"/>
2315
+ <polygon fill="#3D3D3D" points="14.582,16.031,14.582,6.088,15.301,6.811,15.301,15.31" id="_x30_.1.12.0.0.0.0.12"/>
2316
+ <circle fill="#1F1F1F" cx="31.582" cy="8.251" id="_x30_.1.12.0.0.0.0.13" r="0.72"/>
2317
+ </g>
2318
+ </g>
2319
+ </g>
2320
+ </g>
2321
+ </g>
2322
+ </g>
2323
+ </g>
2324
+ <g transform="matrix(1, 0, 0, 1, -3.65847, 104.535)">
2325
+ <g id="_x30_.1.13">
2326
+ <g id="powersupply_dc-21mm">
2327
+ <g transform="matrix(0, 1, -1, 0, 32.3005, 6.84151)">
2328
+ <g id="_x30_.1.13.0.0">
2329
+ <g id="_x30_.1.13.0.0.0">
2330
+ <g transform="matrix(1, 0, 0, 1, 16.998, 98.8718)">
2331
+ <g id="_x30_.1.13.0.0.0.0">
2332
+ <g id="dc-21mm">
2333
+ <g transform="matrix(0, 1, -1, 0, 38.6844, 13.1725)">
2334
+ <g id="_x30_.1.13.0.0.0.0.0.0">
2335
+ <g id="_x30_.1.13.0.0.0.0.0.0.0">
2336
+ <g id="_x30_.1.13.0.0.0.0.0.0.0.0">
2337
+ <g id="_x30_.1.13.0.0.0.0.0.0.0.0.0">
2338
+ <rect width="32.972" x="-134.003" y="26.131" fill="#232323" height="23.732" id="_x30_.1.13.0.0.0.0.0.0.0.0.0.0"/>
2339
+ <rect width="31.937" x="-133.572" y="47.644" fill="#494949" height="1.646" id="_x30_.1.13.0.0.0.0.0.0.0.0.0.1"/>
2340
+ <rect width="31.936" x="-133.57" y="42.273" fill="#3D3D3D" height="5.369" fill-opacity="0.3" id="_x30_.1.13.0.0.0.0.0.0.0.0.0.2"/>
2341
+ <rect width="32.973" x="-133.572" y="26.648" height="1.619" id="_x30_.1.13.0.0.0.0.0.0.0.0.0.3"/>
2342
+ <rect width="32.973" x="-133.572" y="28.221" fill="#0F0F0F" height="5.826" fill-opacity="0.4" id="_x30_.1.13.0.0.0.0.0.0.0.0.0.4"/>
2343
+ </g>
2344
+ <rect width="0.592" x="-134.003" opacity="0.2" y="26.133" height="23.73" id="_x30_.1.13.0.0.0.0.0.0.0.0.1" enable-background="new "/>
2345
+ </g>
2346
+ <line opacity="0.5" fill="none" stroke="#000000" id="_x30_.1.13.0.0.0.0.0.0.0.1" enable-background="new " y1="26.131" stroke-width="0.25" x1="-131.193" y2="49.863" x2="-131.193" stroke-miterlimit="10"/>
2347
+ <g id="_x30_.1.13.0.0.0.0.0.0.0.2">
2348
+ <rect width="1.287" x="-104.529" opacity="0.25" y="26.109" height="23.729" id="_x30_.1.13.0.0.0.0.0.0.0.2.0" enable-background="new "/>
2349
+ <path opacity="0.25" stroke="#565656" id="_x30_.1.13.0.0.0.0.0.0.0.2.1" enable-background="new " stroke-width="0.25" d="M-103.525,45.54L-103.525,30.46l-13.296,0c-4.166,0,-7.541,3.375,-7.541,7.541c0,4.164,3.375,7.541,7.541,7.541L-103.525,45.54L-103.525,45.54z" stroke-miterlimit="10"/>
2350
+ </g>
2351
+ <g id="_x30_.1.13.0.0.0.0.0.0.0.3">
2352
+ <path fill="#232323" id="_x30_.1.13.0.0.0.0.0.0.0.3.0" d="M-103.525,45.54L-103.525,30.46l-13.296,0c-4.166,0,-7.541,3.375,-7.541,7.541c0,4.164,3.375,7.541,7.541,7.541L-103.525,45.54L-103.525,45.54z"/>
2353
+ <rect width="7.688" x="-104.251" y="25.242" fill="#232323" height="25.514" id="_x30_.1.13.0.0.0.0.0.0.0.3.1"/>
2354
+ </g>
2355
+ <rect width="1.701" x="-135.705" y="35.142" fill="#6D6D6D" height="5.713" id="_x30_.1.13.0.0.0.0.0.0.0.4"/>
2356
+ <rect width="0.976" x="-134.977" y="32.387" fill="#494949" height="11.226" id="_x30_.1.13.0.0.0.0.0.0.0.5"/>
2357
+ <rect width="6.266" x="-103.524" y="49.291" fill="#494949" height="1.051" id="_x30_.1.13.0.0.0.0.0.0.0.6"/>
2358
+ <rect width="6.267" x="-103.524" y="25.603" height="1.051" id="_x30_.1.13.0.0.0.0.0.0.0.7"/>
2359
+ </g>
2360
+ </g>
2361
+ </g>
2362
+ </g>
2363
+ </g>
2364
+ </g>
2365
+ </g>
2366
+ </g>
2367
+ </g>
2368
+ </g>
2369
+ </g>
2370
+ </g>
2371
+ <g transform="matrix(1, 0, 0, 1, 3.4818, 23.55)">
2372
+ <g id="_x30_.1.14">
2373
+ <g id="pn61729">
2374
+ <g transform="matrix(0, -1, 1, 0, 1.809, 42.439)">
2375
+ <g id="_x30_.1.14.0.0">
2376
+ <g id="_x30_.1.14.0.0.0">
2377
+ <g id="_x30_.1.14.0.0.0.0">
2378
+ <g id="_x30_.1.14.0.0.0.0.0">
2379
+ <path fill="#999999" id="_x30_.1.14.0.0.0.0.0.0" d="M43.103,14.31l0,2.956l-2.039,0l-2.035,0l-0.002,-2.956l0,-1.928l3.17,0c0.502,0,0.908,0.406,0.908,0.907C43.105,13.289,43.105,14.31,43.103,14.31z"/>
2380
+ <path fill="#808080" id="_x30_.1.14.0.0.0.0.0.1" d="M43.103,13.189l-4.076,0l0,-0.807c0,0,3.049,0,3.318,0C42.748,12.382,43.103,12.942,43.103,13.189z"/>
2381
+ </g>
2382
+ <g id="_x30_.1.14.0.0.0.0.1">
2383
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 1.9763, 43.6033)">
2384
+ <g id="_x30_.1.14.0.0.0.0.1.0">
2385
+ <rect width="36.682" x="4.451" y="4.577" fill="#B3B3B3" height="32.479" id="_x30_.1.14.0.0.0.0.1.0.0"/>
2386
+ </g>
2387
+ </g>
2388
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 24.0981, 21.481)">
2389
+ <g id="_x30_.1.14.0.0.0.0.1.1">
2390
+ <rect width="7.565" x="19.009" y="-17.546" fill="#999999" height="32.479" id="_x30_.1.14.0.0.0.0.1.1.0"/>
2391
+ </g>
2392
+ </g>
2393
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, -9.4585, 24.6065)">
2394
+ <g id="_x30_.1.14.0.0.0.0.1.2">
2395
+ <rect width="44.247" x="-14.548" opacity="0.5" y="16.012" fill="#CCCCCC" height="2.046" id="_x30_.1.14.0.0.0.0.1.2.0" enable-background="new "/>
2396
+ </g>
2397
+ </g>
2398
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 20.9742, 55.0381)">
2399
+ <g id="_x30_.1.14.0.0.0.0.1.3">
2400
+ <rect width="44.247" x="15.885" opacity="0.2" y="16.011" height="2.047" id="_x30_.1.14.0.0.0.0.1.3.0" enable-background="new "/>
2401
+ </g>
2402
+ </g>
2403
+ </g>
2404
+ <g id="_x30_.1.14.0.0.0.0.2">
2405
+ <path fill="#B3B3B3" id="_x30_.1.14.0.0.0.0.2.0" d="M2.476,14.308l0,2.956l2.039,0l2.038,0l0,-2.956L6.553,12.38L3.381,12.38c-0.502,0,-0.905,0.406,-0.905,0.907L2.476,14.308z"/>
2406
+ <path fill="#E6E6E6" id="_x30_.1.14.0.0.0.0.2.1" d="M2.476,13.187l4.077,0L6.553,12.38c0,0,-3.051,0,-3.319,0C2.83,12.38,2.476,12.94,2.476,13.187z"/>
2407
+ </g>
2408
+ </g>
2409
+ </g>
2410
+ </g>
2411
+ </g>
2412
+ </g>
2413
+ </g>
2414
+ </g>
2415
+ <g transform="matrix(1, 0, 0, 1, 8.7817, 8.95615)">
2416
+ <g id="_x30_.1.15">
2417
+ <g id="smd_157sw">
2418
+ <g transform="matrix(0, -1, 1, 0, 0.777996, 13.82)">
2419
+ <g id="_x30_.1.15.0.0">
2420
+ <g id="_x30_.1.15.0.0.0">
2421
+ <polygon fill="#CCCCCC" points="3.229,21.262,3.597,21.262,3.597,29.526,3.229,29.526,3.229,35.772,19.208,35.772,19.208,15.015,3.229,15.015" id="_x30_.1.15.0.0.0.0"/>
2422
+ <polygon fill="#CCCCCC" points="21.768,29.526,21.399,29.526,21.399,21.262,21.768,21.262,21.768,15.015,5.908,15.015,5.908,35.772,21.768,35.772" id="_x30_.1.15.0.0.0.1"/>
2423
+ <circle fill="#641D1C" cx="12.496" cy="25.395" id="_x30_.1.15.0.0.0.2" r="5.117"/>
2424
+ <path opacity="0.2" id="_x30_.1.15.0.0.0.3" enable-background="new " d="M12.746,30.51c2.827,0,5.118,-2.289,5.118,-5.114c0,-2.826,-2.289,-5.12,-5.118,-5.12l-0.249,0c2.827,0,5.118,2.292,5.118,5.12c0,2.825,-2.291,5.114,-5.118,5.114L12.746,30.51z"/>
2425
+ <circle fill="#852725" cx="12.497" cy="25.395" id="_x30_.1.15.0.0.0.4" r="4.93"/>
2426
+ <circle fill="#852725" cx="12.381" cy="25.395" id="_x30_.1.15.0.0.0.5" r="4.929"/>
2427
+ <g id="_x30_.1.15.0.0.0.6">
2428
+ <path opacity="0.1" id="_x30_.1.15.0.0.0.6.0" enable-background="new " d="M7.568,25.512c0,2.724,2.206,4.931,4.931,4.931c2.724,0,4.929,-2.207,4.929,-4.931l0,-0.233c0,2.724,-2.208,4.931,-4.929,4.931c-2.725,0,-4.931,-2.207,-4.931,-4.931L7.568,25.512z"/>
2429
+ <path opacity="0.2" fill="#FFFFFF" id="_x30_.1.15.0.0.0.6.1" enable-background="new " d="M17.427,25.512c0,-2.725,-2.208,-4.93,-4.929,-4.93c-2.725,0,-4.931,2.205,-4.931,4.93l0,-0.233c0,-2.724,2.206,-4.931,4.931,-4.931c2.724,0,4.929,2.207,4.929,4.931L17.427,25.512z"/>
2430
+ </g>
2431
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, -14.7248, 21.5506)">
2432
+ <g id="_x30_.1.15.0.0.0.7">
2433
+ <rect width="6.248" x="0.291" opacity="0.2" y="17.954" fill="#FFFFFF" height="0.371" id="_x30_.1.15.0.0.0.7.0" enable-background="new "/>
2434
+ </g>
2435
+ </g>
2436
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, -29.2355, 36.0623)">
2437
+ <g id="_x30_.1.15.0.0.0.8">
2438
+ <rect width="6.244" x="0.293" opacity="0.2" y="32.465" fill="#FFFFFF" height="0.371" id="_x30_.1.15.0.0.0.8.0" enable-background="new "/>
2439
+ </g>
2440
+ </g>
2441
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, -21.6146, 29.1724)">
2442
+ <g id="_x30_.1.15.0.0.0.9">
2443
+ <rect width="8.266" x="-0.352" opacity="0.2" y="25.212" fill="#FFFFFF" height="0.368" id="_x30_.1.15.0.0.0.9.0" enable-background="new "/>
2444
+ </g>
2445
+ </g>
2446
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, 3.4298, 39.7056)">
2447
+ <g id="_x30_.1.15.0.0.0.10">
2448
+ <rect width="6.248" x="18.446" opacity="0.2" y="17.957" height="0.368" id="_x30_.1.15.0.0.0.10.0" enable-background="new "/>
2449
+ </g>
2450
+ </g>
2451
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, -11.0816, 54.2142)">
2452
+ <g id="_x30_.1.15.0.0.0.11">
2453
+ <rect width="6.244" x="18.446" opacity="0.2" y="32.465" height="0.369" id="_x30_.1.15.0.0.0.11.0" enable-background="new "/>
2454
+ </g>
2455
+ </g>
2456
+ <g transform="matrix(-2.54711e-06, -1, 1, -2.54711e-06, -4.1966, 46.5918)">
2457
+ <g id="_x30_.1.15.0.0.0.12">
2458
+ <rect width="8.267" x="17.066" opacity="0.2" y="25.212" height="0.369" id="_x30_.1.15.0.0.0.12.0" enable-background="new "/>
2459
+ </g>
2460
+ </g>
2461
+ </g>
2462
+ </g>
2463
+ </g>
2464
+ <g id="_x30_.1.15.0.1">
2465
+ <rect width="2.75" x="36.573" y="6.322" fill="#E6E6E6" height="2.251" id="_x30_.1.15.0.1.0"/>
2466
+ <rect width="2.75" x="36.573" y="-5.929" fill="#E6E6E6" height="2.252" id="_x30_.1.15.0.1.1"/>
2467
+ <rect width="2.75" x="13.198" y="-0.47" fill="#E6E6E6" height="3.417" id="_x30_.1.15.0.1.2"/>
2468
+ <rect width="2.75" x="13.198" y="6.322" fill="#E6E6E6" height="2.251" id="_x30_.1.15.0.1.3"/>
2469
+ <rect width="2.75" x="13.198" y="-5.929" fill="#E6E6E6" height="2.252" id="_x30_.1.15.0.1.4"/>
2470
+ <rect width="0.334" x="13.198" opacity="0.2" y="-0.47" fill="#FFFFFF" height="3.417" id="_x30_.1.15.0.1.5" enable-background="new "/>
2471
+ <rect width="0.334" x="13.198" opacity="0.2" y="6.322" fill="#FFFFFF" height="2.251" id="_x30_.1.15.0.1.6" enable-background="new "/>
2472
+ <rect width="0.334" x="13.198" opacity="0.2" y="-5.929" fill="#FFFFFF" height="2.252" id="_x30_.1.15.0.1.7" enable-background="new "/>
2473
+ <rect width="0.104" x="39.263" opacity="0.2" y="6.303" height="2.251" id="_x30_.1.15.0.1.8" enable-background="new "/>
2474
+ <rect width="0.104" x="39.263" opacity="0.2" y="-5.948" height="2.252" id="_x30_.1.15.0.1.9" enable-background="new "/>
2475
+ <rect width="0.334" x="36.589" opacity="0.1" y="6.335" height="2.251" id="_x30_.1.15.0.1.10" enable-background="new "/>
2476
+ <rect width="0.334" x="36.589" opacity="0.1" y="-5.916" height="2.252" id="_x30_.1.15.0.1.11" enable-background="new "/>
2477
+ </g>
2478
+ </g>
2479
+ </g>
2480
+ </g>
2481
+ <g id="_x30_.1.16">
2482
+ <title id="0.1.16.0">text:RESET</title>
2483
+ <g transform="matrix(1, 0, 0, 1, 27.4678, 23.4009)">
2484
+ <g id="_x30_.1.16.1">
2485
+ <g transform="matrix(1, 0, 0, 1, -9.15527e-05, -6.10352e-05)">
2486
+ <text fill="#FFFFFF" font-family="'OCRA'" id="_x30_.1.16.1.0" font-size="4.176">RESET</text>
2487
+ </g>
2488
+ </g>
2489
+ </g>
2490
+ </g>
2491
+ <g transform="matrix(1, 0, 0, 1, 67.6403, 3.60123)">
2492
+ <g id="_x30_.1.17">
2493
+ <g id="_x31_x10">
2494
+ <rect width="72" x="-0.049" y="-0.001" fill="#404040" height="7.199" id="_x30_.1.17.0.0"/>
2495
+ <rect width="2.779" x="2.162" y="2.208" height="2.782" id="_x30_.1.17.0.1"/>
2496
+ <polygon fill="#2A2A29" points="1.137,1.183,2.16,2.208,4.943,2.208,5.969,1.183" id="_x30_.1.17.0.2"/>
2497
+ <polygon fill="#474747" points="5.969,1.183,4.943,2.211,4.943,4.992,5.969,6.015" id="_x30_.1.17.0.3"/>
2498
+ <polygon fill="#595959" points="5.969,6.015,4.943,4.992,2.16,4.992,1.137,6.015" id="_x30_.1.17.0.4"/>
2499
+ <polygon fill="#373737" points="1.135,6.015,2.16,4.99,2.16,2.208,1.135,1.183" id="_x30_.1.17.0.5"/>
2500
+ <rect width="2.781" x="9.363" y="2.208" height="2.782" id="_x30_.1.17.0.6"/>
2501
+ <polygon fill="#2A2A29" points="8.336,1.183,9.359,2.208,12.142,2.208,13.168,1.183" id="_x30_.1.17.0.7"/>
2502
+ <polygon fill="#474747" points="13.168,1.183,12.142,2.211,12.142,4.992,13.168,6.015" id="_x30_.1.17.0.8"/>
2503
+ <polygon fill="#595959" points="13.168,6.015,12.14,4.992,9.359,4.992,8.336,6.015" id="_x30_.1.17.0.9"/>
2504
+ <polygon fill="#373737" points="8.334,6.015,9.359,4.99,9.359,2.208,8.334,1.183" id="_x30_.1.17.0.10"/>
2505
+ <rect width="2.779" x="16.562" y="2.208" height="2.782" id="_x30_.1.17.0.11"/>
2506
+ <polygon fill="#2A2A29" points="15.535,1.183,16.558,2.208,19.344,2.208,20.369,1.183" id="_x30_.1.17.0.12"/>
2507
+ <polygon fill="#474747" points="20.369,1.183,19.344,2.211,19.344,4.992,20.369,6.015" id="_x30_.1.17.0.13"/>
2508
+ <polygon fill="#595959" points="20.367,6.015,19.344,4.992,16.558,4.992,15.535,6.015" id="_x30_.1.17.0.14"/>
2509
+ <polygon fill="#373737" points="15.535,6.015,16.558,4.99,16.558,2.208,15.535,1.183" id="_x30_.1.17.0.15"/>
2510
+ <rect width="2.781" x="23.763" y="2.208" height="2.782" id="_x30_.1.17.0.16"/>
2511
+ <polygon fill="#2A2A29" points="22.736,1.183,23.762,2.208,26.545,2.208,27.568,1.183" id="_x30_.1.17.0.17"/>
2512
+ <polygon fill="#474747" points="27.568,1.183,26.545,2.211,26.545,4.992,27.568,6.015" id="_x30_.1.17.0.18"/>
2513
+ <polygon fill="#595959" points="27.568,6.015,26.543,4.992,23.762,4.992,22.736,6.015" id="_x30_.1.17.0.19"/>
2514
+ <polygon fill="#373737" points="22.734,6.015,23.762,4.99,23.762,2.208,22.734,1.183" id="_x30_.1.17.0.20"/>
2515
+ <rect width="2.779" x="30.963" y="2.208" height="2.782" id="_x30_.1.17.0.21"/>
2516
+ <polygon fill="#2A2A29" points="29.935,1.183,30.961,2.208,33.744,2.208,34.767,1.183" id="_x30_.1.17.0.22"/>
2517
+ <polygon fill="#474747" points="34.767,1.183,33.744,2.211,33.744,4.992,34.767,6.015" id="_x30_.1.17.0.23"/>
2518
+ <polygon fill="#595959" points="34.765,6.015,33.742,4.992,30.961,4.992,29.935,6.015" id="_x30_.1.17.0.24"/>
2519
+ <polygon fill="#373737" points="29.933,6.015,30.961,4.99,30.961,2.208,29.933,1.183" id="_x30_.1.17.0.25"/>
2520
+ <rect width="2.779" x="38.164" y="2.208" height="2.782" id="_x30_.1.17.0.26"/>
2521
+ <polygon fill="#2A2A29" points="37.137,1.183,38.16,2.208,40.943,2.208,41.97,1.183" id="_x30_.1.17.0.27"/>
2522
+ <polygon fill="#474747" points="41.97,1.183,40.943,2.211,40.943,4.992,41.97,6.015" id="_x30_.1.17.0.28"/>
2523
+ <polygon fill="#595959" points="41.97,6.015,40.94,4.992,38.16,4.992,37.137,6.015" id="_x30_.1.17.0.29"/>
2524
+ <polygon fill="#373737" points="37.135,6.015,38.16,4.99,38.16,2.208,37.135,1.183" id="_x30_.1.17.0.30"/>
2525
+ <rect width="2.78" x="45.361" y="2.208" height="2.782" id="_x30_.1.17.0.31"/>
2526
+ <polygon fill="#2A2A29" points="44.339,1.183,45.359,2.208,48.141,2.208,49.17,1.183" id="_x30_.1.17.0.32"/>
2527
+ <polygon fill="#474747" points="49.17,1.183,48.141,2.211,48.141,4.992,49.17,6.015" id="_x30_.1.17.0.33"/>
2528
+ <polygon fill="#595959" points="49.168,6.015,48.139,4.992,45.359,4.992,44.339,6.015" id="_x30_.1.17.0.34"/>
2529
+ <polygon fill="#373737" points="44.336,6.015,45.359,4.99,45.359,2.208,44.336,1.183" id="_x30_.1.17.0.35"/>
2530
+ <rect width="2.779" x="52.561" y="2.208" height="2.782" id="_x30_.1.17.0.36"/>
2531
+ <polygon fill="#2A2A29" points="51.535,1.183,52.557,2.208,55.345,2.208,56.367,1.183" id="_x30_.1.17.0.37"/>
2532
+ <polygon fill="#474747" points="56.367,1.183,55.345,2.211,55.345,4.992,56.367,6.015" id="_x30_.1.17.0.38"/>
2533
+ <polygon fill="#595959" points="56.367,6.015,55.345,4.992,52.557,4.992,51.535,6.015" id="_x30_.1.17.0.39"/>
2534
+ <polygon fill="#373737" points="51.533,6.015,52.557,4.99,52.557,2.208,51.533,1.183" id="_x30_.1.17.0.40"/>
2535
+ <rect width="2.78" x="59.762" y="2.208" height="2.782" id="_x30_.1.17.0.41"/>
2536
+ <polygon fill="#2A2A29" points="58.736,1.183,59.762,2.208,62.546,2.208,63.568,1.183" id="_x30_.1.17.0.42"/>
2537
+ <polygon fill="#474747" points="63.568,1.183,62.546,2.211,62.546,4.992,63.568,6.015" id="_x30_.1.17.0.43"/>
2538
+ <polygon fill="#595959" points="63.565,6.015,62.543,4.992,59.762,4.992,58.736,6.015" id="_x30_.1.17.0.44"/>
2539
+ <polygon fill="#373737" points="58.734,6.015,59.762,4.99,59.762,2.208,58.734,1.183" id="_x30_.1.17.0.45"/>
2540
+ <rect width="2.778" x="66.964" y="2.208" height="2.782" id="_x30_.1.17.0.46"/>
2541
+ <polygon fill="#2A2A29" points="65.934,1.183,66.961,2.208,69.742,2.208,70.766,1.183" id="_x30_.1.17.0.47"/>
2542
+ <polygon fill="#474747" points="70.766,1.183,69.742,2.211,69.742,4.992,70.766,6.015" id="_x30_.1.17.0.48"/>
2543
+ <polygon fill="#595959" points="70.764,6.015,69.742,4.992,66.961,4.992,65.934,6.015" id="_x30_.1.17.0.49"/>
2544
+ <polygon fill="#373737" points="65.932,6.015,66.961,4.99,66.961,2.208,65.932,1.183" id="_x30_.1.17.0.50"/>
2545
+ </g>
2546
+ </g>
2547
+ </g>
2548
+ </g>
2549
+ </g>
2550
+ </g>
2551
+ <g partID="48240">
2552
+ <g transform="translate(308.053,68.375)">
2553
+ <g id="breadboard">
2554
+ <circle fill="none" cx="12.053" cy="61.905" id="connector2pin" r="2.053"/>
2555
+ <circle fill="none" cx="19.254" cy="61.906" id="connector1pin" r="2.052"/>
2556
+ <circle fill="none" cx="26.454" cy="61.905" id="connector3pin" r="2.053"/>
2557
+ <circle fill="none" cx="33.654" cy="61.906" id="connector0pin" r="2.052"/>
2558
+ <path fill="#1F7A34" d="M0,0l0,54.75l37.152,0L37.152,0L0,0zM2.628,52.914c-0.712,0,-1.289,-0.577,-1.289,-1.289c0,-0.711,0.577,-1.288,1.289,-1.288c0.711,0,1.288,0.577,1.288,1.288C3.916,52.336,3.339,52.914,2.628,52.914zM2.628,12.952c-0.712,0,-1.289,-0.577,-1.289,-1.289c0,-0.711,0.577,-1.288,1.289,-1.288c0.711,0,1.288,0.577,1.288,1.288C3.916,12.375,3.339,12.952,2.628,12.952zM2.628,8.476c-0.712,0,-1.289,-0.577,-1.289,-1.289c0,-0.711,0.577,-1.288,1.289,-1.288c0.711,0,1.288,0.577,1.288,1.288C3.916,7.899,3.339,8.476,2.628,8.476zM2.628,4.101c-0.712,0,-1.289,-0.577,-1.289,-1.289c0,-0.711,0.577,-1.288,1.289,-1.288c0.711,0,1.288,0.577,1.288,1.288C3.916,3.524,3.339,4.101,2.628,4.101zM7.894,4.101c-0.712,0,-1.289,-0.577,-1.289,-1.289c0,-0.711,0.577,-1.288,1.289,-1.288c0.711,0,1.288,0.577,1.288,1.288C9.182,3.524,8.605,4.101,7.894,4.101zM13.225,4.101c-0.712,0,-1.289,-0.577,-1.289,-1.289c0,-0.711,0.577,-1.288,1.289,-1.288c0.711,0,1.288,0.577,1.288,1.288C14.513,3.524,13.937,4.101,13.225,4.101zM18.18,4.101c-0.713,0,-1.289,-0.577,-1.289,-1.289c0,-0.711,0.576,-1.288,1.289,-1.288c0.711,0,1.287,0.577,1.287,1.288C19.469,3.524,18.891,4.101,18.18,4.101zM23.581,4.101c-0.712,0,-1.289,-0.577,-1.289,-1.289c0,-0.711,0.577,-1.288,1.289,-1.288c0.711,0,1.288,0.577,1.288,1.288C24.869,3.524,24.292,4.101,23.581,4.101zM29.248,4.101c-0.712,0,-1.289,-0.577,-1.289,-1.289c0,-0.711,0.577,-1.288,1.289,-1.288c0.711,0,1.288,0.577,1.288,1.288C30.536,3.524,29.959,4.101,29.248,4.101zM34.524,8.476c-0.712,0,-1.289,-0.577,-1.289,-1.289c0,-0.711,0.577,-1.288,1.289,-1.288c0.711,0,1.288,0.577,1.288,1.288C35.812,7.899,35.235,8.476,34.524,8.476zM34.524,4.101c-0.712,0,-1.289,-0.577,-1.289,-1.289c0,-0.711,0.577,-1.288,1.289,-1.288c0.711,0,1.288,0.577,1.288,1.288C35.812,3.524,35.235,4.101,34.524,4.101z"/>
2559
+ <rect width="9.251" x="10.98" y="13.5" fill="#00558D" height="3.625"/>
2560
+ <rect width="3.499" x="10.983" y="33.918" fill="#00558D" height="9.251"/>
2561
+ <rect width="3.499" x="4.082" y="33.918" fill="#00558D" height="9.251"/>
2562
+ <rect width="8.104" x="19.329" y="20.875" fill="#1A1A1A" height="3.5"/>
2563
+ <rect width="3.5" x="17.358" y="31.791" fill="#1A1A1A" height="8.103"/>
2564
+ <rect width="8.103" x="26.306" y="34.092" fill="#1A1A1A" height="3.5"/>
2565
+ <rect width="5.055" x="28.469" y="24.375" fill="#4D4D4D" height="2"/>
2566
+ <rect width="5.055" x="3.351" y="14.938" fill="#C7B299" height="2"/>
2567
+ <rect width="5.055" x="22.854" y="14.313" fill="#C7B299" height="2"/>
2568
+ <rect width="5.055" x="28.469" y="28.625" fill="#C7B299" height="1.875"/>
2569
+ <rect width="5.055" x="20.277" y="28.625" fill="#C7B299" height="1.875"/>
2570
+ <rect width="5.055" x="16.329" y="41.688" fill="#C7B299" height="1.875"/>
2571
+ <rect width="5.055" x="29.122" y="44.36" fill="#C7B299" height="1.875"/>
2572
+ <rect width="5.055" x="16.329" y="45.298" fill="#C7B299" height="1.875"/>
2573
+ <rect width="5.055" x="11.993" y="28.625" fill="#4D4D4D" height="1.875"/>
2574
+ <rect width="5.055" x="11.993" y="24.438" fill="#4D4D4D" height="1.875"/>
2575
+ <rect width="1.875" x="6.444" y="23.57" fill="#C7B299" height="5.055"/>
2576
+ <rect width="1.875" x="31.649" y="17.125" fill="#C7B299" height="5.055"/>
2577
+ <rect width="1.875" x="24.444" y="42.348" fill="#C7B299" height="5.055"/>
2578
+ <rect width="5.055" x="7.306" y="19" fill="#4D4D4D" height="1.875"/>
2579
+ <rect width="5.055" x="3.351" y="30.853" fill="#C7B299" height="1.875"/>
2580
+ <circle fill="#006837" cx="7.68" cy="9.344" r="3.156"/>
2581
+ <circle fill="#CCCCCC" cx="7.68" cy="9.343" r="2.457"/>
2582
+ <circle fill="#006837" cx="15.015" cy="9.344" r="3.156"/>
2583
+ <circle fill="#CCCCCC" cx="15.015" cy="9.343" r="2.457"/>
2584
+ <circle fill="#CCCCCC" cx="15.015" cy="9.343" r="2.457"/>
2585
+ <circle fill="#006837" cx="22.351" cy="9.344" r="3.156"/>
2586
+ <circle fill="#CCCCCC" cx="22.351" cy="9.343" r="2.457"/>
2587
+ <circle fill="#006837" cx="29.686" cy="9.344" r="3.156"/>
2588
+ <circle fill="#CCCCCC" cx="29.686" cy="9.343" r="2.457"/>
2589
+ <g >
2590
+ <polygon fill="#B8AF82" points="34.804,61.61,34.246,63.957,33.064,63.957,32.508,61.61,32.508,50.188,34.804,50.188" />
2591
+ <polygon fill="#E2D6A1" points="34.246,63.957,34.402,63.3,32.908,63.3,33.064,63.957" />
2592
+ </g>
2593
+ <g >
2594
+ <polygon fill="#B8AF82" points="27.603,61.61,27.047,63.957,25.865,63.957,25.306,61.61,25.306,50.188,27.603,50.188" />
2595
+ <polygon fill="#E2D6A1" points="27.047,63.957,27.203,63.3,25.709,63.3,25.865,63.957" />
2596
+ </g>
2597
+ <g >
2598
+ <polygon fill="#B8AF82" points="20.406,61.61,19.845,63.957,18.666,63.957,18.108,61.61,18.108,50.188,20.406,50.188" />
2599
+ <polygon fill="#E2D6A1" points="19.845,63.957,20.004,63.3,18.51,63.3,18.666,63.957" />
2600
+ </g>
2601
+ <g >
2602
+ <polygon fill="#B8AF82" points="13.201,61.61,12.64,63.957,11.461,63.957,10.902,61.61,10.902,50.188,13.201,50.188" />
2603
+ <polygon fill="#E2D6A1" points="12.64,63.957,12.799,63.3,11.304,63.3,11.461,63.957" />
2604
+ </g>
2605
+ <circle fill="#CCCCCC" cx="12.054" cy="50.187" r="2.052"/>
2606
+ <circle fill="#CCCCCC" cx="19.256" cy="50.187" r="2.052"/>
2607
+ <circle fill="#CCCCCC" cx="26.456" cy="50.187" r="2.052"/>
2608
+ <circle fill="#CCCCCC" cx="33.656" cy="50.187" r="2.052"/>
2609
+ </g>
2610
+ </g>
2611
+ </g>
2612
+ <g partID="52280">
2613
+ <g transform="translate(12.2195,119.48)">
2614
+ <g id="breadboard">
2615
+ <g id="icon">
2616
+ <path fill="#1F7A34" stroke="none" stroke-width="0" d="M0,0L0,12.24A2.16,2.16,0,0,1,0,16.56L0,28.8L18.175,28.8L18.175,0L0,0z"/>
2617
+ <g transform="matrix(1, 0, 0, 1, 5.31248, 7.3134)">
2618
+ <g>
2619
+ <g transform="matrix(0.5, 0, 0, 0.5, 1.88752, 3.54331)">
2620
+ <g>
2621
+ <rect width="2.55118" x="4.99889" y="5.81101" fill="#8c8c8c" connectorname="3" height="2.55118" stroke="none" stroke-linecap="round" stroke-width="0"/>
2622
+ <rect width="4.25196" x="2.30598" y="0" fill="#8c8c8c" connectorname="2" height="4.25196" stroke="none" stroke-linecap="round" stroke-width="0"/>
2623
+ <rect width="4.25196" x="2.30598" y="9.92124" fill="#8c8c8c" connectorname="1" height="4.25196" stroke="none" stroke-linecap="round" stroke-width="0"/>
2624
+ <rect width="1.77732" x="2.88638" y="4.07197" fill="#303030" height="6.02929" stroke="none" stroke-width="0"/>
2625
+ <polygon fill="#1f1f1f" points="2.88638,4.07197,4.6637,4.07197,3.9437,4.79197,3.60638,4.79197"/>
2626
+ <polygon fill="#1f1f1f" points="2.88638,10.1012,4.6637,10.1012,3.9437,9.38124,3.60638,9.38124"/>
2627
+ <polygon fill="#000000" points="2.88638,4.07197,2.88638,10.1012,3.60638,9.38124,3.60638,4.79197"/>
2628
+ <polygon fill="#3d3d3d" points="4.6637,4.07197,4.6637,10.1012,3.9437,9.38124,3.9437,4.79197"/>
2629
+ <circle fill="#1f1f1f" cx="5.04638" cy="7.94124" stroke="none" r="0.72" stroke-width="0"/>
2630
+ </g>
2631
+ </g>
2632
+ </g>
2633
+ </g>
2634
+ <text x="3.6" y="16.155" font-family="OCRA" fill="white" text-anchor="start" stroke="none" id="label" stroke-width="0" font-size="4.68">APA3010SF4C</text>
2635
+ <g transform="matrix(1, 0, 0, 1, 6.45952, 23.4756)">
2636
+ <g>
2637
+ <g transform="rotate(-90)">
2638
+ <g>
2639
+ <text x="0" y="0" font-family="OCRA" fill="white" text-anchor="start" stroke="none" stroke-width="0" font-size="3.24">1</text>
2640
+ </g>
2641
+ </g>
2642
+ </g>
2643
+ </g>
2644
+ <g transform="matrix(1, 0, 0, 1, 13.6596, 23.4756)">
2645
+ <g>
2646
+ <g transform="rotate(-90)">
2647
+ <g>
2648
+ <text x="0" y="0" font-family="OCRA" fill="white" text-anchor="start" stroke="none" stroke-width="0" font-size="3.24">2</text>
2649
+ </g>
2650
+ </g>
2651
+ </g>
2652
+ </g>
2653
+ <g transform="matrix(1, 0, 0, 1, 13.6596, 5.3244)">
2654
+ <g>
2655
+ <g transform="rotate(-90)">
2656
+ <g>
2657
+ <text x="0" y="0" font-family="OCRA" fill="white" text-anchor="end" stroke="none" stroke-width="0" font-size="3.24">3</text>
2658
+ </g>
2659
+ </g>
2660
+ </g>
2661
+ </g>
2662
+ </g>
2663
+ <g transform="matrix(1, 0, 0, 1, 4.33804, 24.0516)">
2664
+ <g>
2665
+ <rect width="2.29896" x="0" y="0" fill="#8D8C8C" height="2.2968" id="connector0pin"/>
2666
+ <rect width="1.18398" x="0.56099" y="0.556952" fill="#8C8663" height="1.18189"/>
2667
+ <polygon fill="#B8AF82" points="0,2.2968,0.56099,1.73785,0.56099,0.501957,0,0"/>
2668
+ <polygon fill="#80795B" points="1.74297,0.558951,0.56899,0.558951,0,0,2.29896,0"/>
2669
+ <polygon fill="#5E5B43" points="1.74297,1.73785,1.74297,0.558951,2.29896,0,2.29896,2.2968"/>
2670
+ <polygon fill="#9A916C" points="0,2.2968,0.56699,1.73785,1.74297,1.73785,2.29896,2.2968"/>
2671
+ </g>
2672
+ </g>
2673
+ <g transform="matrix(1, 0, 0, 1, 11.5381, 24.0516)">
2674
+ <g>
2675
+ <rect width="2.29896" x="0" y="0" fill="#8D8C8C" height="2.2968" id="connector1pin"/>
2676
+ <rect width="1.18398" x="0.56099" y="0.556952" fill="#8C8663" height="1.18189"/>
2677
+ <polygon fill="#B8AF82" points="0,2.2968,0.56099,1.73785,0.56099,0.501957,0,0"/>
2678
+ <polygon fill="#80795B" points="1.74297,0.558951,0.56899,0.558951,0,0,2.29896,0"/>
2679
+ <polygon fill="#5E5B43" points="1.74297,1.73785,1.74297,0.558951,2.29896,0,2.29896,2.2968"/>
2680
+ <polygon fill="#9A916C" points="0,2.2968,0.56699,1.73785,1.74297,1.73785,2.29896,2.2968"/>
2681
+ </g>
2682
+ </g>
2683
+ <g transform="matrix(1, 0, 0, 1, 11.5381, 2.4516)">
2684
+ <g>
2685
+ <rect width="2.29896" x="0" y="0" fill="#8D8C8C" height="2.2968" id="connector2pin"/>
2686
+ <rect width="1.18398" x="0.56099" y="0.556952" fill="#8C8663" height="1.18189"/>
2687
+ <polygon fill="#B8AF82" points="0,2.2968,0.56099,1.73785,0.56099,0.501957,0,0"/>
2688
+ <polygon fill="#80795B" points="1.74297,0.558951,0.56899,0.558951,0,0,2.29896,0"/>
2689
+ <polygon fill="#5E5B43" points="1.74297,1.73785,1.74297,0.558951,2.29896,0,2.29896,2.2968"/>
2690
+ <polygon fill="#9A916C" points="0,2.2968,0.56699,1.73785,1.74297,1.73785,2.29896,2.2968"/>
2691
+ </g>
2692
+ </g>
2693
+ </g>
2694
+ </g>
2695
+ </g>
2696
+ <g partID="61970">
2697
+ <g transform="translate(156.456,10.8115)">
2698
+ <g id="breadboard">
2699
+ <g width="1.8144" x="4.34376" y="25.2756" fill="#8C8C8C" height="1.18584" id="connector0terminal"/>
2700
+ <g width="1.81512" x="11.543" y="25.2756" fill="#8C8C8C" height="1.18584" id="connector1terminal"/>
2701
+ <g width="1.81512" x="18.7416" y="25.2756" fill="#8C8C8C" height="1.18584" id="connector2terminal"/>
2702
+ <rect width="1.8144" x="4.34376" y="21.1104" fill="#8C8C8C" height="5.35536" id="connector0pin"/>
2703
+ <rect width="1.81512" x="11.543" y="21.1104" fill="#8C8C8C" height="5.35536" id="connector1pin"/>
2704
+ <rect width="1.81512" x="18.7416" y="21.1104" fill="#8C8C8C" height="5.35536" id="connector2pin"/>
2705
+ <rect width="1.8144" x="4.33512" y="11.4516" fill="#8C8C8C" height="14.9652" id="rect4"/>
2706
+ <rect width="1.81512" x="11.5344" y="11.4516" fill="#8C8C8C" height="14.9652" id="rect6"/>
2707
+ <rect width="1.81512" x="18.733" y="11.4516" fill="#8C8C8C" height="14.9652" id="rect8"/>
2708
+ <polygon fill="#8C8C8C" points="7.76232,18.7553,6.14952,19.4753,4.33584,19.4753,2.72232,18.7553,2.72232,9.9864,7.76232,9.9864" id="polygon21"/>
2709
+ <polygon fill="#8C8C8C" points="14.963,18.7553,13.3481,19.4753,11.5351,19.4753,9.92232,18.7553,9.92232,9.9864,14.963,9.9864" id="polygon23"/>
2710
+ <polygon fill="#8C8C8C" points="22.1616,18.7553,20.5466,19.4753,18.7344,19.4753,17.1216,18.7553,17.1216,9.9864,22.1616,9.9864" id="polygon25"/>
2711
+ <rect width="26.6386" x="-0.87696" y="3.34512" fill="#1A1A1A" height="13.2998" id="rect27"/>
2712
+ <rect width="26.6386" x="-0.87696" y="5.94" height="3.34728" id="rect49"/>
2713
+ <rect width="26.6386" x="-0.87696" y="3.24072" fill="#333333" height="4.13856" id="rect51"/>
2714
+ <rect width="11.2046" x="7.29792" y="3.64464" height="3.34728" id="rect49_1_"/>
2715
+ <rect width="4.79808" x="13.5547" y="1.59408" fill="#1A1A1A" height="5.27904" id="rect27_1_"/>
2716
+ <rect width="4.79808" x="13.5547" y="-0.59976" fill="#333333" height="2.19312" id="rect51_1_"/>
2717
+ </g>
2718
+ </g>
2719
+ </g>
2720
+ <g partID="63340">
2721
+ <g transform="translate(130.774,0)">
2722
+ <g id="breadboard">
2723
+ <text x="39.7559" y="6.50552" fill="#787878" font-family="Droid Sans" text-anchor="middle" xmlns:xml="http://www.w3.org/XML/1998/namespace" id="label" xml:space="preserve" stroke-width="0" font-size="7.22834">Door Switch</text>
2724
+ </g>
2725
+ </g>
2726
+ </g>
2727
+ <g partID="63370">
2728
+ <g transform="translate(42.2537,82.4133)">
2729
+ <g transform="matrix(0,1,-1,0,0,0)">
2730
+ <g id="breadboard">
2731
+ <text x="54" y="6.48" fill="#787878" font-family="Droid Sans" text-anchor="middle" xmlns:xml="http://www.w3.org/XML/1998/namespace" id="label" xml:space="preserve" stroke-width="0" font-size="7.2">Infrared Sensor</text>
2732
+ </g>
2733
+ </g>
2734
+ </g>
2735
+ </g>
2736
+ <g partID="63400">
2737
+ <g transform="translate(304.408,31.4958)">
2738
+ <g transform="matrix(0,1,-1,0,0,0)">
2739
+ <g id="breadboard">
2740
+ <text x="68.6693" y="6.50552" fill="#787878" font-family="Droid Sans" text-anchor="middle" xmlns:xml="http://www.w3.org/XML/1998/namespace" id="label" xml:space="preserve" stroke-width="0" font-size="7.22835">433 MHz Transceiver</text>
2741
+ </g>
2742
+ </g>
2743
+ </g>
2744
+ </g>
2745
+ <g partID="48600">
2746
+ <line stroke="#000000" stroke-linecap="round" y1="151.744" x1="385.03" y2="151.744" stroke-width="3.2" x2="327.321"/>
2747
+ <line stroke="#404040" stroke-linecap="round" y1="151.744" x1="385.03" y2="151.744" stroke-width="1.6" x2="327.321"/>
2748
+ </g>
2749
+ <g partID="48540">
2750
+ <line stroke="#000000" stroke-linecap="round" y1="43.8118" x1="385.03" y2="151.744" stroke-width="3.2" x2="385.03"/>
2751
+ <line stroke="#404040" stroke-linecap="round" y1="43.8118" x1="385.03" y2="151.744" stroke-width="1.6" x2="385.03"/>
2752
+ </g>
2753
+ <g partID="48930">
2754
+ <line stroke="#000000" stroke-linecap="round" y1="151.744" x1="327.321" y2="130.281" stroke-width="3.2" x2="327.307"/>
2755
+ <line stroke="#404040" stroke-linecap="round" y1="151.744" x1="327.321" y2="130.281" stroke-width="1.6" x2="327.307"/>
2756
+ </g>
2757
+ <g partID="48480">
2758
+ <line stroke="#000000" stroke-linecap="round" y1="43.8118" x1="140.156" y2="43.8118" stroke-width="3.2" x2="385.03"/>
2759
+ <line stroke="#404040" stroke-linecap="round" y1="43.8118" x1="140.156" y2="43.8118" stroke-width="1.6" x2="385.03"/>
2760
+ </g>
2761
+ <g partID="48270">
2762
+ <line stroke="#000000" stroke-linecap="round" y1="72.68" x1="140.107" y2="43.8118" stroke-width="3.2" x2="140.156"/>
2763
+ <line stroke="#404040" stroke-linecap="round" y1="72.68" x1="140.107" y2="43.8118" stroke-width="1.6" x2="140.156"/>
2764
+ </g>
2765
+ <g partID="49090">
2766
+ <line stroke="#00a6d3" stroke-linecap="round" y1="144.569" x1="334.495" y2="130.28" stroke-width="3.2" x2="334.507"/>
2767
+ <line stroke="#47cc79" stroke-linecap="round" y1="144.569" x1="334.495" y2="130.28" stroke-width="1.6" x2="334.507"/>
2768
+ </g>
2769
+ <g partID="49000">
2770
+ <line stroke="#00a6d3" stroke-linecap="round" y1="144.569" x1="377.855" y2="144.569" stroke-width="3.2" x2="334.495"/>
2771
+ <line stroke="#47cc79" stroke-linecap="round" y1="144.569" x1="377.855" y2="144.569" stroke-width="1.6" x2="334.495"/>
2772
+ </g>
2773
+ <g partID="48850">
2774
+ <line stroke="#00a6d3" stroke-linecap="round" y1="50.9864" x1="377.855" y2="144.569" stroke-width="3.2" x2="377.855"/>
2775
+ <line stroke="#47cc79" stroke-linecap="round" y1="50.9864" x1="377.855" y2="144.569" stroke-width="1.6" x2="377.855"/>
2776
+ </g>
2777
+ <g partID="48780">
2778
+ <line stroke="#00a6d3" stroke-linecap="round" y1="51.08" x1="183.574" y2="50.9864" stroke-width="3.2" x2="377.855"/>
2779
+ <line stroke="#47cc79" stroke-linecap="round" y1="51.08" x1="183.574" y2="50.9864" stroke-width="1.6" x2="377.855"/>
2780
+ </g>
2781
+ <g partID="48340">
2782
+ <line stroke="#00a6d3" stroke-linecap="round" y1="72.68" x1="183.306" y2="51.08" stroke-width="3.2" x2="183.574"/>
2783
+ <line stroke="#47cc79" stroke-linecap="round" y1="72.68" x1="183.306" y2="51.08" stroke-width="1.6" x2="183.574"/>
2784
+ </g>
2785
+ <g partID="48720">
2786
+ <line stroke="#8c0000" stroke-linecap="round" y1="230.977" x1="320.146" y2="130.28" stroke-width="3.2" x2="320.106"/>
2787
+ <line stroke="#cc1414" stroke-linecap="round" y1="230.977" x1="320.146" y2="130.28" stroke-width="1.6" x2="320.106"/>
2788
+ </g>
2789
+ <g partID="48410">
2790
+ <line stroke="#8c0000" stroke-linecap="round" y1="209.48" x1="173.227" y2="230.977" stroke-width="3.2" x2="173.227"/>
2791
+ <line stroke="#cc1414" stroke-linecap="round" y1="209.48" x1="173.227" y2="230.977" stroke-width="1.6" x2="173.227"/>
2792
+ </g>
2793
+ <g partID="48660">
2794
+ <line stroke="#8c0000" stroke-linecap="round" y1="230.977" x1="173.227" y2="230.977" stroke-width="3.2" x2="320.146"/>
2795
+ <line stroke="#cc1414" stroke-linecap="round" y1="230.977" x1="173.227" y2="230.977" stroke-width="1.6" x2="320.146"/>
2796
+ </g>
2797
+ <g partID="49220">
2798
+ <line stroke="#d95821" stroke-linecap="round" y1="58.1611" x1="370.369" y2="58.1611" stroke-width="3.2" x2="370.369"/>
2799
+ <line stroke="#ff7033" stroke-linecap="round" y1="58.1611" x1="370.369" y2="58.1611" stroke-width="1.6" x2="370.369"/>
2800
+ </g>
2801
+ <g partID="49190">
2802
+ <line stroke="#d95821" stroke-linecap="round" y1="58.1611" x1="230.828" y2="72.68" stroke-width="3.2" x2="230.828"/>
2803
+ <line stroke="#ff7033" stroke-linecap="round" y1="58.1611" x1="230.828" y2="72.68" stroke-width="1.6" x2="230.828"/>
2804
+ </g>
2805
+ <g partID="49160">
2806
+ <line stroke="#d95821" stroke-linecap="round" y1="130.281" x1="341.707" y2="137.394" stroke-width="3.2" x2="341.67"/>
2807
+ <line stroke="#ff7033" stroke-linecap="round" y1="130.281" x1="341.707" y2="137.394" stroke-width="1.6" x2="341.67"/>
2808
+ </g>
2809
+ <g partID="49240">
2810
+ <line stroke="#d95821" stroke-linecap="round" y1="137.394" x1="370.369" y2="58.1611" stroke-width="3.2" x2="370.369"/>
2811
+ <line stroke="#ff7033" stroke-linecap="round" y1="137.394" x1="370.369" y2="58.1611" stroke-width="1.6" x2="370.369"/>
2812
+ </g>
2813
+ <g partID="49260">
2814
+ <line stroke="#d95821" stroke-linecap="round" y1="137.394" x1="341.67" y2="137.394" stroke-width="3.2" x2="370.369"/>
2815
+ <line stroke="#ff7033" stroke-linecap="round" y1="137.394" x1="341.67" y2="137.394" stroke-width="1.6" x2="370.369"/>
2816
+ </g>
2817
+ <g partID="49560">
2818
+ <line stroke="#d95821" stroke-linecap="round" y1="58.1611" x1="370.369" y2="58.1611" stroke-width="3.2" x2="230.828"/>
2819
+ <line stroke="#ff7033" stroke-linecap="round" y1="58.1611" x1="370.369" y2="58.1611" stroke-width="1.6" x2="230.828"/>
2820
+ </g>
2821
+ <g partID="52600">
2822
+ <line stroke="#e6ab00" stroke-linecap="round" y1="50.9864" x1="25.0494" y2="123.357" stroke-width="3.2" x2="24.4255"/>
2823
+ <line stroke="#ffe24d" stroke-linecap="round" y1="50.9864" x1="25.0494" y2="123.357" stroke-width="1.6" x2="24.4255"/>
2824
+ </g>
2825
+ <g partID="52630">
2826
+ <line stroke="#e6ab00" stroke-linecap="round" y1="51.08" x1="161.707" y2="50.9864" stroke-width="3.2" x2="25.0494"/>
2827
+ <line stroke="#ffe24d" stroke-linecap="round" y1="51.08" x1="161.707" y2="50.9864" stroke-width="1.6" x2="25.0494"/>
2828
+ </g>
2829
+ <g partID="52310">
2830
+ <line stroke="#e6ab00" stroke-linecap="round" y1="72.68" x1="161.707" y2="51.08" stroke-width="3.2" x2="161.707"/>
2831
+ <line stroke="#ffe24d" stroke-linecap="round" y1="72.68" x1="161.707" y2="51.08" stroke-width="1.6" x2="161.707"/>
2832
+ </g>
2833
+ <g partID="53300">
2834
+ <line stroke="#8c0000" stroke-linecap="round" y1="230.977" x1="173.227" y2="230.977" stroke-width="3.2" x2="25.0494"/>
2835
+ <line stroke="#cc1414" stroke-linecap="round" y1="230.977" x1="173.227" y2="230.977" stroke-width="1.6" x2="25.0494"/>
2836
+ </g>
2837
+ <g partID="53190">
2838
+ <line stroke="#8c0000" stroke-linecap="round" y1="230.977" x1="25.0494" y2="144.68" stroke-width="3.2" x2="24.9071"/>
2839
+ <line stroke="#cc1414" stroke-linecap="round" y1="230.977" x1="25.0494" y2="144.68" stroke-width="1.6" x2="24.9071"/>
2840
+ </g>
2841
+ <g partID="52380">
2842
+ <line stroke="#8c0000" stroke-linecap="round" y1="209.48" x1="173.227" y2="230.977" stroke-width="3.2" x2="173.227"/>
2843
+ <line stroke="#cc1414" stroke-linecap="round" y1="209.48" x1="173.227" y2="230.977" stroke-width="1.6" x2="173.227"/>
2844
+ </g>
2845
+ <g partID="52770">
2846
+ <line stroke="#000000" stroke-linecap="round" y1="43.8118" x1="140.156" y2="43.8118" stroke-width="3.2" x2="3.21346"/>
2847
+ <line stroke="#404040" stroke-linecap="round" y1="43.8118" x1="140.156" y2="43.8118" stroke-width="1.6" x2="3.21346"/>
2848
+ </g>
2849
+ <g partID="52880">
2850
+ <line stroke="#000000" stroke-linecap="round" y1="144.569" x1="3.21346" y2="144.68" stroke-width="3.2" x2="17.707"/>
2851
+ <line stroke="#404040" stroke-linecap="round" y1="144.569" x1="3.21346" y2="144.68" stroke-width="1.6" x2="17.707"/>
2852
+ </g>
2853
+ <g partID="52660">
2854
+ <line stroke="#000000" stroke-linecap="round" y1="43.8118" x1="3.21346" y2="144.569" stroke-width="3.2" x2="3.21346"/>
2855
+ <line stroke="#404040" stroke-linecap="round" y1="43.8118" x1="3.21346" y2="144.569" stroke-width="1.6" x2="3.21346"/>
2856
+ </g>
2857
+ <g partID="52490">
2858
+ <line stroke="#000000" stroke-linecap="round" y1="72.68" x1="140.107" y2="43.8118" stroke-width="3.2" x2="140.156"/>
2859
+ <line stroke="#404040" stroke-linecap="round" y1="72.68" x1="140.107" y2="43.8118" stroke-width="1.6" x2="140.156"/>
2860
+ </g>
2861
+ <g partID="55050">
2862
+ <line stroke="#e6ab00" stroke-linecap="round" y1="72.68" x1="176.107" y2="51.08" stroke-width="3.2" x2="176.107"/>
2863
+ <line stroke="#ffe24d" stroke-linecap="round" y1="72.68" x1="176.107" y2="51.08" stroke-width="1.6" x2="176.107"/>
2864
+ </g>
2865
+ <g partID="55600">
2866
+ <line stroke="#e6ab00" stroke-linecap="round" y1="51.08" x1="176.107" y2="50.9864" stroke-width="3.2" x2="168.854"/>
2867
+ <line stroke="#ffe24d" stroke-linecap="round" y1="51.08" x1="176.107" y2="50.9864" stroke-width="1.6" x2="168.854"/>
2868
+ </g>
2869
+ <g partID="55530">
2870
+ <line stroke="#e6ab00" stroke-linecap="round" y1="50.9864" x1="168.854" y2="36.68" stroke-width="3.2" x2="168.907"/>
2871
+ <line stroke="#ffe24d" stroke-linecap="round" y1="50.9864" x1="168.854" y2="36.68" stroke-width="1.6" x2="168.907"/>
2872
+ </g>
2873
+ <g partID="55220">
2874
+ <line stroke="#000000" stroke-linecap="round" y1="72.68" x1="140.107" y2="44.1467" stroke-width="3.2" x2="140.374"/>
2875
+ <line stroke="#404040" stroke-linecap="round" y1="72.68" x1="140.107" y2="44.1467" stroke-width="1.6" x2="140.374"/>
2876
+ </g>
2877
+ <g partID="63470">
2878
+ <line stroke="#000000" stroke-linecap="round" y1="43.6133" x1="161.707" y2="36.68" stroke-width="3.2" x2="161.707"/>
2879
+ <line stroke="#404040" stroke-linecap="round" y1="43.6133" x1="161.707" y2="36.68" stroke-width="1.6" x2="161.707"/>
2880
+ </g>
2881
+ <g partID="55820">
2882
+ <line stroke="#000000" stroke-linecap="round" y1="44.1467" x1="140.374" y2="43.6133" stroke-width="3.2" x2="161.707"/>
2883
+ <line stroke="#404040" stroke-linecap="round" y1="44.1467" x1="140.374" y2="43.6133" stroke-width="1.6" x2="161.707"/>
2884
+ </g>
2885
+ <g partID="56120">
2886
+ <line stroke="#8c0000" stroke-linecap="round" y1="36.6371" x1="176.029" y2="36.68" stroke-width="3.2" x2="176.105"/>
2887
+ <line stroke="#cc1414" stroke-linecap="round" y1="36.6371" x1="176.029" y2="36.68" stroke-width="1.6" x2="176.105"/>
2888
+ </g>
2889
+ <g partID="55970">
2890
+ <line stroke="#8c0000" stroke-linecap="round" y1="209.48" x1="173.227" y2="230.977" stroke-width="3.2" x2="173.227"/>
2891
+ <line stroke="#cc1414" stroke-linecap="round" y1="209.48" x1="173.227" y2="230.977" stroke-width="1.6" x2="173.227"/>
2892
+ </g>
2893
+ <g partID="56420">
2894
+ <line stroke="#8c0000" stroke-linecap="round" y1="230.977" x1="392.205" y2="36.6371" stroke-width="3.2" x2="392.205"/>
2895
+ <line stroke="#cc1414" stroke-linecap="round" y1="230.977" x1="392.205" y2="36.6371" stroke-width="1.6" x2="392.205"/>
2896
+ </g>
2897
+ <g partID="56570">
2898
+ <line stroke="#8c0000" stroke-linecap="round" y1="230.977" x1="173.227" y2="230.977" stroke-width="3.2" x2="392.205"/>
2899
+ <line stroke="#cc1414" stroke-linecap="round" y1="230.977" x1="173.227" y2="230.977" stroke-width="1.6" x2="392.205"/>
2900
+ </g>
2901
+ <g partID="56270">
2902
+ <line stroke="#8c0000" stroke-linecap="round" y1="36.6371" x1="392.205" y2="36.6371" stroke-width="3.2" x2="176.029"/>
2903
+ <line stroke="#cc1414" stroke-linecap="round" y1="36.6371" x1="392.205" y2="36.6371" stroke-width="1.6" x2="176.029"/>
2904
+ </g>
2905
+ </svg>