chui-rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +29 -0
  6. data/Rakefile +1 -0
  7. data/chui-rails.gemspec +23 -0
  8. data/lib/chui/rails.rb +7 -0
  9. data/lib/chui/rails/version.rb +5 -0
  10. data/vendor/assets/images/app-icons/app.png +0 -0
  11. data/vendor/assets/images/app-icons/browser.png +0 -0
  12. data/vendor/assets/images/app-icons/mail.png +0 -0
  13. data/vendor/assets/images/app-icons/music.png +0 -0
  14. data/vendor/assets/images/app-icons/weather.png +0 -0
  15. data/vendor/assets/images/icons/Camera.svg +55 -0
  16. data/vendor/assets/images/icons/Documents.svg +71 -0
  17. data/vendor/assets/images/icons/Download.svg +8 -0
  18. data/vendor/assets/images/icons/Favorite.svg +25 -0
  19. data/vendor/assets/images/icons/Head_phones.svg +32 -0
  20. data/vendor/assets/images/icons/android.svg +15 -0
  21. data/vendor/assets/images/icons/arrow_down.svg +6 -0
  22. data/vendor/assets/images/icons/arrow_left.svg +6 -0
  23. data/vendor/assets/images/icons/arrow_right.svg +6 -0
  24. data/vendor/assets/images/icons/arrow_up.svg +6 -0
  25. data/vendor/assets/images/icons/down.svg +13 -0
  26. data/vendor/assets/images/icons/left.svg +13 -0
  27. data/vendor/assets/images/icons/right.svg +13 -0
  28. data/vendor/assets/images/icons/up.svg +13 -0
  29. Harm.jpg +0 -0
  30. data/vendor/assets/images/music/Imagine Dragons.jpg +0 -0
  31. data/vendor/assets/images/music/Kiss.jpg +0 -0
  32. data/vendor/assets/images/music/Permanent.jpg +0 -0
  33. data/vendor/assets/images/music/The Olms.jpg +0 -0
  34. data/vendor/assets/images/music/Willy Moon.jpg +0 -0
  35. data/vendor/assets/javascripts/chui-3.7.0.js +2796 -0
  36. data/vendor/assets/javascripts/chui-3.7.0.min.js +9 -0
  37. data/vendor/assets/stylesheets/chui-android-3.7.0.css +2970 -0
  38. data/vendor/assets/stylesheets/chui-android-3.7.0.min.css +8 -0
  39. data/vendor/assets/stylesheets/chui-ios-3.7.0.css +2614 -0
  40. data/vendor/assets/stylesheets/chui-ios-3.7.0.min.css +8 -0
  41. data/vendor/assets/stylesheets/chui-win-3.7.0.css +2375 -0
  42. data/vendor/assets/stylesheets/chui-win-3.7.0.min.css +8 -0
  43. metadata +113 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4303874af043ced7ab4b9f08d67bc71a90fa5cdf
