├── source
├── CNAME
├── images
│ ├── fb.png
│ ├── loader.gif
│ ├── peso-digital-stroke.svg
│ └── peso-digital-stroke-grey.svg
├── fonts
│ ├── icomoon
│ │ ├── icomoon.eot
│ │ ├── icomoon.ttf
│ │ └── icomoon.woff
│ ├── font-awesome
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ └── fontawesome-webfont.woff2
│ └── bootstrap
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
├── stylesheets
│ ├── font-awesome
│ │ ├── _fixed-width.scss
│ │ ├── _screen-reader.scss
│ │ ├── _larger.scss
│ │ ├── _list.scss
│ │ ├── _core.scss
│ │ ├── font-awesome.scss
│ │ ├── _stacked.scss
│ │ ├── _bordered-pulled.scss
│ │ ├── _rotated-flipped.scss
│ │ ├── _path.scss
│ │ ├── _animated.scss
│ │ ├── _mixins.scss
│ │ └── _variables.scss
│ ├── site.css.scss
│ ├── nav.css.scss
│ ├── style.css.scss
│ └── icomoon.css
├── preguntas_frecuentes.html.haml
├── index.html.haml
├── layouts
│ └── layout.haml
├── javascripts
│ ├── main.js
│ ├── respond.min.js
│ ├── jquery.countTo.js
│ ├── jquery.waypoints.min.js
│ ├── jquery.easing.1.3.js
│ ├── modernizr-2.6.2.min.js
│ └── bootstrap.min.js
├── plan.html.haml
└── pitch.html.haml
├── Rakefile
├── .gitignore
├── Gemfile
├── README.md
├── data
├── adopcion.yml
├── motivacion.yml
├── testimonios.yml
├── funcionamiento.yml
└── preguntas_frecuentes.yml
├── config.rb
├── LICENSE.txt
└── Gemfile.lock
/source/CNAME:
--------------------------------------------------------------------------------
1 | pesodigital.info
2 |
--------------------------------------------------------------------------------
/Rakefile:
--------------------------------------------------------------------------------
1 | require "middleman-gh-pages"
2 |
--------------------------------------------------------------------------------
/source/images/fb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ramiro/pesodigital_website/master/source/images/fb.png
--------------------------------------------------------------------------------
/source/images/loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ramiro/pesodigital_website/master/source/images/loader.gif
--------------------------------------------------------------------------------
/source/fonts/icomoon/icomoon.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ramiro/pesodigital_website/master/source/fonts/icomoon/icomoon.eot
--------------------------------------------------------------------------------
/source/fonts/icomoon/icomoon.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ramiro/pesodigital_website/master/source/fonts/icomoon/icomoon.ttf
--------------------------------------------------------------------------------
/source/fonts/icomoon/icomoon.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ramiro/pesodigital_website/master/source/fonts/icomoon/icomoon.woff
--------------------------------------------------------------------------------
/source/fonts/font-awesome/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ramiro/pesodigital_website/master/source/fonts/font-awesome/FontAwesome.otf
--------------------------------------------------------------------------------
/source/fonts/font-awesome/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ramiro/pesodigital_website/master/source/fonts/font-awesome/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/source/fonts/font-awesome/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ramiro/pesodigital_website/master/source/fonts/font-awesome/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/source/fonts/font-awesome/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ramiro/pesodigital_website/master/source/fonts/font-awesome/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/source/fonts/font-awesome/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ramiro/pesodigital_website/master/source/fonts/font-awesome/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/source/fonts/bootstrap/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ramiro/pesodigital_website/master/source/fonts/bootstrap/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/source/fonts/bootstrap/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ramiro/pesodigital_website/master/source/fonts/bootstrap/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/source/fonts/bootstrap/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ramiro/pesodigital_website/master/source/fonts/bootstrap/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/source/fonts/bootstrap/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ramiro/pesodigital_website/master/source/fonts/bootstrap/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/source/stylesheets/font-awesome/_fixed-width.scss:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .#{$fa-css-prefix}-fw {
4 | width: (18em / 14);
5 | text-align: center;
6 | }
7 |
--------------------------------------------------------------------------------
/source/stylesheets/font-awesome/_screen-reader.scss:
--------------------------------------------------------------------------------
1 | // Screen Readers
2 | // -------------------------
3 |
4 | .sr-only { @include sr-only(); }
5 | .sr-only-focusable { @include sr-only-focusable(); }
6 |
--------------------------------------------------------------------------------
/source/stylesheets/site.css.scss:
--------------------------------------------------------------------------------
1 | @charset "utf-8";
2 | @import "animate.css";
3 | @import "icomoon.css";
4 | @import "bootstrap.css";
5 | @import "nav.css";
6 | @import "style.css";
7 | @import "font-awesome/font-awesome.scss";
8 |
--------------------------------------------------------------------------------
/source/stylesheets/font-awesome/_larger.scss:
--------------------------------------------------------------------------------
1 | // Icon Sizes
2 | // -------------------------
3 |
4 | /* makes the font 33% larger relative to the icon container */
5 | .#{$fa-css-prefix}-lg {
6 | font-size: (4em / 3);
7 | line-height: (3em / 4);
8 | vertical-align: -15%;
9 | }
10 | .#{$fa-css-prefix}-2x { font-size: 2em; }
11 | .#{$fa-css-prefix}-3x { font-size: 3em; }
12 | .#{$fa-css-prefix}-4x { font-size: 4em; }
13 | .#{$fa-css-prefix}-5x { font-size: 5em; }
14 |
--------------------------------------------------------------------------------
/source/stylesheets/font-awesome/_list.scss:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-ul {
5 | padding-left: 0;
6 | margin-left: $fa-li-width;
7 | list-style-type: none;
8 | > li { position: relative; }
9 | }
10 | .#{$fa-css-prefix}-li {
11 | position: absolute;
12 | left: -$fa-li-width;
13 | width: $fa-li-width;
14 | top: (2em / 14);
15 | text-align: center;
16 | &.#{$fa-css-prefix}-lg {
17 | left: -$fa-li-width + (4em / 14);
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # See http://help.github.com/ignore-files/ for more about ignoring files.
2 | #
3 | # If you find yourself ignoring temporary files generated by your text editor
4 | # or operating system, you probably want to add a global ignore instead:
5 | # git config --global core.excludesfile ~/.gitignore_global
6 |
7 | # Ignore bundler config
8 | /.bundle
9 |
10 | # Ignore the build directory
11 | /build
12 |
13 | # Ignore cache
14 | /.sass-cache
15 | /.cache
16 |
17 | # Ignore .DS_store file
18 | .DS_Store
19 |
--------------------------------------------------------------------------------
/source/stylesheets/font-awesome/_core.scss:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/Gemfile:
--------------------------------------------------------------------------------
1 | # If you do not have OpenSSL installed, change
2 | # the following line to use 'http://'
3 | source 'https://rubygems.org'
4 |
5 | # For faster file watcher updates on Windows:
6 | gem 'wdm', '~> 0.1.0', platforms: [:mswin, :mingw]
7 |
8 | # Windows does not come with time zone data
9 | gem 'tzinfo-data', platforms: [:mswin, :mingw, :jruby]
10 |
11 | # Middleman Gems
12 | gem 'middleman', '>= 4.0.0'
13 | gem 'middleman-livereload'
14 | gem 'middleman-compass', '>= 4.0.0'
15 | gem 'middleman-gh-pages'
16 | gem 'font-awesome-middleman'
17 |
18 |
--------------------------------------------------------------------------------
/source/stylesheets/font-awesome/font-awesome.scss:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */
5 |
6 | @import "variables";
7 | @import "mixins";
8 | @import "path";
9 | @import "core";
10 | @import "larger";
11 | @import "fixed-width";
12 | @import "list";
13 | @import "bordered-pulled";
14 | @import "animated";
15 | @import "rotated-flipped";
16 | @import "stacked";
17 | @import "icons";
18 | @import "screen-reader";
19 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Peso Digital
2 | El source de http://pesodigital.info
3 |
4 | Es software libre y se presta atención a todos los pull requests.
5 |
6 | Es un sitio estático escrito en ruby, haml y sass, usando https://middlemanapp.com/
7 |
8 | Para clonarlo y compilar localmente hace falta tener ruby instalado
9 |
10 | ```sh
11 | $ gem install bundler # Por si todavía no tenés bundler
12 | $ git clone https://github.com/bitex-la/pesodigital_website.git
13 | $ cd pesodigital_website
14 | $ bundle install
15 | $ middleman server
16 | ```
17 |
18 | El servidor de desarrollo corre en http://localhost:4567/
19 |
--------------------------------------------------------------------------------
/source/stylesheets/font-awesome/_stacked.scss:
--------------------------------------------------------------------------------
1 | // Stacked Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-stack {
5 | position: relative;
6 | display: inline-block;
7 | width: 2em;
8 | height: 2em;
9 | line-height: 2em;
10 | vertical-align: middle;
11 | }
12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x {
13 | position: absolute;
14 | left: 0;
15 | width: 100%;
16 | text-align: center;
17 | }
18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; }
19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; }
20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; }
21 |
--------------------------------------------------------------------------------
/source/stylesheets/font-awesome/_bordered-pulled.scss:
--------------------------------------------------------------------------------
1 | // Bordered & Pulled
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-border {
5 | padding: .2em .25em .15em;
6 | border: solid .08em $fa-border-color;
7 | border-radius: .1em;
8 | }
9 |
10 | .#{$fa-css-prefix}-pull-left { float: left; }
11 | .#{$fa-css-prefix}-pull-right { float: right; }
12 |
13 | .#{$fa-css-prefix} {
14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; }
15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; }
16 | }
17 |
18 | /* Deprecated as of 4.4.0 */
19 | .pull-right { float: right; }
20 | .pull-left { float: left; }
21 |
22 | .#{$fa-css-prefix} {
23 | &.pull-left { margin-right: .3em; }
24 | &.pull-right { margin-left: .3em; }
25 | }
26 |
--------------------------------------------------------------------------------
/source/stylesheets/font-awesome/_rotated-flipped.scss:
--------------------------------------------------------------------------------
1 | // Rotated & Flipped Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
7 |
8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
10 |
11 | // Hook for IE8-9
12 | // -------------------------
13 |
14 | :root .#{$fa-css-prefix}-rotate-90,
15 | :root .#{$fa-css-prefix}-rotate-180,
16 | :root .#{$fa-css-prefix}-rotate-270,
17 | :root .#{$fa-css-prefix}-flip-horizontal,
18 | :root .#{$fa-css-prefix}-flip-vertical {
19 | filter: none;
20 | }
21 |
--------------------------------------------------------------------------------
/source/stylesheets/font-awesome/_path.scss:
--------------------------------------------------------------------------------
1 | /* FONT PATH
2 | * -------------------------- */
3 |
4 | @font-face {
5 | font-family: 'FontAwesome';
6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}');
7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'),
8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'),
9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'),
10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'),
11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg');
12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
13 | font-weight: normal;
14 | font-style: normal;
15 | }
16 |
--------------------------------------------------------------------------------
/source/stylesheets/font-awesome/_animated.scss:
--------------------------------------------------------------------------------
1 | // Spinning Icons
2 | // --------------------------
3 |
4 | .#{$fa-css-prefix}-spin {
5 | -webkit-animation: fa-spin 2s infinite linear;
6 | animation: fa-spin 2s infinite linear;
7 | }
8 |
9 | .#{$fa-css-prefix}-pulse {
10 | -webkit-animation: fa-spin 1s infinite steps(8);
11 | animation: fa-spin 1s infinite steps(8);
12 | }
13 |
14 | @-webkit-keyframes fa-spin {
15 | 0% {
16 | -webkit-transform: rotate(0deg);
17 | transform: rotate(0deg);
18 | }
19 | 100% {
20 | -webkit-transform: rotate(359deg);
21 | transform: rotate(359deg);
22 | }
23 | }
24 |
25 | @keyframes fa-spin {
26 | 0% {
27 | -webkit-transform: rotate(0deg);
28 | transform: rotate(0deg);
29 | }
30 | 100% {
31 | -webkit-transform: rotate(359deg);
32 | transform: rotate(359deg);
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/data/adopcion.yml:
--------------------------------------------------------------------------------
1 | - La conexión del peso digital con otras redes tiene que agregar valor y ofrecer poca resistencia a los usuarios.
2 |
3 | - Nuestro trabajo es identificar puntos de entrada y salida y armar circuitos de adopción posibles.
4 |
5 | - Entrar al peso digital desde una cuenta bancaria es barato. Entrar desde la red del dinero en efectivo es muy caro.
6 |
7 | - Una persona bancarizada accede a pesos digitales por su home banking.
8 |
9 | - Los usa en vez del efectivo para pagar en la verdulería, la feria o el café.
10 |
11 | - El verdulero, los utiliza directamente, o los cambia por efectivo en un supermercado con excedente de efectivo en sus cajas.
12 |
13 | - El supermercado además de deshacerse del problemático excedente de efectivo, usa los pesos digitales para pagar impuestos o proveedores.
14 |
15 | - El estado paga asignaciones y subsidios con esos pesos digitales, o los cambia por pesos bancarizados en la Cámara.
16 |
--------------------------------------------------------------------------------
/config.rb:
--------------------------------------------------------------------------------
1 | ###
2 | # Page options, layouts, aliases and proxies
3 | ###
4 |
5 | # Per-page layout changes:
6 | #
7 | # With no layout
8 | page '/*.xml', layout: false
9 | page '/*.json', layout: false
10 | page '/*.txt', layout: false
11 |
12 | # With alternative layout
13 | # page "/path/to/file.html", layout: :otherlayout
14 |
15 | # Proxy pages (http://middlemanapp.com/basics/dynamic-pages/)
16 | # proxy "/this-page-has-no-template.html", "/template-file.html", locals: {
17 | # which_fake_page: "Rendering a fake page with a local variable" }
18 |
19 | # General configuration
20 |
21 | # Reload the browser automatically whenever files change
22 | configure :development do
23 | activate :livereload
24 | end
25 |
26 | ###
27 | # Helpers
28 | ###
29 |
30 | # Methods defined in the helpers block are available in templates
31 | # helpers do
32 | # def some_helper
33 | # "Helping"
34 | # end
35 | # end
36 |
37 | # Build-specific configuration
38 | configure :build do
39 | # Minify CSS on build
40 | activate :minify_css
41 |
42 | # Minify Javascript on build
43 | activate :minify_javascript
44 | end
45 |
46 |
--------------------------------------------------------------------------------
/LICENSE.txt:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2017
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in
13 | all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE.
22 |
--------------------------------------------------------------------------------
/source/preguntas_frecuentes.html.haml:
--------------------------------------------------------------------------------
1 | ---
2 | title: Preguntas Frecuentes | Peso Digital
3 | ---
4 | .cover-card
5 | .container.animate-box
6 | .row
7 | .col-md-7
8 | .display-t
9 | .display-tc(data-animate-effect="fadeInUp")
10 | %h1 Preguntas Frecuentes de todas partes.
11 | %a.btn.btn-link(href="#personas")
12 | Personas
13 | %br.visible-sm.visible-xs
14 | %a.btn.btn-link(href="#sector_financiero")
15 | Sector financiero y FinTech
16 | %br
17 | %a.btn.btn-link(href="#estado")
18 | Estado y entes reguladores
19 | %br.visible-sm.visible-xs
20 | %a.btn.btn-link(href="#empresas")
21 | Empresas
22 |
23 | :ruby
24 | groups = {
25 | personas: 'Preguntan las Personas',
26 | sector_financiero: 'Pregunta el sector financiero y FinTech',
27 | estado: 'Pregunta el Estado',
28 | empresas: 'Preguntan las Empresas',
29 | }
30 |
31 | - groups.each_with_index do |tuple, group|
32 | - kind, title = tuple
33 | %div(id=kind class="card #{'first-card' if group == 0} #{"alternate-bg" if group.odd? }")
34 | .container.animate-box
35 | .row
36 | .col-md-8
37 | %h1= title
38 | - data.preguntas_frecuentes[kind].each do |p|
39 | %h2= p.q
40 | %p.answer= p.a
41 |
42 |
--------------------------------------------------------------------------------
/source/images/peso-digital-stroke.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
22 |
--------------------------------------------------------------------------------
/data/motivacion.yml:
--------------------------------------------------------------------------------
1 | - "Cuando usamos pesos argentinos lo hacemos en redes:
2 | La del banco, cajeros, la tarjeta de crédito, la SUBE,
3 | la billetera móvil. Incluso el efectivo es una red aparte."
4 |
5 | - "Pagar y cobrar dentro de una misma red suele ser fácil.
6 | Pero muchas veces tenemos que movernos de
7 | una red a otra. Si retiramos efectivo del cajero automático para
8 | recargar la SUBE en un kiosco estamos pasando por al menos 3 redes."
9 |
10 | - "Para que podamos movernos entre redes cada una tiene que entablar
11 | una relación especial con cada una de las otras, eso cuesta,
12 | por eso moverse entre redes suele ser caro y lento."
13 |
14 | - "Esto también afecta nuestras opciones como consumidores de créditos,
15 | procesamiento de pagos, billetera móvil, etc: Para una empresa nueva
16 | es difícil conectarse a las redes, y a veces las redes no quieren conectarse."
17 |
18 | - "La red más abierta es el efectivo, pero es la más insegura y cara de usar.
19 | La más segura, rápida y barata es la de los bancos, pero tiene una barrera
20 | de entrada muy alta."
21 |
22 | - "El Peso Digital es una red abierta universal como el efectivo, pero segura,
23 | rápida y barata como la de los bancos. Y si hace falta, se conecta a las
24 | redes existentes."
25 |
26 | - "Las empresas actuales y a las futuras pueden sumarse sin pedir permiso,
27 | y así mejorar el acceso al crédito, al ahorro, agilizar los pagos y lograr
28 | la inclusión financiera de todas las personas."
29 |
--------------------------------------------------------------------------------
/source/index.html.haml:
--------------------------------------------------------------------------------
1 | .cover-card
2 | .container.animate-box
3 | .row
4 | .col-md-7
5 | .display-t
6 | .display-tc
7 | %h1 Pesos Argentinos en una Red Abierta
8 | %a.btn.btn-link(href="#motivacion") Motivacion
9 | %br.visible-sm.visible-xs
10 | %a.btn.btn-link(href="#funcionamiento") Funcionamiento
11 | %br.visible-sm.visible-xs
12 | %a.btn.btn-link(href="#testimonios") Testimonios
13 |
14 | #motivacion.card.first-card
15 | .container.animate-box
16 | .row
17 | .col-md-8
18 | %h1 Motivación
19 | - data.motivacion.each do |m|
20 | %p= m
21 |
22 | #funcionamiento.card.alternate-bg
23 | .container.animate-box
24 | .row
25 | .col-md-8
26 | %h1 Funcionamiento
27 | - data.funcionamiento.each do |m|
28 | %p= m
29 |
30 | #testimonios.card
31 | .container.animate-box
32 | %h1 Testimonios
33 | - data.testimonios.each_slice(2).each_with_index do |pair, i|
34 | .row
35 | - pair.each_with_index do |t, j|
36 | - alt = (i.even? && j.even?) || (i.odd? && j.odd?)
37 | .col-md-6
38 | %div(class="testimonial #{"alternate" if alt}")
39 | %blockquote
40 | %p “#{ t.text }”
41 | %p.author
42 | %a{href: t.link, target: '_blank'}
43 | %img{src: t.image }
44 | %cite —#{ t.author }
45 |
46 |
--------------------------------------------------------------------------------
/source/images/peso-digital-stroke-grey.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
23 |
--------------------------------------------------------------------------------
/source/stylesheets/font-awesome/_mixins.scss:
--------------------------------------------------------------------------------
1 | // Mixins
2 | // --------------------------
3 |
4 | @mixin fa-icon() {
5 | display: inline-block;
6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 |
12 | }
13 |
14 | @mixin fa-icon-rotate($degrees, $rotation) {
15 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})";
16 | -webkit-transform: rotate($degrees);
17 | -ms-transform: rotate($degrees);
18 | transform: rotate($degrees);
19 | }
20 |
21 | @mixin fa-icon-flip($horiz, $vert, $rotation) {
22 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)";
23 | -webkit-transform: scale($horiz, $vert);
24 | -ms-transform: scale($horiz, $vert);
25 | transform: scale($horiz, $vert);
26 | }
27 |
28 |
29 | // Only display content to screen readers. A la Bootstrap 4.
30 | //
31 | // See: http://a11yproject.com/posts/how-to-hide-content/
32 |
33 | @mixin sr-only {
34 | position: absolute;
35 | width: 1px;
36 | height: 1px;
37 | padding: 0;
38 | margin: -1px;
39 | overflow: hidden;
40 | clip: rect(0,0,0,0);
41 | border: 0;
42 | }
43 |
44 | // Use in conjunction with .sr-only to only display content when it's focused.
45 | //
46 | // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
47 | //
48 | // Credit: HTML5 Boilerplate
49 |
50 | @mixin sr-only-focusable {
51 | &:active,
52 | &:focus {
53 | position: static;
54 | width: auto;
55 | height: auto;
56 | margin: 0;
57 | overflow: visible;
58 | clip: auto;
59 | }
60 | }
61 |
--------------------------------------------------------------------------------
/data/testimonios.yml:
--------------------------------------------------------------------------------
1 | - text: El respeto a nuestra privacidad propio del dinero en efectivo
2 | se combina con la comodidad de lo intangible en el peso digital.
3 | Se trata de una útil capa descentralizada sobre lo que por naturaleza
4 | siempre tendrá una administración central.
5 | author: Franco Amati - Cofundador de EspacioBitcoin
6 | image: https://pbs.twimg.com/profile_images/747981575254589440/5I0vTPoU_200x200.jpg
7 | link: https://www.facebook.com/espaciobitcoin/
8 |
9 | - text: El peso digital es un ejemplo ideal de uso de tecnología blockchain
10 | y de como la misma logra desintermediar entre partes, ofreciendo un
11 | protocolo abierto para que cualquier emprendedor FinTech pueda desarrollar
12 | soluciones sin tener que preocuparse por la interconexión con el sistema
13 | financiero tradicional.
14 | author: Gonzalo Blousson - CEO de Signatura
15 | image: https://pbs.twimg.com/profile_images/2702610879/d99355baf215cf7c88b911aad73cbff1_200x200.jpeg
16 | link: https://signatura.co
17 |
18 | - text: El Peso Digital nos ayudaría a bajar costos y tiempos de procesamiento
19 | para nuestro servicio de remesas internacionales. También nos daría más
20 | herramientas para la prevención de lavado de dinero, rechazando menos clientes.
21 | author: Eduardo del Pino - CEO de Bitex
22 | image: https://media.licdn.com/mpr/mpr/shrinknp_400_400/p/6/005/090/3ec/350a3c4.jpg
23 | link: https://bitex.la
24 |
25 | - text: Los productores agroecológicos no se acercan a los bancos y aceptan sólo
26 | efectivo. El Peso Digital tiene la velocidad, el bajo costo y la seguridad
27 | como para que lo acepten. Así no tendríamos que hacer la logística con
28 | efectivo encima.
29 | author: Tierra Buena Delivery
30 | image: https://scontent-grt2-1.xx.fbcdn.net/v/t1.0-1/c19.2.196.196/p200x200/12886_1059926407370319_4480030600085336668_n.jpg?oh=cb73c2ad984cf374bb27cf1f2dc10179&oe=58DD3981
31 | link: http://tierrabuenadelivery.com
32 |
--------------------------------------------------------------------------------
/data/funcionamiento.yml:
--------------------------------------------------------------------------------
1 | - Los pesos digitales son emitidos y respaldados de forma centralizada por la "Cámara del Peso Digital".
2 |
3 | - La cámara realiza la conversión de pesos en cualquier red, a pesos digitales y vice-versa.
4 |
5 | - Esto permite a las personas "entrar" y "salir" de la red, por ser un movimiento entre redes tiene un costo asociado.
6 |
7 | - Los pesos recibidos por la cámara al entrar a la red son el respaldo de los nuevos pesos digitales emitidos.
8 |
9 | - Los pesos digitales circulan en distintas redes informáticas públicas, abiertas y decentralizadas, llamadas Blockchains.
10 |
11 | - Existen muchos Blockchains capaces de alojar pesos digitales, similares en su función pero cada uno con detalles técnicos que lo hacen único.
12 |
13 | - Un Blockchain almacena el saldo de cada cuenta de pesos digitales, también valida y registra los movimientos entre cuentas.
14 |
15 | - Además verifica que las transferencias tengan la firma digital del titular de la cuenta de origen, y que tambien tenga el dinero suficiente.
16 |
17 | - El Blockchain se encarga de que los registros estén replicados en copias múltiples, de forma descentralizada, siempre disponibles, y garantiza que sean inalterables.
18 |
19 | - Los Blockchains no son controlados por la cámara, que solo se limita a elegir en cuales emitir pesos digitales.
20 |
21 | - Las personas o empresas pueden autogestionar sus cuentas directamente en el Blockchain, sin conocimiento o autorización de la cámara.
22 |
23 | - Cada persona o empresa debe pagar al Blockchain para que procese sus transferencias. El pago puede ser indirecto.
24 |
25 | - El Blockchain no requiere acreditar ninguna identidad a la hora de crear una cuenta, y una misma persona o empresa puede tener muchas cuentas.
26 |
27 | - De hacer falta la cámara también convierte pesos digitales de un Blockchain a otro.
28 |
29 | - Es un sistema inconcluso, solo resuelve la hiperconexión financiera de personas y empresas. Los sistemas de crédito, los régimenes impositivos y regulaciones pueden abordarse externamente.
30 |
31 |
--------------------------------------------------------------------------------
/source/layouts/layout.haml:
--------------------------------------------------------------------------------
1 | :ruby
2 | urls = {
3 | "/" => "Introducción",
4 | "/plan.html" => "El Plan",
5 | "/preguntas_frecuentes.html" => "Preguntas Frecuentes"
6 | }
7 | !!!
8 | %html
9 | %head
10 | %meta(charset="utf-8")
11 | %meta(content="IE=edge" http-equiv="X-UA-Compatible")
12 |
13 |
14 | %title= current_page.data.title || "Peso Digital"
15 | %meta(name="viewport" content="width=device-width, initial-scale=1")
16 | %meta(name="description" content="Peso Digital. Pesos Argentinos en el Blockchain")
17 | %meta(name="keywords" content="pesos, blockchain, inclusion, fintech, financiera, argentinos")
18 | %meta(name="author" content="pesodigital")
19 |
20 | %meta(property="og:title" content="Peso Digital")
21 | %meta(property="og:image" content="http://www.pesodigital.info/images/fb.png")
22 | %meta(property="og:url" content="http://www.pesodigital.info")
23 | %meta(property="og:site_name" content="Peso Digital")
24 | %meta(property="og:description" content="Pesos Argentinos en el Blockchain")
25 | %meta(name="twitter:title" content="Peso Digital")
26 | %meta(name="twitter:image" content="http://www.pesodigital.info/images/fb.png")
27 | %meta(name="twitter:url" content="http://www.pesodigital.info")
28 | %meta(name="twitter:card" content="")
29 | %link(href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet")
30 |
31 | = stylesheet_link_tag :site
32 |
33 | = javascript_include_tag "modernizr-2.6.2.min"
34 |
35 |
38 |
39 | %body
40 | .loader
41 | #page
42 | %nav.nav(role='navigation')
43 | .container
44 | .row
45 | .col-xs-8.col-md-4.text-left
46 | #logo
47 | %a(href="/") Peso Digital.
48 | .col-xs-8.text-right.menu
49 | %ul
50 | - urls.each do |url, label|
51 | %li{class: ("active" if url == current_page.url)}
52 | %a{href: url}= label
53 | %li
54 | %a.btn.btn-info(href="mailto:peso-digital@googlegroups.com")
55 | %i.fa.fa-envelope-o
56 | %li
57 | %a.btn.btn-primary(href="https://twitter.com/intent/follow?screen_name=peso_digital" target="_blank")
58 | %i.fa.fa-twitter
59 | Sumate
60 |
61 | = yield
62 | .footer
63 | .container.animate-box
64 | .row
65 | .col-md-8.col-md-offset-2.text-center
66 | %h2 Peso Digital
67 | - urls.each do |url, label|
68 | - if url != current_page.url
69 | %a.btn.btn-default{href: url}= label
70 | %a.btn.btn-info(href="mailto:peso-digital@googlegroups.com")
71 | %i.fa.fa-envelope-o
72 | %a.btn.btn-primary(href="https://twitter.com/intent/follow?screen_name=peso_digital" target="_blank")
73 | %i.fa.fa-twitter
74 | Sumate
75 | .gototop.js-top
76 | %a.js-gotop(href="#")
77 | %i.icon-arrow-up
78 | = javascript_include_tag "jquery.min"
79 | = javascript_include_tag "jquery.easing.1.3"
80 | = javascript_include_tag "bootstrap.min"
81 | = javascript_include_tag "jquery.waypoints.min"
82 | = javascript_include_tag "jquery.countTo"
83 | = javascript_include_tag "main"
84 |
--------------------------------------------------------------------------------
/Gemfile.lock:
--------------------------------------------------------------------------------
1 | GEM
2 | remote: https://rubygems.org/
3 | specs:
4 | activesupport (5.0.1)
5 | concurrent-ruby (~> 1.0, >= 1.0.2)
6 | i18n (~> 0.7)
7 | minitest (~> 5.1)
8 | tzinfo (~> 1.1)
9 | addressable (2.5.0)
10 | public_suffix (~> 2.0, >= 2.0.2)
11 | backports (3.6.8)
12 | chunky_png (1.3.8)
13 | coffee-script (2.4.1)
14 | coffee-script-source
15 | execjs
16 | coffee-script-source (1.12.2)
17 | compass (1.0.3)
18 | chunky_png (~> 1.2)
19 | compass-core (~> 1.0.2)
20 | compass-import-once (~> 1.0.5)
21 | rb-fsevent (>= 0.9.3)
22 | rb-inotify (>= 0.9)
23 | sass (>= 3.3.13, < 3.5)
24 | compass-core (1.0.3)
25 | multi_json (~> 1.0)
26 | sass (>= 3.3.0, < 3.5)
27 | compass-import-once (1.0.5)
28 | sass (>= 3.2, < 3.5)
29 | concurrent-ruby (1.0.4)
30 | contracts (0.13.0)
31 | dotenv (2.2.0)
32 | em-websocket (0.5.1)
33 | eventmachine (>= 0.12.9)
34 | http_parser.rb (~> 0.6.0)
35 | erubis (2.7.0)
36 | eventmachine (1.2.2)
37 | execjs (2.7.0)
38 | fast_blank (1.0.0)
39 | fastimage (2.0.1)
40 | addressable (~> 2)
41 | ffi (1.9.17)
42 | font-awesome-middleman (4.2.1)
43 | middleman-core (>= 3.0.0)
44 | haml (4.0.7)
45 | tilt
46 | hamster (3.0.0)
47 | concurrent-ruby (~> 1.0)
48 | hashie (3.5.1)
49 | http_parser.rb (0.6.0)
50 | i18n (0.7.0)
51 | kramdown (1.13.2)
52 | listen (3.0.8)
53 | rb-fsevent (~> 0.9, >= 0.9.4)
54 | rb-inotify (~> 0.9, >= 0.9.7)
55 | memoist (0.15.0)
56 | middleman (4.2.1)
57 | coffee-script (~> 2.2)
58 | compass-import-once (= 1.0.5)
59 | haml (>= 4.0.5)
60 | kramdown (~> 1.2)
61 | middleman-cli (= 4.2.1)
62 | middleman-core (= 4.2.1)
63 | sass (>= 3.4.0, < 4.0)
64 | middleman-cli (4.2.1)
65 | thor (>= 0.17.0, < 2.0)
66 | middleman-compass (4.0.1)
67 | compass (>= 1.0.0, < 2.0.0)
68 | middleman-core (>= 4.0.0)
69 | middleman-core (4.2.1)
70 | activesupport (>= 4.2, < 5.1)
71 | addressable (~> 2.3)
72 | backports (~> 3.6)
73 | bundler (~> 1.1)
74 | contracts (~> 0.13.0)
75 | dotenv
76 | erubis
77 | execjs (~> 2.0)
78 | fast_blank
79 | fastimage (~> 2.0)
80 | hamster (~> 3.0)
81 | hashie (~> 3.4)
82 | i18n (~> 0.7.0)
83 | listen (~> 3.0.0)
84 | memoist (~> 0.14)
85 | padrino-helpers (~> 0.13.0)
86 | parallel
87 | rack (>= 1.4.5, < 3)
88 | sass (>= 3.4)
89 | servolux
90 | tilt (~> 2.0)
91 | uglifier (~> 3.0)
92 | middleman-gh-pages (0.3.1)
93 | rake (> 0.9.3)
94 | middleman-livereload (3.4.6)
95 | em-websocket (~> 0.5.1)
96 | middleman-core (>= 3.3)
97 | rack-livereload (~> 0.3.15)
98 | minitest (5.10.1)
99 | multi_json (1.12.1)
100 | padrino-helpers (0.13.3.3)
101 | i18n (~> 0.6, >= 0.6.7)
102 | padrino-support (= 0.13.3.3)
103 | tilt (>= 1.4.1, < 3)
104 | padrino-support (0.13.3.3)
105 | activesupport (>= 3.1)
106 | parallel (1.10.0)
107 | public_suffix (2.0.5)
108 | rack (2.0.1)
109 | rack-livereload (0.3.16)
110 | rack
111 | rake (12.0.0)
112 | rb-fsevent (0.9.8)
113 | rb-inotify (0.9.8)
114 | ffi (>= 0.5.0)
115 | sass (3.4.23)
116 | servolux (0.12.0)
117 | thor (0.19.4)
118 | thread_safe (0.3.5)
119 | tilt (2.0.6)
120 | tzinfo (1.2.2)
121 | thread_safe (~> 0.1)
122 | uglifier (3.0.4)
123 | execjs (>= 0.3.0, < 3)
124 |
125 | PLATFORMS
126 | ruby
127 |
128 | DEPENDENCIES
129 | font-awesome-middleman
130 | middleman (>= 4.0.0)
131 | middleman-compass (>= 4.0.0)
132 | middleman-gh-pages
133 | middleman-livereload
134 | tzinfo-data
135 | wdm (~> 0.1.0)
136 |
137 | BUNDLED WITH
138 | 1.13.6
139 |
--------------------------------------------------------------------------------
/source/javascripts/main.js:
--------------------------------------------------------------------------------
1 | ;(function () {
2 |
3 | 'use strict';
4 |
5 | var mobileMenuOutsideClick = function() {
6 | $(document).click(function (e) {
7 | var container = $("#offcanvas, .js-nav-toggle");
8 | if (!container.is(e.target) && container.has(e.target).length === 0) {
9 | if ( $('body').hasClass('offcanvas') ) {
10 | $('body').removeClass('offcanvas');
11 | $('.js-nav-toggle').removeClass('active');
12 | }
13 | }
14 | });
15 | };
16 |
17 | var scrollNavBar = function() {
18 | if ( $(window).scrollTop() > 50) {
19 | $('body').addClass('scrolled');
20 | $('.js-nav-toggle').removeClass('nav-white');
21 | } else {
22 | $('body').removeClass('scrolled');
23 | $('.js-nav-toggle').addClass('nav-white');
24 | }
25 |
26 | $(window).scroll(function(){
27 | if ( $(window).scrollTop() > 50) {
28 | $('body').addClass('scrolled');
29 | $('.js-nav-toggle').removeClass('nav-white');
30 | } else {
31 | $('body').removeClass('scrolled');
32 | $('.js-nav-toggle').addClass('nav-white');
33 | }
34 | });
35 | };
36 |
37 | var offcanvasMenu = function() {
38 | $('#page').prepend('
');
39 | $('#page').prepend('');
40 | var clone1 = $('.menu > ul').clone();
41 | $('#offcanvas').append(clone1);
42 |
43 | $(window).resize(function(){
44 | if ( $('body').hasClass('offcanvas') ) {
45 | $('body').removeClass('offcanvas');
46 | $('.js-nav-toggle').removeClass('active');
47 | }
48 | });
49 | };
50 |
51 | var burgerMenu = function() {
52 | $('body').on('click', '.js-nav-toggle', function(event){
53 | var $this = $(this);
54 | if ( $('body').hasClass('overflow offcanvas') ) {
55 | $('body').removeClass('overflow offcanvas');
56 | } else {
57 | $('body').addClass('overflow offcanvas');
58 | }
59 | $this.toggleClass('active');
60 | event.preventDefault();
61 | });
62 | };
63 |
64 | var contentWayPoint = function() {
65 | var i = 0;
66 | $('.animate-box').waypoint( function( direction ) {
67 |
68 | if( direction === 'down' && !$(this.element).hasClass('animated-fast') ) {
69 |
70 | i++;
71 |
72 | $(this.element).addClass('item-animate');
73 | setTimeout(function(){
74 |
75 | $('body .animate-box.item-animate').each(function(k){
76 | var el = $(this);
77 | setTimeout( function () {
78 | var effect = el.data('animate-effect');
79 | if ( effect === 'fadeIn') {
80 | el.addClass('fadeIn animated-fast');
81 | } else if ( effect === 'fadeInLeft') {
82 | el.addClass('fadeInLeft animated-fast');
83 | } else if ( effect === 'fadeInRight') {
84 | el.addClass('fadeInRight animated-fast');
85 | } else {
86 | el.addClass('fadeInUp animated-fast');
87 | }
88 |
89 | el.removeClass('item-animate');
90 | }, k * 50, 'easeInOutExpo' );
91 | });
92 |
93 | }, 100);
94 |
95 | }
96 |
97 | } , { offset: '85%' } );
98 | };
99 |
100 | var goToTop = function() {
101 | $('.js-gotop').on('click', function(event){
102 | event.preventDefault();
103 | $('html, body').animate({
104 | scrollTop: $('html').offset().top
105 | }, 500, 'easeInOutExpo');
106 | return false;
107 | });
108 |
109 | $(window).scroll(function(){
110 | var $win = $(window);
111 | if ($win.scrollTop() > 200) {
112 | $('.js-top').addClass('active');
113 | } else {
114 | $('.js-top').removeClass('active');
115 | }
116 | });
117 | };
118 |
119 | // Loading page
120 | var loaderPage = function() {
121 | $(".loader").fadeOut("slow");
122 | };
123 |
124 | $(function(){
125 | mobileMenuOutsideClick();
126 | scrollNavBar();
127 | offcanvasMenu();
128 | burgerMenu();
129 | contentWayPoint();
130 | goToTop();
131 | loaderPage();
132 | });
133 | }());
134 |
--------------------------------------------------------------------------------
/source/javascripts/respond.min.js:
--------------------------------------------------------------------------------
1 |
2 | /*! Respond.js v1.4.2: min/max-width media query polyfill * Copyright 2013 Scott Jehl
3 | * Licensed under https://github.com/scottjehl/Respond/blob/master/LICENSE-MIT
4 | * */
5 |
6 | !function(a){"use strict";a.matchMedia=a.matchMedia||function(a){var b,c=a.documentElement,d=c.firstElementChild||c.firstChild,e=a.createElement("body"),f=a.createElement("div");return f.id="mq-test-1",f.style.cssText="position:absolute;top:-100em",e.style.background="none",e.appendChild(f),function(a){return f.innerHTML='',c.insertBefore(e,d),b=42===f.offsetWidth,c.removeChild(e),{matches:b,media:a}}}(a.document)}(this),function(a){"use strict";function b(){u(!0)}var c={};a.respond=c,c.update=function(){};var d=[],e=function(){var b=!1;try{b=new a.XMLHttpRequest}catch(c){b=new a.ActiveXObject("Microsoft.XMLHTTP")}return function(){return b}}(),f=function(a,b){var c=e();c&&(c.open("GET",a,!0),c.onreadystatechange=function(){4!==c.readyState||200!==c.status&&304!==c.status||b(c.responseText)},4!==c.readyState&&c.send(null))};if(c.ajax=f,c.queue=d,c.regex={media:/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi,keyframes:/@(?:\-(?:o|moz|webkit)\-)?keyframes[^\{]+\{(?:[^\{\}]*\{[^\}\{]*\})+[^\}]*\}/gi,urls:/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,findStyles:/@media *([^\{]+)\{([\S\s]+?)$/,only:/(only\s+)?([a-zA-Z]+)\s?/,minw:/\([\s]*min\-width\s*:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/,maxw:/\([\s]*max\-width\s*:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/},c.mediaQueriesSupported=a.matchMedia&&null!==a.matchMedia("only all")&&a.matchMedia("only all").matches,!c.mediaQueriesSupported){var g,h,i,j=a.document,k=j.documentElement,l=[],m=[],n=[],o={},p=30,q=j.getElementsByTagName("head")[0]||k,r=j.getElementsByTagName("base")[0],s=q.getElementsByTagName("link"),t=function(){var a,b=j.createElement("div"),c=j.body,d=k.style.fontSize,e=c&&c.style.fontSize,f=!1;return b.style.cssText="position:absolute;font-size:1em;width:1em",c||(c=f=j.createElement("body"),c.style.background="none"),k.style.fontSize="100%",c.style.fontSize="100%",c.appendChild(b),f&&k.insertBefore(c,k.firstChild),a=b.offsetWidth,f?k.removeChild(c):c.removeChild(b),k.style.fontSize=d,e&&(c.style.fontSize=e),a=i=parseFloat(a)},u=function(b){var c="clientWidth",d=k[c],e="CSS1Compat"===j.compatMode&&d||j.body[c]||d,f={},o=s[s.length-1],r=(new Date).getTime();if(b&&g&&p>r-g)return a.clearTimeout(h),h=a.setTimeout(u,p),void 0;g=r;for(var v in l)if(l.hasOwnProperty(v)){var w=l[v],x=w.minw,y=w.maxw,z=null===x,A=null===y,B="em";x&&(x=parseFloat(x)*(x.indexOf(B)>-1?i||t():1)),y&&(y=parseFloat(y)*(y.indexOf(B)>-1?i||t():1)),w.hasquery&&(z&&A||!(z||e>=x)||!(A||y>=e))||(f[w.media]||(f[w.media]=[]),f[w.media].push(m[w.rules]))}for(var C in n)n.hasOwnProperty(C)&&n[C]&&n[C].parentNode===q&&q.removeChild(n[C]);n.length=0;for(var D in f)if(f.hasOwnProperty(D)){var E=j.createElement("style"),F=f[D].join("\n");E.type="text/css",E.media=D,q.insertBefore(E,o.nextSibling),E.styleSheet?E.styleSheet.cssText=F:E.appendChild(j.createTextNode(F)),n.push(E)}},v=function(a,b,d){var e=a.replace(c.regex.keyframes,"").match(c.regex.media),f=e&&e.length||0;b=b.substring(0,b.lastIndexOf("/"));var g=function(a){return a.replace(c.regex.urls,"$1"+b+"$2$3")},h=!f&&d;b.length&&(b+="/"),h&&(f=1);for(var i=0;f>i;i++){var j,k,n,o;h?(j=d,m.push(g(a))):(j=e[i].match(c.regex.findStyles)&&RegExp.$1,m.push(RegExp.$2&&g(RegExp.$2))),n=j.split(","),o=n.length;for(var p=0;o>p;p++)k=n[p],l.push({media:k.split("(")[0].match(c.regex.only)&&RegExp.$2||"all",rules:m.length-1,hasquery:k.indexOf("(")>-1,minw:k.match(c.regex.minw)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:k.match(c.regex.maxw)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}u()},w=function(){if(d.length){var b=d.shift();f(b.href,function(c){v(c,b.href,b.media),o[b.href]=!0,a.setTimeout(function(){w()},0)})}},x=function(){for(var b=0;b= this.loops) {
70 | clearInterval(this.interval);
71 | this.value = this.options.to;
72 |
73 | if (typeof(this.options.onComplete) == 'function') {
74 | this.options.onComplete.call(this.$element, this.value);
75 | }
76 | }
77 | };
78 |
79 | CountTo.prototype.render = function () {
80 | var formattedValue = this.options.formatter.call(this.$element, this.value, this.options);
81 | this.$element.text(formattedValue);
82 | };
83 |
84 | CountTo.prototype.restart = function () {
85 | this.stop();
86 | this.init();
87 | this.start();
88 | };
89 |
90 | CountTo.prototype.start = function () {
91 | this.stop();
92 | this.render();
93 | this.interval = setInterval(this.update.bind(this), this.options.refreshInterval);
94 | };
95 |
96 | CountTo.prototype.stop = function () {
97 | if (this.interval) {
98 | clearInterval(this.interval);
99 | }
100 | };
101 |
102 | CountTo.prototype.toggle = function () {
103 | if (this.interval) {
104 | this.stop();
105 | } else {
106 | this.start();
107 | }
108 | };
109 |
110 | function formatter(value, options) {
111 | return value.toFixed(options.decimals);
112 | }
113 |
114 | $.fn.countTo = function (option) {
115 | return this.each(function () {
116 | var $this = $(this);
117 | var data = $this.data('countTo');
118 | var init = !data || typeof(option) === 'object';
119 | var options = typeof(option) === 'object' ? option : {};
120 | var method = typeof(option) === 'string' ? option : 'start';
121 |
122 | if (init) {
123 | if (data) data.stop();
124 | $this.data('countTo', data = new CountTo(this, options));
125 | }
126 |
127 | data[method].call(data);
128 | });
129 | };
130 | }));
--------------------------------------------------------------------------------
/source/plan.html.haml:
--------------------------------------------------------------------------------
1 | ---
2 | title: El Plan | Peso Digital
3 | ---
4 | .cover-card
5 | .container.animate-box
6 | .row
7 | .col-md-7
8 | .display-t
9 | .display-tc
10 | %h1 De cero a Peso Digital
11 | %a.btn.btn-link(href="/plan.html#difusion") Difusión
12 | %br.visible-sm.visible-xs
13 | %a.btn.btn-link(href="/plan.html#comunidad") Comunidad
14 | %br
15 | %a.btn.btn-link(href="/plan.html#adopcion") Adopción
16 | %br.visible-sm.visible-xs
17 | %a.btn.btn-link(href="/plan.html#implementacion") Implementacion
18 |
19 | #difusion.card.first-card
20 | .container.animate-box
21 | .row
22 | .col-md-8
23 | %h1 Difusión
24 | %p
25 | Queremos contarle la idea a empresas y personas para recibir
26 | sugerencias y críticas. Idealmente nos pueden ayudar a
27 | dimensionar el impacto tangible:
28 | %br
29 | %em.text-disabled "Me ahorraría 400.000.000 al año".
30 | %p
31 | Este sitio es la principal herramienta de difusión.
32 | Podés hacer sugerencias y proponer correciones
33 | %a(href="https://github.com/bitex-la/pesodigital_website/issues")
34 | creando un "issue" en la plataforma GitHub,
35 |
36 |
37 | #comunidad.card.alternate-bg
38 | .container.animate-box
39 | .row
40 | .col-md-8
41 | %h1 Comunidad
42 | %p
43 | Peso digital es atractivo para todo tipo de gente,
44 | dispuesta a colaborar para hacerlo realidad.
45 | Tenemos una lista de correo para hacer brainstorming,
46 | responder preguntas, comentar novedades y coordinar reuniones.
47 | Suscribirte escribiendo a
48 | %a(href="mailto:peso-digital+subscribe@googlegroups.com")
49 | peso-digital+subscribe@googlegroups.com.
50 |
51 | #adopcion.card
52 | .container.animate-box
53 | .row
54 | .col-md-8
55 | %h1 Adopción
56 | - data.adopcion.each do |a|
57 | %p= a
58 |
59 | #implementacion.card.alternate-bg
60 | .container.animate-box
61 | .row
62 | .col-md-8
63 | %h1 Implementación
64 | %p
65 | El objetivo de la primera prueba es practicar el rol de Cámara
66 | de Peso Digital y delinear los requisitos para la emisión y uso
67 | de los en los distintos blockchains.
68 |
69 | %p
70 | La camara emite pesos digitales en el blockchain de Bitcoin
71 | utilizando el protocolo Open Assets.
72 |
73 | %p
74 | El activo emitido
75 | %a(href="https://www.coinprism.info/asset/AHs7umECsaB3mnCFErno9D5Uzf8RnPk7iJ")
76 | puede verse aquí.
77 |
78 | Para recibirlos solo necesitas crear una
79 | %a(href="https://www.coinprism.com/")
80 | billetera en CoinPrism.
81 |
82 | %p
83 | Para enviar los Pesos Digitales que tengas vas a necesitar
84 | tener bitcoins para pagarle al Blockchain por procesar
85 | tu transferencia. Estamos trabajando en que puedas pagarle
86 | al Blockchain en Pesos Digitales en vez de Bitcoin.
87 |
88 | %p
89 | La cámara conecta la red bancaria con la de Peso Digital utilizando
90 | una cuenta bancaria propia.
91 |
92 | %p
93 | Para entrar a la red de Peso Digital haces una transferencia
94 | bancaria a la cuenta de la Cámara, y además indicas tu dirección
95 | de Peso Digital como aparece en la billetera.
96 |
97 | %p
98 | La cámara emite nuevos pesos digitales y los envía a tu dirección.
99 | Los pesos bancarizados que enviaste quedan quietos como respaldo
100 | de la nueva emisión.
101 |
102 | %p
103 | También podes entrar a la red "comprando" pesos digitales a
104 | alguien que ya tenga. En ese caso no hay participacion de la cámara.
105 |
106 | %p
107 | Para salir de la red y volver al sistema bancario envias pesos
108 | digitales a una dirección especial de la cámara e indicás los
109 | datos de tu cuenta bancaria.
110 |
111 | %p
112 | La cámara destruye los pesos digitales que devolviste, y te hace
113 | una transferencia bancaria por ese monto.
114 |
115 | %p
116 | También podés salir de la red "vendiendo" pesos digitales a
117 | alguien que los quiera, sin participacion de la cámara.
118 |
119 | %p
120 | Para evitar la responsabilidad en temas impositivos y regulatorios,
121 | durante esta prueba la cámara no emite más de 500 pesos digitales por
122 | mes por persona, y también puede negarse a emitir.
123 |
124 | %p
125 | Los datos de cuenta y dirección para entrar y salir se pueden pedir
126 | %a(href="mailto:peso-digital@googlegroups.com")
127 | en la lista de correo.
128 |
--------------------------------------------------------------------------------
/source/stylesheets/nav.css.scss:
--------------------------------------------------------------------------------
1 | @import 'compass/css3';
2 |
3 | .nav {
4 | position: fixed;
5 | top: 0;
6 | margin: 0;
7 | padding: 0;
8 | width: 100%;
9 | padding: 25px 0;
10 | z-index: 1001;
11 | background: transparent;
12 | @include transition-duration(0.5s);
13 |
14 | @media screen and (max-width: 768px) { padding: 25px 0; }
15 |
16 | #logo {
17 | font-size: 24px;
18 | padding: 0;
19 | margin: 8px 0 0 0;
20 | text-transform: uppercase;
21 | font-weight: bold;
22 |
23 | @media screen and (max-width: 768px) { margin-bottom: 0; }
24 |
25 | a > span { color: #ffc933; }
26 | }
27 |
28 | a {
29 | padding: 5px 10px 5px 0;
30 | color: #fff;
31 | }
32 |
33 | @media screen and (max-width: 992px) {
34 | .menu { display: none; }
35 | }
36 |
37 | ul {
38 | padding: 0;
39 | margin: 0;
40 |
41 | li {
42 | padding: 0;
43 | margin: 0;
44 | list-style: none;
45 | display: inline;
46 |
47 | &.active{
48 | a{ color: white; }
49 | }
50 |
51 | a {
52 | font-size: 16px;
53 | padding: 10px 10px;
54 | color: rgba(255, 255, 255, 0.5);
55 | @include transition-duration(0.5s);
56 |
57 | &:hover, &:focus, &:active { color: white; }
58 | }
59 | }
60 | }
61 | }
62 |
63 | .nav-toggle {
64 | position: fixed;
65 | right: 0px;
66 | z-index: 21;
67 | display: block;
68 | margin: 0 auto;
69 | display: none;
70 | height: 44px;
71 | width: 44px;
72 | z-index: 2001;
73 | border-bottom: none !important;
74 | cursor: pointer;
75 |
76 | @media screen and (max-width: 992px) { display: block; }
77 |
78 | &:hover, &:focus, &:active {
79 | outline: none;
80 | border-bottom: none !important;
81 | }
82 |
83 | &:hover i{
84 | &::before { top: -10px; }
85 | &::after { bottom: -10px; }
86 | }
87 |
88 | &.nav-white > i{
89 | color: #fff;
90 | background: #fff;
91 | &::before, &::after { background: #fff; }
92 | }
93 |
94 | &.active {
95 | i { background: transparent; }
96 |
97 | &::before, &::after { background: #444; }
98 |
99 | i::before {
100 | top: 0;
101 | @include transform(rotateZ(45deg));
102 | }
103 |
104 | i::after {
105 | bottom: 0;
106 | @include transform(rotateZ(-45deg));
107 | }
108 | }
109 |
110 | i {
111 | position: relative;
112 | display: inline-block;
113 | width: 25px;
114 | height: 2px;
115 | color: #252525;
116 | font: bold 14px/.4 Helvetica;
117 | text-transform: uppercase;
118 | text-indent: -55px;
119 | background: #252525;
120 | transition: all .2s ease-out;
121 |
122 | &::before, &::after {
123 | content: '';
124 | width: 25px;
125 | height: 2px;
126 | background: #252525;
127 | position: absolute;
128 | left: 0;
129 | transition: all .2s ease-out;
130 | }
131 |
132 | &::before { top: -7px; }
133 |
134 | &::after { bottom: -7px; }
135 | }
136 | }
137 |
138 | .scrolled {
139 | .nav {
140 | background: #fff;
141 | padding: 10px 0;
142 | @include box-shadow(0px 5px 7px -7px rgba(0, 0, 0, 0.15));
143 | a { color: #000; }
144 | a.btn { color: white; }
145 |
146 | ul li {
147 | a:hover, a:focus, a:active { color: #02add3 !important; }
148 | &.active a { color: #02add3; }
149 | }
150 | }
151 |
152 | .nav-toggle{ margin-top: -5px; }
153 | }
154 |
155 | #offcanvas {
156 | position: fixed;
157 | display: none;
158 | z-index: 1901;
159 | width: 10em;
160 | top: 0;
161 | right: 0;
162 | top: 0;
163 | bottom: 0;
164 | padding: 1em;
165 | overflow-y: auto;
166 | background-color: rgba(7, 173, 211, 1);
167 | @include transform(translateX(500px));
168 | @include transition-duration(0.5s);
169 |
170 | @media screen and (max-width: 768px) { display: block; }
171 |
172 | a {
173 | color: rgba(255, 255, 255, 0.5);
174 | font-size: 0.6em;
175 | &:hover { color: rgba(255, 255, 255, 0.8); }
176 | }
177 |
178 | ul {
179 | padding: 0;
180 | margin: 0;
181 |
182 | li {
183 | padding: 0;
184 | margin: 0;
185 | list-style: none;
186 |
187 | &.active a{ color: white; }
188 | }
189 |
190 | .btn{
191 | margin-top: 20px;
192 | color: white;
193 | }
194 | }
195 | }
196 |
197 | body.offcanvas #offcanvas { @include transform(translateX(0px)); }
198 |
199 | .gototop {
200 | position: fixed;
201 | bottom: 20px;
202 | right: 20px;
203 | z-index: 999;
204 | opacity: 0;
205 | visibility: hidden;
206 | @include transition-duration(0.5s);
207 |
208 | &.active{
209 | opacity: 1;
210 | visibility: visible;
211 | }
212 |
213 | a {
214 | width: 50px;
215 | height: 50px;
216 | display: table;
217 | background: rgba(0, 0, 0, 0.5);
218 | color: #fff;
219 | text-align: center;
220 | @include border-radius(25px);
221 |
222 | &:hover, &:active, &:focus {
223 | text-decoration: none;
224 | outline: none;
225 | }
226 |
227 | i {
228 | height: 50px;
229 | display: table-cell;
230 | vertical-align: middle;
231 | }
232 | }
233 | }
234 |
--------------------------------------------------------------------------------
/source/stylesheets/style.css.scss:
--------------------------------------------------------------------------------
1 | @import 'compass/css3';
2 | @import 'compass/css3/selection';
3 |
4 | @font-face {
5 | font-family: 'icomoon';
6 | src: url("../fonts/icomoon/icomoon.eot?srf3rx");
7 | src: url("../fonts/icomoon/icomoon.eot?srf3rx#iefix") format("embedded-opentype"), url("../fonts/icomoon/icomoon.ttf?srf3rx") format("truetype"), url("../fonts/icomoon/icomoon.woff?srf3rx") format("woff"), url("../fonts/icomoon/icomoon.svg?srf3rx#icomoon") format("svg");
8 | font-weight: normal;
9 | font-style: normal;
10 | }
11 |
12 | * { @include selection(#ffc933, #fff); }
13 |
14 | html{ height: 100%; }
15 |
16 | body {
17 | font-size: 30px;
18 | line-height: 1.7;
19 | height: 100%;
20 | font-family: "Open Sans", Arial, sans-serif;
21 | font-weight: 400;
22 | color: #828282;
23 | background: #fff;
24 | }
25 |
26 | #page {
27 | height: 100%;
28 | overflow-x: visible;
29 | @include transition-duration(0.5s);
30 | }
31 |
32 | a {
33 | color: #07add3;
34 | @include transition-duration(0.5s);
35 | }
36 |
37 | a:hover, a:active, a:focus {
38 | color: #07add3;
39 | outline: none;
40 | text-decoration: none;
41 | }
42 |
43 | p { margin-bottom: 20px; }
44 |
45 | h1, h2, h3, h4, h5, h6, figure {
46 | color: #000;
47 | font-family: "Open Sans", Arial, sans-serif;
48 | font-weight: 400;
49 | margin: 0 0 20px 0;
50 | }
51 |
52 | .display-t, .display-tc {
53 | z-index: 9;
54 | height: 100%;
55 | display: table;
56 | width: 100%;
57 | }
58 |
59 | .display-tc {
60 | display: table-cell !important;
61 | vertical-align: middle;
62 | }
63 |
64 | .btn {
65 | padding: 8px 20px;
66 | margin-right: 4px;
67 | margin-bottom: 4px;
68 | font-family: "Open Sans", Arial, sans-serif;
69 | font-size: 16px;
70 | font-weight: 400;
71 | @include border-radius(4px);
72 | @include transition-duration(0.5s);
73 |
74 | &.btn-primary {
75 | background: #ffc933;
76 | color: #fff;
77 | border: 2px solid #ffc933;
78 | &:hover, &:active, &:focus {
79 | background: #ffc933 !important;
80 | border-color: #ffc933 !important;
81 | }
82 |
83 | &:hover {
84 | @include box-shadow(0px 14px 30px -15px rgba(0, 0, 0, 0.75) !important);
85 | }
86 | }
87 |
88 | &.btn-md{ padding: 8px 20px !important; }
89 |
90 | &.btn-lg{ padding: 18px 36px !important; }
91 |
92 | &:hover, &:active, &:focus {
93 | box-shadow: none !important;
94 | outline: none !important;
95 | text-decoration: none;
96 | @include box-shadow(0px 14px 30px -15px rgba(0, 0, 0, 0.75) !important);
97 | }
98 | }
99 |
100 | .loader {
101 | position: fixed;
102 | left: 0px;
103 | top: 0px;
104 | width: 100%;
105 | height: 100%;
106 | z-index: 9999;
107 | background: url(../images/loader.gif) center no-repeat #fff;
108 | }
109 |
110 | .js .animate-box {
111 | opacity: 0;
112 | }
113 |
114 | .cover-card {
115 | height: 100%;
116 | width: 100%;
117 | z-index: 0;
118 | background-position: center right;
119 | background-repeat: no-repeat;
120 | background-attachment: fixed;
121 | background-size: contain;
122 | background-color: rgba(7, 173, 211, 1);
123 | background-image: url(../images/peso-digital-stroke.svg);
124 |
125 | @media screen and (max-width: 768px) { font-size: 20px; }
126 | @media screen and (max-width: 992px) {
127 | background-size: 40%;
128 | background-position-y: bottom;
129 | background-position-x: 35%;
130 | }
131 |
132 | .container, .container .row, .container .row > div {
133 | height: 100%;
134 | }
135 |
136 | h1{
137 | font-size: 1.9em;
138 | margin: 0 0 0.5em 0;
139 | padding: 0;
140 | line-height: 1.3;
141 | font-family: "Open Sans", Arial, sans-serif;
142 | font-weight: 300;
143 | color: white;
144 | }
145 |
146 | .btn {
147 | padding: 0.35em 1.1em;
148 | color: #fff;
149 | font-size: 0.7em;
150 | text-transform: uppercase;
151 | @include border-radius(4px);
152 | border: 2px solid white;
153 | }
154 | }
155 |
156 | .card{
157 | clear: both;
158 | padding: 3em 0;
159 | @media screen and (max-width: 768px) { font-size: 25px; }
160 |
161 | &.alternate-bg {
162 | background: #F0F5F9;
163 | border-bottom: 1px solid #dae6ef;
164 | position: relative;
165 | z-index: 10;
166 | @include box-shadow(0px 5px 7px -7px rgba(0, 0, 0, 0.15));
167 | }
168 |
169 | &.first-card{
170 | background-position: center right;
171 | background-repeat: no-repeat;
172 | background-attachment: fixed;
173 | background-size: contain;
174 | background-image: url(../images/peso-digital-stroke-grey.svg);
175 |
176 | @media screen and (max-width: 992px) {
177 | background: none;
178 | }
179 | }
180 |
181 | h1 {
182 | font-size: 1.2em;
183 | margin-bottom: 1em;
184 | font-weight: 300;
185 | text-transform: uppercase;
186 | color: #aaa;
187 | @media screen and (max-width: 768px) {
188 | }
189 | }
190 |
191 | h2{
192 | font-size: 0.9em;
193 | font-weight: 200;
194 | color: #777;
195 | margin-bottom: 0.5em;
196 | }
197 |
198 | p {
199 | font-size: 0.7em;
200 | text-align: justify;
201 | color: #111;
202 |
203 | &.answer{
204 | color: #111;
205 | margin-bottom: 1.8em;
206 | }
207 | }
208 | }
209 |
210 | .footer {
211 | background: rgba(7, 173, 211, 1);
212 | padding: 2em 0;
213 | @media screen and (max-width: 768px) { font-size: 25px; }
214 |
215 | h2 {
216 | font-size: 1.2em;
217 | color: #fff;
218 | margin-bottom: 0.5em !important;
219 | font-weight: 300;
220 | }
221 |
222 | .btn {
223 | font-size: 0.6em;
224 | padding: 0.9em 1.4em;
225 | border: 2px solid white;
226 | color: #fff;
227 | text-transform: uppercase;
228 | font-weight: 400;
229 | background: transparent;
230 |
231 | &.btn-primary{
232 | border: none !important;
233 | background: #ffc933;
234 | &:hover {
235 | background: #ffc933 !important;
236 | @include box-shadow(0px 14px 20px -9px rgba(0, 0, 0, 0.75) !important);
237 | }
238 | }
239 | }
240 | }
241 |
242 | .testimonial {
243 | background: #F0F5F9;
244 | padding: 1.5em;
245 | position: relative;
246 | margin-bottom: 2em;
247 |
248 | &:after{
249 | position: absolute;
250 | left: 11%;
251 | bottom: -30px;
252 | display: block;
253 | width: 0;
254 | content: "";
255 | border-width: 30px 30px 0 0;
256 | border-style: solid;
257 | border-color: #F0F5F9 transparent;
258 | }
259 |
260 | &.alternate {
261 | background: #02add3;
262 |
263 | p {
264 | color: #fff;
265 | &.author cite { color: rgba(255, 255, 255, 0.7); }
266 | }
267 |
268 | &:after { border-color: #02add3 transparent; }
269 | }
270 |
271 | blockquote {
272 | border-left: none;
273 | padding: 0;
274 | margin: 0;
275 | }
276 |
277 | p, a{
278 | color: #666666;
279 | font-size: 18px;
280 | font-style: italic;
281 | line-height: 1.5;
282 | }
283 |
284 | p.author { color: #b3b3b3; }
285 |
286 | img{
287 | width: 60px;
288 | margin-right: 20px;
289 | @include border-radius(50%);
290 | }
291 |
292 | cite{
293 | font-style: normal;
294 | font-size: 0.9em;
295 | font-family: "Open Sans", Arial, sans-serif;
296 | }
297 | }
298 |
299 |
--------------------------------------------------------------------------------
/source/pitch.html.haml:
--------------------------------------------------------------------------------
1 | .cover-card
2 | .container.animate-box
3 | .row
4 | .col-md-7
5 | .display-t
6 | .display-tc
7 | %h1 Pesos Argentinos en una Red Abierta
8 | %a.btn.btn-link(href="#problema") Problema
9 | %br.visible-sm.visible-xs
10 | %a.btn.btn-link(href="#solucion") Solución
11 | %br
12 | %a.btn.btn-link(href="#que_tenemos") Que tenemos
13 | %br.visible-sm.visible-xs
14 | %a.btn.btn-link(href="#que_falta") Que falta
15 |
16 | #problema.card.first-card
17 | .container.animate-box
18 | .row
19 | .col-md-8
20 | %h1 Problema
21 | %p
22 | El sistema actual de bancos y redes privativas excluye a la mayor
23 | parte del mercado porque es caro, lento, y poco confiable.
24 | %p
25 | Seguimos usando efectivo que también es caro e inseguro. Lo sufren
26 | mas los grandes retails, los jornaleros que cobran efectivo y
27 | los turistas.
28 | %p
29 | Las fintechs quieren innovar y ayudar pero también son excluidas,
30 | o gastan el tiempo en conectarse a redes en vez de servir clientes.
31 |
32 | #solucion.card.alternate-bg
33 | .container.animate-box
34 | .row
35 | .col-md-8
36 | %h1 Solución
37 | %p
38 | Formemos una red abierta, a la que cualquier persona o fintech
39 | pueda sumarse sin pedir permiso ni riesgo de censura.
40 |
41 | %p
42 | El Bitcoin sirve para esto como red, pero el precio es
43 | muy volátil. Necesitamos que nuestra red esté denominada en pesos.
44 |
45 | %p
46 | Representar pesos es trivial para el blockchain de Bitcoin.
47 | La complejidad está en establecer un fiduciario que los respalde.
48 |
49 | #que_tenemos.card
50 | .container.animate-box
51 | .row
52 | .col-md-8
53 | %h1 Que tenemos, que hicimos.
54 | %p
55 | Tenemos el apoyo y conocimiento de la comunidad mundial de Bitcoin y
56 | Blockchain. Este es un tema de interés para todos ellos.
57 |
58 | %p
59 | En noviembre de 2016 presentamos formalmente Peso Digital al
60 | BCRA y al ministerio de producción.
61 | Validamos con otras fintechs, y grandes retails.
62 |
63 | %p
64 | Diagramamos el ecosistema, con los principales roles a tomar.
65 |
66 | %h2 Custodio
67 | %p
68 | Resguarda los pesos tradicionales que respaldan cada peso digital.
69 | De preferencia tiene una cuenta en BCRA para hacerlo.
70 | %p
71 | Recibe a su cuenta los cash-in y emite los cash-out a pedido del
72 | %strong Emisor.
73 |
74 | %p
75 | El rol de
76 | %strong Custodio
77 | es único y exclusivo. A ser tomado por el BCRA
78 | o una entidad financiera autorizada.
79 |
80 | %h2 Emisor
81 | %p
82 | Emite los pesos digitales en las distintas redes, garantizando que
83 | el circulante esté respaldado por el
84 | %strong Custodio.
85 | %p
86 | Habla solo con
87 | %strong usuarios de primera linea
88 | que son otras fintechs o entidades que agrupan
89 | cash-ins y cash-outs de
90 | %strong usuarios finales.
91 | %p
92 | Delega el cash-in y cash-out de pesos tradicionales al
93 | %strong Custodio.
94 | %p
95 | Este rol es único y exclusivo.
96 | El expertise de Bitex le permite tomarlo inmediatamente.
97 | Tambien es posible crear un joint venture entre empresas
98 | existentes. Esto ayudaría a dar transparencia y mayor seguridad,
99 | repartiendo el control de la emisión.
100 |
101 | %h2 Usuarios de primera linea
102 | %p
103 | Empresas que aceptan pesos digitales de alguna forma:
104 | Billeteras digitales, bancos, platafórmas de préstamos,
105 | pasarelas de pagos, remesadoras, o grandes retails.
106 |
107 | %p
108 | Organismos que trabajan en inclusión financiera,
109 | ofreciendo su propia billetera a no bancarizados, y
110 | personas físicas con voluntad de gestionar su propio clearing.
111 |
112 | %p
113 | Son el nexo entre el
114 | %strong Emisor
115 | y los
116 | %strong Usuarios finales
117 | para cash-in y cash-out.
118 |
119 | %p
120 | Se comunican con el
121 | %strong emisor
122 | para hacerse/deshacerse de los pesos
123 | digitales de los
124 | %strong usuarios finales.
125 | Pueden compensar internamente o entre ellos para reducir la
126 | interacción con el
127 | %strong emisor.
128 |
129 | %p
130 | Se conectan con distintas redes de pagos y entre ellos.
131 | Pueden hacer movimientos internos para los envios de dinero
132 | entre sus propios clientes, sin registrar en el blockchain.
133 |
134 | %p
135 | Este rol no es exclusivo, debe ser tomado por varias empresas,
136 | mientras más mejor. Ya tenemos muchos intereses alineados para
137 | sumarse lo antes posible, y la voluntad de otros tantos luego.
138 |
139 | %p
140 | Bitex toma este rol para su servicio de compra/venta de
141 | Bitcoin contra Pesos Argentinos.
142 |
143 | %h2 Usuarios finales
144 | %p
145 | Son las personas y comercios que tienen cuenta con uno o varios
146 | %strong usuarios de primera linea.
147 |
148 | %h2 Proveedores de software
149 | %p
150 | Son los equipos de desarrollo internos o externos que integran
151 | peso digital a los procesos de cada
152 | %strong usuario de primera linea.
153 |
154 | %p
155 | Cualquier desarrollador o empresa de software puede tomar este rol.
156 |
157 | %p
158 | Bitex está en proceso de liberar todo su software para minimizar la
159 | inversión y duplicación del trabajo de los desarrolladores.
160 |
161 | %h2 Blockchains
162 | %p
163 | Hay varios protocolos y blockchains de los cuales el
164 | %strong emisor
165 | y los
166 | %strong usuarios de primera linea
167 | puede elegir, en la medida que cumplan ciertos requisitos.
168 |
169 | %p
170 | Algunas opciones son:
171 | Colu, OpenAsset, Bitshares, Rootstock, Ethereum, Litecoin, Ripple.
172 | %br
173 | Actualmente tenemos una demo en
174 | %strong OpenAsset.
175 | %br
176 | Estamos trabajando en
177 | %strong Colu.
178 | %br
179 | %strong Rootstock
180 | está trabajando en ser excelente para peso digital.
181 |
182 | %h2 Comunicadores
183 | %p
184 | Informan de que se trata peso digital, invitan a personas y
185 | empresas a sumarse a la red via redes sociales, meetups, etc.
186 | %p
187 | Este rol es compartido por todos los interesados, incluida la
188 | comunidad Bitcoin local, además del grupo específico de
189 | Peso Digital.
190 |
191 | #que_falta.card.alternate-bg
192 | .container.animate-box
193 | .row
194 | .col-md-8
195 | %h1 Que falta
196 | %p
197 | Cubrir el rol de fiduciario, con una entidad financiera que pueda
198 | custodiar el respaldo de los pesos digitales.
199 | %p
200 | Una nueva entidad emisora, mas abierta, con participación de otros
201 | interesados del ecosistema.
202 | %p
203 | Terminar de abrir el software que permitiría al custodio,
204 | emisor y otros fintechs participar de la red de peso digital
205 | minimizando esfuerzos de desarrollo individuales.
206 |
207 |
--------------------------------------------------------------------------------
/source/javascripts/jquery.waypoints.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 | Waypoints - 4.0.0
3 | Copyright © 2011-2015 Caleb Troughton
4 | Licensed under the MIT license.
5 | https://github.com/imakewebthings/waypoints/blog/master/licenses.txt
6 | */
7 | !function(){"use strict";function t(o){if(!o)throw new Error("No options passed to Waypoint constructor");if(!o.element)throw new Error("No element option passed to Waypoint constructor");if(!o.handler)throw new Error("No handler option passed to Waypoint constructor");this.key="waypoint-"+e,this.options=t.Adapter.extend({},t.defaults,o),this.element=this.options.element,this.adapter=new t.Adapter(this.element),this.callback=o.handler,this.axis=this.options.horizontal?"horizontal":"vertical",this.enabled=this.options.enabled,this.triggerPoint=null,this.group=t.Group.findOrCreate({name:this.options.group,axis:this.axis}),this.context=t.Context.findOrCreateByElement(this.options.context),t.offsetAliases[this.options.offset]&&(this.options.offset=t.offsetAliases[this.options.offset]),this.group.add(this),this.context.add(this),i[this.key]=this,e+=1}var e=0,i={};t.prototype.queueTrigger=function(t){this.group.queueTrigger(this,t)},t.prototype.trigger=function(t){this.enabled&&this.callback&&this.callback.apply(this,t)},t.prototype.destroy=function(){this.context.remove(this),this.group.remove(this),delete i[this.key]},t.prototype.disable=function(){return this.enabled=!1,this},t.prototype.enable=function(){return this.context.refresh(),this.enabled=!0,this},t.prototype.next=function(){return this.group.next(this)},t.prototype.previous=function(){return this.group.previous(this)},t.invokeAll=function(t){var e=[];for(var o in i)e.push(i[o]);for(var n=0,r=e.length;r>n;n++)e[n][t]()},t.destroyAll=function(){t.invokeAll("destroy")},t.disableAll=function(){t.invokeAll("disable")},t.enableAll=function(){t.invokeAll("enable")},t.refreshAll=function(){t.Context.refreshAll()},t.viewportHeight=function(){return window.innerHeight||document.documentElement.clientHeight},t.viewportWidth=function(){return document.documentElement.clientWidth},t.adapters=[],t.defaults={context:window,continuous:!0,enabled:!0,group:"default",horizontal:!1,offset:0},t.offsetAliases={"bottom-in-view":function(){return this.context.innerHeight()-this.adapter.outerHeight()},"right-in-view":function(){return this.context.innerWidth()-this.adapter.outerWidth()}},window.Waypoint=t}(),function(){"use strict";function t(t){window.setTimeout(t,1e3/60)}function e(t){this.element=t,this.Adapter=n.Adapter,this.adapter=new this.Adapter(t),this.key="waypoint-context-"+i,this.didScroll=!1,this.didResize=!1,this.oldScroll={x:this.adapter.scrollLeft(),y:this.adapter.scrollTop()},this.waypoints={vertical:{},horizontal:{}},t.waypointContextKey=this.key,o[t.waypointContextKey]=this,i+=1,this.createThrottledScrollHandler(),this.createThrottledResizeHandler()}var i=0,o={},n=window.Waypoint,r=window.onload;e.prototype.add=function(t){var e=t.options.horizontal?"horizontal":"vertical";this.waypoints[e][t.key]=t,this.refresh()},e.prototype.checkEmpty=function(){var t=this.Adapter.isEmptyObject(this.waypoints.horizontal),e=this.Adapter.isEmptyObject(this.waypoints.vertical);t&&e&&(this.adapter.off(".waypoints"),delete o[this.key])},e.prototype.createThrottledResizeHandler=function(){function t(){e.handleResize(),e.didResize=!1}var e=this;this.adapter.on("resize.waypoints",function(){e.didResize||(e.didResize=!0,n.requestAnimationFrame(t))})},e.prototype.createThrottledScrollHandler=function(){function t(){e.handleScroll(),e.didScroll=!1}var e=this;this.adapter.on("scroll.waypoints",function(){(!e.didScroll||n.isTouch)&&(e.didScroll=!0,n.requestAnimationFrame(t))})},e.prototype.handleResize=function(){n.Context.refreshAll()},e.prototype.handleScroll=function(){var t={},e={horizontal:{newScroll:this.adapter.scrollLeft(),oldScroll:this.oldScroll.x,forward:"right",backward:"left"},vertical:{newScroll:this.adapter.scrollTop(),oldScroll:this.oldScroll.y,forward:"down",backward:"up"}};for(var i in e){var o=e[i],n=o.newScroll>o.oldScroll,r=n?o.forward:o.backward;for(var s in this.waypoints[i]){var a=this.waypoints[i][s],l=o.oldScroll=a.triggerPoint,p=l&&h,u=!l&&!h;(p||u)&&(a.queueTrigger(r),t[a.group.id]=a.group)}}for(var c in t)t[c].flushTriggers();this.oldScroll={x:e.horizontal.newScroll,y:e.vertical.newScroll}},e.prototype.innerHeight=function(){return this.element==this.element.window?n.viewportHeight():this.adapter.innerHeight()},e.prototype.remove=function(t){delete this.waypoints[t.axis][t.key],this.checkEmpty()},e.prototype.innerWidth=function(){return this.element==this.element.window?n.viewportWidth():this.adapter.innerWidth()},e.prototype.destroy=function(){var t=[];for(var e in this.waypoints)for(var i in this.waypoints[e])t.push(this.waypoints[e][i]);for(var o=0,n=t.length;n>o;o++)t[o].destroy()},e.prototype.refresh=function(){var t,e=this.element==this.element.window,i=e?void 0:this.adapter.offset(),o={};this.handleScroll(),t={horizontal:{contextOffset:e?0:i.left,contextScroll:e?0:this.oldScroll.x,contextDimension:this.innerWidth(),oldScroll:this.oldScroll.x,forward:"right",backward:"left",offsetProp:"left"},vertical:{contextOffset:e?0:i.top,contextScroll:e?0:this.oldScroll.y,contextDimension:this.innerHeight(),oldScroll:this.oldScroll.y,forward:"down",backward:"up",offsetProp:"top"}};for(var r in t){var s=t[r];for(var a in this.waypoints[r]){var l,h,p,u,c,d=this.waypoints[r][a],f=d.options.offset,w=d.triggerPoint,y=0,g=null==w;d.element!==d.element.window&&(y=d.adapter.offset()[s.offsetProp]),"function"==typeof f?f=f.apply(d):"string"==typeof f&&(f=parseFloat(f),d.options.offset.indexOf("%")>-1&&(f=Math.ceil(s.contextDimension*f/100))),l=s.contextScroll-s.contextOffset,d.triggerPoint=y+l-f,h=w=s.oldScroll,u=h&&p,c=!h&&!p,!g&&u?(d.queueTrigger(s.backward),o[d.group.id]=d.group):!g&&c?(d.queueTrigger(s.forward),o[d.group.id]=d.group):g&&s.oldScroll>=d.triggerPoint&&(d.queueTrigger(s.forward),o[d.group.id]=d.group)}}return n.requestAnimationFrame(function(){for(var t in o)o[t].flushTriggers()}),this},e.findOrCreateByElement=function(t){return e.findByElement(t)||new e(t)},e.refreshAll=function(){for(var t in o)o[t].refresh()},e.findByElement=function(t){return o[t.waypointContextKey]},window.onload=function(){r&&r(),e.refreshAll()},n.requestAnimationFrame=function(e){var i=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||t;i.call(window,e)},n.Context=e}(),function(){"use strict";function t(t,e){return t.triggerPoint-e.triggerPoint}function e(t,e){return e.triggerPoint-t.triggerPoint}function i(t){this.name=t.name,this.axis=t.axis,this.id=this.name+"-"+this.axis,this.waypoints=[],this.clearTriggerQueues(),o[this.axis][this.name]=this}var o={vertical:{},horizontal:{}},n=window.Waypoint;i.prototype.add=function(t){this.waypoints.push(t)},i.prototype.clearTriggerQueues=function(){this.triggerQueues={up:[],down:[],left:[],right:[]}},i.prototype.flushTriggers=function(){for(var i in this.triggerQueues){var o=this.triggerQueues[i],n="up"===i||"left"===i;o.sort(n?e:t);for(var r=0,s=o.length;s>r;r+=1){var a=o[r];(a.options.continuous||r===o.length-1)&&a.trigger([i])}}this.clearTriggerQueues()},i.prototype.next=function(e){this.waypoints.sort(t);var i=n.Adapter.inArray(e,this.waypoints),o=i===this.waypoints.length-1;return o?null:this.waypoints[i+1]},i.prototype.previous=function(e){this.waypoints.sort(t);var i=n.Adapter.inArray(e,this.waypoints);return i?this.waypoints[i-1]:null},i.prototype.queueTrigger=function(t,e){this.triggerQueues[e].push(t)},i.prototype.remove=function(t){var e=n.Adapter.inArray(t,this.waypoints);e>-1&&this.waypoints.splice(e,1)},i.prototype.first=function(){return this.waypoints[0]},i.prototype.last=function(){return this.waypoints[this.waypoints.length-1]},i.findOrCreate=function(t){return o[t.axis][t.name]||new i(t)},n.Group=i}(),function(){"use strict";function t(t){this.$element=e(t)}var e=window.jQuery,i=window.Waypoint;e.each(["innerHeight","innerWidth","off","offset","on","outerHeight","outerWidth","scrollLeft","scrollTop"],function(e,i){t.prototype[i]=function(){var t=Array.prototype.slice.call(arguments);return this.$element[i].apply(this.$element,t)}}),e.each(["extend","inArray","isEmptyObject"],function(i,o){t[o]=e[o]}),i.adapters.push({name:"jquery",Adapter:t}),i.Adapter=t}(),function(){"use strict";function t(t){return function(){var i=[],o=arguments[0];return t.isFunction(arguments[0])&&(o=t.extend({},arguments[1]),o.handler=arguments[0]),this.each(function(){var n=t.extend({},o,{element:this});"string"==typeof n.context&&(n.context=t(this).closest(n.context)[0]),i.push(new e(n))}),i}}var e=window.Waypoint;window.jQuery&&(window.jQuery.fn.waypoint=t(window.jQuery)),window.Zepto&&(window.Zepto.fn.waypoint=t(window.Zepto))}();
--------------------------------------------------------------------------------
/source/javascripts/jquery.easing.1.3.js:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
3 | *
4 | * Uses the built in easing capabilities added In jQuery 1.1
5 | * to offer multiple easing options
6 | *
7 | * TERMS OF USE - jQuery Easing
8 | *
9 | * Open source under the BSD License.
10 | *
11 | * Copyright © 2008 George McGinley Smith
12 | * All rights reserved.
13 | *
14 | * Redistribution and use in source and binary forms, with or without modification,
15 | * are permitted provided that the following conditions are met:
16 | *
17 | * Redistributions of source code must retain the above copyright notice, this list of
18 | * conditions and the following disclaimer.
19 | * Redistributions in binary form must reproduce the above copyright notice, this list
20 | * of conditions and the following disclaimer in the documentation and/or other materials
21 | * provided with the distribution.
22 | *
23 | * Neither the name of the author nor the names of contributors may be used to endorse
24 | * or promote products derived from this software without specific prior written permission.
25 | *
26 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
27 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
28 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
29 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
31 | * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
32 | * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33 | * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
34 | * OF THE POSSIBILITY OF SUCH DAMAGE.
35 | *
36 | */
37 |
38 | // t: current time, b: begInnIng value, c: change In value, d: duration
39 | jQuery.easing['jswing'] = jQuery.easing['swing'];
40 |
41 | jQuery.extend( jQuery.easing,
42 | {
43 | def: 'easeOutQuad',
44 | swing: function (x, t, b, c, d) {
45 | //alert(jQuery.easing.default);
46 | return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
47 | },
48 | easeInQuad: function (x, t, b, c, d) {
49 | return c*(t/=d)*t + b;
50 | },
51 | easeOutQuad: function (x, t, b, c, d) {
52 | return -c *(t/=d)*(t-2) + b;
53 | },
54 | easeInOutQuad: function (x, t, b, c, d) {
55 | if ((t/=d/2) < 1) return c/2*t*t + b;
56 | return -c/2 * ((--t)*(t-2) - 1) + b;
57 | },
58 | easeInCubic: function (x, t, b, c, d) {
59 | return c*(t/=d)*t*t + b;
60 | },
61 | easeOutCubic: function (x, t, b, c, d) {
62 | return c*((t=t/d-1)*t*t + 1) + b;
63 | },
64 | easeInOutCubic: function (x, t, b, c, d) {
65 | if ((t/=d/2) < 1) return c/2*t*t*t + b;
66 | return c/2*((t-=2)*t*t + 2) + b;
67 | },
68 | easeInQuart: function (x, t, b, c, d) {
69 | return c*(t/=d)*t*t*t + b;
70 | },
71 | easeOutQuart: function (x, t, b, c, d) {
72 | return -c * ((t=t/d-1)*t*t*t - 1) + b;
73 | },
74 | easeInOutQuart: function (x, t, b, c, d) {
75 | if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
76 | return -c/2 * ((t-=2)*t*t*t - 2) + b;
77 | },
78 | easeInQuint: function (x, t, b, c, d) {
79 | return c*(t/=d)*t*t*t*t + b;
80 | },
81 | easeOutQuint: function (x, t, b, c, d) {
82 | return c*((t=t/d-1)*t*t*t*t + 1) + b;
83 | },
84 | easeInOutQuint: function (x, t, b, c, d) {
85 | if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
86 | return c/2*((t-=2)*t*t*t*t + 2) + b;
87 | },
88 | easeInSine: function (x, t, b, c, d) {
89 | return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
90 | },
91 | easeOutSine: function (x, t, b, c, d) {
92 | return c * Math.sin(t/d * (Math.PI/2)) + b;
93 | },
94 | easeInOutSine: function (x, t, b, c, d) {
95 | return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
96 | },
97 | easeInExpo: function (x, t, b, c, d) {
98 | return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
99 | },
100 | easeOutExpo: function (x, t, b, c, d) {
101 | return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
102 | },
103 | easeInOutExpo: function (x, t, b, c, d) {
104 | if (t==0) return b;
105 | if (t==d) return b+c;
106 | if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
107 | return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
108 | },
109 | easeInCirc: function (x, t, b, c, d) {
110 | return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
111 | },
112 | easeOutCirc: function (x, t, b, c, d) {
113 | return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
114 | },
115 | easeInOutCirc: function (x, t, b, c, d) {
116 | if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
117 | return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
118 | },
119 | easeInElastic: function (x, t, b, c, d) {
120 | var s=1.70158;var p=0;var a=c;
121 | if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
122 | if (a < Math.abs(c)) { a=c; var s=p/4; }
123 | else var s = p/(2*Math.PI) * Math.asin (c/a);
124 | return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
125 | },
126 | easeOutElastic: function (x, t, b, c, d) {
127 | var s=1.70158;var p=0;var a=c;
128 | if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
129 | if (a < Math.abs(c)) { a=c; var s=p/4; }
130 | else var s = p/(2*Math.PI) * Math.asin (c/a);
131 | return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
132 | },
133 | easeInOutElastic: function (x, t, b, c, d) {
134 | var s=1.70158;var p=0;var a=c;
135 | if (t==0) return b; if ((t/=d/2)==2) return b+c; if (!p) p=d*(.3*1.5);
136 | if (a < Math.abs(c)) { a=c; var s=p/4; }
137 | else var s = p/(2*Math.PI) * Math.asin (c/a);
138 | if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
139 | return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
140 | },
141 | easeInBack: function (x, t, b, c, d, s) {
142 | if (s == undefined) s = 1.70158;
143 | return c*(t/=d)*t*((s+1)*t - s) + b;
144 | },
145 | easeOutBack: function (x, t, b, c, d, s) {
146 | if (s == undefined) s = 1.70158;
147 | return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
148 | },
149 | easeInOutBack: function (x, t, b, c, d, s) {
150 | if (s == undefined) s = 1.70158;
151 | if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
152 | return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
153 | },
154 | easeInBounce: function (x, t, b, c, d) {
155 | return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
156 | },
157 | easeOutBounce: function (x, t, b, c, d) {
158 | if ((t/=d) < (1/2.75)) {
159 | return c*(7.5625*t*t) + b;
160 | } else if (t < (2/2.75)) {
161 | return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
162 | } else if (t < (2.5/2.75)) {
163 | return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
164 | } else {
165 | return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
166 | }
167 | },
168 | easeInOutBounce: function (x, t, b, c, d) {
169 | if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
170 | return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
171 | }
172 | });
173 |
174 | /*
175 | *
176 | * TERMS OF USE - EASING EQUATIONS
177 | *
178 | * Open source under the BSD License.
179 | *
180 | * Copyright © 2001 Robert Penner
181 | * All rights reserved.
182 | *
183 | * Redistribution and use in source and binary forms, with or without modification,
184 | * are permitted provided that the following conditions are met:
185 | *
186 | * Redistributions of source code must retain the above copyright notice, this list of
187 | * conditions and the following disclaimer.
188 | * Redistributions in binary form must reproduce the above copyright notice, this list
189 | * of conditions and the following disclaimer in the documentation and/or other materials
190 | * provided with the distribution.
191 | *
192 | * Neither the name of the author nor the names of contributors may be used to endorse
193 | * or promote products derived from this software without specific prior written permission.
194 | *
195 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
196 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
197 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
198 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
199 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
200 | * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
201 | * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
202 | * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
203 | * OF THE POSSIBILITY OF SUCH DAMAGE.
204 | *
205 | */
--------------------------------------------------------------------------------
/source/javascripts/modernizr-2.6.2.min.js:
--------------------------------------------------------------------------------
1 | /* Modernizr 2.6.2 (Custom Build) | MIT & BSD
2 | * Build: http://modernizr.com/download/#-fontface-backgroundsize-borderimage-borderradius-boxshadow-flexbox-hsla-multiplebgs-opacity-rgba-textshadow-cssanimations-csscolumns-generatedcontent-cssgradients-cssreflections-csstransforms-csstransforms3d-csstransitions-applicationcache-canvas-canvastext-draganddrop-hashchange-history-audio-video-indexeddb-input-inputtypes-localstorage-postmessage-sessionstorage-websockets-websqldatabase-webworkers-geolocation-inlinesvg-smil-svg-svgclippaths-touch-webgl-shiv-mq-cssclasses-addtest-prefixed-teststyles-testprop-testallprops-hasevent-prefixes-domprefixes-load
3 | */
4 | ;window.Modernizr=function(a,b,c){function D(a){j.cssText=a}function E(a,b){return D(n.join(a+";")+(b||""))}function F(a,b){return typeof a===b}function G(a,b){return!!~(""+a).indexOf(b)}function H(a,b){for(var d in a){var e=a[d];if(!G(e,"-")&&j[e]!==c)return b=="pfx"?e:!0}return!1}function I(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:F(f,"function")?f.bind(d||b):f}return!1}function J(a,b,c){var d=a.charAt(0).toUpperCase()+a.slice(1),e=(a+" "+p.join(d+" ")+d).split(" ");return F(b,"string")||F(b,"undefined")?H(e,b):(e=(a+" "+q.join(d+" ")+d).split(" "),I(e,b,c))}function K(){e.input=function(c){for(var d=0,e=c.length;d',a,""].join(""),l.id=h,(m?l:n).innerHTML+=f,n.appendChild(l),m||(n.style.background="",n.style.overflow="hidden",k=g.style.overflow,g.style.overflow="hidden",g.appendChild(n)),i=c(l,a),m?l.parentNode.removeChild(l):(n.parentNode.removeChild(n),g.style.overflow=k),!!i},z=function(b){var c=a.matchMedia||a.msMatchMedia;if(c)return c(b).matches;var d;return y("@media "+b+" { #"+h+" { position: absolute; } }",function(b){d=(a.getComputedStyle?getComputedStyle(b,null):b.currentStyle)["position"]=="absolute"}),d},A=function(){function d(d,e){e=e||b.createElement(a[d]||"div"),d="on"+d;var f=d in e;return f||(e.setAttribute||(e=b.createElement("div")),e.setAttribute&&e.removeAttribute&&(e.setAttribute(d,""),f=F(e[d],"function"),F(e[d],"undefined")||(e[d]=c),e.removeAttribute(d))),e=null,f}var a={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"};return d}(),B={}.hasOwnProperty,C;!F(B,"undefined")&&!F(B.call,"undefined")?C=function(a,b){return B.call(a,b)}:C=function(a,b){return b in a&&F(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=w.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(w.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(w.call(arguments)))};return e}),s.flexbox=function(){return J("flexWrap")},s.canvas=function(){var a=b.createElement("canvas");return!!a.getContext&&!!a.getContext("2d")},s.canvastext=function(){return!!e.canvas&&!!F(b.createElement("canvas").getContext("2d").fillText,"function")},s.webgl=function(){return!!a.WebGLRenderingContext},s.touch=function(){var c;return"ontouchstart"in a||a.DocumentTouch&&b instanceof DocumentTouch?c=!0:y(["@media (",n.join("touch-enabled),("),h,")","{#modernizr{top:9px;position:absolute}}"].join(""),function(a){c=a.offsetTop===9}),c},s.geolocation=function(){return"geolocation"in navigator},s.postmessage=function(){return!!a.postMessage},s.websqldatabase=function(){return!!a.openDatabase},s.indexedDB=function(){return!!J("indexedDB",a)},s.hashchange=function(){return A("hashchange",a)&&(b.documentMode===c||b.documentMode>7)},s.history=function(){return!!a.history&&!!history.pushState},s.draganddrop=function(){var a=b.createElement("div");return"draggable"in a||"ondragstart"in a&&"ondrop"in a},s.websockets=function(){return"WebSocket"in a||"MozWebSocket"in a},s.rgba=function(){return D("background-color:rgba(150,255,150,.5)"),G(j.backgroundColor,"rgba")},s.hsla=function(){return D("background-color:hsla(120,40%,100%,.5)"),G(j.backgroundColor,"rgba")||G(j.backgroundColor,"hsla")},s.multiplebgs=function(){return D("background:url(https://),url(https://),red url(https://)"),/(url\s*\(.*?){3}/.test(j.background)},s.backgroundsize=function(){return J("backgroundSize")},s.borderimage=function(){return J("borderImage")},s.borderradius=function(){return J("borderRadius")},s.boxshadow=function(){return J("boxShadow")},s.textshadow=function(){return b.createElement("div").style.textShadow===""},s.opacity=function(){return E("opacity:.55"),/^0.55$/.test(j.opacity)},s.cssanimations=function(){return J("animationName")},s.csscolumns=function(){return J("columnCount")},s.cssgradients=function(){var a="background-image:",b="gradient(linear,left top,right bottom,from(#9f9),to(white));",c="linear-gradient(left top,#9f9, white);";return D((a+"-webkit- ".split(" ").join(b+a)+n.join(c+a)).slice(0,-a.length)),G(j.backgroundImage,"gradient")},s.cssreflections=function(){return J("boxReflect")},s.csstransforms=function(){return!!J("transform")},s.csstransforms3d=function(){var a=!!J("perspective");return a&&"webkitPerspective"in g.style&&y("@media (transform-3d),(-webkit-transform-3d){#modernizr{left:9px;position:absolute;height:3px;}}",function(b,c){a=b.offsetLeft===9&&b.offsetHeight===3}),a},s.csstransitions=function(){return J("transition")},s.fontface=function(){var a;return y('@font-face {font-family:"font";src:url("https://")}',function(c,d){var e=b.getElementById("smodernizr"),f=e.sheet||e.styleSheet,g=f?f.cssRules&&f.cssRules[0]?f.cssRules[0].cssText:f.cssText||"":"";a=/src/i.test(g)&&g.indexOf(d.split(" ")[0])===0}),a},s.generatedcontent=function(){var a;return y(["#",h,"{font:0/0 a}#",h,':after{content:"',l,'";visibility:hidden;font:3px/1 a}'].join(""),function(b){a=b.offsetHeight>=3}),a},s.video=function(){var a=b.createElement("video"),c=!1;try{if(c=!!a.canPlayType)c=new Boolean(c),c.ogg=a.canPlayType('video/ogg; codecs="theora"').replace(/^no$/,""),c.h264=a.canPlayType('video/mp4; codecs="avc1.42E01E"').replace(/^no$/,""),c.webm=a.canPlayType('video/webm; codecs="vp8, vorbis"').replace(/^no$/,"")}catch(d){}return c},s.audio=function(){var a=b.createElement("audio"),c=!1;try{if(c=!!a.canPlayType)c=new Boolean(c),c.ogg=a.canPlayType('audio/ogg; codecs="vorbis"').replace(/^no$/,""),c.mp3=a.canPlayType("audio/mpeg;").replace(/^no$/,""),c.wav=a.canPlayType('audio/wav; codecs="1"').replace(/^no$/,""),c.m4a=(a.canPlayType("audio/x-m4a;")||a.canPlayType("audio/aac;")).replace(/^no$/,"")}catch(d){}return c},s.localstorage=function(){try{return localStorage.setItem(h,h),localStorage.removeItem(h),!0}catch(a){return!1}},s.sessionstorage=function(){try{return sessionStorage.setItem(h,h),sessionStorage.removeItem(h),!0}catch(a){return!1}},s.webworkers=function(){return!!a.Worker},s.applicationcache=function(){return!!a.applicationCache},s.svg=function(){return!!b.createElementNS&&!!b.createElementNS(r.svg,"svg").createSVGRect},s.inlinesvg=function(){var a=b.createElement("div");return a.innerHTML="",(a.firstChild&&a.firstChild.namespaceURI)==r.svg},s.smil=function(){return!!b.createElementNS&&/SVGAnimate/.test(m.call(b.createElementNS(r.svg,"animate")))},s.svgclippaths=function(){return!!b.createElementNS&&/SVGClipPath/.test(m.call(b.createElementNS(r.svg,"clipPath")))};for(var L in s)C(s,L)&&(x=L.toLowerCase(),e[x]=s[L](),v.push((e[x]?"":"no-")+x));return e.input||K(),e.addTest=function(a,b){if(typeof a=="object")for(var d in a)C(a,d)&&e.addTest(d,a[d]);else{a=a.toLowerCase();if(e[a]!==c)return e;b=typeof b=="function"?b():b,typeof f!="undefined"&&f&&(g.className+=" "+(b?"":"no-")+a),e[a]=b}return e},D(""),i=k=null,function(a,b){function k(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function l(){var a=r.elements;return typeof a=="string"?a.split(" "):a}function m(a){var b=i[a[g]];return b||(b={},h++,a[g]=h,i[h]=b),b}function n(a,c,f){c||(c=b);if(j)return c.createElement(a);f||(f=m(c));var g;return f.cache[a]?g=f.cache[a].cloneNode():e.test(a)?g=(f.cache[a]=f.createElem(a)).cloneNode():g=f.createElem(a),g.canHaveChildren&&!d.test(a)?f.frag.appendChild(g):g}function o(a,c){a||(a=b);if(j)return a.createDocumentFragment();c=c||m(a);var d=c.frag.cloneNode(),e=0,f=l(),g=f.length;for(;e",f="hidden"in a,j=a.childNodes.length==1||function(){b.createElement("a");var a=b.createDocumentFragment();return typeof a.cloneNode=="undefined"||typeof a.createDocumentFragment=="undefined"||typeof a.createElement=="undefined"}()}catch(c){f=!0,j=!0}})();var r={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,supportsUnknownElements:j,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:q,createElement:n,createDocumentFragment:o};a.html5=r,q(b)}(this,b),e._version=d,e._prefixes=n,e._domPrefixes=q,e._cssomPrefixes=p,e.mq=z,e.hasEvent=A,e.testProp=function(a){return H([a])},e.testAllProps=J,e.testStyles=y,e.prefixed=function(a,b,c){return b?J(a,b,c):J(a,"pfx")},g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+v.join(" "):""),e}(this,this.document),function(a,b,c){function d(a){return"[object Function]"==o.call(a)}function e(a){return"string"==typeof a}function f(){}function g(a){return!a||"loaded"==a||"complete"==a||"uninitialized"==a}function h(){var a=p.shift();q=1,a?a.t?m(function(){("c"==a.t?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){"img"!=a&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l=b.createElement(a),o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};1===y[c]&&(r=1,y[c]=[]),"object"==a?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),"img"!=a&&(r||2===y[c]?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i("c"==b?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),1==p.length&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&"[object Opera]"==o.call(a.opera),l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return"[object Array]"==o.call(a)},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f
108 | Leé más sobre el nuestro plan.
109 |
110 | - q: ¿Qué puedo pagar con pesos digitales?
111 | a: Todavía no existen comercios o profesionales que acepten pesos
112 | digitales en forma de pago.
113 |
114 | Leé más sobre el nuestro plan.
115 |
116 | - q: ¿Cuanto tarda en validarse la transacción?
117 | a: Depende del Blockchain que uses y el monto de la transacción, puede ser
118 | instantáneo o tardar una hora. Para un café podés darte por pagado
119 | inmediatamente, para vender un auto deberías esperar a que
120 | la mayoría del Blockchain haya verificado el pago.
121 | Si tenés una cuenta gestionada por un banco o billetera digital, puede
122 | ser instantáneo para clientes del mismo proveedor, sin importar el
123 | monto.
124 |
125 | - q: ¿Se puede caer el sistema?
126 | a: Las cuentas autogestionadas corren directamente sobre el Blockchain que
127 | nunca se cae, pero tu proveedor de internet puede caerse y dejarte
128 | sin acceso al Blockchain.
129 | El Blockchain continúa registrando las transferencias que ingresan,
130 | aunque no puedas acceder a verlas.
131 | Los proveedores de cuentas de pesos digitales como bancos o billeteras
132 | digitales pueden caerse.
133 |
134 | - q: ¿Qué opinan los reguladores? ¿Es legal?
135 | a: Actualmente no hay regulacion sobre la emisión de monedas digitales.
136 | Activos digitales como el Bitcoin pueden comprarse y venderse
137 | libremente y no pagan IVA.
138 | Por la transparencia y beneficio al público que trae el Peso Digital
139 | somos muy optimistas en cuanto a su regulación favorable.
140 |
141 | - q: ¿Cómo se incorpora a la declaración de impuestos?
142 | a: Son pesos en otra caja, así como tenemos efectivo, cuentas de banco o
143 | saldo en un procesador de pagos.
144 |
145 | empresas:
146 | - q: ¿Qué beneficios tiene para mi negocio?
147 | a: Hasta ahora identificamos que reduce el costo de cobrar en efectivo.
148 | Permite cobrar en efectivo por ventas realizadas en internet. Incluso,
149 | la plataforma de ecommerce puede recibir pagos a una cuenta
150 | autogestionada por la empresa, sin pagar comisiones de procesamiento de
151 | pagos. Una empresa con una cuenta autogestionada puede integrar
152 | facilmente todos sus sistemas desde la contabilidad hasta la ejecución
153 | de los pagos a proveedores, en un mismo lugar.
154 |
155 | - q: ¿Qué riesgos tiene para mi negocio?
156 | a: El principal riesgo puede estar en la mala administración de una cuenta
157 | autogestionada. Una transferencia bancaria erronea o fraudulenta puede
158 | revertirse hablando con el banco, en el Blockchain esto no es posible.
159 | Para más seguridad la empresa puede trabajar pesos digitales a traves de
160 | un banco, billetera digital o proveedor de tecnología que reduzca o
161 | elimine todos estos riesgos.
162 |
163 | - q: ¿Qué necesita peso digital de parte de mi empresa?
164 | a: Es importante que las empresas se informen sobre peso digital y
165 | contribuyan con sus comentarios y críticas. Si ven un impacto positivo,
166 | dimensionarlo de alguna forma que fortalezca la necesidad. Nos gustaría
167 | saber cuanto ahorran en procesos actuales y que nuevos negocios pueden
168 | hacer gracias al peso digital. Y último pero no menos importante,
169 | necesitamos que acepten pesos digitales en forma de pago, y que estén
170 | dispuestos a pagar en pesos digitales a los proveedores que tengan esa
171 | opción.
172 |
173 | - q: ¿Cómo hago para aceptar pesos digitales?
174 | a: Contactanos a
175 |
176 | peso-digital@googlegroups.com
177 |
178 | y
179 | leé más sobre el nuestro plan.
180 |
181 | sector_financiero:
182 | - q: ¿Cómo afecta a las FinTech?
183 | a: El peso digital le permite a las FinTech enfocarse en desarrollar su
184 | servicio de valor agregado sin preocuparse por conectarse a las
185 | distintas redes de transferencia de dinero.
186 |
187 | - q: ¿Cómo afecta a las entidades crediticias?
188 | a: Las cuentas autogestionadas de pesos digitales se pueden usar como una
189 | muestra de capacidad de pago. La hiperconexión reduce la fricción y
190 | multiplica los canales para entregar el crédito y recibir los pagos.
191 | La Cámara de Peso Digital no se dedica a calificar ni otorgar crédito.
192 |
193 | - q: ¿Cómo se integra con los procesadores de pago actuales?
194 | a: Los procesadores de pagos pueden gestionar cuentas para sus empresas
195 | clientes y ofrecer el procesamiento de pagos en pesos digitales junto al
196 | de tarjetas de crédito, débito, etc. Pueden mostrar un saldo único de
197 | pagos recibidos para cada cliente. Mezclando pesos digitales con las
198 | otras formas de pago.
199 |
200 | - q: ¿Cómo se integran los bancos y otras billeteras digitales?
201 | a: Los bancos, billeteras y financieras pueden gestionar cuentas para sus
202 | clientes. En ese caso tendrían control total de los fondos. Pueden
203 | ofrecer cuentas comitentes, cajas de ahorro o cuentas corrientes que
204 | indistintamente reciben y envian pesos via transferencia bancaria o en
205 | la red de Peso Digital.
206 | Desde el punto de vista de PLD los depósitos desde la red de peso
207 | digital pueden requerir más atención que los que provienen de otro
208 | banco, pero mucha menos atención que los depósitos en efectivo.
209 |
210 | - q: ¿Qué diferencia hay con las cámaras compensadoras?
211 | a: El clearing de Peso Digital es continuo y constante, y no requiere de
212 | crédito entre entidades. Es además inmediatamente abierto a todas las
213 | empresas del rubro financiero y las personas de forma directa.
214 |
215 | - q: ¿Qué pasa con los convenios actuales entre redes?
216 | a: "Los acuerdos existentes siguen siendo valiosos: Dos entidades que
217 | confian mutuamente pueden permitir a sus clientes pagar entre ellas
218 | cualquier monto, instantáneamente, sin hacer clearing externo, como si
219 | se tratara de un pago dentro de la misma red."
220 |
221 | - q: ¿Es distinto a los bancos y las billeteras digitales con API?
222 | a: Si un banco o billetera digital ofrece un API para operar entre sus
223 | cuentas termina siendo el dueño de la red, y se vuelve un único punto de
224 | falla, además de limitar la innovación a su ritmo e intereses.
225 | Los que construyen sobre esa red corren el riesgo de ser víctimas de la
226 | arbitrariedad del operador y competencia desleal.
227 | Ante estos riesgos, los otros bancos terminan creando sus propias redes
228 | y sus propias APIs, volviendo a atomizar el mercado. La Cámara de Peso
229 | Digital no controla los Blockchains, y la función de puente entre redes
230 | puede ser fácilmente apropiada por el estado mismo, que es en última
231 | instancia el respaldo de todos los pesos argentinos.
232 |
233 | - q: ¿El peso digital reemplaza mi API?
234 | a: No, en lo absoluto. El peso digital es un API para enviar y recibir
235 | dinero entre personas y entidades, un común denominador entre todos. Los
236 | APIs de cada empresa se especializan en un negocio en particular.
237 | Incluso los bancos y billeteras que ofrecen cuentas gestionadas de pesos
238 | digitales pueden ofrecer API's muy distintos entre si.
239 |
240 | estado:
241 | - q: ¿Cual es la política monetaria? ¿Es emisión secundaria?
242 | a: No hay política monetaria en si. La Cámara recibe pesos y los custodia
243 | al 100%. En la práctica, para la función de la cámara no hay gran
244 | diferencia entre custodiar en LEBAC's o una cuenta de banco.
245 | El BCRA por su parte tiene motivos para preferir que se utilicen LEBAC.
246 |
247 | - q: ¿La Cámara de Peso Digital hace intermediación financiera?
248 | a: Definitivamente no es un banco, no invierte activamente ni presta dinero.
249 | El respaldo de los pesos digitales puede generar una renta pasiva, que
250 | podría usarse para cubrir costos operativos de la cámara o podría
251 | distribuirse proporcionalmente entre todas las cuentas de pesos
252 | digitales en todos los Blockchains.
253 |
254 | - q: ¿Cómo tributan las operaciones en pesos digitales?
255 | a: El peso digital funciona como una forma de pago, y las operaciones
256 | tributan normalmente. La información que ofrece al fisco no está
257 | asociada a identidades como las cuentas bancarias, pero provee montos,
258 | fechas y cuentas, lo que lo hace más transparente que el efectivo.
259 | Una factura electrónica podría vincularse a una transacción de peso
260 | digital, certificando que la operación ocurrió realmente e identificado
261 | al contribuyente y sus clientes.
262 |
263 | - q: ¿Cómo se previene el lavado de dinero?
264 | a: Los sujetos obligados por UIF continuan con sus responsabilidades,
265 | observando las operaciones en pesos digitales como si se tratara de
266 | dinero en efectivo. A diferencia del efectivo se puede reconstruir el
267 | circuito del dinero, analizar montos y movimientos recurrentes entre
268 | cuentas. Eventualmente es un sistema de información más transparente que
269 | el efectivo y el sistema bancario. El mejor ejemplo de esto es lo que
270 | pasó en la red bitcoin con la aparición de
271 | empresas como Elliptic.
272 | En Argentina UIF podría encargarse de la construcción y mantenimiento de
273 | una base de datos que vincule personas con cuentas en el Blockchain. De
274 | este modo se lograrían los objetivos del organismo sin perjudicar la
275 | inclusión financiera y la competitividad.
276 |
277 | - q: ¿Con que iniciativas y programas del estado se alinea?
278 | a: El Peso Digital contribuiría a la inclusión financiera,
279 | porque se baja la barrera de entrada a los prestadores de servicio,
280 | aumenta la competencia, y se vuelve económicamente viable dar servicio
281 | a las personas de bajos recursos.
282 |
283 | El Peso Digital disminuiría la demanda por efectívo
284 | físico al ofrecer a las personas apertura, privacidad, accesibilidad,
285 | control y seguridad, sin los riesgos de robo, pérdida, destrucción o
286 | falsificación.
287 |
288 | La modernización y transparencia de la gestión pública
289 | se vería beneficiada. Con solo declarar sus cuentas y las de cada
290 | repartición, cualquier ciuadadano podría auditar los flujos de dinero
291 | completos, desde la recaudación de impuestos hasta los pagos a
292 | empleados, pagos a proveedores, asignaciones y pensiones.
293 |
294 |
--------------------------------------------------------------------------------
/source/stylesheets/font-awesome/_variables.scss:
--------------------------------------------------------------------------------
1 | // Variables
2 | // --------------------------
3 |
4 | $fa-font-path: "/fonts/font-awesome" !default;
5 | $fa-font-size-base: 14px !default;
6 | $fa-line-height-base: 1 !default;
7 | //$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts" !default; // for referencing Bootstrap CDN font files directly
8 | $fa-css-prefix: fa !default;
9 | $fa-version: "4.7.0" !default;
10 | $fa-border-color: #eee !default;
11 | $fa-inverse: #fff !default;
12 | $fa-li-width: (30em / 14) !default;
13 |
14 | $fa-var-500px: "\f26e";
15 | $fa-var-address-book: "\f2b9";
16 | $fa-var-address-book-o: "\f2ba";
17 | $fa-var-address-card: "\f2bb";
18 | $fa-var-address-card-o: "\f2bc";
19 | $fa-var-adjust: "\f042";
20 | $fa-var-adn: "\f170";
21 | $fa-var-align-center: "\f037";
22 | $fa-var-align-justify: "\f039";
23 | $fa-var-align-left: "\f036";
24 | $fa-var-align-right: "\f038";
25 | $fa-var-amazon: "\f270";
26 | $fa-var-ambulance: "\f0f9";
27 | $fa-var-american-sign-language-interpreting: "\f2a3";
28 | $fa-var-anchor: "\f13d";
29 | $fa-var-android: "\f17b";
30 | $fa-var-angellist: "\f209";
31 | $fa-var-angle-double-down: "\f103";
32 | $fa-var-angle-double-left: "\f100";
33 | $fa-var-angle-double-right: "\f101";
34 | $fa-var-angle-double-up: "\f102";
35 | $fa-var-angle-down: "\f107";
36 | $fa-var-angle-left: "\f104";
37 | $fa-var-angle-right: "\f105";
38 | $fa-var-angle-up: "\f106";
39 | $fa-var-apple: "\f179";
40 | $fa-var-archive: "\f187";
41 | $fa-var-area-chart: "\f1fe";
42 | $fa-var-arrow-circle-down: "\f0ab";
43 | $fa-var-arrow-circle-left: "\f0a8";
44 | $fa-var-arrow-circle-o-down: "\f01a";
45 | $fa-var-arrow-circle-o-left: "\f190";
46 | $fa-var-arrow-circle-o-right: "\f18e";
47 | $fa-var-arrow-circle-o-up: "\f01b";
48 | $fa-var-arrow-circle-right: "\f0a9";
49 | $fa-var-arrow-circle-up: "\f0aa";
50 | $fa-var-arrow-down: "\f063";
51 | $fa-var-arrow-left: "\f060";
52 | $fa-var-arrow-right: "\f061";
53 | $fa-var-arrow-up: "\f062";
54 | $fa-var-arrows: "\f047";
55 | $fa-var-arrows-alt: "\f0b2";
56 | $fa-var-arrows-h: "\f07e";
57 | $fa-var-arrows-v: "\f07d";
58 | $fa-var-asl-interpreting: "\f2a3";
59 | $fa-var-assistive-listening-systems: "\f2a2";
60 | $fa-var-asterisk: "\f069";
61 | $fa-var-at: "\f1fa";
62 | $fa-var-audio-description: "\f29e";
63 | $fa-var-automobile: "\f1b9";
64 | $fa-var-backward: "\f04a";
65 | $fa-var-balance-scale: "\f24e";
66 | $fa-var-ban: "\f05e";
67 | $fa-var-bandcamp: "\f2d5";
68 | $fa-var-bank: "\f19c";
69 | $fa-var-bar-chart: "\f080";
70 | $fa-var-bar-chart-o: "\f080";
71 | $fa-var-barcode: "\f02a";
72 | $fa-var-bars: "\f0c9";
73 | $fa-var-bath: "\f2cd";
74 | $fa-var-bathtub: "\f2cd";
75 | $fa-var-battery: "\f240";
76 | $fa-var-battery-0: "\f244";
77 | $fa-var-battery-1: "\f243";
78 | $fa-var-battery-2: "\f242";
79 | $fa-var-battery-3: "\f241";
80 | $fa-var-battery-4: "\f240";
81 | $fa-var-battery-empty: "\f244";
82 | $fa-var-battery-full: "\f240";
83 | $fa-var-battery-half: "\f242";
84 | $fa-var-battery-quarter: "\f243";
85 | $fa-var-battery-three-quarters: "\f241";
86 | $fa-var-bed: "\f236";
87 | $fa-var-beer: "\f0fc";
88 | $fa-var-behance: "\f1b4";
89 | $fa-var-behance-square: "\f1b5";
90 | $fa-var-bell: "\f0f3";
91 | $fa-var-bell-o: "\f0a2";
92 | $fa-var-bell-slash: "\f1f6";
93 | $fa-var-bell-slash-o: "\f1f7";
94 | $fa-var-bicycle: "\f206";
95 | $fa-var-binoculars: "\f1e5";
96 | $fa-var-birthday-cake: "\f1fd";
97 | $fa-var-bitbucket: "\f171";
98 | $fa-var-bitbucket-square: "\f172";
99 | $fa-var-bitcoin: "\f15a";
100 | $fa-var-black-tie: "\f27e";
101 | $fa-var-blind: "\f29d";
102 | $fa-var-bluetooth: "\f293";
103 | $fa-var-bluetooth-b: "\f294";
104 | $fa-var-bold: "\f032";
105 | $fa-var-bolt: "\f0e7";
106 | $fa-var-bomb: "\f1e2";
107 | $fa-var-book: "\f02d";
108 | $fa-var-bookmark: "\f02e";
109 | $fa-var-bookmark-o: "\f097";
110 | $fa-var-braille: "\f2a1";
111 | $fa-var-briefcase: "\f0b1";
112 | $fa-var-btc: "\f15a";
113 | $fa-var-bug: "\f188";
114 | $fa-var-building: "\f1ad";
115 | $fa-var-building-o: "\f0f7";
116 | $fa-var-bullhorn: "\f0a1";
117 | $fa-var-bullseye: "\f140";
118 | $fa-var-bus: "\f207";
119 | $fa-var-buysellads: "\f20d";
120 | $fa-var-cab: "\f1ba";
121 | $fa-var-calculator: "\f1ec";
122 | $fa-var-calendar: "\f073";
123 | $fa-var-calendar-check-o: "\f274";
124 | $fa-var-calendar-minus-o: "\f272";
125 | $fa-var-calendar-o: "\f133";
126 | $fa-var-calendar-plus-o: "\f271";
127 | $fa-var-calendar-times-o: "\f273";
128 | $fa-var-camera: "\f030";
129 | $fa-var-camera-retro: "\f083";
130 | $fa-var-car: "\f1b9";
131 | $fa-var-caret-down: "\f0d7";
132 | $fa-var-caret-left: "\f0d9";
133 | $fa-var-caret-right: "\f0da";
134 | $fa-var-caret-square-o-down: "\f150";
135 | $fa-var-caret-square-o-left: "\f191";
136 | $fa-var-caret-square-o-right: "\f152";
137 | $fa-var-caret-square-o-up: "\f151";
138 | $fa-var-caret-up: "\f0d8";
139 | $fa-var-cart-arrow-down: "\f218";
140 | $fa-var-cart-plus: "\f217";
141 | $fa-var-cc: "\f20a";
142 | $fa-var-cc-amex: "\f1f3";
143 | $fa-var-cc-diners-club: "\f24c";
144 | $fa-var-cc-discover: "\f1f2";
145 | $fa-var-cc-jcb: "\f24b";
146 | $fa-var-cc-mastercard: "\f1f1";
147 | $fa-var-cc-paypal: "\f1f4";
148 | $fa-var-cc-stripe: "\f1f5";
149 | $fa-var-cc-visa: "\f1f0";
150 | $fa-var-certificate: "\f0a3";
151 | $fa-var-chain: "\f0c1";
152 | $fa-var-chain-broken: "\f127";
153 | $fa-var-check: "\f00c";
154 | $fa-var-check-circle: "\f058";
155 | $fa-var-check-circle-o: "\f05d";
156 | $fa-var-check-square: "\f14a";
157 | $fa-var-check-square-o: "\f046";
158 | $fa-var-chevron-circle-down: "\f13a";
159 | $fa-var-chevron-circle-left: "\f137";
160 | $fa-var-chevron-circle-right: "\f138";
161 | $fa-var-chevron-circle-up: "\f139";
162 | $fa-var-chevron-down: "\f078";
163 | $fa-var-chevron-left: "\f053";
164 | $fa-var-chevron-right: "\f054";
165 | $fa-var-chevron-up: "\f077";
166 | $fa-var-child: "\f1ae";
167 | $fa-var-chrome: "\f268";
168 | $fa-var-circle: "\f111";
169 | $fa-var-circle-o: "\f10c";
170 | $fa-var-circle-o-notch: "\f1ce";
171 | $fa-var-circle-thin: "\f1db";
172 | $fa-var-clipboard: "\f0ea";
173 | $fa-var-clock-o: "\f017";
174 | $fa-var-clone: "\f24d";
175 | $fa-var-close: "\f00d";
176 | $fa-var-cloud: "\f0c2";
177 | $fa-var-cloud-download: "\f0ed";
178 | $fa-var-cloud-upload: "\f0ee";
179 | $fa-var-cny: "\f157";
180 | $fa-var-code: "\f121";
181 | $fa-var-code-fork: "\f126";
182 | $fa-var-codepen: "\f1cb";
183 | $fa-var-codiepie: "\f284";
184 | $fa-var-coffee: "\f0f4";
185 | $fa-var-cog: "\f013";
186 | $fa-var-cogs: "\f085";
187 | $fa-var-columns: "\f0db";
188 | $fa-var-comment: "\f075";
189 | $fa-var-comment-o: "\f0e5";
190 | $fa-var-commenting: "\f27a";
191 | $fa-var-commenting-o: "\f27b";
192 | $fa-var-comments: "\f086";
193 | $fa-var-comments-o: "\f0e6";
194 | $fa-var-compass: "\f14e";
195 | $fa-var-compress: "\f066";
196 | $fa-var-connectdevelop: "\f20e";
197 | $fa-var-contao: "\f26d";
198 | $fa-var-copy: "\f0c5";
199 | $fa-var-copyright: "\f1f9";
200 | $fa-var-creative-commons: "\f25e";
201 | $fa-var-credit-card: "\f09d";
202 | $fa-var-credit-card-alt: "\f283";
203 | $fa-var-crop: "\f125";
204 | $fa-var-crosshairs: "\f05b";
205 | $fa-var-css3: "\f13c";
206 | $fa-var-cube: "\f1b2";
207 | $fa-var-cubes: "\f1b3";
208 | $fa-var-cut: "\f0c4";
209 | $fa-var-cutlery: "\f0f5";
210 | $fa-var-dashboard: "\f0e4";
211 | $fa-var-dashcube: "\f210";
212 | $fa-var-database: "\f1c0";
213 | $fa-var-deaf: "\f2a4";
214 | $fa-var-deafness: "\f2a4";
215 | $fa-var-dedent: "\f03b";
216 | $fa-var-delicious: "\f1a5";
217 | $fa-var-desktop: "\f108";
218 | $fa-var-deviantart: "\f1bd";
219 | $fa-var-diamond: "\f219";
220 | $fa-var-digg: "\f1a6";
221 | $fa-var-dollar: "\f155";
222 | $fa-var-dot-circle-o: "\f192";
223 | $fa-var-download: "\f019";
224 | $fa-var-dribbble: "\f17d";
225 | $fa-var-drivers-license: "\f2c2";
226 | $fa-var-drivers-license-o: "\f2c3";
227 | $fa-var-dropbox: "\f16b";
228 | $fa-var-drupal: "\f1a9";
229 | $fa-var-edge: "\f282";
230 | $fa-var-edit: "\f044";
231 | $fa-var-eercast: "\f2da";
232 | $fa-var-eject: "\f052";
233 | $fa-var-ellipsis-h: "\f141";
234 | $fa-var-ellipsis-v: "\f142";
235 | $fa-var-empire: "\f1d1";
236 | $fa-var-envelope: "\f0e0";
237 | $fa-var-envelope-o: "\f003";
238 | $fa-var-envelope-open: "\f2b6";
239 | $fa-var-envelope-open-o: "\f2b7";
240 | $fa-var-envelope-square: "\f199";
241 | $fa-var-envira: "\f299";
242 | $fa-var-eraser: "\f12d";
243 | $fa-var-etsy: "\f2d7";
244 | $fa-var-eur: "\f153";
245 | $fa-var-euro: "\f153";
246 | $fa-var-exchange: "\f0ec";
247 | $fa-var-exclamation: "\f12a";
248 | $fa-var-exclamation-circle: "\f06a";
249 | $fa-var-exclamation-triangle: "\f071";
250 | $fa-var-expand: "\f065";
251 | $fa-var-expeditedssl: "\f23e";
252 | $fa-var-external-link: "\f08e";
253 | $fa-var-external-link-square: "\f14c";
254 | $fa-var-eye: "\f06e";
255 | $fa-var-eye-slash: "\f070";
256 | $fa-var-eyedropper: "\f1fb";
257 | $fa-var-fa: "\f2b4";
258 | $fa-var-facebook: "\f09a";
259 | $fa-var-facebook-f: "\f09a";
260 | $fa-var-facebook-official: "\f230";
261 | $fa-var-facebook-square: "\f082";
262 | $fa-var-fast-backward: "\f049";
263 | $fa-var-fast-forward: "\f050";
264 | $fa-var-fax: "\f1ac";
265 | $fa-var-feed: "\f09e";
266 | $fa-var-female: "\f182";
267 | $fa-var-fighter-jet: "\f0fb";
268 | $fa-var-file: "\f15b";
269 | $fa-var-file-archive-o: "\f1c6";
270 | $fa-var-file-audio-o: "\f1c7";
271 | $fa-var-file-code-o: "\f1c9";
272 | $fa-var-file-excel-o: "\f1c3";
273 | $fa-var-file-image-o: "\f1c5";
274 | $fa-var-file-movie-o: "\f1c8";
275 | $fa-var-file-o: "\f016";
276 | $fa-var-file-pdf-o: "\f1c1";
277 | $fa-var-file-photo-o: "\f1c5";
278 | $fa-var-file-picture-o: "\f1c5";
279 | $fa-var-file-powerpoint-o: "\f1c4";
280 | $fa-var-file-sound-o: "\f1c7";
281 | $fa-var-file-text: "\f15c";
282 | $fa-var-file-text-o: "\f0f6";
283 | $fa-var-file-video-o: "\f1c8";
284 | $fa-var-file-word-o: "\f1c2";
285 | $fa-var-file-zip-o: "\f1c6";
286 | $fa-var-files-o: "\f0c5";
287 | $fa-var-film: "\f008";
288 | $fa-var-filter: "\f0b0";
289 | $fa-var-fire: "\f06d";
290 | $fa-var-fire-extinguisher: "\f134";
291 | $fa-var-firefox: "\f269";
292 | $fa-var-first-order: "\f2b0";
293 | $fa-var-flag: "\f024";
294 | $fa-var-flag-checkered: "\f11e";
295 | $fa-var-flag-o: "\f11d";
296 | $fa-var-flash: "\f0e7";
297 | $fa-var-flask: "\f0c3";
298 | $fa-var-flickr: "\f16e";
299 | $fa-var-floppy-o: "\f0c7";
300 | $fa-var-folder: "\f07b";
301 | $fa-var-folder-o: "\f114";
302 | $fa-var-folder-open: "\f07c";
303 | $fa-var-folder-open-o: "\f115";
304 | $fa-var-font: "\f031";
305 | $fa-var-font-awesome: "\f2b4";
306 | $fa-var-fonticons: "\f280";
307 | $fa-var-fort-awesome: "\f286";
308 | $fa-var-forumbee: "\f211";
309 | $fa-var-forward: "\f04e";
310 | $fa-var-foursquare: "\f180";
311 | $fa-var-free-code-camp: "\f2c5";
312 | $fa-var-frown-o: "\f119";
313 | $fa-var-futbol-o: "\f1e3";
314 | $fa-var-gamepad: "\f11b";
315 | $fa-var-gavel: "\f0e3";
316 | $fa-var-gbp: "\f154";
317 | $fa-var-ge: "\f1d1";
318 | $fa-var-gear: "\f013";
319 | $fa-var-gears: "\f085";
320 | $fa-var-genderless: "\f22d";
321 | $fa-var-get-pocket: "\f265";
322 | $fa-var-gg: "\f260";
323 | $fa-var-gg-circle: "\f261";
324 | $fa-var-gift: "\f06b";
325 | $fa-var-git: "\f1d3";
326 | $fa-var-git-square: "\f1d2";
327 | $fa-var-github: "\f09b";
328 | $fa-var-github-alt: "\f113";
329 | $fa-var-github-square: "\f092";
330 | $fa-var-gitlab: "\f296";
331 | $fa-var-gittip: "\f184";
332 | $fa-var-glass: "\f000";
333 | $fa-var-glide: "\f2a5";
334 | $fa-var-glide-g: "\f2a6";
335 | $fa-var-globe: "\f0ac";
336 | $fa-var-google: "\f1a0";
337 | $fa-var-google-plus: "\f0d5";
338 | $fa-var-google-plus-circle: "\f2b3";
339 | $fa-var-google-plus-official: "\f2b3";
340 | $fa-var-google-plus-square: "\f0d4";
341 | $fa-var-google-wallet: "\f1ee";
342 | $fa-var-graduation-cap: "\f19d";
343 | $fa-var-gratipay: "\f184";
344 | $fa-var-grav: "\f2d6";
345 | $fa-var-group: "\f0c0";
346 | $fa-var-h-square: "\f0fd";
347 | $fa-var-hacker-news: "\f1d4";
348 | $fa-var-hand-grab-o: "\f255";
349 | $fa-var-hand-lizard-o: "\f258";
350 | $fa-var-hand-o-down: "\f0a7";
351 | $fa-var-hand-o-left: "\f0a5";
352 | $fa-var-hand-o-right: "\f0a4";
353 | $fa-var-hand-o-up: "\f0a6";
354 | $fa-var-hand-paper-o: "\f256";
355 | $fa-var-hand-peace-o: "\f25b";
356 | $fa-var-hand-pointer-o: "\f25a";
357 | $fa-var-hand-rock-o: "\f255";
358 | $fa-var-hand-scissors-o: "\f257";
359 | $fa-var-hand-spock-o: "\f259";
360 | $fa-var-hand-stop-o: "\f256";
361 | $fa-var-handshake-o: "\f2b5";
362 | $fa-var-hard-of-hearing: "\f2a4";
363 | $fa-var-hashtag: "\f292";
364 | $fa-var-hdd-o: "\f0a0";
365 | $fa-var-header: "\f1dc";
366 | $fa-var-headphones: "\f025";
367 | $fa-var-heart: "\f004";
368 | $fa-var-heart-o: "\f08a";
369 | $fa-var-heartbeat: "\f21e";
370 | $fa-var-history: "\f1da";
371 | $fa-var-home: "\f015";
372 | $fa-var-hospital-o: "\f0f8";
373 | $fa-var-hotel: "\f236";
374 | $fa-var-hourglass: "\f254";
375 | $fa-var-hourglass-1: "\f251";
376 | $fa-var-hourglass-2: "\f252";
377 | $fa-var-hourglass-3: "\f253";
378 | $fa-var-hourglass-end: "\f253";
379 | $fa-var-hourglass-half: "\f252";
380 | $fa-var-hourglass-o: "\f250";
381 | $fa-var-hourglass-start: "\f251";
382 | $fa-var-houzz: "\f27c";
383 | $fa-var-html5: "\f13b";
384 | $fa-var-i-cursor: "\f246";
385 | $fa-var-id-badge: "\f2c1";
386 | $fa-var-id-card: "\f2c2";
387 | $fa-var-id-card-o: "\f2c3";
388 | $fa-var-ils: "\f20b";
389 | $fa-var-image: "\f03e";
390 | $fa-var-imdb: "\f2d8";
391 | $fa-var-inbox: "\f01c";
392 | $fa-var-indent: "\f03c";
393 | $fa-var-industry: "\f275";
394 | $fa-var-info: "\f129";
395 | $fa-var-info-circle: "\f05a";
396 | $fa-var-inr: "\f156";
397 | $fa-var-instagram: "\f16d";
398 | $fa-var-institution: "\f19c";
399 | $fa-var-internet-explorer: "\f26b";
400 | $fa-var-intersex: "\f224";
401 | $fa-var-ioxhost: "\f208";
402 | $fa-var-italic: "\f033";
403 | $fa-var-joomla: "\f1aa";
404 | $fa-var-jpy: "\f157";
405 | $fa-var-jsfiddle: "\f1cc";
406 | $fa-var-key: "\f084";
407 | $fa-var-keyboard-o: "\f11c";
408 | $fa-var-krw: "\f159";
409 | $fa-var-language: "\f1ab";
410 | $fa-var-laptop: "\f109";
411 | $fa-var-lastfm: "\f202";
412 | $fa-var-lastfm-square: "\f203";
413 | $fa-var-leaf: "\f06c";
414 | $fa-var-leanpub: "\f212";
415 | $fa-var-legal: "\f0e3";
416 | $fa-var-lemon-o: "\f094";
417 | $fa-var-level-down: "\f149";
418 | $fa-var-level-up: "\f148";
419 | $fa-var-life-bouy: "\f1cd";
420 | $fa-var-life-buoy: "\f1cd";
421 | $fa-var-life-ring: "\f1cd";
422 | $fa-var-life-saver: "\f1cd";
423 | $fa-var-lightbulb-o: "\f0eb";
424 | $fa-var-line-chart: "\f201";
425 | $fa-var-link: "\f0c1";
426 | $fa-var-linkedin: "\f0e1";
427 | $fa-var-linkedin-square: "\f08c";
428 | $fa-var-linode: "\f2b8";
429 | $fa-var-linux: "\f17c";
430 | $fa-var-list: "\f03a";
431 | $fa-var-list-alt: "\f022";
432 | $fa-var-list-ol: "\f0cb";
433 | $fa-var-list-ul: "\f0ca";
434 | $fa-var-location-arrow: "\f124";
435 | $fa-var-lock: "\f023";
436 | $fa-var-long-arrow-down: "\f175";
437 | $fa-var-long-arrow-left: "\f177";
438 | $fa-var-long-arrow-right: "\f178";
439 | $fa-var-long-arrow-up: "\f176";
440 | $fa-var-low-vision: "\f2a8";
441 | $fa-var-magic: "\f0d0";
442 | $fa-var-magnet: "\f076";
443 | $fa-var-mail-forward: "\f064";
444 | $fa-var-mail-reply: "\f112";
445 | $fa-var-mail-reply-all: "\f122";
446 | $fa-var-male: "\f183";
447 | $fa-var-map: "\f279";
448 | $fa-var-map-marker: "\f041";
449 | $fa-var-map-o: "\f278";
450 | $fa-var-map-pin: "\f276";
451 | $fa-var-map-signs: "\f277";
452 | $fa-var-mars: "\f222";
453 | $fa-var-mars-double: "\f227";
454 | $fa-var-mars-stroke: "\f229";
455 | $fa-var-mars-stroke-h: "\f22b";
456 | $fa-var-mars-stroke-v: "\f22a";
457 | $fa-var-maxcdn: "\f136";
458 | $fa-var-meanpath: "\f20c";
459 | $fa-var-medium: "\f23a";
460 | $fa-var-medkit: "\f0fa";
461 | $fa-var-meetup: "\f2e0";
462 | $fa-var-meh-o: "\f11a";
463 | $fa-var-mercury: "\f223";
464 | $fa-var-microchip: "\f2db";
465 | $fa-var-microphone: "\f130";
466 | $fa-var-microphone-slash: "\f131";
467 | $fa-var-minus: "\f068";
468 | $fa-var-minus-circle: "\f056";
469 | $fa-var-minus-square: "\f146";
470 | $fa-var-minus-square-o: "\f147";
471 | $fa-var-mixcloud: "\f289";
472 | $fa-var-mobile: "\f10b";
473 | $fa-var-mobile-phone: "\f10b";
474 | $fa-var-modx: "\f285";
475 | $fa-var-money: "\f0d6";
476 | $fa-var-moon-o: "\f186";
477 | $fa-var-mortar-board: "\f19d";
478 | $fa-var-motorcycle: "\f21c";
479 | $fa-var-mouse-pointer: "\f245";
480 | $fa-var-music: "\f001";
481 | $fa-var-navicon: "\f0c9";
482 | $fa-var-neuter: "\f22c";
483 | $fa-var-newspaper-o: "\f1ea";
484 | $fa-var-object-group: "\f247";
485 | $fa-var-object-ungroup: "\f248";
486 | $fa-var-odnoklassniki: "\f263";
487 | $fa-var-odnoklassniki-square: "\f264";
488 | $fa-var-opencart: "\f23d";
489 | $fa-var-openid: "\f19b";
490 | $fa-var-opera: "\f26a";
491 | $fa-var-optin-monster: "\f23c";
492 | $fa-var-outdent: "\f03b";
493 | $fa-var-pagelines: "\f18c";
494 | $fa-var-paint-brush: "\f1fc";
495 | $fa-var-paper-plane: "\f1d8";
496 | $fa-var-paper-plane-o: "\f1d9";
497 | $fa-var-paperclip: "\f0c6";
498 | $fa-var-paragraph: "\f1dd";
499 | $fa-var-paste: "\f0ea";
500 | $fa-var-pause: "\f04c";
501 | $fa-var-pause-circle: "\f28b";
502 | $fa-var-pause-circle-o: "\f28c";
503 | $fa-var-paw: "\f1b0";
504 | $fa-var-paypal: "\f1ed";
505 | $fa-var-pencil: "\f040";
506 | $fa-var-pencil-square: "\f14b";
507 | $fa-var-pencil-square-o: "\f044";
508 | $fa-var-percent: "\f295";
509 | $fa-var-phone: "\f095";
510 | $fa-var-phone-square: "\f098";
511 | $fa-var-photo: "\f03e";
512 | $fa-var-picture-o: "\f03e";
513 | $fa-var-pie-chart: "\f200";
514 | $fa-var-pied-piper: "\f2ae";
515 | $fa-var-pied-piper-alt: "\f1a8";
516 | $fa-var-pied-piper-pp: "\f1a7";
517 | $fa-var-pinterest: "\f0d2";
518 | $fa-var-pinterest-p: "\f231";
519 | $fa-var-pinterest-square: "\f0d3";
520 | $fa-var-plane: "\f072";
521 | $fa-var-play: "\f04b";
522 | $fa-var-play-circle: "\f144";
523 | $fa-var-play-circle-o: "\f01d";
524 | $fa-var-plug: "\f1e6";
525 | $fa-var-plus: "\f067";
526 | $fa-var-plus-circle: "\f055";
527 | $fa-var-plus-square: "\f0fe";
528 | $fa-var-plus-square-o: "\f196";
529 | $fa-var-podcast: "\f2ce";
530 | $fa-var-power-off: "\f011";
531 | $fa-var-print: "\f02f";
532 | $fa-var-product-hunt: "\f288";
533 | $fa-var-puzzle-piece: "\f12e";
534 | $fa-var-qq: "\f1d6";
535 | $fa-var-qrcode: "\f029";
536 | $fa-var-question: "\f128";
537 | $fa-var-question-circle: "\f059";
538 | $fa-var-question-circle-o: "\f29c";
539 | $fa-var-quora: "\f2c4";
540 | $fa-var-quote-left: "\f10d";
541 | $fa-var-quote-right: "\f10e";
542 | $fa-var-ra: "\f1d0";
543 | $fa-var-random: "\f074";
544 | $fa-var-ravelry: "\f2d9";
545 | $fa-var-rebel: "\f1d0";
546 | $fa-var-recycle: "\f1b8";
547 | $fa-var-reddit: "\f1a1";
548 | $fa-var-reddit-alien: "\f281";
549 | $fa-var-reddit-square: "\f1a2";
550 | $fa-var-refresh: "\f021";
551 | $fa-var-registered: "\f25d";
552 | $fa-var-remove: "\f00d";
553 | $fa-var-renren: "\f18b";
554 | $fa-var-reorder: "\f0c9";
555 | $fa-var-repeat: "\f01e";
556 | $fa-var-reply: "\f112";
557 | $fa-var-reply-all: "\f122";
558 | $fa-var-resistance: "\f1d0";
559 | $fa-var-retweet: "\f079";
560 | $fa-var-rmb: "\f157";
561 | $fa-var-road: "\f018";
562 | $fa-var-rocket: "\f135";
563 | $fa-var-rotate-left: "\f0e2";
564 | $fa-var-rotate-right: "\f01e";
565 | $fa-var-rouble: "\f158";
566 | $fa-var-rss: "\f09e";
567 | $fa-var-rss-square: "\f143";
568 | $fa-var-rub: "\f158";
569 | $fa-var-ruble: "\f158";
570 | $fa-var-rupee: "\f156";
571 | $fa-var-s15: "\f2cd";
572 | $fa-var-safari: "\f267";
573 | $fa-var-save: "\f0c7";
574 | $fa-var-scissors: "\f0c4";
575 | $fa-var-scribd: "\f28a";
576 | $fa-var-search: "\f002";
577 | $fa-var-search-minus: "\f010";
578 | $fa-var-search-plus: "\f00e";
579 | $fa-var-sellsy: "\f213";
580 | $fa-var-send: "\f1d8";
581 | $fa-var-send-o: "\f1d9";
582 | $fa-var-server: "\f233";
583 | $fa-var-share: "\f064";
584 | $fa-var-share-alt: "\f1e0";
585 | $fa-var-share-alt-square: "\f1e1";
586 | $fa-var-share-square: "\f14d";
587 | $fa-var-share-square-o: "\f045";
588 | $fa-var-shekel: "\f20b";
589 | $fa-var-sheqel: "\f20b";
590 | $fa-var-shield: "\f132";
591 | $fa-var-ship: "\f21a";
592 | $fa-var-shirtsinbulk: "\f214";
593 | $fa-var-shopping-bag: "\f290";
594 | $fa-var-shopping-basket: "\f291";
595 | $fa-var-shopping-cart: "\f07a";
596 | $fa-var-shower: "\f2cc";
597 | $fa-var-sign-in: "\f090";
598 | $fa-var-sign-language: "\f2a7";
599 | $fa-var-sign-out: "\f08b";
600 | $fa-var-signal: "\f012";
601 | $fa-var-signing: "\f2a7";
602 | $fa-var-simplybuilt: "\f215";
603 | $fa-var-sitemap: "\f0e8";
604 | $fa-var-skyatlas: "\f216";
605 | $fa-var-skype: "\f17e";
606 | $fa-var-slack: "\f198";
607 | $fa-var-sliders: "\f1de";
608 | $fa-var-slideshare: "\f1e7";
609 | $fa-var-smile-o: "\f118";
610 | $fa-var-snapchat: "\f2ab";
611 | $fa-var-snapchat-ghost: "\f2ac";
612 | $fa-var-snapchat-square: "\f2ad";
613 | $fa-var-snowflake-o: "\f2dc";
614 | $fa-var-soccer-ball-o: "\f1e3";
615 | $fa-var-sort: "\f0dc";
616 | $fa-var-sort-alpha-asc: "\f15d";
617 | $fa-var-sort-alpha-desc: "\f15e";
618 | $fa-var-sort-amount-asc: "\f160";
619 | $fa-var-sort-amount-desc: "\f161";
620 | $fa-var-sort-asc: "\f0de";
621 | $fa-var-sort-desc: "\f0dd";
622 | $fa-var-sort-down: "\f0dd";
623 | $fa-var-sort-numeric-asc: "\f162";
624 | $fa-var-sort-numeric-desc: "\f163";
625 | $fa-var-sort-up: "\f0de";
626 | $fa-var-soundcloud: "\f1be";
627 | $fa-var-space-shuttle: "\f197";
628 | $fa-var-spinner: "\f110";
629 | $fa-var-spoon: "\f1b1";
630 | $fa-var-spotify: "\f1bc";
631 | $fa-var-square: "\f0c8";
632 | $fa-var-square-o: "\f096";
633 | $fa-var-stack-exchange: "\f18d";
634 | $fa-var-stack-overflow: "\f16c";
635 | $fa-var-star: "\f005";
636 | $fa-var-star-half: "\f089";
637 | $fa-var-star-half-empty: "\f123";
638 | $fa-var-star-half-full: "\f123";
639 | $fa-var-star-half-o: "\f123";
640 | $fa-var-star-o: "\f006";
641 | $fa-var-steam: "\f1b6";
642 | $fa-var-steam-square: "\f1b7";
643 | $fa-var-step-backward: "\f048";
644 | $fa-var-step-forward: "\f051";
645 | $fa-var-stethoscope: "\f0f1";
646 | $fa-var-sticky-note: "\f249";
647 | $fa-var-sticky-note-o: "\f24a";
648 | $fa-var-stop: "\f04d";
649 | $fa-var-stop-circle: "\f28d";
650 | $fa-var-stop-circle-o: "\f28e";
651 | $fa-var-street-view: "\f21d";
652 | $fa-var-strikethrough: "\f0cc";
653 | $fa-var-stumbleupon: "\f1a4";
654 | $fa-var-stumbleupon-circle: "\f1a3";
655 | $fa-var-subscript: "\f12c";
656 | $fa-var-subway: "\f239";
657 | $fa-var-suitcase: "\f0f2";
658 | $fa-var-sun-o: "\f185";
659 | $fa-var-superpowers: "\f2dd";
660 | $fa-var-superscript: "\f12b";
661 | $fa-var-support: "\f1cd";
662 | $fa-var-table: "\f0ce";
663 | $fa-var-tablet: "\f10a";
664 | $fa-var-tachometer: "\f0e4";
665 | $fa-var-tag: "\f02b";
666 | $fa-var-tags: "\f02c";
667 | $fa-var-tasks: "\f0ae";
668 | $fa-var-taxi: "\f1ba";
669 | $fa-var-telegram: "\f2c6";
670 | $fa-var-television: "\f26c";
671 | $fa-var-tencent-weibo: "\f1d5";
672 | $fa-var-terminal: "\f120";
673 | $fa-var-text-height: "\f034";
674 | $fa-var-text-width: "\f035";
675 | $fa-var-th: "\f00a";
676 | $fa-var-th-large: "\f009";
677 | $fa-var-th-list: "\f00b";
678 | $fa-var-themeisle: "\f2b2";
679 | $fa-var-thermometer: "\f2c7";
680 | $fa-var-thermometer-0: "\f2cb";
681 | $fa-var-thermometer-1: "\f2ca";
682 | $fa-var-thermometer-2: "\f2c9";
683 | $fa-var-thermometer-3: "\f2c8";
684 | $fa-var-thermometer-4: "\f2c7";
685 | $fa-var-thermometer-empty: "\f2cb";
686 | $fa-var-thermometer-full: "\f2c7";
687 | $fa-var-thermometer-half: "\f2c9";
688 | $fa-var-thermometer-quarter: "\f2ca";
689 | $fa-var-thermometer-three-quarters: "\f2c8";
690 | $fa-var-thumb-tack: "\f08d";
691 | $fa-var-thumbs-down: "\f165";
692 | $fa-var-thumbs-o-down: "\f088";
693 | $fa-var-thumbs-o-up: "\f087";
694 | $fa-var-thumbs-up: "\f164";
695 | $fa-var-ticket: "\f145";
696 | $fa-var-times: "\f00d";
697 | $fa-var-times-circle: "\f057";
698 | $fa-var-times-circle-o: "\f05c";
699 | $fa-var-times-rectangle: "\f2d3";
700 | $fa-var-times-rectangle-o: "\f2d4";
701 | $fa-var-tint: "\f043";
702 | $fa-var-toggle-down: "\f150";
703 | $fa-var-toggle-left: "\f191";
704 | $fa-var-toggle-off: "\f204";
705 | $fa-var-toggle-on: "\f205";
706 | $fa-var-toggle-right: "\f152";
707 | $fa-var-toggle-up: "\f151";
708 | $fa-var-trademark: "\f25c";
709 | $fa-var-train: "\f238";
710 | $fa-var-transgender: "\f224";
711 | $fa-var-transgender-alt: "\f225";
712 | $fa-var-trash: "\f1f8";
713 | $fa-var-trash-o: "\f014";
714 | $fa-var-tree: "\f1bb";
715 | $fa-var-trello: "\f181";
716 | $fa-var-tripadvisor: "\f262";
717 | $fa-var-trophy: "\f091";
718 | $fa-var-truck: "\f0d1";
719 | $fa-var-try: "\f195";
720 | $fa-var-tty: "\f1e4";
721 | $fa-var-tumblr: "\f173";
722 | $fa-var-tumblr-square: "\f174";
723 | $fa-var-turkish-lira: "\f195";
724 | $fa-var-tv: "\f26c";
725 | $fa-var-twitch: "\f1e8";
726 | $fa-var-twitter: "\f099";
727 | $fa-var-twitter-square: "\f081";
728 | $fa-var-umbrella: "\f0e9";
729 | $fa-var-underline: "\f0cd";
730 | $fa-var-undo: "\f0e2";
731 | $fa-var-universal-access: "\f29a";
732 | $fa-var-university: "\f19c";
733 | $fa-var-unlink: "\f127";
734 | $fa-var-unlock: "\f09c";
735 | $fa-var-unlock-alt: "\f13e";
736 | $fa-var-unsorted: "\f0dc";
737 | $fa-var-upload: "\f093";
738 | $fa-var-usb: "\f287";
739 | $fa-var-usd: "\f155";
740 | $fa-var-user: "\f007";
741 | $fa-var-user-circle: "\f2bd";
742 | $fa-var-user-circle-o: "\f2be";
743 | $fa-var-user-md: "\f0f0";
744 | $fa-var-user-o: "\f2c0";
745 | $fa-var-user-plus: "\f234";
746 | $fa-var-user-secret: "\f21b";
747 | $fa-var-user-times: "\f235";
748 | $fa-var-users: "\f0c0";
749 | $fa-var-vcard: "\f2bb";
750 | $fa-var-vcard-o: "\f2bc";
751 | $fa-var-venus: "\f221";
752 | $fa-var-venus-double: "\f226";
753 | $fa-var-venus-mars: "\f228";
754 | $fa-var-viacoin: "\f237";
755 | $fa-var-viadeo: "\f2a9";
756 | $fa-var-viadeo-square: "\f2aa";
757 | $fa-var-video-camera: "\f03d";
758 | $fa-var-vimeo: "\f27d";
759 | $fa-var-vimeo-square: "\f194";
760 | $fa-var-vine: "\f1ca";
761 | $fa-var-vk: "\f189";
762 | $fa-var-volume-control-phone: "\f2a0";
763 | $fa-var-volume-down: "\f027";
764 | $fa-var-volume-off: "\f026";
765 | $fa-var-volume-up: "\f028";
766 | $fa-var-warning: "\f071";
767 | $fa-var-wechat: "\f1d7";
768 | $fa-var-weibo: "\f18a";
769 | $fa-var-weixin: "\f1d7";
770 | $fa-var-whatsapp: "\f232";
771 | $fa-var-wheelchair: "\f193";
772 | $fa-var-wheelchair-alt: "\f29b";
773 | $fa-var-wifi: "\f1eb";
774 | $fa-var-wikipedia-w: "\f266";
775 | $fa-var-window-close: "\f2d3";
776 | $fa-var-window-close-o: "\f2d4";
777 | $fa-var-window-maximize: "\f2d0";
778 | $fa-var-window-minimize: "\f2d1";
779 | $fa-var-window-restore: "\f2d2";
780 | $fa-var-windows: "\f17a";
781 | $fa-var-won: "\f159";
782 | $fa-var-wordpress: "\f19a";
783 | $fa-var-wpbeginner: "\f297";
784 | $fa-var-wpexplorer: "\f2de";
785 | $fa-var-wpforms: "\f298";
786 | $fa-var-wrench: "\f0ad";
787 | $fa-var-xing: "\f168";
788 | $fa-var-xing-square: "\f169";
789 | $fa-var-y-combinator: "\f23b";
790 | $fa-var-y-combinator-square: "\f1d4";
791 | $fa-var-yahoo: "\f19e";
792 | $fa-var-yc: "\f23b";
793 | $fa-var-yc-square: "\f1d4";
794 | $fa-var-yelp: "\f1e9";
795 | $fa-var-yen: "\f157";
796 | $fa-var-yoast: "\f2b1";
797 | $fa-var-youtube: "\f167";
798 | $fa-var-youtube-play: "\f16a";
799 | $fa-var-youtube-square: "\f166";
800 |
801 |
--------------------------------------------------------------------------------
/source/stylesheets/icomoon.css:
--------------------------------------------------------------------------------
1 | @font-face {
2 | font-family: 'icomoon';
3 | src: url('../fonts/icomoon/icomoon.eot?6iuir');
4 | src: url('../fonts/icomoon/icomoon.eot?6iuir#iefix') format('embedded-opentype'),
5 | url('../fonts/icomoon/icomoon.ttf?6iuir') format('truetype'),
6 | url('../fonts/icomoon/icomoon.woff?6iuir') format('woff'),
7 | url('../fonts/icomoon/icomoon.svg?6iuir#icomoon') format('svg');
8 | font-weight: normal;
9 | font-style: normal;
10 | }
11 |
12 | [class^="icon-"], [class*=" icon-"] {
13 | /* use !important to prevent issues with browser extensions that change fonts */
14 | font-family: 'icomoon' !important;
15 | speak: none;
16 | font-style: normal;
17 | font-weight: normal;
18 | font-variant: normal;
19 | text-transform: none;
20 | line-height: 1;
21 |
22 | /* Better Font Rendering =========== */
23 | -webkit-font-smoothing: antialiased;
24 | -moz-osx-font-smoothing: grayscale;
25 | }
26 |
27 | .icon-eye:before {
28 | content: "\e000";
29 | }
30 | .icon-paper-clip:before {
31 | content: "\e001";
32 | }
33 | .icon-mail:before {
34 | content: "\e002";
35 | }
36 | .icon-toggle:before {
37 | content: "\e003";
38 | }
39 | .icon-layout:before {
40 | content: "\e004";
41 | }
42 | .icon-link:before {
43 | content: "\e005";
44 | }
45 | .icon-bell:before {
46 | content: "\e006";
47 | }
48 | .icon-lock:before {
49 | content: "\e007";
50 | }
51 | .icon-unlock:before {
52 | content: "\e008";
53 | }
54 | .icon-ribbon:before {
55 | content: "\e009";
56 | }
57 | .icon-image:before {
58 | content: "\e010";
59 | }
60 | .icon-signal:before {
61 | content: "\e011";
62 | }
63 | .icon-target:before {
64 | content: "\e012";
65 | }
66 | .icon-clipboard:before {
67 | content: "\e013";
68 | }
69 | .icon-clock:before {
70 | content: "\e014";
71 | }
72 | .icon-watch:before {
73 | content: "\e015";
74 | }
75 | .icon-air-play:before {
76 | content: "\e016";
77 | }
78 | .icon-camera:before {
79 | content: "\e017";
80 | }
81 | .icon-video:before {
82 | content: "\e018";
83 | }
84 | .icon-disc:before {
85 | content: "\e019";
86 | }
87 | .icon-printer:before {
88 | content: "\e020";
89 | }
90 | .icon-monitor:before {
91 | content: "\e021";
92 | }
93 | .icon-server:before {
94 | content: "\e022";
95 | }
96 | .icon-cog:before {
97 | content: "\e023";
98 | }
99 | .icon-heart:before {
100 | content: "\e024";
101 | }
102 | .icon-paragraph:before {
103 | content: "\e025";
104 | }
105 | .icon-align-justify:before {
106 | content: "\e026";
107 | }
108 | .icon-align-left:before {
109 | content: "\e027";
110 | }
111 | .icon-align-center:before {
112 | content: "\e028";
113 | }
114 | .icon-align-right:before {
115 | content: "\e029";
116 | }
117 | .icon-book:before {
118 | content: "\e030";
119 | }
120 | .icon-layers:before {
121 | content: "\e031";
122 | }
123 | .icon-stack:before {
124 | content: "\e032";
125 | }
126 | .icon-stack-2:before {
127 | content: "\e033";
128 | }
129 | .icon-paper:before {
130 | content: "\e034";
131 | }
132 | .icon-paper-stack:before {
133 | content: "\e035";
134 | }
135 | .icon-search:before {
136 | content: "\e036";
137 | }
138 | .icon-zoom-in:before {
139 | content: "\e037";
140 | }
141 | .icon-zoom-out:before {
142 | content: "\e038";
143 | }
144 | .icon-reply:before {
145 | content: "\e039";
146 | }
147 | .icon-circle-plus:before {
148 | content: "\e040";
149 | }
150 | .icon-circle-minus:before {
151 | content: "\e041";
152 | }
153 | .icon-circle-check:before {
154 | content: "\e042";
155 | }
156 | .icon-circle-cross:before {
157 | content: "\e043";
158 | }
159 | .icon-square-plus:before {
160 | content: "\e044";
161 | }
162 | .icon-square-minus:before {
163 | content: "\e045";
164 | }
165 | .icon-square-check:before {
166 | content: "\e046";
167 | }
168 | .icon-square-cross:before {
169 | content: "\e047";
170 | }
171 | .icon-microphone:before {
172 | content: "\e048";
173 | }
174 | .icon-record:before {
175 | content: "\e049";
176 | }
177 | .icon-skip-back:before {
178 | content: "\e050";
179 | }
180 | .icon-rewind:before {
181 | content: "\e051";
182 | }
183 | .icon-play:before {
184 | content: "\e052";
185 | }
186 | .icon-pause:before {
187 | content: "\e053";
188 | }
189 | .icon-stop:before {
190 | content: "\e054";
191 | }
192 | .icon-fast-forward:before {
193 | content: "\e055";
194 | }
195 | .icon-skip-forward:before {
196 | content: "\e056";
197 | }
198 | .icon-shuffle:before {
199 | content: "\e057";
200 | }
201 | .icon-repeat:before {
202 | content: "\e058";
203 | }
204 | .icon-folder:before {
205 | content: "\e059";
206 | }
207 | .icon-umbrella:before {
208 | content: "\e060";
209 | }
210 | .icon-moon:before {
211 | content: "\e061";
212 | }
213 | .icon-thermometer:before {
214 | content: "\e062";
215 | }
216 | .icon-drop:before {
217 | content: "\e063";
218 | }
219 | .icon-sun:before {
220 | content: "\e064";
221 | }
222 | .icon-cloud:before {
223 | content: "\e065";
224 | }
225 | .icon-cloud-upload:before {
226 | content: "\e066";
227 | }
228 | .icon-cloud-download:before {
229 | content: "\e067";
230 | }
231 | .icon-upload:before {
232 | content: "\e068";
233 | }
234 | .icon-download:before {
235 | content: "\e069";
236 | }
237 | .icon-location:before {
238 | content: "\e070";
239 | }
240 | .icon-location-2:before {
241 | content: "\e071";
242 | }
243 | .icon-map:before {
244 | content: "\e072";
245 | }
246 | .icon-battery:before {
247 | content: "\e073";
248 | }
249 | .icon-head:before {
250 | content: "\e074";
251 | }
252 | .icon-briefcase:before {
253 | content: "\e075";
254 | }
255 | .icon-speech-bubble:before {
256 | content: "\e076";
257 | }
258 | .icon-anchor:before {
259 | content: "\e077";
260 | }
261 | .icon-globe:before {
262 | content: "\e078";
263 | }
264 | .icon-box:before {
265 | content: "\e079";
266 | }
267 | .icon-reload:before {
268 | content: "\e080";
269 | }
270 | .icon-share:before {
271 | content: "\e081";
272 | }
273 | .icon-marquee:before {
274 | content: "\e082";
275 | }
276 | .icon-marquee-plus:before {
277 | content: "\e083";
278 | }
279 | .icon-marquee-minus:before {
280 | content: "\e084";
281 | }
282 | .icon-tag:before {
283 | content: "\e085";
284 | }
285 | .icon-power:before {
286 | content: "\e086";
287 | }
288 | .icon-command:before {
289 | content: "\e087";
290 | }
291 | .icon-alt:before {
292 | content: "\e088";
293 | }
294 | .icon-esc:before {
295 | content: "\e089";
296 | }
297 | .icon-bar-graph:before {
298 | content: "\e090";
299 | }
300 | .icon-bar-graph-2:before {
301 | content: "\e091";
302 | }
303 | .icon-pie-graph:before {
304 | content: "\e092";
305 | }
306 | .icon-star:before {
307 | content: "\e093";
308 | }
309 | .icon-arrow-left:before {
310 | content: "\e094";
311 | }
312 | .icon-arrow-right:before {
313 | content: "\e095";
314 | }
315 | .icon-arrow-up:before {
316 | content: "\e096";
317 | }
318 | .icon-arrow-down:before {
319 | content: "\e097";
320 | }
321 | .icon-volume:before {
322 | content: "\e098";
323 | }
324 | .icon-mute:before {
325 | content: "\e099";
326 | }
327 | .icon-content-right:before {
328 | content: "\e100";
329 | }
330 | .icon-content-left:before {
331 | content: "\e101";
332 | }
333 | .icon-grid:before {
334 | content: "\e102";
335 | }
336 | .icon-grid-2:before {
337 | content: "\e103";
338 | }
339 | .icon-columns:before {
340 | content: "\e104";
341 | }
342 | .icon-loader:before {
343 | content: "\e105";
344 | }
345 | .icon-bag:before {
346 | content: "\e106";
347 | }
348 | .icon-ban:before {
349 | content: "\e107";
350 | }
351 | .icon-flag:before {
352 | content: "\e108";
353 | }
354 | .icon-trash:before {
355 | content: "\e109";
356 | }
357 | .icon-expand:before {
358 | content: "\e110";
359 | }
360 | .icon-contract:before {
361 | content: "\e111";
362 | }
363 | .icon-maximize:before {
364 | content: "\e112";
365 | }
366 | .icon-minimize:before {
367 | content: "\e113";
368 | }
369 | .icon-plus:before {
370 | content: "\e114";
371 | }
372 | .icon-minus:before {
373 | content: "\e115";
374 | }
375 | .icon-check:before {
376 | content: "\e116";
377 | }
378 | .icon-cross:before {
379 | content: "\e117";
380 | }
381 | .icon-move:before {
382 | content: "\e118";
383 | }
384 | .icon-delete:before {
385 | content: "\e119";
386 | }
387 | .icon-menu:before {
388 | content: "\e120";
389 | }
390 | .icon-archive:before {
391 | content: "\e121";
392 | }
393 | .icon-inbox:before {
394 | content: "\e122";
395 | }
396 | .icon-outbox:before {
397 | content: "\e123";
398 | }
399 | .icon-file:before {
400 | content: "\e124";
401 | }
402 | .icon-file-add:before {
403 | content: "\e125";
404 | }
405 | .icon-file-subtract:before {
406 | content: "\e126";
407 | }
408 | .icon-help:before {
409 | content: "\e127";
410 | }
411 | .icon-open:before {
412 | content: "\e128";
413 | }
414 | .icon-ellipsis:before {
415 | content: "\e129";
416 | }
417 | .icon-add-to-list:before {
418 | content: "\e900";
419 | }
420 | .icon-classic-computer:before {
421 | content: "\e901";
422 | }
423 | .icon-controller-fast-backward:before {
424 | content: "\e902";
425 | }
426 | .icon-creative-commons-attribution:before {
427 | content: "\e903";
428 | }
429 | .icon-creative-commons-noderivs:before {
430 | content: "\e904";
431 | }
432 | .icon-creative-commons-noncommercial-eu:before {
433 | content: "\e905";
434 | }
435 | .icon-creative-commons-noncommercial-us:before {
436 | content: "\e906";
437 | }
438 | .icon-creative-commons-public-domain:before {
439 | content: "\e907";
440 | }
441 | .icon-creative-commons-remix:before {
442 | content: "\e908";
443 | }
444 | .icon-creative-commons-share:before {
445 | content: "\e909";
446 | }
447 | .icon-creative-commons-sharealike:before {
448 | content: "\e90a";
449 | }
450 | .icon-creative-commons:before {
451 | content: "\e90b";
452 | }
453 | .icon-document-landscape:before {
454 | content: "\e90c";
455 | }
456 | .icon-remove-user:before {
457 | content: "\e90d";
458 | }
459 | .icon-warning:before {
460 | content: "\e90e";
461 | }
462 | .icon-arrow-bold-down:before {
463 | content: "\e90f";
464 | }
465 | .icon-arrow-bold-left:before {
466 | content: "\e910";
467 | }
468 | .icon-arrow-bold-right:before {
469 | content: "\e911";
470 | }
471 | .icon-arrow-bold-up:before {
472 | content: "\e912";
473 | }
474 | .icon-arrow-down2:before {
475 | content: "\e913";
476 | }
477 | .icon-arrow-left2:before {
478 | content: "\e914";
479 | }
480 | .icon-arrow-long-down:before {
481 | content: "\e915";
482 | }
483 | .icon-arrow-long-left:before {
484 | content: "\e916";
485 | }
486 | .icon-arrow-long-right:before {
487 | content: "\e917";
488 | }
489 | .icon-arrow-long-up:before {
490 | content: "\e918";
491 | }
492 | .icon-arrow-right2:before {
493 | content: "\e919";
494 | }
495 | .icon-arrow-up2:before {
496 | content: "\e91a";
497 | }
498 | .icon-arrow-with-circle-down:before {
499 | content: "\e91b";
500 | }
501 | .icon-arrow-with-circle-left:before {
502 | content: "\e91c";
503 | }
504 | .icon-arrow-with-circle-right:before {
505 | content: "\e91d";
506 | }
507 | .icon-arrow-with-circle-up:before {
508 | content: "\e91e";
509 | }
510 | .icon-bookmark:before {
511 | content: "\e91f";
512 | }
513 | .icon-bookmarks:before {
514 | content: "\e920";
515 | }
516 | .icon-chevron-down:before {
517 | content: "\e921";
518 | }
519 | .icon-chevron-left:before {
520 | content: "\e922";
521 | }
522 | .icon-chevron-right:before {
523 | content: "\e923";
524 | }
525 | .icon-chevron-small-down:before {
526 | content: "\e924";
527 | }
528 | .icon-chevron-small-left:before {
529 | content: "\e925";
530 | }
531 | .icon-chevron-small-right:before {
532 | content: "\e926";
533 | }
534 | .icon-chevron-small-up:before {
535 | content: "\e927";
536 | }
537 | .icon-chevron-thin-down:before {
538 | content: "\e928";
539 | }
540 | .icon-chevron-thin-left:before {
541 | content: "\e929";
542 | }
543 | .icon-chevron-thin-right:before {
544 | content: "\e92a";
545 | }
546 | .icon-chevron-thin-up:before {
547 | content: "\e92b";
548 | }
549 | .icon-chevron-up:before {
550 | content: "\e92c";
551 | }
552 | .icon-chevron-with-circle-down:before {
553 | content: "\e92d";
554 | }
555 | .icon-chevron-with-circle-left:before {
556 | content: "\e92e";
557 | }
558 | .icon-chevron-with-circle-right:before {
559 | content: "\e92f";
560 | }
561 | .icon-chevron-with-circle-up:before {
562 | content: "\e930";
563 | }
564 | .icon-cloud2:before {
565 | content: "\e931";
566 | }
567 | .icon-controller-fast-forward:before {
568 | content: "\e932";
569 | }
570 | .icon-controller-jump-to-start:before {
571 | content: "\e933";
572 | }
573 | .icon-controller-next:before {
574 | content: "\e934";
575 | }
576 | .icon-controller-paus:before {
577 | content: "\e935";
578 | }
579 | .icon-controller-play:before {
580 | content: "\e936";
581 | }
582 | .icon-controller-record:before {
583 | content: "\e937";
584 | }
585 | .icon-controller-stop:before {
586 | content: "\e938";
587 | }
588 | .icon-controller-volume:before {
589 | content: "\e939";
590 | }
591 | .icon-dot-single:before {
592 | content: "\e93a";
593 | }
594 | .icon-dots-three-horizontal:before {
595 | content: "\e93b";
596 | }
597 | .icon-dots-three-vertical:before {
598 | content: "\e93c";
599 | }
600 | .icon-dots-two-horizontal:before {
601 | content: "\e93d";
602 | }
603 | .icon-dots-two-vertical:before {
604 | content: "\e93e";
605 | }
606 | .icon-download2:before {
607 | content: "\e93f";
608 | }
609 | .icon-emoji-flirt:before {
610 | content: "\e940";
611 | }
612 | .icon-flow-branch:before {
613 | content: "\e941";
614 | }
615 | .icon-flow-cascade:before {
616 | content: "\e942";
617 | }
618 | .icon-flow-line:before {
619 | content: "\e943";
620 | }
621 | .icon-flow-parallel:before {
622 | content: "\e944";
623 | }
624 | .icon-flow-tree:before {
625 | content: "\e945";
626 | }
627 | .icon-install:before {
628 | content: "\e946";
629 | }
630 | .icon-layers2:before {
631 | content: "\e947";
632 | }
633 | .icon-open-book:before {
634 | content: "\e948";
635 | }
636 | .icon-resize-100:before {
637 | content: "\e949";
638 | }
639 | .icon-resize-full-screen:before {
640 | content: "\e94a";
641 | }
642 | .icon-save:before {
643 | content: "\e94b";
644 | }
645 | .icon-select-arrows:before {
646 | content: "\e94c";
647 | }
648 | .icon-sound-mute:before {
649 | content: "\e94d";
650 | }
651 | .icon-sound:before {
652 | content: "\e94e";
653 | }
654 | .icon-trash2:before {
655 | content: "\e94f";
656 | }
657 | .icon-triangle-down:before {
658 | content: "\e950";
659 | }
660 | .icon-triangle-left:before {
661 | content: "\e951";
662 | }
663 | .icon-triangle-right:before {
664 | content: "\e952";
665 | }
666 | .icon-triangle-up:before {
667 | content: "\e953";
668 | }
669 | .icon-uninstall:before {
670 | content: "\e954";
671 | }
672 | .icon-upload-to-cloud:before {
673 | content: "\e955";
674 | }
675 | .icon-upload2:before {
676 | content: "\e956";
677 | }
678 | .icon-add-user:before {
679 | content: "\e957";
680 | }
681 | .icon-address:before {
682 | content: "\e958";
683 | }
684 | .icon-adjust:before {
685 | content: "\e959";
686 | }
687 | .icon-air:before {
688 | content: "\e95a";
689 | }
690 | .icon-aircraft-landing:before {
691 | content: "\e95b";
692 | }
693 | .icon-aircraft-take-off:before {
694 | content: "\e95c";
695 | }
696 | .icon-aircraft:before {
697 | content: "\e95d";
698 | }
699 | .icon-align-bottom:before {
700 | content: "\e95e";
701 | }
702 | .icon-align-horizontal-middle:before {
703 | content: "\e95f";
704 | }
705 | .icon-align-left2:before {
706 | content: "\e960";
707 | }
708 | .icon-align-right2:before {
709 | content: "\e961";
710 | }
711 | .icon-align-top:before {
712 | content: "\e962";
713 | }
714 | .icon-align-vertical-middle:before {
715 | content: "\e963";
716 | }
717 | .icon-archive2:before {
718 | content: "\e964";
719 | }
720 | .icon-area-graph:before {
721 | content: "\e965";
722 | }
723 | .icon-attachment:before {
724 | content: "\e966";
725 | }
726 | .icon-awareness-ribbon:before {
727 | content: "\e967";
728 | }
729 | .icon-back-in-time:before {
730 | content: "\e968";
731 | }
732 | .icon-back:before {
733 | content: "\e969";
734 | }
735 | .icon-bar-graph2:before {
736 | content: "\e96a";
737 | }
738 | .icon-battery2:before {
739 | content: "\e96b";
740 | }
741 | .icon-beamed-note:before {
742 | content: "\e96c";
743 | }
744 | .icon-bell2:before {
745 | content: "\e96d";
746 | }
747 | .icon-blackboard:before {
748 | content: "\e96e";
749 | }
750 | .icon-block:before {
751 | content: "\e96f";
752 | }
753 | .icon-book2:before {
754 | content: "\e970";
755 | }
756 | .icon-bowl:before {
757 | content: "\e971";
758 | }
759 | .icon-box2:before {
760 | content: "\e972";
761 | }
762 | .icon-briefcase2:before {
763 | content: "\e973";
764 | }
765 | .icon-browser:before {
766 | content: "\e974";
767 | }
768 | .icon-brush:before {
769 | content: "\e975";
770 | }
771 | .icon-bucket:before {
772 | content: "\e976";
773 | }
774 | .icon-cake:before {
775 | content: "\e977";
776 | }
777 | .icon-calculator:before {
778 | content: "\e978";
779 | }
780 | .icon-calendar:before {
781 | content: "\e979";
782 | }
783 | .icon-camera2:before {
784 | content: "\e97a";
785 | }
786 | .icon-ccw:before {
787 | content: "\e97b";
788 | }
789 | .icon-chat:before {
790 | content: "\e97c";
791 | }
792 | .icon-check2:before {
793 | content: "\e97d";
794 | }
795 | .icon-circle-with-cross:before {
796 | content: "\e97e";
797 | }
798 | .icon-circle-with-minus:before {
799 | content: "\e97f";
800 | }
801 | .icon-circle-with-plus:before {
802 | content: "\e980";
803 | }
804 | .icon-circle:before {
805 | content: "\e981";
806 | }
807 | .icon-circular-graph:before {
808 | content: "\e982";
809 | }
810 | .icon-clapperboard:before {
811 | content: "\e983";
812 | }
813 | .icon-clipboard2:before {
814 | content: "\e984";
815 | }
816 | .icon-clock2:before {
817 | content: "\e985";
818 | }
819 | .icon-code:before {
820 | content: "\e986";
821 | }
822 | .icon-cog2:before {
823 | content: "\e987";
824 | }
825 | .icon-colours:before {
826 | content: "\e988";
827 | }
828 | .icon-compass:before {
829 | content: "\e989";
830 | }
831 | .icon-copy:before {
832 | content: "\e98a";
833 | }
834 | .icon-credit-card:before {
835 | content: "\e98b";
836 | }
837 | .icon-credit:before {
838 | content: "\e98c";
839 | }
840 | .icon-cross2:before {
841 | content: "\e98d";
842 | }
843 | .icon-cup:before {
844 | content: "\e98e";
845 | }
846 | .icon-cw:before {
847 | content: "\e98f";
848 | }
849 | .icon-cycle:before {
850 | content: "\e990";
851 | }
852 | .icon-database:before {
853 | content: "\e991";
854 | }
855 | .icon-dial-pad:before {
856 | content: "\e992";
857 | }
858 | .icon-direction:before {
859 | content: "\e993";
860 | }
861 | .icon-document:before {
862 | content: "\e994";
863 | }
864 | .icon-documents:before {
865 | content: "\e995";
866 | }
867 | .icon-drink:before {
868 | content: "\e996";
869 | }
870 | .icon-drive:before {
871 | content: "\e997";
872 | }
873 | .icon-drop2:before {
874 | content: "\e998";
875 | }
876 | .icon-edit:before {
877 | content: "\e999";
878 | }
879 | .icon-email:before {
880 | content: "\e99a";
881 | }
882 | .icon-emoji-happy:before {
883 | content: "\e99b";
884 | }
885 | .icon-emoji-neutral:before {
886 | content: "\e99c";
887 | }
888 | .icon-emoji-sad:before {
889 | content: "\e99d";
890 | }
891 | .icon-erase:before {
892 | content: "\e99e";
893 | }
894 | .icon-eraser:before {
895 | content: "\e99f";
896 | }
897 | .icon-export:before {
898 | content: "\e9a0";
899 | }
900 | .icon-eye2:before {
901 | content: "\e9a1";
902 | }
903 | .icon-feather:before {
904 | content: "\e9a2";
905 | }
906 | .icon-flag2:before {
907 | content: "\e9a3";
908 | }
909 | .icon-flash:before {
910 | content: "\e9a4";
911 | }
912 | .icon-flashlight:before {
913 | content: "\e9a5";
914 | }
915 | .icon-flat-brush:before {
916 | content: "\e9a6";
917 | }
918 | .icon-folder-images:before {
919 | content: "\e9a7";
920 | }
921 | .icon-folder-music:before {
922 | content: "\e9a8";
923 | }
924 | .icon-folder-video:before {
925 | content: "\e9a9";
926 | }
927 | .icon-folder2:before {
928 | content: "\e9aa";
929 | }
930 | .icon-forward:before {
931 | content: "\e9ab";
932 | }
933 | .icon-funnel:before {
934 | content: "\e9ac";
935 | }
936 | .icon-game-controller:before {
937 | content: "\e9ad";
938 | }
939 | .icon-gauge:before {
940 | content: "\e9ae";
941 | }
942 | .icon-globe2:before {
943 | content: "\e9af";
944 | }
945 | .icon-graduation-cap:before {
946 | content: "\e9b0";
947 | }
948 | .icon-grid2:before {
949 | content: "\e9b1";
950 | }
951 | .icon-hair-cross:before {
952 | content: "\e9b2";
953 | }
954 | .icon-hand:before {
955 | content: "\e9b3";
956 | }
957 | .icon-heart-outlined:before {
958 | content: "\e9b4";
959 | }
960 | .icon-heart2:before {
961 | content: "\e9b5";
962 | }
963 | .icon-help-with-circle:before {
964 | content: "\e9b6";
965 | }
966 | .icon-help2:before {
967 | content: "\e9b7";
968 | }
969 | .icon-home:before {
970 | content: "\e9b8";
971 | }
972 | .icon-hour-glass:before {
973 | content: "\e9b9";
974 | }
975 | .icon-image-inverted:before {
976 | content: "\e9ba";
977 | }
978 | .icon-image2:before {
979 | content: "\e9bb";
980 | }
981 | .icon-images:before {
982 | content: "\e9bc";
983 | }
984 | .icon-inbox2:before {
985 | content: "\e9bd";
986 | }
987 | .icon-infinity:before {
988 | content: "\e9be";
989 | }
990 | .icon-info-with-circle:before {
991 | content: "\e9bf";
992 | }
993 | .icon-info:before {
994 | content: "\e9c0";
995 | }
996 | .icon-key:before {
997 | content: "\e9c1";
998 | }
999 | .icon-keyboard:before {
1000 | content: "\e9c2";
1001 | }
1002 | .icon-lab-flask:before {
1003 | content: "\e9c3";
1004 | }
1005 | .icon-landline:before {
1006 | content: "\e9c4";
1007 | }
1008 | .icon-language:before {
1009 | content: "\e9c5";
1010 | }
1011 | .icon-laptop:before {
1012 | content: "\e9c6";
1013 | }
1014 | .icon-leaf:before {
1015 | content: "\e9c7";
1016 | }
1017 | .icon-level-down:before {
1018 | content: "\e9c8";
1019 | }
1020 | .icon-level-up:before {
1021 | content: "\e9c9";
1022 | }
1023 | .icon-lifebuoy:before {
1024 | content: "\e9ca";
1025 | }
1026 | .icon-light-bulb:before {
1027 | content: "\e9cb";
1028 | }
1029 | .icon-light-down:before {
1030 | content: "\e9cc";
1031 | }
1032 | .icon-light-up:before {
1033 | content: "\e9cd";
1034 | }
1035 | .icon-line-graph:before {
1036 | content: "\e9ce";
1037 | }
1038 | .icon-link2:before {
1039 | content: "\e9cf";
1040 | }
1041 | .icon-list:before {
1042 | content: "\e9d0";
1043 | }
1044 | .icon-location-pin:before {
1045 | content: "\e9d1";
1046 | }
1047 | .icon-location2:before {
1048 | content: "\e9d2";
1049 | }
1050 | .icon-lock-open:before {
1051 | content: "\e9d3";
1052 | }
1053 | .icon-lock2:before {
1054 | content: "\e9d4";
1055 | }
1056 | .icon-log-out:before {
1057 | content: "\e9d5";
1058 | }
1059 | .icon-login:before {
1060 | content: "\e9d6";
1061 | }
1062 | .icon-loop:before {
1063 | content: "\e9d7";
1064 | }
1065 | .icon-magnet:before {
1066 | content: "\e9d8";
1067 | }
1068 | .icon-magnifying-glass:before {
1069 | content: "\e9d9";
1070 | }
1071 | .icon-mail2:before {
1072 | content: "\e9da";
1073 | }
1074 | .icon-man:before {
1075 | content: "\e9db";
1076 | }
1077 | .icon-map2:before {
1078 | content: "\e9dc";
1079 | }
1080 | .icon-mask:before {
1081 | content: "\e9dd";
1082 | }
1083 | .icon-medal:before {
1084 | content: "\e9de";
1085 | }
1086 | .icon-megaphone:before {
1087 | content: "\e9df";
1088 | }
1089 | .icon-menu2:before {
1090 | content: "\e9e0";
1091 | }
1092 | .icon-message:before {
1093 | content: "\e9e1";
1094 | }
1095 | .icon-mic:before {
1096 | content: "\e9e2";
1097 | }
1098 | .icon-minus2:before {
1099 | content: "\e9e3";
1100 | }
1101 | .icon-mobile:before {
1102 | content: "\e9e4";
1103 | }
1104 | .icon-modern-mic:before {
1105 | content: "\e9e5";
1106 | }
1107 | .icon-moon2:before {
1108 | content: "\e9e6";
1109 | }
1110 | .icon-mouse:before {
1111 | content: "\e9e7";
1112 | }
1113 | .icon-music:before {
1114 | content: "\e9e8";
1115 | }
1116 | .icon-network:before {
1117 | content: "\e9e9";
1118 | }
1119 | .icon-new-message:before {
1120 | content: "\e9ea";
1121 | }
1122 | .icon-new:before {
1123 | content: "\e9eb";
1124 | }
1125 | .icon-news:before {
1126 | content: "\e9ec";
1127 | }
1128 | .icon-note:before {
1129 | content: "\e9ed";
1130 | }
1131 | .icon-notification:before {
1132 | content: "\e9ee";
1133 | }
1134 | .icon-old-mobile:before {
1135 | content: "\e9ef";
1136 | }
1137 | .icon-old-phone:before {
1138 | content: "\e9f0";
1139 | }
1140 | .icon-palette:before {
1141 | content: "\e9f1";
1142 | }
1143 | .icon-paper-plane:before {
1144 | content: "\e9f2";
1145 | }
1146 | .icon-pencil:before {
1147 | content: "\e9f3";
1148 | }
1149 | .icon-phone:before {
1150 | content: "\e9f4";
1151 | }
1152 | .icon-pie-chart:before {
1153 | content: "\e9f5";
1154 | }
1155 | .icon-pin:before {
1156 | content: "\e9f6";
1157 | }
1158 | .icon-plus2:before {
1159 | content: "\e9f7";
1160 | }
1161 | .icon-popup:before {
1162 | content: "\e9f8";
1163 | }
1164 | .icon-power-plug:before {
1165 | content: "\e9f9";
1166 | }
1167 | .icon-price-ribbon:before {
1168 | content: "\e9fa";
1169 | }
1170 | .icon-price-tag:before {
1171 | content: "\e9fb";
1172 | }
1173 | .icon-print:before {
1174 | content: "\e9fc";
1175 | }
1176 | .icon-progress-empty:before {
1177 | content: "\e9fd";
1178 | }
1179 | .icon-progress-full:before {
1180 | content: "\e9fe";
1181 | }
1182 | .icon-progress-one:before {
1183 | content: "\e9ff";
1184 | }
1185 | .icon-progress-two:before {
1186 | content: "\ea00";
1187 | }
1188 | .icon-publish:before {
1189 | content: "\ea01";
1190 | }
1191 | .icon-quote:before {
1192 | content: "\ea02";
1193 | }
1194 | .icon-radio:before {
1195 | content: "\ea03";
1196 | }
1197 | .icon-reply-all:before {
1198 | content: "\ea04";
1199 | }
1200 | .icon-reply2:before {
1201 | content: "\ea05";
1202 | }
1203 | .icon-retweet:before {
1204 | content: "\ea06";
1205 | }
1206 | .icon-rocket:before {
1207 | content: "\ea07";
1208 | }
1209 | .icon-round-brush:before {
1210 | content: "\ea08";
1211 | }
1212 | .icon-rss:before {
1213 | content: "\ea09";
1214 | }
1215 | .icon-ruler:before {
1216 | content: "\ea0a";
1217 | }
1218 | .icon-scissors:before {
1219 | content: "\ea0b";
1220 | }
1221 | .icon-share-alternitive:before {
1222 | content: "\ea0c";
1223 | }
1224 | .icon-share2:before {
1225 | content: "\ea0d";
1226 | }
1227 | .icon-shareable:before {
1228 | content: "\ea0e";
1229 | }
1230 | .icon-shield:before {
1231 | content: "\ea0f";
1232 | }
1233 | .icon-shop:before {
1234 | content: "\ea10";
1235 | }
1236 | .icon-shopping-bag:before {
1237 | content: "\ea11";
1238 | }
1239 | .icon-shopping-basket:before {
1240 | content: "\ea12";
1241 | }
1242 | .icon-shopping-cart:before {
1243 | content: "\ea13";
1244 | }
1245 | .icon-shuffle2:before {
1246 | content: "\ea14";
1247 | }
1248 | .icon-signal2:before {
1249 | content: "\ea15";
1250 | }
1251 | .icon-sound-mix:before {
1252 | content: "\ea16";
1253 | }
1254 | .icon-sports-club:before {
1255 | content: "\ea17";
1256 | }
1257 | .icon-spreadsheet:before {
1258 | content: "\ea18";
1259 | }
1260 | .icon-squared-cross:before {
1261 | content: "\ea19";
1262 | }
1263 | .icon-squared-minus:before {
1264 | content: "\ea1a";
1265 | }
1266 | .icon-squared-plus:before {
1267 | content: "\ea1b";
1268 | }
1269 | .icon-star-outlined:before {
1270 | content: "\ea1c";
1271 | }
1272 | .icon-star2:before {
1273 | content: "\ea1d";
1274 | }
1275 | .icon-stopwatch:before {
1276 | content: "\ea1e";
1277 | }
1278 | .icon-suitcase:before {
1279 | content: "\ea1f";
1280 | }
1281 | .icon-swap:before {
1282 | content: "\ea20";
1283 | }
1284 | .icon-sweden:before {
1285 | content: "\ea21";
1286 | }
1287 | .icon-switch:before {
1288 | content: "\ea22";
1289 | }
1290 | .icon-tablet:before {
1291 | content: "\ea23";
1292 | }
1293 | .icon-tag2:before {
1294 | content: "\ea24";
1295 | }
1296 | .icon-text-document-inverted:before {
1297 | content: "\ea25";
1298 | }
1299 | .icon-text-document:before {
1300 | content: "\ea26";
1301 | }
1302 | .icon-text:before {
1303 | content: "\ea27";
1304 | }
1305 | .icon-thermometer2:before {
1306 | content: "\ea28";
1307 | }
1308 | .icon-thumbs-down:before {
1309 | content: "\ea29";
1310 | }
1311 | .icon-thumbs-up:before {
1312 | content: "\ea2a";
1313 | }
1314 | .icon-thunder-cloud:before {
1315 | content: "\ea2b";
1316 | }
1317 | .icon-ticket:before {
1318 | content: "\ea2c";
1319 | }
1320 | .icon-time-slot:before {
1321 | content: "\ea2d";
1322 | }
1323 | .icon-tools:before {
1324 | content: "\ea2e";
1325 | }
1326 | .icon-traffic-cone:before {
1327 | content: "\ea2f";
1328 | }
1329 | .icon-tree:before {
1330 | content: "\ea30";
1331 | }
1332 | .icon-trophy:before {
1333 | content: "\ea31";
1334 | }
1335 | .icon-tv:before {
1336 | content: "\ea32";
1337 | }
1338 | .icon-typing:before {
1339 | content: "\ea33";
1340 | }
1341 | .icon-unread:before {
1342 | content: "\ea34";
1343 | }
1344 | .icon-untag:before {
1345 | content: "\ea35";
1346 | }
1347 | .icon-user:before {
1348 | content: "\ea36";
1349 | }
1350 | .icon-users:before {
1351 | content: "\ea37";
1352 | }
1353 | .icon-v-card:before {
1354 | content: "\ea38";
1355 | }
1356 | .icon-video2:before {
1357 | content: "\ea39";
1358 | }
1359 | .icon-vinyl:before {
1360 | content: "\ea3a";
1361 | }
1362 | .icon-voicemail:before {
1363 | content: "\ea3b";
1364 | }
1365 | .icon-wallet:before {
1366 | content: "\ea3c";
1367 | }
1368 | .icon-water:before {
1369 | content: "\ea3d";
1370 | }
1371 | .icon-px-with-circle:before {
1372 | content: "\ea3e";
1373 | }
1374 | .icon-px:before {
1375 | content: "\ea3f";
1376 | }
1377 | .icon-basecamp:before {
1378 | content: "\ea40";
1379 | }
1380 | .icon-behance:before {
1381 | content: "\ea41";
1382 | }
1383 | .icon-creative-cloud:before {
1384 | content: "\ea42";
1385 | }
1386 | .icon-dropbox:before {
1387 | content: "\ea43";
1388 | }
1389 | .icon-evernote:before {
1390 | content: "\ea44";
1391 | }
1392 | .icon-flattr:before {
1393 | content: "\ea45";
1394 | }
1395 | .icon-foursquare:before {
1396 | content: "\ea46";
1397 | }
1398 | .icon-google-drive:before {
1399 | content: "\ea47";
1400 | }
1401 | .icon-google-hangouts:before {
1402 | content: "\ea48";
1403 | }
1404 | .icon-grooveshark:before {
1405 | content: "\ea49";
1406 | }
1407 | .icon-icloud:before {
1408 | content: "\ea4a";
1409 | }
1410 | .icon-mixi:before {
1411 | content: "\ea4b";
1412 | }
1413 | .icon-onedrive:before {
1414 | content: "\ea4c";
1415 | }
1416 | .icon-paypal:before {
1417 | content: "\ea4d";
1418 | }
1419 | .icon-picasa:before {
1420 | content: "\ea4e";
1421 | }
1422 | .icon-qq:before {
1423 | content: "\ea4f";
1424 | }
1425 | .icon-rdio-with-circle:before {
1426 | content: "\ea50";
1427 | }
1428 | .icon-renren:before {
1429 | content: "\ea51";
1430 | }
1431 | .icon-scribd:before {
1432 | content: "\ea52";
1433 | }
1434 | .icon-sina-weibo:before {
1435 | content: "\ea53";
1436 | }
1437 | .icon-skype-with-circle:before {
1438 | content: "\ea54";
1439 | }
1440 | .icon-skype:before {
1441 | content: "\ea55";
1442 | }
1443 | .icon-slideshare:before {
1444 | content: "\ea56";
1445 | }
1446 | .icon-smashing:before {
1447 | content: "\ea57";
1448 | }
1449 | .icon-soundcloud:before {
1450 | content: "\ea58";
1451 | }
1452 | .icon-spotify-with-circle:before {
1453 | content: "\ea59";
1454 | }
1455 | .icon-spotify:before {
1456 | content: "\ea5a";
1457 | }
1458 | .icon-swarm:before {
1459 | content: "\ea5b";
1460 | }
1461 | .icon-vine-with-circle:before {
1462 | content: "\ea5c";
1463 | }
1464 | .icon-vine:before {
1465 | content: "\ea5d";
1466 | }
1467 | .icon-vk-alternitive:before {
1468 | content: "\ea5e";
1469 | }
1470 | .icon-vk-with-circle:before {
1471 | content: "\ea5f";
1472 | }
1473 | .icon-vk:before {
1474 | content: "\ea60";
1475 | }
1476 | .icon-xing-with-circle:before {
1477 | content: "\ea61";
1478 | }
1479 | .icon-xing:before {
1480 | content: "\ea62";
1481 | }
1482 | .icon-yelp:before {
1483 | content: "\ea63";
1484 | }
1485 | .icon-dribbble-with-circle:before {
1486 | content: "\ea64";
1487 | }
1488 | .icon-dribbble:before {
1489 | content: "\ea65";
1490 | }
1491 | .icon-facebook-with-circle:before {
1492 | content: "\ea66";
1493 | }
1494 | .icon-facebook:before {
1495 | content: "\ea67";
1496 | }
1497 | .icon-flickr-with-circle:before {
1498 | content: "\ea68";
1499 | }
1500 | .icon-flickr:before {
1501 | content: "\ea69";
1502 | }
1503 | .icon-github-with-circle:before {
1504 | content: "\ea6a";
1505 | }
1506 | .icon-github:before {
1507 | content: "\ea6b";
1508 | }
1509 | .icon-google-with-circle:before {
1510 | content: "\ea6c";
1511 | }
1512 | .icon-google:before {
1513 | content: "\ea6d";
1514 | }
1515 | .icon-instagram-with-circle:before {
1516 | content: "\ea6e";
1517 | }
1518 | .icon-instagram:before {
1519 | content: "\ea6f";
1520 | }
1521 | .icon-lastfm-with-circle:before {
1522 | content: "\ea70";
1523 | }
1524 | .icon-lastfm:before {
1525 | content: "\ea71";
1526 | }
1527 | .icon-linkedin-with-circle:before {
1528 | content: "\ea72";
1529 | }
1530 | .icon-linkedin:before {
1531 | content: "\ea73";
1532 | }
1533 | .icon-pinterest-with-circle:before {
1534 | content: "\ea74";
1535 | }
1536 | .icon-pinterest:before {
1537 | content: "\ea75";
1538 | }
1539 | .icon-rdio:before {
1540 | content: "\ea76";
1541 | }
1542 | .icon-stumbleupon-with-circle:before {
1543 | content: "\ea77";
1544 | }
1545 | .icon-stumbleupon:before {
1546 | content: "\ea78";
1547 | }
1548 | .icon-tumblr-with-circle:before {
1549 | content: "\ea79";
1550 | }
1551 | .icon-tumblr:before {
1552 | content: "\ea7a";
1553 | }
1554 | .icon-twitter-with-circle:before {
1555 | content: "\ea7b";
1556 | }
1557 | .icon-twitter:before {
1558 | content: "\ea7c";
1559 | }
1560 | .icon-vimeo-with-circle:before {
1561 | content: "\ea7d";
1562 | }
1563 | .icon-vimeo:before {
1564 | content: "\ea7e";
1565 | }
1566 | .icon-youtube-with-circle:before {
1567 | content: "\ea7f";
1568 | }
1569 | .icon-youtube:before {
1570 | content: "\ea80";
1571 | }
1572 |
--------------------------------------------------------------------------------
/source/javascripts/bootstrap.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * Bootstrap v3.3.5 (http://getbootstrap.com)
3 | * Copyright 2011-2015 Twitter, Inc.
4 | * Licensed under the MIT license
5 | */
6 | if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.5",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.5",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),a(c.target).is('input[type="radio"]')||a(c.target).is('input[type="checkbox"]')||c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.5",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.5",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.5",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger("shown.bs.dropdown",h)}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&jdocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),c.isInStateTrue()?void 0:(clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide())},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-mo.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.5",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.5",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.5",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);
--------------------------------------------------------------------------------