diff --git a/README.md b/README.md
index d06d053..2df832e 100644
--- a/README.md
+++ b/README.md
@@ -1,55 +1,39 @@
# Weather Icons
-*Version 1.3 - November 30th, 2014*
+*Version 2.0 - August 2015*
-## A free, open source icon-font of Weather icons
+## 215 Weather Themed Icons and CSS
-Weather Icons is a font of 189 weather themed icons, ready to be dropped right into [Bootstrap](http://www.getbootstrap.com) or any other project.
+Weather Icons is the only icon font and CSS with 215 weather themed icons, ready to be dropped right into [Bootstrap](http://www.getbootstrap.com), or any project that needs high quality weather, maritime, and meteorological based icons!
-Inspired by [Font Awesome](http://fontawesome.io/), they work in essentially the same way. They are infinitley scalable and any CSS that can be applied to text can be applied to them. All you need to do to insert an icon is add the base class and the specific icon class to an "i" element:
+Get started at [http://weathericons.io](http://weathericons.io)!
-````
+
-At this time, there are no other effects/mixins to do advanced icon manipulation yet.
+## Basic Usage
-
+Place the 5 font files and the main `weather-icons.min.css` file in your project, with the assumption that the fonts are located up `../` from your CSS directory.
-####[View demo and full icon reference](http://erikflowers.github.io/weather-icons/)
+The icons are displayed by using an `i` element and adding the base class `wi` and then the icon class you want, such as `day-sunny`. This then looks like ``.
-## Getting Started
-Getting started is easy. First, put the fonts in the directory ABOVE your css directory. By default, the fonts are referencing a ../fonts/ folder that is on the same level as /css. This can be changed via the `@WeatherIconPath` variable in variables.less
+To add a modifier, include the class you want after the icon name, which looks like ``. You can flip, rotate, or add a fixed with. See it all at [http://weathericons.io](http://weathericons.io).
-Include in your main .less file `weather-icons/weather-icons.less` and that is all you need to do.
+## Wind Usage
-It is best to download the [repo](http://www.github.com/erikflowers/weather-icons) from Github if you want to keep up to date. Please report any issues or requests to the repository here
+To use the wind indicators, you must also use `weather-icons-wind.min.css` along with the default CSS file. To dispay a wind indicator, you must use the base class `wi` and `wi-wind`, and then include the towards/from direction you want, like `from-293-deg`. This ends up looking like . You can use any degree from 0 to 359 in this manner. **Note:** A "from" class has the point of the arrow at the opposite end of the degree. For example, a "from 90 degrees" icon would point to the 270 degree mark, wheras a "towards 270 degrees" would point at the same 270 degree mark.
-#### CSS Only Method
-If you just want to add a css file to your project with no Less compiling, you just need to reference the `weather-icons.css` included in the css folder. *If you are not familiar with using Bootstrap, or using Bootstrap in the precompiled Less mode, I would recommend you give it a try)*
+Included in the set as well are aliases to point to cardinal directions. They work the same as degrees, for example `` would be an arrow pointing to the South by Southeast (roughly 158 degrees).
-### Bower
-`bower install weather-icons`
-
-Be sure to reference css when using the icons:
-
-``
-
-## New in version 1.3
-Umbrella, day-windy, night-alt-cloudy, up-left, down-right, day-sleet, night-sleet, night-alt-sleet, sleet, day-haze.
-
-28 moon phase icons
-
-12 clock icons
-
-13 Beaufort Scale icons
-
-### Collaboration
-If you feel so inclined to add icon ideas, icon art, or other fixes/changes to how the package works, feel free to help! I'd also love it if someone wanted to make this a component as well for bower, npm, component, etc. No idea how to do that myself (yet).
+## Contributing
+If you feel so inclined to add icon ideas, icon art, or other fixes/changes to how the package works, feel free to help!
## Credit
The icon designs are originally by [Lukas Bischoff](http://www.twitter.com/artill). Icon art for v1.1 forward, HTML, Less, and CSS are by [me (Erik)](http://www.helloerik.com).
-None of this would be possible without [Bootstrap](http://www.getbootstrap.com), [Font Awesome](http://fontawesome.io/) and [Lukas Bischoff](http://www.twitter.com/artill). I just put it all together into a neat package. Cheatsheet provided by Michael Woywod.
+## Licensing
-Weather Icons licensed under [SIL OFL 1.1](http://scripts.sil.org/OFL) — Code licensed under [MIT License](http://opensource.org/licenses/mit-license.html) — Documentation licensed under [CC BY 3.0](http://creativecommons.org/licenses/by/3.0)
+* Weather Icons licensed under [SIL OFL 1.1](http://scripts.sil.org/OFL)
+* Code licensed under [MIT License](http://opensource.org/licenses/mit-license.html)
+* Documentation licensed under [CC BY 3.0](http://creativecommons.org/licenses/by/3.0)
## Contact
-Weather Icons is maintained by me, Erik Flowers. Reach me at [@Erik_UX](http://www.twitter.com/Erik_UX) or at [http://www.helloerik.com](http://www.helloerik.com).
+Weather Icons is maintained by Erik Flowers. Reach me at [@Erik_UX](http://www.twitter.com/Erik_UX) or at [http://www.helloerik.com](http://www.helloerik.com).
diff --git a/_builder/beaufort.edn b/_builder/beaufort.edn
new file mode 100644
index 0000000..1179fa7
--- /dev/null
+++ b/_builder/beaufort.edn
@@ -0,0 +1,39 @@
+{:columns [label code]
+ :outputs
+ [{:name "../less/icon-variables/variables-beaufort.less"
+ :before ""
+ :join ";\n"
+ :row [\@ label \: " " \" \\ code \"]
+ :after ";"}
+
+
+ {:name "../sass/icon-variables/variables-beaufort.scss"
+ :before ""
+ :join ";\n"
+ :row [\$ label \: " " \" \\ code \"]
+ :after "\n"}
+
+
+ {:name "../less/icon-classes/classes-beaufort.less"
+ :before ""
+ :join "\n"
+ :row [".wi-" label ":before {content: @" label ";}"]
+ :after ""}
+
+
+ {:name "../sass/icon-classes/classes-beaufort.scss"
+ :before ""
+ :join "\n"
+ :row [".wi-" label ":before {content: $" label ";}"]
+ :after ""}
+
+
+ {:name "../_docs/jade/icon-list-beaufort.jade"
+ :before ""
+ :join "\n"
+ :row [".icon-wrap" "\n"
+ " .icon " code \; "\n"
+ " .icon-name wi-" label "\n"
+ " .icon_unicode " code \ ""]
+ :after ""}
+ ]}
diff --git a/_builder/csv/bak.csv b/_builder/csv/bak.csv
new file mode 100644
index 0000000..03a99ba
--- /dev/null
+++ b/_builder/csv/bak.csv
@@ -0,0 +1,165 @@
+_reserved_, f049
+alien, f075
+celsius, f03c
+cloud, f041
+cloud-down, f03d
+cloud-refresh, f03e
+cloud-up, f040
+cloudy, f013
+cloudy-gusts, f011
+cloudy-windy, f012
+day-cloudy, f002
+day-cloudy-gusts, f000
+day-cloudy-windy, f001
+day-fog, f003
+day-hail, f004
+day-haze, f0b6
+day-lightning, f005
+day-rain, f008
+day-rain-mix, f006
+day-rain-wind, f007
+day-showers, f009
+day-sleet, f0b2
+day-sleet-storm, f068
+day-snow, f00a
+day-snow-thunderstorm, f06b
+day-snow-wind, f065
+day-sprinkle, f00b
+day-storm-showers, f00e
+day-sunny, f00d
+day-sunny-overcast, f00c
+day-thunderstorm, f010
+day-windy, f085
+degrees, f042
+direction-down, f044
+direction-down-left, f043
+direction-down-right, f088
+direction-left, f048
+direction-right, f04d
+direction-up, f058
+direction-up-left, f087
+direction-up-right, f057
+dust, f063
+fahrenheit, f045
+fog, f014
+hail, f015
+horizon, f047
+horizon-alt, f046
+hot, f072
+hurricane, f073
+lightning, f016
+lunar-eclipse, f070
+meteor, f071
+moon-3rd-quarter, f0aa
+moon-first-quarter, f09c
+moon-full, f0a3
+moon-new, f095
+moon-waning-crescent-1, f0ab
+moon-waning-crescent-2, f0ac
+moon-waning-crescent-3, f0ad
+moon-waning-crescent-4, f0ae
+moon-waning-crescent-5, f0af
+moon-waning-crescent-6, f0b0
+moon-waning-gibbous-1, f0a4
+moon-waning-gibbous-2, f0a5
+moon-waning-gibbous-3, f0a6
+moon-waning-gibbous-4, f0a7
+moon-waning-gibbous-5, f0a8
+moon-waning-gibbous-6, f0a9
+moon-waxing-cresent-1, f096
+moon-waxing-cresent-2, f097
+moon-waxing-cresent-3, f098
+moon-waxing-cresent-4, f099
+moon-waxing-cresent-5, f09a
+moon-waxing-cresent-6, f09b
+moon-waxing-gibbous-1, f09d
+moon-waxing-gibbous-2, f09e
+moon-waxing-gibbous-3, f09f
+moon-waxing-gibbous-4, f0a0
+moon-waxing-gibbous-5, f0a1
+moon-waxing-gibbous-6, f0a2
+night-alt-cloudy, f086
+night-alt-cloudy-gusts, f022
+night-alt-cloudy-windy, f023
+night-alt-hail, f024
+night-alt-lightning, f025
+night-alt-rain, f028
+night-alt-rain-mix, f026
+night-alt-rain-wind, f027
+night-alt-showers, f029
+night-alt-sleet, f0b4
+night-alt-sleet-storm, f06a
+night-alt-snow, f02a
+night-alt-snow-thunderstorm, f06d
+night-alt-snow-wind, f067
+night-alt-sprinkle, f02b
+night-alt-storm-showers, f02c
+night-alt-thunderstorm, f02d
+night-clear, f02e
+night-cloudy, f031
+night-cloudy-gusts, f02f
+night-cloudy-windy, f030
+night-fog, f04a
+night-hail, f032
+night-lightning, f033
+night-partly-cloudy, f083
+night-rain, f036
+night-rain-mix, f034
+night-rain-wind, f035
+night-showers, f037
+night-sleet, f0b3
+night-sleet-storm, f069
+night-snow, f038
+night-snow-thunderstorm, f06c
+night-snow-wind, f066
+night-sprinkle, f039
+night-storm-showers, f03a
+night-thunderstorm, f03b
+rain, f019
+rain-mix, f017
+rain-wind, f018
+refresh, f04c
+refresh-alt, f04b
+showers, f01a
+sleet, f0b5
+smog, f074
+smoke, f062
+snow, f01b
+snow-wind, f064
+snowflake-cold, f076
+solar-eclipse, f06e
+sprinkle, f01c
+sprinkles, f04e
+stars, f077
+storm-showers, f01d
+strong-wind, f050
+sunrise, f051
+sunset, f052
+thermometer, f055
+thermometer-exterior, f053
+thermometer-internal, f054
+thunderstorm, f01e
+time-1, f08a
+time-10, f093
+time-11, f094
+time-12, f089
+time-2, f08b
+time-3, f08c
+time-4, f08d
+time-5, f08e
+time-6, f08f
+time-7, f090
+time-8, f091
+time-9, f092
+tornado, f056
+umbrella, f084
+wind-default, f0b1
+wind-east, f061
+wind-north, f060
+wind-north-east, f05e
+wind-north-west, f05d
+wind-south, f05c
+wind-south-east, f05b
+wind-south-west, f05a
+wind-west, f059
+windy, f021;
\ No newline at end of file
diff --git a/_builder/csv/beaufort.csv b/_builder/csv/beaufort.csv
new file mode 100644
index 0000000..d9e84bd
--- /dev/null
+++ b/_builder/csv/beaufort.csv
@@ -0,0 +1,13 @@
+wind-beaufort-0, f0b7
+wind-beaufort-1, f0b8
+wind-beaufort-2, f0b9
+wind-beaufort-3, f0ba
+wind-beaufort-4, f0bb
+wind-beaufort-5, f0bc
+wind-beaufort-6, f0bd
+wind-beaufort-7, f0be
+wind-beaufort-8, f0bf
+wind-beaufort-9, f0c0
+wind-beaufort-10, f0c1
+wind-beaufort-11, f0c2
+wind-beaufort-12, f0c3
\ No newline at end of file
diff --git a/_builder/csv/day.csv b/_builder/csv/day.csv
new file mode 100644
index 0000000..efb434a
--- /dev/null
+++ b/_builder/csv/day.csv
@@ -0,0 +1,26 @@
+day-sunny, f00d
+day-cloudy, f002
+day-cloudy-gusts, f000
+day-cloudy-windy, f001
+day-fog, f003
+day-hail, f004
+day-haze, f0b6
+day-lightning, f005
+day-rain, f008
+day-rain-mix, f006
+day-rain-wind, f007
+day-showers, f009
+day-sleet, f0b2
+day-sleet-storm, f068
+day-snow, f00a
+day-snow-thunderstorm, f06b
+day-snow-wind, f065
+day-sprinkle, f00b
+day-storm-showers, f00e
+day-sunny-overcast, f00c
+day-thunderstorm, f010
+day-windy, f085
+solar-eclipse, f06e
+hot, f072
+day-cloudy-high,f07d
+day-light-wind,f0c4
\ No newline at end of file
diff --git a/_builder/csv/direction.csv b/_builder/csv/direction.csv
new file mode 100644
index 0000000..a41eb6d
--- /dev/null
+++ b/_builder/csv/direction.csv
@@ -0,0 +1,8 @@
+direction-up, f058
+direction-up-right, f057
+direction-right, f04d
+direction-down-right, f088
+direction-down, f044
+direction-down-left, f043
+direction-left, f048
+direction-up-left, f087
\ No newline at end of file
diff --git a/_builder/csv/misc.csv b/_builder/csv/misc.csv
new file mode 100644
index 0000000..ee9ce6a
--- /dev/null
+++ b/_builder/csv/misc.csv
@@ -0,0 +1,23 @@
+alien, f075
+celsius, f03c
+fahrenheit, f045
+degrees, f042
+thermometer, f055
+thermometer-exterior, f053
+thermometer-internal, f054
+cloud-down, f03d
+cloud-up, f040
+cloud-refresh, f03e
+horizon, f047
+horizon-alt, f046
+sunrise, f051
+sunset, f052
+moonrise, f0c9
+moonset, f0ca
+refresh, f04c
+refresh-alt, f04b
+umbrella, f084
+barometer,f079
+humidity,f07a
+na,f07b
+train,f0cb
\ No newline at end of file
diff --git a/_builder/csv/moon.csv b/_builder/csv/moon.csv
new file mode 100644
index 0000000..3fe4cf5
--- /dev/null
+++ b/_builder/csv/moon.csv
@@ -0,0 +1,26 @@
+moon-new, f095
+moon-waxing-cresent-1, f096
+moon-waxing-cresent-2, f097
+moon-waxing-cresent-3, f098
+moon-waxing-cresent-4, f099
+moon-waxing-cresent-5, f09a
+moon-waxing-cresent-6, f09b
+moon-waxing-gibbous-1, f09d
+moon-waxing-gibbous-2, f09e
+moon-waxing-gibbous-3, f09f
+moon-waxing-gibbous-4, f0a0
+moon-waxing-gibbous-5, f0a1
+moon-waxing-gibbous-6, f0a2
+moon-full, f0a3
+moon-waning-gibbous-1, f0a4
+moon-waning-gibbous-2, f0a5
+moon-waning-gibbous-3, f0a6
+moon-waning-gibbous-4, f0a7
+moon-waning-gibbous-5, f0a8
+moon-waning-gibbous-6, f0a9
+moon-waning-crescent-1, f0ab
+moon-waning-crescent-2, f0ac
+moon-waning-crescent-3, f0ad
+moon-waning-crescent-4, f0ae
+moon-waning-crescent-5, f0af
+moon-waning-crescent-6, f0b0
\ No newline at end of file
diff --git a/_builder/csv/neutral.csv b/_builder/csv/neutral.csv
new file mode 100644
index 0000000..3e1ab0c
--- /dev/null
+++ b/_builder/csv/neutral.csv
@@ -0,0 +1,40 @@
+cloud, f041
+cloudy, f013
+cloudy-gusts, f011
+cloudy-windy, f012
+fog, f014
+hail, f015
+rain, f019
+rain-mix, f017
+rain-wind, f018
+showers, f01a
+sleet, f0b5
+snow, f01b
+sprinkle, f01c
+storm-showers, f01d
+thunderstorm, f01e
+snow-wind, f064
+snow, f01b
+smog, f074
+smoke, f062
+lightning, f016
+raindrops, f04e
+raindrop,f078
+dust, f063
+snowflake-cold, f076
+windy, f021
+strong-wind, f050
+sandstorm,f082
+earthquake,f0c6
+fire,f0c7
+flood,f07c
+meteor, f071
+tsunami,f0c5
+volcano,f0c8
+hurricane, f073
+tornado, f056
+small-craft-advisory,f0cc
+gale-warning,f0cd
+storm-warning,f0ce
+hurricane-warning,f0cf
+wind-direction,f0b1
\ No newline at end of file
diff --git a/_builder/csv/night.csv b/_builder/csv/night.csv
new file mode 100644
index 0000000..8cf5855
--- /dev/null
+++ b/_builder/csv/night.csv
@@ -0,0 +1,44 @@
+night-clear, f02e
+night-alt-cloudy, f086
+night-alt-cloudy-gusts, f022
+night-alt-cloudy-windy, f023
+night-alt-hail, f024
+night-alt-lightning, f025
+night-alt-rain, f028
+night-alt-rain-mix, f026
+night-alt-rain-wind, f027
+night-alt-showers, f029
+night-alt-sleet, f0b4
+night-alt-sleet-storm, f06a
+night-alt-snow, f02a
+night-alt-snow-thunderstorm, f06d
+night-alt-snow-wind, f067
+night-alt-sprinkle, f02b
+night-alt-storm-showers, f02c
+night-alt-thunderstorm, f02d
+night-cloudy, f031
+night-cloudy-gusts, f02f
+night-cloudy-windy, f030
+night-fog, f04a
+night-hail, f032
+night-lightning, f033
+night-partly-cloudy, f083
+night-rain, f036
+night-rain-mix, f034
+night-rain-wind, f035
+night-showers, f037
+night-sleet, f0b3
+night-sleet-storm, f069
+night-snow, f038
+night-snow-thunderstorm, f06c
+night-snow-wind, f066
+night-sprinkle, f039
+night-storm-showers, f03a
+night-thunderstorm, f03b
+lunar-eclipse, f070
+stars, f077
+storm-showers, f01d
+thunderstorm, f01e
+night-alt-cloudy-high,f07e
+night-cloudy-high,f080
+night-alt-partly-cloudy,f081
\ No newline at end of file
diff --git a/_builder/csv/temp.csv b/_builder/csv/temp.csv
new file mode 100644
index 0000000..e69de29
diff --git a/_builder/csv/time.csv b/_builder/csv/time.csv
new file mode 100644
index 0000000..dab5012
--- /dev/null
+++ b/_builder/csv/time.csv
@@ -0,0 +1,12 @@
+time-1, f08a
+time-2, f08b
+time-3, f08c
+time-4, f08d
+time-5, f08e
+time-6, f08f
+time-7, f090
+time-8, f091
+time-9, f092
+time-10, f093
+time-11, f094
+time-12, f089
\ No newline at end of file
diff --git a/_builder/csv/wind-degrees.csv b/_builder/csv/wind-degrees.csv
new file mode 100644
index 0000000..cb7ea71
--- /dev/null
+++ b/_builder/csv/wind-degrees.csv
@@ -0,0 +1,722 @@
+towards,0,0
+towards,1,1
+towards,2,2
+towards,3,3
+towards,4,4
+towards,5,5
+towards,6,6
+towards,7,7
+towards,8,8
+towards,9,9
+towards,10,10
+towards,11,11
+towards,12,12
+towards,13,13
+towards,14,14
+towards,15,15
+towards,16,16
+towards,17,17
+towards,18,18
+towards,19,19
+towards,20,20
+towards,21,21
+towards,22,22
+towards,23,23
+towards,24,24
+towards,25,25
+towards,26,26
+towards,27,27
+towards,28,28
+towards,29,29
+towards,30,30
+towards,31,31
+towards,32,32
+towards,33,33
+towards,34,34
+towards,35,35
+towards,36,36
+towards,37,37
+towards,38,38
+towards,39,39
+towards,40,40
+towards,41,41
+towards,42,42
+towards,43,43
+towards,44,44
+towards,45,45
+towards,46,46
+towards,47,47
+towards,48,48
+towards,49,49
+towards,50,50
+towards,51,51
+towards,52,52
+towards,53,53
+towards,54,54
+towards,55,55
+towards,56,56
+towards,57,57
+towards,58,58
+towards,59,59
+towards,60,60
+towards,61,61
+towards,62,62
+towards,63,63
+towards,64,64
+towards,65,65
+towards,66,66
+towards,67,67
+towards,68,68
+towards,69,69
+towards,70,70
+towards,71,71
+towards,72,72
+towards,73,73
+towards,74,74
+towards,75,75
+towards,76,76
+towards,77,77
+towards,78,78
+towards,79,79
+towards,80,80
+towards,81,81
+towards,82,82
+towards,83,83
+towards,84,84
+towards,85,85
+towards,86,86
+towards,87,87
+towards,88,88
+towards,89,89
+towards,90,90
+towards,91,91
+towards,92,92
+towards,93,93
+towards,94,94
+towards,95,95
+towards,96,96
+towards,97,97
+towards,98,98
+towards,99,99
+towards,100,100
+towards,101,101
+towards,102,102
+towards,103,103
+towards,104,104
+towards,105,105
+towards,106,106
+towards,107,107
+towards,108,108
+towards,109,109
+towards,110,110
+towards,111,111
+towards,112,112
+towards,113,113
+towards,114,114
+towards,115,115
+towards,116,116
+towards,117,117
+towards,118,118
+towards,119,119
+towards,120,120
+towards,121,121
+towards,122,122
+towards,123,123
+towards,124,124
+towards,125,125
+towards,126,126
+towards,127,127
+towards,128,128
+towards,129,129
+towards,130,130
+towards,131,131
+towards,132,132
+towards,133,133
+towards,134,134
+towards,135,135
+towards,136,136
+towards,137,137
+towards,138,138
+towards,139,139
+towards,140,140
+towards,141,141
+towards,142,142
+towards,143,143
+towards,144,144
+towards,145,145
+towards,146,146
+towards,147,147
+towards,148,148
+towards,149,149
+towards,150,150
+towards,151,151
+towards,152,152
+towards,153,153
+towards,154,154
+towards,155,155
+towards,156,156
+towards,157,157
+towards,158,158
+towards,159,159
+towards,160,160
+towards,161,161
+towards,162,162
+towards,163,163
+towards,164,164
+towards,165,165
+towards,166,166
+towards,167,167
+towards,168,168
+towards,169,169
+towards,170,170
+towards,171,171
+towards,172,172
+towards,173,173
+towards,174,174
+towards,175,175
+towards,176,176
+towards,177,177
+towards,178,178
+towards,179,179
+towards,180,180
+towards,181,181
+towards,182,182
+towards,183,183
+towards,184,184
+towards,185,185
+towards,186,186
+towards,187,187
+towards,188,188
+towards,189,189
+towards,190,190
+towards,191,191
+towards,192,192
+towards,193,193
+towards,194,194
+towards,195,195
+towards,196,196
+towards,197,197
+towards,198,198
+towards,199,199
+towards,200,200
+towards,201,201
+towards,202,202
+towards,203,203
+towards,204,204
+towards,205,205
+towards,206,206
+towards,207,207
+towards,208,208
+towards,209,209
+towards,210,210
+towards,211,211
+towards,212,212
+towards,213,213
+towards,214,214
+towards,215,215
+towards,216,216
+towards,217,217
+towards,218,218
+towards,219,219
+towards,220,220
+towards,221,221
+towards,222,222
+towards,223,223
+towards,224,224
+towards,225,225
+towards,226,226
+towards,227,227
+towards,228,228
+towards,229,229
+towards,230,230
+towards,231,231
+towards,232,232
+towards,233,233
+towards,234,234
+towards,235,235
+towards,236,236
+towards,237,237
+towards,238,238
+towards,239,239
+towards,240,240
+towards,241,241
+towards,242,242
+towards,243,243
+towards,244,244
+towards,245,245
+towards,246,246
+towards,247,247
+towards,248,248
+towards,249,249
+towards,250,250
+towards,251,251
+towards,252,252
+towards,253,253
+towards,254,254
+towards,255,255
+towards,256,256
+towards,257,257
+towards,258,258
+towards,259,259
+towards,260,260
+towards,261,261
+towards,262,262
+towards,263,263
+towards,264,264
+towards,265,265
+towards,266,266
+towards,267,267
+towards,268,268
+towards,269,269
+towards,270,270
+towards,271,271
+towards,272,272
+towards,273,273
+towards,274,274
+towards,275,275
+towards,276,276
+towards,277,277
+towards,278,278
+towards,279,279
+towards,280,280
+towards,281,281
+towards,282,282
+towards,283,283
+towards,284,284
+towards,285,285
+towards,286,286
+towards,287,287
+towards,288,288
+towards,289,289
+towards,290,290
+towards,291,291
+towards,292,292
+towards,293,293
+towards,294,294
+towards,295,295
+towards,296,296
+towards,297,297
+towards,298,298
+towards,299,299
+towards,300,300
+towards,301,301
+towards,302,302
+towards,303,303
+towards,304,304
+towards,305,305
+towards,306,306
+towards,307,307
+towards,308,308
+towards,309,309
+towards,310,310
+towards,311,311
+towards,312,312
+towards,313,313
+towards,314,314
+towards,315,315
+towards,316,316
+towards,317,317
+towards,318,318
+towards,319,319
+towards,320,320
+towards,321,321
+towards,322,322
+towards,323,323
+towards,324,324
+towards,325,325
+towards,326,326
+towards,327,327
+towards,328,328
+towards,329,329
+towards,330,330
+towards,331,331
+towards,332,332
+towards,333,333
+towards,334,334
+towards,335,335
+towards,336,336
+towards,337,337
+towards,338,338
+towards,339,339
+towards,340,340
+towards,341,341
+towards,342,342
+towards,343,343
+towards,344,344
+towards,345,345
+towards,346,346
+towards,347,347
+towards,348,348
+towards,349,349
+towards,350,350
+towards,351,351
+towards,352,352
+towards,353,353
+towards,354,354
+towards,355,355
+towards,356,356
+towards,357,357
+towards,358,358
+towards,359,359
+towards,360,0
+from,0,180
+from,1,181
+from,2,182
+from,3,183
+from,4,184
+from,5,185
+from,6,186
+from,7,187
+from,8,188
+from,9,189
+from,10,190
+from,11,191
+from,12,192
+from,13,193
+from,14,194
+from,15,195
+from,16,196
+from,17,197
+from,18,198
+from,19,199
+from,20,200
+from,21,201
+from,22,202
+from,23,203
+from,24,204
+from,25,205
+from,26,206
+from,27,207
+from,28,208
+from,29,209
+from,30,210
+from,31,211
+from,32,212
+from,33,213
+from,34,214
+from,35,215
+from,36,216
+from,37,217
+from,38,218
+from,39,219
+from,40,220
+from,41,221
+from,42,222
+from,43,223
+from,44,224
+from,45,225
+from,46,226
+from,47,227
+from,48,228
+from,49,229
+from,50,230
+from,51,231
+from,52,232
+from,53,233
+from,54,234
+from,55,235
+from,56,236
+from,57,237
+from,58,238
+from,59,239
+from,60,240
+from,61,241
+from,62,242
+from,63,243
+from,64,244
+from,65,245
+from,66,246
+from,67,247
+from,68,248
+from,69,249
+from,70,250
+from,71,251
+from,72,252
+from,73,253
+from,74,254
+from,75,255
+from,76,256
+from,77,257
+from,78,258
+from,79,259
+from,80,260
+from,81,261
+from,82,262
+from,83,263
+from,84,264
+from,85,265
+from,86,266
+from,87,267
+from,88,268
+from,89,269
+from,90,270
+from,91,271
+from,92,272
+from,93,273
+from,94,274
+from,95,275
+from,96,276
+from,97,277
+from,98,278
+from,99,279
+from,100,280
+from,101,281
+from,102,282
+from,103,283
+from,104,284
+from,105,285
+from,106,286
+from,107,287
+from,108,288
+from,109,289
+from,110,290
+from,111,291
+from,112,292
+from,113,293
+from,114,294
+from,115,295
+from,116,296
+from,117,297
+from,118,298
+from,119,299
+from,120,300
+from,121,301
+from,122,302
+from,123,303
+from,124,304
+from,125,305
+from,126,306
+from,127,307
+from,128,308
+from,129,309
+from,130,310
+from,131,311
+from,132,312
+from,133,313
+from,134,314
+from,135,315
+from,136,316
+from,137,317
+from,138,318
+from,139,319
+from,140,320
+from,141,321
+from,142,322
+from,143,323
+from,144,324
+from,145,325
+from,146,326
+from,147,327
+from,148,328
+from,149,329
+from,150,330
+from,151,331
+from,152,332
+from,153,333
+from,154,334
+from,155,335
+from,156,336
+from,157,337
+from,158,338
+from,159,339
+from,160,340
+from,161,341
+from,162,342
+from,163,343
+from,164,344
+from,165,345
+from,166,346
+from,167,347
+from,168,348
+from,169,349
+from,170,350
+from,171,351
+from,172,352
+from,173,353
+from,174,354
+from,175,355
+from,176,356
+from,177,357
+from,178,358
+from,179,359
+from,180,0
+from,181,1
+from,182,2
+from,183,3
+from,184,4
+from,185,5
+from,186,6
+from,187,7
+from,188,8
+from,189,9
+from,190,10
+from,191,11
+from,192,12
+from,193,13
+from,194,14
+from,195,15
+from,196,16
+from,197,17
+from,198,18
+from,199,19
+from,200,20
+from,201,21
+from,202,22
+from,203,23
+from,204,24
+from,205,25
+from,206,26
+from,207,27
+from,208,28
+from,209,29
+from,210,30
+from,211,31
+from,212,32
+from,213,33
+from,214,34
+from,215,35
+from,216,36
+from,217,37
+from,218,38
+from,219,39
+from,220,40
+from,221,41
+from,222,42
+from,223,43
+from,224,44
+from,225,45
+from,226,46
+from,227,47
+from,228,48
+from,229,49
+from,230,50
+from,231,51
+from,232,52
+from,233,53
+from,234,54
+from,235,55
+from,236,56
+from,237,57
+from,238,58
+from,239,59
+from,240,60
+from,241,61
+from,242,62
+from,243,63
+from,244,64
+from,245,65
+from,246,66
+from,247,67
+from,248,68
+from,249,69
+from,250,70
+from,251,71
+from,252,72
+from,253,73
+from,254,74
+from,255,75
+from,256,76
+from,257,77
+from,258,78
+from,259,79
+from,260,80
+from,261,81
+from,262,82
+from,263,83
+from,264,84
+from,265,85
+from,266,86
+from,267,87
+from,268,88
+from,269,89
+from,270,90
+from,271,91
+from,272,92
+from,273,93
+from,274,94
+from,275,95
+from,276,96
+from,277,97
+from,278,98
+from,279,99
+from,280,100
+from,281,101
+from,282,102
+from,283,103
+from,284,104
+from,285,105
+from,286,106
+from,287,107
+from,288,108
+from,289,109
+from,290,110
+from,291,111
+from,292,112
+from,293,113
+from,294,114
+from,295,115
+from,296,116
+from,297,117
+from,298,118
+from,299,119
+from,300,120
+from,301,121
+from,302,122
+from,303,123
+from,304,124
+from,305,125
+from,306,126
+from,307,127
+from,308,128
+from,309,129
+from,310,130
+from,311,131
+from,312,132
+from,313,133
+from,314,134
+from,315,135
+from,316,136
+from,317,137
+from,318,138
+from,319,139
+from,320,140
+from,321,141
+from,322,142
+from,323,143
+from,324,144
+from,325,145
+from,326,146
+from,327,147
+from,328,148
+from,329,149
+from,330,150
+from,331,151
+from,332,152
+from,333,153
+from,334,154
+from,335,155
+from,336,156
+from,337,157
+from,338,158
+from,339,159
+from,340,160
+from,341,161
+from,342,162
+from,343,163
+from,344,164
+from,345,165
+from,346,166
+from,347,167
+from,348,168
+from,349,169
+from,350,170
+from,351,171
+from,352,172
+from,353,173
+from,354,174
+from,355,175
+from,356,176
+from,357,177
+from,358,178
+from,359,179
+from,360,180
\ No newline at end of file
diff --git a/_builder/csv/wind.csv b/_builder/csv/wind.csv
new file mode 100644
index 0000000..60b4664
--- /dev/null
+++ b/_builder/csv/wind.csv
@@ -0,0 +1,32 @@
+towards,n,f0b1,0
+towards,nne,f0b1,23
+towards,ne,f0b1,45
+towards,ene,f0b1,68
+towards,e,f0b1,90
+towards,ese,f0b1,113
+towards,se,f0b1,135
+towards,sse,f0b1,158
+towards,s,f0b1,180
+towards,ssw,f0b1,203
+towards,sw,f0b1,225
+towards,wsw,f0b1,248
+towards,w,f0b1,270
+towards,wnw,f0b1,293
+towards,nw,f0b1,313
+towards,nnw,f0b1,336
+from,n,f0b1,180
+from,nne,f0b1,203
+from,ne,f0b1,225
+from,ene,f0b1,248
+from,e,f0b1,270
+from,ese,f0b1,293
+from,se,f0b1,313
+from,sse,f0b1,336
+from,s,f0b1,0
+from,ssw,f0b1,23
+from,sw,f0b1,45
+from,wsw,f0b1,68
+from,w,f0b1,90
+from,wnw,f0b1,113
+from,nw,f0b1,135
+from,nnw,f0b1,158
\ No newline at end of file
diff --git a/_builder/day.edn b/_builder/day.edn
new file mode 100644
index 0000000..a0a9d88
--- /dev/null
+++ b/_builder/day.edn
@@ -0,0 +1,39 @@
+{:columns [label code]
+ :outputs
+ [{:name "../less/icon-variables/variables-day.less"
+ :before ""
+ :join ";\n"
+ :row [\@ label \: " " \" \\ code \"]
+ :after ";"}
+
+
+ {:name "../sass/icon-variables/variables-day.scss"
+ :before ""
+ :join ";\n"
+ :row [\$ label \: " " \" \\ code \"]
+ :after "\n"}
+
+
+ {:name "../less/icon-classes/classes-day.less"
+ :before ""
+ :join "\n"
+ :row [".wi-" label ":before {content: @" label ";}"]
+ :after ""}
+
+
+ {:name "../sass/icon-classes/classes-day.scss"
+ :before ""
+ :join "\n"
+ :row [".wi-" label ":before {content: $" label ";}"]
+ :after ""}
+
+
+ {:name "../_docs/jade/icon-list-day.jade"
+ :before ""
+ :join "\n"
+ :row [".icon-wrap" "\n"
+ " .icon " code \; "\n"
+ " .icon-name wi-" label "\n"
+ " .icon_unicode " code \ ""]
+ :after ""}
+ ]}
diff --git a/_builder/direction.edn b/_builder/direction.edn
new file mode 100644
index 0000000..6a0f1a7
--- /dev/null
+++ b/_builder/direction.edn
@@ -0,0 +1,39 @@
+{:columns [label code]
+ :outputs
+ [{:name "../less/icon-variables/variables-direction.less"
+ :before ""
+ :join ";\n"
+ :row [\@ label \: " " \" \\ code \"]
+ :after ";"}
+
+
+ {:name "../sass/icon-variables/variables-direction.scss"
+ :before ""
+ :join ";\n"
+ :row [\$ label \: " " \" \\ code \"]
+ :after "\n"}
+
+
+ {:name "../less/icon-classes/classes-direction.less"
+ :before ""
+ :join "\n"
+ :row [".wi-" label ":before {content: @" label ";}"]
+ :after ""}
+
+
+ {:name "../sass/icon-classes/classes-direction.scss"
+ :before ""
+ :join "\n"
+ :row [".wi-" label ":before {content: $" label ";}"]
+ :after ""}
+
+
+ {:name "../_docs/jade/icon-list-direction.jade"
+ :before ""
+ :join "\n"
+ :row [".icon-wrap" "\n"
+ " .icon " code \; "\n"
+ " .icon-name wi-" label "\n"
+ " .icon_unicode " code \ ""]
+ :after ""}
+ ]}
diff --git a/_builder/misc.edn b/_builder/misc.edn
new file mode 100644
index 0000000..adbdeda
--- /dev/null
+++ b/_builder/misc.edn
@@ -0,0 +1,39 @@
+{:columns [label code]
+ :outputs
+ [{:name "../less/icon-variables/variables-misc.less"
+ :before ""
+ :join ";\n"
+ :row [\@ label \: " " \" \\ code \"]
+ :after ";"}
+
+
+ {:name "../sass/icon-variables/variables-misc.scss"
+ :before ""
+ :join ";\n"
+ :row [\$ label \: " " \" \\ code \"]
+ :after "\n"}
+
+
+ {:name "../less/icon-classes/classes-misc.less"
+ :before ""
+ :join "\n"
+ :row [".wi-" label ":before {content: @" label ";}"]
+ :after ""}
+
+
+ {:name "../sass/icon-classes/classes-misc.scss"
+ :before ""
+ :join "\n"
+ :row [".wi-" label ":before {content: $" label ";}"]
+ :after ""}
+
+
+ {:name "../_docs/jade/icon-list-misc.jade"
+ :before ""
+ :join "\n"
+ :row [".icon-wrap" "\n"
+ " .icon " code \; "\n"
+ " .icon-name wi-" label "\n"
+ " .icon_unicode " code \ ""]
+ :after ""}
+ ]}
diff --git a/_builder/moon.edn b/_builder/moon.edn
new file mode 100644
index 0000000..74c2a47
--- /dev/null
+++ b/_builder/moon.edn
@@ -0,0 +1,39 @@
+{:columns [label code]
+ :outputs
+ [{:name "../less/icon-variables/variables-moon.less"
+ :before ""
+ :join ";\n"
+ :row [\@ label \: " " \" \\ code \"]
+ :after ";"}
+
+
+ {:name "../sass/icon-variables/variables-moon.scss"
+ :before ""
+ :join ";\n"
+ :row [\$ label \: " " \" \\ code \"]
+ :after "\n"}
+
+
+ {:name "../less/icon-classes/classes-moon.less"
+ :before ""
+ :join "\n"
+ :row [".wi-" label ":before {content: @" label ";}"]
+ :after ""}
+
+
+ {:name "../sass/icon-classes/classes-moon.scss"
+ :before ""
+ :join "\n"
+ :row [".wi-" label ":before {content: $" label ";}"]
+ :after ""}
+
+
+ {:name "../_docs/jade/icon-list-moon.jade"
+ :before ""
+ :join "\n"
+ :row [".icon-wrap" "\n"
+ " .icon " code \; "\n"
+ " .icon-name wi-" label "\n"
+ " .icon_unicode " code \ ""]
+ :after ""}
+ ]}
diff --git a/_builder/neutral.edn b/_builder/neutral.edn
new file mode 100644
index 0000000..bdd4399
--- /dev/null
+++ b/_builder/neutral.edn
@@ -0,0 +1,39 @@
+{:columns [label code]
+ :outputs
+ [{:name "../less/icon-variables/variables-neutral.less"
+ :before ""
+ :join ";\n"
+ :row [\@ label \: " " \" \\ code \"]
+ :after ";"}
+
+
+ {:name "../sass/icon-variables/variables-neutral.scss"
+ :before ""
+ :join ";\n"
+ :row [\$ label \: " " \" \\ code \"]
+ :after "\n"}
+
+
+ {:name "../less/icon-classes/classes-neutral.less"
+ :before ""
+ :join "\n"
+ :row [".wi-" label ":before {content: @" label ";}"]
+ :after ""}
+
+
+ {:name "../sass/icon-classes/classes-neutral.scss"
+ :before ""
+ :join "\n"
+ :row [".wi-" label ":before {content: $" label ";}"]
+ :after ""}
+
+
+ {:name "../_docs/jade/icon-list-neutral.jade"
+ :before ""
+ :join "\n"
+ :row [".icon-wrap" "\n"
+ " .icon " code \; "\n"
+ " .icon-name wi-" label "\n"
+ " .icon_unicode " code \ ""]
+ :after ""}
+ ]}
diff --git a/_builder/night.edn b/_builder/night.edn
new file mode 100644
index 0000000..8182a59
--- /dev/null
+++ b/_builder/night.edn
@@ -0,0 +1,39 @@
+{:columns [label code]
+ :outputs
+ [{:name "../less/icon-variables/variables-night.less"
+ :before ""
+ :join ";\n"
+ :row [\@ label \: " " \" \\ code \"]
+ :after ";"}
+
+
+ {:name "../sass/icon-variables/variables-night.scss"
+ :before ""
+ :join ";\n"
+ :row [\$ label \: " " \" \\ code \"]
+ :after "\n"}
+
+
+ {:name "../less/icon-classes/classes-night.less"
+ :before ""
+ :join "\n"
+ :row [".wi-" label ":before {content: @" label ";}"]
+ :after ""}
+
+
+ {:name "../sass/icon-classes/classes-night.scss"
+ :before ""
+ :join "\n"
+ :row [".wi-" label ":before {content: $" label ";}"]
+ :after ""}
+
+
+ {:name "../_docs/jade/icon-list-night.jade"
+ :before ""
+ :join "\n"
+ :row [".icon-wrap" "\n"
+ " .icon " code \; "\n"
+ " .icon-name wi-" label "\n"
+ " .icon_unicode " code \ ""]
+ :after ""}
+ ]}
diff --git a/_builder/templates.edn b/_builder/templates.edn
new file mode 100644
index 0000000..e28a05b
--- /dev/null
+++ b/_builder/templates.edn
@@ -0,0 +1,22 @@
+{:columns [label code]
+ :outputs
+ [{:name "weather-icons-variables.less"
+ :before "@wi-icon-glyphs:\n"
+ :join ",\n"
+ :row [\" label \" " " \" \\ code \"]
+ :after ";"}
+
+ {:name "weather-icons-variables.scss"
+ :before "$wi-icon-glyphs: (\n"
+ :join ",\n"
+ :row [\" label \" \: " " \" \\ code \"]
+ :after "\n)"}
+
+ {:name "../icon-list.jade"
+ :before ""
+ :join "\n"
+ :row [".icon-wrap" "\n"
+ " .icon " code \; "\n"
+ " .icon-name wi-" label "\n"
+ " .icon_unicode " code \ ""]
+ :after ""}]}
diff --git a/_builder/time.edn b/_builder/time.edn
new file mode 100644
index 0000000..6b371f1
--- /dev/null
+++ b/_builder/time.edn
@@ -0,0 +1,39 @@
+{:columns [label code]
+ :outputs
+ [{:name "../less/icon-variables/variables-time.less"
+ :before ""
+ :join ";\n"
+ :row [\@ label \: " " \" \\ code \"]
+ :after ";"}
+
+
+ {:name "../sass/icon-variables/variables-time.scss"
+ :before ""
+ :join ";\n"
+ :row [\$ label \: " " \" \\ code \"]
+ :after "\n"}
+
+
+ {:name "../less/icon-classes/classes-time.less"
+ :before ""
+ :join "\n"
+ :row [".wi-" label ":before {content: @" label ";}"]
+ :after ""}
+
+
+ {:name "../sass/icon-classes/classes-time.scss"
+ :before ""
+ :join "\n"
+ :row [".wi-" label ":before {content: $" label ";}"]
+ :after ""}
+
+
+ {:name "../_docs/jade/icon-list-time.jade"
+ :before ""
+ :join "\n"
+ :row [".icon-wrap" "\n"
+ " .icon " code \; "\n"
+ " .icon-name wi-" label "\n"
+ " .icon_unicode " code \ ""]
+ :after ""}
+ ]}
diff --git a/_builder/wbuilder b/_builder/wbuilder
new file mode 100755
index 0000000..e72adf9
Binary files /dev/null and b/_builder/wbuilder differ
diff --git a/_builder/wind-degrees.edn b/_builder/wind-degrees.edn
new file mode 100644
index 0000000..8e67897
--- /dev/null
+++ b/_builder/wind-degrees.edn
@@ -0,0 +1,15 @@
+{:columns [direction label code]
+ :outputs
+ [{:name "../less/icon-classes/classes-wind-degrees.less"
+ :before ".@{wi-css-prefix}-wind-default { \n"
+ :join "}\n"
+ :row [\ \ \& "." direction "-" label "-deg {.wind-rotate(" code "deg);"]
+ :after "} \n}"}
+
+ {:name "../sass/icon-classes/classes-wind-degrees.scss"
+ :before ".#{$wi-css-prefix}-wind-default { \n"
+ :join "}\n"
+ :row [\ \ \& "." direction "-" label "-deg {@include wind-rotate(" code "deg);"]
+ :after "} \n}"}
+
+ ]}
diff --git a/_builder/wind.edn b/_builder/wind.edn
new file mode 100644
index 0000000..e5d4c6b
--- /dev/null
+++ b/_builder/wind.edn
@@ -0,0 +1,36 @@
+{:columns [direction label code degree]
+ :outputs
+ [{:name "../less/icon-variables/variables-wind-names.less"
+ :before ""
+ :join ";\n"
+ :row [\@ label \: " " \" \\ code \"]
+ :after ";"}
+
+
+ {:name "../sass/icon-variables/variables-wind-names.scss"
+ :before ""
+ :join ";\n"
+ :row [\$ label \: " " \" \\ code \"]
+ :after ";"}
+
+ {:name "../_docs/jade/icon-list-wind.jade"
+ :before ""
+ :join "\n"
+ :row [".icon-wrap" "\n"
+ " i.wi.wi-wind." direction "-" degree "-deg\n"
+ " .icon-name wi-wind." direction "-" degree "-deg\n"
+ " .icon_unicode " code \ ""]
+ :after ""}
+
+{:name "../_docs/jade/icon-list-wind-cardinal.jade"
+ :before ""
+ :join "\n"
+ :row [".icon-wrap" "\n"
+ " i.wi.wi-wind.wi-" direction "-" label "\n"
+ " .icon-name wi-" direction "-" label "\n"
+ " .icon_unicode " code \ ""]
+ :after ""}
+
+
+
+ ]}
diff --git a/_docs/font-source/artwork/cloud pieces.ai b/_docs/font-source/artwork/cloud pieces.ai
new file mode 100644
index 0000000..de0babc
--- /dev/null
+++ b/_docs/font-source/artwork/cloud pieces.ai
@@ -0,0 +1,6456 @@
+%PDF-1.5
%âãÏÓ
+1 0 obj
<>/OCGs[5 0 R 40 0 R 74 0 R]>>/Pages 3 0 R/Type/Catalog>>
endobj
2 0 obj
<>stream
+
+
+
+
+ application/pdf
+
+
+ Print
+
+
+ 2015-08-06T18:35:35-07:00
+ 2015-08-06T18:35:35-07:00
+ 2015-08-04T22:23:15-07:00
+ Adobe Illustrator CC 2015 (Macintosh)
+
+
+
+ 248
+ 256
+ JPEG
+ /9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA
AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK
DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f
Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgBAAD4AwER
AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA
AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB
UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE
1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ
qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy
obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp
0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo
+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7
FXYq7FXYq7FUq8zeZdL8u6TPqOoTJGsaO0MLOqPM6qWEUYbqzUyUIGRoOboNBk1WUY8YJsizX0jv
Pk858q+VLP8AMC0Ov+adWbUpZiSmj2k/G3tFP2EZEJYPTfcj3qd8yJz4DURT1faPaM+zJeBpsfhg
fxyj6p95BO1fgUv1K3n/ACv1fTLqz1GWbylqMy2l5pt1J6ht2IJEsNeiqPtU8KGtRRB8QGx6gxwT
j2xinGcANTCPFGcRXF5S8+77K3vpela5o2rRNLpd9BexoaO0EiycT4NxJp9OYxiRzeR1Gky4DWSM
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
kZT2577Y2lM8CuxV2Kv/2Q==
+
+
+
+ uuid:1c23bac5-fd71-f942-8f48-3539f1a17ff9
+ xmp.did:c8a0992c-df4a-4bfb-a231-42f3c0406782
+ uuid:5D20892493BFDB11914A8590D31508C8
+ proof:pdf
+
+ uuid:d1c078a0-2746-42b2-b0d1-25aedff8fb1e
+ xmp.did:1b6690ed-28a8-c141-9479-b6a9cf6be651
+ uuid:5D20892493BFDB11914A8590D31508C8
+ proof:pdf
+
+
+
+
+ saved
+ xmp.iid:c8a0992c-df4a-4bfb-a231-42f3c0406782
+ 2015-08-04T22:23:15-07:00
+ Adobe Illustrator CC 2015 (Macintosh)
+ /
+
+
+
+ Document
+ Print
+ False
+ False
+ 1
+
+ 612.000000
+ 792.000000
+ Points
+
+
+
+ Magenta
+ Black
+
+
+
+
+
+ Default Swatch Group
+ 0
+
+
+
+ White
+ CMYK
+ PROCESS
+ 0.000000
+ 0.000000
+ 0.000000
+ 0.000000
+
+
+ Black
+ CMYK
+ PROCESS
+ 0.000000
+ 0.000000
+ 0.000000
+ 100.000000
+
+
+ CMYK Red
+ CMYK
+ PROCESS
+ 0.000000
+ 100.000000
+ 100.000000
+ 0.000000
+
+
+ CMYK Yellow
+ CMYK
+ PROCESS
+ 0.000000
+ 0.000000
+ 100.000000
+ 0.000000
+
+
+ CMYK Green
+ CMYK
+ PROCESS
+ 100.000000
+ 0.000000
+ 100.000000
+ 0.000000
+
+
+ CMYK Cyan
+ CMYK
+ PROCESS
+ 100.000000
+ 0.000000
+ 0.000000
+ 0.000000
+
+
+ CMYK Blue
+ CMYK
+ PROCESS
+ 100.000000
+ 100.000000
+ 0.000000
+ 0.000000
+
+
+ CMYK Magenta
+ CMYK
+ PROCESS
+ 0.000000
+ 100.000000
+ 0.000000
+ 0.000000
+
+
+ C=15 M=100 Y=90 K=10
+ CMYK
+ PROCESS
+ 15.000000
+ 100.000000
+ 90.000000
+ 10.000000
+
+
+ C=0 M=90 Y=85 K=0
+ CMYK
+ PROCESS
+ 0.000000
+ 90.000000
+ 85.000000
+ 0.000000
+
+
+ C=0 M=80 Y=95 K=0
+ CMYK
+ PROCESS
+ 0.000000
+ 80.000000
+ 95.000000
+ 0.000000
+
+
+ C=0 M=50 Y=100 K=0
+ CMYK
+ PROCESS
+ 0.000000
+ 50.000000
+ 100.000000
+ 0.000000
+
+
+ C=0 M=35 Y=85 K=0
+ CMYK
+ PROCESS
+ 0.000000
+ 35.000000
+ 85.000000
+ 0.000000
+
+
+ C=5 M=0 Y=90 K=0
+ CMYK
+ PROCESS
+ 5.000000
+ 0.000000
+ 90.000000
+ 0.000000
+
+
+ C=20 M=0 Y=100 K=0
+ CMYK
+ PROCESS
+ 20.000000
+ 0.000000
+ 100.000000
+ 0.000000
+
+
+ C=50 M=0 Y=100 K=0
+ CMYK
+ PROCESS
+ 50.000000
+ 0.000000
+ 100.000000
+ 0.000000
+
+
+ C=75 M=0 Y=100 K=0
+ CMYK
+ PROCESS
+ 75.000000
+ 0.000000
+ 100.000000
+ 0.000000
+
+
+ C=85 M=10 Y=100 K=10
+ CMYK
+ PROCESS
+ 85.000000
+ 10.000000
+ 100.000000
+ 10.000000
+
+
+ C=90 M=30 Y=95 K=30
+ CMYK
+ PROCESS
+ 90.000000
+ 30.000000
+ 95.000000
+ 30.000000
+
+
+ C=75 M=0 Y=75 K=0
+ CMYK
+ PROCESS
+ 75.000000
+ 0.000000
+ 75.000000
+ 0.000000
+
+
+ C=80 M=10 Y=45 K=0
+ CMYK
+ PROCESS
+ 80.000000
+ 10.000000
+ 45.000000
+ 0.000000
+
+
+ C=70 M=15 Y=0 K=0
+ CMYK
+ PROCESS
+ 70.000000
+ 15.000000
+ 0.000000
+ 0.000000
+
+
+ C=85 M=50 Y=0 K=0
+ CMYK
+ PROCESS
+ 85.000000
+ 50.000000
+ 0.000000
+ 0.000000
+
+
+ C=100 M=95 Y=5 K=0
+ CMYK
+ PROCESS
+ 100.000000
+ 95.000000
+ 5.000000
+ 0.000000
+
+
+ C=100 M=100 Y=25 K=25
+ CMYK
+ PROCESS
+ 100.000000
+ 100.000000
+ 25.000000
+ 25.000000
+
+
+ C=75 M=100 Y=0 K=0
+ CMYK
+ PROCESS
+ 75.000000
+ 100.000000
+ 0.000000
+ 0.000000
+
+
+ C=50 M=100 Y=0 K=0
+ CMYK
+ PROCESS
+ 50.000000
+ 100.000000
+ 0.000000
+ 0.000000
+
+
+ C=35 M=100 Y=35 K=10
+ CMYK
+ PROCESS
+ 35.000000
+ 100.000000
+ 35.000000
+ 10.000000
+
+
+ C=10 M=100 Y=50 K=0
+ CMYK
+ PROCESS
+ 10.000000
+ 100.000000
+ 50.000000
+ 0.000000
+
+
+ C=0 M=95 Y=20 K=0
+ CMYK
+ PROCESS
+ 0.000000
+ 95.000000
+ 20.000000
+ 0.000000
+
+
+ C=25 M=25 Y=40 K=0
+ CMYK
+ PROCESS
+ 25.000000
+ 25.000000
+ 40.000000
+ 0.000000
+
+
+ C=40 M=45 Y=50 K=5
+ CMYK
+ PROCESS
+ 40.000000
+ 45.000000
+ 50.000000
+ 5.000000
+
+
+ C=50 M=50 Y=60 K=25
+ CMYK
+ PROCESS
+ 50.000000
+ 50.000000
+ 60.000000
+ 25.000000
+
+
+ C=55 M=60 Y=65 K=40
+ CMYK
+ PROCESS
+ 55.000000
+ 60.000000
+ 65.000000
+ 40.000000
+
+
+ C=25 M=40 Y=65 K=0
+ CMYK
+ PROCESS
+ 25.000000
+ 40.000000
+ 65.000000
+ 0.000000
+
+
+ C=30 M=50 Y=75 K=10
+ CMYK
+ PROCESS
+ 30.000000
+ 50.000000
+ 75.000000
+ 10.000000
+
+
+ C=35 M=60 Y=80 K=25
+ CMYK
+ PROCESS
+ 35.000000
+ 60.000000
+ 80.000000
+ 25.000000
+
+
+ C=40 M=65 Y=90 K=35
+ CMYK
+ PROCESS
+ 40.000000
+ 65.000000
+ 90.000000
+ 35.000000
+
+
+ C=40 M=70 Y=100 K=50
+ CMYK
+ PROCESS
+ 40.000000
+ 70.000000
+ 100.000000
+ 50.000000
+
+
+ C=50 M=70 Y=80 K=70
+ CMYK
+ PROCESS
+ 50.000000
+ 70.000000
+ 80.000000
+ 70.000000
+
+
+
+
+
+ Grays
+ 1
+
+
+
+ C=0 M=0 Y=0 K=100
+ CMYK
+ PROCESS
+ 0.000000
+ 0.000000
+ 0.000000
+ 100.000000
+
+
+ C=0 M=0 Y=0 K=90
+ CMYK
+ PROCESS
+ 0.000000
+ 0.000000
+ 0.000000
+ 89.999400
+
+
+ C=0 M=0 Y=0 K=80
+ CMYK
+ PROCESS
+ 0.000000
+ 0.000000
+ 0.000000
+ 79.998800
+
+
+ C=0 M=0 Y=0 K=70
+ CMYK
+ PROCESS
+ 0.000000
+ 0.000000
+ 0.000000
+ 69.999700
+
+
+ C=0 M=0 Y=0 K=60
+ CMYK
+ PROCESS
+ 0.000000
+ 0.000000
+ 0.000000
+ 59.999100
+
+
+ C=0 M=0 Y=0 K=50
+ CMYK
+ PROCESS
+ 0.000000
+ 0.000000
+ 0.000000
+ 50.000000
+
+
+ C=0 M=0 Y=0 K=40
+ CMYK
+ PROCESS
+ 0.000000
+ 0.000000
+ 0.000000
+ 39.999400
+
+
+ C=0 M=0 Y=0 K=30
+ CMYK
+ PROCESS
+ 0.000000
+ 0.000000
+ 0.000000
+ 29.998800
+
+
+ C=0 M=0 Y=0 K=20
+ CMYK
+ PROCESS
+ 0.000000
+ 0.000000
+ 0.000000
+ 19.999700
+
+
+ C=0 M=0 Y=0 K=10
+ CMYK
+ PROCESS
+ 0.000000
+ 0.000000
+ 0.000000
+ 9.999100
+
+
+ C=0 M=0 Y=0 K=5
+ CMYK
+ PROCESS
+ 0.000000
+ 0.000000
+ 0.000000
+ 4.998800
+
+
+
+
+
+ Brights
+ 1
+
+
+
+ C=0 M=100 Y=100 K=0
+ CMYK
+ PROCESS
+ 0.000000
+ 100.000000
+ 100.000000
+ 0.000000
+
+
+ C=0 M=75 Y=100 K=0
+ CMYK
+ PROCESS
+ 0.000000
+ 75.000000
+ 100.000000
+ 0.000000
+
+
+ C=0 M=10 Y=95 K=0
+ CMYK
+ PROCESS
+ 0.000000
+ 10.000000
+ 95.000000
+ 0.000000
+
+
+ C=85 M=10 Y=100 K=0
+ CMYK
+ PROCESS
+ 85.000000
+ 10.000000
+ 100.000000
+ 0.000000
+
+
+ C=100 M=90 Y=0 K=0
+ CMYK
+ PROCESS
+ 100.000000
+ 90.000000
+ 0.000000
+ 0.000000
+
+
+ C=60 M=90 Y=0 K=0
+ CMYK
+ PROCESS
+ 60.000000
+ 90.000000
+ 0.003100
+ 0.003100
+
+
+
+
+
+
+ Adobe PDF library 10.01
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
endstream
endobj
3 0 obj
<>
endobj
7 0 obj
<>/Resources<>/ExtGState<>/Properties<>>>/Thumb 80 0 R/TrimBox[0.0 0.0 612.0 792.0]/Type/Page>>
endobj
76 0 obj
<>stream
+H‰ÜWË®$·
Ý÷WèZ£õØæ&ðÊ‚»È4òXÜ àà ŸsHªªºÇðÂFЋ.²T‡Ôá§?¿…Oß¿¥ð‡?¾…Û·Æ*¡çî|ø÷ßn
ÿº}z{Oáñ%$ýå¾< üÊ|¹ý…©ËjqÌÔC3JË#<>ßøêóí^ã*\wïqvì^â”rH=ŽQÃã¶åGTc³{N†{‹“våe
+רßìÍqŽŒ¿{åO›¾e?ÛŽYËOæm£ù{Üþ~ûËÅÙšðVÖµKl"ùÉÙ.-dX¿Ç(Ch]–ux&1Mº #zõAz·m-cª™sÐ܆Oò“<–ÆIÂ7=®Š7+ö‚-KŠ
æá¨Å°”á–—ØÕRb^°±Ö¡k§ÔPâèU7Jk[\+Ófm=涘jaNÞ^ý\|ÊʱMØSóŠ%Áék|¤Kðˆ,ë—øôÖv®aíŠ3Uú4rcxV\…V†þ§Î¢Cd+