4
+ data.tar.gz: d144b2d30459aff26274acff399494e4ea43cf09
5
+ SHA512:
6
+ metadata.gz: 8106afbd86d4081ddfccf59e3f635e52822a99918f5ac8b4e8da91d5af4a4de17e47374a02ae4f40e4e92bea2458fee45c712e54c27e33cf46c22d920874e1a6
7
+ data.tar.gz: 1c9bf3cf4b61c3ee8b2f20aaaf863cc2d14107be84cd0b363d4b01909474b11a8bd0dce92449ab4f93b1b6d7016e0e31006842bed542acbb27f022e9a238664b
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in chui-rails.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Spring MC
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,29 @@
1
+ # Chui::Rails
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'chui-rails'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install chui-rails
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( http://github.com/<my-github-username>/chui-rails/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'chui/rails/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "chui-rails"
8
+ spec.version = Chui::Rails::VERSION
9
+ spec.authors = ["Spring MC"]
10
+ spec.email = ["Heresy.MC@gmail.com"]
11
+ spec.summary = %q{chocolatechip-ui for rails pipeline}
12
+ spec.description = %q{chocolatechip-ui version 3.7.0}
13
+ spec.homepage = "https://github.com/mcspring/chui-rails"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.5"
22
+ spec.add_development_dependency "rake"
23
+ end
@@ -0,0 +1,7 @@
1
+ require "chui/rails/version"
2
+
3
+ module Chui
4
+ module Rails
5
+ # Your code goes here...
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ module Chui
2
+ module Rails
3
+ VERSION = "0.0.1"
4
+ end
5
+ end
@@ -0,0 +1,55 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ width="100px" height="100px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve">
6
+ <path fill="#010101" d="M60.571,53.802c0,5.572-4.521,10.092-10.099,10.092c-5.571,0-10.09-4.52-10.09-10.092
7
+ c0-5.578,4.519-10.091,10.09-10.091C56.051,43.711,60.571,48.224,60.571,53.802"/>
8
+ <path fill="#010101" d="M80.755,26.891H40.382c0-3.713-3.009-6.727-6.729-6.727h-6.728c-3.712,0-6.721,3.014-6.728,6.727h-6.721
9
+ c-3.716,0-6.731,3.011-6.731,6.729h6.724c3.72,0,6.729,3.014,6.729,6.728v26.911c0,3.719-3.009,6.727-6.729,6.727H6.747
10
+ c0,3.721,3.016,6.728,6.731,6.728h67.277c3.715,0,6.728-3.007,6.728-6.728V33.62C87.482,29.902,84.47,26.891,80.755,26.891
11
+ M50.479,70.622c-9.289,0-16.818-7.529-16.818-16.826c0-9.292,7.529-16.819,16.818-16.819c9.292,0,16.821,7.528,16.821,16.819
12
+ C67.3,63.093,59.771,70.622,50.479,70.622 M75.709,47.075c-2.792,0-5.046-2.26-5.046-5.046c0-2.779,2.254-5.046,5.046-5.046
13
+ c2.782,0,5.046,2.268,5.046,5.046C80.755,44.814,78.491,47.075,75.709,47.075"/>
14
+ <g opacity="0.5" enable-background="new ">
15
+ <g>
16
+ <defs>
17
+ <rect id="SVGID_1_" x="70.657" y="36.982" width="10.091" height="10.092"/>
18
+ </defs>
19
+ <clipPath id="SVGID_2_">
20
+ <use xlink:href="#SVGID_1_" overflow="visible"/>
21
+ </clipPath>
22
+ <g clip-path="url(#SVGID_2_)">
23
+ <defs>
24
+ <rect id="SVGID_3_" x="70.663" y="36.982" width="10.092" height="10.092"/>
25
+ </defs>
26
+ <clipPath id="SVGID_4_">
27
+ <use xlink:href="#SVGID_3_" overflow="visible"/>
28
+ </clipPath>
29
+ <path clip-path="url(#SVGID_4_)" fill="#010101" d="M75.709,36.982c-2.792,0-5.046,2.268-5.046,5.046
30
+ c0,2.786,2.254,5.046,5.046,5.046c2.782,0,5.046-2.26,5.046-5.046C80.755,39.25,78.491,36.982,75.709,36.982"/>
31
+ </g>
32
+ </g>
33
+ </g>
34
+ <polygon fill="#010101" points="6.747,73.984 6.747,73.984 6.747,33.62 "/>
35
+ <g opacity="0.5" enable-background="new ">
36
+ <g>
37
+ <defs>
38
+ <rect id="SVGID_5_" x="6.743" y="33.62" width="13.456" height="40.365"/>
39
+ </defs>
40
+ <clipPath id="SVGID_6_">
41
+ <use xlink:href="#SVGID_5_" overflow="visible"/>
42
+ </clipPath>
43
+ <g clip-path="url(#SVGID_6_)">
44
+ <defs>
45
+ <rect id="SVGID_7_" x="6.747" y="33.62" width="13.452" height="40.365"/>
46
+ </defs>
47
+ <clipPath id="SVGID_8_">
48
+ <use xlink:href="#SVGID_7_" overflow="visible"/>
49
+ </clipPath>
50
+ <path clip-path="url(#SVGID_8_)" fill="#010101" d="M20.199,67.258V40.347c0-3.713-3.009-6.728-6.729-6.728H6.747v40.365h6.724
51
+ C17.19,73.984,20.199,70.977,20.199,67.258"/>
52
+ </g>
53
+ </g>
54
+ </g>
55
+ </svg>
@@ -0,0 +1,71 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
+ width="100px" height="100px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve">
6
+ <path fill="#010101" d="M78.489,11.567h-6.164h-3.493H26.906h-3.494h-6.159L6.066,52.574L5.942,88.433h83.853V53.494L78.489,11.567z
7
+ M22.588,18.555h0.824h3.494h41.926h3.493h0.832l9.527,34.939H63.471l-6.988,10.48H39.258l-6.987-10.48h-19.21L22.588,18.555z"/>
8
+ <polygon fill="#010101" points="72.325,43.012 23.412,43.012 19.918,43.012 19.918,53.494 23.412,53.494 23.412,46.506
9
+ 72.325,46.506 72.325,53.494 75.819,53.494 75.819,46.506 75.819,43.012 "/>
10
+ <polygon fill="#010101" points="68.832,32.531 26.906,32.531 23.412,32.531 23.412,36.025 23.412,39.519 26.906,39.519
11
+ 26.906,36.025 68.832,36.025 68.832,39.519 72.325,39.519 72.325,36.025 72.325,32.531 "/>
12
+ <polygon fill="#010101" points="65.336,22.049 30.4,22.049 26.906,22.049 26.906,29.037 30.4,29.037 30.4,25.542 65.336,25.542
13
+ 65.336,29.037 68.832,29.037 68.832,25.542 68.832,22.049 "/>
14
+ <g opacity="0.5" enable-background="new ">
15
+ <g>
16
+ <defs>
17
+ <rect id="SVGID_1_" x="30.398" y="25.542" width="34.938" height="3.494"/>
18
+ </defs>
19
+ <clipPath id="SVGID_2_">
20
+ <use xlink:href="#SVGID_1_" overflow="visible"/>
21
+ </clipPath>
22
+ <g clip-path="url(#SVGID_2_)">
23
+ <defs>
24
+ <rect id="SVGID_3_" x="30.401" y="25.542" width="34.938" height="3.494"/>
25
+ </defs>
26
+ <clipPath id="SVGID_4_">
27
+ <use xlink:href="#SVGID_3_" overflow="visible"/>
28
+ </clipPath>
29
+ <rect x="30.401" y="25.542" clip-path="url(#SVGID_4_)" fill="#010101" width="34.938" height="3.494"/>
30
+ </g>
31
+ </g>
32
+ </g>
33
+ <g opacity="0.5" enable-background="new ">
34
+ <g>
35
+ <defs>
36
+ <rect id="SVGID_5_" x="26.904" y="36.025" width="41.928" height="3.494"/>
37
+ </defs>
38
+ <clipPath id="SVGID_6_">
39
+ <use xlink:href="#SVGID_5_" overflow="visible"/>
40
+ </clipPath>
41
+ <g clip-path="url(#SVGID_6_)">
42
+ <defs>
43
+ <rect id="SVGID_7_" x="26.904" y="36.025" width="41.928" height="3.494"/>
44
+ </defs>
45
+ <clipPath id="SVGID_8_">
46
+ <use xlink:href="#SVGID_7_" overflow="visible"/>
47
+ </clipPath>
48
+ <rect x="26.904" y="36.025" clip-path="url(#SVGID_8_)" fill="#010101" width="41.928" height="3.494"/>
49
+ </g>
50
+ </g>
51
+ </g>
52
+ <g opacity="0.5" enable-background="new ">
53
+ <g>
54
+ <defs>
55
+ <rect id="SVGID_9_" x="23.411" y="46.506" width="48.915" height="20.963"/>
56
+ </defs>
57
+ <clipPath id="SVGID_10_">
58
+ <use xlink:href="#SVGID_9_" overflow="visible"/>
59
+ </clipPath>
60
+ <g clip-path="url(#SVGID_10_)">
61
+ <defs>
62
+ <rect id="SVGID_11_" x="23.411" y="46.506" width="48.918" height="20.963"/>
63
+ </defs>
64
+ <clipPath id="SVGID_12_">
65
+ <use xlink:href="#SVGID_11_" overflow="visible"/>
66
+ </clipPath>
67
+ <rect x="23.411" y="46.506" clip-path="url(#SVGID_12_)" fill="#010101" width="48.918" height="20.963"/>
68
+ </g>
69
+ </g>
70
+ </g>
71
+ </svg>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg version="1.1" id="Layer_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ width="48px" height="48px" viewBox="0 0 48 48" enable-background="new 0 0 48 48" xml:space="preserve">
5
+ <path d="M24,5.994C13.503,5.994,4.994,14.503,4.994,25c0,10.496,8.509,19.006,19.006,19.006c10.496,0,19.006-8.51,19.006-19.006
6
+ C43.006,14.503,34.496,5.994,24,5.994z M24,37.59L12,24.729h8.273v-1.263v-2.546v-6.405c0-0.844,0.685-1.528,1.529-1.528h4.395
7
+ c0.846,0,1.529,0.685,1.529,1.528v6.405v2.346v1.463H36L24,37.59z"/>
8
+ </svg>
@@ -0,0 +1,25 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ version="1.1"
11
+ width="100"
12
+ height="100"
13
+ viewBox="0 0 100 100"
14
+ id="Layer_1"
15
+ xml:space="preserve"><metadata
16
+ id="metadata9"><rdf:RDF><cc:Work
17
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
18
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
19
+ id="defs7" />
20
+ <polygon
21
+ points="297.967,508 300.801,498.631 292.999,492.717 302.786,492.518 306.002,483.272 309.217,492.518 318.999,492.717 311.2,498.631 314.036,508 306.002,502.409 "
22
+ transform="matrix(3.4452411,0,0,3.4435349,-1004.0803,-1656.7394)"
23
+ id="polygon3"
24
+ style="fill:#010101" />
25
+ </svg>
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="48px"
4
+ height="48px">
5
+ <g
6
+ id="layer4"
7
+ style="display:inline">
8
+ <rect
9
+ width="6.9639015"
10
+ height="13.952844"
11
+ x="7.1463218"
12
+ y="27.518587"
13
+ id="rect3365"
14
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.14143729;stroke-opacity:1" />
15
+ <use
16
+ transform="translate(26.758431,-8.9949029e-7)"
17
+ id="use4139"
18
+ style="fill:#000000;fill-opacity:1"
19
+ x="0"
20
+ y="0"
21
+ width="48"
22
+ height="48"
23
+ xlink:href="#rect3365" />
24
+ </g>
25
+ <g
26
+ id="layer5">
27
+ <path
28
+ d="m 14.653138,27.518586 -7.0631547,0 3e-6,0 0,0 0,-10.245987 c 0,0 2.5283097,-11.5321623 15.9264757,-11.6145349 13.398166,-0.082372 16.775442,11.6969079 16.775442,11.6969079 l 0.08237,10.163614 -7.000649,0"
29
+ id="path4172"
30
+ style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
31
+ </g>
32
+ </svg>
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg width="76px" height="88px" viewBox="0 0 76 88" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
3
+ <title>Untitled 6</title>
4
+ <description>Created with Sketch (http://www.bohemiancoding.com/sketch)</description>
5
+ <defs></defs>
6
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
7
+ <g id="android" sketch:type="MSLayerGroup" transform="translate(1.000000, 0.000000)" fill="#83CA1B">
8
+ <path d="M47.287,17.993 C45.735,17.993 44.477,16.85 44.477,15.439 C44.477,14.027 45.735,12.885 47.287,12.885 C48.839,12.885 50.097,14.027 50.097,15.439 C50.097,16.85 48.839,17.993 47.287,17.993 M27.141,17.993 C25.588,17.993 24.33,16.85 24.33,15.439 C24.33,14.027 25.588,12.885 27.141,12.885 C28.692,12.885 29.95,14.027 29.95,15.439 C29.95,16.85 28.692,17.993 27.141,17.993 M48.508,8.272 L53.471,1.766 C53.765,1.383 53.691,0.833 53.306,0.539 C52.921,0.246 52.372,0.32 52.079,0.705 L46.807,7.612 C43.886,6.591 40.653,6.023 37.25,6.023 C33.981,6.023 30.869,6.547 28.039,7.493 L22.86,0.705 C22.566,0.32 22.016,0.246 21.631,0.539 C21.247,0.833 21.174,1.383 21.467,1.766 L26.324,8.133 C18.825,11.227 13.708,17.407 13.708,24.527 C13.708,24.592 13.806,24.85 13.807,24.915 L60.781,24.85 C60.784,24.742 60.791,24.635 60.791,24.527 C60.791,17.512 55.826,11.41 48.508,8.272" id="Shape" sketch:type="MSShapeGroup"></path>
9
+ <path d="M74.5,34.004 C74.5,30.935 72.098,28.448 69.135,28.448 L68.767,28.448 C65.804,28.448 63.401,30.935 63.401,34.004 L63.401,55.178 C63.401,58.247 65.804,60.735 68.767,60.735 L69.135,60.735 C72.098,60.735 74.5,58.247 74.5,55.178 L74.5,34.004 L74.5,34.004 Z" id="Shape" sketch:type="MSShapeGroup"></path>
10
+ <path d="M17.822,70.824 L22.37,70.824 L22.37,82.003 C22.37,85.072 24.87,87.64 27.833,87.64 L28.052,87.64 C31.016,87.64 33.468,85.072 33.468,82.003 L33.468,70.824 L41.54,70.824 L41.54,82.003 C41.54,85.072 44.141,87.64 47.104,87.64 L47.323,87.64 C50.286,87.64 52.639,85.072 52.639,82.003 L52.639,70.824 L56.896,70.824 C59.168,70.824 60.852,68.79 60.852,66.517 L60.809,27.984 L13.415,27.943 L13.289,66.364 C13.289,68.636 15.551,70.824 17.822,70.824 Z" id="Shape" sketch:type="MSShapeGroup"></path>
11
+ <path d="M10.599,34.004 C10.599,30.935 8.197,28.448 5.234,28.448 L4.866,28.448 C1.903,28.448 -0.5,30.935 -0.5,34.004 L-0.5,55.178 C-0.5,58.247 1.903,60.735 4.866,60.735 L5.234,60.735 C8.197,60.735 10.599,58.247 10.599,55.178 L10.599,34.004 L10.599,34.004 Z" id="Shape" sketch:type="MSShapeGroup"></path>
12
+ <path d="M74.5,34.004 C74.5,30.935 72.098,28.448 69.135,28.448 L68.767,28.448 C65.804,28.448 63.401,30.935 63.401,34.004 L63.401,55.178 C63.401,58.247 65.804,60.735 68.767,60.735 L69.135,60.735 C72.098,60.735 74.5,58.247 74.5,55.178 L74.5,34.004 L74.5,34.004 Z" id="Shape" sketch:type="MSShapeGroup"></path>
13
+ </g>
14
+ </g>
15
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg version="1.1" id="Layer_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ width="48px" height="48px" viewBox="0 0 48 48" enable-background="new 0 0 48 48" xml:space="preserve">
5
+ <polygon points="24,35 10,17 38,17 "/>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg version="1.1" id="Layer_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ width="48px" height="48px" viewBox="0 0 48 48" enable-background="new 0 0 48 48" xml:space="preserve">
5
+ <polygon points="13,25 31,11 31,39 "/>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg version="1.1" id="Layer_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ width="48px" height="48px" viewBox="0 0 48 48" enable-background="new 0 0 48 48" xml:space="preserve">
5
+ <polygon points="35,25 17,11 17,39 "/>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg version="1.1" id="Layer_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ width="48px" height="48px" viewBox="0 0 48 48" enable-background="new 0 0 48 48" xml:space="preserve">
5
+ <polygon points="24,14 38,32 10,32 "/>
6
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="svg2" xmlns:svg="http://www.w3.org/2000/svg"
5
+ xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="48px" height="48px"
6
+ viewBox="0 0 48 48" enable-background="new 0 0 48 48" xml:space="preserve">
7
+ <g id="g4">
8
+ </g>
9
+ <g id="layer2">
10
+ <path id="path7" d="M7.227,17.101l2.599-2.674l12.167,12.167l12.086-12.086l2.679,2.593L26.628,27.229l-4.636,4.636l-4.636-4.636
11
+ L7.227,17.101z"/>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="svg2" xmlns:svg="http://www.w3.org/2000/svg"
5
+ xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="48px" height="48px"
6
+ viewBox="0 0 48 48" enable-background="new 0 0 48 48" xml:space="preserve">
7
+ <g id="g4">
8
+ </g>
9
+ <g id="layer2">
10
+ <path id="path7" d="M28.038,8.381l2.674,2.599L18.545,23.146l12.086,12.086l-2.593,2.679L17.909,27.782l-4.636-4.636l4.636-4.636
11
+ L28.038,8.381z"/>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="svg2" xmlns:svg="http://www.w3.org/2000/svg"
5
+ xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="48px" height="48px"
6
+ viewBox="0 0 48 48" enable-background="new 0 0 48 48" xml:space="preserve">
7
+ <g id="g4">
8
+ </g>
9
+ <g id="layer2">
10
+ <path id="path7" d="M15.946,37.911l-2.674-2.599l12.167-12.167L13.354,11.06l2.593-2.679L26.075,18.51l4.636,4.636l-4.636,4.636
11
+ L15.946,37.911z"/>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
+ <svg version="1.1" id="svg2" xmlns:svg="http://www.w3.org/2000/svg"
5
+ xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="48px" height="48px"
6
+ viewBox="0 0 48 48" enable-background="new 0 0 48 48" xml:space="preserve">
7
+ <g id="g4">
8
+ </g>
9
+ <g id="layer2">
10
+ <path id="path7" d="M36.757,29.191l-2.599,2.674L21.992,19.698L9.905,31.784l-2.679-2.593l10.129-10.129l4.636-4.636l4.636,4.636
11
+ L36.757,29.191z"/>
12
+ </g>
13
+ </svg>