Optimización de imágenes
git-svn-id: https://192.168.0.254/svn/Proyectos.Uecko_Web/trunk@3 8c1a5cbb-1905-e346-a7f4-bd4d5d3abd07
565
.htaccess
Normal file
@ -0,0 +1,565 @@
|
||||
# ----------------------------------------------------------------------
|
||||
# Better website experience for IE users
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# Force the latest IE version, in various cases when it may fall back to IE7 mode
|
||||
# github.com/rails/rails/commit/123eb25#commitcomment-118920
|
||||
# Use ChromeFrame if it's installed for a better experience for the poor IE folk
|
||||
|
||||
<IfModule mod_headers.c>
|
||||
Header set X-UA-Compatible "IE=Edge,chrome=1"
|
||||
# mod_headers can't match by content-type, but we don't want to send this header on *everything*...
|
||||
<FilesMatch "\.(js|css|gif|png|jpe?g|pdf|xml|oga|ogg|m4a|ogv|mp4|m4v|webm|svg|svgz|eot|ttf|otf|woff|ico|webp|appcache|manifest|htc|crx|oex|xpi|safariextz|vcf)$" >
|
||||
Header unset X-UA-Compatible
|
||||
</FilesMatch>
|
||||
</IfModule>
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# CORS-enabled images (@crossorigin)
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# Send CORS headers if browsers request them; enabled by default for images.
|
||||
# developer.mozilla.org/en/CORS_Enabled_Image
|
||||
# blog.chromium.org/2011/07/using-cross-domain-images-in-webgl-and.html
|
||||
# hacks.mozilla.org/2011/11/using-cors-to-load-webgl-textures-from-cross-domain-images/
|
||||
# wiki.mozilla.org/Security/Reviews/crossoriginAttribute
|
||||
|
||||
<IfModule mod_setenvif.c>
|
||||
<IfModule mod_headers.c>
|
||||
# mod_headers, y u no match by Content-Type?!
|
||||
<FilesMatch "\.(gif|png|jpe?g|svg|svgz|ico|webp)$">
|
||||
SetEnvIf Origin ":" IS_CORS
|
||||
Header set Access-Control-Allow-Origin "*" env=IS_CORS
|
||||
</FilesMatch>
|
||||
</IfModule>
|
||||
</IfModule>
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Webfont access
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# Allow access from all domains for webfonts.
|
||||
# Alternatively you could only whitelist your
|
||||
# subdomains like "subdomain.example.com".
|
||||
|
||||
<IfModule mod_headers.c>
|
||||
<FilesMatch "\.(ttf|ttc|otf|eot|woff|font.css)$">
|
||||
Header set Access-Control-Allow-Origin "*"
|
||||
</FilesMatch>
|
||||
</IfModule>
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Proper MIME type for all files
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# JavaScript
|
||||
# Normalize to standard type (it's sniffed in IE anyways)
|
||||
# tools.ietf.org/html/rfc4329#section-7.2
|
||||
AddType application/javascript js jsonp
|
||||
AddType application/json json
|
||||
|
||||
# Audio
|
||||
AddType audio/ogg oga ogg
|
||||
AddType audio/mp4 m4a f4a f4b
|
||||
|
||||
# Video
|
||||
AddType video/ogg ogv
|
||||
AddType video/mp4 mp4 m4v f4v f4p
|
||||
AddType video/webm webm
|
||||
AddType video/x-flv flv
|
||||
|
||||
# SVG
|
||||
# Required for svg webfonts on iPad
|
||||
# twitter.com/FontSquirrel/status/14855840545
|
||||
AddType image/svg+xml svg svgz
|
||||
AddEncoding gzip svgz
|
||||
|
||||
# Webfonts
|
||||
AddType application/vnd.ms-fontobject eot
|
||||
AddType application/x-font-ttf ttf ttc
|
||||
AddType font/opentype otf
|
||||
AddType application/x-font-woff woff
|
||||
|
||||
# Assorted types
|
||||
AddType image/x-icon ico
|
||||
AddType image/webp webp
|
||||
AddType text/cache-manifest appcache manifest
|
||||
AddType text/x-component htc
|
||||
AddType application/xml rss atom xml rdf
|
||||
AddType application/x-chrome-extension crx
|
||||
AddType application/x-opera-extension oex
|
||||
AddType application/x-xpinstall xpi
|
||||
AddType application/octet-stream safariextz
|
||||
AddType application/x-web-app-manifest+json webapp
|
||||
AddType text/x-vcard vcf
|
||||
AddType application/x-shockwave-flash swf
|
||||
AddType text/vtt vtt
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Gzip compression
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
<IfModule mod_deflate.c>
|
||||
|
||||
# Force deflate for mangled headers developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping/
|
||||
<IfModule mod_setenvif.c>
|
||||
<IfModule mod_headers.c>
|
||||
SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
|
||||
RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
|
||||
</IfModule>
|
||||
</IfModule>
|
||||
|
||||
# Compress all output labeled with one of the following MIME-types
|
||||
<IfModule mod_filter.c>
|
||||
AddOutputFilterByType DEFLATE application/atom+xml \
|
||||
application/javascript \
|
||||
application/json \
|
||||
application/rss+xml \
|
||||
application/vnd.ms-fontobject \
|
||||
application/x-font-ttf \
|
||||
application/xhtml+xml \
|
||||
application/xml \
|
||||
font/opentype \
|
||||
image/svg+xml \
|
||||
image/x-icon \
|
||||
text/css \
|
||||
text/html \
|
||||
text/plain \
|
||||
text/x-component \
|
||||
text/xml
|
||||
</IfModule>
|
||||
|
||||
</IfModule>
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# ETag removal
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# FileETag None is not enough for every server.
|
||||
<IfModule mod_headers.c>
|
||||
Header unset ETag
|
||||
</IfModule>
|
||||
|
||||
# Since we're sending far-future expires, we don't need ETags for
|
||||
# static content.
|
||||
# developer.yahoo.com/performance/rules.html#etags
|
||||
FileETag None
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Start rewrite engine
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# Turning on the rewrite engine is necessary for the following rules and
|
||||
# features. FollowSymLinks must be enabled for this to work.
|
||||
|
||||
# Some cloud hosting services require RewriteBase to be set: goo.gl/HOcPN
|
||||
# If using the h5bp in a subdirectory, use `RewriteBase /foo` instead where
|
||||
# 'foo' is your directory.
|
||||
|
||||
# If your web host doesn't allow the FollowSymlinks option, you may need to
|
||||
# comment it out and use `Options +SymLinksOfOwnerMatch`, but be aware of the
|
||||
# performance impact: http://goo.gl/Mluzd
|
||||
|
||||
<IfModule mod_rewrite.c>
|
||||
# For security reasons, Option followsymlinks cannot be overridden.
|
||||
# Options +FollowSymlinks
|
||||
Options +SymLinksIfOwnerMatch
|
||||
Options +SymLinksIfOwnerMatch
|
||||
RewriteEngine On
|
||||
RewriteCond %{THE_REQUEST} \/index.php\ HTTP [NC]
|
||||
RewriteRule (.*)index.php$ /$1 [R=301,L]
|
||||
#RewriteBase /
|
||||
</IfModule>
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Suppress or force the "www." at the beginning of URLs
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# The same content should never be available under two different URLs -
|
||||
# especially not with and without "www." at the beginning, since this can cause
|
||||
# SEO problems (duplicate content). That's why you should choose one of the
|
||||
# alternatives and redirect the other one.
|
||||
|
||||
# By default option 1 (no "www.") is activated.
|
||||
# no-www.org/faq.php?q=class_b
|
||||
|
||||
# If you'd prefer to use option 2, just comment out all option 1 lines
|
||||
# and uncomment option 2.
|
||||
|
||||
# IMPORTANT: NEVER USE BOTH RULES AT THE SAME TIME!
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# Option 1:
|
||||
# Rewrite "www.example.com -> example.com".
|
||||
|
||||
<IfModule mod_rewrite.c>
|
||||
RewriteCond %{HTTPS} !=on
|
||||
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
|
||||
RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
|
||||
</IfModule>
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# Option 2:
|
||||
# Rewrite "example.com -> www.example.com".
|
||||
# Be aware that the following rule might not be a good idea if you use "real"
|
||||
# subdomains for certain parts of your website.
|
||||
|
||||
# <IfModule mod_rewrite.c>
|
||||
# RewriteCond %{HTTPS} !=on
|
||||
# RewriteCond %{HTTP_HOST} !^www\..+$ [NC]
|
||||
# RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
|
||||
# </IfModule>
|
||||
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Prevent 404 errors for non-existing redirected folders
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# without -MultiViews, Apache will give a 404 for a rewrite if a folder of the
|
||||
# same name does not exist.
|
||||
# webmasterworld.com/apache/3808792.htm
|
||||
|
||||
Options -MultiViews
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Custom 404 page
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# You can add custom pages to handle 500 or 403 pretty easily, if you like.
|
||||
# If you are hosting your site in subdirectory, adjust this accordingly
|
||||
# e.g. ErrorDocument 404 /subdir/404.html
|
||||
ErrorDocument 404 /404.html
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# UTF-8 encoding
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# Use UTF-8 encoding for anything served text/plain or text/html
|
||||
AddDefaultCharset utf-8
|
||||
|
||||
# Force UTF-8 for a number of file formats
|
||||
AddCharset utf-8 .atom .css .js .json .rss .vtt .xml
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# A little more security
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# To avoid displaying the exact version number of Apache being used, add the
|
||||
# following to httpd.conf (it will not work in .htaccess):
|
||||
# ServerTokens Prod
|
||||
|
||||
# "-Indexes" will have Apache block users from browsing folders without a
|
||||
# default document Usually you should leave this activated, because you
|
||||
# shouldn't allow everybody to surf through every folder on your server (which
|
||||
# includes rather private places like CMS system folders).
|
||||
<IfModule mod_autoindex.c>
|
||||
Options -Indexes
|
||||
</IfModule>
|
||||
|
||||
# Block access to "hidden" directories or files whose names begin with a
|
||||
# period. This includes directories used by version control systems such as
|
||||
# Subversion or Git.
|
||||
<IfModule mod_rewrite.c>
|
||||
RewriteCond %{SCRIPT_FILENAME} -d [OR]
|
||||
RewriteCond %{SCRIPT_FILENAME} -f
|
||||
RewriteRule "(^|/)\." - [F]
|
||||
</IfModule>
|
||||
|
||||
# Block access to backup and source files. These files may be left by some
|
||||
# text/html editors and pose a great security danger, when anyone can access
|
||||
# them.
|
||||
<FilesMatch "(\.(bak|config|sql|fla|psd|ini|log|sh|inc|swp|dist)|~)$">
|
||||
Order allow,deny
|
||||
Deny from all
|
||||
Satisfy All
|
||||
</FilesMatch>
|
||||
|
||||
<IfModule php5_module>
|
||||
php_value session.cookie_httponly true
|
||||
</IfModule>
|
||||
|
||||
RewriteCond %{HTTP_REFERER} !^$
|
||||
RewriteCond %{HTTP_REFERER} !^http://abetodesign.com/.*$ [NC]
|
||||
RewriteCond %{HTTP_REFERER} !^http://abetodesign.com$ [NC]
|
||||
RewriteCond %{HTTP_REFERER} !^http://uecko.com/.*$ [NC]
|
||||
RewriteCond %{HTTP_REFERER} !^http://uecko.com$ [NC]
|
||||
RewriteCond %{HTTP_REFERER} !^http://uecko.net/.*$ [NC]
|
||||
RewriteCond %{HTTP_REFERER} !^http://uecko.net$ [NC]
|
||||
RewriteCond %{HTTP_REFERER} !^http://www.abetodesign.com/.*$ [NC]
|
||||
RewriteCond %{HTTP_REFERER} !^http://www.abetodesign.com$ [NC]
|
||||
RewriteCond %{HTTP_REFERER} !^http://www.uecko.com/.*$ [NC]
|
||||
RewriteCond %{HTTP_REFERER} !^http://www.uecko.com$ [NC]
|
||||
RewriteCond %{HTTP_REFERER} !^http://www.uecko.net/.*$ [NC]
|
||||
RewriteCond %{HTTP_REFERER} !^http://www.uecko.net$ [NC]
|
||||
RewriteRule .*\.(jpg|jpeg|gif|png|bmp|pdf)$ - [F,NC]
|
||||
|
||||
|
||||
# Spambots
|
||||
RewriteCond %{HTTP_USER_AGENT} ^.*(Ahrefs|Baidu|BlogScope|Butterfly|DCPbot|discoverybot|domain|Ezooms|ImageSearcherFree).*$ [NC,OR]
|
||||
RewriteCond %{HTTP_USER_AGENT} ^.*(ips-agent|linkdex|MJ12|Netcraft|NextGenSearchBot|SISTRIX|Sogou|soso|TweetmemeBot|Unwind|Yandex).*$ [NC]
|
||||
RewriteRule ^/?.*$ "http\:\/\/127\.0\.0\.1" [R,L]
|
||||
|
||||
|
||||
# https://github.com/Stevie-Ray/htaccess-referral-spam-blacklist-block
|
||||
<IfModule mod_rewrite.c>
|
||||
|
||||
RewriteEngine On
|
||||
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*100dollars\-seo\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*4webmasters\.org.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*76brighton\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*7makemoneyonline\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*abovetherivernc\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*addons\.mozilla\.org/en-US/firefox/addon/ilovevitaly/ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*adcash\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*adelly\.bg.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*advokateg\.(com?|ru).*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*adviceforum\.info.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*alessandraleone\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*amanda-porn\.ga.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*anticrawler\.org.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*aosheng\-tech\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*audiobangout\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*backgroundpictures\.net.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bbtec\.net.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*best\-seo\-offer\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*best\-seo\-solution\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bestwebsitesawards\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*bkns\.vn.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*blackhatworth\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*buttons\-for\-your\-website\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*buttons\-for\-website\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*buy\-cheap\-online\.info.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*buy\-forum\.ru.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*buypharmacydrug\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cenoval\.ru.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*callejondelpozo\.es.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cbcseward\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cherrypointplace\.ca.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cherubinimobili\.it.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*cityadspix\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*clmforexeu\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*constantaservice\.net.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*darodar\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*depositfiles\-porn\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*domination\.ml.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*econom\.co.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*edelstahlschornstein\-123\.de.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*embedle\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*event\-tracking\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*extener\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*family1st\.ca.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*fbdownloader\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*fbfreegifts\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*feedouble\.(com?|net).*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*fiverr\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*forum69\.info.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*foxtechfpv\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ftns\.ru*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*free\-share\-buttons\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*free\-social\-buttons\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*freeseedsonline\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*fungirlsgames\.net.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*funnypica\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ganarvisitas\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*guardlink\.(com?|org).*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*get\-free\-traffic\-now\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*generalporn\.org.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*googlsucks\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*gobongo\.info.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*gototal\.co.nz.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*h2monline\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*hol\.es.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*hostcritique\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*hostingclub\.lk.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*houseofrose\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*howtostopreferralspam\.eu.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*hulfingtonpost\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*humanorightswatch\.org.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ilovevitaly\.(com?|ru|org|info).*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*iminent\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*invivo\.hu.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*inboxdollars\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*iskalko\.ru.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*istanbulit\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*itronics\.ca.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*itsdp3\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*jasonpartington\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*joinandplay\.me.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*joingames\.org.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*kabbalah\-red\-bracelets\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*kambasoft\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*kosova\.de.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*leadwayau\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*lmrauction\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*lol\-smurfs\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*lombia\.(com?|co).*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*lumb\.co.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*luxup\.ru.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*mainlinehobby\.net.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*make\-money\-online\.7makemoneyonline\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*malls\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*maxthon\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*medi\-fitt.hu.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*medicovi\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*medispainstitute\.com\.au.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*meendo\-free\-traffic\.ga.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*mericanmopedstore\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*motion\-interactive\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*mountainstream\.ms.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*mpftpupload\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*musicas.baixar\-musicas\-gratis\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*musicprojectfoundation\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*myprintscreen\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*notaria\-desalas\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*noumeda\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*offers\.bycontext\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*openfrost\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*o\-o\-6\-o\-o\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*openmediasoft\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*paparazzistudios\.com\.au*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*pornhub-forum\.ga.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*powitania\.pl.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*prlog\.ru.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*priceg\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*princeadvantagesales\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*pyrodesigns\.com\.au.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*ranksonic\.info.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*rapidgator\-porn\.ga.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*realting-moscow\.ru.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*retreatia\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*resellerclub\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*aliexpress\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*savetubevideo\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*sanjosestartups\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*semalt\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*seoanalyses\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*setioweb\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*simple\-share\-buttons\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www1?\.)?.*social\-buttons\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*softomix\.(com?|ru|org|net).*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*sonyelektronik\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*soundfrost\.org.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*smailik\.org.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*srecorder\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*streha\-metalko\.si.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*superiends\.org.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*susanholtphotography\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*tastyfoodideas\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*teastory\.co.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*thecoral\.com.br.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*theguardlan\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*thepokertimer\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*touchmods\.fr.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*torture\.ml.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*twincitiescarservice\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*urlopener\.blogspot\.com.au.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*uzungil\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*vapmedia\.org.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*videofrost\.(com?|net).*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*website\-errors\-scanner\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*webmaster\-traffic\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*website\-errors\-scanner\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*williamrobsonproperty\.com.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*xn--c1acygb\.xn--p1ai.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*xn--80adgcaax6acohn6r\.xn--p1ai.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*xn--q1a\.xn--b1aube0e\.xn--c1acygb\.xn--p1ai.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*uni\.me.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*youporn-forum\.ga.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*youtubedownload\.org.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*zazagames\.org.*$ [NC,OR]
|
||||
RewriteCond %{HTTP_REFERER} ^http(s)?://(www\.)?.*zverokruh\-shop\.cz.*$ [NC]
|
||||
|
||||
RewriteRule ^(.*)$ – [F,L]
|
||||
|
||||
</IfModule>
|
||||
|
||||
<IfModule mod_setenvif.c>
|
||||
|
||||
SetEnvIfNoCase Referer 4webmasters.org spambot=yes
|
||||
SetEnvIfNoCase Referer 7makemoneyonline.com spambot=yes
|
||||
SetEnvIfNoCase Referer acunetix-referrer.com spambot=yes
|
||||
SetEnvIfNoCase Referer adcash.com spambot=yes
|
||||
SetEnvIfNoCase Referer advokateg.com spambot=yes
|
||||
SetEnvIfNoCase Referer advokateg.ru spambot=yes
|
||||
SetEnvIfNoCase Referer baixar-musicas-gratis.com spambot=yes
|
||||
SetEnvIfNoCase Referer best-seo-offer.com spambot=yes
|
||||
SetEnvIfNoCase Referer best-seo-solution.com spambot=yes
|
||||
SetEnvIfNoCase Referer bestwebsitesawards.com spambot=yes
|
||||
SetEnvIfNoCase Referer blackhatworth.com spambot=yes
|
||||
SetEnvIfNoCase Referer buttons-for-website.com spambot=yes
|
||||
SetEnvIfNoCase Referer buttons-for-your-website.com spambot=yes
|
||||
SetEnvIfNoCase Referer buy-cheap-online.info spambot=yes
|
||||
SetEnvIfNoCase Referer cenokos.ru spambot=yes
|
||||
SetEnvIfNoCase Referer cenoval.ru spambot=yes
|
||||
SetEnvIfNoCase Referer cityadspix.com spambot=yes
|
||||
SetEnvIfNoCase Referer darodar.com spambot=yes
|
||||
SetEnvIfNoCase Referer descargar-musicas-gratis.com spambot=yes
|
||||
SetEnvIfNoCase Referer econom.co spambot=yes
|
||||
SetEnvIfNoCase Referer edakgfvwql.ru spambot=yes
|
||||
SetEnvIfNoCase Referer event-tracking.com spambot=yes
|
||||
SetEnvIfNoCase Referer fbdownloader.com spambot=yes
|
||||
SetEnvIfNoCase Referer forum20.smailik.org spambot=yes
|
||||
SetEnvIfNoCase Referer free-share-buttons.com spambot=yes
|
||||
SetEnvIfNoCase Referer free-social-buttons.com spambot=yes
|
||||
SetEnvIfNoCase Referer ganarvisitas.com spambot=yes
|
||||
SetEnvIfNoCase Referer googlsucks.com spambot=yes
|
||||
SetEnvIfNoCase Referer gobongo.info spambot=yes
|
||||
SetEnvIfNoCase Referer guardlink.org spambot=yes
|
||||
SetEnvIfNoCase Referer hulfingtonpost.com spambot=yes
|
||||
SetEnvIfNoCase Referer humanorightswatch.org spambot=yes
|
||||
SetEnvIfNoCase Referer iedit.ilovevitaly.com spambot=yes
|
||||
SetEnvIfNoCase Referer ilovevitaly.com spambot=yes
|
||||
SetEnvIfNoCase Referer ilovevitaly.co spambot=yes
|
||||
SetEnvIfNoCase Referer ilovevitaly.info spambot=yes
|
||||
SetEnvIfNoCase Referer ilovevitaly.org spambot=yes
|
||||
SetEnvIfNoCase Referer ilovevitaly.ru spambot=yes
|
||||
SetEnvIfNoCase Referer iskalko.ru spambot=yes
|
||||
SetEnvIfNoCase Referer lomb.co spambot=yes
|
||||
SetEnvIfNoCase Referer luxup.ru spambot=yes
|
||||
SetEnvIfNoCase Referer make-money-online.7makemoneyonline.com spambot=yes
|
||||
SetEnvIfNoCase Referer maps.ilovevitaly.com spambot=yes
|
||||
SetEnvIfNoCase Referer myftpupload.com spambot=yes
|
||||
SetEnvIfNoCase Referer net.hts.ru spambot=yes
|
||||
SetEnvIfNoCase Referer offers.bycontext.com spambot=yes
|
||||
SetEnvIfNoCase Referer o-o-6-o-o.ru spambot=yes
|
||||
SetEnvIfNoCase Referer o-o-6-o-o.com spambot=yes
|
||||
SetEnvIfNoCase Referer o-o-8-o-o.ru spambot=yes
|
||||
SetEnvIfNoCase Referer priceg.com spambot=yes
|
||||
SetEnvIfNoCase Referer resellerclub.com spambot=yes
|
||||
SetEnvIfNoCase Referer responsinator.com spambot=yes
|
||||
SetEnvIfNoCase Referer sanjosestartups.com spambot=yes
|
||||
SetEnvIfNoCase Referer savetubevideo.com spambot=yes
|
||||
SetEnvIfNoCase Referer screentoolkit.com spambot=yes
|
||||
SetEnvIfNoCase Referer semalt.com spambot=yes
|
||||
SetEnvIfNoCase Referer seoexperimenty.ru spambot=yes
|
||||
SetEnvIfNoCase Referer shopping.ilovevitaly.ru spambot=yes
|
||||
SetEnvIfNoCase Referer simple-share-buttons.com spambot=yes
|
||||
SetEnvIfNoCase Referer slftsdybbg.ru spambot=yes
|
||||
SetEnvIfNoCase Referer socialseet.ru spambot=yes
|
||||
SetEnvIfNoCase Referer social-buttons.com spambot=yes
|
||||
SetEnvIfNoCase Referer srecorder.com spambot=yes
|
||||
SetEnvIfNoCase Referer st3.cwl.yahoo.com spambot=yes
|
||||
SetEnvIfNoCase Referer superiends.org spambot=yes
|
||||
SetEnvIfNoCase Referer theguardlan.com spambot=yes
|
||||
SetEnvIfNoCase Referer vodkoved.ru spambot=yes
|
||||
SetEnvIfNoCase Referer websocial.me spambot=yes
|
||||
SetEnvIfNoCase Referer www1.social-buttons.com spambot=yes
|
||||
SetEnvIfNoCase Referer www.Get-Free-Traffic-Now.com spambot=yes
|
||||
SetEnvIfNoCase Referer ykecwqlixx.ru spambot=yes
|
||||
SetEnvIfNoCase Referer yougetsignal.com spambot=yes
|
||||
|
||||
</IfModule>
|
||||
|
||||
<IfModule mod_authz_host.c>
|
||||
|
||||
Order allow,deny
|
||||
Allow from all
|
||||
Deny from env=spambot
|
||||
|
||||
</IfModule>
|
||||
1
googledae41e7cfa25b38b.html
Normal file
@ -0,0 +1 @@
|
||||
google-site-verification: googledae41e7cfa25b38b.html
|
||||
BIN
img.bak/armarios/page1.jpg
Normal file
|
After Width: | Height: | Size: 122 KiB |
BIN
img.bak/armarios/page10.jpg
Normal file
|
After Width: | Height: | Size: 229 KiB |
BIN
img.bak/armarios/page10@2x.jpg
Normal file
|
After Width: | Height: | Size: 486 KiB |
BIN
img.bak/armarios/page11.jpg
Normal file
|
After Width: | Height: | Size: 123 KiB |
BIN
img.bak/armarios/page11@2x.jpg
Normal file
|
After Width: | Height: | Size: 356 KiB |
BIN
img.bak/armarios/page11@2xo.jpg
Normal file
|
After Width: | Height: | Size: 409 KiB |
BIN
img.bak/armarios/page11o.jpg
Normal file
|
After Width: | Height: | Size: 198 KiB |
BIN
img.bak/armarios/page12.jpg
Normal file
|
After Width: | Height: | Size: 122 KiB |
BIN
img.bak/armarios/page12@2x.jpg
Normal file
|
After Width: | Height: | Size: 364 KiB |
BIN
img.bak/armarios/page12@2xo.jpg
Normal file
|
After Width: | Height: | Size: 776 KiB |
BIN
img.bak/armarios/page12o.jpg
Normal file
|
After Width: | Height: | Size: 359 KiB |
BIN
img.bak/armarios/page13.jpg
Normal file
|
After Width: | Height: | Size: 192 KiB |
BIN
img.bak/armarios/page13@2x.jpg
Normal file
|
After Width: | Height: | Size: 381 KiB |
BIN
img.bak/armarios/page14.jpg
Normal file
|
After Width: | Height: | Size: 134 KiB |
BIN
img.bak/armarios/page14@2x.jpg
Normal file
|
After Width: | Height: | Size: 376 KiB |
BIN
img.bak/armarios/page15.jpg
Normal file
|
After Width: | Height: | Size: 158 KiB |
BIN
img.bak/armarios/page15@2x.jpg
Normal file
|
After Width: | Height: | Size: 442 KiB |
BIN
img.bak/armarios/page15@2xo.jpg
Normal file
|
After Width: | Height: | Size: 406 KiB |
BIN
img.bak/armarios/page15o.jpg
Normal file
|
After Width: | Height: | Size: 200 KiB |
BIN
img.bak/armarios/page16.jpg
Normal file
|
After Width: | Height: | Size: 156 KiB |
BIN
img.bak/armarios/page16@2x.jpg
Normal file
|
After Width: | Height: | Size: 416 KiB |
BIN
img.bak/armarios/page16@2xo.jpg
Normal file
|
After Width: | Height: | Size: 709 KiB |
BIN
img.bak/armarios/page16o.jpg
Normal file
|
After Width: | Height: | Size: 112 KiB |
BIN
img.bak/armarios/page17.jpg
Normal file
|
After Width: | Height: | Size: 211 KiB |
BIN
img.bak/armarios/page17@2x.jpg
Normal file
|
After Width: | Height: | Size: 475 KiB |
BIN
img.bak/armarios/page18.jpg
Normal file
|
After Width: | Height: | Size: 466 KiB |
BIN
img.bak/armarios/page18@2x.jpg
Normal file
|
After Width: | Height: | Size: 1.0 MiB |
BIN
img.bak/armarios/page19.jpg
Normal file
|
After Width: | Height: | Size: 164 KiB |
BIN
img.bak/armarios/page19@2x.jpg
Normal file
|
After Width: | Height: | Size: 355 KiB |
BIN
img.bak/armarios/page1@2x.jpg
Normal file
|
After Width: | Height: | Size: 262 KiB |
BIN
img.bak/armarios/page2.jpg
Normal file
|
After Width: | Height: | Size: 129 KiB |
BIN
img.bak/armarios/page20.jpg
Normal file
|
After Width: | Height: | Size: 269 KiB |
BIN
img.bak/armarios/page20@2x.jpg
Normal file
|
After Width: | Height: | Size: 782 KiB |
BIN
img.bak/armarios/page21.jpg
Normal file
|
After Width: | Height: | Size: 212 KiB |
BIN
img.bak/armarios/page21@2x.jpg
Normal file
|
After Width: | Height: | Size: 477 KiB |
BIN
img.bak/armarios/page2@2x.jpg
Normal file
|
After Width: | Height: | Size: 370 KiB |
BIN
img.bak/armarios/page3.jpg
Normal file
|
After Width: | Height: | Size: 150 KiB |
BIN
img.bak/armarios/page3@2x.jpg
Normal file
|
After Width: | Height: | Size: 337 KiB |
BIN
img.bak/armarios/page4.jpg
Normal file
|
After Width: | Height: | Size: 94 KiB |
BIN
img.bak/armarios/page4@2x.jpg
Normal file
|
After Width: | Height: | Size: 258 KiB |
BIN
img.bak/armarios/page5.jpg
Normal file
|
After Width: | Height: | Size: 128 KiB |
BIN
img.bak/armarios/page5@2x.jpg
Normal file
|
After Width: | Height: | Size: 268 KiB |
BIN
img.bak/armarios/page6.jpg
Normal file
|
After Width: | Height: | Size: 141 KiB |
BIN
img.bak/armarios/page6@2x.jpg
Normal file
|
After Width: | Height: | Size: 306 KiB |
BIN
img.bak/armarios/page7.jpg
Normal file
|
After Width: | Height: | Size: 114 KiB |
BIN
img.bak/armarios/page7@2x.jpg
Normal file
|
After Width: | Height: | Size: 303 KiB |
BIN
img.bak/armarios/page8.jpg
Normal file
|
After Width: | Height: | Size: 207 KiB |
BIN
img.bak/armarios/page8@2x.jpg
Normal file
|
After Width: | Height: | Size: 433 KiB |
BIN
img.bak/armarios/page9.jpg
Normal file
|
After Width: | Height: | Size: 132 KiB |
BIN
img.bak/armarios/page9@2x.jpg
Normal file
|
After Width: | Height: | Size: 271 KiB |
BIN
img.bak/contact_icos.png
Normal file
|
After Width: | Height: | Size: 664 B |
BIN
img.bak/down.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
img.bak/down@2x.png
Normal file
|
After Width: | Height: | Size: 4.8 KiB |
BIN
img.bak/estanterias/page1.jpg
Normal file
|
After Width: | Height: | Size: 244 KiB |
BIN
img.bak/estanterias/page1@2x.jpg
Normal file
|
After Width: | Height: | Size: 520 KiB |
BIN
img.bak/estanterias/page2.jpg
Normal file
|
After Width: | Height: | Size: 213 KiB |
BIN
img.bak/estanterias/page2@2x.jpg
Normal file
|
After Width: | Height: | Size: 468 KiB |
BIN
img.bak/estanterias/page3.jpg
Normal file
|
After Width: | Height: | Size: 410 KiB |
BIN
img.bak/estanterias/page3@2x.jpg
Normal file
|
After Width: | Height: | Size: 804 KiB |
BIN
img.bak/estanterias/page4.jpg
Normal file
|
After Width: | Height: | Size: 348 KiB |
BIN
img.bak/estanterias/page4@2x.jpg
Normal file
|
After Width: | Height: | Size: 696 KiB |
BIN
img.bak/estanterias/page5.jpg
Normal file
|
After Width: | Height: | Size: 278 KiB |
BIN
img.bak/estanterias/page5@2x.jpg
Normal file
|
After Width: | Height: | Size: 546 KiB |
BIN
img.bak/estanterias/page6.jpg
Normal file
|
After Width: | Height: | Size: 319 KiB |
BIN
img.bak/estanterias/page6@2x.jpg
Normal file
|
After Width: | Height: | Size: 656 KiB |
BIN
img.bak/estanterias/page6@2xa.jpg
Normal file
|
After Width: | Height: | Size: 742 KiB |
BIN
img.bak/estanterias/page6a.jpg
Normal file
|
After Width: | Height: | Size: 339 KiB |
BIN
img.bak/estanterias/page7.jpg
Normal file
|
After Width: | Height: | Size: 263 KiB |
BIN
img.bak/estanterias/page7@2x.jpg
Normal file
|
After Width: | Height: | Size: 512 KiB |
BIN
img.bak/estanterias/page7@2xa.jpg
Normal file
|
After Width: | Height: | Size: 658 KiB |
BIN
img.bak/estanterias/page7a.jpg
Normal file
|
After Width: | Height: | Size: 320 KiB |
BIN
img.bak/estanterias/page8.jpg
Normal file
|
After Width: | Height: | Size: 213 KiB |
BIN
img.bak/estanterias/page8@2x.jpg
Normal file
|
After Width: | Height: | Size: 431 KiB |
BIN
img.bak/formmail.png
Normal file
|
After Width: | Height: | Size: 483 B |
BIN
img.bak/formname.png
Normal file
|
After Width: | Height: | Size: 529 B |
BIN
img.bak/formphone.png
Normal file
|
After Width: | Height: | Size: 481 B |
BIN
img.bak/glyphicons-halflings 2.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
img.bak/glyphicons-halflings-white 2.png
Normal file
|
After Width: | Height: | Size: 8.6 KiB |
BIN
img.bak/glyphicons-halflings-white.png
Normal file
|
After Width: | Height: | Size: 8.6 KiB |
BIN
img.bak/glyphicons-halflings.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
img.bak/glyphicons-white.png
Normal file
|
After Width: | Height: | Size: 144 KiB |
4259
img.bak/glyphicons-white.svg
Normal file
|
After Width: | Height: | Size: 332 KiB |
BIN
img.bak/glyphicons.png
Normal file
|
After Width: | Height: | Size: 169 KiB |
4157
img.bak/glyphicons.svg
Normal file
|
After Width: | Height: | Size: 318 KiB |
BIN
img.bak/glyphicons_halflings-white.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
1007
img.bak/glyphicons_halflings-white.svg
Normal file
|
After Width: | Height: | Size: 66 KiB |
BIN
img.bak/glyphicons_halflings-white@2x.png
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
img.bak/glyphicons_halflings.png
Normal file
|
After Width: | Height: | Size: 23 KiB |
1010
img.bak/glyphicons_halflings.svg
Normal file
|
After Width: | Height: | Size: 67 KiB |
BIN
img.bak/glyphicons_halflings@2x.png
Normal file
|
After Width: | Height: | Size: 97 KiB |
BIN
img.bak/icons/list/orange/list_arrow.png
Normal file
|
After Width: | Height: | Size: 186 B |
BIN
img.bak/icons/list/orange/list_check.png
Normal file
|
After Width: | Height: | Size: 201 B |
BIN
img.bak/icons/list/orange/list_circle.png
Normal file
|
After Width: | Height: | Size: 171 B |
BIN
img.bak/icons/list/orange/list_cross.png
Normal file
|
After Width: | Height: | Size: 250 B |
BIN
img.bak/icons/list/orange/list_minus.png
Normal file
|
After Width: | Height: | Size: 141 B |
BIN
img.bak/icons/list/orange/list_plus.png
Normal file
|
After Width: | Height: | Size: 209 B |
BIN
img.bak/icons/list/orange/list_square.png
Normal file
|
After Width: | Height: | Size: 148 B |
BIN
img.bak/icons/list/orange/list_star.png
Normal file
|
After Width: | Height: | Size: 276 B |