diff options
author | Martin Spielmann <martin.spielmann@pingunaut.com> | 2016-07-31 00:52:10 +0200 |
---|---|---|
committer | Martin Spielmann <martin.spielmann@pingunaut.com> | 2016-07-31 00:52:10 +0200 |
commit | 384c08e26f6110c3f35db2f21ef73fe1eae23dd7 (patch) | |
tree | c88e9aa3677dee15a417ff76152fa4933601231c | |
parent | bc586ef3e273240806f13201f2055333481f01e2 (diff) | |
download | gitblit-384c08e26f6110c3f35db2f21ef73fe1eae23dd7.tar.gz gitblit-384c08e26f6110c3f35db2f21ef73fe1eae23dd7.zip |
mount flotr and bootstrap
31 files changed, 9804 insertions, 98 deletions
@@ -112,7 +112,7 @@ <classpathentry kind="lib" path="ext/platform-3.4.0.jar" sourcepath="ext/src/platform-3.4.0.jar"/> <classpathentry kind="lib" path="ext/mockito-core-1.10.19.jar" sourcepath="ext/src/mockito-core-1.10.19.jar"/> <classpathentry kind="lib" path="ext/objenesis-2.1.jar" sourcepath="ext/src/objenesis-2.1.jar"/> - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"> <attributes> <attribute name="maven.pomderived" value="true"/> </attributes> diff --git a/src/main/java/com/gitblit/Constants.java b/src/main/java/com/gitblit/Constants.java index 6232552e..9c5291ac 100644 --- a/src/main/java/com/gitblit/Constants.java +++ b/src/main/java/com/gitblit/Constants.java @@ -19,6 +19,7 @@ import java.lang.annotation.Documented; import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.net.URL;
+import java.nio.charset.StandardCharsets;
import java.util.Arrays;
import java.util.List;
import java.util.jar.Attributes;
@@ -89,7 +90,7 @@ public class Constants { public static final String PROPOSAL_EXT = ".json";
- public static final String ENCODING = "UTF-8";
+ public static final String ENCODING = StandardCharsets.UTF_8.name();
public static final int LEN_SHORTLOG = 78;
diff --git a/src/main/java/com/gitblit/wicket/GitBlitWebApp.java b/src/main/java/com/gitblit/wicket/GitBlitWebApp.java index 662daa7b..23479e91 100644 --- a/src/main/java/com/gitblit/wicket/GitBlitWebApp.java +++ b/src/main/java/com/gitblit/wicket/GitBlitWebApp.java @@ -15,24 +15,45 @@ */ package com.gitblit.wicket; +import java.io.File; +import java.io.IOException; +import java.net.URL; +import java.time.Instant; import java.util.Date; import java.util.HashMap; +import java.util.List; import java.util.Locale; import java.util.Map; import java.util.TimeZone; +import java.util.stream.Collectors; +import org.apache.commons.io.IOUtils; +import org.apache.sshd.server.ServerBuilder; import org.apache.wicket.RuntimeConfigurationType; import org.apache.wicket.Session; import org.apache.wicket.application.IClassResolver; +import org.apache.wicket.core.util.file.WebApplicationPath; +import org.apache.wicket.core.util.resource.ClassPathResourceFinder; +import org.apache.wicket.core.util.resource.UrlResourceStream; import org.apache.wicket.markup.html.WebPage; import org.apache.wicket.protocol.http.WebApplication; import org.apache.wicket.request.Request; import org.apache.wicket.request.Response; +import org.apache.wicket.request.mapper.parameter.PageParameters; +import org.apache.wicket.request.resource.IResource; +import org.apache.wicket.request.resource.ResourceReference; +import org.apache.wicket.request.resource.SharedResourceReference; +import org.apache.wicket.request.resource.IResource.Attributes; +import org.apache.wicket.request.resource.PackageResourceReference; +import org.apache.wicket.util.file.IResourceFinder; +import org.apache.wicket.util.resource.IResourceStream; +import org.apache.wicket.util.string.StringValue; import org.apache.wicket.util.time.Duration; import ro.fortsoft.pf4j.PluginState; import ro.fortsoft.pf4j.PluginWrapper; +import com.gitblit.Constants; import com.gitblit.IStoredSettings; import com.gitblit.Keys; import com.gitblit.extensions.GitblitWicketPlugin; @@ -95,6 +116,7 @@ import com.gitblit.wicket.pages.TicketsPage; import com.gitblit.wicket.pages.TreePage; import com.gitblit.wicket.pages.UserPage; import com.gitblit.wicket.pages.UsersPage; +import com.gitblit.wicket.resources.bootstrap.Bootstrap; import com.google.inject.Inject; import com.google.inject.Provider; import com.google.inject.Singleton; @@ -135,24 +157,18 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { private final IGitblit gitblit; private final IServicesManager services; - + private final IFilestoreManager filestoreManager; + private static final Instant APPLICATION_STARTUP_TIME = Instant.now(); + @Inject - public GitBlitWebApp( - Provider<IPublicKeyManager> publicKeyManagerProvider, - Provider<ITicketService> ticketServiceProvider, - IRuntimeManager runtimeManager, - IPluginManager pluginManager, - INotificationManager notificationManager, - IUserManager userManager, - IAuthenticationManager authenticationManager, - IRepositoryManager repositoryManager, - IProjectManager projectManager, - IFederationManager federationManager, - IGitblit gitblit, - IServicesManager services, - IFilestoreManager filestoreManager) { + public GitBlitWebApp(Provider<IPublicKeyManager> publicKeyManagerProvider, + Provider<ITicketService> ticketServiceProvider, IRuntimeManager runtimeManager, + IPluginManager pluginManager, INotificationManager notificationManager, IUserManager userManager, + IAuthenticationManager authenticationManager, IRepositoryManager repositoryManager, + IProjectManager projectManager, IFederationManager federationManager, IGitblit gitblit, + IServicesManager services, IFilestoreManager filestoreManager) { super(); this.publicKeyManagerProvider = publicKeyManagerProvider; @@ -247,10 +263,12 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { mount("/user", UserPage.class, "user"); mount("/forks", ForksPage.class, "r"); mount("/fork", ForkPage.class, "r"); - + // filestore URL mount("/filestore", FilestorePage.class); + Bootstrap.install(this); + // allow started Wicket plugins to initialize for (PluginWrapper pluginWrapper : pluginManager.getPlugins()) { if (PluginState.STARTED != pluginWrapper.getPluginState()) { @@ -262,16 +280,19 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { } } - // customize the Wicket class resolver to load from plugins + // customize the Wicket class resolver to load from plugins IClassResolver coreResolver = getApplicationSettings().getClassResolver(); - PluginClassResolver classResolver = new PluginClassResolver(coreResolver, pluginManager); - getApplicationSettings().setClassResolver(classResolver); + PluginClassResolver classResolver = new PluginClassResolver(coreResolver, pluginManager); + getApplicationSettings().setClassResolver(classResolver); - getMarkupSettings().setDefaultMarkupEncoding("UTF-8"); + getMarkupSettings().setDefaultMarkupEncoding(Constants.ENCODING); } - /* (non-Javadoc) - * @see com.gitblit.wicket.Webapp#mount(java.lang.String, java.lang.Class, java.lang.String) + /* + * (non-Javadoc) + * + * @see com.gitblit.wicket.Webapp#mount(java.lang.String, java.lang.Class, + * java.lang.String) */ @Override public void mount(String location, Class<? extends WebPage> clazz, String... parameters) { @@ -281,11 +302,11 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { if (!settings.getBoolean(Keys.web.mountParameters, true)) { parameters = new String[] {}; } - //TODO: check if needed with wichet-7 -// mount(new GitblitParamUrlCodingStrategy(settings, xssFilter, location, clazz, parameters)); + // TODO: check if needed with wichet-7 + // mount(new GitblitParamUrlCodingStrategy(settings, xssFilter, + // location, clazz, parameters)); mountPage(location, clazz); - - + // map the mount point to the cache control definition if (clazz.isAnnotationPresent(CacheControl.class)) { CacheControl cacheControl = clazz.getAnnotation(CacheControl.class); @@ -293,7 +314,9 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { } } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#getHomePage() */ @Override @@ -305,7 +328,9 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { return newRepositoryPageClass; } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#isCacheablePage(java.lang.String) */ @Override @@ -313,7 +338,9 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { return cacheablePages.containsKey(mountPoint); } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#getCacheControl(java.lang.String) */ @Override @@ -332,7 +359,9 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { return gitBlitWebSession; } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#settings() */ @Override @@ -340,7 +369,9 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { return settings; } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#xssFilter() */ @Override @@ -348,7 +379,9 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { return xssFilter; } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#isDebugMode() */ @Override @@ -357,10 +390,12 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { } /* - * These methods look strange... and they are... but they are the first - * step towards modularization across multiple commits. + * These methods look strange... and they are... but they are the first step + * towards modularization across multiple commits. */ - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#getBootDate() */ @Override @@ -368,7 +403,9 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { return runtimeManager.getBootDate(); } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#getLastActivityDate() */ @Override @@ -376,7 +413,9 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { return repositoryManager.getLastActivityDate(); } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#runtime() */ @Override @@ -384,7 +423,9 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { return runtimeManager; } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#plugins() */ @Override @@ -392,7 +433,9 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { return pluginManager; } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#notifier() */ @Override @@ -400,7 +443,9 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { return notificationManager; } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#users() */ @Override @@ -408,7 +453,9 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { return userManager; } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#authentication() */ @Override @@ -416,7 +463,9 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { return authenticationManager; } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#keys() */ @Override @@ -424,7 +473,9 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { return publicKeyManagerProvider.get(); } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#repositories() */ @Override @@ -432,7 +483,9 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { return repositoryManager; } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#projects() */ @Override @@ -440,7 +493,9 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { return projectManager; } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#federation() */ @Override @@ -448,7 +503,9 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { return federationManager; } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#gitblit() */ @Override @@ -456,7 +513,9 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { return gitblit; } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#services() */ @Override @@ -464,7 +523,9 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { return services; } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#tickets() */ @Override @@ -472,7 +533,9 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { return ticketServiceProvider.get(); } - /* (non-Javadoc) + /* + * (non-Javadoc) + * * @see com.gitblit.wicket.Webapp#getTimezone() */ @Override @@ -480,6 +543,10 @@ public class GitBlitWebApp extends WebApplication implements GitblitWicketApp { return runtimeManager.getTimezone(); } + public Instant getApplicationStartupTime() { + return APPLICATION_STARTUP_TIME; + } + @Override public final RuntimeConfigurationType getConfigurationType() { if (runtimeManager.isDebugMode()) { diff --git a/src/main/java/com/gitblit/wicket/charting/Flotr2Charts.java b/src/main/java/com/gitblit/wicket/charting/Flotr2Charts.java index f6b99426..ba31831c 100644 --- a/src/main/java/com/gitblit/wicket/charting/Flotr2Charts.java +++ b/src/main/java/com/gitblit/wicket/charting/Flotr2Charts.java @@ -18,12 +18,11 @@ package com.gitblit.wicket.charting; import javax.servlet.ServletContext; import org.apache.wicket.Component; +import org.apache.wicket.markup.head.CssHeaderItem; import org.apache.wicket.markup.head.IHeaderResponse; import org.apache.wicket.markup.head.JavaScriptHeaderItem; import org.apache.wicket.markup.head.OnDomReadyHeaderItem; -import org.apache.wicket.protocol.http.WebApplication; -import org.apache.wicket.request.resource.ContextRelativeResource; -import org.apache.wicket.request.resource.ContextRelativeResourceReference; +import org.apache.wicket.request.resource.PackageResourceReference; /** * Concrete class for Flotr2 charts @@ -39,17 +38,12 @@ public class Flotr2Charts extends Charts { public void renderHead(Component component, IHeaderResponse response) { // add Google Chart JS API reference - ServletContext servletContext = WebApplication.get().getServletContext(); - String contextPath = servletContext.getContextPath(); - - response.render(JavaScriptHeaderItem.forReference(new ContextRelativeResourceReference(contextPath + "/bootstrap/js/jquery.js", false))); - response.render(JavaScriptHeaderItem.forReference(new ContextRelativeResourceReference(contextPath + "/flotr2/flotr2.min.js", false))); - response.render(JavaScriptHeaderItem.forReference(new ContextRelativeResourceReference(contextPath + "/flotr2/flotr2.custom.css", false))); + response.render(JavaScriptHeaderItem.forReference(new PackageResourceReference(Flotr2Charts.class, "flotr2.min.js"))); + response.render(CssHeaderItem.forReference(new PackageResourceReference(Flotr2Charts.class, "flotr2.custom.css"))); // prepare draw chart function StringBuilder sb = new StringBuilder(); -// line(sb, "$( document ).ready(function() {"); line(sb, "try {"); // add charts to header for (Chart chart : charts) { @@ -62,7 +56,6 @@ public class Flotr2Charts extends Charts { line(sb, " }"); line(sb, "}"); // end draw chart function -// line(sb, "});"); response.render(OnDomReadyHeaderItem.forScript(sb.toString())); } diff --git a/src/main/resources/flotr2/flotr2.custom.css b/src/main/java/com/gitblit/wicket/charting/flotr2.custom.css index d3f92707..d3f92707 100644 --- a/src/main/resources/flotr2/flotr2.custom.css +++ b/src/main/java/com/gitblit/wicket/charting/flotr2.custom.css diff --git a/src/main/resources/flotr2/flotr2.min.js b/src/main/java/com/gitblit/wicket/charting/flotr2.min.js index c348a695..c348a695 100644 --- a/src/main/resources/flotr2/flotr2.min.js +++ b/src/main/java/com/gitblit/wicket/charting/flotr2.min.js diff --git a/src/main/java/com/gitblit/wicket/pages/BasePage.html b/src/main/java/com/gitblit/wicket/pages/BasePage.html index b998428c..fe9cc481 100644 --- a/src/main/java/com/gitblit/wicket/pages/BasePage.html +++ b/src/main/java/com/gitblit/wicket/pages/BasePage.html @@ -7,11 +7,10 @@ <!-- Head -->
<wicket:head>
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<title wicket:id="title">[page title]</title>
<link rel="icon" href="gitblt-favicon.png" type="image/png" />
-
<link rel="stylesheet" href="bootstrap/css/bootstrap.css"/>
<link rel="stylesheet" href="bootstrap/css/iconic.css"/>
<link rel="stylesheet" href="fontawesome/css/font-awesome.min.css"/>
@@ -49,7 +48,7 @@ </style>
<!-- Include scripts at end for faster page loading -->
- <script type="text/javascript" src="bootstrap/js/jquery.js"></script>
+<!-- <script type="text/javascript" src="bootstrap/js/jquery.js"></script> -->
<script type="text/javascript" src="bootstrap/js/bootstrap.js"></script>
<wicket:container wicket:id="bottomScripts"></wicket:container>
</body>
diff --git a/src/main/java/com/gitblit/wicket/pages/BasePage.java b/src/main/java/com/gitblit/wicket/pages/BasePage.java index 887edac6..0c35bb4b 100644 --- a/src/main/java/com/gitblit/wicket/pages/BasePage.java +++ b/src/main/java/com/gitblit/wicket/pages/BasePage.java @@ -38,7 +38,7 @@ import org.apache.wicket.request.flow.RedirectToUrlException; import org.apache.wicket.request.http.WebResponse;
import org.apache.wicket.request.http.handler.RedirectRequestHandler;
import org.apache.wicket.request.mapper.parameter.PageParameters;
-import org.apache.wicket.request.resource.CssResourceReference;
+import org.apache.wicket.request.resource.ContextRelativeResourceReference;
import org.apache.wicket.request.resource.JavaScriptResourceReference;
import org.apache.wicket.markup.head.CssHeaderItem;
import org.apache.wicket.markup.head.IHeaderResponse;
@@ -78,12 +78,12 @@ public abstract class BasePage extends SessionPage { public BasePage() {
super();
-// customizeHeader();
+ // customizeHeader();
}
public BasePage(PageParameters params) {
super(params);
-// customizeHeader();
+ // customizeHeader();
}
protected Logger logger() {
@@ -93,25 +93,15 @@ public abstract class BasePage extends SessionPage { return logger;
}
-// private void customizeHeader() {
-// if (app().settings().getBoolean(Keys.web.useResponsiveLayout, true)) {
-// add(CssPackageResource.getHeaderContribution("bootstrap/css/bootstrap-responsive.css"));
-// }
-// if (app().settings().getBoolean(Keys.web.hideHeader, false)) {
-// add(CssPackageResource.getHeaderContribution("hideheader.css"));
-// }
-// }
-
@Override
public void renderHead(IHeaderResponse response) {
super.renderHead(response);
if (app().settings().getBoolean(Keys.web.useResponsiveLayout, true)) {
-// add(CssPackageResource.getHeaderContribution("bootstrap/css/bootstrap-responsive.css"));
- response.render(CssHeaderItem.forReference(new CssResourceReference(Application.class, "bootstrap/css/bootstrap-responsive.css")));
+ response.render(CssHeaderItem.forReference(
+ new ContextRelativeResourceReference("/bootstrap/css/bootstrap-responsive.css", false)));
}
if (app().settings().getBoolean(Keys.web.hideHeader, false)) {
-// add(CssPackageResource.getHeaderContribution("hideheader.css"));
- response.render(CssHeaderItem.forReference(new CssResourceReference(Application.class, "hideheader.css")));
+ response.render(CssHeaderItem.forReference(new ContextRelativeResourceReference("/hideheader.css", false)));
}
}
@@ -148,7 +138,8 @@ public abstract class BasePage extends SessionPage { if (timeUtils == null) {
ResourceBundle bundle;
try {
- bundle = ResourceBundle.getBundle("com.gitblit.wicket.GitBlitWebApp", GitBlitWebSession.get().getLocale());
+ bundle = ResourceBundle.getBundle("com.gitblit.wicket.GitBlitWebApp",
+ GitBlitWebSession.get().getLocale());
} catch (Throwable t) {
bundle = ResourceBundle.getBundle("com.gitblit.wicket.GitBlitWebApp");
}
@@ -176,7 +167,7 @@ public abstract class BasePage extends SessionPage { }
@Override
- protected void setHeaders(WebResponse response) {
+ protected void setHeaders(WebResponse response) {
// set canonical link as http header for SEO (issue-304)
// https://support.google.com/webmasters/answer/139394?hl=en
response.setHeader("Link", MessageFormat.format("<{0}>; rel=\"canonical\"", getCanonicalUrl()));
@@ -196,7 +187,7 @@ public abstract class BasePage extends SessionPage { }
/**
- * Sets the last-modified header date, if appropriate, for this page. The
+ * Sets the last-modified header date, if appropriate, for this page. The
* date used is determined by the CacheControl annotation.
*
*/
@@ -239,7 +230,8 @@ public abstract class BasePage extends SessionPage { int expires = app().settings().getInteger(Keys.web.pageCacheExpires, 0);
WebResponse response = (WebResponse) getResponse();
response.setLastModifiedTime(Time.valueOf(when));
- response.addHeader("Expires", String.valueOf(System.currentTimeMillis() + Duration.minutes(expires).getMilliseconds()));
+ response.addHeader("Expires",
+ String.valueOf(System.currentTimeMillis() + Duration.minutes(expires).getMilliseconds()));
}
protected String getPageTitle(String repositoryName) {
@@ -257,7 +249,8 @@ public abstract class BasePage extends SessionPage { protected void setupPage(String repositoryName, String pageName) {
add(new Label("title", getPageTitle(repositoryName)));
getBottomScriptContainer();
- String rootLinkUrl = app().settings().getString(Keys.web.rootLink, urlFor(GitBlitWebApp.get().getHomePage(), null).toString());
+ String rootLinkUrl = app().settings().getString(Keys.web.rootLink,
+ urlFor(GitBlitWebApp.get().getHomePage(), null).toString());
ExternalLink rootLink = new ExternalLink("rootLink", rootLinkUrl);
WicketUtils.setHtmlTooltip(rootLink, app().settings().getString(Keys.web.siteName, Constants.NAME));
add(rootLink);
@@ -359,8 +352,8 @@ public abstract class BasePage extends SessionPage { }
protected TimeZone getTimeZone() {
- return app().settings().getBoolean(Keys.web.useClientTimezone, false) ? GitBlitWebSession.get()
- .getTimezone() : app().getTimezone();
+ return app().settings().getBoolean(Keys.web.useClientTimezone, false) ? GitBlitWebSession.get().getTimezone()
+ : app().getTimezone();
}
protected String getServerName() {
@@ -472,9 +465,9 @@ public abstract class BasePage extends SessionPage { public void error(String message, Throwable t, Class<? extends Page> toPage, PageParameters params) {
if (t == null) {
- logger().error(message + " for " + GitBlitWebSession.get().getUsername());
+ logger().error(message + " for " + GitBlitWebSession.get().getUsername());
} else {
- logger().error(message + " for " + GitBlitWebSession.get().getUsername(), t);
+ logger().error(message + " for " + GitBlitWebSession.get().getUsername(), t);
}
if (toPage != null) {
GitBlitWebSession.get().cacheErrorMessage(message);
@@ -528,10 +521,12 @@ public abstract class BasePage extends SessionPage { }
/**
- * Adds a HTML script element loading the javascript designated by the given path.
+ * Adds a HTML script element loading the javascript designated by the given
+ * path.
*
* @param scriptPath
- * page-relative path to the Javascript resource; normally starts with "scripts/"
+ * page-relative path to the Javascript resource; normally starts
+ * with "scripts/"
*/
protected void addBottomScript(String scriptPath) {
RepeatingView bottomScripts = getBottomScriptContainer();
diff --git a/src/main/java/com/gitblit/wicket/pages/RootPage.java b/src/main/java/com/gitblit/wicket/pages/RootPage.java index 08c4e30b..455dd417 100644 --- a/src/main/java/com/gitblit/wicket/pages/RootPage.java +++ b/src/main/java/com/gitblit/wicket/pages/RootPage.java @@ -81,8 +81,6 @@ import com.gitblit.wicket.panels.AvatarImage; import com.gitblit.wicket.panels.LinkPanel; import com.gitblit.wicket.panels.NavigationPanel; -import de.akquinet.devops.GitBlitServer4UITests; - /** * Root page is a topbar, navigable page like Repositories, Users, or * Federation. @@ -92,6 +90,8 @@ import de.akquinet.devops.GitBlitServer4UITests; */ public abstract class RootPage extends BasePage { + private static final long serialVersionUID = 1L; + boolean showAdmin; IModel<String> username = new Model<String>(""); diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/Bootstrap.java b/src/main/java/com/gitblit/wicket/resources/bootstrap/Bootstrap.java new file mode 100644 index 00000000..f675af66 --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/Bootstrap.java @@ -0,0 +1,36 @@ +package com.gitblit.wicket.resources.bootstrap; + +import org.apache.wicket.protocol.http.WebApplication; +import org.apache.wicket.request.resource.PackageResourceReference; + + +public class Bootstrap { + + public static void install(WebApplication app) { + app.mountResource("/bootstrap/css/bootstrap.css", new PackageResourceReference(Bootstrap.class, "css/bootstrap.css")); + app.mountResource("/bootstrap/css/bootstrap-responsive.css", new PackageResourceReference(Bootstrap.class, "css/bootstrap-responsive.css")); + app.mountResource("/bootstrap/css/iconic.css", new PackageResourceReference(Bootstrap.class, "css/iconic.css")); + + app.mountResource("/bootstrap/font/iconic_fill.afm", new PackageResourceReference(Bootstrap.class, "font/iconic_fill.afm")); + app.mountResource("/bootstrap/font/iconic_fill.css", new PackageResourceReference(Bootstrap.class, "font/iconic_fill.css")); + app.mountResource("/bootstrap/font/iconic_fill.eot", new PackageResourceReference(Bootstrap.class, "font/iconic_fill.eot")); + app.mountResource("/bootstrap/font/iconic_fill.otf", new PackageResourceReference(Bootstrap.class, "font/iconic_fill.otf")); + app.mountResource("/bootstrap/font/iconic_fill.svg", new PackageResourceReference(Bootstrap.class, "font/iconic_fill.svg")); + app.mountResource("/bootstrap/font/iconic_fill.ttf", new PackageResourceReference(Bootstrap.class, "font/iconic_fill.ttf")); + app.mountResource("/bootstrap/font/iconic_fill.woff", new PackageResourceReference(Bootstrap.class, "font/iconic_fill.woff")); + + app.mountResource("/bootstrap/font/iconic_stroke.afm", new PackageResourceReference(Bootstrap.class, "font/iconic_stroke.afm")); + app.mountResource("/bootstrap/font/iconic_stroke.css", new PackageResourceReference(Bootstrap.class, "font/iconic_stroke.css")); + app.mountResource("/bootstrap/font/iconic_stroke.eot", new PackageResourceReference(Bootstrap.class, "font/iconic_stroke.eot")); + app.mountResource("/bootstrap/font/iconic_stroke.otf", new PackageResourceReference(Bootstrap.class, "font/iconic_stroke.otf")); + app.mountResource("/bootstrap/font/iconic_stroke.svg", new PackageResourceReference(Bootstrap.class, "font/iconic_stroke.svg")); + app.mountResource("/bootstrap/font/iconic_stroke.ttf", new PackageResourceReference(Bootstrap.class, "font/iconic_stroke.ttf")); + app.mountResource("/bootstrap/font/iconic_stroke.woff", new PackageResourceReference(Bootstrap.class, "font/iconic_stroke.woff")); + + app.mountResource("/bootstrap/img/glyphicons-halflings-white.png", new PackageResourceReference(Bootstrap.class, "img/glyphicons-halflings-white.png")); + app.mountResource("/bootstrap/img/glyphicons-halflings.png", new PackageResourceReference(Bootstrap.class, "img/glyphicons-halflings.png")); + + app.mountResource("/bootstrap/js/bootstrap.js", new PackageResourceReference(Bootstrap.class, "js/bootstrap.js")); + } + +} diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/css/bootstrap-responsive.css b/src/main/java/com/gitblit/wicket/resources/bootstrap/css/bootstrap-responsive.css new file mode 100644 index 00000000..7e7ec697 --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/css/bootstrap-responsive.css @@ -0,0 +1,810 @@ +/*! + * Bootstrap Responsive v2.0.4 + * + * Copyright 2012 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world @twitter by @mdo and @fat. + */ + +.clearfix { + *zoom: 1; +} + +.clearfix:before, +.clearfix:after { + display: table; + content: ""; +} + +.clearfix:after { + clear: both; +} + +.hide-text { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.input-block-level { + display: block; + width: 100%; + min-height: 28px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + -ms-box-sizing: border-box; + box-sizing: border-box; +} + +.hidden { + display: none; + visibility: hidden; +} + +.visible-phone { + display: none !important; +} + +.visible-tablet { + display: none !important; +} + +.hidden-desktop { + display: none !important; +} + +@media (max-width: 767px) { + .visible-phone { + display: inherit !important; + } + .hidden-phone { + display: none !important; + } + .hidden-desktop { + display: inherit !important; + } + .visible-desktop { + display: none !important; + } +} + +@media (min-width: 768px) and (max-width: 979px) { + .visible-tablet { + display: inherit !important; + } + .hidden-tablet { + display: none !important; + } + .hidden-desktop { + display: inherit !important; + } + .visible-desktop { + display: none !important ; + } +} + +@media (max-width: 480px) { + .nav-collapse { + -webkit-transform: translate3d(0, 0, 0); + } + .page-header h1 small { + display: block; + line-height: 18px; + } + input[type="checkbox"], + input[type="radio"] { + border: 1px solid #ccc; + } + .form-horizontal .control-group > label { + float: none; + width: auto; + padding-top: 0; + text-align: left; + } + .form-horizontal .controls { + margin-left: 0; + } + .form-horizontal .control-list { + padding-top: 0; + } + .form-horizontal .form-actions { + padding-right: 10px; + padding-left: 10px; + } + .modal { + position: absolute; + top: 10px; + right: 10px; + left: 10px; + width: auto; + margin: 0; + } + .modal.fade.in { + top: auto; + } + .modal-header .close { + padding: 10px; + margin: -10px; + } + .carousel-caption { + position: static; + } +} + +@media (max-width: 767px) { + body { + padding-right: 20px; + padding-left: 20px; + } + .navbar-fixed-top, + .navbar-fixed-bottom { + margin-right: -20px; + margin-left: -20px; + } + .container-fluid { + padding: 0; + } + .dl-horizontal dt { + float: none; + width: auto; + clear: none; + text-align: left; + } + .dl-horizontal dd { + margin-left: 0; + } + .container { + width: auto; + } + .row-fluid { + width: 100%; + } + .row, + .thumbnails { + margin-left: 0; + } + [class*="span"], + .row-fluid [class*="span"] { + display: block; + float: none; + width: auto; + margin-left: 0; + } + .input-large, + .input-xlarge, + .input-xxlarge, + input[class*="span"], + select[class*="span"], + textarea[class*="span"], + .uneditable-input { + display: block; + width: 100%; + min-height: 28px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + -ms-box-sizing: border-box; + box-sizing: border-box; + } + .input-prepend input, + .input-append input, + .input-prepend input[class*="span"], + .input-append input[class*="span"] { + display: inline-block; + width: auto; + } +} + +@media (min-width: 768px) and (max-width: 979px) { + .row { + margin-left: -20px; + *zoom: 1; + } + .row:before, + .row:after { + display: table; + content: ""; + } + .row:after { + clear: both; + } + [class*="span"] { + float: left; + margin-left: 20px; + } + .container, + .navbar-fixed-top .container, + .navbar-fixed-bottom .container { + width: 724px; + } + .span12 { + width: 724px; + } + .span11 { + width: 662px; + } + .span10 { + width: 600px; + } + .span9 { + width: 538px; + } + .span8 { + width: 476px; + } + .span7 { + width: 414px; + } + .span6 { + width: 352px; + } + .span5 { + width: 290px; + } + .span4 { + width: 228px; + } + .span3 { + width: 166px; + } + .span2 { + width: 104px; + } + .span1 { + width: 42px; + } + .offset12 { + margin-left: 764px; + } + .offset11 { + margin-left: 702px; + } + .offset10 { + margin-left: 640px; + } + .offset9 { + margin-left: 578px; + } + .offset8 { + margin-left: 516px; + } + .offset7 { + margin-left: 454px; + } + .offset6 { + margin-left: 392px; + } + .offset5 { + margin-left: 330px; + } + .offset4 { + margin-left: 268px; + } + .offset3 { + margin-left: 206px; + } + .offset2 { + margin-left: 144px; + } + .offset1 { + margin-left: 82px; + } + .row-fluid { + width: 100%; + *zoom: 1; + } + .row-fluid:before, + .row-fluid:after { + display: table; + content: ""; + } + .row-fluid:after { + clear: both; + } + .row-fluid [class*="span"] { + display: block; + float: left; + width: 100%; + min-height: 28px; + margin-left: 2.762430939%; + *margin-left: 2.709239449638298%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + -ms-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="span"]:first-child { + margin-left: 0; + } + .row-fluid .span12 { + width: 99.999999993%; + *width: 99.9468085036383%; + } + .row-fluid .span11 { + width: 91.436464082%; + *width: 91.38327259263829%; + } + .row-fluid .span10 { + width: 82.87292817100001%; + *width: 82.8197366816383%; + } + .row-fluid .span9 { + width: 74.30939226%; + *width: 74.25620077063829%; + } + .row-fluid .span8 { + width: 65.74585634900001%; + *width: 65.6926648596383%; + } + .row-fluid .span7 { + width: 57.182320438000005%; + *width: 57.129128948638304%; + } + .row-fluid .span6 { + width: 48.618784527%; + *width: 48.5655930376383%; + } + .row-fluid .span5 { + width: 40.055248616%; + *width: 40.0020571266383%; + } + .row-fluid .span4 { + width: 31.491712705%; + *width: 31.4385212156383%; + } + .row-fluid .span3 { + width: 22.928176794%; + *width: 22.874985304638297%; + } + .row-fluid .span2 { + width: 14.364640883%; + *width: 14.311449393638298%; + } + .row-fluid .span1 { + width: 5.801104972%; + *width: 5.747913482638298%; + } + input, + textarea, + .uneditable-input { + margin-left: 0; + } + input.span12, + textarea.span12, + .uneditable-input.span12 { + width: 714px; + } + input.span11, + textarea.span11, + .uneditable-input.span11 { + width: 652px; + } + input.span10, + textarea.span10, + .uneditable-input.span10 { + width: 590px; + } + input.span9, + textarea.span9, + .uneditable-input.span9 { + width: 528px; + } + input.span8, + textarea.span8, + .uneditable-input.span8 { + width: 466px; + } + input.span7, + textarea.span7, + .uneditable-input.span7 { + width: 404px; + } + input.span6, + textarea.span6, + .uneditable-input.span6 { + width: 342px; + } + input.span5, + textarea.span5, + .uneditable-input.span5 { + width: 280px; + } + input.span4, + textarea.span4, + .uneditable-input.span4 { + width: 218px; + } + input.span3, + textarea.span3, + .uneditable-input.span3 { + width: 156px; + } + input.span2, + textarea.span2, + .uneditable-input.span2 { + width: 94px; + } + input.span1, + textarea.span1, + .uneditable-input.span1 { + width: 32px; + } +} + +@media (min-width: 1200px) { + .row { + margin-left: -30px; + *zoom: 1; + } + .row:before, + .row:after { + display: table; + content: ""; + } + .row:after { + clear: both; + } + [class*="span"] { + float: left; + margin-left: 30px; + } + .container, + .navbar-fixed-top .container, + .navbar-fixed-bottom .container { + width: 1170px; + } + .span12 { + width: 1170px; + } + .span11 { + width: 1070px; + } + .span10 { + width: 970px; + } + .span9 { + width: 870px; + } + .span8 { + width: 770px; + } + .span7 { + width: 670px; + } + .span6 { + width: 570px; + } + .span5 { + width: 470px; + } + .span4 { + width: 370px; + } + .span3 { + width: 270px; + } + .span2 { + width: 170px; + } + .span1 { + width: 70px; + } + .offset12 { + margin-left: 1230px; + } + .offset11 { + margin-left: 1130px; + } + .offset10 { + margin-left: 1030px; + } + .offset9 { + margin-left: 930px; + } + .offset8 { + margin-left: 830px; + } + .offset7 { + margin-left: 730px; + } + .offset6 { + margin-left: 630px; + } + .offset5 { + margin-left: 530px; + } + .offset4 { + margin-left: 430px; + } + .offset3 { + margin-left: 330px; + } + .offset2 { + margin-left: 230px; + } + .offset1 { + margin-left: 130px; + } + .row-fluid { + width: 100%; + *zoom: 1; + } + .row-fluid:before, + .row-fluid:after { + display: table; + content: ""; + } + .row-fluid:after { + clear: both; + } + .row-fluid [class*="span"] { + display: block; + float: left; + width: 100%; + min-height: 28px; + margin-left: 2.564102564%; + *margin-left: 2.510911074638298%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + -ms-box-sizing: border-box; + box-sizing: border-box; + } + .row-fluid [class*="span"]:first-child { + margin-left: 0; + } + .row-fluid .span12 { + width: 100%; + *width: 99.94680851063829%; + } + .row-fluid .span11 { + width: 91.45299145300001%; + *width: 91.3997999636383%; + } + .row-fluid .span10 { + width: 82.905982906%; + *width: 82.8527914166383%; + } + .row-fluid .span9 { + width: 74.358974359%; + *width: 74.30578286963829%; + } + .row-fluid .span8 { + width: 65.81196581200001%; + *width: 65.7587743226383%; + } + .row-fluid .span7 { + width: 57.264957265%; + *width: 57.2117657756383%; + } + .row-fluid .span6 { + width: 48.717948718%; + *width: 48.6647572286383%; + } + .row-fluid .span5 { + width: 40.170940171000005%; + *width: 40.117748681638304%; + } + .row-fluid .span4 { + width: 31.623931624%; + *width: 31.5707401346383%; + } + .row-fluid .span3 { + width: 23.076923077%; + *width: 23.0237315876383%; + } + .row-fluid .span2 { + width: 14.529914530000001%; + *width: 14.4767230406383%; + } + .row-fluid .span1 { + width: 5.982905983%; + *width: 5.929714493638298%; + } + input, + textarea, + .uneditable-input { + margin-left: 0; + } + input.span12, + textarea.span12, + .uneditable-input.span12 { + width: 1160px; + } + input.span11, + textarea.span11, + .uneditable-input.span11 { + width: 1060px; + } + input.span10, + textarea.span10, + .uneditable-input.span10 { + width: 960px; + } + input.span9, + textarea.span9, + .uneditable-input.span9 { + width: 860px; + } + input.span8, + textarea.span8, + .uneditable-input.span8 { + width: 760px; + } + input.span7, + textarea.span7, + .uneditable-input.span7 { + width: 660px; + } + input.span6, + textarea.span6, + .uneditable-input.span6 { + width: 560px; + } + input.span5, + textarea.span5, + .uneditable-input.span5 { + width: 460px; + } + input.span4, + textarea.span4, + .uneditable-input.span4 { + width: 360px; + } + input.span3, + textarea.span3, + .uneditable-input.span3 { + width: 260px; + } + input.span2, + textarea.span2, + .uneditable-input.span2 { + width: 160px; + } + input.span1, + textarea.span1, + .uneditable-input.span1 { + width: 60px; + } + .thumbnails { + margin-left: -30px; + } + .thumbnails > li { + margin-left: 30px; + } + .row-fluid .thumbnails { + margin-left: 0; + } +} + +@media (max-width: 979px) { + body { + padding-top: 0; + } + .navbar-fixed-top, + .navbar-fixed-bottom { + position: static; + } + .navbar-fixed-top { + margin-bottom: 0px; + } + .navbar-fixed-bottom { + margin-top: 18px; + } + .navbar-fixed-top .navbar-inner, + .navbar-fixed-bottom .navbar-inner { + padding: 0px 5px 1px; + } + .navbar .container { + width: auto; + padding: 0; + } + .nav-collapse { + clear: both; + } + .nav-collapse .nav { + float: none; + margin: 0 0 9px; + } + .nav-collapse .nav > li { + float: none; + } + .nav-collapse .nav > li > a { + margin-bottom: 2px; + } + .nav-collapse .nav > .divider-vertical { + display: none; + } + .nav-collapse .nav .nav-header { + color: #999999; + text-shadow: none; + } + .nav-collapse .nav > li > a, + .nav-collapse .dropdown-menu a { + padding: 6px 15px; + font-weight: bold; + color: #999999; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + } + .nav-collapse .btn { + padding: 4px 10px 4px; + font-weight: normal; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + } + .nav-collapse .dropdown-menu li + li a { + margin-bottom: 2px; + } + .nav-collapse .nav > li > a:hover, + .nav-collapse .dropdown-menu a:hover { + background-color: #222222; + } + .nav-collapse.in .btn-group { + padding: 0; + margin-top: 5px; + } + .nav-collapse .dropdown-menu { + position: static; + top: auto; + left: auto; + display: block; + float: none; + max-width: none; + padding: 0; + margin: 0 15px; + background-color: transparent; + border: none; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; + } + .nav-collapse .dropdown-menu:before, + .nav-collapse .dropdown-menu:after { + display: none; + } + .nav-collapse .dropdown-menu .divider { + display: none; + } + .nav-collapse .navbar-form, + .nav-collapse .navbar-search { + float: none; + padding: 9px 15px; + margin: 9px 0; + border-top: 1px solid #222222; + border-bottom: 1px solid #222222; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + } + .navbar .nav-collapse .nav.pull-right { + float: none; + margin-left: 0; + } + .nav-collapse, + .nav-collapse.collapse { + height: 0; + overflow: hidden; + } + .navbar .btn-navbar { + display: block; + } + .navbar-static .navbar-inner { + padding-right: 10px; + padding-left: 10px; + } +} + +@media (min-width: 980px) { + .nav-collapse.collapse { + height: auto !important; + overflow: visible !important; + } +} diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/css/bootstrap.css b/src/main/java/com/gitblit/wicket/resources/bootstrap/css/bootstrap.css new file mode 100644 index 00000000..bb40c85f --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/css/bootstrap.css @@ -0,0 +1,4983 @@ +/*! + * Bootstrap v2.0.4 + * + * Copyright 2012 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world @twitter by @mdo and @fat. + */ + +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +nav, +section { + display: block; +} + +audio, +canvas, +video { + display: inline-block; + *display: inline; + *zoom: 1; +} + +audio:not([controls]) { + display: none; +} + +html { + font-size: 100%; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} + +a:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +a:hover, +a:active { + outline: 0; +} + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +sup { + top: -0.5em; +} + +sub { + bottom: -0.25em; +} + +img { + max-width: 100%; + vertical-align: middle; + border: 0; + -ms-interpolation-mode: bicubic; +} + +#map_canvas img { + max-width: none; +} + +button, +input, +select, +textarea { + margin: 0; + font-size: 100%; + vertical-align: middle; +} + +button, +input { + *overflow: visible; + line-height: normal; +} + +button::-moz-focus-inner, +input::-moz-focus-inner { + padding: 0; + border: 0; +} + +button, +input[type="button"], +input[type="reset"], +input[type="submit"] { + cursor: pointer; + -webkit-appearance: button; +} + +input[type="search"] { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; + -webkit-appearance: textfield; +} + +input[type="search"]::-webkit-search-decoration, +input[type="search"]::-webkit-search-cancel-button { + -webkit-appearance: none; +} + +textarea { + overflow: auto; + vertical-align: top; +} + +.clearfix { + *zoom: 1; +} + +.clearfix:before, +.clearfix:after { + display: table; + content: ""; +} + +.clearfix:after { + clear: both; +} + +.hide-text { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} + +.input-block-level { + display: block; + width: 100%; + min-height: 28px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + -ms-box-sizing: border-box; + box-sizing: border-box; +} + +body { + margin: 0; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 13px; + line-height: 18px; + color: #333333; + background-color: #ffffff; +} + +a { + color: #0088cc; + text-decoration: none; +} + +a:hover { + color: #005580; + text-decoration: underline; +} + +.row { + margin-left: -20px; + *zoom: 1; +} + +.row:before, +.row:after { + display: table; + content: ""; +} + +.row:after { + clear: both; +} + +[class*="span"] { + float: left; + margin-left: 20px; +} + +.container, +.navbar-fixed-top .container, +.navbar-fixed-bottom .container { + width: 940px; +} + +.span12 { + width: 940px; +} + +.span11 { + width: 860px; +} + +.span10 { + width: 780px; +} + +.span9 { + width: 700px; +} + +.span8 { + width: 620px; +} + +.span7 { + width: 540px; +} + +.span6 { + width: 460px; +} + +.span5 { + width: 380px; +} + +.span4 { + width: 300px; +} + +.span3 { + width: 220px; +} + +.span2 { + width: 140px; +} + +.span1 { + width: 60px; +} + +.offset12 { + margin-left: 980px; +} + +.offset11 { + margin-left: 900px; +} + +.offset10 { + margin-left: 820px; +} + +.offset9 { + margin-left: 740px; +} + +.offset8 { + margin-left: 660px; +} + +.offset7 { + margin-left: 580px; +} + +.offset6 { + margin-left: 500px; +} + +.offset5 { + margin-left: 420px; +} + +.offset4 { + margin-left: 340px; +} + +.offset3 { + margin-left: 260px; +} + +.offset2 { + margin-left: 180px; +} + +.offset1 { + margin-left: 100px; +} + +.row-fluid { + width: 100%; + *zoom: 1; +} + +.row-fluid:before, +.row-fluid:after { + display: table; + content: ""; +} + +.row-fluid:after { + clear: both; +} + +.row-fluid [class*="span"] { + display: block; + float: left; + width: 100%; + min-height: 28px; + margin-left: 2.127659574%; + *margin-left: 2.0744680846382977%; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + -ms-box-sizing: border-box; + box-sizing: border-box; +} + +.row-fluid [class*="span"]:first-child { + margin-left: 0; +} + +.row-fluid .span12 { + width: 99.99999998999999%; + *width: 99.94680850063828%; +} + +.row-fluid .span11 { + width: 91.489361693%; + *width: 91.4361702036383%; +} + +.row-fluid .span10 { + width: 82.97872339599999%; + *width: 82.92553190663828%; +} + +.row-fluid .span9 { + width: 74.468085099%; + *width: 74.4148936096383%; +} + +.row-fluid .span8 { + width: 65.95744680199999%; + *width: 65.90425531263828%; +} + +.row-fluid .span7 { + width: 57.446808505%; + *width: 57.3936170156383%; +} + +.row-fluid .span6 { + width: 48.93617020799999%; + *width: 48.88297871863829%; +} + +.row-fluid .span5 { + width: 40.425531911%; + *width: 40.3723404216383%; +} + +.row-fluid .span4 { + width: 31.914893614%; + *width: 31.8617021246383%; +} + +.row-fluid .span3 { + width: 23.404255317%; + *width: 23.3510638276383%; +} + +.row-fluid .span2 { + width: 14.89361702%; + *width: 14.8404255306383%; +} + +.row-fluid .span1 { + width: 6.382978723%; + *width: 6.329787233638298%; +} + +.container { + margin-right: auto; + margin-left: auto; + *zoom: 1; +} + +.container:before, +.container:after { + display: table; + content: ""; +} + +.container:after { + clear: both; +} + +.container-fluid { + padding-right: 20px; + padding-left: 20px; + *zoom: 1; +} + +.container-fluid:before, +.container-fluid:after { + display: table; + content: ""; +} + +.container-fluid:after { + clear: both; +} + +p { + margin: 0 0 9px; +} + +p small { + font-size: 11px; + color: #999999; +} + +.lead { + margin-bottom: 18px; + font-size: 20px; + font-weight: 200; + line-height: 27px; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + margin: 0; + font-family: inherit; + font-weight: bold; + color: inherit; + text-rendering: optimizelegibility; +} + +h1 small, +h2 small, +h3 small, +h4 small, +h5 small, +h6 small { + font-weight: normal; + color: #999999; +} + +h1 { + font-size: 30px; + line-height: 36px; +} + +h1 small { + font-size: 18px; +} + +h2 { + font-size: 24px; + line-height: 36px; +} + +h2 small { + font-size: 18px; +} + +h3 { + font-size: 18px; + line-height: 27px; +} + +h3 small { + font-size: 14px; +} + +h4, +h5, +h6 { + line-height: 18px; +} + +h4 { + font-size: 14px; +} + +h4 small { + font-size: 12px; +} + +h5 { + font-size: 12px; +} + +h6 { + font-size: 11px; + color: #999999; + text-transform: uppercase; +} + +.page-header { + padding-bottom: 17px; + margin: 18px 0; + border-bottom: 1px solid #eeeeee; +} + +.page-header h1 { + line-height: 1; +} + +ul, +ol { + padding: 0; + margin: 0 0 9px 25px; +} + +ul ul, +ul ol, +ol ol, +ol ul { + margin-bottom: 0; +} + +ul { + list-style: disc; +} + +ol { + list-style: decimal; +} + +li { + line-height: 18px; +} + +ul.unstyled, +ol.unstyled { + margin-left: 0; + list-style: none; +} + +dl { + margin-bottom: 18px; +} + +dt, +dd { + line-height: 18px; +} + +dt { + font-weight: bold; + line-height: 17px; +} + +dd { + margin-left: 9px; +} + +.dl-horizontal dt { + float: left; + width: 120px; + overflow: hidden; + clear: left; + text-align: right; + text-overflow: ellipsis; + white-space: nowrap; +} + +.dl-horizontal dd { + margin-left: 130px; +} + +hr { + margin: 18px 0; + border: 0; + border-top: 1px solid #eeeeee; + border-bottom: 1px solid #ffffff; +} + +strong { + font-weight: bold; +} + +em { + font-style: italic; +} + +.muted { + color: #999999; +} + +abbr[title] { + cursor: help; + border-bottom: 1px dotted #999999; +} + +abbr.initialism { + font-size: 90%; + text-transform: uppercase; +} + +blockquote { + padding: 0 0 0 15px; + margin: 0 0 18px; + border-left: 5px solid #eeeeee; +} + +blockquote p { + margin-bottom: 0; + font-size: 16px; + font-weight: 300; + line-height: 22.5px; +} + +blockquote small { + display: block; + line-height: 18px; + color: #999999; +} + +blockquote small:before { + content: '\2014 \00A0'; +} + +blockquote.pull-right { + float: right; + padding-right: 15px; + padding-left: 0; + border-right: 5px solid #eeeeee; + border-left: 0; +} + +blockquote.pull-right p, +blockquote.pull-right small { + text-align: right; +} + +q:before, +q:after, +blockquote:before, +blockquote:after { + content: ""; +} + +address { + display: block; + margin-bottom: 18px; + font-style: normal; + line-height: 18px; +} + +small { + font-size: 100%; +} + +cite { + font-style: normal; +} + +code, +pre { + padding: 0 3px 2px; + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + font-size: 12px; + color: #333333; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + +code { + padding: 2px 4px; + color: #d14; + background-color: #f7f7f9; + border: 1px solid #e1e1e8; +} + +pre { + display: block; + padding: 8.5px; + margin: 0 0 9px; + font-size: 12.025px; + line-height: 18px; + word-break: break-all; + word-wrap: break-word; + white-space: pre; + white-space: pre-wrap; + background-color: #f5f5f5; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.15); + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +pre.prettyprint { + margin-bottom: 18px; +} + +pre code { + padding: 0; + color: inherit; + background-color: transparent; + border: 0; +} + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} + +form { + margin: 0 0 18px; +} + +fieldset { + padding: 0; + margin: 0; + border: 0; +} + +legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 27px; + font-size: 19.5px; + line-height: 36px; + color: #333333; + border: 0; + border-bottom: 1px solid #e5e5e5; +} + +legend small { + font-size: 13.5px; + color: #999999; +} + +label, +input, +button, +select, +textarea { + font-size: 13px; + font-weight: normal; + line-height: 18px; +} + +input, +button, +select, +textarea { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; +} + +label { + display: block; + margin-bottom: 5px; +} + +select, +textarea, +input[type="text"], +input[type="password"], +input[type="datetime"], +input[type="datetime-local"], +input[type="date"], +input[type="month"], +input[type="time"], +input[type="week"], +input[type="number"], +input[type="email"], +input[type="url"], +input[type="search"], +input[type="tel"], +input[type="color"], +.uneditable-input { + display: inline-block; + height: 18px; + padding: 4px; + margin-bottom: 9px; + font-size: 13px; + line-height: 18px; + color: #555555; +} + +input, +textarea { + width: 210px; +} + +textarea { + height: auto; +} + +textarea, +input[type="text"], +input[type="password"], +input[type="datetime"], +input[type="datetime-local"], +input[type="date"], +input[type="month"], +input[type="time"], +input[type="week"], +input[type="number"], +input[type="email"], +input[type="url"], +input[type="search"], +input[type="tel"], +input[type="color"], +.uneditable-input { + background-color: #ffffff; + border: 1px solid #cccccc; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -webkit-transition: border linear 0.2s, box-shadow linear 0.2s; + -moz-transition: border linear 0.2s, box-shadow linear 0.2s; + -ms-transition: border linear 0.2s, box-shadow linear 0.2s; + -o-transition: border linear 0.2s, box-shadow linear 0.2s; + transition: border linear 0.2s, box-shadow linear 0.2s; +} + +textarea:focus, +input[type="text"]:focus, +input[type="password"]:focus, +input[type="datetime"]:focus, +input[type="datetime-local"]:focus, +input[type="date"]:focus, +input[type="month"]:focus, +input[type="time"]:focus, +input[type="week"]:focus, +input[type="number"]:focus, +input[type="email"]:focus, +input[type="url"]:focus, +input[type="search"]:focus, +input[type="tel"]:focus, +input[type="color"]:focus, +.uneditable-input:focus { + border-color: rgba(82, 168, 236, 0.8); + outline: 0; + outline: thin dotted \9; + /* IE6-9 */ + + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); +} + +input[type="radio"], +input[type="checkbox"] { + margin: 3px 0; + *margin-top: 0; + /* IE7 */ + + line-height: normal; + cursor: pointer; +} + +input[type="submit"], +input[type="reset"], +input[type="button"], +input[type="radio"], +input[type="checkbox"] { + width: auto; +} + +.uneditable-textarea { + width: auto; + height: auto; +} + +select, +input[type="file"] { + height: 28px; + /* In IE7, the height of the select element cannot be changed by height, only font-size */ + + *margin-top: 4px; + /* For IE7, add top margin to align select with labels */ + + line-height: 28px; +} + +select { + width: 220px; + border: 1px solid #bbb; +} + +select[multiple], +select[size] { + height: auto; +} + +select:focus, +input[type="file"]:focus, +input[type="radio"]:focus, +input[type="checkbox"]:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +.radio, +.checkbox { + min-height: 18px; + padding-left: 18px; +} + +.radio input[type="radio"], +.checkbox input[type="checkbox"] { + float: left; + margin-left: -18px; +} + +.controls > .radio:first-child, +.controls > .checkbox:first-child { + padding-top: 5px; +} + +.radio.inline, +.checkbox.inline { + display: inline-block; + padding-top: 5px; + margin-bottom: 0; + vertical-align: middle; +} + +.radio.inline + .radio.inline, +.checkbox.inline + .checkbox.inline { + margin-left: 10px; +} + +.input-mini { + width: 60px; +} + +.input-small { + width: 90px; +} + +.input-medium { + width: 150px; +} + +.input-large { + width: 210px; +} + +.input-xlarge { + width: 270px; +} + +.input-xxlarge { + width: 530px; +} + +input[class*="span"], +select[class*="span"], +textarea[class*="span"], +.uneditable-input[class*="span"], +.row-fluid input[class*="span"], +.row-fluid select[class*="span"], +.row-fluid textarea[class*="span"], +.row-fluid .uneditable-input[class*="span"] { + float: none; + margin-left: 0; +} + +.input-append input[class*="span"], +.input-append .uneditable-input[class*="span"], +.input-prepend input[class*="span"], +.input-prepend .uneditable-input[class*="span"], +.row-fluid .input-prepend [class*="span"], +.row-fluid .input-append [class*="span"] { + display: inline-block; +} + +input, +textarea, +.uneditable-input { + margin-left: 0; +} + +input.span12, +textarea.span12, +.uneditable-input.span12 { + width: 930px; +} + +input.span11, +textarea.span11, +.uneditable-input.span11 { + width: 850px; +} + +input.span10, +textarea.span10, +.uneditable-input.span10 { + width: 770px; +} + +input.span9, +textarea.span9, +.uneditable-input.span9 { + width: 690px; +} + +input.span8, +textarea.span8, +.uneditable-input.span8 { + width: 610px; +} + +input.span7, +textarea.span7, +.uneditable-input.span7 { + width: 530px; +} + +input.span6, +textarea.span6, +.uneditable-input.span6 { + width: 450px; +} + +input.span5, +textarea.span5, +.uneditable-input.span5 { + width: 370px; +} + +input.span4, +textarea.span4, +.uneditable-input.span4 { + width: 290px; +} + +input.span3, +textarea.span3, +.uneditable-input.span3 { + width: 210px; +} + +input.span2, +textarea.span2, +.uneditable-input.span2 { + width: 130px; +} + +input.span1, +textarea.span1, +.uneditable-input.span1 { + width: 50px; +} + +input[disabled], +select[disabled], +textarea[disabled], +input[readonly], +select[readonly], +textarea[readonly] { + cursor: not-allowed; + background-color: #eeeeee; + border-color: #ddd; +} + +input[type="radio"][disabled], +input[type="checkbox"][disabled], +input[type="radio"][readonly], +input[type="checkbox"][readonly] { + background-color: transparent; +} + +.control-group.warning > label, +.control-group.warning .help-block, +.control-group.warning .help-inline { + color: #c09853; +} + +.control-group.warning .checkbox, +.control-group.warning .radio, +.control-group.warning input, +.control-group.warning select, +.control-group.warning textarea { + color: #c09853; + border-color: #c09853; +} + +.control-group.warning .checkbox:focus, +.control-group.warning .radio:focus, +.control-group.warning input:focus, +.control-group.warning select:focus, +.control-group.warning textarea:focus { + border-color: #a47e3c; + -webkit-box-shadow: 0 0 6px #dbc59e; + -moz-box-shadow: 0 0 6px #dbc59e; + box-shadow: 0 0 6px #dbc59e; +} + +.control-group.warning .input-prepend .add-on, +.control-group.warning .input-append .add-on { + color: #c09853; + background-color: #fcf8e3; + border-color: #c09853; +} + +.control-group.error > label, +.control-group.error .help-block, +.control-group.error .help-inline { + color: #b94a48; +} + +.control-group.error .checkbox, +.control-group.error .radio, +.control-group.error input, +.control-group.error select, +.control-group.error textarea { + color: #b94a48; + border-color: #b94a48; +} + +.control-group.error .checkbox:focus, +.control-group.error .radio:focus, +.control-group.error input:focus, +.control-group.error select:focus, +.control-group.error textarea:focus { + border-color: #953b39; + -webkit-box-shadow: 0 0 6px #d59392; + -moz-box-shadow: 0 0 6px #d59392; + box-shadow: 0 0 6px #d59392; +} + +.control-group.error .input-prepend .add-on, +.control-group.error .input-append .add-on { + color: #b94a48; + background-color: #f2dede; + border-color: #b94a48; +} + +.control-group.success > label, +.control-group.success .help-block, +.control-group.success .help-inline { + color: #468847; +} + +.control-group.success .checkbox, +.control-group.success .radio, +.control-group.success input, +.control-group.success select, +.control-group.success textarea { + color: #468847; + border-color: #468847; +} + +.control-group.success .checkbox:focus, +.control-group.success .radio:focus, +.control-group.success input:focus, +.control-group.success select:focus, +.control-group.success textarea:focus { + border-color: #356635; + -webkit-box-shadow: 0 0 6px #7aba7b; + -moz-box-shadow: 0 0 6px #7aba7b; + box-shadow: 0 0 6px #7aba7b; +} + +.control-group.success .input-prepend .add-on, +.control-group.success .input-append .add-on { + color: #468847; + background-color: #dff0d8; + border-color: #468847; +} + +input:focus:required:invalid, +textarea:focus:required:invalid, +select:focus:required:invalid { + color: #b94a48; + border-color: #ee5f5b; +} + +input:focus:required:invalid:focus, +textarea:focus:required:invalid:focus, +select:focus:required:invalid:focus { + border-color: #e9322d; + -webkit-box-shadow: 0 0 6px #f8b9b7; + -moz-box-shadow: 0 0 6px #f8b9b7; + box-shadow: 0 0 6px #f8b9b7; +} + +.form-actions { + padding: 17px 20px 18px; + margin-top: 18px; + margin-bottom: 18px; + background-color: #f5f5f5; + border-top: 1px solid #e5e5e5; + *zoom: 1; +} + +.form-actions:before, +.form-actions:after { + display: table; + content: ""; +} + +.form-actions:after { + clear: both; +} + +.uneditable-input { + overflow: hidden; + white-space: nowrap; + cursor: not-allowed; + background-color: #ffffff; + border-color: #eee; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); + -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); +} + +:-moz-placeholder { + color: #999999; +} + +:-ms-input-placeholder { + color: #999999; +} + +::-webkit-input-placeholder { + color: #999999; +} + +.help-block, +.help-inline { + color: #555555; +} + +.help-block { + display: block; + margin-bottom: 9px; +} + +.help-inline { + display: inline-block; + *display: inline; + padding-left: 5px; + vertical-align: middle; + *zoom: 1; +} + +.input-prepend, +.input-append { + margin-bottom: 5px; +} + +.input-prepend input, +.input-append input, +.input-prepend select, +.input-append select, +.input-prepend .uneditable-input, +.input-append .uneditable-input { + position: relative; + margin-bottom: 0; + *margin-left: 0; + vertical-align: middle; + -webkit-border-radius: 0 3px 3px 0; + -moz-border-radius: 0 3px 3px 0; + border-radius: 0 3px 3px 0; +} + +.input-prepend input:focus, +.input-append input:focus, +.input-prepend select:focus, +.input-append select:focus, +.input-prepend .uneditable-input:focus, +.input-append .uneditable-input:focus { + z-index: 2; +} + +.input-prepend .uneditable-input, +.input-append .uneditable-input { + border-left-color: #ccc; +} + +.input-prepend .add-on, +.input-append .add-on { + display: inline-block; + width: auto; + height: 18px; + min-width: 16px; + padding: 4px 5px; + font-weight: normal; + line-height: 18px; + text-align: center; + text-shadow: 0 1px 0 #ffffff; + vertical-align: middle; + background-color: #eeeeee; + border: 1px solid #ccc; +} + +.input-prepend .add-on, +.input-append .add-on, +.input-prepend .btn, +.input-append .btn { + margin-left: -1px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.input-prepend .active, +.input-append .active { + background-color: #a9dba9; + border-color: #46a546; +} + +.input-prepend .add-on, +.input-prepend .btn { + margin-right: -1px; +} + +.input-prepend .add-on:first-child, +.input-prepend .btn:first-child { + -webkit-border-radius: 3px 0 0 3px; + -moz-border-radius: 3px 0 0 3px; + border-radius: 3px 0 0 3px; +} + +.input-append input, +.input-append select, +.input-append .uneditable-input { + -webkit-border-radius: 3px 0 0 3px; + -moz-border-radius: 3px 0 0 3px; + border-radius: 3px 0 0 3px; +} + +.input-append .uneditable-input { + border-right-color: #ccc; + border-left-color: #eee; +} + +.input-append .add-on:last-child, +.input-append .btn:last-child { + -webkit-border-radius: 0 3px 3px 0; + -moz-border-radius: 0 3px 3px 0; + border-radius: 0 3px 3px 0; +} + +.input-prepend.input-append input, +.input-prepend.input-append select, +.input-prepend.input-append .uneditable-input { + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.input-prepend.input-append .add-on:first-child, +.input-prepend.input-append .btn:first-child { + margin-right: -1px; + -webkit-border-radius: 3px 0 0 3px; + -moz-border-radius: 3px 0 0 3px; + border-radius: 3px 0 0 3px; +} + +.input-prepend.input-append .add-on:last-child, +.input-prepend.input-append .btn:last-child { + margin-left: -1px; + -webkit-border-radius: 0 3px 3px 0; + -moz-border-radius: 0 3px 3px 0; + border-radius: 0 3px 3px 0; +} + +.search-query { + padding-right: 14px; + padding-right: 4px \9; + padding-left: 14px; + padding-left: 4px \9; + /* IE7-8 doesn't have border-radius, so don't indent the padding */ + + margin-bottom: 0; + -webkit-border-radius: 14px; + -moz-border-radius: 14px; + border-radius: 14px; +} + +.form-search input, +.form-inline input, +.form-horizontal input, +.form-search textarea, +.form-inline textarea, +.form-horizontal textarea, +.form-search select, +.form-inline select, +.form-horizontal select, +.form-search .help-inline, +.form-inline .help-inline, +.form-horizontal .help-inline, +.form-search .uneditable-input, +.form-inline .uneditable-input, +.form-horizontal .uneditable-input, +.form-search .input-prepend, +.form-inline .input-prepend, +.form-horizontal .input-prepend, +.form-search .input-append, +.form-inline .input-append, +.form-horizontal .input-append { + display: inline-block; + *display: inline; + margin-bottom: 0; + *zoom: 1; +} + +.form-search .hide, +.form-inline .hide, +.form-horizontal .hide { + display: none; +} + +.form-search label, +.form-inline label { + display: inline-block; +} + +.form-search .input-append, +.form-inline .input-append, +.form-search .input-prepend, +.form-inline .input-prepend { + margin-bottom: 0; +} + +.form-search .radio, +.form-search .checkbox, +.form-inline .radio, +.form-inline .checkbox { + padding-left: 0; + margin-bottom: 0; + vertical-align: middle; +} + +.form-search .radio input[type="radio"], +.form-search .checkbox input[type="checkbox"], +.form-inline .radio input[type="radio"], +.form-inline .checkbox input[type="checkbox"] { + float: left; + margin-right: 3px; + margin-left: 0; +} + +.control-group { + margin-bottom: 9px; +} + +legend + .control-group { + margin-top: 18px; + -webkit-margin-top-collapse: separate; +} + +.form-horizontal .control-group { + margin-bottom: 18px; + *zoom: 1; +} + +.form-horizontal .control-group:before, +.form-horizontal .control-group:after { + display: table; + content: ""; +} + +.form-horizontal .control-group:after { + clear: both; +} + +.form-horizontal .control-label { + float: left; + width: 140px; + padding-top: 5px; + text-align: right; +} + +.form-horizontal .controls { + *display: inline-block; + *padding-left: 20px; + margin-left: 160px; + *margin-left: 0; +} + +.form-horizontal .controls:first-child { + *padding-left: 160px; +} + +.form-horizontal .help-block { + margin-top: 9px; + margin-bottom: 0; +} + +.form-horizontal .form-actions { + padding-left: 160px; +} + +table { + max-width: 100%; + background-color: transparent; + border-collapse: collapse; + border-spacing: 0; +} + +.table { + width: 100%; + margin-bottom: 18px; +} + +.table th, +.table td { + padding: 8px; + line-height: 18px; + text-align: left; + vertical-align: top; + border-top: 1px solid #dddddd; +} + +.table th { + font-weight: bold; +} + +.table thead th { + vertical-align: bottom; +} + +.table caption + thead tr:first-child th, +.table caption + thead tr:first-child td, +.table colgroup + thead tr:first-child th, +.table colgroup + thead tr:first-child td, +.table thead:first-child tr:first-child th, +.table thead:first-child tr:first-child td { + border-top: 0; +} + +.table tbody + tbody { + border-top: 2px solid #dddddd; +} + +.table-condensed th, +.table-condensed td { + padding: 4px 5px; +} + +.table-bordered { + border: 1px solid #dddddd; + border-collapse: separate; + *border-collapse: collapsed; + border-left: 0; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.table-bordered th, +.table-bordered td { + border-left: 1px solid #dddddd; +} + +.table-bordered caption + thead tr:first-child th, +.table-bordered caption + tbody tr:first-child th, +.table-bordered caption + tbody tr:first-child td, +.table-bordered colgroup + thead tr:first-child th, +.table-bordered colgroup + tbody tr:first-child th, +.table-bordered colgroup + tbody tr:first-child td, +.table-bordered thead:first-child tr:first-child th, +.table-bordered tbody:first-child tr:first-child th, +.table-bordered tbody:first-child tr:first-child td { + border-top: 0; +} + +.table-bordered thead:first-child tr:first-child th:first-child, +.table-bordered tbody:first-child tr:first-child td:first-child { + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topleft: 4px; +} + +.table-bordered thead:first-child tr:first-child th:last-child, +.table-bordered tbody:first-child tr:first-child td:last-child { + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-topright: 4px; +} + +.table-bordered thead:last-child tr:last-child th:first-child, +.table-bordered tbody:last-child tr:last-child td:first-child { + -webkit-border-radius: 0 0 0 4px; + -moz-border-radius: 0 0 0 4px; + border-radius: 0 0 0 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + -moz-border-radius-bottomleft: 4px; +} + +.table-bordered thead:last-child tr:last-child th:last-child, +.table-bordered tbody:last-child tr:last-child td:last-child { + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomright: 4px; +} + +.table-striped tbody tr:nth-child(odd) td, +.table-striped tbody tr:nth-child(odd) th { + background-color: #f9f9f9; +} + +.table tbody tr:hover td, +.table tbody tr:hover th { + background-color: #f5f5f5; +} + +table .span1 { + float: none; + width: 44px; + margin-left: 0; +} + +table .span2 { + float: none; + width: 124px; + margin-left: 0; +} + +table .span3 { + float: none; + width: 204px; + margin-left: 0; +} + +table .span4 { + float: none; + width: 284px; + margin-left: 0; +} + +table .span5 { + float: none; + width: 364px; + margin-left: 0; +} + +table .span6 { + float: none; + width: 444px; + margin-left: 0; +} + +table .span7 { + float: none; + width: 524px; + margin-left: 0; +} + +table .span8 { + float: none; + width: 604px; + margin-left: 0; +} + +table .span9 { + float: none; + width: 684px; + margin-left: 0; +} + +table .span10 { + float: none; + width: 764px; + margin-left: 0; +} + +table .span11 { + float: none; + width: 844px; + margin-left: 0; +} + +table .span12 { + float: none; + width: 924px; + margin-left: 0; +} + +table .span13 { + float: none; + width: 1004px; + margin-left: 0; +} + +table .span14 { + float: none; + width: 1084px; + margin-left: 0; +} + +table .span15 { + float: none; + width: 1164px; + margin-left: 0; +} + +table .span16 { + float: none; + width: 1244px; + margin-left: 0; +} + +table .span17 { + float: none; + width: 1324px; + margin-left: 0; +} + +table .span18 { + float: none; + width: 1404px; + margin-left: 0; +} + +table .span19 { + float: none; + width: 1484px; + margin-left: 0; +} + +table .span20 { + float: none; + width: 1564px; + margin-left: 0; +} + +table .span21 { + float: none; + width: 1644px; + margin-left: 0; +} + +table .span22 { + float: none; + width: 1724px; + margin-left: 0; +} + +table .span23 { + float: none; + width: 1804px; + margin-left: 0; +} + +table .span24 { + float: none; + width: 1884px; + margin-left: 0; +} + +[class^="icon-"], +[class*=" icon-"] { + display: inline-block; + width: 14px; + height: 14px; + *margin-right: .3em; + line-height: 14px; + vertical-align: text-top; + background-image: url("../img/glyphicons-halflings.png"); + background-position: 14px 14px; + background-repeat: no-repeat; +} + +[class^="icon-"]:last-child, +[class*=" icon-"]:last-child { + *margin-left: 0; +} + +.icon-white { + background-image: url("../img/glyphicons-halflings-white.png"); +} + +.icon-glass { + background-position: 0 0; +} + +.icon-music { + background-position: -24px 0; +} + +.icon-search { + background-position: -48px 0; +} + +.icon-envelope { + background-position: -72px 0; +} + +.icon-heart { + background-position: -96px 0; +} + +.icon-star { + background-position: -120px 0; +} + +.icon-star-empty { + background-position: -144px 0; +} + +.icon-user { + background-position: -168px 0; +} + +.icon-film { + background-position: -192px 0; +} + +.icon-th-large { + background-position: -216px 0; +} + +.icon-th { + background-position: -240px 0; +} + +.icon-th-list { + background-position: -264px 0; +} + +.icon-ok { + background-position: -288px 0; +} + +.icon-remove { + background-position: -312px 0; +} + +.icon-zoom-in { + background-position: -336px 0; +} + +.icon-zoom-out { + background-position: -360px 0; +} + +.icon-off { + background-position: -384px 0; +} + +.icon-signal { + background-position: -408px 0; +} + +.icon-cog { + background-position: -432px 0; +} + +.icon-trash { + background-position: -456px 0; +} + +.icon-home { + background-position: 0 -24px; +} + +.icon-file { + background-position: -24px -24px; +} + +.icon-time { + background-position: -48px -24px; +} + +.icon-road { + background-position: -72px -24px; +} + +.icon-download-alt { + background-position: -96px -24px; +} + +.icon-download { + background-position: -120px -24px; +} + +.icon-upload { + background-position: -144px -24px; +} + +.icon-inbox { + background-position: -168px -24px; +} + +.icon-play-circle { + background-position: -192px -24px; +} + +.icon-repeat { + background-position: -216px -24px; +} + +.icon-refresh { + background-position: -240px -24px; +} + +.icon-list-alt { + background-position: -264px -24px; +} + +.icon-lock { + background-position: -287px -24px; +} + +.icon-flag { + background-position: -312px -24px; +} + +.icon-headphones { + background-position: -336px -24px; +} + +.icon-volume-off { + background-position: -360px -24px; +} + +.icon-volume-down { + background-position: -384px -24px; +} + +.icon-volume-up { + background-position: -408px -24px; +} + +.icon-qrcode { + background-position: -432px -24px; +} + +.icon-barcode { + background-position: -456px -24px; +} + +.icon-tag { + background-position: 0 -48px; +} + +.icon-tags { + background-position: -25px -48px; +} + +.icon-book { + background-position: -48px -48px; +} + +.icon-bookmark { + background-position: -72px -48px; +} + +.icon-print { + background-position: -96px -48px; +} + +.icon-camera { + background-position: -120px -48px; +} + +.icon-font { + background-position: -144px -48px; +} + +.icon-bold { + background-position: -167px -48px; +} + +.icon-italic { + background-position: -192px -48px; +} + +.icon-text-height { + background-position: -216px -48px; +} + +.icon-text-width { + background-position: -240px -48px; +} + +.icon-align-left { + background-position: -264px -48px; +} + +.icon-align-center { + background-position: -288px -48px; +} + +.icon-align-right { + background-position: -312px -48px; +} + +.icon-align-justify { + background-position: -336px -48px; +} + +.icon-list { + background-position: -360px -48px; +} + +.icon-indent-left { + background-position: -384px -48px; +} + +.icon-indent-right { + background-position: -408px -48px; +} + +.icon-facetime-video { + background-position: -432px -48px; +} + +.icon-picture { + background-position: -456px -48px; +} + +.icon-pencil { + background-position: 0 -72px; +} + +.icon-map-marker { + background-position: -24px -72px; +} + +.icon-adjust { + background-position: -48px -72px; +} + +.icon-tint { + background-position: -72px -72px; +} + +.icon-edit { + background-position: -96px -72px; +} + +.icon-share { + background-position: -120px -72px; +} + +.icon-check { + background-position: -144px -72px; +} + +.icon-move { + background-position: -168px -72px; +} + +.icon-step-backward { + background-position: -192px -72px; +} + +.icon-fast-backward { + background-position: -216px -72px; +} + +.icon-backward { + background-position: -240px -72px; +} + +.icon-play { + background-position: -264px -72px; +} + +.icon-pause { + background-position: -288px -72px; +} + +.icon-stop { + background-position: -312px -72px; +} + +.icon-forward { + background-position: -336px -72px; +} + +.icon-fast-forward { + background-position: -360px -72px; +} + +.icon-step-forward { + background-position: -384px -72px; +} + +.icon-eject { + background-position: -408px -72px; +} + +.icon-chevron-left { + background-position: -432px -72px; +} + +.icon-chevron-right { + background-position: -456px -72px; +} + +.icon-plus-sign { + background-position: 0 -96px; +} + +.icon-minus-sign { + background-position: -24px -96px; +} + +.icon-remove-sign { + background-position: -48px -96px; +} + +.icon-ok-sign { + background-position: -72px -96px; +} + +.icon-question-sign { + background-position: -96px -96px; +} + +.icon-info-sign { + background-position: -120px -96px; +} + +.icon-screenshot { + background-position: -144px -96px; +} + +.icon-remove-circle { + background-position: -168px -96px; +} + +.icon-ok-circle { + background-position: -192px -96px; +} + +.icon-ban-circle { + background-position: -216px -96px; +} + +.icon-arrow-left { + background-position: -240px -96px; +} + +.icon-arrow-right { + background-position: -264px -96px; +} + +.icon-arrow-up { + background-position: -289px -96px; +} + +.icon-arrow-down { + background-position: -312px -96px; +} + +.icon-share-alt { + background-position: -336px -96px; +} + +.icon-resize-full { + background-position: -360px -96px; +} + +.icon-resize-small { + background-position: -384px -96px; +} + +.icon-plus { + background-position: -408px -96px; +} + +.icon-minus { + background-position: -433px -96px; +} + +.icon-asterisk { + background-position: -456px -96px; +} + +.icon-exclamation-sign { + background-position: 0 -120px; +} + +.icon-gift { + background-position: -24px -120px; +} + +.icon-leaf { + background-position: -48px -120px; +} + +.icon-fire { + background-position: -72px -120px; +} + +.icon-eye-open { + background-position: -96px -120px; +} + +.icon-eye-close { + background-position: -120px -120px; +} + +.icon-warning-sign { + background-position: -144px -120px; +} + +.icon-plane { + background-position: -168px -120px; +} + +.icon-calendar { + background-position: -192px -120px; +} + +.icon-random { + background-position: -216px -120px; +} + +.icon-comment { + background-position: -240px -120px; +} + +.icon-magnet { + background-position: -264px -120px; +} + +.icon-chevron-up { + background-position: -288px -120px; +} + +.icon-chevron-down { + background-position: -313px -119px; +} + +.icon-retweet { + background-position: -336px -120px; +} + +.icon-shopping-cart { + background-position: -360px -120px; +} + +.icon-folder-close { + background-position: -384px -120px; +} + +.icon-folder-open { + background-position: -408px -120px; +} + +.icon-resize-vertical { + background-position: -432px -119px; +} + +.icon-resize-horizontal { + background-position: -456px -118px; +} + +.icon-hdd { + background-position: 0 -144px; +} + +.icon-bullhorn { + background-position: -24px -144px; +} + +.icon-bell { + background-position: -48px -144px; +} + +.icon-certificate { + background-position: -72px -144px; +} + +.icon-thumbs-up { + background-position: -96px -144px; +} + +.icon-thumbs-down { + background-position: -120px -144px; +} + +.icon-hand-right { + background-position: -144px -144px; +} + +.icon-hand-left { + background-position: -168px -144px; +} + +.icon-hand-up { + background-position: -192px -144px; +} + +.icon-hand-down { + background-position: -216px -144px; +} + +.icon-circle-arrow-right { + background-position: -240px -144px; +} + +.icon-circle-arrow-left { + background-position: -264px -144px; +} + +.icon-circle-arrow-up { + background-position: -288px -144px; +} + +.icon-circle-arrow-down { + background-position: -312px -144px; +} + +.icon-globe { + background-position: -336px -144px; +} + +.icon-wrench { + background-position: -360px -144px; +} + +.icon-tasks { + background-position: -384px -144px; +} + +.icon-filter { + background-position: -408px -144px; +} + +.icon-briefcase { + background-position: -432px -144px; +} + +.icon-fullscreen { + background-position: -456px -144px; +} + +.dropup, +.dropdown { + position: relative; +} + +.dropdown-toggle { + *margin-bottom: -3px; +} + +.dropdown-toggle:active, +.open .dropdown-toggle { + outline: 0; +} + +.caret { + display: inline-block; + width: 0; + height: 0; + vertical-align: top; + border-top: 4px solid #000000; + border-right: 4px solid transparent; + border-left: 4px solid transparent; + content: ""; + opacity: 0.3; + filter: alpha(opacity=30); +} + +.dropdown .caret { + margin-top: 8px; + margin-left: 2px; +} + +.dropdown:hover .caret, +.open .caret { + opacity: 1; + filter: alpha(opacity=100); +} + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 4px 0; + margin: 1px 0 0; + list-style: none; + background-color: #ffffff; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, 0.2); + *border-right-width: 2px; + *border-bottom-width: 2px; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + -webkit-background-clip: padding-box; + -moz-background-clip: padding; + background-clip: padding-box; +} + +.dropdown-menu.pull-right { + right: 0; + left: auto; +} + +.dropdown-menu .divider { + *width: 100%; + height: 1px; + margin: 8px 1px; + *margin: -5px 0 5px; + overflow: hidden; + background-color: #e5e5e5; + border-bottom: 1px solid #ffffff; +} + +.dropdown-menu a { + display: block; + padding: 3px 15px; + clear: both; + font-weight: normal; + line-height: 18px; + color: #333333; + white-space: nowrap; +} + +.dropdown-menu li > a:hover, +.dropdown-menu .active > a, +.dropdown-menu .active > a:hover { + color: #ffffff; + text-decoration: none; + background-color: #0088cc; +} + +.open { + *z-index: 1000; +} + +.open > .dropdown-menu { + display: block; +} + +.pull-right > .dropdown-menu { + right: 0; + left: auto; +} + +.dropup .caret, +.navbar-fixed-bottom .dropdown .caret { + border-top: 0; + border-bottom: 4px solid #000000; + content: "\2191"; +} + +.dropup .dropdown-menu, +.navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 1px; +} + +.typeahead { + margin-top: 2px; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #f5f5f5; + border: 1px solid #eee; + border: 1px solid rgba(0, 0, 0, 0.05); + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); +} + +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, 0.15); +} + +.well-large { + padding: 24px; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} + +.well-small { + padding: 9px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + +.fade { + opacity: 0; + -webkit-transition: opacity 0.15s linear; + -moz-transition: opacity 0.15s linear; + -ms-transition: opacity 0.15s linear; + -o-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; +} + +.fade.in { + opacity: 1; +} + +.collapse { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition: height 0.35s ease; + -moz-transition: height 0.35s ease; + -ms-transition: height 0.35s ease; + -o-transition: height 0.35s ease; + transition: height 0.35s ease; +} + +.collapse.in { + height: auto; +} + +.close { + float: right; + font-size: 20px; + font-weight: bold; + line-height: 18px; + color: #000000; + text-shadow: 0 1px 0 #ffffff; + opacity: 0.2; + filter: alpha(opacity=20); +} + +.close:hover { + color: #000000; + text-decoration: none; + cursor: pointer; + opacity: 0.4; + filter: alpha(opacity=40); +} + +button.close { + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + -webkit-appearance: none; +} + +.btn { + display: inline-block; + *display: inline; + padding: 4px 10px 4px; + margin-bottom: 0; + *margin-left: .3em; + font-size: 13px; + line-height: 18px; + *line-height: 20px; + color: #333333; + text-align: center; + text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); + vertical-align: middle; + cursor: pointer; + background-color: #f5f5f5; + *background-color: #e6e6e6; + background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6)); + background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6); + background-image: -o-linear-gradient(top, #ffffff, #e6e6e6); + background-image: linear-gradient(top, #ffffff, #e6e6e6); + background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6); + background-repeat: repeat-x; + border: 1px solid #cccccc; + *border: 0; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + border-color: #e6e6e6 #e6e6e6 #bfbfbf; + border-bottom-color: #b3b3b3; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0); + filter: progid:dximagetransform.microsoft.gradient(enabled=false); + *zoom: 1; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.btn:hover, +.btn:active, +.btn.active, +.btn.disabled, +.btn[disabled] { + background-color: #e6e6e6; + *background-color: #d9d9d9; +} + +.btn:active, +.btn.active { + background-color: #cccccc \9; +} + +.btn:first-child { + *margin-left: 0; +} + +.btn:hover { + color: #333333; + text-decoration: none; + background-color: #e6e6e6; + *background-color: #d9d9d9; + /* Buttons in IE7 don't get borders, so darken on hover */ + + background-position: 0 -15px; + -webkit-transition: background-position 0.1s linear; + -moz-transition: background-position 0.1s linear; + -ms-transition: background-position 0.1s linear; + -o-transition: background-position 0.1s linear; + transition: background-position 0.1s linear; +} + +.btn:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} + +.btn.active, +.btn:active { + background-color: #e6e6e6; + background-color: #d9d9d9 \9; + background-image: none; + outline: 0; + -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.btn.disabled, +.btn[disabled] { + cursor: default; + background-color: #e6e6e6; + background-image: none; + opacity: 0.65; + filter: alpha(opacity=65); + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} + +.btn-large { + padding: 9px 14px; + font-size: 15px; + line-height: normal; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} + +.btn-large [class^="icon-"] { + margin-top: 1px; +} + +.btn-small { + padding: 5px 9px; + font-size: 11px; + line-height: 16px; +} + +.btn-small [class^="icon-"] { + margin-top: -1px; +} + +.btn-mini { + padding: 2px 6px; + font-size: 11px; + line-height: 14px; +} + +.btn-primary, +.btn-primary:hover, +.btn-warning, +.btn-warning:hover, +.btn-danger, +.btn-danger:hover, +.btn-success, +.btn-success:hover, +.btn-info, +.btn-info:hover, +.btn-inverse, +.btn-inverse:hover { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} + +.btn-primary.active, +.btn-warning.active, +.btn-danger.active, +.btn-success.active, +.btn-info.active, +.btn-inverse.active { + color: rgba(255, 255, 255, 0.75); +} + +.btn { + border-color: #ccc; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); +} + +.btn-primary { + background-color: #0074cc; + *background-color: #0055cc; + background-image: -ms-linear-gradient(top, #0088cc, #0055cc); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0055cc)); + background-image: -webkit-linear-gradient(top, #0088cc, #0055cc); + background-image: -o-linear-gradient(top, #0088cc, #0055cc); + background-image: -moz-linear-gradient(top, #0088cc, #0055cc); + background-image: linear-gradient(top, #0088cc, #0055cc); + background-repeat: repeat-x; + border-color: #0055cc #0055cc #003580; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:dximagetransform.microsoft.gradient(startColorstr='#0088cc', endColorstr='#0055cc', GradientType=0); + filter: progid:dximagetransform.microsoft.gradient(enabled=false); +} + +.btn-primary:hover, +.btn-primary:active, +.btn-primary.active, +.btn-primary.disabled, +.btn-primary[disabled] { + background-color: #0055cc; + *background-color: #004ab3; +} + +.btn-primary:active, +.btn-primary.active { + background-color: #004099 \9; +} + +.btn-warning { + background-color: #faa732; + *background-color: #f89406; + background-image: -ms-linear-gradient(top, #fbb450, #f89406); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); + background-image: -webkit-linear-gradient(top, #fbb450, #f89406); + background-image: -o-linear-gradient(top, #fbb450, #f89406); + background-image: -moz-linear-gradient(top, #fbb450, #f89406); + background-image: linear-gradient(top, #fbb450, #f89406); + background-repeat: repeat-x; + border-color: #f89406 #f89406 #ad6704; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0); + filter: progid:dximagetransform.microsoft.gradient(enabled=false); +} + +.btn-warning:hover, +.btn-warning:active, +.btn-warning.active, +.btn-warning.disabled, +.btn-warning[disabled] { + background-color: #f89406; + *background-color: #df8505; +} + +.btn-warning:active, +.btn-warning.active { + background-color: #c67605 \9; +} + +.btn-danger { + background-color: #da4f49; + *background-color: #bd362f; + background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f)); + background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f); + background-image: -o-linear-gradient(top, #ee5f5b, #bd362f); + background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f); + background-image: linear-gradient(top, #ee5f5b, #bd362f); + background-repeat: repeat-x; + border-color: #bd362f #bd362f #802420; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0); + filter: progid:dximagetransform.microsoft.gradient(enabled=false); +} + +.btn-danger:hover, +.btn-danger:active, +.btn-danger.active, +.btn-danger.disabled, +.btn-danger[disabled] { + background-color: #bd362f; + *background-color: #a9302a; +} + +.btn-danger:active, +.btn-danger.active { + background-color: #942a25 \9; +} + +.btn-success { + background-color: #5bb75b; + *background-color: #51a351; + background-image: -ms-linear-gradient(top, #62c462, #51a351); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351)); + background-image: -webkit-linear-gradient(top, #62c462, #51a351); + background-image: -o-linear-gradient(top, #62c462, #51a351); + background-image: -moz-linear-gradient(top, #62c462, #51a351); + background-image: linear-gradient(top, #62c462, #51a351); + background-repeat: repeat-x; + border-color: #51a351 #51a351 #387038; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:dximagetransform.microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0); + filter: progid:dximagetransform.microsoft.gradient(enabled=false); +} + +.btn-success:hover, +.btn-success:active, +.btn-success.active, +.btn-success.disabled, +.btn-success[disabled] { + background-color: #51a351; + *background-color: #499249; +} + +.btn-success:active, +.btn-success.active { + background-color: #408140 \9; +} + +.btn-info { + background-color: #49afcd; + *background-color: #2f96b4; + background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4)); + background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4); + background-image: -o-linear-gradient(top, #5bc0de, #2f96b4); + background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4); + background-image: linear-gradient(top, #5bc0de, #2f96b4); + background-repeat: repeat-x; + border-color: #2f96b4 #2f96b4 #1f6377; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:dximagetransform.microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0); + filter: progid:dximagetransform.microsoft.gradient(enabled=false); +} + +.btn-info:hover, +.btn-info:active, +.btn-info.active, +.btn-info.disabled, +.btn-info[disabled] { + background-color: #2f96b4; + *background-color: #2a85a0; +} + +.btn-info:active, +.btn-info.active { + background-color: #24748c \9; +} + +.btn-inverse { + background-color: #414141; + *background-color: #222222; + background-image: -ms-linear-gradient(top, #555555, #222222); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222)); + background-image: -webkit-linear-gradient(top, #555555, #222222); + background-image: -o-linear-gradient(top, #555555, #222222); + background-image: -moz-linear-gradient(top, #555555, #222222); + background-image: linear-gradient(top, #555555, #222222); + background-repeat: repeat-x; + border-color: #222222 #222222 #000000; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:dximagetransform.microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0); + filter: progid:dximagetransform.microsoft.gradient(enabled=false); +} + +.btn-inverse:hover, +.btn-inverse:active, +.btn-inverse.active, +.btn-inverse.disabled, +.btn-inverse[disabled] { + background-color: #222222; + *background-color: #151515; +} + +.btn-inverse:active, +.btn-inverse.active { + background-color: #080808 \9; +} + +button.btn, +input[type="submit"].btn { + *padding-top: 2px; + *padding-bottom: 2px; +} + +button.btn::-moz-focus-inner, +input[type="submit"].btn::-moz-focus-inner { + padding: 0; + border: 0; +} + +button.btn.btn-large, +input[type="submit"].btn.btn-large { + *padding-top: 7px; + *padding-bottom: 7px; +} + +button.btn.btn-small, +input[type="submit"].btn.btn-small { + *padding-top: 3px; + *padding-bottom: 3px; +} + +button.btn.btn-mini, +input[type="submit"].btn.btn-mini { + *padding-top: 1px; + *padding-bottom: 1px; +} + +.btn-group { + position: relative; + *margin-left: .3em; + *zoom: 1; +} + +.btn-group:before, +.btn-group:after { + display: table; + content: ""; +} + +.btn-group:after { + clear: both; +} + +.btn-group:first-child { + *margin-left: 0; +} + +.btn-group + .btn-group { + margin-left: 5px; +} + +.btn-toolbar { + margin-top: 9px; + margin-bottom: 9px; +} + +.btn-toolbar .btn-group { + display: inline-block; + *display: inline; + /* IE7 inline-block hack */ + + *zoom: 1; +} + +.btn-group > .btn { + position: relative; + float: left; + margin-left: -1px; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.btn-group > .btn:first-child { + margin-left: 0; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -moz-border-radius-topleft: 4px; +} + +.btn-group > .btn:last-child, +.btn-group > .dropdown-toggle { + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-topright: 4px; + -moz-border-radius-bottomright: 4px; +} + +.btn-group > .btn.large:first-child { + margin-left: 0; + -webkit-border-bottom-left-radius: 6px; + border-bottom-left-radius: 6px; + -webkit-border-top-left-radius: 6px; + border-top-left-radius: 6px; + -moz-border-radius-bottomleft: 6px; + -moz-border-radius-topleft: 6px; +} + +.btn-group > .btn.large:last-child, +.btn-group > .large.dropdown-toggle { + -webkit-border-top-right-radius: 6px; + border-top-right-radius: 6px; + -webkit-border-bottom-right-radius: 6px; + border-bottom-right-radius: 6px; + -moz-border-radius-topright: 6px; + -moz-border-radius-bottomright: 6px; +} + +.btn-group > .btn:hover, +.btn-group > .btn:focus, +.btn-group > .btn:active, +.btn-group > .btn.active { + z-index: 2; +} + +.btn-group .dropdown-toggle:active, +.btn-group.open .dropdown-toggle { + outline: 0; +} + +.btn-group > .dropdown-toggle { + *padding-top: 4px; + padding-right: 8px; + *padding-bottom: 4px; + padding-left: 8px; + -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.btn-group > .btn-mini.dropdown-toggle { + padding-right: 5px; + padding-left: 5px; +} + +.btn-group > .btn-small.dropdown-toggle { + *padding-top: 4px; + *padding-bottom: 4px; +} + +.btn-group > .btn-large.dropdown-toggle { + padding-right: 12px; + padding-left: 12px; +} + +.btn-group.open .dropdown-toggle { + background-image: none; + -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.btn-group.open .btn.dropdown-toggle { + background-color: #e6e6e6; +} + +.btn-group.open .btn-primary.dropdown-toggle { + background-color: #0055cc; +} + +.btn-group.open .btn-warning.dropdown-toggle { + background-color: #f89406; +} + +.btn-group.open .btn-danger.dropdown-toggle { + background-color: #bd362f; +} + +.btn-group.open .btn-success.dropdown-toggle { + background-color: #51a351; +} + +.btn-group.open .btn-info.dropdown-toggle { + background-color: #2f96b4; +} + +.btn-group.open .btn-inverse.dropdown-toggle { + background-color: #222222; +} + +.btn .caret { + margin-top: 7px; + margin-left: 0; +} + +.btn:hover .caret, +.open.btn-group .caret { + opacity: 1; + filter: alpha(opacity=100); +} + +.btn-mini .caret { + margin-top: 5px; +} + +.btn-small .caret { + margin-top: 6px; +} + +.btn-large .caret { + margin-top: 6px; + border-top-width: 5px; + border-right-width: 5px; + border-left-width: 5px; +} + +.dropup .btn-large .caret { + border-top: 0; + border-bottom: 5px solid #000000; +} + +.btn-primary .caret, +.btn-warning .caret, +.btn-danger .caret, +.btn-info .caret, +.btn-success .caret, +.btn-inverse .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; + opacity: 0.75; + filter: alpha(opacity=75); +} + +.alert { + padding: 8px 35px 8px 14px; + margin-bottom: 18px; + color: #c09853; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); + background-color: #fcf8e3; + border: 1px solid #fbeed5; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.alert-heading { + color: inherit; +} + +.alert .close { + position: relative; + top: -2px; + right: -21px; + line-height: 18px; +} + +.alert-success { + color: #468847; + background-color: #dff0d8; + border-color: #d6e9c6; +} + +.alert-danger, +.alert-error { + color: #b94a48; + background-color: #f2dede; + border-color: #eed3d7; +} + +.alert-info { + color: #3a87ad; + background-color: #d9edf7; + border-color: #bce8f1; +} + +.alert-block { + padding-top: 14px; + padding-bottom: 14px; +} + +.alert-block > p, +.alert-block > ul { + margin-bottom: 0; +} + +.alert-block p + p { + margin-top: 5px; +} + +.nav { + margin-bottom: 18px; + margin-left: 0; + list-style: none; +} + +.nav > li > a { + display: block; +} + +.nav > li > a:hover { + text-decoration: none; + background-color: #eeeeee; +} + +.nav > .pull-right { + float: right; +} + +.nav .nav-header { + display: block; + padding: 3px 15px; + font-size: 11px; + font-weight: bold; + line-height: 18px; + color: #999999; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); + text-transform: uppercase; +} + +.nav li + .nav-header { + margin-top: 9px; +} + +.nav-list { + padding-right: 15px; + padding-left: 15px; + margin-bottom: 0; +} + +.nav-list > li > a, +.nav-list .nav-header { + margin-right: -15px; + margin-left: -15px; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); +} + +.nav-list > li > a { + padding: 3px 15px; +} + +.nav-list > .active > a, +.nav-list > .active > a:hover { + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); + background-color: #0088cc; +} + +.nav-list [class^="icon-"] { + margin-right: 2px; +} + +.nav-list .divider { + *width: 100%; + height: 1px; + margin: 8px 1px; + *margin: -5px 0 5px; + overflow: hidden; + background-color: #e5e5e5; + border-bottom: 1px solid #ffffff; +} + +.nav-tabs, +.nav-pills { + *zoom: 1; +} + +.nav-tabs:before, +.nav-pills:before, +.nav-tabs:after, +.nav-pills:after { + display: table; + content: ""; +} + +.nav-tabs:after, +.nav-pills:after { + clear: both; +} + +.nav-tabs > li, +.nav-pills > li { + float: left; +} + +.nav-tabs > li > a, +.nav-pills > li > a { + padding-right: 12px; + padding-left: 12px; + margin-right: 2px; + line-height: 14px; +} + +.nav-tabs { + border-bottom: 1px solid #ddd; +} + +.nav-tabs > li { + margin-bottom: -1px; +} + +.nav-tabs > li > a { + padding-top: 8px; + padding-bottom: 8px; + line-height: 18px; + border: 1px solid transparent; + -webkit-border-radius: 4px 4px 0 0; + -moz-border-radius: 4px 4px 0 0; + border-radius: 4px 4px 0 0; +} + +.nav-tabs > li > a:hover { + border-color: #eeeeee #eeeeee #dddddd; +} + +.nav-tabs > .active > a, +.nav-tabs > .active > a:hover { + color: #555555; + cursor: default; + background-color: #ffffff; + border: 1px solid #ddd; + border-bottom-color: transparent; +} + +.nav-pills > li > a { + padding-top: 8px; + padding-bottom: 8px; + margin-top: 2px; + margin-bottom: 2px; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} + +.nav-pills > .active > a, +.nav-pills > .active > a:hover { + color: #ffffff; + background-color: #0088cc; +} + +.nav-stacked > li { + float: none; +} + +.nav-stacked > li > a { + margin-right: 0; +} + +.nav-tabs.nav-stacked { + border-bottom: 0; +} + +.nav-tabs.nav-stacked > li > a { + border: 1px solid #ddd; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.nav-tabs.nav-stacked > li:first-child > a { + -webkit-border-radius: 4px 4px 0 0; + -moz-border-radius: 4px 4px 0 0; + border-radius: 4px 4px 0 0; +} + +.nav-tabs.nav-stacked > li:last-child > a { + -webkit-border-radius: 0 0 4px 4px; + -moz-border-radius: 0 0 4px 4px; + border-radius: 0 0 4px 4px; +} + +.nav-tabs.nav-stacked > li > a:hover { + z-index: 2; + border-color: #ddd; +} + +.nav-pills.nav-stacked > li > a { + margin-bottom: 3px; +} + +.nav-pills.nav-stacked > li:last-child > a { + margin-bottom: 1px; +} + +.nav-tabs .dropdown-menu { + -webkit-border-radius: 0 0 5px 5px; + -moz-border-radius: 0 0 5px 5px; + border-radius: 0 0 5px 5px; +} + +.nav-pills .dropdown-menu { + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.nav-tabs .dropdown-toggle .caret, +.nav-pills .dropdown-toggle .caret { + margin-top: 6px; + border-top-color: #0088cc; + border-bottom-color: #0088cc; +} + +.nav-tabs .dropdown-toggle:hover .caret, +.nav-pills .dropdown-toggle:hover .caret { + border-top-color: #005580; + border-bottom-color: #005580; +} + +.nav-tabs .active .dropdown-toggle .caret, +.nav-pills .active .dropdown-toggle .caret { + border-top-color: #333333; + border-bottom-color: #333333; +} + +.nav > .dropdown.active > a:hover { + color: #000000; + cursor: pointer; +} + +.nav-tabs .open .dropdown-toggle, +.nav-pills .open .dropdown-toggle, +.nav > li.dropdown.open.active > a:hover { + color: #ffffff; + background-color: #999999; + border-color: #999999; +} + +.nav li.dropdown.open .caret, +.nav li.dropdown.open.active .caret, +.nav li.dropdown.open a:hover .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; + opacity: 1; + filter: alpha(opacity=100); +} + +.tabs-stacked .open > a:hover { + border-color: #999999; +} + +.tabbable { + *zoom: 1; +} + +.tabbable:before, +.tabbable:after { + display: table; + content: ""; +} + +.tabbable:after { + clear: both; +} + +.tab-content { + overflow: auto; +} + +.tabs-below > .nav-tabs, +.tabs-right > .nav-tabs, +.tabs-left > .nav-tabs { + border-bottom: 0; +} + +.tab-content > .tab-pane, +.pill-content > .pill-pane { + display: none; +} + +.tab-content > .active, +.pill-content > .active { + display: block; +} + +.tabs-below > .nav-tabs { + border-top: 1px solid #ddd; +} + +.tabs-below > .nav-tabs > li { + margin-top: -1px; + margin-bottom: 0; +} + +.tabs-below > .nav-tabs > li > a { + -webkit-border-radius: 0 0 4px 4px; + -moz-border-radius: 0 0 4px 4px; + border-radius: 0 0 4px 4px; +} + +.tabs-below > .nav-tabs > li > a:hover { + border-top-color: #ddd; + border-bottom-color: transparent; +} + +.tabs-below > .nav-tabs > .active > a, +.tabs-below > .nav-tabs > .active > a:hover { + border-color: transparent #ddd #ddd #ddd; +} + +.tabs-left > .nav-tabs > li, +.tabs-right > .nav-tabs > li { + float: none; +} + +.tabs-left > .nav-tabs > li > a, +.tabs-right > .nav-tabs > li > a { + min-width: 74px; + margin-right: 0; + margin-bottom: 3px; +} + +.tabs-left > .nav-tabs { + float: left; + margin-right: 19px; + border-right: 1px solid #ddd; +} + +.tabs-left > .nav-tabs > li > a { + margin-right: -1px; + -webkit-border-radius: 4px 0 0 4px; + -moz-border-radius: 4px 0 0 4px; + border-radius: 4px 0 0 4px; +} + +.tabs-left > .nav-tabs > li > a:hover { + border-color: #eeeeee #dddddd #eeeeee #eeeeee; +} + +.tabs-left > .nav-tabs .active > a, +.tabs-left > .nav-tabs .active > a:hover { + border-color: #ddd transparent #ddd #ddd; + *border-right-color: #ffffff; +} + +.tabs-right > .nav-tabs { + float: right; + margin-left: 19px; + border-left: 1px solid #ddd; +} + +.tabs-right > .nav-tabs > li > a { + margin-left: -1px; + -webkit-border-radius: 0 4px 4px 0; + -moz-border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; +} + +.tabs-right > .nav-tabs > li > a:hover { + border-color: #eeeeee #eeeeee #eeeeee #dddddd; +} + +.tabs-right > .nav-tabs .active > a, +.tabs-right > .nav-tabs .active > a:hover { + border-color: #ddd #ddd #ddd transparent; + *border-left-color: #ffffff; +} + +.navbar { + *position: relative; + *z-index: 2; + margin-bottom: 18px; + overflow: visible; +} + +.navbar-inner { + min-height: 40px; + padding-right: 20px; + padding-left: 20px; + background-color: #2c2c2c; + background-image: -moz-linear-gradient(top, #333333, #222222); + background-image: -ms-linear-gradient(top, #333333, #222222); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222)); + background-image: -webkit-linear-gradient(top, #333333, #222222); + background-image: -o-linear-gradient(top, #333333, #222222); + background-image: linear-gradient(top, #333333, #222222); + background-repeat: repeat-x; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + filter: progid:dximagetransform.microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0); + -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); + -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); +} + +.navbar .container { + width: auto; +} + +.nav-collapse.collapse { + height: auto; +} + +.navbar { + color: #999999; +} + +.navbar .brand:hover { + text-decoration: none; +} + +.navbar .brand { + display: block; + float: left; + padding: 8px 20px 12px; + margin-left: -20px; + font-size: 20px; + font-weight: 200; + line-height: 1; + color: #999999; +} + +.navbar .navbar-text { + margin-bottom: 0; + line-height: 40px; +} + +.navbar .navbar-link { + color: #999999; +} + +.navbar .navbar-link:hover { + color: #ffffff; +} + +.navbar .btn, +.navbar .btn-group { + margin-top: 5px; +} + +.navbar .btn-group .btn { + margin: 0; +} + +.navbar-form { + margin-bottom: 0; + *zoom: 1; +} + +.navbar-form:before, +.navbar-form:after { + display: table; + content: ""; +} + +.navbar-form:after { + clear: both; +} + +.navbar-form input, +.navbar-form select, +.navbar-form .radio, +.navbar-form .checkbox { + margin-top: 5px; +} + +.navbar-form input, +.navbar-form select { + display: inline-block; + margin-bottom: 0; +} + +.navbar-form input[type="image"], +.navbar-form input[type="checkbox"], +.navbar-form input[type="radio"] { + margin-top: 3px; +} + +.navbar-form .input-append, +.navbar-form .input-prepend { + margin-top: 6px; + white-space: nowrap; +} + +.navbar-form .input-append input, +.navbar-form .input-prepend input { + margin-top: 0; +} + +.navbar-search { + position: relative; + float: left; + margin-top: 6px; + margin-bottom: 0; +} + +.navbar-search .search-query { + padding: 4px 9px; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 13px; + font-weight: normal; + line-height: 1; + color: #ffffff; + background-color: #626262; + border: 1px solid #151515; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15); + -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15); + -webkit-transition: none; + -moz-transition: none; + -ms-transition: none; + -o-transition: none; + transition: none; +} + +.navbar-search .search-query:-moz-placeholder { + color: #cccccc; +} + +.navbar-search .search-query:-ms-input-placeholder { + color: #cccccc; +} + +.navbar-search .search-query::-webkit-input-placeholder { + color: #cccccc; +} + +.navbar-search .search-query:focus, +.navbar-search .search-query.focused { + padding: 5px 10px; + color: #333333; + text-shadow: 0 1px 0 #ffffff; + background-color: #ffffff; + border: 0; + outline: 0; + -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); + -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); + box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); +} + +.navbar-fixed-top, +.navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + z-index: 1030; + margin-bottom: 0; +} + +.navbar-fixed-top .navbar-inner, +.navbar-fixed-bottom .navbar-inner { + padding-right: 0; + padding-left: 0; + -webkit-border-radius: 0; + -moz-border-radius: 0; + border-radius: 0; +} + +.navbar-fixed-top .container, +.navbar-fixed-bottom .container { + width: 940px; +} + +.navbar-fixed-top { + top: 0; +} + +.navbar-fixed-bottom { + bottom: 0; +} + +.navbar .nav { + position: relative; + left: 0; + display: block; + float: left; + margin: 0 10px 0 0; +} + +.navbar .nav.pull-right { + float: right; +} + +.navbar .nav > li { + display: block; + float: left; +} + +.navbar .nav > li > a { + float: none; + padding: 9px 10px 11px; + line-height: 19px; + color: #999999; + text-decoration: none; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} + +.navbar .btn { + display: inline-block; + padding: 4px 10px 4px; + margin: 5px 5px 6px; + line-height: 18px; +} + +.navbar .btn-group { + padding: 5px 5px 6px; + margin: 0; +} + +.navbar .nav > li > a:hover { + color: #ffffff; + text-decoration: none; + background-color: transparent; +} + +.navbar .nav .active > a, +.navbar .nav .active > a:hover { + color: #ffffff; + text-decoration: none; + background-color: #222222; +} + +.navbar .divider-vertical { + width: 1px; + height: 40px; + margin: 0 9px; + overflow: hidden; + background-color: #222222; + border-right: 1px solid #333333; +} + +.navbar .nav.pull-right { + margin-right: 0; + margin-left: 10px; +} + +.navbar .btn-navbar { + display: none; + float: right; + padding: 7px 10px; + margin-right: 5px; + margin-left: 5px; + background-color: #2c2c2c; + *background-color: #222222; + background-image: -ms-linear-gradient(top, #333333, #222222); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222)); + background-image: -webkit-linear-gradient(top, #333333, #222222); + background-image: -o-linear-gradient(top, #333333, #222222); + background-image: linear-gradient(top, #333333, #222222); + background-image: -moz-linear-gradient(top, #333333, #222222); + background-repeat: repeat-x; + border-color: #222222 #222222 #000000; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + filter: progid:dximagetransform.microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0); + filter: progid:dximagetransform.microsoft.gradient(enabled=false); + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); + -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); +} + +.navbar .btn-navbar:hover, +.navbar .btn-navbar:active, +.navbar .btn-navbar.active, +.navbar .btn-navbar.disabled, +.navbar .btn-navbar[disabled] { + background-color: #222222; + *background-color: #151515; +} + +.navbar .btn-navbar:active, +.navbar .btn-navbar.active { + background-color: #080808 \9; +} + +.navbar .btn-navbar .icon-bar { + display: block; + width: 18px; + height: 2px; + background-color: #f5f5f5; + -webkit-border-radius: 1px; + -moz-border-radius: 1px; + border-radius: 1px; + -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); + -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); + box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); +} + +.btn-navbar .icon-bar + .icon-bar { + margin-top: 3px; +} + +.navbar .dropdown-menu:before { + position: absolute; + top: -7px; + left: 9px; + display: inline-block; + border-right: 7px solid transparent; + border-bottom: 7px solid #ccc; + border-left: 7px solid transparent; + border-bottom-color: rgba(0, 0, 0, 0.2); + content: ''; +} + +.navbar .dropdown-menu:after { + position: absolute; + top: -6px; + left: 10px; + display: inline-block; + border-right: 6px solid transparent; + border-bottom: 6px solid #ffffff; + border-left: 6px solid transparent; + content: ''; +} + +.navbar-fixed-bottom .dropdown-menu:before { + top: auto; + bottom: -7px; + border-top: 7px solid #ccc; + border-bottom: 0; + border-top-color: rgba(0, 0, 0, 0.2); +} + +.navbar-fixed-bottom .dropdown-menu:after { + top: auto; + bottom: -6px; + border-top: 6px solid #ffffff; + border-bottom: 0; +} + +.navbar .nav li.dropdown .dropdown-toggle .caret, +.navbar .nav li.dropdown.open .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} + +.navbar .nav li.dropdown.active .caret { + opacity: 1; + filter: alpha(opacity=100); +} + +.navbar .nav li.dropdown.open > .dropdown-toggle, +.navbar .nav li.dropdown.active > .dropdown-toggle, +.navbar .nav li.dropdown.open.active > .dropdown-toggle { + background-color: transparent; +} + +.navbar .nav li.dropdown.active > .dropdown-toggle:hover { + color: #ffffff; +} + +.navbar .pull-right .dropdown-menu, +.navbar .dropdown-menu.pull-right { + right: 0; + left: auto; +} + +.navbar .pull-right .dropdown-menu:before, +.navbar .dropdown-menu.pull-right:before { + right: 12px; + left: auto; +} + +.navbar .pull-right .dropdown-menu:after, +.navbar .dropdown-menu.pull-right:after { + right: 13px; + left: auto; +} + +.breadcrumb { + padding: 7px 14px; + margin: 0 0 18px; + list-style: none; + background-color: #fbfbfb; + background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5); + background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5)); + background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5); + background-image: -o-linear-gradient(top, #ffffff, #f5f5f5); + background-image: linear-gradient(top, #ffffff, #f5f5f5); + background-repeat: repeat-x; + border: 1px solid #ddd; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0); + -webkit-box-shadow: inset 0 1px 0 #ffffff; + -moz-box-shadow: inset 0 1px 0 #ffffff; + box-shadow: inset 0 1px 0 #ffffff; +} + +.breadcrumb li { + display: inline-block; + *display: inline; + text-shadow: 0 1px 0 #ffffff; + *zoom: 1; +} + +.breadcrumb .divider { + padding: 0 5px; + color: #999999; +} + +.breadcrumb .active a { + color: #333333; +} + +.pagination { + height: 36px; + margin: 18px 0; +} + +.pagination ul { + display: inline-block; + *display: inline; + margin-bottom: 0; + margin-left: 0; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + *zoom: 1; + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.pagination li { + display: inline; +} + +.pagination a { + float: left; + padding: 0 14px; + line-height: 34px; + text-decoration: none; + border: 1px solid #ddd; + border-left-width: 0; +} + +.pagination a:hover, +.pagination .active a { + background-color: #f5f5f5; +} + +.pagination .active a { + color: #999999; + cursor: default; +} + +.pagination .disabled span, +.pagination .disabled a, +.pagination .disabled a:hover { + color: #999999; + cursor: default; + background-color: transparent; +} + +.pagination li:first-child a { + border-left-width: 1px; + -webkit-border-radius: 3px 0 0 3px; + -moz-border-radius: 3px 0 0 3px; + border-radius: 3px 0 0 3px; +} + +.pagination li:last-child a { + -webkit-border-radius: 0 3px 3px 0; + -moz-border-radius: 0 3px 3px 0; + border-radius: 0 3px 3px 0; +} + +.pagination-centered { + text-align: center; +} + +.pagination-right { + text-align: right; +} + +.pager { + margin-bottom: 18px; + margin-left: 0; + text-align: center; + list-style: none; + *zoom: 1; +} + +.pager:before, +.pager:after { + display: table; + content: ""; +} + +.pager:after { + clear: both; +} + +.pager li { + display: inline; +} + +.pager a { + display: inline-block; + padding: 5px 14px; + background-color: #fff; + border: 1px solid #ddd; + -webkit-border-radius: 15px; + -moz-border-radius: 15px; + border-radius: 15px; +} + +.pager a:hover { + text-decoration: none; + background-color: #f5f5f5; +} + +.pager .next a { + float: right; +} + +.pager .previous a { + float: left; +} + +.pager .disabled a, +.pager .disabled a:hover { + color: #999999; + cursor: default; + background-color: #fff; +} + +.modal-open .dropdown-menu { + z-index: 2050; +} + +.modal-open .dropdown.open { + *z-index: 2050; +} + +.modal-open .popover { + z-index: 2060; +} + +.modal-open .tooltip { + z-index: 2070; +} + +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #000000; +} + +.modal-backdrop.fade { + opacity: 0; +} + +.modal-backdrop, +.modal-backdrop.fade.in { + opacity: 0.8; + filter: alpha(opacity=80); +} + +.modal { + position: fixed; + top: 50%; + left: 50%; + z-index: 1050; + width: 560px; + margin: -250px 0 0 -280px; + overflow: auto; + background-color: #ffffff; + border: 1px solid #999; + border: 1px solid rgba(0, 0, 0, 0.3); + *border: 1px solid #999; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; + -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); + -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); + box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); + -webkit-background-clip: padding-box; + -moz-background-clip: padding-box; + background-clip: padding-box; +} + +.modal.fade { + top: -25%; + -webkit-transition: opacity 0.3s linear, top 0.3s ease-out; + -moz-transition: opacity 0.3s linear, top 0.3s ease-out; + -ms-transition: opacity 0.3s linear, top 0.3s ease-out; + -o-transition: opacity 0.3s linear, top 0.3s ease-out; + transition: opacity 0.3s linear, top 0.3s ease-out; +} + +.modal.fade.in { + top: 50%; +} + +.modal-header { + padding: 9px 15px; + border-bottom: 1px solid #eee; +} + +.modal-header .close { + margin-top: 2px; +} + +.modal-body { + max-height: 400px; + padding: 15px; + overflow-y: auto; +} + +.modal-form { + margin-bottom: 0; +} + +.modal-footer { + padding: 14px 15px 15px; + margin-bottom: 0; + text-align: right; + background-color: #f5f5f5; + border-top: 1px solid #ddd; + -webkit-border-radius: 0 0 6px 6px; + -moz-border-radius: 0 0 6px 6px; + border-radius: 0 0 6px 6px; + *zoom: 1; + -webkit-box-shadow: inset 0 1px 0 #ffffff; + -moz-box-shadow: inset 0 1px 0 #ffffff; + box-shadow: inset 0 1px 0 #ffffff; +} + +.modal-footer:before, +.modal-footer:after { + display: table; + content: ""; +} + +.modal-footer:after { + clear: both; +} + +.modal-footer .btn + .btn { + margin-bottom: 0; + margin-left: 5px; +} + +.modal-footer .btn-group .btn + .btn { + margin-left: -1px; +} + +.tooltip { + position: absolute; + z-index: 1020; + display: block; + padding: 5px; + font-size: 11px; + opacity: 0; + filter: alpha(opacity=0); + visibility: visible; +} + +.tooltip.in { + opacity: 0.8; + filter: alpha(opacity=80); +} + +.tooltip.top { + margin-top: -2px; +} + +.tooltip.right { + margin-left: 2px; +} + +.tooltip.bottom { + margin-top: 2px; +} + +.tooltip.left { + margin-left: -2px; +} + +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-top: 5px solid #000000; + border-right: 5px solid transparent; + border-left: 5px solid transparent; +} + +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-top: 5px solid transparent; + border-bottom: 5px solid transparent; + border-left: 5px solid #000000; +} + +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-right: 5px solid transparent; + border-bottom: 5px solid #000000; + border-left: 5px solid transparent; +} + +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-top: 5px solid transparent; + border-right: 5px solid #000000; + border-bottom: 5px solid transparent; +} + +.tooltip-inner { + max-width: 200px; + padding: 3px 8px; + color: #ffffff; + text-align: center; + text-decoration: none; + background-color: #000000; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; +} + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1010; + display: none; + padding: 5px; +} + +.popover.top { + margin-top: -5px; +} + +.popover.right { + margin-left: 5px; +} + +.popover.bottom { + margin-top: 5px; +} + +.popover.left { + margin-left: -5px; +} + +.popover.top .arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-top: 5px solid #000000; + border-right: 5px solid transparent; + border-left: 5px solid transparent; +} + +.popover.right .arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-top: 5px solid transparent; + border-right: 5px solid #000000; + border-bottom: 5px solid transparent; +} + +.popover.bottom .arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-right: 5px solid transparent; + border-bottom: 5px solid #000000; + border-left: 5px solid transparent; +} + +.popover.left .arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-top: 5px solid transparent; + border-bottom: 5px solid transparent; + border-left: 5px solid #000000; +} + +.popover .arrow { + position: absolute; + width: 0; + height: 0; +} + +.popover-inner { + width: 280px; + padding: 3px; + overflow: hidden; + background: #000000; + background: rgba(0, 0, 0, 0.8); + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; + -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); + -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); + box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); +} + +.popover-title { + padding: 9px 15px; + line-height: 1; + background-color: #f5f5f5; + border-bottom: 1px solid #eee; + -webkit-border-radius: 3px 3px 0 0; + -moz-border-radius: 3px 3px 0 0; + border-radius: 3px 3px 0 0; +} + +.popover-content { + padding: 14px; + background-color: #ffffff; + -webkit-border-radius: 0 0 3px 3px; + -moz-border-radius: 0 0 3px 3px; + border-radius: 0 0 3px 3px; + -webkit-background-clip: padding-box; + -moz-background-clip: padding-box; + background-clip: padding-box; +} + +.popover-content p, +.popover-content ul, +.popover-content ol { + margin-bottom: 0; +} + +.thumbnails { + margin-left: -20px; + list-style: none; + *zoom: 1; +} + +.thumbnails:before, +.thumbnails:after { + display: table; + content: ""; +} + +.thumbnails:after { + clear: both; +} + +.row-fluid .thumbnails { + margin-left: 0; +} + +.thumbnails > li { + float: left; + margin-bottom: 18px; + margin-left: 20px; +} + +.thumbnail { + display: block; + padding: 4px; + line-height: 1; + border: 1px solid #ddd; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075); +} + +a.thumbnail:hover { + border-color: #0088cc; + -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); + -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); + box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25); +} + +.thumbnail > img { + display: block; + max-width: 100%; + margin-right: auto; + margin-left: auto; +} + +.thumbnail .caption { + padding: 9px; +} + +.label, +.badge { + font-size: 10.998px; + font-weight: bold; + line-height: 14px; + color: #ffffff; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + white-space: nowrap; + vertical-align: baseline; + background-color: #999999; +} + +.label { + padding: 1px 4px 2px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} + +.badge { + padding: 1px 9px 2px; + -webkit-border-radius: 9px; + -moz-border-radius: 9px; + border-radius: 9px; +} + +a.label:hover, +a.badge:hover { + color: #ffffff; + text-decoration: none; + cursor: pointer; +} + +.label-important, +.badge-important { + background-color: #b94a48; +} + +.label-important[href], +.badge-important[href] { + background-color: #953b39; +} + +.label-warning, +.badge-warning { + background-color: #f89406; +} + +.label-warning[href], +.badge-warning[href] { + background-color: #c67605; +} + +.label-success, +.badge-success { + background-color: #468847; +} + +.label-success[href], +.badge-success[href] { + background-color: #356635; +} + +.label-info, +.badge-info { + background-color: #3a87ad; +} + +.label-info[href], +.badge-info[href] { + background-color: #2d6987; +} + +.label-inverse, +.badge-inverse { + background-color: #333333; +} + +.label-inverse[href], +.badge-inverse[href] { + background-color: #1a1a1a; +} + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +@-moz-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +@-ms-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +@-o-keyframes progress-bar-stripes { + from { + background-position: 0 0; + } + to { + background-position: 40px 0; + } +} + +@keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} + +.progress { + height: 18px; + margin-bottom: 18px; + overflow: hidden; + background-color: #f7f7f7; + background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9)); + background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9); + background-image: linear-gradient(top, #f5f5f5, #f9f9f9); + background-repeat: repeat-x; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + filter: progid:dximagetransform.microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0); + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); +} + +.progress .bar { + width: 0; + height: 18px; + font-size: 12px; + color: #ffffff; + text-align: center; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + background-color: #0e90d2; + background-image: -moz-linear-gradient(top, #149bdf, #0480be); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be)); + background-image: -webkit-linear-gradient(top, #149bdf, #0480be); + background-image: -o-linear-gradient(top, #149bdf, #0480be); + background-image: linear-gradient(top, #149bdf, #0480be); + background-image: -ms-linear-gradient(top, #149bdf, #0480be); + background-repeat: repeat-x; + filter: progid:dximagetransform.microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0); + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + -ms-box-sizing: border-box; + box-sizing: border-box; + -webkit-transition: width 0.6s ease; + -moz-transition: width 0.6s ease; + -ms-transition: width 0.6s ease; + -o-transition: width 0.6s ease; + transition: width 0.6s ease; +} + +.progress-striped .bar { + background-color: #149bdf; + background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + -webkit-background-size: 40px 40px; + -moz-background-size: 40px 40px; + -o-background-size: 40px 40px; + background-size: 40px 40px; +} + +.progress.active .bar { + -webkit-animation: progress-bar-stripes 2s linear infinite; + -moz-animation: progress-bar-stripes 2s linear infinite; + -ms-animation: progress-bar-stripes 2s linear infinite; + -o-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite; +} + +.progress-danger .bar { + background-color: #dd514c; + background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35); + background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35)); + background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35); + background-image: -o-linear-gradient(top, #ee5f5b, #c43c35); + background-image: linear-gradient(top, #ee5f5b, #c43c35); + background-repeat: repeat-x; + filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0); +} + +.progress-danger.progress-striped .bar { + background-color: #ee5f5b; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-success .bar { + background-color: #5eb95e; + background-image: -moz-linear-gradient(top, #62c462, #57a957); + background-image: -ms-linear-gradient(top, #62c462, #57a957); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957)); + background-image: -webkit-linear-gradient(top, #62c462, #57a957); + background-image: -o-linear-gradient(top, #62c462, #57a957); + background-image: linear-gradient(top, #62c462, #57a957); + background-repeat: repeat-x; + filter: progid:dximagetransform.microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0); +} + +.progress-success.progress-striped .bar { + background-color: #62c462; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-info .bar { + background-color: #4bb1cf; + background-image: -moz-linear-gradient(top, #5bc0de, #339bb9); + background-image: -ms-linear-gradient(top, #5bc0de, #339bb9); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9)); + background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9); + background-image: -o-linear-gradient(top, #5bc0de, #339bb9); + background-image: linear-gradient(top, #5bc0de, #339bb9); + background-repeat: repeat-x; + filter: progid:dximagetransform.microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0); +} + +.progress-info.progress-striped .bar { + background-color: #5bc0de; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.progress-warning .bar { + background-color: #faa732; + background-image: -moz-linear-gradient(top, #fbb450, #f89406); + background-image: -ms-linear-gradient(top, #fbb450, #f89406); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); + background-image: -webkit-linear-gradient(top, #fbb450, #f89406); + background-image: -o-linear-gradient(top, #fbb450, #f89406); + background-image: linear-gradient(top, #fbb450, #f89406); + background-repeat: repeat-x; + filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0); +} + +.progress-warning.progress-striped .bar { + background-color: #fbb450; + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} + +.accordion { + margin-bottom: 18px; +} + +.accordion-group { + margin-bottom: 2px; + border: 1px solid #e5e5e5; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; +} + +.accordion-heading { + border-bottom: 0; +} + +.accordion-heading .accordion-toggle { + display: block; + padding: 8px 15px; +} + +.accordion-toggle { + cursor: pointer; +} + +.accordion-inner { + padding: 9px 15px; + border-top: 1px solid #e5e5e5; +} + +.carousel { + position: relative; + margin-bottom: 18px; + line-height: 1; +} + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} + +.carousel .item { + position: relative; + display: none; + -webkit-transition: 0.6s ease-in-out left; + -moz-transition: 0.6s ease-in-out left; + -ms-transition: 0.6s ease-in-out left; + -o-transition: 0.6s ease-in-out left; + transition: 0.6s ease-in-out left; +} + +.carousel .item > img { + display: block; + line-height: 1; +} + +.carousel .active, +.carousel .next, +.carousel .prev { + display: block; +} + +.carousel .active { + left: 0; +} + +.carousel .next, +.carousel .prev { + position: absolute; + top: 0; + width: 100%; +} + +.carousel .next { + left: 100%; +} + +.carousel .prev { + left: -100%; +} + +.carousel .next.left, +.carousel .prev.right { + left: 0; +} + +.carousel .active.left { + left: -100%; +} + +.carousel .active.right { + left: 100%; +} + +.carousel-control { + position: absolute; + top: 40%; + left: 15px; + width: 40px; + height: 40px; + margin-top: -20px; + font-size: 60px; + font-weight: 100; + line-height: 30px; + color: #ffffff; + text-align: center; + background: #222222; + border: 3px solid #ffffff; + -webkit-border-radius: 23px; + -moz-border-radius: 23px; + border-radius: 23px; + opacity: 0.5; + filter: alpha(opacity=50); +} + +.carousel-control.right { + right: 15px; + left: auto; +} + +.carousel-control:hover { + color: #ffffff; + text-decoration: none; + opacity: 0.9; + filter: alpha(opacity=90); +} + +.carousel-caption { + position: absolute; + right: 0; + bottom: 0; + left: 0; + padding: 10px 15px 5px; + background: #333333; + background: rgba(0, 0, 0, 0.75); +} + +.carousel-caption h4, +.carousel-caption p { + color: #ffffff; +} + +.hero-unit { + padding: 60px; + margin-bottom: 30px; + background-color: #eeeeee; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + border-radius: 6px; +} + +.hero-unit h1 { + margin-bottom: 0; + font-size: 60px; + line-height: 1; + letter-spacing: -1px; + color: inherit; +} + +.hero-unit p { + font-size: 18px; + font-weight: 200; + line-height: 27px; + color: inherit; +} + +.pull-right { + float: right; +} + +.pull-left { + float: left; +} + +.hide { + display: none; +} + +.show { + display: block; +} + +.invisible { + visibility: hidden; +} diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/css/iconic.css b/src/main/java/com/gitblit/wicket/resources/bootstrap/css/iconic.css new file mode 100644 index 00000000..66b9fe29 --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/css/iconic.css @@ -0,0 +1,567 @@ +/* + * Iconic CSS by Jansy + * http://jasny.github.io/bootstrap + * + */ + +@font-face { + font-family: IconicStroke; + font-weight: normal; + src: url(../font/iconic_stroke.eot); + src: local('IconicStroke'), url(../font/iconic_stroke.eot?#iefix) format('embedded-opentype'), url(../font/iconic_stroke.woff) format('woff'), url(../font/iconic_stroke.ttf) format('truetype'), url(../font/iconic_stroke.svg#iconic) format('svg'), url(../font/iconic_stroke.otf) format('opentype'); +} + +@font-face { + font-family: IconicFill; + font-weight: normal; + src: url(../font/iconic_fill.eot); + src: local('IconicFill'), url(../font/iconic_fill.eot?#iefix) format('embedded-opentype'), url(../font/iconic_fill.woff) format('woff'), url(../font/iconic_fill.ttf) format('truetype'), url(../font/iconic_fill.svg#iconic) format('svg'), url(../font/iconic_fill.otf) format('opentype'); +} + +@media screen, print { + [class*="iconic-"] { + font-style: inherit; + font-weight: normal; + vertical-align: middle; + } + [class*="iconic-"]:before { + display: inline-block; + width: 1em; + font-family: IconicFill; + text-align: center; + content: ""; + } + .iconic-stroke:before { + font-family: IconicStroke; + } + .iconic-hash:before { + content: '\23'; + } + .iconic-question-mark:before { + content: '\3f'; + } + .iconic-at:before { + content: '\40'; + } + .iconic-pilcrow:before { + content: '\b6'; + } + .iconic-info:before { + content: '\2139'; + } + .iconic-arrow-left:before { + content: '\2190'; + } + .iconic-arrow-up:before { + content: '\2191'; + } + .iconic-arrow-right:before { + content: '\2192'; + } + .iconic-arrow-down:before { + content: '\2193'; + } + .iconic-home:before { + content: '\2302'; + } + .iconic-sun:before { + content: '\2600'; + } + .iconic-cloud:before { + content: '\2601'; + } + .iconic-umbrella:before { + content: '\2602'; + } + .iconic-star:before { + content: '\2605'; + } + .iconic-moon:before { + content: '\263e'; + } + .iconic-heart:before { + content: '\2764'; + } + .iconic-cog:before { + content: '\2699'; + } + .iconic-bolt:before { + content: '\26a1'; + } + .iconic-key:before { + content: '\26bf'; + } + .iconic-rain:before { + content: '\26c6'; + } + .iconic-denied:before { + content: '\26d4'; + } + .iconic-mail:before { + content: '\2709'; + } + .iconic-pen:before { + content: '\270e'; + } + .iconic-x:before { + content: '\2713'; + } + .iconic-o-x:before { + content: '\2714'; + } + .iconic-check:before { + content: '\2717'; + } + .iconic-o-check:before { + content: '\2718'; + } + .iconic-left-quote:before { + content: '\275d'; + } + .iconic-right-quote:before { + content: '\275e'; + } + .iconic-plus:before { + content: '\2795'; + } + .iconic-minus:before { + content: '\2796'; + } + .iconic-curved-arrow:before { + content: '\2935'; + } + .iconic-document-alt:before { + content: '\e000'; + } + .iconic-calendar:before { + content: '\e001'; + } + .iconic-map-pin-alt:before { + content: '\e002'; + } + .iconic-comment-alt1:before { + content: '\e003'; + } + .iconic-comment-alt2:before { + content: '\e004'; + } + .iconic-pen-alt:before { + content: '\e005'; + } + .iconic-pen-alt2:before { + content: '\e006'; + } + .iconic-chat-alt:before { + content: '\e007'; + } + .iconic-o-plus:before { + content: '\e008'; + } + .iconic-o-minus:before { + content: '\e009'; + } + .iconic-bars-alt:before { + content: '\e00a'; + } + .iconic-book-alt:before { + content: '\e00b'; + } + .iconic-aperture-alt:before { + content: '\e00c'; + } + .iconic-beaker-alt:before { + content: '\e010'; + } + .iconic-left-quote-alt:before { + content: '\e011'; + } + .iconic-right-quote-alt:before { + content: '\e012'; + } + .iconic-o-arrow-left:before { + content: '\e013'; + } + .iconic-o-arrow-up:before { + content: '\e014'; + } + .iconic-o-arrow-right:before { + content: '\e015'; + } + .iconic-o-arrow-down:before { + content: '\e016'; + } + .iconic-o-arrow-left-alt:before { + content: '\e017'; + } + .iconic-o-arrow-up-alt:before { + content: '\e018'; + } + .iconic-o-arrow-right-alt:before { + content: '\e019'; + } + .iconic-o-arrow-down-alt:before { + content: '\e01a'; + } + .iconic-brush:before { + content: '\e01b'; + } + .iconic-brush-alt:before { + content: '\e01c'; + } + .iconic-eyedropper:before { + content: '\e01e'; + } + .iconic-layers:before { + content: '\e01f'; + } + .iconic-layers-alt:before { + content: '\e020'; + } + .iconic-compass:before { + content: '\e021'; + } + .iconic-award:before { + content: '\e022'; + } + .iconic-beaker:before { + content: '\e023'; + } + .iconic-steering-wheel:before { + content: '\e024'; + } + .iconic-eye:before { + content: '\e025'; + } + .iconic-aperture:before { + content: '\e026'; + } + .iconic-image:before { + content: '\e027'; + } + .iconic-chart:before { + content: '\e028'; + } + .iconic-chart-alt:before { + content: '\e029'; + } + .iconic-target:before { + content: '\e02a'; + } + .iconic-tag:before { + content: '\e02b'; + } + .iconic-rss:before { + content: '\e02c'; + } + .iconic-rss-alt:before { + content: '\e02d'; + } + .iconic-share:before { + content: '\e02e'; + } + .iconic-undo:before { + content: '\e02f'; + } + .iconic-reload:before { + content: '\e030'; + } + .iconic-reload-alt:before { + content: '\e031'; + } + .iconic-loop:before { + content: '\e032'; + } + .iconic-loop-alt:before { + content: '\e033'; + } + .iconic-back-forth:before { + content: '\e034'; + } + .iconic-back-forth-alt:before { + content: '\e035'; + } + .iconic-spin:before { + content: '\e036'; + } + .iconic-spin-alt:before { + content: '\e037'; + } + .iconic-move-horizontal:before { + content: '\e038'; + } + .iconic-move-horizontal-alt:before { + content: '\e039'; + } + .iconic-o-move-horizontal:before { + content: '\e03a'; + } + .iconic-move-vertical:before { + content: '\e03b'; + } + .iconic-move-vertical-alt:before { + content: '\e03c'; + } + .iconic-o-move-vertical:before { + content: '\e03d'; + } + .iconic-move:before { + content: '\e03e'; + } + .iconic-move-alt:before { + content: '\e03f'; + } + .iconic-o-move:before { + content: '\e040'; + } + .iconic-transfer:before { + content: '\e041'; + } + .iconic-download:before { + content: '\e042'; + } + .iconic-upload:before { + content: '\e043'; + } + .iconic-cloud-download:before { + content: '\e044'; + } + .iconic-cloud-upload:before { + content: '\e045'; + } + .iconic-fork:before { + content: '\e046'; + } + .iconic-play:before { + content: '\e047'; + } + .iconic-o-play:before { + content: '\e048'; + } + .iconic-pause:before { + content: '\e049'; + } + .iconic-stop:before { + content: '\e04a'; + } + .iconic-eject:before { + content: '\e04b'; + } + .iconic-first:before { + content: '\e04c'; + } + .iconic-last:before { + content: '\e04d'; + } + .iconic-fullscreen:before { + content: '\e04e'; + } + .iconic-fullscreen-alt:before { + content: '\e04f'; + } + .iconic-fullscreen-exit:before { + content: '\e050'; + } + .iconic-fullscreen-exit-alt:before { + content: '\e051'; + } + .iconic-equalizer:before { + content: '\e052'; + } + .iconic-article:before { + content: '\e053'; + } + .iconic-read-more:before { + content: '\e054'; + } + .iconic-list:before { + content: '\e055'; + } + .iconic-list-nested:before { + content: '\e056'; + } + .iconic-cursor:before { + content: '\e057'; + } + .iconic-dial:before { + content: '\e058'; + } + .iconic-new-window:before { + content: '\e059'; + } + .iconic-trash:before { + content: '\e05a'; + } + .iconic-battery-half:before { + content: '\e05b'; + } + .iconic-battery-empty:before { + content: '\e05c'; + } + .iconic-battery-charging:before { + content: '\e05d'; + } + .iconic-chat:before { + content: '\e05e'; + } + .iconic-mic:before { + content: '\e05f'; + } + .iconic-movie:before { + content: '\e060'; + } + .iconic-headphones:before { + content: '\e061'; + } + .iconic-user:before { + content: '\e062'; + } + .iconic-lightbulb:before { + content: '\e063'; + } + .iconic-cd:before { + content: '\e064'; + } + .iconic-folder:before { + content: '\e065'; + } + .iconic-document:before { + content: '\e066'; + } + .iconic-pin:before { + content: '\e067'; + } + .iconic-map-pin:before { + content: '\e068'; + } + .iconic-book:before { + content: '\e069'; + } + .iconic-book-alt2:before { + content: '\e06a'; + } + .iconic-box:before { + content: '\e06b'; + } + .iconic-calendar-alt:before { + content: '\e06c'; + } + .iconic-comment:before { + content: '\e06d'; + } + .iconic-iphone:before { + content: '\e06e'; + } + .iconic-bars:before { + content: '\e06f'; + } + .iconic-camera:before { + content: '\e070'; + } + .iconic-volume-mute:before { + content: '\e071'; + } + .iconic-volume:before { + content: '\e072'; + } + .iconic-battery-full:before { + content: '\e073'; + } + .iconic-magnifying-glass:before { + content: '\e074'; + } + .iconic-lock:before { + content: '\e075'; + } + .iconic-unlock:before { + content: '\e076'; + } + .iconic-link:before { + content: '\e077'; + } + .iconic-wrench:before { + content: '\e078'; + } + .iconic-clock:before { + content: '\e079'; + } + .iconic-sun-stroke:before { + font-family: IconicStroke; + content: '\2600'; + } + .iconic-moon-stroke:before { + font-family: IconicStroke; + content: '\263e'; + } + .iconic-star-stroke:before { + font-family: IconicStroke; + content: '\2605'; + } + .iconic-heart-stroke:before { + font-family: IconicStroke; + content: '\2764'; + } + .iconic-key-stroke:before { + font-family: IconicStroke; + content: '\26bf'; + } + .iconic-document-alt-stroke:before { + font-family: IconicStroke; + content: '\e000'; + } + .iconic-comment-alt1-stroke:before { + font-family: IconicStroke; + content: '\e003'; + } + .iconic-comment-alt2-stroke:before { + font-family: IconicStroke; + content: '\e004'; + } + .iconic-pen-alt-stroke:before { + font-family: IconicStroke; + content: '\e005'; + } + .iconic-chat-alt-stroke:before { + font-family: IconicStroke; + content: '\e007'; + } + .iconic-award-stroke:before { + font-family: IconicStroke; + content: '\e022'; + } + .iconic-tag-stroke:before { + font-family: IconicStroke; + content: '\e02b'; + } + .iconic-trash-stroke:before { + font-family: IconicStroke; + content: '\e05a'; + } + .iconic-folder-stroke:before { + font-family: IconicStroke; + content: '\e065'; + } + .iconic-document-stroke:before { + font-family: IconicStroke; + content: '\e066'; + } + .iconic-map-pin-stroke:before { + font-family: IconicStroke; + content: '\e068'; + } + .iconic-calendar-alt-stroke:before { + font-family: IconicStroke; + content: '\e06c'; + } + .iconic-comment-stroke:before { + font-family: IconicStroke; + content: '\e06d'; + } + .iconic-lock-stroke:before { + font-family: IconicStroke; + content: '\e075'; + } + .iconic-unlock-stroke:before { + font-family: IconicStroke; + content: '\e076'; + } +}
\ No newline at end of file diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.afm b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.afm new file mode 100644 index 00000000..0cca7c40 --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.afm @@ -0,0 +1,170 @@ +StartFontMetrics 2.0 +Comment Generated by FontForge 20110222 +Comment Creation Date: Sun Apr 1 19:42:26 2012 +FontName IconicFill +FullName Iconic Fill +FamilyName Iconic +Weight Medium +Notice (Icons by PJ Onori, font creation script by Yann) +ItalicAngle 0 +IsFixedPitch false +UnderlinePosition -100 +UnderlineThickness 50 +Version 001.000 +EncodingScheme ISOLatin1Encoding +FontBBox 14 -14 760 731 +Descender -2147483648 +StartCharMetrics 151 +C 35 ; WX 681 ; N numbersign ; B 15 -14 667 731 ; +C 63 ; WX 402 ; N question ; B 15 -14 388 731 ; +C 64 ; WX 774 ; N at ; B 15 -14 760 731 ; +C 182 ; WX 588 ; N paragraph ; B 15 -14 574 731 ; +C -1 ; WX 495 ; N glyph0 ; B 15 -14 481 731 ; +C -1 ; WX 774 ; N glyph1 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph2 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph3 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph4 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph5 ; B 15 32 760 684 ; +C -1 ; WX 774 ; N glyph6 ; B 15 32 760 684 ; +C -1 ; WX 774 ; N glyph7 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph8 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph9 ; B 15 -14 760 731 ; +C -1 ; WX 728 ; N glyph10 ; B 14 -14 713 731 ; +C -1 ; WX 774 ; N glyph11 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph12 ; B 15 -14 760 731 ; +C -1 ; WX 681 ; N glyph13 ; B 15 -14 667 730 ; +C -1 ; WX 774 ; N glyph14 ; B 15 32 760 684 ; +C -1 ; WX 774 ; N glyph15 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph16 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph17 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph18 ; B 15 172 760 545 ; +C -1 ; WX 588 ; N glyph19 ; B 15 -14 574 731 ; +C -1 ; WX 774 ; N glyph20 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph21 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph22 ; B 15 218 760 498 ; +C -1 ; WX 774 ; N glyph23 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph24 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph25 ; B 15 172 760 545 ; +C -1 ; WX 774 ; N glyph26 ; B 15 32 760 684 ; +C -1 ; WX 402 ; N glyph27 ; B 15 -14 388 731 ; +C -1 ; WX 774 ; N glyph29 ; B 15 32 760 684 ; +C -1 ; WX 588 ; N glyph30 ; B 15 -14 574 731 ; +C -1 ; WX 588 ; N glyph31 ; B 15 32 574 684 ; +C -1 ; WX 774 ; N glyph32 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph33 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph34 ; B 15 32 760 684 ; +C -1 ; WX 774 ; N glyph35 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph36 ; B 15 79 760 638 ; +C -1 ; WX 681 ; N glyph37 ; B 15 32 667 684 ; +C -1 ; WX 774 ; N glyph38 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph39 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph40 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph41 ; B 15 -14 760 731 ; +C -1 ; WX 588 ; N glyph42 ; B 15 -14 574 731 ; +C -1 ; WX 774 ; N glyph43 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph44 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph45 ; B 15 79 760 638 ; +C -1 ; WX 588 ; N glyph46 ; B 15 -14 574 731 ; +C -1 ; WX 774 ; N glyph47 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph48 ; B 15 -12 760 729 ; +C -1 ; WX 774 ; N glyph49 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph50 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph51 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph52 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph53 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph54 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph55 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph56 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph57 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph58 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph59 ; B 15 32 760 684 ; +C -1 ; WX 774 ; N glyph60 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph61 ; B 15 -14 760 731 ; +C -1 ; WX 588 ; N glyph62 ; B 15 -14 574 731 ; +C -1 ; WX 774 ; N glyph63 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph64 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph65 ; B 15 -14 760 731 ; +C -1 ; WX 402 ; N glyph66 ; B 15 -14 388 731 ; +C -1 ; WX 402 ; N glyph67 ; B 15 -14 388 731 ; +C -1 ; WX 774 ; N glyph68 ; B 15 172 760 545 ; +C -1 ; WX 774 ; N glyph69 ; B 15 -14 760 731 ; +C -1 ; WX 588 ; N glyph70 ; B 15 -14 574 731 ; +C -1 ; WX 774 ; N glyph71 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph72 ; B 15 -14 760 731 ; +C -1 ; WX 402 ; N glyph73 ; B 15 -14 388 731 ; +C -1 ; WX 774 ; N glyph74 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph75 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph76 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph77 ; B 14 79 760 638 ; +C -1 ; WX 774 ; N glyph78 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph79 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph80 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph81 ; B 15 125 760 591 ; +C -1 ; WX 774 ; N glyph82 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph83 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph84 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph85 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph86 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph87 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph88 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph89 ; B 15 218 760 498 ; +C -1 ; WX 774 ; N glyph90 ; B 15 -14 760 731 ; +C -1 ; WX 588 ; N glyph91 ; B 15 32 574 684 ; +C -1 ; WX 774 ; N glyph92 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph93 ; B 15 -14 760 731 ; +C -1 ; WX 681 ; N glyph94 ; B 15 -14 667 731 ; +C -1 ; WX 774 ; N glyph95 ; B 15 -14 760 731 ; +C -1 ; WX 495 ; N glyph96 ; B 15 -14 481 731 ; +C -1 ; WX 681 ; N glyph97 ; B 15 -14 667 731 ; +C -1 ; WX 774 ; N glyph98 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph99 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph100 ; B 14 -14 760 731 ; +C -1 ; WX 309 ; N glyph101 ; B 15 -14 295 731 ; +C -1 ; WX 774 ; N glyph102 ; B 15 -14 759 731 ; +C -1 ; WX 681 ; N glyph103 ; B 15 -14 667 731 ; +C -1 ; WX 774 ; N glyph104 ; B 15 -14 760 731 ; +C -1 ; WX 402 ; N glyph105 ; B 15 -14 388 731 ; +C -1 ; WX 774 ; N glyph106 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph107 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph108 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph109 ; B 15 265 760 452 ; +C -1 ; WX 774 ; N glyph110 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph111 ; B 15 32 760 684 ; +C -1 ; WX 774 ; N glyph113 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph114 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph115 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph116 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph117 ; B 15 -14 760 731 ; +C -1 ; WX 681 ; N glyph118 ; B 15 -14 667 731 ; +C -1 ; WX 774 ; N glyph119 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph121 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph122 ; B 15 -14 760 731 ; +C -1 ; WX 309 ; N glyph123 ; B 15 -14 295 731 ; +C -1 ; WX 774 ; N glyph124 ; B 15 58 760 658 ; +C -1 ; WX 588 ; N glyph125 ; B 15 -14 574 731 ; +C -1 ; WX 681 ; N glyph126 ; B 15 -14 667 731 ; +C -1 ; WX 774 ; N glyph127 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph128 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph129 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph130 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph131 ; B 15 -14 760 731 ; +C -1 ; WX 588 ; N glyph132 ; B 15 -14 574 731 ; +C -1 ; WX 774 ; N glyph133 ; B 15 -14 760 731 ; +C -1 ; WX 588 ; N glyph134 ; B 15 -14 574 731 ; +C -1 ; WX 774 ; N glyph135 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph136 ; B 15 32 760 684 ; +C -1 ; WX 774 ; N glyph137 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph138 ; B 15 -14 760 731 ; +C -1 ; WX 588 ; N glyph139 ; B 15 -14 574 731 ; +C -1 ; WX 774 ; N glyph140 ; B 15 172 760 545 ; +C -1 ; WX 774 ; N glyph141 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph142 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph143 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph145 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph146 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph147 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph148 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph149 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph150 ; B 15 -14 760 731 ; +EndCharMetrics +EndFontMetrics diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.css b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.css new file mode 100644 index 00000000..8943a93f --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.css @@ -0,0 +1 @@ +@font-face { font-family: 'IconicFill'; src: url('iconic_fill.eot'); src: url('iconic_fill.eot?#iefix') format('embedded-opentype'), url('iconic_fill.ttf') format('truetype'), url('iconic_fill.svg#iconic') format('svg'); font-weight: normal; font-style: normal; }.iconic { display:inline-block; font-family: 'IconicFill'; }.lightbulb:before {content:'\e063';}.equalizer:before {content:'\e052';}.brush_alt:before {content:'\e01c';}.move:before {content:'\e03e';}.tag_fill:before {content:'\e02b';}.book_alt2:before {content:'\e06a';}.layers:before {content:'\e01f';}.chat_alt_fill:before {content:'\e007';}.layers_alt:before {content:'\e020';}.cloud_upload:before {content:'\e045';}.chart_alt:before {content:'\e029';}.fullscreen_exit_alt:before {content:'\e051';}.cloud_download:before {content:'\e044';}.paperclip:before {content:'\e08a';}.heart_fill:before {content:'\2764';}.mail:before {content:'\2709';}.pen_alt_fill:before {content:'\e005';}.check_alt:before {content:'\2718';}.battery_charging:before {content:'\e05d';}.lock_fill:before {content:'\e075';}.stop:before {content:'\e04a';}.arrow_up:before {content:'\2191';}.move_horizontal:before {content:'\e038';}.compass:before {content:'\e021';}.minus_alt:before {content:'\e009';}.battery_empty:before {content:'\e05c';}.comment_fill:before {content:'\e06d';}.map_pin_alt:before {content:'\e002';}.question_mark:before {content:'\003f';}.list:before {content:'\e055';}.upload:before {content:'\e043';}.reload:before {content:'\e030';}.loop_alt4:before {content:'\e035';}.loop_alt3:before {content:'\e034';}.loop_alt2:before {content:'\e033';}.loop_alt1:before {content:'\e032';}.left_quote:before {content:'\275d';}.x:before {content:'\2713';}.last:before {content:'\e04d';}.bars:before {content:'\e06f';}.arrow_left:before {content:'\2190';}.arrow_down:before {content:'\2193';}.download:before {content:'\e042';}.home:before {content:'\2302';}.calendar:before {content:'\e001';}.right_quote_alt:before {content:'\e012';}.unlock_fill:before {content:'\e076';}.fullscreen:before {content:'\e04e';}.dial:before {content:'\e058';}.plus_alt:before {content:'\e008';}.clock:before {content:'\e079';}.movie:before {content:'\e060';}.steering_wheel:before {content:'\e024';}.pen:before {content:'\270e';}.pin:before {content:'\e067';}.denied:before {content:'\26d4';}.left_quote_alt:before {content:'\e011';}.volume_mute:before {content:'\e071';}.umbrella:before {content:'\2602';}.list_nested:before {content:'\e056';}.arrow_up_alt1:before {content:'\e014';}.undo:before {content:'\e02f';}.pause:before {content:'\e049';}.bolt:before {content:'\26a1';}.article:before {content:'\e053';}.read_more:before {content:'\e054';}.beaker:before {content:'\e023';}.beaker_alt:before {content:'\e010';}.battery_full:before {content:'\e073';}.arrow_right:before {content:'\2192';}.iphone:before {content:'\e06e';}.arrow_up_alt2:before {content:'\e018';}.cog:before {content:'\2699';}.award_fill:before {content:'\e022';}.first:before {content:'\e04c';}.trash_fill:before {content:'\e05a';}.image:before {content:'\e027';}.comment_alt1_fill:before {content:'\e003';}.cd:before {content:'\e064';}.right_quote:before {content:'\275e';}.brush:before {content:'\e01b';}.cloud:before {content:'\2601';}.eye:before {content:'\e025';}.play_alt:before {content:'\e048';}.transfer:before {content:'\e041';}.pen_alt2:before {content:'\e006';}.camera:before {content:'\e070';}.move_horizontal_alt2:before {content:'\e03a';}.curved_arrow:before {content:'\2935';}.move_horizontal_alt1:before {content:'\e039';}.aperture:before {content:'\e026';}.reload_alt:before {content:'\e031';}.magnifying_glass:before {content:'\e074';}.calendar_alt_fill:before {content:'\e06c';}.fork:before {content:'\e046';}.box:before {content:'\e06b';}.map_pin_fill:before {content:'\e068';}.bars_alt:before {content:'\e00a';}.volume:before {content:'\e072';}.x_alt:before {content:'\2714';}.link:before {content:'\e077';}.move_vertical:before {content:'\e03b';}.eyedropper:before {content:'\e01e';}.spin:before {content:'\e036';}.rss:before {content:'\e02c';}.info:before {content:'\2139';}.target:before {content:'\e02a';}.cursor:before {content:'\e057';}.key_fill:before {content:'\26bf';}.minus:before {content:'\2796';}.book_alt:before {content:'\e00b';}.headphones:before {content:'\e061';}.hash:before {content:'\0023';}.arrow_left_alt1:before {content:'\e013';}.arrow_left_alt2:before {content:'\e017';}.fullscreen_exit:before {content:'\e050';}.share:before {content:'\e02e';}.fullscreen_alt:before {content:'\e04f';}.comment_alt2_fill:before {content:'\e004';}.moon_fill:before {content:'\263e';}.at:before {content:'\0040';}.chat:before {content:'\e05e';}.move_vertical_alt2:before {content:'\e03d';}.move_vertical_alt1:before {content:'\e03c';}.check:before {content:'\2717';}.mic:before {content:'\e05f';}.book:before {content:'\e069';}.move_alt1:before {content:'\e03f';}.move_alt2:before {content:'\e040';}.document_fill:before {content:'\e066';}.plus:before {content:'\2795';}.wrench:before {content:'\e078';}.play:before {content:'\e047';}.star:before {content:'\2605';}.document_alt_fill:before {content:'\e000';}.chart:before {content:'\e028';}.rain:before {content:'\26c6';}.folder_fill:before {content:'\e065';}.new_window:before {content:'\e059';}.user:before {content:'\e062';}.battery_half:before {content:'\e05b';}.aperture_alt:before {content:'\e00c';}.eject:before {content:'\e04b';}.arrow_down_alt1:before {content:'\e016';}.pilcrow:before {content:'\00b6';}.arrow_down_alt2:before {content:'\e01a';}.arrow_right_alt1:before {content:'\e015';}.arrow_right_alt2:before {content:'\e019';}.rss_alt:before {content:'\e02d';}.spin_alt:before {content:'\e037';}.sun_fill:before {content:'\2600';}
\ No newline at end of file diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.eot b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.eot Binary files differnew file mode 100644 index 00000000..f1e8f85c --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.eot diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.otf b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.otf Binary files differnew file mode 100644 index 00000000..1b8caffc --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.otf diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.svg b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.svg new file mode 100644 index 00000000..95e13591 --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.svg @@ -0,0 +1,539 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg> +<metadata> +Created by FontForge 20110222 at Sun Apr 1 19:42:26 2012 + By PJ Onori,,, +Icons by PJ Onori, font creation script by Yann +</metadata> +<defs> +<font id="IconicFill" horiz-adv-x="774" > + <font-face + font-family="Iconic" + font-weight="500" + font-stretch="normal" + units-per-em="1000" + panose-1="2 0 6 3 0 0 0 0 0 0" + ascent="800" + descent="-200" + bbox="14.9996 -13.9766 759.209 730.262" + underline-thickness="50" + underline-position="-100" + unicode-range="U+0023-E08A" + /> + <missing-glyph /> + <glyph glyph-name="glyph0" unicode="" horiz-adv-x="495" +d="M247.559 637.023c-77 0 -139.582 -62.7676 -139.582 -139.907c0 -44.0469 20.1631 -84.5576 55.2324 -111c52.4883 -39.6973 73.7676 -83.5811 81.0234 -120.465h6.65137c7.30176 36.8838 28.5117 80.7676 81.0234 120.465c35.1162 26.4189 55.1855 66.9307 55.1855 111 +c0 77.1396 -62.5342 139.907 -139.534 139.907zM247.559 730.232c128.441 0 232.558 -104.372 232.558 -233.093c0 -76.3252 -35.8838 -143 -92.3018 -185.512c-25.8838 -19.6279 -47.2793 -44.8838 -47.2793 -79.7676v-59.4189h-185.907v59.4189 +c0 34.8838 -21.3955 60.1396 -47.3252 79.7676c-56.3721 42.5117 -92.3027 109.187 -92.3027 185.512c0 128.721 104.116 233.093 232.559 233.093zM154.628 -13.9531v93.209h185.907v-93.209h-185.907z" /> + <glyph glyph-name="glyph1" unicode="" +d="M480.116 265.116v-93.0234h-46.5117v-139.534c0 -25.6982 -20.7207 -46.5117 -46.5117 -46.5117c-25.6279 0 -46.5117 20.8135 -46.5117 46.5117v139.534h-46.5117v93.0234h46.5117v418.604c0 25.6982 20.8838 46.5117 46.5117 46.5117 +c25.791 0 46.5117 -20.8135 46.5117 -46.5117v-418.604h46.5117zM759.186 544.186v-93.0225h-46.5107v-418.604c0 -25.6982 -20.7217 -46.5117 -46.5117 -46.5117c-25.6279 0 -46.5117 20.8135 -46.5117 46.5117v418.604h-46.5117v93.0225h46.5117v139.535 +c0 25.6982 20.8838 46.5117 46.5117 46.5117c25.79 0 46.5117 -20.8135 46.5117 -46.5117v-139.535h46.5107zM201.047 451.163v-93.0234h-46.5117v-325.581c0 -25.6982 -20.7217 -46.5117 -46.5117 -46.5117c-25.6279 0 -46.5117 20.8135 -46.5117 46.5117v325.581h-46.5117 +v93.0234h46.5117v232.558c0 25.6982 20.8838 46.5117 46.5117 46.5117c25.79 0 46.5117 -20.8135 46.5117 -46.5117v-232.558h46.5117z" /> + <glyph glyph-name="glyph2" unicode="" +d="M294.069 172.093c0 -102.744 -83.3018 -186.046 -186.046 -186.046c-33.791 0 -65.3955 9 -92.6514 24.6973l-0.37207 0.279297c55.6045 32.1631 93.0234 92.1162 93.0234 160.884v0.185547c0 51.4189 41.6045 93.0234 93.0234 93.0234 +c51.3252 0 93.0225 -41.6045 93.0225 -93.0234zM731.93 702.977c36.3496 -36.3252 36.3496 -95.209 0 -131.535l-351.744 -351.837c-17.0693 64.2324 -67.3945 114.465 -131.534 131.628l351.744 351.744c36.3252 36.3262 95.209 36.3262 131.534 0z" /> + <glyph glyph-name="glyph3" unicode="" +d="M433.604 265.116v-139.535h93.0234l-139.535 -139.534l-139.534 139.534h93.0225v139.535h93.0234zM340.581 451.163v139.534h-93.0225l139.534 139.535l139.535 -139.535h-93.0234v-139.534h-93.0234zM294.069 311.628h-139.534v-93.0234l-139.535 139.535 +l139.535 139.535v-93.0234h139.534v-93.0234zM480.116 404.651h139.535v93.0234l139.534 -139.535l-139.534 -139.535v93.0234h-139.535v93.0234z" /> + <glyph glyph-name="glyph4" unicode="" +d="M323.768 730.232l435.418 -435.418h-308.86v-308.768l-435.325 435.418v308.768h308.768zM185.047 471.604c48.8838 0 88.4883 39.6045 88.4883 88.4883s-39.6045 88.4883 -88.4883 88.4883s-88.4883 -39.6045 -88.4883 -88.4883s39.6045 -88.4883 88.4883 -88.4883z" /> + <glyph glyph-name="glyph5" unicode="" +d="M387.093 590.697c0 0 93.0234 93.0234 372.093 93.0234v-558.14c-281.977 0 -372.093 -93.0225 -372.093 -93.0225s-90.1162 93.0225 -372.093 93.0225v558.14c279.069 0 372.093 -93.0234 372.093 -93.0234zM108.023 590.697v-374.627 +c118.232 -10.001 190.768 -37.3496 232.558 -59.4189v374.628c-41.79 22.1621 -114.325 49.5117 -232.558 59.418zM666.163 216.07v374.627c-118.279 -9.90625 -190.814 -37.2559 -232.559 -59.418v-374.628c41.7441 22.0928 114.279 49.418 232.559 59.4189z" /> + <glyph glyph-name="glyph6" unicode="" +d="M15 218.604l372.093 -93.0234l372.093 93.0234v-93.0234l-372.093 -93.0225l-372.093 93.0225v93.0234zM15 404.651l372.093 -93.0234l372.093 93.0234v-93.0234l-372.093 -93.0234l-372.093 93.0234v93.0234zM15 590.697l372.093 93.0234l372.093 -93.0234v-93.0225 +l-372.093 -93.0234l-372.093 93.0234v93.0225z" /> + <glyph glyph-name="glyph7" unicode="" +d="M573.047 451.163c0 -102.744 -83.21 -186.047 -185.954 -186.047c0 51.3252 -41.6973 93.0234 -93.0234 93.0234h-93.1162c-92.9297 0 -185.953 52.3252 -185.953 186.046c0 136.629 93.0234 186.047 185.953 186.047h186.14 +c93.0234 0 185.954 -57.6514 185.954 -186.047v-93.0225zM294.069 451.163zM294.069 451.163zM619.186 446.209c75.2334 -14.5811 140 -67.3018 140 -181.093c0 -133.721 -93.0225 -186.047 -186.139 -186.047h-92.9307c-51.3252 0 -93.0234 -41.6045 -93.0234 -93.0225 +c-102.744 0 -186.14 83.3018 -186.14 186.046v93.0234c0 16.7207 1.81445 32.1162 4.72168 46.5117h88.3945c25.6279 0 46.5117 -20.8369 46.5117 -46.5117v-46.5117h46.5117c126.466 0 229.372 101.744 232.093 227.604z" /> + <glyph glyph-name="glyph8" unicode="" +d="M15 172.093l372.093 -93.0234l372.093 93.0234v-93.0234l-372.093 -93.0225l-372.093 93.0225v93.0234zM15 358.14l372.093 -93.0234l372.093 93.0234v-93.0234l-372.093 -93.0234l-372.093 93.0234v93.0234zM15 544.186l372.093 -93.0225l372.093 93.0225v-93.0225 +l-372.093 -93.0234l-372.093 93.0234v93.0225zM15 730.232l372.093 -93.0234l372.093 93.0234v-93.0234l-372.093 -93.0234l-372.093 93.0234v93.0234z" /> + <glyph glyph-name="glyph9" unicode="" +d="M573.14 637.209c102.651 0 186.046 -83.3945 186.046 -186.046s-83.3945 -186.047 -186.046 -186.047h-372.093c-102.605 0 -186.047 83.3955 -186.047 186.047s83.4414 186.046 186.047 186.046c8.30176 0 16.4414 -1.27832 24.6279 -2.37207 +c31.9297 56.6982 91.9297 95.3955 161.418 95.3955c68.0469 0 128 -38.3252 160.419 -95.5576c8.46484 1.09277 16.9072 2.53418 25.6279 2.53418zM573.14 358.14c51.2324 0 93.0234 41.791 93.0234 93.0234s-41.791 93.0225 -93.0234 93.0225 +s-93.0234 -41.79 -93.0234 -93.0225h-93.0234c0 60.5811 29.5352 113.906 74.4424 147.884c-17.1631 23.2559 -44.3262 38.1621 -74.4424 38.1621c-51.2783 0 -93.0234 -41.79 -93.0234 -93.0234c0 -11.2549 1.9541 -22.1621 5.81445 -32.5342l-87.1162 -32.5117 +c-7.62793 20.3486 -11.4424 41.791 -11.6279 63.7676c-47.9307 -1.44238 -93.1162 -40.6982 -93.1162 -91.7441c0 -51.2324 41.7441 -93.0234 93.0234 -93.0234h372.093zM433.651 125.581v-139.534h-93.0234v139.534h-93.0234l139.581 139.535l139.442 -139.535h-92.9766z +" /> + <glyph glyph-name="glyph10" unicode="" horiz-adv-x="728" +d="M353.006 278.559l-246 -246c-122.675 141.534 -122.675 350.465 0 492zM389.797 311.628l-301.86 299.953c83.0225 67.9541 185.86 111.559 301.86 118.651v-418.604zM435.587 636.837c157.466 -24.1621 277.116 -157.512 277.116 -322.116 +c0 -181.512 -145.256 -328.674 -327.069 -328.674c-74.0469 0 -139.279 25.0693 -193.419 64.8604l243.372 241.465v344.465z" /> + <glyph glyph-name="glyph11" unicode="" +d="M540.256 139.209l-60.1396 -60.1396v186.047h186.047l-60.1396 -60.1396l153.162 -153.162l-65.7666 -65.7676zM167.256 512.303l-152.256 152.162l65.7676 65.7676l152.256 -152.163l61.0459 59.1396l-0.90625 -185.046l-185.14 -1zM15 51.8145l153.163 153.162 +l-60.1396 60.1396h186.046v-186.047l-60.1387 60.1396l-153.163 -153.162zM666.884 451.163h-186.768v186.721l60.4189 -60.3486l152.697 152.697l65.9531 -66l-152.604 -152.697z" /> + <glyph glyph-name="glyph12" unicode="" +d="M573.14 637.209c102.651 0 186.046 -83.4883 186.046 -186.046c0 -102.559 -83.3945 -186.047 -186.046 -186.047h-139.535v-139.535h93.0234l-139.581 -139.534l-139.488 139.534h93.0225v139.535h-139.534c-102.605 0 -186.047 83.4883 -186.047 186.047 +c0 102.558 83.4414 186.046 186.047 186.046c8.30176 0 16.4414 -1.18555 24.6279 -2.27832c31.9297 56.5107 91.9297 95.3018 161.418 95.3018c68.0469 0 128 -38.2559 160.419 -95.6514c8.46484 1.25586 16.9072 2.62793 25.6279 2.62793zM573.14 358.14 +c51.2324 0 93.0234 41.6973 93.0234 93.0234c0 51.3252 -41.791 93.0225 -93.0234 93.0225s-93.0234 -41.6973 -93.0234 -93.0225h-93.0234c0 60.5811 29.5352 114 74.4424 147.977c-17.1631 23.1631 -44.3262 38.0693 -74.4424 38.0693 +c-51.2783 0 -93.0234 -41.6973 -93.0234 -93.0234c0 -11.1621 1.9541 -22.1621 5.81445 -32.4414l-87.1162 -32.6973c-7.62793 20.3486 -11.4424 41.9766 -11.6279 63.8604c-47.9307 -1.34863 -93.1162 -40.791 -93.1162 -91.7441 +c0 -51.3262 41.7441 -93.0234 93.0234 -93.0234h372.093z" /> + <glyph glyph-name="glyph13" unicode="" horiz-adv-x="681" +d="M270.813 -13.0469c-68.3486 0 -132.581 26.6982 -180.86 75.0469c-48.3252 48.3252 -74.9531 112.465 -74.9531 180.86c0.046875 68.3252 26.6279 132.535 74.9531 180.814l258.978 253.372c69.6279 69.6279 192.488 69.9062 262.721 -0.37207 +c72.4883 -72.582 72.4883 -190.582 0 -263.07l-233.023 -227.325c-44.8838 -44.8838 -118.651 -44.9766 -163.977 0.37207c-45.3262 45.418 -45.3262 119.14 0 164.465l90.209 90.209l65.7676 -65.7666l-90.209 -90.21 +c-5.9541 -5.95312 -6.81445 -12.8604 -6.81445 -16.4414c0 -3.58203 0.860352 -10.4883 6.81445 -16.4883c11.9062 -11.8145 20.9766 -11.8145 32.8838 0l232.93 227.372c35.8838 35.8369 35.8838 94.8369 -0.37207 131.14c-35.1631 35.1621 -96.3955 35.1621 -131.535 0 +l-258.977 -253.372c-30.3721 -30.3955 -47.3252 -71.2334 -47.3252 -114.698c0 -43.5117 16.9531 -84.3955 47.6973 -115.093c61.5117 -61.582 168.698 -61.582 230.187 0l116.279 116.279l65.7666 -65.7676l-116.278 -116.279 +c-48.3262 -48.3252 -112.535 -75.0469 -180.861 -75.0469z" /> + <glyph glyph-name="glyph14" unicode="❤" +d="M387.093 594.325c37.5117 52.6982 96.0234 89.3955 165.419 89.3955c114.023 0 206.674 -92.8369 206.674 -206.768v-17.0693l-371.906 -427.325l-372.279 427.325v17.0693c0 113.931 92.6514 206.768 206.675 206.768c69.3945 0 127.906 -36.6973 165.418 -89.3955z" /> + <glyph glyph-name="glyph15" unicode="✉" +d="M388.907 370.768l-373.907 175.604v90.8369h744.186v-91.1162zM389.093 267.931l370.093 175.232v-364.094h-744.186v364.651z" /> + <glyph glyph-name="glyph16" unicode="" +d="M704.675 675.721c72.6738 -72.6738 72.6738 -190.396 0 -263.069l-426.605 -426.604h-263.069l0.720703 263.813l425.884 425.86c72.5811 72.6748 190.488 72.6748 263.07 0zM238.559 79.0693c36.3486 36.3262 36.3252 95.9541 0 132.279 +c-36.3262 36.3262 -95.21 36.3262 -131.535 0v-132.279h131.535zM637.186 478.419c36.3262 36.3252 36.3262 95.209 0 131.534c-36.3252 36.3262 -95.209 36.3262 -131.534 0z" /> + <glyph glyph-name="glyph17" unicode="✘" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM329.419 186.441l289.395 289.419l-65.7666 65.7676l-223.651 -223.651l-105.419 105.465 +l-65.7676 -65.7666z" /> + <glyph glyph-name="glyph18" unicode="" +d="M666.163 451.163h93.0225v-186.047h-93.0225v-46.5117c0 -25.6279 -20.8838 -46.5117 -46.5117 -46.5117h-558.14c-25.6279 0 -46.5117 20.8838 -46.5117 46.5117v92.0234h148.535c19.1621 -54.0469 70.3252 -93.0234 131 -93.0234v47.5117h94.5576v46.5117h-94.5576 +v93.0234h92.6504v46.5117h-92.6504v45.5117c-60.6982 0 -111.838 -38.9775 -131 -93.0234h-148.535v94.0234c0 25.5811 20.8838 46.5107 46.5117 46.5107h558.14c25.6279 0 46.5117 -20.9297 46.5117 -46.5107v-46.5117z" /> + <glyph glyph-name="glyph19" unicode="" horiz-adv-x="588" +d="M340.581 730.232c128.187 0 232.559 -104.279 232.559 -232.558v-372.094c0 -76.9531 -62.5811 -139.534 -139.535 -139.534h-279.069c-76.9541 0 -139.535 62.5811 -139.535 139.534v325.582h93.1162v46.5117c0 128.278 104.372 232.558 232.465 232.558z +M293.977 172.093c25.7207 0 46.5117 20.8145 46.5117 46.5117c0 25.6982 -20.8135 46.5117 -46.5117 46.5117c-25.6045 0 -46.418 -20.8135 -46.418 -46.5117c0 -25.6973 20.8135 -46.5117 46.418 -46.5117zM480.116 451.163v46.5117 +c0 76.9531 -62.5811 139.534 -139.535 139.534c-76.8604 0 -139.441 -62.5811 -139.441 -139.534v-46.5117h278.977z" /> + <glyph glyph-name="glyph20" unicode="" +d="M15 -13.9531v744.186h744.186v-744.186h-744.186z" /> + <glyph glyph-name="glyph21" unicode="↑" +d="M15 358.512l372.14 371.721l372.046 -371.721l-131.93 -131.907l-146.977 146.977v-387.534h-186.535v387.534c-72.8369 -72.8369 -146.837 -146.79 -146.837 -146.79z" /> + <glyph glyph-name="glyph22" unicode="" +d="M294.069 311.628h-139.534v-93.0234l-139.535 139.535l139.535 139.535v-93.0234h139.534v-93.0234zM480.116 404.651h139.535v93.0234l139.534 -139.535l-139.534 -139.535v93.0234h-139.535v93.0234z" /> + <glyph glyph-name="glyph23" unicode="" +d="M387.093 637.209c-153.884 0 -279.069 -125.186 -279.069 -279.069s125.186 -279.07 279.069 -279.07s279.07 125.187 279.07 279.07s-125.187 279.069 -279.07 279.069zM387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093 +s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM436.512 407.465c-17.9072 17.9072 -42.8838 22.8604 -65.7676 17.21l202.396 119.511l-119.907 -205.162c6.7207 23.5576 1.81445 49.8604 -16.7207 68.4414z +M337.86 308.814c18.6279 -18.6289 44.9531 -23.5352 68.5811 -16.7217l-205.395 -120l119.558 202.675c-5.62793 -22.9307 -0.720703 -48.0234 17.2559 -65.9531z" /> + <glyph glyph-name="glyph24" unicode="" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM573.14 311.628v93.0234h-372.093v-93.0234h372.093z" /> + <glyph glyph-name="glyph25" unicode="" +d="M759.186 451.163v-186.047h-93.0225v-46.5117c0 -25.5352 -20.8838 -46.5117 -46.5117 -46.5117h-558.14c-25.6279 0 -46.5117 20.9766 -46.5117 46.5117v279.07c0 25.5342 20.8838 46.5107 46.5117 46.5107h558.14c25.6279 0 46.5117 -20.9766 46.5117 -46.5107 +v-46.5117h93.0225zM573.14 265.116v186.047h-465.116v-186.047h465.116z" /> + <glyph glyph-name="glyph26" unicode="" +d="M15 218.604v232.559c0 128.441 104.116 232.558 232.559 232.558h232.558c154.163 0 279.069 -125 279.069 -279.069c0 -154.07 -124.906 -279.07 -279.069 -279.07h-186.047c-51.3252 0 -93.0225 -41.6045 -93.0225 -93.0225 +c-102.651 0 -186.047 83.3018 -186.047 186.046z" /> + <glyph glyph-name="glyph27" unicode="" horiz-adv-x="402" +d="M201.047 730.232c102.744 0 186.046 -83.3018 186.046 -186.047c0 -102.744 -186.046 -558.139 -186.046 -558.139s-186.047 455.395 -186.047 558.139c0 102.745 83.3027 186.047 186.047 186.047zM201.047 451.163c51.3721 0 93.0225 41.6514 93.0225 93.0225 +c0 51.373 -41.6504 93.0234 -93.0225 93.0234s-93.0234 -41.6504 -93.0234 -93.0234c0 -51.3711 41.6514 -93.0225 93.0234 -93.0225z" /> + <glyph glyph-name="question" unicode="?" horiz-adv-x="402" +d="M238.256 32.5586c0 -25.6279 -20.8145 -46.5117 -46.5117 -46.5117s-46.5117 20.8838 -46.5117 46.5117c0 25.79 20.8145 46.5107 46.5117 46.5107s46.5117 -20.7207 46.5117 -46.5107zM193.512 126.116c-31.0703 0 -60.2324 12.1631 -82.209 34.1631 +c-21.9775 25.6973 -34.0703 54.8604 -34.0703 85.9297c0 31.0703 12.0928 60.2324 34.0703 78.3955l155.534 155.535c17.5586 17.6279 27.2324 40.9766 27.2324 65.7676c0 24.8838 -9.67383 48.2324 -27.2559 65.7676c-36.2549 36.2559 -95.2549 36.3252 -131.488 0 +c-17.6279 -17.5352 -27.3018 -40.8604 -27.3018 -65.7676h-93.0234c0 49.6973 19.3955 96.4648 54.6045 131.628c70.2324 70.3018 192.675 70.2324 263 -0.09375c35.1396 -35.0459 54.4883 -81.7441 54.4883 -131.534c0 -49.6982 -19.3486 -96.3955 -54.5117 -131.535 +l-155.534 -151.697c-9.04688 -9.09375 -9.04688 -23.791 0 -32.8838c9.09277 -9.09375 23.79 -9.09375 32.8838 0c5.90625 6 6.81348 12.9062 6.81348 16.5342h93.0234c0 -31.0693 -12.0928 -60.3252 -34.0703 -86.0225c-21.9531 -22 -51.1162 -34.1865 -82.1855 -34.1865z +" /> + <glyph glyph-name="glyph29" unicode="" +d="M15 637.209c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM15 451.163c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117 +s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM15 265.116c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM15 79.0693 +c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117c0 -31.0068 -15.5039 -46.5107 -46.5117 -46.5107s-46.5117 15.5039 -46.5117 46.5107zM201.047 590.697v93.0234h558.139v-93.0234h-558.139zM201.047 404.651v93.0234h558.139v-93.0234 +h-558.139zM201.047 218.604v93.0234h558.139v-93.0234h-558.139zM201.047 32.5586v93.0225h558.139v-93.0225h-558.139z" /> + <glyph glyph-name="glyph30" unicode="" horiz-adv-x="588" +d="M15 623.907v106.325h558.14v-106.325h-558.14zM201.047 411.279h-93.0234l185.768 212.628l186.325 -212.628h-93.0234v-425.232h-186.046v425.232z" /> + <glyph glyph-name="glyph31" unicode="" horiz-adv-x="588" +d="M480.116 311.628h93.0234c0 -154.163 -125 -279.069 -279.07 -279.069c-154.069 0 -279.069 124.906 -279.069 279.069s125 279.069 279.069 279.069h55.2334l-27.4424 27.2559l65.7676 65.7676l139.813 -139.535l-139.813 -139.977l-65.7676 65.7676l27.0703 27.0703 +l-54.8613 0.62793c-102.65 0 -186.046 -83.4893 -186.046 -186.047c0 -102.559 83.3955 -186.047 186.046 -186.047c102.651 0 186.047 83.4883 186.047 186.047z" /> + <glyph glyph-name="glyph32" unicode="" +d="M666.163 311.628h93.0225c0 -76.8604 -62.5811 -139.535 -139.534 -139.535h-418.791v-93.0234l-185.86 139.535l185.86 139.535v-93.0234h418.791c25.6279 0 46.5117 20.8838 46.5117 46.5117zM154.535 451.163c-25.6279 0 -46.5117 -20.8838 -46.5117 -46.5117 +h-93.0234c0 77.0234 62.5811 139.534 139.535 139.534h418.604v93.0234l186.046 -139.534l-186.046 -139.535v93.0234h-418.604z" /> + <glyph glyph-name="glyph33" unicode="" +d="M666.163 358.14h93.0225v-46.5117c0 -76.8604 -62.5811 -139.535 -139.534 -139.535h-325.675l0.0927734 -93.0234l-186.046 139.535l186.046 139.535l-0.0927734 -93.0234h325.675c25.6279 0 46.5117 20.8838 46.5117 46.5117v46.5117zM108.023 404.651v-46.5117 +h-93.0234v46.5117c0 77.0234 62.5811 139.534 139.535 139.534h325.581v93.0234l185.86 -139.534l-185.86 -139.535v93.0234h-325.581c-25.6279 0 -46.5117 -20.8145 -46.5117 -46.5117z" /> + <glyph glyph-name="glyph34" unicode="" +d="M478.837 218.604l139.722 186.047l140.627 -186.047h-93.0225v-46.5117c0 -76.9531 -62.582 -139.534 -139.535 -139.534h-279.069c-76.9541 0 -139.535 62.5811 -139.535 139.534v46.5117h93.0234v-46.5117c0 -25.6279 20.8838 -46.5117 46.5117 -46.5117h279.069 +c25.6279 0 46.5117 20.8838 46.5117 46.5117v46.5117h-94.3027zM295.349 497.675l-139.721 -186.047l-140.628 186.047h93.0234v46.5107c0 76.9541 62.5811 139.535 139.535 139.535h279.069c76.9531 0 139.535 -62.5811 139.535 -139.535v-46.5107h-93.0234v46.5107 +c0 25.6289 -20.8838 46.5117 -46.5117 46.5117h-279.069c-25.6279 0 -46.5117 -20.8828 -46.5117 -46.5117v-46.5107h94.3018z" /> + <glyph glyph-name="glyph35" unicode="" +d="M619.651 358.14l139.534 -139.535h-93.0225c0 -76.9531 -62.582 -139.535 -139.535 -139.535h-279.069c-76.9541 0 -139.535 62.582 -139.535 139.535v46.5117h93.0234v-46.5117c0 -25.6279 20.8838 -46.5117 46.5117 -46.5117h279.069 +c25.6279 0 46.5117 20.8838 46.5117 46.5117h-93.0234zM526.628 637.209c76.9531 0 139.535 -62.5811 139.535 -139.534v-46.5117h-93.0234v46.5117c0 25.6279 -20.8838 46.5107 -46.5117 46.5107h-279.069c-25.6279 0 -46.5117 -20.8828 -46.5117 -46.5107v-1.44238 +h93.0225l-139.534 -138.093l-139.535 138.093h93.0234v1.44238c0 76.9531 62.5811 139.534 139.535 139.534h279.069z" /> + <glyph glyph-name="glyph36" unicode="❝" +d="M759.186 79.0693h-279.069v279.07c0 153.884 125.187 279.069 279.069 279.069v-93.0234c-102.65 0 -186.046 -83.4883 -186.046 -186.046h186.046v-279.07zM294.069 79.0693h-279.069v279.07c0 153.884 125.187 279.069 279.069 279.069v-93.0234 +c-102.65 0 -186.046 -83.4883 -186.046 -186.046h186.046v-279.07z" /> + <glyph glyph-name="glyph37" unicode="✓" horiz-adv-x="681" +d="M666.163 162.837l-130.279 -130.278l-195.303 195.395l-195.395 -195.395l-130.187 130.278l195.303 195.303l-195.303 195.302l130.187 130.279l195.395 -195.396l195.303 195.396l130.279 -130.279l-195.488 -195.302z" /> + <glyph glyph-name="glyph38" unicode="" +d="M15 730.232l558.14 -372.093l-558.14 -372.093v744.186zM573.14 79.0693v558.14h186.046v-558.14h-186.046z" /> + <glyph glyph-name="glyph39" unicode="" +d="M573.14 -13.9531v744.186h186.046v-744.186h-186.046zM294.069 -13.9531v558.139h186.047v-558.139h-186.047zM15 -13.9531v372.093h186.047v-372.093h-186.047z" /> + <glyph glyph-name="glyph40" unicode="←" +d="M386.721 -13.9531l-371.721 372.093l371.721 372.093l131.907 -131.93l-146.791 -146.978h387.349v-186.581h-387.349c72.8379 -72.8369 146.791 -146.791 146.791 -146.791z" /> + <glyph glyph-name="glyph41" unicode="↓" +d="M759.186 357.768l-372.093 -371.721l-372.093 371.721l131.931 131.907l146.977 -146.978v387.535h186.581v-387.535c72.8369 72.8379 146.791 146.791 146.791 146.791z" /> + <glyph glyph-name="glyph42" unicode="" horiz-adv-x="588" +d="M15 -13.9531v106.278h558.14v-106.278h-558.14zM387.093 305h93.0234l-185.768 -212.675l-186.325 212.675h93.0234v425.232h186.046v-425.232z" /> + <glyph glyph-name="glyph43" unicode="⌂" +d="M387.093 730.232l372.093 -372.093h-93.0225v-372.093h-558.14v372.093h-93.0234zM573.14 79.0693v333.582l-186.047 131.534l-186.046 -131.534v-333.582h139.534v139.535h93.0234v-139.535h139.535z" /> + <glyph glyph-name="glyph44" unicode="" +d="M571.232 637.209h187.953v-93.0234h-187.953h-93.0234h-186.046h-93.0234h-184.14v93.0234h184.14v93.0234h93.0234v-93.0234h186.046v93.0234h93.0234v-93.0234zM108.023 172.093v93.0234h558.14v-93.0234h-558.14zM108.023 358.14v93.0234h558.14v-93.0234h-558.14z +M573.14 -13.9531h-465.116v93.0225h558.14z" /> + <glyph glyph-name="glyph45" unicode="" +d="M15 637.209h279.069v-279.069l-279.069 -279.07v558.14zM480.116 637.209h279.069v-279.069l-279.069 -279.07v558.14z" /> + <glyph glyph-name="glyph46" unicode="" horiz-adv-x="588" +d="M340.675 730.232c128.093 0 232.465 -104.279 232.465 -232.558v-372.094c0 -76.9531 -62.6748 -139.534 -139.535 -139.534h-279.069c-76.8604 0 -139.535 62.5811 -139.535 139.534v325.582h465.116v46.5117c0 76.9531 -62.5811 139.534 -139.441 139.534 +c-77.0234 0 -139.535 -62.5811 -139.535 -139.534h-92.9307c0 128.278 104.187 232.558 232.466 232.558zM293.977 172.093c25.791 0 46.5117 20.8145 46.5117 46.5117c0 25.6982 -20.7207 46.5117 -46.5117 46.5117c-25.6279 0 -46.5117 -20.8135 -46.5117 -46.5117 +c0 -25.6973 20.8838 -46.5117 46.5117 -46.5117z" /> + <glyph glyph-name="glyph47" unicode="" +d="M652.535 158.465l106.65 106.651v-279.069h-279.069l106.651 106.65l-106.651 106.651l65.7676 65.7676zM294.069 730.232l-106.65 -106.651l105.65 -105.558l-65.7666 -65.7676l-105.651 105.559l-106.651 -106.651v279.069h279.069zM294.069 199.349l-106.65 -106.651 +l106.65 -106.65h-279.069v279.069l106.651 -106.651l106.651 106.651zM759.186 730.232v-279.069l-106.65 106.651l-105.651 -105.559l-65.7676 65.7676l105.651 105.558l-106.651 106.651h279.069z" /> + <glyph glyph-name="glyph48" unicode="" +d="M294.069 360.14c0 62.0156 31.0078 93.0234 93.0234 93.0234s93.0234 -31.0078 93.0234 -93.0234s-31.0078 -93.0234 -93.0234 -93.0234s-93.0234 31.0078 -93.0234 93.0234zM679.069 587.604c53.4111 -67.583 80.1162 -143.404 80.1162 -227.465 +c0 -67.3809 -16.5986 -129.644 -49.7949 -186.787c-33.1973 -57.1436 -78.3672 -102.313 -135.511 -135.511c-57.1436 -33.1963 -119.406 -49.7949 -186.787 -49.7949s-129.644 16.5986 -186.787 49.7949c-57.1436 33.1973 -102.313 78.3672 -135.511 135.511 +c-33.1963 57.1436 -49.7949 119.406 -49.7949 186.787c0 82.9883 26.248 158.446 78.7441 226.372c8.68848 -6.54297 17.8047 -9.81445 27.3486 -9.81445c12.8955 0 23.8711 4.52832 32.9277 13.584c9.05566 9.05664 13.584 20.0322 13.584 32.9277 +c0 9.53809 -3.35645 18.7471 -10.0693 27.6279c53.9434 42.7354 115.261 68.5342 183.953 77.3955c1.05371 -11.9824 5.91895 -22.0635 14.5957 -30.2432c8.67578 -8.17871 19.0127 -12.2686 31.0088 -12.2686c11.958 0 22.249 4.03418 30.8721 12.1016 +c8.62207 8.06836 13.5332 18.0264 14.7324 29.875c67.4736 -8.38184 128.218 -33.3975 182.232 -75.0459c-7.50293 -9.13965 -11.2549 -18.9541 -11.2549 -29.4424c0 -12.8809 4.54395 -23.8516 13.6309 -32.9131c9.08789 -9.06543 20.0479 -13.5986 32.8799 -13.5986 +c10.3545 0 19.9824 3.63574 28.8838 10.9072zM387.093 174.093c51.3828 0 95.2363 18.1562 131.561 54.4678s54.4863 80.1709 54.4863 131.579c0 51.4746 -18.2324 95.3818 -54.6982 131.721l-131.349 131.349l-131.534 -131.534 +c-36.3408 -36.3408 -54.5117 -80.1865 -54.5117 -131.535c0 -51.3721 18.165 -95.2227 54.4941 -131.553c36.3291 -36.3291 80.1797 -54.4941 131.552 -54.4941z" /> + <glyph glyph-name="glyph49" unicode="" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM573.14 311.628v93.0234h-139.535v139.534h-93.0234v-139.534h-139.534v-93.0234h139.534 +v-139.535h93.0234v139.535h139.535z" /> + <glyph glyph-name="glyph50" unicode="" +d="M387.093 637.209c-153.884 0 -279.069 -125.186 -279.069 -279.069s125.186 -279.07 279.069 -279.07s279.07 125.187 279.07 279.07s-125.187 279.069 -279.07 279.069zM387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093 +s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM513.187 298.187l-65.7676 -65.7676l-91.21 91.209c-9.7207 8.62793 -16.1621 20.6973 -16.1621 34.6973v185.86h93.5576v-166.325z" /> + <glyph glyph-name="glyph51" unicode="" +d="M665.628 544.186l93.5576 93.0234l-91.209 93.0234h91.209v-744.186h-744.186v744.186h93.3955l93.3721 -93.3955l-94.4648 -92.6514h93.209l95 93.3955l-92.6514 92.6514h131.535l93.3018 -93.3955l-94.3945 -92.6514h109.837l95.0234 93.3955l-92.7441 92.6514h129.441 +l91.3027 -93.3955l-92.3721 -92.6514h91.8369zM666.163 80.0693v93.0234h-558.14v-93.0234h558.14zM666.163 265.116v93.0234h-558.14v-93.0234h558.14z" /> + <glyph glyph-name="glyph52" unicode="" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM387.093 637.209c-121.093 0 -223.372 -78 -262 -186.046h524 +c-38.6279 108.046 -140.906 186.046 -262 186.046zM387.093 311.628c25.6982 0 46.5117 20.8135 46.5117 46.5117c0 25.6973 -20.8135 46.5117 -46.5117 46.5117c-25.6973 0 -46.5117 -20.8145 -46.5117 -46.5117c0 -25.6982 20.8145 -46.5117 46.5117 -46.5117z +M108.023 358.14c0 -137.814 100.651 -251.814 232.186 -274.349c-2.16211 151.884 -105.093 274.349 -232.186 274.349zM433.977 83.791c131.535 22.5342 232.187 136.534 232.187 274.349c-127.094 0 -230.023 -122.465 -232.187 -274.349z" /> + <glyph glyph-name="glyph53" unicode="✎" +d="M704.675 675.721c72.6738 -72.6738 72.6738 -190.396 0 -263.069l-426.605 -426.604h-263.069l0.720703 263.813l425.884 425.86c36.3262 36.3486 83.9307 54.5117 131.535 54.5117c47.6973 0 95.3018 -18.1631 131.535 -54.5117zM239.559 79.0693l399.349 399.35 +l-131.535 131.534l-398.721 -398.79l-0.0927734 -39.0703h92.4883v-93.0234h38.5117z" /> + <glyph glyph-name="glyph54" unicode="" +d="M759.186 544.186c0 -69.9062 -39.0693 -130.093 -96.1162 -161.883c0.745117 -7.86133 2.37207 -15.3955 2.37207 -23.4424c0 -154.163 -124.906 -279.069 -279.069 -279.069c-57.5117 0 -110.931 17.4414 -155.349 47.2324l-216.023 -140.977l141.604 214.744 +c-30.9766 44.8838 -49.3252 99.3018 -49.3252 158.069c0 154.163 124.907 279.07 279.069 279.07c8.7207 0 17 -1.76758 25.5352 -2.58203c0 -0.0458984 -0.0927734 -0.0927734 -0.0927734 -0.139648c32 56.4658 91.9531 95.0234 161.349 95.0234 +c102.651 0 186.046 -83.3486 186.046 -186.047zM386.372 172.814c102.372 0 185.581 83.0459 185.953 185.418c-16.6279 0.0927734 -32.5342 3 -47.8838 7.18652l-73.0459 -73.0469c-36.3262 -36.3252 -95.209 -36.3252 -131.535 0 +c-36.3252 36.3252 -36.3252 95.209 0 131.535l73.7676 73.8135c-3.81348 14.9541 -6.53516 30.3027 -6.53516 46.4648c0 0.373047 0.0927734 0.72168 0.0927734 1.09375c0 -0.139648 -0.0927734 -0.279297 -0.0927734 -0.464844 +c-0.185547 0 -0.441406 0.0927734 -0.720703 0.0927734c-102.651 0 -186.047 -83.4424 -186.047 -186.047c0 -102.651 83.3955 -186.046 186.047 -186.046zM573.14 451.163c51.2324 0 93.0234 41.7441 93.0234 93.0225c0 51.2793 -41.791 93.0234 -93.0234 93.0234 +s-93.0234 -41.7441 -93.0234 -93.0234c0 -51.2783 41.791 -93.0225 93.0234 -93.0225z" /> + <glyph glyph-name="glyph55" unicode="⛔" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM387.093 637.209c-153.884 0 -279.069 -125.186 -279.069 -279.069 +c0 -60.1396 19.5352 -115.559 52.0459 -161.163l388.279 388.093c-45.6045 32.5117 -101.023 52.1396 -161.256 52.1396zM387.093 79.0693c153.884 0 279.07 125.187 279.07 279.07c0 60.1396 -19.5352 115.558 -52.0469 161.163l-388.279 -388.094 +c45.6045 -32.5117 101.023 -52.1396 161.256 -52.1396z" /> + <glyph glyph-name="glyph56" unicode="" +d="M759.186 79.0693h-279.069v279.07l279.069 279.069v-558.14zM294.069 79.0693h-279.069v279.07l279.069 279.069v-558.14z" /> + <glyph glyph-name="glyph57" unicode="" +d="M201.047 172.093c-102.744 0 -186.047 83.3027 -186.047 186.047s83.3027 186.046 186.047 186.046v-372.093zM294.069 544.186l186.047 93.0234v-558.14l-186.047 93.0234v372.093zM759.186 311.628h-186.046v93.0234h186.046v-93.0234z" /> + <glyph glyph-name="glyph58" unicode="☂" +d="M387.093 730.232c205.21 0 372.093 -166.93 372.093 -372.093h-93.0225c0 19.209 -15.6279 34.8838 -34.8838 34.8838c-19.1631 0 -34.8838 -15.6748 -34.8838 -34.8838h-93.0234c0 19.209 -15.6279 34.8838 -34.8838 34.8838 +c-19.1631 0 -34.8838 -15.6748 -34.8838 -34.8838v-232.559c0 -76.9531 -62.5117 -139.534 -139.535 -139.534c-76.8604 0 -139.534 62.5811 -139.534 139.534h93.0234c0 -25.6279 20.8828 -46.5117 46.5107 -46.5117c25.6982 0 46.5117 20.8838 46.5117 46.5117v232.559 +c0 19.209 -15.6279 34.8838 -34.8838 34.8838c-19.1621 0 -34.8838 -15.6748 -34.8838 -34.8838h-93.0225c0 19.209 -15.6279 34.8838 -34.8838 34.8838c-19.1631 0 -34.8838 -15.6748 -34.8838 -34.8838h-93.0234c0 205.163 166.977 372.093 372.093 372.093z" /> + <glyph glyph-name="glyph59" unicode="" +d="M15 637.209c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM201.047 590.697v93.0234h558.139v-93.0234h-558.139zM201.047 451.163 +c0 31.0078 15.5039 46.5117 46.5117 46.5117c31.0068 0 46.5107 -15.5039 46.5107 -46.5117s-15.5039 -46.5117 -46.5107 -46.5117c-31.0078 0 -46.5117 15.5039 -46.5117 46.5117zM387.093 404.651v93.0234h372.093v-93.0234h-372.093zM201.047 79.0693 +c0 31.0078 15.5039 46.5117 46.5117 46.5117c31.0068 0 46.5107 -15.5039 46.5107 -46.5117c0 -31.0068 -15.5039 -46.5107 -46.5107 -46.5107c-31.0078 0 -46.5117 15.5039 -46.5117 46.5107zM387.093 32.5586v93.0225h372.093v-93.0225h-372.093zM387.093 265.116 +c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM573.14 218.604v93.0234h186.046v-93.0234h-186.046z" /> + <glyph glyph-name="glyph60" unicode="" +d="M15 358.14c0 205.535 166.604 372.093 372.186 372.093c205.396 0 372 -166.558 372 -372.093c0 -205.488 -166.604 -372.093 -372 -372.093c-205.581 0 -372.186 166.604 -372.186 372.093zM573.14 358.86l-185.954 185.372l-185.418 -185.372h138.813v-186.768h93.0234 +v186.768h139.535z" /> + <glyph glyph-name="glyph61" unicode="" +d="M669.791 643.768c57.6045 -57.6748 89.3945 -134.349 89.3945 -217.884c0 -79.6279 -31.79 -156.303 -89.3945 -214.116l-70.1396 -69.9531l-65.7676 65.7666l70.1396 70.0938c40.0693 40.1621 62.1396 93.3945 62.1396 148.209 +c0 58.6514 -22.0703 111.884 -62.1396 151.931c-80.1162 80.3018 -219.838 80.3018 -299.954 0.0927734l-126.813 -128.768h116.813v-91.1631h-279.069v279.232h93.0234v-123.697l130.163 130.256c115.209 115.372 316.325 115.279 431.604 0zM444.047 -13.9766 +l-65.7676 65.9531l65.7676 65.7676l65.7676 -65.7676z" /> + <glyph glyph-name="glyph62" unicode="" horiz-adv-x="588" +d="M15 -13.9531v744.186h186.047v-744.186h-186.047zM387.093 -13.9531v744.186h186.047v-744.186h-186.047z" /> + <glyph glyph-name="glyph63" unicode="⚡" +d="M759.186 730.232l-325.581 -372.093l139.535 -93.0234l-558.14 -279.069l325.581 279.069l-139.534 93.0234z" /> + <glyph glyph-name="glyph64" unicode="" +d="M759.186 637.209h-744.186v93.0234h744.186v-93.0234zM480.116 451.163h-465.116v93.0225h465.116v-93.0225zM759.186 172.093h-744.186v93.0234h744.186v-93.0234zM573.14 -13.9531h-558.14v93.0225h558.14v-93.0225zM759.186 32.5586 +c0 -25.6982 -20.8828 -46.5117 -46.5107 -46.5117c-25.791 0 -46.6055 20.8135 -46.6055 46.5117c0 25.6973 20.8145 46.5107 46.6055 46.5107c25.6279 0 46.5107 -20.8135 46.5107 -46.5107z" /> + <glyph glyph-name="glyph65" unicode="" +d="M759.186 637.209h-744.186v93.0234h744.186v-93.0234zM480.116 451.163h-465.116v93.0225h465.116v-93.0225zM759.186 263.116h-744.186v93.0234h744.186v-93.0234zM15 32.5586c0 31.0068 15.5039 46.5107 46.5117 46.5107s46.5117 -15.5039 46.5117 -46.5107 +c0 -31.0078 -15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM294.069 32.5586c0 -12.8408 -4.5459 -23.8027 -13.6396 -32.8867c-9.0918 -9.08301 -20.0498 -13.625 -32.8711 -13.625c-12.8906 0 -23.8809 4.53809 -32.9707 13.6152 +s-13.6348 20.043 -13.6348 32.8965s4.54492 23.8184 13.6348 32.8955s20.0801 13.6152 32.9707 13.6152c12.8223 0 23.7793 -4.54199 32.8711 -13.625c9.09375 -9.08301 13.6396 -20.0449 13.6396 -32.8857zM387.093 32.5586c0 31.0068 15.5039 46.5107 46.5117 46.5107 +s46.5117 -15.5039 46.5117 -46.5107c0 -31.0078 -15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117z" /> + <glyph glyph-name="glyph66" unicode="" horiz-adv-x="402" +d="M340.581 730.232c25.6982 0 46.5117 -20.8135 46.5117 -46.5117v-511.628c0 -102.744 -83.3018 -186.046 -186.046 -186.046s-186.047 83.3018 -186.047 186.046v511.628c0 25.6982 20.8135 46.5117 46.5117 46.5117h279.069zM247.559 172.093 +c25.6973 0 46.5107 20.8145 46.5107 46.5117c0 25.6982 -20.8135 46.5117 -46.5107 46.5117c-25.6982 0 -46.5117 -20.8135 -46.5117 -46.5117c0 -25.6973 20.8135 -46.5117 46.5117 -46.5117zM294.069 358.14v279.069h-186.046v-279.069h46.7207 +c0.348633 25.6973 21.2559 46.5117 47.0469 46.5117c25.79 0 46.6738 -20.8145 47.0459 -46.5117h45.2324z" /> + <glyph glyph-name="glyph67" unicode="" horiz-adv-x="402" +d="M201.768 520.931c0 15.0225 7.51172 22.5342 22.5352 22.5342c15.0225 0 22.5342 -7.51172 22.5342 -22.5342c0 -15.0234 -7.51172 -22.5352 -22.5342 -22.5352c-15.0234 0 -22.5352 7.51172 -22.5352 22.5352zM340.581 730.232 +c12.8486 0 23.8135 -4.54004 32.8926 -13.6191s13.6191 -20.043 13.6191 -32.8926v-511.628c0 -51.3721 -18.165 -95.2227 -54.4941 -131.552s-80.1797 -54.4941 -131.552 -54.4941s-95.2227 18.165 -131.553 54.4941c-36.3291 36.3291 -54.4941 80.1797 -54.4941 131.552 +v511.628c0 12.8496 4.54004 23.8135 13.6191 32.8926s20.043 13.6191 32.8926 13.6191h279.069zM132 265.116c6.2207 0 11.5322 2.2002 15.9336 6.60156s6.60156 9.71289 6.60156 15.9336s-2.2002 11.5312 -6.60156 15.9326s-9.71289 6.60156 -15.9336 6.60156 +s-11.5322 -2.2002 -15.9336 -6.60156s-6.60156 -9.71191 -6.60156 -15.9326s2.2002 -11.5322 6.60156 -15.9336s9.71289 -6.60156 15.9336 -6.60156zM247.559 172.093c12.8486 0 23.8125 4.54004 32.8916 13.6191c9.0791 9.08008 13.6191 20.0439 13.6191 32.8926 +s-4.54004 23.8135 -13.6191 32.8926s-20.043 13.6191 -32.8916 13.6191c-12.8496 0 -23.8135 -4.54004 -32.8926 -13.6191s-13.6191 -20.0439 -13.6191 -32.8926s4.54004 -23.8125 13.6191 -32.8926c9.0791 -9.0791 20.0439 -13.6191 32.8926 -13.6191zM294.069 358.14 +v279.069h-186.046v-279.069h46.7207c0.174805 12.8652 4.83984 23.834 13.9951 32.9053c9.15625 9.07129 20.1729 13.6064 33.0518 13.6064c12.875 0 23.8887 -4.53516 33.04 -13.6045c9.15039 -9.07031 13.8193 -20.0391 14.0059 -32.9072h45.2324z" /> + <glyph glyph-name="glyph68" unicode="" +d="M759.186 451.163v-186.047h-93.0225v-46.5117c0 -25.6279 -20.8838 -46.5117 -46.5117 -46.5117h-558.14c-25.6279 0 -46.5117 20.8838 -46.5117 46.5117v279.07c0 25.5342 20.8838 46.5107 46.5117 46.5107h558.14c25.6279 0 46.5117 -20.9766 46.5117 -46.5107 +v-46.5117h93.0225z" /> + <glyph glyph-name="glyph69" unicode="→" +d="M387.465 730.232l371.721 -372.093l-371.721 -372.093l-131.906 131.93l146.883 146.884h-387.441v186.675h387.441l-146.79 146.79z" /> + <glyph glyph-name="glyph70" unicode="" horiz-adv-x="588" +d="M387.093 730.232c102.744 0 186.047 -83.3018 186.047 -186.047v-372.093c0 -102.744 -83.3027 -186.046 -186.047 -186.046h-186.046c-102.744 0 -186.047 83.3018 -186.047 186.046v372.093c0 102.745 83.3027 186.047 186.047 186.047h186.046zM294.069 31.1162 +c26.4893 0 47.9541 21.4424 47.9541 47.9531c0 26.5117 -21.4883 47.9541 -47.9541 47.9541c-26.4648 0 -47.9531 -21.4424 -47.9531 -47.9541c0 -26.5107 21.4648 -47.9531 47.9531 -47.9531zM480.116 172.093v372.093c0 51.2334 -41.791 93.0234 -93.0234 93.0234 +h-186.046c-51.2793 0 -93.0234 -41.79 -93.0234 -93.0234v-372.093h372.093z" /> + <glyph glyph-name="glyph71" unicode="" +d="M759.186 358.14c0 -205.488 -166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093s372.093 -166.604 372.093 -372.093zM294.069 218.604l93.0234 -93.0234l93.0234 93.0234h-46.5117v372.093h-93.0234v-372.093 +h-46.5117z" /> + <glyph glyph-name="glyph72" unicode="⚙" +d="M759.186 312.349l-111.209 -47.418c-3.09277 -8.62793 -6.2793 -17.0938 -10.1855 -25.4424l45.79 -111l-65.7666 -65.7676l-111.559 44.6982c-8.34863 -4 -17.0703 -7.44238 -25.8838 -10.7217l-46.0469 -110.65h-93.0225l-47.0469 110.093 +c-9.25586 3.18555 -18.2559 6.53516 -27.0703 10.7207l-109.837 -45.2324l-65.7676 65.7676l44.2324 110.279c-4.34863 9 -7.97656 18.1855 -11.3486 27.6279l-109.465 45.6045v93.0234l109.372 46.7666c3.37207 9.46582 6.90723 18.6279 11.2793 27.6279l-45.0703 109.559 +l65.7676 65.7676l110.559 -44.4189c8.81348 4.18652 17.7207 7.62793 26.9766 10.9072l45.9766 110.093h93.0234l47.1396 -110.465c8.90723 -3.18652 17.5352 -6.62793 25.9766 -10.7207l110.744 45.6045l65.791 -65.7676l-44.8838 -111.744 +c4 -8.2793 7.25586 -16.7207 10.3486 -25.4424l111.186 -46.3252v-93.0234zM386.372 218.604c77.0234 0 139.535 62.5117 139.535 139.535s-62.5117 139.535 -139.535 139.535s-139.535 -62.5117 -139.535 -139.535s62.5117 -139.535 139.535 -139.535z" /> + <glyph glyph-name="glyph73" unicode="" horiz-adv-x="402" +d="M201.047 265.116c32.79 0 63.7666 6.7207 93.0225 17.1162v-296.186l-93.0225 93.0225l-93.0234 -93.0225v296.186c29.2559 -10.3955 60.2324 -17.1162 93.0234 -17.1162zM15 544.186c0 124.031 62.0156 186.047 186.047 186.047 +c124.03 0 186.046 -62.0156 186.046 -186.047c0 -124.03 -62.0156 -186.046 -186.046 -186.046c-124.031 0 -186.047 62.0156 -186.047 186.046z" /> + <glyph glyph-name="glyph74" unicode="" +d="M759.186 -13.9531l-558.139 372.093l558.139 372.093v-744.186zM15 79.0693v558.14h186.047v-558.14h-186.047z" /> + <glyph glyph-name="glyph75" unicode="" +d="M666.163 637.209h93.0225v-93.0234h-93.0225v-418.604c0 -77.0225 -62.5117 -139.534 -139.535 -139.534h-279.069c-77.0234 0 -139.535 62.5117 -139.535 139.534v418.604h-93.0234v93.0234h93.0234h93.0234c0 51.4189 41.6045 93.0234 93.0225 93.0234h186.047 +c51.4189 0 93.0234 -41.6045 93.0234 -93.0234h93.0234zM294.069 172.093c25.6982 0 46.5117 20.8145 46.5117 46.5117c0 25.6982 -20.8135 46.5117 -46.5117 46.5117c-25.6973 0 -46.5107 -20.8135 -46.5107 -46.5117c0 -25.6973 20.8135 -46.5117 46.5107 -46.5117z +M294.069 358.14c25.6982 0 46.5117 20.8135 46.5117 46.5117c0 25.6973 -20.8135 46.5117 -46.5117 46.5117c-25.6973 0 -46.5107 -20.8145 -46.5107 -46.5117c0 -25.6982 20.8135 -46.5117 46.5107 -46.5117zM480.116 172.093c25.6973 0 46.5117 20.8145 46.5117 46.5117 +c0 25.6982 -20.8145 46.5117 -46.5117 46.5117s-46.5117 -20.8135 -46.5117 -46.5117c0 -25.6973 20.8145 -46.5117 46.5117 -46.5117zM480.116 358.14c25.6973 0 46.5117 20.8135 46.5117 46.5117c0 25.6973 -20.8145 46.5117 -46.5117 46.5117 +s-46.5117 -20.8145 -46.5117 -46.5117c0 -25.6982 20.8145 -46.5117 46.5117 -46.5117z" /> + <glyph glyph-name="glyph76" unicode="" +d="M201.047 172.093v186.047l93.0225 93.0234l93.0234 -93.0234l186.047 186.046l186.046 -186.046v-186.047h-558.139zM108.023 79.0693h651.162l-93.0225 -93.0225h-558.14h-93.0234v93.0225v558.14l93.0234 93.0234v-651.163z" /> + <glyph glyph-name="glyph77" unicode="" +d="M711.256 172.093h-370.581c-139.442 0 -139.442 0 -232.466 -93.0234c-92.9531 93.0234 -241.302 558.14 278.907 558.14c186.047 0 372.093 -46.5117 372.093 -279.069c0 -93.0234 -47.9531 -186.047 -47.9531 -186.047z" /> + <glyph glyph-name="glyph78" unicode="" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM387.814 266.651c51.0693 0 92.3018 41.2559 92.3018 92.209 +c0 51.0703 -41.2324 92.3027 -92.3018 92.3027c-50.8838 0 -92.21 -41.2559 -92.21 -92.3027c0 -50.9766 41.3262 -92.209 92.21 -92.209z" /> + <glyph glyph-name="glyph79" unicode="❞" +d="M15 637.209h279.069v-279.069c0 -153.884 -125.186 -279.07 -279.069 -279.07v93.0234c102.651 0 186.047 83.4883 186.047 186.047h-186.047v279.069zM480.116 637.209h279.069v-279.069c0 -153.884 -125.186 -279.07 -279.069 -279.07v93.0234 +c102.651 0 186.047 83.4883 186.047 186.047h-186.047v279.069z" /> + <glyph glyph-name="glyph80" unicode="" +d="M387 234.14h0.0927734c0 -137 -111.093 -248.093 -248.093 -248.093c-45.0469 0 -87.209 12 -123.628 32.8828l-0.37207 0.46582c74.0469 42.8604 123.907 122.907 124 214.651l-0.0927734 0.0927734c0 68.4883 55.5117 124 124 124s124.093 -55.5117 124.093 -124z +M731.93 702.977c36.3496 -36.3252 36.3496 -95.209 0 -131.535l-265.162 -265.162c-21.791 61.3955 -70.1162 109.744 -131.535 131.628l265.163 265.069c36.3252 36.3262 95.209 36.3262 131.534 0z" /> + <glyph glyph-name="glyph81" unicode="☁" +d="M573.14 497.675c102.558 0 186.046 -83.4424 186.046 -186.047c0 -102.651 -83.4883 -186.047 -186.046 -186.047h-372.093c-102.559 0 -186.047 83.3955 -186.047 186.047c0 102.604 83.4883 186.047 186.047 186.047c8.25586 0 16.4414 -1.2334 24.6279 -2.32617 +c31.9766 56.6045 91.9297 95.3486 161.418 95.3486c68.0469 0 128 -38.2783 160.419 -95.6045c8.46484 1.16309 16.8135 2.58203 25.6279 2.58203zM573.14 218.604c51.3252 0 93.0234 41.7441 93.0234 93.0234s-41.6982 93.0234 -93.0234 93.0234 +c-51.3262 0 -93.0234 -41.7441 -93.0234 -93.0234h-93.0234c0 60.5811 29.5352 113.953 74.3955 147.931c-17.0693 23.209 -44.3252 38.1162 -74.3955 38.1162c-51.3252 0 -93.0234 -41.7441 -93.0234 -93.0234c0 -11.21 1.90723 -22.1631 5.81445 -32.4883 +l-87.1162 -32.6045c-7.62793 20.3486 -11.4424 41.8828 -11.6279 63.8135c-47.9766 -1.39551 -93.1162 -40.7441 -93.1162 -91.7441c0 -51.2793 41.6973 -93.0234 93.0234 -93.0234h372.093z" /> + <glyph glyph-name="glyph82" unicode="" +d="M387.093 637.209c205.488 0 372.093 -275.441 372.093 -275.441s-166.604 -282.698 -372.093 -282.698s-372.093 282.698 -372.093 282.698s166.604 275.441 372.093 275.441zM387.093 172.093c102.744 0 186.047 83.3027 186.047 186.047 +s-83.3027 186.046 -186.047 186.046s-186.046 -83.3018 -186.046 -186.046s83.3018 -186.047 186.046 -186.047zM294.069 357.768c0 62.0156 31.0078 93.0234 93.0234 93.0234s93.0234 -31.0078 93.0234 -93.0234s-31.0078 -93.0234 -93.0234 -93.0234 +s-93.0234 31.0078 -93.0234 93.0234z" /> + <glyph glyph-name="glyph83" unicode="" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM247.559 172.093l372.278 186.047l-372.278 186.046v-372.093z" /> + <glyph glyph-name="glyph84" unicode="" +d="M759.186 172.093h-558.325v-93.0234l-185.86 139.535l185.86 139.535v-93.0234h558.325v-93.0234zM15 451.163v93.0225h558.14v93.0234l186.046 -139.534l-186.046 -139.535v93.0234h-558.14z" /> + <glyph glyph-name="glyph85" unicode="" +d="M731.93 702.977c36.3496 -36.3252 36.3496 -95.209 0 -131.535l-351.744 -351.837c-8.16211 30.6982 -23.4414 59.9541 -47.418 83.9307c-23.6045 23.6279 -52.6748 39.418 -84.1162 47.6045l351.744 351.837c36.3252 36.3262 95.209 36.3262 131.534 0zM267 106.232 +l-252 -120.186l120.465 251.721c36.3262 36.3252 95.21 36.3252 131.535 0c36.3252 -36.3262 36.3252 -95.209 0 -131.535z" /> + <glyph glyph-name="glyph86" unicode="" +d="M387.093 265.116c0 62.0156 31.0078 93.0234 93.0234 93.0234s93.0234 -31.0078 93.0234 -93.0234s-31.0078 -93.0234 -93.0234 -93.0234s-93.0234 31.0078 -93.0234 93.0234zM666.163 544.186c25.7041 0 47.6338 -9.08105 65.7891 -27.2432 +c18.1553 -18.1611 27.2334 -40.0879 27.2334 -65.7793v-465.116h-744.186v465.116c0 25.6855 9.08203 47.6113 27.2471 65.7754c18.165 18.165 40.0898 27.2471 65.7764 27.2471h186.14l79.3486 153.838c3.04004 9.46191 8.61621 17.1953 16.7285 23.2012 +c8.1123 6.00488 17.2959 9.00781 27.5508 9.00781h127.721c10.1338 0 19.2324 -2.93359 27.2939 -8.80078c8.0625 -5.86719 13.6855 -13.4531 16.8691 -22.7568zM154.535 358.14c12.8486 0 23.8125 4.54004 32.8926 13.6191c9.0791 9.0791 13.6191 20.0439 13.6191 32.8926 +s-4.54004 23.8125 -13.6191 32.8926c-9.08008 9.0791 -20.0439 13.6191 -32.8926 13.6191s-23.8135 -4.54004 -32.8926 -13.6191c-9.0791 -9.08008 -13.6191 -20.0439 -13.6191 -32.8926s4.54004 -23.8135 13.6191 -32.8926s20.043 -13.6191 32.8926 -13.6191z +M480.116 79.0693c51.3721 0 95.2227 18.165 131.553 54.4941c36.3291 36.3301 54.4941 80.1807 54.4941 131.553s-18.165 95.2227 -54.4941 131.553c-36.3301 36.3291 -80.1807 54.4941 -131.553 54.4941s-95.2227 -18.165 -131.553 -54.4941 +c-36.3291 -36.3301 -54.4941 -80.1807 -54.4941 -131.553s18.165 -95.2227 54.4941 -131.553c36.3301 -36.3291 80.1807 -54.4941 131.553 -54.4941z" /> + <glyph glyph-name="glyph87" unicode="" +d="M759.186 358.14c0 -205.488 -166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093s372.093 -166.604 372.093 -372.093zM247.559 311.628h279.069v-46.5117l93.0234 93.0234l-93.0234 93.0234v-46.5117h-279.069 +v46.5117l-93.0234 -93.0234l93.0234 -93.0234v46.5117z" /> + <glyph glyph-name="glyph88" unicode="⤵" +d="M666.163 311.628v-46.5117h93.0225l-186.046 -186.047l-186.047 186.047h93.0234v46.5117c0 128.441 -104.116 232.558 -232.558 232.558c-128.442 0 -232.559 -104.116 -232.559 -232.558c0 179.768 145.814 325.581 325.581 325.581 +c179.768 0 325.582 -145.813 325.582 -325.581z" /> + <glyph glyph-name="glyph89" unicode="" +d="M247.559 358.14l46.5107 -46.5117h-139.534v-93.0234l-139.535 139.535l139.535 139.535v-93.0234h139.534zM525.186 358.14l-45.0693 46.5117h139.535v93.0234l139.534 -139.535l-139.534 -139.535v93.0234h-139.535z" /> + <glyph glyph-name="glyph90" unicode="" +d="M507.372 405.116l-188 318.303c22.0234 4.0459 44.5117 6.81348 67.7207 6.81348c97.9307 0 186.232 -38.5576 252.628 -100.372zM478.977 265.116l193.628 328.953c53.3262 -64.3721 86.5811 -145.86 86.5811 -235.93c0 -32.3486 -5.44141 -63.1396 -13.1855 -93.0234 +h-267.023zM398.721 497.675h-356.093c41.0469 101.256 125.675 178.906 230.325 212.837zM378.559 218.604h353.022c-40.6973 -100.372 -124.186 -177.512 -227.65 -212.023zM296.512 451.163l-194.163 -329.954c-53.7441 64.6055 -87.3486 146.442 -87.3486 236.931 +c0 32.3486 5.39551 63.1396 13.1631 93.0234h268.349zM268.907 312.535l188.907 -319.396c-22.9307 -4.37207 -46.5117 -7.09277 -70.7217 -7.09277c-97.4648 0 -185.418 38.3252 -251.768 99.5576z" /> + <glyph glyph-name="glyph91" unicode="" horiz-adv-x="588" +d="M480.116 311.628h93.0234c0 -154.069 -125 -279.069 -279.07 -279.069c-154.069 0 -279.069 125 -279.069 279.069s125 279.069 279.069 279.069h93.5586v93.0234l139.813 -139.535l-139.813 -140v92.4893l-93.5586 1c-102.65 0 -186.046 -83.3955 -186.046 -186.047 +s83.3955 -186.047 186.046 -186.047c102.651 0 186.047 83.3955 186.047 186.047z" /> + <glyph glyph-name="glyph92" unicode="" +d="M278.628 271.209c6.81348 -7.62793 13.9072 -14.7207 21.3486 -21.4414c-43.0693 -43.0703 -102.651 -102.675 -132.186 -132.279c-10.0938 10.1865 -11.4424 11.4424 -21.4424 21.4424c29.6279 29.5342 89.1396 89.209 132.279 132.278zM483.209 730.232 +c152.163 0 275.977 -123.721 275.954 -275.907c0 -152.069 -123.814 -275.79 -275.978 -275.79c-36.3252 0 -70.8604 7.44141 -102.65 20.3486l-212.744 -212.837l-152.791 152.884l212.651 212.674c-12.8145 31.791 -20.2559 66.3262 -20.2559 102.744 +c0 152.163 123.744 275.884 275.813 275.884zM483.209 271.465c100.931 0 183.047 82.1396 183.047 182.86c0 100.838 -82.1162 182.954 -183.047 182.954c-100.744 0 -182.86 -82.1162 -182.86 -182.954c0 -100.744 82.1162 -182.86 182.86 -182.86z" /> + <glyph glyph-name="glyph93" unicode="" +d="M619.651 637.209h139.534v-651.162h-744.186v651.162h139.535v-47.6045c0 -51.4189 41.6045 -93.0234 93.0234 -93.0234c51.418 0 93.0225 41.6045 93.0225 93.0234v47.6045h93.0234v-47.6045c0 -51.4189 41.6045 -93.0234 93.0234 -93.0234 +s93.0234 41.6045 93.0234 93.0234v47.6045zM247.559 79.0693v93.0234h-93.0234v-93.0234h93.0234zM247.559 265.116v93.0234h-93.0234v-93.0234h93.0234zM433.604 79.0693v93.0234h-93.0234v-93.0234h93.0234zM433.604 264.931v93.0225h-93.0234v-93.0225h93.0234z +M526.628 79.0693l93.0234 93.0234h-93.0234v-93.0234zM619.651 265.116v93.0234h-93.0234v-93.0234h93.0234zM201.047 590.697v93.0234c0 25.6982 20.8135 46.5117 46.5117 46.5117c25.6973 0 46.5107 -20.8135 46.5107 -46.5117v-93.0234 +c0 -25.6973 -20.8135 -46.5117 -46.5107 -46.5117c-25.6982 0 -46.5117 20.8145 -46.5117 46.5117zM480.116 590.697v93.0234c0 25.6982 20.8145 46.5117 46.5117 46.5117s46.5117 -20.8135 46.5117 -46.5117v-93.0234c0 -25.6973 -20.8145 -46.5117 -46.5117 -46.5117 +s-46.5117 20.8145 -46.5117 46.5117z" /> + <glyph glyph-name="glyph94" unicode="" horiz-adv-x="681" +d="M480.116 730.232h93.0234v-90.1162c0 -62.1396 -24.1631 -120.465 -68.1396 -164.419l-263.163 -261.628c-23.8838 -24 -37.3486 -55.0459 -39.79 -88.4883h92.0225l-139.534 -139.534l-139.535 139.534h94.1162c2.53516 58.2334 25.4424 112.744 67.0469 154.256 +l263.162 261.722c26.2559 26.2559 40.791 61.3018 40.791 98.5576v90.1162zM572.047 125.581h94.1162l-139.535 -139.534l-139.535 139.534h92.0234c-2.46484 33.4424 -15.9072 64.6045 -39.8838 88.4883l-52.1396 51.8613l65.9541 65.6045l51.8604 -51.5117 +c41.6045 -41.6982 64.6045 -96.209 67.1396 -154.442z" /> + <glyph glyph-name="glyph95" unicode="" +d="M15 -13.9531v465.116h744.186v-465.116h-744.186zM433.604 544.186v186.047h232.559l93.0225 -186.047h-325.581zM340.581 730.232v-186.047h-325.581l93.0234 186.047h232.558z" /> + <glyph glyph-name="glyph96" unicode="" horiz-adv-x="495" +d="M411.988 662.093c90.8604 -90.79 90.8604 -238.093 -0.0234375 -328.86c0 0 -164.512 -161.163 -164.512 -347.209c0 186.046 -164.325 347.209 -164.325 347.209c-90.8369 90.7676 -90.8369 238.07 0 328.86c90.8604 90.8379 238.023 90.8379 328.86 0zM247.477 404.512 +c51.5117 0 93.1162 41.6045 93.1162 93.0234c0 51.418 -41.6045 93.0234 -93.1162 93.0234c-51.3252 0 -92.9297 -41.6055 -92.9297 -93.0234c0 -51.4189 41.6045 -93.0234 92.9297 -93.0234z" /> + <glyph glyph-name="glyph97" unicode="" horiz-adv-x="681" +d="M573.14 -13.9531v744.186h93.0234v-744.186h-93.0234zM387.093 -13.9531v558.139h93.0234v-558.139h-93.0234zM201.047 -13.9531v372.093h93.0225v-372.093h-93.0225zM15 -13.9531v186.046h93.0234v-186.046h-93.0234z" /> + <glyph glyph-name="glyph98" unicode="" +d="M201.047 172.093c-102.744 0 -186.047 83.3027 -186.047 186.047s83.3027 186.046 186.047 186.046v-372.093zM294.069 544.186l186.047 93.0234v-558.14l-186.047 93.0234v372.093zM573.232 172.186v93.0234c7.7207 0 15.5352 1 23.3486 2.90723 +c40.791 10.3486 69.582 47.4189 69.582 90.0234s-28.791 79.5811 -70.0469 90.0234c-7.34863 1.81348 -15.1631 2.81348 -22.8838 2.81348v93.0234c15.2559 0 30.5117 -1.90723 45.5117 -5.53516c82.7676 -21.0693 140.441 -95.1162 140.441 -180.325 +c0 -85.3027 -57.6738 -159.419 -140.162 -180.325c-15.4424 -3.72168 -30.7207 -5.62891 -45.791 -5.62891z" /> + <glyph glyph-name="glyph99" unicode="✔" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM571.14 239.86l-118.279 118.279l118.279 118.279l-65.7676 65.7666l-118.279 -118.278 +l-118.279 118.278l-65.7666 -65.7666l118.278 -118.279l-118.278 -118.279l65.7666 -65.7676l118.279 118.279l118.279 -118.279z" /> + <glyph glyph-name="glyph100" unicode="" +d="M745.529 716.604c18.1621 -18.1631 18.1621 -47.6045 -0.0234375 -65.7676l-94.9307 -94.7441c59.791 -90.209 49.9766 -213.116 -29.6045 -292.604l-139.256 -139.535c-45.4189 -45.418 -106.86 -68.1387 -164.419 -68.1387 +c-44.6973 0 -89.4883 12.8135 -128.278 38.6045l-94.6514 -94.7441c-9.09277 -9.09375 -20.9766 -13.6279 -32.8838 -13.6279s-23.791 4.53418 -32.8604 13.6279c-18.1631 18.1621 -18.1631 47.6045 0 65.7666l94.6514 94.7441 +c-59.791 90.21 -49.9775 213.117 29.6045 292.605l139.534 139.534c43.4658 45.4189 104.907 68.1396 164.419 68.1396c44.6982 0 89.209 -12.8135 128 -38.6045l94.6514 94.7441c18.1631 18.1631 47.8838 18.1631 66.0469 0zM596.087 427.907 +c0 21.1621 -5.06934 41.3252 -14 59.7676l-70.6748 -70.8604c-9.06934 -9.09375 -20.9766 -13.6279 -32.79 -13.6279c-11.9072 0 -23.791 4.53418 -32.8838 13.6279c-18.1631 18.1621 -18.1631 47.6045 0 65.7666l70.7676 70.8604c-18.5117 8.81445 -38.6045 14 -59.6748 14 +c-37.2559 0 -74.2559 -14.5342 -100.604 -40.8828l-137.581 -139.535c-26.3496 -26.3486 -40.8838 -61.3955 -40.8838 -98.6514c0 -21.1631 5.09277 -41.3252 14 -59.7676l69.3945 69.3955c18.1631 18.1631 47.6055 18.1631 63.8145 0 +c18.1631 -18.1631 18.1631 -47.6045 0 -65.7676l-67.4414 -69.3955c18.5342 -8.81348 38.6973 -14 59.7666 -14c35.3027 0 72.21 14.5352 98.6514 40.8838l139.256 139.535c26.3486 26.3486 40.8838 61.3955 40.8838 98.6514z" /> + <glyph glyph-name="glyph101" unicode="" horiz-adv-x="309" +d="M201.047 265.116v-139.535h93.0225l-139.534 -139.534l-139.535 139.534h93.0234v139.535h93.0234zM108.023 451.163v139.534h-93.0234l139.535 139.535l139.534 -139.535h-93.0225v-139.534h-93.0234z" /> + <glyph glyph-name="glyph102" unicode="" +d="M704.488 412l-13.6045 -13.7207l67.0459 -66.9072l-65.7666 -65.5811l-66.9541 66.9062l-346.396 -346.65h-172.418l-91.3955 92.8369v168.604l347.721 347.931l-69.1855 69.1855l65.5342 65.6279l69.1162 -69.2324l13.8145 13.7207 +c36.1396 36.2559 83.6973 54.4189 131.303 54.4189c47.3486 0 94.9297 -18.1631 131.186 -54.4189c72.6748 -72.4883 72.6748 -190.186 0 -262.721zM255 93.791l304.512 304.697l-131.14 131.14l-300.372 -300.559c32.3486 -1.09277 64.4883 -13.1855 89.1162 -37.8838 +c26.791 -26.8135 38.9766 -62.1387 37.8838 -97.3945z" /> + <glyph glyph-name="glyph103" unicode="" horiz-adv-x="681" +d="M570.419 588.697c61.7666 -61.5811 95.7441 -143.441 95.7441 -230.558c0 -179.512 -146.07 -325.581 -325.582 -325.581v-46.5117l-93.0225 93.0225l93.0225 93.0234v-46.5117c128.279 0 232.559 104.279 232.559 232.559c0 62.2324 -24.3486 120.721 -68.3027 164.697z +M433.604 637.209l-93.0234 -93.0234v46.5117c-128.278 0 -232.558 -104.278 -232.558 -232.558c0 -62.2324 24.3486 -120.721 68.3018 -164.698l-65.5811 -65.8604c-61.7676 61.582 -95.7441 143.442 -95.7441 230.559c0 179.512 146.069 325.581 325.581 325.581v46.5117z +" /> + <glyph glyph-name="glyph104" unicode="" +d="M15 79.0693c0 62.0312 31.0156 93.0469 93.0469 93.0469c62.0303 0 93.0459 -31.0156 93.0459 -93.0469c0 -62.0303 -31.0156 -93.0459 -93.0459 -93.0459c-62.0312 0 -93.0469 31.0156 -93.0469 93.0459zM155.069 265.023v93.1162 +c64.1133 0 118.909 -22.7549 164.388 -68.2646s68.2178 -100.336 68.2178 -164.479h-93.0703c0 38.5186 -13.6357 71.4189 -40.9062 98.7031c-27.2705 27.2832 -60.1475 40.9248 -98.6289 40.9248zM154.441 451.163v93.0225c75.7012 0 145.709 -18.7051 210.023 -56.1143 +c64.3154 -37.4102 115.173 -88.2793 152.574 -152.608c37.4004 -64.3291 56.1006 -134.352 56.1006 -210.067h-93.0703c0 58.8857 -14.5469 113.351 -43.6416 163.393c-29.0938 50.042 -68.6504 89.6152 -118.671 118.719 +c-50.0195 29.1045 -104.458 43.6562 -163.315 43.6562zM154.441 637.209v93.0234c81.8926 0 160.163 -15.9893 234.812 -47.9668c74.6484 -31.9775 138.979 -74.9736 192.988 -128.988s97.0029 -118.354 128.979 -193.017 +c31.9766 -74.6641 47.9648 -152.952 47.9648 -234.865h-93.0225c0 69.3096 -13.5303 135.554 -40.5908 198.733c-27.0605 63.1807 -63.4434 117.625 -109.146 163.333c-45.7041 45.708 -100.14 82.0928 -163.305 109.155c-63.165 27.0605 -129.393 40.5918 -198.681 40.5918 +z" /> + <glyph glyph-name="glyph105" unicode="ℹ" horiz-adv-x="402" +d="M61.5117 358.14h-46.5117v93.0234h279.069l0.186523 -325.582c0 -25.6973 20.8838 -46.5117 46.5117 -46.5117h46.3252v-93.0225h-372.093v93.0225h46.5117c25.6973 0 46.5117 20.8145 46.5117 46.5117v186.047c0 25.6973 -20.8145 46.5117 -46.5117 46.5117z +M108.023 637.209c0 62.0156 31.0078 93.0234 93.0234 93.0234c62.0146 0 93.0225 -31.0078 93.0225 -93.0234s-31.0078 -93.0234 -93.0225 -93.0234c-62.0156 0 -93.0234 31.0078 -93.0234 93.0234z" /> + <glyph glyph-name="glyph106" unicode="" +d="M434.14 405.232v134.628c65.9531 -17.0234 117.558 -68.6738 134.628 -134.628h-134.628zM434.14 311.047h134.628c-17.0703 -65.9072 -68.6748 -117.605 -134.628 -134.582v134.582zM339.953 405.232h-134.628c16.9775 65.9531 68.6748 117.604 134.628 134.628 +v-134.628zM339.953 311.047v-134.582c-65.9531 16.9766 -117.65 68.6748 -134.628 134.582h134.628zM434.14 635.977v94.2559c170.069 -21.4883 303.512 -154.977 325.046 -325h-94.3018c-20 118 -112.744 210.768 -230.744 230.744zM109.209 405.232h-94.209 +c21.4414 170.023 154.977 303.512 324.953 325v-94.2559c-118.022 -19.9766 -210.767 -112.721 -230.744 -230.744zM339.953 80.3486v-94.3018c-169.977 21.4414 -303.512 154.977 -324.953 325h94.209c20 -118.047 112.744 -210.722 230.744 -230.698zM664.884 311.047 +h94.3018c-21.5342 -170.023 -154.977 -303.559 -325.046 -325v94.3018c118 19.9766 210.768 112.651 230.744 230.698z" /> + <glyph glyph-name="glyph107" unicode="" +d="M759.186 79.0693l-93.0225 -93.0225l-325.582 325.674l-139.534 -139.535l-186.047 558.047l558.14 -186.047l-139.535 -139.534z" /> + <glyph glyph-name="glyph108" unicode="⚿" +d="M526.628 730.232c128.441 0 232.558 -104.116 232.558 -232.558c0 -128.442 -104.116 -232.559 -232.558 -232.559c-14.5352 0 -28.5352 1.7207 -42.2324 4.2793l-4.2793 -4.2793v-93.0234h-93.0234v-93.0234h-93.0234v-93.0225h-279.069v186.046l283.349 283.349 +c-2.55762 13.6982 -4.2793 27.6982 -4.2793 42.2334c0 128.441 104.116 232.558 232.559 232.558zM526.813 451.163c25.6982 0 46.5117 20.8135 46.5117 46.5117c0 25.6973 -20.8135 46.5107 -46.5117 46.5107c-25.6973 0 -46.5107 -20.8135 -46.5107 -46.5107 +c0 -25.6982 20.8135 -46.5117 46.5107 -46.5117z" /> + <glyph glyph-name="glyph109" unicode="➖" +d="M15 265.116v186.047h744.186v-186.047h-744.186z" /> + <glyph glyph-name="glyph110" unicode="" +d="M293.791 450.441v93.7441h185.86v-93.7441h-185.86zM665.535 543.093l92.9297 -93.0234h-92.9297v-464.022h-557.604c-51.3262 0 -92.9307 41.6045 -92.9307 93.0225v558.14c0 51.4189 41.6045 93.0234 92.9307 93.0234h557.604v-93.3955h93.6504zM572.604 79.0693 +h-0.0234375v558.14h-371.721v-558.14h371.744z" /> + <glyph glyph-name="glyph111" unicode="" +d="M712.675 311.628c25.6973 0 46.5107 -20.8135 46.5107 -46.5117v-186.047c0 -25.6973 -20.8135 -46.5107 -46.5107 -46.5107h-139.535v279.069v93.0234c0 102.651 -83.3955 186.046 -186.047 186.046s-186.046 -83.3945 -186.046 -186.046v-93.0234v-279.069h-139.535 +c-25.6982 0 -46.5117 20.8135 -46.5117 46.5107v186.047c0 25.6982 20.8135 46.5117 46.5117 46.5117h46.5117v93.0234c0 154.069 125 279.069 279.069 279.069c154.07 0 279.07 -125 279.07 -279.069v-93.0234h46.5117z" /> + <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="681" +d="M666.163 451.163h-128l-23.1631 -186.047h151.163v-93.0234h-162.791l-23.3027 -186.046h-93.0225l23.2559 186.046h-186l-23.2559 -186.046h-93.0234l23.2559 186.046h-116.279v93.0234h127.907l23.209 186.047h-151.116v93.0225h162.744l23.2559 186.047h93.0234 +l-23.2559 -186.047h186l23.2559 186.047h93.0234l-23.2559 -186.047h116.372v-93.0225zM421.931 265.116l23.209 186.047h-186l-23.209 -186.047h186z" /> + <glyph glyph-name="glyph113" unicode="" +d="M387.093 -13.9531c-205.488 0 -372.093 166.604 -372.093 372.046c0 205.535 166.604 372.14 372.093 372.14s372.093 -166.604 372.093 -372.14c0 -205.441 -166.604 -372.046 -372.093 -372.046zM386.372 544.186l-185.325 -186.093l185.325 -185.278v138.813h186.768 +v92.9766h-186.768v139.581z" /> + <glyph glyph-name="glyph114" unicode="" +d="M387.093 -13.9531c-205.488 0 -372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093s372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093zM247.559 451.163l-93.0234 -93.0234l93.0234 -93.0234v46.5117h372.093v93.0234h-372.093 +v46.5117z" /> + <glyph glyph-name="glyph115" unicode="" +d="M586.768 92.6973l-106.651 -106.65v279.069h279.069l-106.65 -106.651l106.65 -106.65l-65.7666 -65.7676zM15 451.163l106.651 106.651l-105.559 105.65l65.7676 65.7676l105.559 -105.651l106.65 106.651v-279.069h-279.069zM15 51.8145l106.651 106.65 +l-106.651 106.651h279.069v-279.069l-106.65 106.65l-106.651 -106.65zM480.116 451.163v279.069l106.651 -106.651l105.744 105.651l65.7676 -65.7676l-105.744 -105.65l106.65 -106.651h-279.069z" /> + <glyph glyph-name="glyph116" unicode="" +d="M666.163 172.093c51.418 0 93.0225 -41.6973 93.0225 -93.0234c0 -51.3252 -41.6045 -93.0225 -93.0225 -93.0225c-51.4189 0 -93.0234 41.6973 -93.0234 93.0225c0 11.7217 2.7207 22.7217 6.7207 33.0703l-140.907 100.558 +c-25.2324 -25.0693 -60.0459 -40.6045 -98.3721 -40.6045c-77.0225 0 -139.534 62.5117 -139.534 139.535c0 7.25586 1.09277 14.2559 2.18555 21.2559l-111.372 37.1631c-8.18555 -7.18652 -18.6279 -11.9072 -30.3486 -11.9072 +c-25.6982 0 -46.5117 20.8135 -46.5117 46.5117c0 25.6973 20.8135 46.5117 46.5117 46.5117c22.2559 0 39.9766 -15.9072 44.5117 -36.791l112 -37.4189c23.5352 43.9541 69.3252 74.21 122.558 74.21c30.1631 0 57.7676 -9.72168 80.6748 -26.0703l165.884 165.977 +c-8.09277 13.791 -14 28.9775 -14 46.1396c0 51.4189 41.6045 93.0234 93.0234 93.0234c51.418 0 93.0225 -41.6045 93.0225 -93.0234c0 -51.418 -41.6045 -93.0234 -93.0225 -93.0234c-17.1631 0 -32.3496 5.90723 -46.1396 14l-165.884 -165.977 +c16.1631 -22.7207 25.9766 -50.5117 25.9766 -80.5811c0 -21.8838 -5.44141 -42.2324 -14.4414 -60.7676l141.813 -101.209c16.0703 13.3486 36.0469 22.4414 58.6748 22.4414z" /> + <glyph glyph-name="glyph117" unicode="" +d="M699.047 111.953l60.1387 60.1396v-186.046h-186.046l60.1396 60.1387l-153.163 153.163l65.7676 65.7676zM75.1396 604.325l-60.1396 -60.1396v186.047h186.047l-60.1396 -60.1396l153.162 -153.162l-65.7666 -65.7676zM633.279 670.093l-60.1396 60.1396h186.046 +v-186.047l-60.1387 60.1396l-153.163 -153.162l-65.7676 65.7676zM294.069 199.349l-153.162 -153.163l60.1396 -60.1387h-186.047v186.046l60.1396 -60.1396l153.163 153.163z" /> + <glyph glyph-name="glyph118" unicode="" horiz-adv-x="681" +d="M340.581 730.232c179.768 0 325.582 -145.813 325.582 -325.581s-145.814 -325.582 -325.582 -325.582c-26.5342 0 -51.9531 4.00098 -76.6738 10.0938l-155.884 -103.116l1 190.046c-58.0469 58.8604 -94.0234 139.442 -94.0234 228.559 +c0 179.768 145.813 325.581 325.581 325.581z" /> + <glyph glyph-name="glyph119" unicode="☾" +d="M587.86 214.325c62.6748 0 120.628 18 171.325 47.1631c-45.7666 -158.628 -190.488 -275.441 -363.906 -275.441c-210.047 0 -380.279 170.325 -380.279 380.349c0 173.419 116.744 318.046 275.441 363.813c-29.2559 -50.5811 -47.2324 -108.558 -47.2324 -171.232 +c0 -190.302 154.232 -344.651 344.651 -344.651z" /> + <glyph glyph-name="at" unicode="@" +d="M709.047 172.093h-135.907c-30.3486 0 -56.1396 15.6279 -73.0469 38.1631c-31.418 -24.1631 -70.3018 -39.1631 -113 -39.1631c-102.744 0 -186.046 83.3027 -186.046 186.047s83.3018 186.046 186.046 186.046h186.047v-278.069h75.3018l0.744141 -1.09277 +c10.6279 29.4414 16.9775 61.0459 16.9775 94.1162c0 153.884 -125.187 279.069 -279.07 279.069s-279.069 -125.186 -279.069 -279.069s125.186 -279.07 279.069 -279.07c76.9541 0 146.722 31.2559 197.21 81.8613l65.8604 -65.8613 +c-67.3027 -67.418 -160.326 -109.022 -263.07 -109.022c-205.488 0 -372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093s372.093 -166.604 372.093 -372.093c0 -67.9541 -18.2549 -131.279 -50.1387 -186.047zM480.116 404.465v45.6982h-93.0234 +c-51.2324 0 -93.0234 -41.6982 -93.0234 -93.0234s41.791 -93.0234 93.0234 -93.0234s93.0234 41.6982 93.0234 93.0234v47.3252z" /> + <glyph glyph-name="glyph121" unicode="" +d="M573.047 451.163c93.1162 0 186.139 -49.4189 186.139 -186.047c0 -133.721 -93.0225 -186.047 -186.139 -186.047h-92.9307c-51.3252 0 -93.0234 -41.6045 -93.0234 -93.0225c-102.744 0 -186.14 83.3018 -186.14 186.046v93.0234 +c0 37.0703 8.46582 67.4424 21.6279 93.0234h-21.6279c-92.9297 0 -185.953 52.3252 -185.953 186.046c0 136.629 93.0234 186.047 185.953 186.047h186.14c93.0234 0 185.954 -57.6045 185.954 -186.047v-93.0225zM200.953 451.163h93.1162 +c60.6748 0 114.651 -29.2559 148.628 -74.4424c22.791 16.9766 37.4189 44.0469 37.4189 74.4424v93.0225c0 80.9307 -58.2324 93.0234 -93.0234 93.0234h-186.14c-92.9297 0 -92.9297 -65.1396 -92.9297 -93.0234c0 -22.9766 0 -93.0225 92.9297 -93.0225zM573.047 172.093 +c93.1162 0 93.1162 69.9541 93.1162 93.0234c0 27.8369 0 93.0234 -93.1162 93.0234l-25.6982 0.0458984l0.0927734 0.046875c-32.2559 -55.418 -91.5811 -93.1162 -160.349 -93.1162c0 35.8838 -20.9766 66.1396 -50.79 81.6748 +c-21.0703 -13.2793 -42.2334 -39.1162 -42.2334 -81.6748v-93.0234c0 -30.3486 14.6279 -57.418 37.2559 -74.3955c33.9541 45.1396 88.0234 74.3955 148.791 74.3955h92.9307zM566.604 404.791c-0.62793 -2.13965 -1.37207 -4.23242 -2 -6.30273 +c0.62793 2.07031 1.44238 4.16309 2 6.30273z" /> + <glyph glyph-name="glyph122" unicode="" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM433.604 218.604v279.07h46.5117l-93.0234 93.0225l-93.0234 -93.0225h46.5117v-279.07 +h-46.5117l93.0234 -93.0234l93.0234 93.0234h-46.5117z" /> + <glyph glyph-name="glyph123" unicode="" horiz-adv-x="309" +d="M154.535 218.604l46.5117 46.5117v-139.535h93.0225l-139.534 -139.534l-139.535 139.534h93.0234v139.535zM154.535 496.232l-46.5117 -45.0693v139.534h-93.0234l139.535 139.535l139.534 -139.535h-93.0225v-139.534z" /> + <glyph glyph-name="glyph124" unicode="✗" +d="M292.697 58.6748l-277.697 277.697l132.441 132.465l145.256 -145.256l334.047 334.023l132.441 -132.441z" /> + <glyph glyph-name="glyph125" unicode="" horiz-adv-x="588" +d="M294.069 358.14c-51.418 0 -93.0225 41.6514 -93.0225 93.0234v186.046c0 51.3721 41.6045 93.0234 93.0225 93.0234c51.4189 0 93.0234 -41.6514 93.0234 -93.0234v-186.046c0 -51.3721 -41.6045 -93.0234 -93.0234 -93.0234zM387.093 79.0693 +c51.4189 0 93.0234 -41.6045 93.0234 -93.0225h-372.093c0 51.418 41.6045 93.0225 93.0234 93.0225h46.5117v97.7451c-131.722 22.2549 -232.559 136.395 -232.559 274.349v45.0693c0 25.6973 20.8135 46.5117 46.5117 46.5117 +c25.6973 0 46.5117 -20.8145 46.5117 -46.5117v-45.0693c0 -102.604 83.3955 -186.047 186.046 -186.047c102.651 0 186.047 83.4424 186.047 186.047v45.0693c0 25.6973 20.8145 46.5117 46.5117 46.5117s46.5117 -20.8145 46.5117 -46.5117v-45.0693 +c0 -137.954 -100.837 -252.094 -232.559 -274.349v-97.7451h46.5117z" /> + <glyph glyph-name="glyph126" unicode="" horiz-adv-x="681" +d="M108.023 730.232h558.14v-744.186h-558.14c-51.3721 0 -93.0234 41.6045 -93.0234 93.0225v558.14c0 51.4189 41.6514 93.0234 93.0234 93.0234zM573.14 79.0693v558.14h-92.6748v-187.674l-93.7441 93.7441l-93.0234 -93.0234v186.953h-92.6504v-558.14h372.093z" /> + <glyph glyph-name="glyph127" unicode="" +d="M387.093 218.604l46.5117 46.5117v-139.535h93.0234l-139.535 -139.534l-139.534 139.534h93.0225v139.535zM387.093 496.232l-46.5117 -45.0693v139.534h-93.0225l139.534 139.535l139.535 -139.535h-93.0234v-139.534zM247.559 358.14l46.5107 -46.5117h-139.534 +v-93.0234l-139.535 139.535l139.535 139.535v-93.0234h139.534zM525.186 358.14l-45.0693 46.5117h139.535v93.0234l139.534 -139.535l-139.534 -139.535v93.0234h-139.535z" /> + <glyph glyph-name="glyph128" unicode="" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM526.628 265.116l93.0234 93.0234l-93.0234 93.0234v-46.5117h-93.0234v93.0234h46.5117 +l-93.0234 93.0225l-93.0234 -93.0225h46.5117v-93.0234h-93.0225v46.5117l-93.0234 -93.0234l93.0234 -93.0234v46.5117h93.0225v-93.0234h-46.5117l93.0234 -93.0234l93.0234 93.0234h-46.5117v93.0234h93.0234v-46.5117z" /> + <glyph glyph-name="glyph129" unicode="" +d="M517.535 730.232l241.65 -239.558v-504.628l-186.139 154.256l-186.14 -154.256l-186.396 154.441l-185.512 -154.441v744.186h502.535zM433.604 404.651h232.559l-232.559 232.558v-232.558z" /> + <glyph glyph-name="glyph130" unicode="➕" +d="M759.186 451.163v-186.047h-279.069v-279.069h-186.047v279.069h-279.069v186.047h279.069v279.069h186.047v-279.069h279.069z" /> + <glyph glyph-name="glyph131" unicode="" +d="M750 599c5.46484 -17.4414 9.18555 -35.6045 9.18555 -54.8145c0 -102.697 -83.3018 -186.046 -186.046 -186.046c-28.6045 0 -55.5117 7.0459 -79.6748 18.5811l-372.628 -372.512c-11.0928 -11.2559 -26.6279 -18.1621 -43.79 -18.1621 +c-34.3496 0 -62.0469 27.79 -62.0469 61.9531c0 17.2559 7 32.6973 18.1631 43.9766l372.558 372.442c-11.6279 24.3018 -18.6279 51.1162 -18.6279 79.7666c0 102.698 83.3027 186.047 186.047 186.047c18.6279 0 36.3252 -3.58105 53.3252 -8.7207l-115.372 -115.326 +v-123.999h122.093z" /> + <glyph glyph-name="glyph132" unicode="" horiz-adv-x="588" +d="M15 730.232l558.14 -372.093l-558.14 -372.093v744.186z" /> + <glyph glyph-name="glyph133" unicode="★" +d="M529.813 273.837l90.0234 -287.79l-232.372 178.604l-232.93 -178.604l90.1162 288.512l-229.651 176.604h279.069l93.0234 279.069l93.0234 -279.069h279.069z" /> + <glyph glyph-name="glyph134" unicode="" horiz-adv-x="588" +d="M340.581 730.232l232.559 -232.512v-511.674h-558.14v744.186h325.581zM292.163 451.163h186.046l-186.046 186.046v-186.046z" /> + <glyph glyph-name="glyph135" unicode="" +d="M334.553 279.116l-232.744 -232.558c-115.744 133.813 -115.744 331.302 0 465.116zM478.133 633.535c159.35 -23.3955 281.07 -156.396 281.07 -320.535c0 -180.697 -146.441 -326.953 -329.232 -326.953c-70.7207 0 -136.488 25.6279 -190.629 66.0459l238.791 240.838 +v340.604zM387.064 357.768l-266.908 266.953c73.9531 60.4424 165.535 99.2324 266.908 105.512v-372.465z" /> + <glyph glyph-name="glyph136" unicode="⛆" +d="M573.151 590.697c102.558 0 186.046 -83.4414 186.046 -186.046s-83.4883 -186.047 -186.046 -186.047h-372.093c-102.559 0 -186.047 83.4424 -186.047 186.047s83.4883 186.046 186.047 186.046c8.25586 0 16.4414 -1.23242 24.6279 -2.3252 +c31.9766 56.6045 91.9297 95.3486 161.418 95.3486c68.0469 0 128 -38.2793 160.419 -95.6045c8.46484 1.16309 16.8135 2.58105 25.6279 2.58105zM573.151 311.628c51.3252 0 93.0234 41.7441 93.0234 93.0234s-41.6982 93.0234 -93.0234 93.0234 +c-51.3262 0 -93.0234 -41.7441 -93.0234 -93.0234h-93.0234c0 60.5811 29.5352 113.953 74.3955 147.93c-17.0693 23.21 -44.3252 38.1162 -74.3955 38.1162c-51.3252 0 -93.0234 -41.7441 -93.0234 -93.0225c0 -11.21 1.90723 -22.1631 5.81445 -32.4893l-87.1162 -32.6045 +c-7.62793 20.3496 -11.4424 41.8838 -11.6279 63.8145c-47.9766 -1.39551 -93.1162 -40.7441 -93.1162 -91.7441c0 -51.2793 41.6973 -93.0234 93.0234 -93.0234h372.093zM91.3145 45.6279c-17.4424 -17.4424 -45.791 -17.4424 -63.2334 0 +c-17.4414 17.4414 -17.4414 45.791 0 63.2324c17.4424 17.4424 126.466 63.2324 126.466 63.2324s-45.791 -109.023 -63.2324 -126.465zM277.453 45.6279c-17.4414 -17.4424 -45.6973 -17.4424 -63.2324 0c-17.4414 17.4414 -17.4414 45.791 0 63.2324 +c17.5352 17.4424 126.466 63.2324 126.466 63.2324s-45.6982 -109.023 -63.2334 -126.465zM463.407 45.6279c-17.4424 -17.4424 -45.791 -17.4424 -63.2324 0c-17.4424 17.4414 -17.4424 45.791 0 63.2324c17.4414 17.4424 126.465 63.2324 126.465 63.2324 +s-45.791 -109.023 -63.2324 -126.465z" /> + <glyph glyph-name="glyph137" unicode="" +d="M759.186 32.5586c0 -25.791 -20.8135 -46.5117 -46.5107 -46.5117h-651.163c-25.6982 0 -46.5117 20.7207 -46.5117 46.5117v418.604h744.186v-418.604zM294.069 637.163h465.116v-92.9775h-744.186v186.047h279.069v-93.0693z" /> + <glyph glyph-name="glyph138" unicode="" +d="M759.186 730.232v-558.14h-186.046v-186.046h-558.14v558.139h186.047v186.047h558.139zM480.116 79.0693v93.0234h-279.069v186.047h-93.0234v-279.07h372.093zM666.163 265.116v279.069h-372.094v-279.069h372.094z" /> + <glyph glyph-name="glyph139" unicode="" horiz-adv-x="588" +d="M294.069 358.14c154.07 0 279.07 -125 279.07 -279.07c0 -51.418 -41.6045 -93.0225 -93.0234 -93.0225h-372.093c-51.4189 0 -93.0234 41.6045 -93.0234 93.0225c0 154.07 125 279.07 279.069 279.07zM154.535 590.697c0 93.0234 46.5117 139.535 139.534 139.535 +c93.0234 0 139.535 -46.5117 139.535 -139.535c0 -93.0225 -46.5117 -139.534 -139.535 -139.534c-93.0225 0 -139.534 46.5117 -139.534 139.534z" /> + <glyph glyph-name="glyph140" unicode="" +d="M759.186 451.163v-186.047h-93.0225v-46.5117c0 -25.6279 -20.8838 -46.5117 -46.5117 -46.5117h-558.14c-25.6279 0 -46.5117 20.8838 -46.5117 46.5117v279.07c0 25.5811 20.8838 46.5107 46.5117 46.5107h558.14c25.6279 0 46.5117 -20.9297 46.5117 -46.5107 +v-46.5117h93.0225zM573.14 265.116v186.047h-186.047v-186.047h186.047z" /> + <glyph glyph-name="glyph141" unicode="" +d="M719.86 521.559c24.4189 -49.5117 39.3252 -104.512 39.3252 -163.419c0 -23.4424 -2.7207 -46.1396 -6.90625 -68.5117h-264.349zM504.651 375.814v333.604c78.1162 -26.1631 145.349 -75.9775 190.768 -142.931zM404.488 240.581h333.884 +c-26.1631 -78.209 -76.0234 -145.534 -143.069 -190.86zM455.535 457.116l-233.094 233.093c49.8145 24.8145 105.233 40.0234 164.651 40.0234c23.4424 0 46.1865 -2.76758 68.4424 -6.90723v-266.209zM318.651 256.931l231.697 -231.628 +c-49.5117 -24.3496 -104.396 -39.2559 -163.256 -39.2559c-23.4414 0 -46.1855 2.7207 -68.4414 6.88379v264zM269.488 340.163v-333.326c-78.0234 26.1631 -145.209 75.9541 -190.535 142.814zM21.9072 426.581v0.0234375h264.581l-232.069 -232.069 +c-24.4189 49.5117 -39.4189 104.558 -39.4189 163.604c0 23.4414 2.76758 46.1855 6.90723 68.4414zM177.697 665.559l189.814 -189.814h-331.721c26.0459 77.6748 75.5117 144.488 141.906 189.814z" /> + <glyph glyph-name="glyph142" unicode="" +d="M15 265.116l372.093 465.116l372.093 -465.116h-744.186zM15 -13.9531v186.046h743.186v-186.046h-743.186z" /> + <glyph glyph-name="glyph143" unicode="" +d="M759.186 358.187c0 -205.535 -166.604 -372.14 -372.093 -372.14s-372.093 166.604 -372.093 372.14c0 205.441 166.604 372.046 372.093 372.046s372.093 -166.604 372.093 -372.046zM201.047 357.465l186.046 -185.372l185.326 185.372h-138.814v186.721h-93.0234 +v-186.721h-139.534z" /> + <glyph glyph-name="paragraph" unicode="¶" horiz-adv-x="588" +d="M573.14 730.232v-93.0234h-93.0234v-651.162h-93.0234v651.162h-93.0234v-651.162h-93.0225v372.093c-102.744 0 -186.047 83.3018 -186.047 186.046c0 102.745 83.3027 186.047 186.047 186.047h93.0225h93.0234h93.0234h93.0234z" /> + <glyph glyph-name="glyph145" unicode="" +d="M15 358.14c0 205.488 166.604 372.093 372.093 372.093s372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093zM480.116 497.675l-93.0234 93.0225l-93.0234 -93.0225h46.5117v-372.094h93.0234v372.094h46.5117z +" /> + <glyph glyph-name="glyph146" unicode="" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM387.814 172.093l185.325 186.047l-185.325 185.325v-138.813h-186.768v-93.0234h186.768 +v-139.535z" /> + <glyph glyph-name="glyph147" unicode="" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM526.628 265.116l93.0234 93.0234l-93.0234 93.0234v-46.5117h-372.093v-93.0234h372.093 +v-46.5117z" /> + <glyph glyph-name="glyph148" unicode="" +d="M759.186 -13.9531h-106.278c0 351.744 -286.163 637.86 -637.907 637.86v106.325c410.256 0 744.186 -333.837 744.186 -744.186zM546.512 -13.9531h-106.279c0 234.465 -190.86 425.232 -425.232 425.232v106.325c293.069 0 531.512 -238.488 531.512 -531.558z +M333.953 -13.9531h-106.372c0 117.278 -95.3018 212.581 -212.581 212.581v106.372c175.86 0 318.953 -143.093 318.953 -318.953zM121.279 -13.9531h-106.279v106.278c58.7676 0 106.279 -47.6045 106.279 -106.278z" /> + <glyph glyph-name="glyph149" unicode="" +d="M124.093 94.8838c-70.3955 70.3018 -109.093 163.697 -109.093 263.256c0 205.116 166.884 372.093 372.093 372.093l46.5117 -46.5117l-46.5117 -46.5117c-153.884 0 -279.069 -125.186 -279.069 -279.069c0 -74.6748 29.0693 -144.814 81.8604 -197.488 +l-57.1396 -7.44238zM387.093 -13.9531l-46.5117 46.3252l46.5117 46.6973c153.884 0 279.07 125.187 279.07 279.07c0 74.4883 -29.0703 144.628 -81.9307 197.396l57.2324 7.53418l8.53516 58.2334c70.3955 -70.3027 109.186 -163.791 109.186 -263.163 +c0 -205.116 -166.977 -372.093 -372.093 -372.093z" /> + <glyph glyph-name="glyph150" unicode="☀" +d="M387.093 544.186c102.651 0 186.047 -83.3018 186.047 -186.046s-83.3955 -186.047 -186.047 -186.047c-102.837 0 -186.046 83.3027 -186.046 186.047s83.209 186.046 186.046 186.046zM433.604 683.721c0 -25.6973 -20.8838 -46.5117 -46.5117 -46.5117 +c-25.79 0 -46.5117 20.8145 -46.5117 46.5117c0 25.6982 20.7217 46.5117 46.5117 46.5117c25.6279 0 46.5117 -20.8135 46.5117 -46.5117zM108.023 590.697c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117 +s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM61.5117 404.697c25.6279 0 46.5117 -20.8135 46.5117 -46.5107c0 -25.7451 -20.8838 -46.5117 -46.5117 -46.5117c-25.791 0 -46.5117 20.7666 -46.5117 46.5117 +c0 25.6973 20.7207 46.5107 46.5117 46.5107zM108.023 125.581c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM340.581 32.5586 +c0 25.79 20.7217 46.5107 46.5117 46.5107c25.791 0 46.5117 -20.7207 46.5117 -46.5107c0 -25.6982 -20.7207 -46.5117 -46.5117 -46.5117c-25.79 0 -46.5117 20.8135 -46.5117 46.5117zM586.953 92.6973c-18.1621 18.1631 -18.1621 47.6055 0 65.7676 +c18.1631 18.1631 47.6055 18.1631 65.7676 0c18.3486 -18.1621 18.3486 -47.6045 0 -65.7676c-18.1621 -18.1621 -47.6045 -18.1621 -65.7676 0zM712.581 311.675c-25.5342 0 -46.418 20.79 -46.418 46.4648c0 25.791 20.8838 46.5117 46.6973 46.5117 +c25.5352 0 46.5117 -20.7676 46.2324 -46.4648c0.279297 -25.7451 -20.7207 -46.5586 -46.5117 -46.5117zM652.721 557.768c-18.1621 -18.1162 -47.6045 -18.1162 -65.7676 0c-18.1621 18.2559 -18.1621 47.6045 0 65.8135 +c18.1631 18.1162 47.6055 18.1631 65.7676 -0.0458984c18.3486 -18.1631 18.3486 -47.6514 0 -65.7676z" /> + </font> +</defs></svg> diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.ttf b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.ttf Binary files differnew file mode 100644 index 00000000..83342540 --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.ttf diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.woff b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.woff Binary files differnew file mode 100644 index 00000000..9596d8ec --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_fill.woff diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.afm b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.afm new file mode 100644 index 00000000..bf772836 --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.afm @@ -0,0 +1,170 @@ +StartFontMetrics 2.0 +Comment Generated by FontForge 20110222 +Comment Creation Date: Sun Apr 1 19:42:24 2012 +FontName IconicStroke +FullName Iconic Stroke +FamilyName Iconic +Weight Medium +Notice (Icons by PJ Onori, font creation script by Yann) +ItalicAngle 0 +IsFixedPitch false +UnderlinePosition -100 +UnderlineThickness 50 +Version 001.000 +EncodingScheme ISOLatin1Encoding +FontBBox 14 -14 760 731 +Descender -2147483648 +StartCharMetrics 151 +C 35 ; WX 681 ; N numbersign ; B 15 -14 667 731 ; +C 63 ; WX 402 ; N question ; B 15 -14 388 731 ; +C 64 ; WX 774 ; N at ; B 15 -14 760 731 ; +C 182 ; WX 588 ; N paragraph ; B 15 -14 574 731 ; +C -1 ; WX 495 ; N glyph0 ; B 15 -14 481 731 ; +C -1 ; WX 774 ; N glyph1 ; B 15 -14 760 731 ; +C -1 ; WX 495 ; N glyph2 ; B 15 -14 481 731 ; +C -1 ; WX 774 ; N glyph3 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph4 ; B 15 -14 760 731 ; +C -1 ; WX 681 ; N glyph5 ; B 15 -14 667 730 ; +C -1 ; WX 774 ; N glyph6 ; B 15 -14 760 731 ; +C -1 ; WX 309 ; N glyph7 ; B 15 -14 295 731 ; +C -1 ; WX 774 ; N glyph8 ; B 15 32 760 684 ; +C -1 ; WX 774 ; N glyph9 ; B 15 32 760 684 ; +C -1 ; WX 588 ; N glyph10 ; B 15 -14 574 731 ; +C -1 ; WX 774 ; N glyph11 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph12 ; B 15 -14 760 731 ; +C -1 ; WX 728 ; N glyph13 ; B 14 -14 713 731 ; +C -1 ; WX 774 ; N glyph14 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph15 ; B 15 -14 760 731 ; +C -1 ; WX 681 ; N glyph16 ; B 15 -14 667 731 ; +C -1 ; WX 774 ; N glyph17 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph18 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph19 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph20 ; B 15 172 760 545 ; +C -1 ; WX 774 ; N glyph21 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph22 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph23 ; B 15 218 760 498 ; +C -1 ; WX 774 ; N glyph24 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph25 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph26 ; B 15 172 760 545 ; +C -1 ; WX 402 ; N glyph27 ; B 15 -14 388 731 ; +C -1 ; WX 588 ; N glyph28 ; B 15 -14 574 731 ; +C -1 ; WX 588 ; N glyph29 ; B 15 -14 574 731 ; +C -1 ; WX 774 ; N glyph31 ; B 15 32 760 684 ; +C -1 ; WX 588 ; N glyph32 ; B 15 -14 574 731 ; +C -1 ; WX 588 ; N glyph33 ; B 15 32 574 684 ; +C -1 ; WX 774 ; N glyph34 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph35 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph36 ; B 15 32 760 684 ; +C -1 ; WX 774 ; N glyph37 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph38 ; B 15 79 760 638 ; +C -1 ; WX 681 ; N glyph39 ; B 15 32 667 684 ; +C -1 ; WX 774 ; N glyph40 ; B 15 -14 760 731 ; +C -1 ; WX 588 ; N glyph41 ; B 15 -14 574 731 ; +C -1 ; WX 774 ; N glyph42 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph43 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph44 ; B 15 -14 760 731 ; +C -1 ; WX 588 ; N glyph45 ; B 15 -14 574 731 ; +C -1 ; WX 774 ; N glyph46 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph47 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph48 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph49 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph50 ; B 15 -12 760 729 ; +C -1 ; WX 774 ; N glyph51 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph52 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph53 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph54 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph55 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph56 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph57 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph58 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph59 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph60 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph61 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph62 ; B 15 32 760 684 ; +C -1 ; WX 774 ; N glyph63 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph64 ; B 15 32 760 684 ; +C -1 ; WX 774 ; N glyph65 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph66 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph67 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph68 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph69 ; B 15 -14 760 731 ; +C -1 ; WX 402 ; N glyph70 ; B 15 -14 388 731 ; +C -1 ; WX 402 ; N glyph71 ; B 15 -14 388 731 ; +C -1 ; WX 774 ; N glyph72 ; B 15 172 760 545 ; +C -1 ; WX 774 ; N glyph73 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph74 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph75 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph76 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph77 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph78 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph79 ; B 14 79 760 638 ; +C -1 ; WX 774 ; N glyph80 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph81 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph82 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph83 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph84 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph85 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph86 ; B 15 125 760 591 ; +C -1 ; WX 774 ; N glyph87 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph88 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph89 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph90 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph91 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph92 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph93 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph94 ; B 15 218 760 498 ; +C -1 ; WX 774 ; N glyph95 ; B 15 -14 760 731 ; +C -1 ; WX 588 ; N glyph96 ; B 15 32 574 684 ; +C -1 ; WX 774 ; N glyph97 ; B 15 -14 760 731 ; +C -1 ; WX 588 ; N glyph98 ; B 15 -14 574 731 ; +C -1 ; WX 681 ; N glyph99 ; B 15 -14 667 731 ; +C -1 ; WX 774 ; N glyph100 ; B 15 -14 760 731 ; +C -1 ; WX 681 ; N glyph101 ; B 15 -14 667 731 ; +C -1 ; WX 774 ; N glyph102 ; B 15 32 760 684 ; +C -1 ; WX 774 ; N glyph103 ; B 15 79 760 638 ; +C -1 ; WX 774 ; N glyph104 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph105 ; B 14 -14 760 731 ; +C -1 ; WX 774 ; N glyph106 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph107 ; B 15 -14 759 731 ; +C -1 ; WX 681 ; N glyph108 ; B 15 -14 667 731 ; +C -1 ; WX 774 ; N glyph109 ; B 15 -14 760 731 ; +C -1 ; WX 402 ; N glyph110 ; B 15 -14 388 731 ; +C -1 ; WX 774 ; N glyph111 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph112 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph113 ; B 15 265 760 452 ; +C -1 ; WX 774 ; N glyph114 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph115 ; B 15 32 760 684 ; +C -1 ; WX 774 ; N glyph117 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph118 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph119 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph120 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph121 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph123 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph124 ; B 15 -14 760 731 ; +C -1 ; WX 309 ; N glyph125 ; B 15 -14 295 731 ; +C -1 ; WX 774 ; N glyph126 ; B 15 58 760 658 ; +C -1 ; WX 588 ; N glyph127 ; B 15 -14 574 731 ; +C -1 ; WX 774 ; N glyph128 ; B 15 -14 760 731 ; +C -1 ; WX 681 ; N glyph129 ; B 15 -14 667 731 ; +C -1 ; WX 774 ; N glyph130 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph131 ; B 15 -14 760 731 ; +C -1 ; WX 402 ; N glyph132 ; B 15 -14 388 731 ; +C -1 ; WX 774 ; N glyph133 ; B 15 -14 760 731 ; +C -1 ; WX 588 ; N glyph134 ; B 15 -14 574 731 ; +C -1 ; WX 774 ; N glyph135 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph136 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph137 ; B 15 32 760 684 ; +C -1 ; WX 774 ; N glyph138 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph139 ; B 15 -14 760 731 ; +C -1 ; WX 588 ; N glyph140 ; B 15 -14 574 731 ; +C -1 ; WX 774 ; N glyph141 ; B 15 172 760 545 ; +C -1 ; WX 774 ; N glyph142 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph143 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph144 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph146 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph147 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph148 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph149 ; B 15 -14 760 731 ; +C -1 ; WX 774 ; N glyph150 ; B 15 -14 760 731 ; +EndCharMetrics +EndFontMetrics diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.css b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.css new file mode 100644 index 00000000..f311e412 --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.css @@ -0,0 +1 @@ +@font-face { font-family: 'IconicStroke'; src: url('iconic_stroke.eot'); src: url('iconic_stroke.eot?#iefix') format('embedded-opentype'), url('iconic_stroke.ttf') format('truetype'), url('iconic_stroke.svg#iconic') format('svg'); font-weight: normal; font-style: normal; }.iconic { display:inline-block; font-family: 'IconicStroke'; }.lightbulb:before {content:'\e063';}.equalizer:before {content:'\e052';}.map_pin_stroke:before {content:'\e068';}.brush_alt:before {content:'\e01c';}.move:before {content:'\e03e';}.paperclip:before {content:'\e08a';}.pen_alt_stroke:before {content:'\e005';}.move_vertical:before {content:'\e03b';}.book_alt2:before {content:'\e06a';}.layers:before {content:'\e01f';}.pause:before {content:'\e049';}.layers_alt:before {content:'\e020';}.cloud_upload:before {content:'\e045';}.chart_alt:before {content:'\e029';}.fullscreen_exit_alt:before {content:'\e051';}.cloud_download:before {content:'\e044';}.comment_alt2_stroke:before {content:'\e004';}.mail:before {content:'\2709';}.check_alt:before {content:'\2714';}.document_stroke:before {content:'\e066';}.battery_charging:before {content:'\e05d';}.stop:before {content:'\e04a';}.arrow_up:before {content:'\2191';}.move_horizontal:before {content:'\e038';}.compass:before {content:'\e021';}.minus_alt:before {content:'\e009';}.battery_empty:before {content:'\e05c';}.map_pin_alt:before {content:'\e002';}.unlock_stroke:before {content:'\e076';}.lock_stroke:before {content:'\e075';}.question_mark:before {content:'\003f';}.list:before {content:'\e055';}.upload:before {content:'\e043';}.reload:before {content:'\e030';}.loop_alt4:before {content:'\e035';}.loop_alt3:before {content:'\e034';}.loop_alt2:before {content:'\e033';}.loop_alt1:before {content:'\e032';}.left_quote:before {content:'\275d';}.x:before {content:'\2717';}.last:before {content:'\e04d';}.document_alt_stroke:before {content:'\e000';}.bars:before {content:'\e06f';}.arrow_left:before {content:'\2190';}.arrow_down:before {content:'\2193';}.download:before {content:'\e042';}.home:before {content:'\2302';}.calendar:before {content:'\e001';}.right_quote_alt:before {content:'\e012';}.fullscreen:before {content:'\e04e';}.dial:before {content:'\e058';}.plus_alt:before {content:'\e008';}.clock:before {content:'\e079';}.movie:before {content:'\e060';}.steering_wheel:before {content:'\e024';}.pen:before {content:'\270e';}.tag_stroke:before {content:'\e02b';}.pin:before {content:'\e067';}.denied:before {content:'\26d4';}.left_quote_alt:before {content:'\e011';}.volume_mute:before {content:'\e071';}.arrow_up_alt2:before {content:'\e018';}.list_nested:before {content:'\e056';}.arrow_up_alt1:before {content:'\e014';}.comment_stroke:before {content:'\e06d';}.undo:before {content:'\e02f';}.umbrella:before {content:'\2602';}.bolt:before {content:'\26a1';}.article:before {content:'\e053';}.read_more:before {content:'\e054';}.beaker:before {content:'\e023';}.beaker_alt:before {content:'\e010';}.battery_full:before {content:'\e073';}.arrow_right:before {content:'\2192';}.new_window:before {content:'\e059';}.plus:before {content:'\2795';}.cog:before {content:'\2699';}.key_stroke:before {content:'\26bf';}.first:before {content:'\e04c';}.comment_alt1_stroke:before {content:'\e003';}.trash_stroke:before {content:'\e05a';}.image:before {content:'\e027';}.chat_alt_stroke:before {content:'\e007';}.cd:before {content:'\e064';}.right_quote:before {content:'\275e';}.brush:before {content:'\e01b';}.cloud:before {content:'\2601';}.eye:before {content:'\e025';}.play_alt:before {content:'\e048';}.transfer:before {content:'\e041';}.pen_alt2:before {content:'\e006';}.camera:before {content:'\e070';}.move_horizontal_alt2:before {content:'\e03a';}.curved_arrow:before {content:'\2935';}.move_horizontal_alt1:before {content:'\e039';}.aperture:before {content:'\e026';}.reload_alt:before {content:'\e031';}.magnifying_glass:before {content:'\e074';}.iphone:before {content:'\e06e';}.fork:before {content:'\e046';}.box:before {content:'\e06b';}.bars_alt:before {content:'\e00a';}.heart_stroke:before {content:'\2764';}.volume:before {content:'\e072';}.x_alt:before {content:'\2718';}.link:before {content:'\e077';}.moon_stroke:before {content:'\263e';}.eyedropper:before {content:'\e01e';}.spin:before {content:'\e036';}.rss:before {content:'\e02c';}.info:before {content:'\2139';}.target:before {content:'\e02a';}.cursor:before {content:'\e057';}.minus:before {content:'\2796';}.book_alt:before {content:'\e00b';}.headphones:before {content:'\e061';}.hash:before {content:'\0023';}.arrow_left_alt1:before {content:'\e013';}.arrow_left_alt2:before {content:'\e017';}.fullscreen_exit:before {content:'\e050';}.share:before {content:'\e02e';}.fullscreen_alt:before {content:'\e04f';}.at:before {content:'\0040';}.chat:before {content:'\e05e';}.move_vertical_alt2:before {content:'\e03d';}.move_vertical_alt1:before {content:'\e03c';}.check:before {content:'\2713';}.mic:before {content:'\e05f';}.calendar_alt_stroke:before {content:'\e06c';}.book:before {content:'\e069';}.move_alt1:before {content:'\e03f';}.move_alt2:before {content:'\e040';}.award_stroke:before {content:'\e022';}.wrench:before {content:'\e078';}.play:before {content:'\e047';}.star:before {content:'\2605';}.chart:before {content:'\e028';}.rain:before {content:'\26c6';}.folder_stroke:before {content:'\e065';}.sun_stroke:before {content:'\2600';}.user:before {content:'\e062';}.battery_half:before {content:'\e05b';}.aperture_alt:before {content:'\e00c';}.eject:before {content:'\e04b';}.arrow_down_alt1:before {content:'\e016';}.pilcrow:before {content:'\00b6';}.arrow_down_alt2:before {content:'\e01a';}.arrow_right_alt1:before {content:'\e015';}.arrow_right_alt2:before {content:'\e019';}.rss_alt:before {content:'\e02d';}.spin_alt:before {content:'\e037';}
\ No newline at end of file diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.eot b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.eot Binary files differnew file mode 100644 index 00000000..eb04fd37 --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.eot diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.otf b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.otf Binary files differnew file mode 100644 index 00000000..0d132a95 --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.otf diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.svg b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.svg new file mode 100644 index 00000000..e46ede76 --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.svg @@ -0,0 +1,553 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg> +<metadata> +Created by FontForge 20110222 at Sun Apr 1 19:42:24 2012 + By PJ Onori,,, +Icons by PJ Onori, font creation script by Yann +</metadata> +<defs> +<font id="IconicStroke" horiz-adv-x="774" > + <font-face + font-family="Iconic" + font-weight="500" + font-stretch="normal" + units-per-em="1000" + panose-1="2 0 6 3 0 0 0 0 0 0" + ascent="800" + descent="-200" + bbox="14.9997 -13.9766 759.23 730.262" + underline-thickness="50" + underline-position="-100" + unicode-range="U+0023-E08A" + /> + <missing-glyph /> + <glyph glyph-name="glyph0" unicode="" horiz-adv-x="495" +d="M247.559 637.023c-77 0 -139.582 -62.7676 -139.582 -139.907c0 -44.0469 20.1631 -84.5576 55.2324 -111c52.4883 -39.6973 73.7676 -83.5811 81.0234 -120.465h6.65137c7.30176 36.8838 28.5117 80.7676 81.0234 120.465c35.1162 26.4189 55.1855 66.9307 55.1855 111 +c0 77.1396 -62.5342 139.907 -139.534 139.907zM247.559 730.232c128.441 0 232.558 -104.372 232.558 -233.093c0 -76.3252 -35.8838 -143 -92.3018 -185.512c-25.8838 -19.6279 -47.2793 -44.8838 -47.2793 -79.7676v-59.4189h-185.907v59.4189 +c0 34.8838 -21.3955 60.1396 -47.3252 79.7676c-56.3721 42.5117 -92.3027 109.187 -92.3027 185.512c0 128.721 104.116 233.093 232.559 233.093zM154.628 -13.9531v93.209h185.907v-93.209h-185.907z" /> + <glyph glyph-name="glyph1" unicode="" +d="M480.116 265.116v-93.0234h-46.5117v-139.534c0 -25.6982 -20.7207 -46.5117 -46.5117 -46.5117c-25.6279 0 -46.5117 20.8135 -46.5117 46.5117v139.534h-46.5117v93.0234h46.5117v418.604c0 25.6982 20.8838 46.5117 46.5117 46.5117 +c25.791 0 46.5117 -20.8135 46.5117 -46.5117v-418.604h46.5117zM759.186 544.186v-93.0225h-46.5107v-418.604c0 -25.6982 -20.7217 -46.5117 -46.5117 -46.5117c-25.6279 0 -46.5117 20.8135 -46.5117 46.5117v418.604h-46.5117v93.0225h46.5117v139.535 +c0 25.6982 20.8838 46.5117 46.5117 46.5117c25.79 0 46.5117 -20.8135 46.5117 -46.5117v-139.535h46.5107zM201.047 451.163v-93.0234h-46.5117v-325.581c0 -25.6982 -20.7217 -46.5117 -46.5117 -46.5117c-25.6279 0 -46.5117 20.8135 -46.5117 46.5117v325.581h-46.5117 +v93.0234h46.5117v232.558c0 25.6982 20.8838 46.5117 46.5117 46.5117c25.79 0 46.5117 -20.8135 46.5117 -46.5117v-232.558h46.5117z" /> + <glyph glyph-name="glyph2" unicode="" horiz-adv-x="495" +d="M247.453 637.209c-39.1162 0 -72.209 -14.5342 -98.5576 -40.8838c-26.3486 -26.3486 -40.8838 -61.3945 -40.8838 -98.6504s14.5352 -72.3027 40.9072 -98.6055c3.62793 -3.53418 51.5811 -51.2324 98.5576 -125.906c47.3262 74.79 95.4648 122.674 99.3721 126.534 +c25.6982 25.6748 40.2324 60.7217 40.2324 97.9775s-14.5342 72.3018 -40.8838 98.6045c-26.3486 26.3955 -61.418 40.9297 -98.7441 40.9297zM247.453 730.232c59.6045 0 119.094 -22.7207 164.512 -68.1396c90.8369 -90.8135 90.8369 -238.069 0 -328.86 +c0 0 -164.512 -161.163 -164.512 -347.209c0 186.046 -164.325 347.209 -164.325 347.209c-90.8369 90.8145 -90.8369 238.07 0 328.86c45.4189 45.4189 104.907 68.1396 164.325 68.1396zM294.058 497.675c0 -25.6982 -20.8135 -46.5117 -46.6045 -46.5117 +c-27.5576 0 -46.418 20.8135 -46.418 46.5117c0 25.6973 18.8604 46.5107 46.418 46.5107c25.791 0 46.6045 -20.8135 46.6045 -46.5107z" /> + <glyph glyph-name="glyph3" unicode="" +d="M294.069 172.093c0 -102.744 -83.3018 -186.046 -186.046 -186.046c-33.791 0 -65.3955 9 -92.6514 24.6973l-0.37207 0.279297c55.6045 32.1631 93.0234 92.1162 93.0234 160.884v0.185547c0 51.4189 41.6045 93.0234 93.0234 93.0234 +c51.3252 0 93.0225 -41.6045 93.0225 -93.0234zM731.93 702.977c36.3496 -36.3252 36.3496 -95.209 0 -131.535l-351.744 -351.837c-17.0693 64.2324 -67.3945 114.465 -131.534 131.628l351.744 351.744c36.3252 36.3262 95.209 36.3262 131.534 0z" /> + <glyph glyph-name="glyph4" unicode="" +d="M433.604 265.116v-139.535h93.0234l-139.535 -139.534l-139.534 139.534h93.0225v139.535h93.0234zM340.581 451.163v139.534h-93.0225l139.534 139.535l139.535 -139.535h-93.0234v-139.534h-93.0234zM294.069 311.628h-139.534v-93.0234l-139.535 139.535 +l139.535 139.535v-93.0234h139.534v-93.0234zM480.116 404.651h139.535v93.0234l139.534 -139.535l-139.534 -139.535v93.0234h-139.535v93.0234z" /> + <glyph glyph-name="glyph5" unicode="" horiz-adv-x="681" +d="M270.813 -13.0469c-68.3486 0 -132.581 26.6982 -180.86 75.0469c-48.3252 48.3252 -74.9531 112.465 -74.9531 180.86c0.046875 68.3252 26.6279 132.535 74.9531 180.814l258.978 253.372c69.6279 69.6279 192.488 69.9062 262.721 -0.37207 +c72.4883 -72.582 72.4883 -190.582 0 -263.07l-233.023 -227.325c-44.8838 -44.8838 -118.651 -44.9766 -163.977 0.37207c-45.3262 45.418 -45.3262 119.14 0 164.465l90.209 90.209l65.7676 -65.7666l-90.209 -90.21 +c-5.9541 -5.95312 -6.81445 -12.8604 -6.81445 -16.4414c0 -3.58203 0.860352 -10.4883 6.81445 -16.4883c11.9062 -11.8145 20.9766 -11.8145 32.8838 0l232.93 227.372c35.8838 35.8369 35.8838 94.8369 -0.37207 131.14c-35.1631 35.1621 -96.3955 35.1621 -131.535 0 +l-258.977 -253.372c-30.3721 -30.3955 -47.3252 -71.2334 -47.3252 -114.698c0 -43.5117 16.9531 -84.3955 47.6973 -115.093c61.5117 -61.582 168.698 -61.582 230.187 0l116.279 116.279l65.7666 -65.7676l-116.278 -116.279 +c-48.3262 -48.3252 -112.535 -75.0469 -180.861 -75.0469z" /> + <glyph glyph-name="glyph6" unicode="" +d="M704.675 675.721c72.6738 -72.6738 72.6738 -190.396 0 -263.069l-426.605 -426.604h-263.069l0.720703 263.813l425.884 425.86c36.3262 36.3486 83.9307 54.5117 131.535 54.5117s95.209 -18.1631 131.535 -54.5117zM239.559 79.0693l398.534 398.442l-131.534 131.535 +l-394.279 -394.256c36.5342 31.8135 91.4883 31.3486 126.279 -3.44238c36.3252 -36.3486 36.3252 -95.9531 0 -132.279h1z" /> + <glyph glyph-name="glyph7" unicode="" horiz-adv-x="309" +d="M201.047 265.116v-139.535h93.0225l-139.534 -139.534l-139.535 139.534h93.0234v139.535h93.0234zM108.023 451.163v139.534h-93.0234l139.535 139.535l139.534 -139.535h-93.0225v-139.534h-93.0234z" /> + <glyph glyph-name="glyph8" unicode="" +d="M387.093 590.697c0 0 93.0234 93.0234 372.093 93.0234v-558.14c-281.977 0 -372.093 -93.0225 -372.093 -93.0225s-90.1162 93.0225 -372.093 93.0225v558.14c279.069 0 372.093 -93.0234 372.093 -93.0234zM108.023 590.697v-374.627 +c118.232 -10.001 190.768 -37.3496 232.558 -59.4189v374.628c-41.79 22.1621 -114.325 49.5117 -232.558 59.418zM666.163 216.07v374.627c-118.279 -9.90625 -190.814 -37.2559 -232.559 -59.418v-374.628c41.7441 22.0928 114.279 49.418 232.559 59.4189z" /> + <glyph glyph-name="glyph9" unicode="" +d="M15 218.604l372.093 -93.0234l372.093 93.0234v-93.0234l-372.093 -93.0225l-372.093 93.0225v93.0234zM15 404.651l372.093 -93.0234l372.093 93.0234v-93.0234l-372.093 -93.0234l-372.093 93.0234v93.0234zM15 590.697l372.093 93.0234l372.093 -93.0234v-93.0225 +l-372.093 -93.0234l-372.093 93.0234v93.0225z" /> + <glyph glyph-name="glyph10" unicode="" horiz-adv-x="588" +d="M15 -13.9531v744.186h186.047v-744.186h-186.047zM387.093 -13.9531v744.186h186.047v-744.186h-186.047z" /> + <glyph glyph-name="glyph11" unicode="" +d="M15 172.093l372.093 -93.0234l372.093 93.0234v-93.0234l-372.093 -93.0225l-372.093 93.0225v93.0234zM15 358.14l372.093 -93.0234l372.093 93.0234v-93.0234l-372.093 -93.0234l-372.093 93.0234v93.0234zM15 544.186l372.093 -93.0225l372.093 93.0225v-93.0225 +l-372.093 -93.0234l-372.093 93.0234v93.0225zM15 730.232l372.093 -93.0234l372.093 93.0234v-93.0234l-372.093 -93.0234l-372.093 93.0234v93.0234z" /> + <glyph glyph-name="glyph12" unicode="" +d="M573.14 637.209c102.651 0 186.046 -83.3945 186.046 -186.046s-83.3945 -186.047 -186.046 -186.047h-372.093c-102.605 0 -186.047 83.3955 -186.047 186.047s83.4414 186.046 186.047 186.046c8.30176 0 16.4414 -1.27832 24.6279 -2.37207 +c31.9297 56.6982 91.9297 95.3955 161.418 95.3955c68.0469 0 128 -38.3252 160.419 -95.5576c8.46484 1.09277 16.9072 2.53418 25.6279 2.53418zM573.14 358.14c51.2324 0 93.0234 41.791 93.0234 93.0234s-41.791 93.0225 -93.0234 93.0225 +s-93.0234 -41.79 -93.0234 -93.0225h-93.0234c0 60.5811 29.5352 113.906 74.4424 147.884c-17.1631 23.2559 -44.3262 38.1621 -74.4424 38.1621c-51.2783 0 -93.0234 -41.79 -93.0234 -93.0234c0 -11.2549 1.9541 -22.1621 5.81445 -32.5342l-87.1162 -32.5117 +c-7.62793 20.3486 -11.4424 41.791 -11.6279 63.7676c-47.9307 -1.44238 -93.1162 -40.6982 -93.1162 -91.7441c0 -51.2324 41.7441 -93.0234 93.0234 -93.0234h372.093zM433.651 125.581v-139.534h-93.0234v139.534h-93.0234l139.581 139.535l139.442 -139.535h-92.9766z +" /> + <glyph glyph-name="glyph13" unicode="" horiz-adv-x="728" +d="M353.006 278.559l-246 -246c-122.675 141.534 -122.675 350.465 0 492zM389.797 311.628l-301.86 299.953c83.0225 67.9541 185.86 111.559 301.86 118.651v-418.604zM435.587 636.837c157.466 -24.1621 277.116 -157.512 277.116 -322.116 +c0 -181.512 -145.256 -328.674 -327.069 -328.674c-74.0469 0 -139.279 25.0693 -193.419 64.8604l243.372 241.465v344.465z" /> + <glyph glyph-name="glyph14" unicode="" +d="M540.256 139.209l-60.1396 -60.1396v186.047h186.047l-60.1396 -60.1396l153.162 -153.162l-65.7666 -65.7676zM167.256 512.303l-152.256 152.162l65.7676 65.7676l152.256 -152.163l61.0459 59.1396l-0.90625 -185.046l-185.14 -1zM15 51.8145l153.163 153.162 +l-60.1396 60.1396h186.046v-186.047l-60.1387 60.1396l-153.163 -153.162zM666.884 451.163h-186.768v186.721l60.4189 -60.3486l152.697 152.697l65.9531 -66l-152.604 -152.697z" /> + <glyph glyph-name="glyph15" unicode="" +d="M573.14 637.209c102.651 0 186.046 -83.4883 186.046 -186.046c0 -102.559 -83.3945 -186.047 -186.046 -186.047h-139.535v-139.535h93.0234l-139.581 -139.534l-139.488 139.534h93.0225v139.535h-139.534c-102.605 0 -186.047 83.4883 -186.047 186.047 +c0 102.558 83.4414 186.046 186.047 186.046c8.30176 0 16.4414 -1.18555 24.6279 -2.27832c31.9297 56.5107 91.9297 95.3018 161.418 95.3018c68.0469 0 128 -38.2559 160.419 -95.6514c8.46484 1.25586 16.9072 2.62793 25.6279 2.62793zM573.14 358.14 +c51.2324 0 93.0234 41.6973 93.0234 93.0234c0 51.3252 -41.791 93.0225 -93.0234 93.0225s-93.0234 -41.6973 -93.0234 -93.0225h-93.0234c0 60.5811 29.5352 114 74.4424 147.977c-17.1631 23.1631 -44.3262 38.0693 -74.4424 38.0693 +c-51.2783 0 -93.0234 -41.6973 -93.0234 -93.0234c0 -11.1621 1.9541 -22.1621 5.81445 -32.4414l-87.1162 -32.6973c-7.62793 20.3486 -11.4424 41.9766 -11.6279 63.8604c-47.9307 -1.34863 -93.1162 -40.791 -93.1162 -91.7441 +c0 -51.3262 41.7441 -93.0234 93.0234 -93.0234h372.093z" /> + <glyph glyph-name="glyph16" unicode="" horiz-adv-x="681" +d="M340.581 637.209c-128.278 0 -232.558 -104.278 -232.558 -232.558c0 -61.3262 23.8838 -119.279 67.2324 -163.232l26.9766 -27.3496l-0.185547 -38.418l-0.09375 -15.9072l10.6279 7l33.9775 22.5117l39.6045 -9.81445 +c20.1621 -4.90625 37.9766 -7.34863 54.418 -7.34863c128.279 0 232.559 104.279 232.559 232.559s-104.279 232.558 -232.559 232.558zM340.581 730.232c179.768 0 325.582 -145.813 325.582 -325.581s-145.814 -325.582 -325.582 -325.582 +c-26.5342 0 -51.9531 4.00098 -76.6738 10.0938l-155.884 -103.116l1 190.046c-58.0469 58.8604 -94.0234 139.442 -94.0234 228.559c0 179.768 145.813 325.581 325.581 325.581z" /> + <glyph glyph-name="glyph17" unicode="✉" +d="M388.907 370.768l-373.907 175.604v90.8369h744.186v-91.1162zM389.093 267.931l370.093 175.232v-364.094h-744.186v364.651z" /> + <glyph glyph-name="glyph18" unicode="✔" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM329.419 186.441l289.395 289.419l-65.7666 65.7676l-223.651 -223.651l-105.419 105.465 +l-65.7676 -65.7666z" /> + <glyph glyph-name="glyph19" unicode="" +d="M527 730.232l232.186 -232.558v-511.256l-184.139 153.884l-186.326 -154.256l-186.488 154.418l-187.232 -152.977v742.744h512zM666.628 173.535v186.046h-279.232v279.07h-279.256v-465.116l95.0234 74.8604l185.581 -153.698l185.953 153.884zM480.488 452.604 +h186.14c-37.2559 37.2559 -148.535 148.442 -186.14 186.047v-186.047z" /> + <glyph glyph-name="glyph20" unicode="" +d="M666.163 451.163h93.0225v-186.047h-93.0225v-46.5117c0 -25.6279 -20.8838 -46.5117 -46.5117 -46.5117h-558.14c-25.6279 0 -46.5117 20.8838 -46.5117 46.5117v92.0234h148.535c19.1621 -54.0469 70.3252 -93.0234 131 -93.0234v47.5117h94.5576v46.5117h-94.5576 +v93.0234h92.6504v46.5117h-92.6504v45.5117c-60.6982 0 -111.838 -38.9775 -131 -93.0234h-148.535v94.0234c0 25.5811 20.8838 46.5107 46.5117 46.5107h558.14c25.6279 0 46.5117 -20.9297 46.5117 -46.5107v-46.5117z" /> + <glyph glyph-name="glyph21" unicode="" +d="M15 -13.9531v744.186h744.186v-744.186h-744.186z" /> + <glyph glyph-name="glyph22" unicode="↑" +d="M15 358.512l372.14 371.721l372.046 -371.721l-131.93 -131.907l-146.977 146.977v-387.534h-186.535v387.534c-72.8369 -72.8369 -146.837 -146.79 -146.837 -146.79z" /> + <glyph glyph-name="glyph23" unicode="" +d="M294.069 311.628h-139.534v-93.0234l-139.535 139.535l139.535 139.535v-93.0234h139.534v-93.0234zM480.116 404.651h139.535v93.0234l139.534 -139.535l-139.534 -139.535v93.0234h-139.535v93.0234z" /> + <glyph glyph-name="glyph24" unicode="" +d="M387.093 637.209c-153.884 0 -279.069 -125.186 -279.069 -279.069s125.186 -279.07 279.069 -279.07s279.07 125.187 279.07 279.07s-125.187 279.069 -279.07 279.069zM387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093 +s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM436.512 407.465c-17.9072 17.9072 -42.8838 22.8604 -65.7676 17.21l202.396 119.511l-119.907 -205.162c6.7207 23.5576 1.81445 49.8604 -16.7207 68.4414z +M337.86 308.814c18.6279 -18.6289 44.9531 -23.5352 68.5811 -16.7217l-205.395 -120l119.558 202.675c-5.62793 -22.9307 -0.720703 -48.0234 17.2559 -65.9531z" /> + <glyph glyph-name="glyph25" unicode="" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM573.14 311.628v93.0234h-372.093v-93.0234h372.093z" /> + <glyph glyph-name="glyph26" unicode="" +d="M759.186 451.163v-186.047h-93.0225v-46.5117c0 -25.5352 -20.8838 -46.5117 -46.5117 -46.5117h-558.14c-25.6279 0 -46.5117 20.9766 -46.5117 46.5117v279.07c0 25.5342 20.8838 46.5107 46.5117 46.5107h558.14c25.6279 0 46.5117 -20.9766 46.5117 -46.5107 +v-46.5117h93.0225zM573.14 265.116v186.047h-465.116v-186.047h465.116z" /> + <glyph glyph-name="glyph27" unicode="" horiz-adv-x="402" +d="M201.047 730.232c102.744 0 186.046 -83.3018 186.046 -186.047c0 -102.744 -186.046 -558.139 -186.046 -558.139s-186.047 455.395 -186.047 558.139c0 102.745 83.3027 186.047 186.047 186.047zM201.047 451.163c51.3721 0 93.0225 41.6514 93.0225 93.0225 +c0 51.373 -41.6504 93.0234 -93.0225 93.0234s-93.0234 -41.6504 -93.0234 -93.0234c0 -51.3711 41.6514 -93.0225 93.0234 -93.0225z" /> + <glyph glyph-name="glyph28" unicode="" horiz-adv-x="588" +d="M340.675 730.232c128.186 0 232.465 -104.372 232.465 -232.558v-372.094c0 -77.0225 -62.5811 -139.534 -139.535 -139.534h-279.116c-76.9072 0 -139.488 62.5117 -139.488 139.534v325.582h465.116v46.5117c0 76.8604 -62.4883 139.534 -139.441 139.534 +c-76.9541 0 -139.488 -62.6738 -139.488 -139.534h-93.0234c0 128.186 104.278 232.558 232.512 232.558zM433.604 79.0693c25.6279 0 46.5117 20.8145 46.5117 46.5117v232.559h-372.14v-232.559c0 -25.6973 20.8838 -46.5117 46.5117 -46.5117h279.116zM340.581 218.604 +c0 -25.79 -20.8135 -46.5117 -46.5117 -46.5117c-25.6973 0 -46.5107 20.7217 -46.5107 46.5117c0 25.6279 20.8135 46.5117 46.5107 46.5117c25.6982 0 46.5117 -20.8838 46.5117 -46.5117z" /> + <glyph glyph-name="glyph29" unicode="" horiz-adv-x="588" +d="M340.675 730.232c128.186 0 232.465 -104.279 232.465 -232.558v-372.094c0 -76.8604 -62.5117 -139.534 -139.535 -139.534h-279.116c-76.8135 0 -139.488 62.6738 -139.488 139.534v325.582h93.1631v46.5117c0 128.278 104.372 232.558 232.512 232.558z +M201.186 497.675v-46.5117h278.931v46.5117c0 77.0225 -62.5117 139.534 -139.441 139.534c-76.8613 0 -139.489 -62.5117 -139.489 -139.534zM433.604 79.0693c25.791 0 46.5117 20.8838 46.5117 46.5117v232.559h-372.14v-232.559 +c0 -25.6279 20.8838 -46.5117 46.5117 -46.5117h279.116zM340.675 218.604c0 -25.6279 -20.8838 -46.5117 -46.5117 -46.5117c-25.791 0 -46.5117 20.8838 -46.5117 46.5117c0 25.791 20.7207 46.5117 46.5117 46.5117c25.6045 0 46.5117 -20.7207 46.5117 -46.5117z" /> + <glyph glyph-name="question" unicode="?" horiz-adv-x="402" +d="M238.256 32.5586c0 -25.6279 -20.8145 -46.5117 -46.5117 -46.5117s-46.5117 20.8838 -46.5117 46.5117c0 25.79 20.8145 46.5107 46.5117 46.5107s46.5117 -20.7207 46.5117 -46.5107zM193.512 126.116c-31.0703 0 -60.2324 12.1631 -82.209 34.1631 +c-21.9775 25.6973 -34.0703 54.8604 -34.0703 85.9297c0 31.0703 12.0928 60.2324 34.0703 78.3955l155.534 155.535c17.5586 17.6279 27.2324 40.9766 27.2324 65.7676c0 24.8838 -9.67383 48.2324 -27.2559 65.7676c-36.2549 36.2559 -95.2549 36.3252 -131.488 0 +c-17.6279 -17.5352 -27.3018 -40.8604 -27.3018 -65.7676h-93.0234c0 49.6973 19.3955 96.4648 54.6045 131.628c70.2324 70.3018 192.675 70.2324 263 -0.09375c35.1396 -35.0459 54.4883 -81.7441 54.4883 -131.534c0 -49.6982 -19.3486 -96.3955 -54.5117 -131.535 +l-155.534 -151.697c-9.04688 -9.09375 -9.04688 -23.791 0 -32.8838c9.09277 -9.09375 23.79 -9.09375 32.8838 0c5.90625 6 6.81348 12.9062 6.81348 16.5342h93.0234c0 -31.0693 -12.0928 -60.3252 -34.0703 -86.0225c-21.9531 -22 -51.1162 -34.1865 -82.1855 -34.1865z +" /> + <glyph glyph-name="glyph31" unicode="" +d="M15 637.209c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM15 451.163c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117 +s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM15 265.116c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM15 79.0693 +c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117c0 -31.0068 -15.5039 -46.5107 -46.5117 -46.5107s-46.5117 15.5039 -46.5117 46.5107zM201.047 590.697v93.0234h558.139v-93.0234h-558.139zM201.047 404.651v93.0234h558.139v-93.0234 +h-558.139zM201.047 218.604v93.0234h558.139v-93.0234h-558.139zM201.047 32.5586v93.0225h558.139v-93.0225h-558.139z" /> + <glyph glyph-name="glyph32" unicode="" horiz-adv-x="588" +d="M15 623.907v106.325h558.14v-106.325h-558.14zM201.047 411.279h-93.0234l185.768 212.628l186.325 -212.628h-93.0234v-425.232h-186.046v425.232z" /> + <glyph glyph-name="glyph33" unicode="" horiz-adv-x="588" +d="M480.116 311.628h93.0234c0 -154.163 -125 -279.069 -279.07 -279.069c-154.069 0 -279.069 124.906 -279.069 279.069s125 279.069 279.069 279.069h55.2334l-27.4424 27.2559l65.7676 65.7676l139.813 -139.535l-139.813 -139.977l-65.7676 65.7676l27.0703 27.0703 +l-54.8613 0.62793c-102.65 0 -186.046 -83.4893 -186.046 -186.047c0 -102.559 83.3955 -186.047 186.046 -186.047c102.651 0 186.047 83.4883 186.047 186.047z" /> + <glyph glyph-name="glyph34" unicode="" +d="M666.163 311.628h93.0225c0 -76.8604 -62.5811 -139.535 -139.534 -139.535h-418.791v-93.0234l-185.86 139.535l185.86 139.535v-93.0234h418.791c25.6279 0 46.5117 20.8838 46.5117 46.5117zM154.535 451.163c-25.6279 0 -46.5117 -20.8838 -46.5117 -46.5117 +h-93.0234c0 77.0234 62.5811 139.534 139.535 139.534h418.604v93.0234l186.046 -139.534l-186.046 -139.535v93.0234h-418.604z" /> + <glyph glyph-name="glyph35" unicode="" +d="M666.163 358.14h93.0225v-46.5117c0 -76.8604 -62.5811 -139.535 -139.534 -139.535h-325.675l0.0927734 -93.0234l-186.046 139.535l186.046 139.535l-0.0927734 -93.0234h325.675c25.6279 0 46.5117 20.8838 46.5117 46.5117v46.5117zM108.023 404.651v-46.5117 +h-93.0234v46.5117c0 77.0234 62.5811 139.534 139.535 139.534h325.581v93.0234l185.86 -139.534l-185.86 -139.535v93.0234h-325.581c-25.6279 0 -46.5117 -20.8145 -46.5117 -46.5117z" /> + <glyph glyph-name="glyph36" unicode="" +d="M478.837 218.604l139.722 186.047l140.627 -186.047h-93.0225v-46.5117c0 -76.9531 -62.582 -139.534 -139.535 -139.534h-279.069c-76.9541 0 -139.535 62.5811 -139.535 139.534v46.5117h93.0234v-46.5117c0 -25.6279 20.8838 -46.5117 46.5117 -46.5117h279.069 +c25.6279 0 46.5117 20.8838 46.5117 46.5117v46.5117h-94.3027zM295.349 497.675l-139.721 -186.047l-140.628 186.047h93.0234v46.5107c0 76.9541 62.5811 139.535 139.535 139.535h279.069c76.9531 0 139.535 -62.5811 139.535 -139.535v-46.5107h-93.0234v46.5107 +c0 25.6289 -20.8838 46.5117 -46.5117 46.5117h-279.069c-25.6279 0 -46.5117 -20.8828 -46.5117 -46.5117v-46.5107h94.3018z" /> + <glyph glyph-name="glyph37" unicode="" +d="M619.651 358.14l139.534 -139.535h-93.0225c0 -76.9531 -62.582 -139.535 -139.535 -139.535h-279.069c-76.9541 0 -139.535 62.582 -139.535 139.535v46.5117h93.0234v-46.5117c0 -25.6279 20.8838 -46.5117 46.5117 -46.5117h279.069 +c25.6279 0 46.5117 20.8838 46.5117 46.5117h-93.0234zM526.628 637.209c76.9531 0 139.535 -62.5811 139.535 -139.534v-46.5117h-93.0234v46.5117c0 25.6279 -20.8838 46.5107 -46.5117 46.5107h-279.069c-25.6279 0 -46.5117 -20.8828 -46.5117 -46.5107v-1.44238 +h93.0225l-139.534 -138.093l-139.535 138.093h93.0234v1.44238c0 76.9531 62.5811 139.534 139.535 139.534h279.069z" /> + <glyph glyph-name="glyph38" unicode="❝" +d="M759.186 79.0693h-279.069v279.07c0 153.884 125.187 279.069 279.069 279.069v-93.0234c-102.65 0 -186.046 -83.4883 -186.046 -186.046h186.046v-279.07zM294.069 79.0693h-279.069v279.07c0 153.884 125.187 279.069 279.069 279.069v-93.0234 +c-102.65 0 -186.046 -83.4883 -186.046 -186.046h186.046v-279.07z" /> + <glyph glyph-name="glyph39" unicode="✗" horiz-adv-x="681" +d="M666.163 162.837l-130.279 -130.278l-195.303 195.395l-195.395 -195.395l-130.187 130.278l195.303 195.303l-195.303 195.302l130.187 130.279l195.395 -195.396l195.303 195.396l130.279 -130.279l-195.488 -195.302z" /> + <glyph glyph-name="glyph40" unicode="" +d="M15 730.232l558.14 -372.093l-558.14 -372.093v744.186zM573.14 79.0693v558.14h186.046v-558.14h-186.046z" /> + <glyph glyph-name="glyph41" unicode="" horiz-adv-x="588" +d="M340.581 730.232l232.559 -232.512v-511.674h-558.14v744.186h325.581zM108.023 79.0693h372.093v372.094h-186.047v186.046h-186.046v-558.14z" /> + <glyph glyph-name="glyph42" unicode="" +d="M573.14 -13.9531v744.186h186.046v-744.186h-186.046zM294.069 -13.9531v558.139h186.047v-558.139h-186.047zM15 -13.9531v372.093h186.047v-372.093h-186.047z" /> + <glyph glyph-name="glyph43" unicode="←" +d="M386.721 -13.9531l-371.721 372.093l371.721 372.093l131.907 -131.93l-146.791 -146.978h387.349v-186.581h-387.349c72.8379 -72.8369 146.791 -146.791 146.791 -146.791z" /> + <glyph glyph-name="glyph44" unicode="↓" +d="M759.186 357.768l-372.093 -371.721l-372.093 371.721l131.931 131.907l146.977 -146.978v387.535h186.581v-387.535c72.8369 72.8379 146.791 146.791 146.791 146.791z" /> + <glyph glyph-name="glyph45" unicode="" horiz-adv-x="588" +d="M15 -13.9531v106.278h558.14v-106.278h-558.14zM387.093 305h93.0234l-185.768 -212.675l-186.325 212.675h93.0234v425.232h186.046v-425.232z" /> + <glyph glyph-name="glyph46" unicode="⌂" +d="M387.093 730.232l372.093 -372.093h-93.0225v-372.093h-558.14v372.093h-93.0234zM573.14 79.0693v333.582l-186.047 131.534l-186.046 -131.534v-333.582h139.534v139.535h93.0234v-139.535h139.535z" /> + <glyph glyph-name="glyph47" unicode="" +d="M571.232 637.209h187.953v-93.0234h-187.953h-93.0234h-186.046h-93.0234h-184.14v93.0234h184.14v93.0234h93.0234v-93.0234h186.046v93.0234h93.0234v-93.0234zM108.023 172.093v93.0234h558.14v-93.0234h-558.14zM108.023 358.14v93.0234h558.14v-93.0234h-558.14z +M573.14 -13.9531h-465.116v93.0225h558.14z" /> + <glyph glyph-name="glyph48" unicode="" +d="M15 637.209h279.069v-279.069l-279.069 -279.07v558.14zM480.116 637.209h279.069v-279.069l-279.069 -279.07v558.14z" /> + <glyph glyph-name="glyph49" unicode="" +d="M652.535 158.465l106.65 106.651v-279.069h-279.069l106.651 106.65l-106.651 106.651l65.7676 65.7676zM294.069 730.232l-106.65 -106.651l105.65 -105.558l-65.7666 -65.7676l-105.651 105.559l-106.651 -106.651v279.069h279.069zM294.069 199.349l-106.65 -106.651 +l106.65 -106.65h-279.069v279.069l106.651 -106.651l106.651 106.651zM759.186 730.232v-279.069l-106.65 106.651l-105.651 -105.559l-65.7676 65.7676l105.651 105.558l-106.651 106.651h279.069z" /> + <glyph glyph-name="glyph50" unicode="" +d="M294.069 360.14c0 62.0156 31.0078 93.0234 93.0234 93.0234s93.0234 -31.0078 93.0234 -93.0234s-31.0078 -93.0234 -93.0234 -93.0234s-93.0234 31.0078 -93.0234 93.0234zM679.069 587.604c53.4111 -67.583 80.1162 -143.404 80.1162 -227.465 +c0 -67.3809 -16.5986 -129.644 -49.7949 -186.787c-33.1973 -57.1436 -78.3672 -102.313 -135.511 -135.511c-57.1436 -33.1963 -119.406 -49.7949 -186.787 -49.7949s-129.644 16.5986 -186.787 49.7949c-57.1436 33.1973 -102.313 78.3672 -135.511 135.511 +c-33.1963 57.1436 -49.7949 119.406 -49.7949 186.787c0 82.9883 26.248 158.446 78.7441 226.372c8.68848 -6.54297 17.8047 -9.81445 27.3486 -9.81445c12.8955 0 23.8711 4.52832 32.9277 13.584c9.05566 9.05664 13.584 20.0322 13.584 32.9277 +c0 9.53809 -3.35645 18.7471 -10.0693 27.6279c53.9434 42.7354 115.261 68.5342 183.953 77.3955c1.05371 -11.9824 5.91895 -22.0635 14.5957 -30.2432c8.67578 -8.17871 19.0127 -12.2686 31.0088 -12.2686c11.958 0 22.249 4.03418 30.8721 12.1016 +c8.62207 8.06836 13.5332 18.0264 14.7324 29.875c67.4736 -8.38184 128.218 -33.3975 182.232 -75.0459c-7.50293 -9.13965 -11.2549 -18.9541 -11.2549 -29.4424c0 -12.8809 4.54395 -23.8516 13.6309 -32.9131c9.08789 -9.06543 20.0479 -13.5986 32.8799 -13.5986 +c10.3545 0 19.9824 3.63574 28.8838 10.9072zM387.093 174.093c51.3828 0 95.2363 18.1562 131.561 54.4678s54.4863 80.1709 54.4863 131.579c0 51.4746 -18.2324 95.3818 -54.6982 131.721l-131.349 131.349l-131.534 -131.534 +c-36.3408 -36.3408 -54.5117 -80.1865 -54.5117 -131.535c0 -51.3721 18.165 -95.2227 54.4941 -131.553c36.3291 -36.3291 80.1797 -54.4941 131.552 -54.4941z" /> + <glyph glyph-name="glyph51" unicode="" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM573.14 311.628v93.0234h-139.535v139.534h-93.0234v-139.534h-139.534v-93.0234h139.534 +v-139.535h93.0234v139.535h139.535z" /> + <glyph glyph-name="glyph52" unicode="" +d="M387.093 637.209c-153.884 0 -279.069 -125.186 -279.069 -279.069s125.186 -279.07 279.069 -279.07s279.07 125.187 279.07 279.07s-125.187 279.069 -279.07 279.069zM387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093 +s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM513.187 298.187l-65.7676 -65.7676l-91.21 91.209c-9.7207 8.62793 -16.1621 20.6973 -16.1621 34.6973v185.86h93.5576v-166.325z" /> + <glyph glyph-name="glyph53" unicode="" +d="M665.628 544.186l93.5576 93.0234l-91.209 93.0234h91.209v-744.186h-744.186v744.186h93.3955l93.3721 -93.3955l-94.4648 -92.6514h93.209l95 93.3955l-92.6514 92.6514h131.535l93.3018 -93.3955l-94.3945 -92.6514h109.837l95.0234 93.3955l-92.7441 92.6514h129.441 +l91.3027 -93.3955l-92.3721 -92.6514h91.8369zM666.163 80.0693v93.0234h-558.14v-93.0234h558.14zM666.163 265.116v93.0234h-558.14v-93.0234h558.14z" /> + <glyph glyph-name="glyph54" unicode="" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM387.093 637.209c-121.093 0 -223.372 -78 -262 -186.046h524 +c-38.6279 108.046 -140.906 186.046 -262 186.046zM387.093 311.628c25.6982 0 46.5117 20.8135 46.5117 46.5117c0 25.6973 -20.8135 46.5117 -46.5117 46.5117c-25.6973 0 -46.5117 -20.8145 -46.5117 -46.5117c0 -25.6982 20.8145 -46.5117 46.5117 -46.5117z +M108.023 358.14c0 -137.814 100.651 -251.814 232.186 -274.349c-2.16211 151.884 -105.093 274.349 -232.186 274.349zM433.977 83.791c131.535 22.5342 232.187 136.534 232.187 274.349c-127.094 0 -230.023 -122.465 -232.187 -274.349z" /> + <glyph glyph-name="glyph55" unicode="✎" +d="M704.675 675.721c72.6738 -72.6738 72.6738 -190.396 0 -263.069l-426.605 -426.604h-263.069l0.720703 263.813l425.884 425.86c36.3262 36.3486 83.9307 54.5117 131.535 54.5117c47.6973 0 95.3018 -18.1631 131.535 -54.5117zM239.559 79.0693l399.349 399.35 +l-131.535 131.534l-398.721 -398.79l-0.0927734 -39.0703h92.4883v-93.0234h38.5117z" /> + <glyph glyph-name="glyph56" unicode="" +d="M287.069 529.931c0 -39.6055 -32.1621 -71.7676 -71.6738 -71.7676c-39.6045 0 -71.7676 32.1621 -71.7676 71.7676c0 39.5107 32.1631 71.5811 71.7676 71.5811c39.5117 0 71.6738 -32.0703 71.6738 -71.5811zM15 730.232h308.675l435.511 -435.581h-308.674v-308.604 +l-435.512 435.512v308.674zM289.349 647.396c-24.5352 0 -138.535 0 -191.512 -0.0234375v-191.581c18 -17.791 183.232 -183.14 269.838 -269.604v191.325h191.488c-86.582 86.5576 -251.838 251.977 -269.814 269.884z" /> + <glyph glyph-name="glyph57" unicode="" +d="M759.186 544.186c0 -69.9062 -39.0693 -130.093 -96.1162 -161.883c0.745117 -7.86133 2.37207 -15.3955 2.37207 -23.4424c0 -154.163 -124.906 -279.069 -279.069 -279.069c-57.5117 0 -110.931 17.4414 -155.349 47.2324l-216.023 -140.977l141.604 214.744 +c-30.9766 44.8838 -49.3252 99.3018 -49.3252 158.069c0 154.163 124.907 279.07 279.069 279.07c8.7207 0 17 -1.76758 25.5352 -2.58203c0 -0.0458984 -0.0927734 -0.0927734 -0.0927734 -0.139648c32 56.4658 91.9531 95.0234 161.349 95.0234 +c102.651 0 186.046 -83.3486 186.046 -186.047zM386.372 172.814c102.372 0 185.581 83.0459 185.953 185.418c-16.6279 0.0927734 -32.5342 3 -47.8838 7.18652l-73.0459 -73.0469c-36.3262 -36.3252 -95.209 -36.3252 -131.535 0 +c-36.3252 36.3252 -36.3252 95.209 0 131.535l73.7676 73.8135c-3.81348 14.9541 -6.53516 30.3027 -6.53516 46.4648c0 0.373047 0.0927734 0.72168 0.0927734 1.09375c0 -0.139648 -0.0927734 -0.279297 -0.0927734 -0.464844 +c-0.185547 0 -0.441406 0.0927734 -0.720703 0.0927734c-102.651 0 -186.047 -83.4424 -186.047 -186.047c0 -102.651 83.3955 -186.046 186.047 -186.046zM573.14 451.163c51.2324 0 93.0234 41.7441 93.0234 93.0225c0 51.2793 -41.791 93.0234 -93.0234 93.0234 +s-93.0234 -41.7441 -93.0234 -93.0234c0 -51.2783 41.791 -93.0225 93.0234 -93.0225z" /> + <glyph glyph-name="glyph58" unicode="⛔" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM387.093 637.209c-153.884 0 -279.069 -125.186 -279.069 -279.069 +c0 -60.1396 19.5352 -115.559 52.0459 -161.163l388.279 388.093c-45.6045 32.5117 -101.023 52.1396 -161.256 52.1396zM387.093 79.0693c153.884 0 279.07 125.187 279.07 279.07c0 60.1396 -19.5352 115.558 -52.0469 161.163l-388.279 -388.094 +c45.6045 -32.5117 101.023 -52.1396 161.256 -52.1396z" /> + <glyph glyph-name="glyph59" unicode="" +d="M759.186 79.0693h-279.069v279.07l279.069 279.069v-558.14zM294.069 79.0693h-279.069v279.07l279.069 279.069v-558.14z" /> + <glyph glyph-name="glyph60" unicode="" +d="M201.047 172.093c-102.744 0 -186.047 83.3027 -186.047 186.047s83.3027 186.046 186.047 186.046v-372.093zM294.069 544.186l186.047 93.0234v-558.14l-186.047 93.0234v372.093zM759.186 311.628h-186.046v93.0234h186.046v-93.0234z" /> + <glyph glyph-name="glyph61" unicode="" +d="M759.186 358.14c0 -205.488 -166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093s372.093 -166.604 372.093 -372.093zM294.069 218.604l93.0234 -93.0234l93.0234 93.0234h-46.5117v372.093h-93.0234v-372.093 +h-46.5117z" /> + <glyph glyph-name="glyph62" unicode="" +d="M15 637.209c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM201.047 590.697v93.0234h558.139v-93.0234h-558.139zM201.047 451.163 +c0 31.0078 15.5039 46.5117 46.5117 46.5117c31.0068 0 46.5107 -15.5039 46.5107 -46.5117s-15.5039 -46.5117 -46.5107 -46.5117c-31.0078 0 -46.5117 15.5039 -46.5117 46.5117zM387.093 404.651v93.0234h372.093v-93.0234h-372.093zM201.047 79.0693 +c0 31.0078 15.5039 46.5117 46.5117 46.5117c31.0068 0 46.5107 -15.5039 46.5107 -46.5117c0 -31.0068 -15.5039 -46.5107 -46.5107 -46.5107c-31.0078 0 -46.5117 15.5039 -46.5117 46.5107zM387.093 32.5586v93.0225h372.093v-93.0225h-372.093zM387.093 265.116 +c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM573.14 218.604v93.0234h186.046v-93.0234h-186.046z" /> + <glyph glyph-name="glyph63" unicode="" +d="M15 358.14c0 205.535 166.604 372.093 372.186 372.093c205.396 0 372 -166.558 372 -372.093c0 -205.488 -166.604 -372.093 -372 -372.093c-205.581 0 -372.186 166.604 -372.186 372.093zM573.14 358.86l-185.954 185.372l-185.418 -185.372h138.813v-186.768h93.0234 +v186.768h139.535z" /> + <glyph glyph-name="glyph64" unicode="" +d="M480.116 590.697h-232.558c-76.8613 0 -139.535 -62.5811 -139.535 -139.534v-232.559c0 -30.3486 14.7207 -57.4189 37.3252 -74.4883c33.9766 45.2324 88.0469 74.4883 148.721 74.4883h186.047c102.651 0 186.047 83.3955 186.047 186.047 +s-83.3955 186.046 -186.047 186.046zM480.116 683.721c154.163 0 279.069 -125 279.069 -279.069c0 -154.07 -124.906 -279.07 -279.069 -279.07h-186.047c-51.3252 0 -93.0225 -41.6045 -93.0225 -93.0225c-102.651 0 -186.047 83.3018 -186.047 186.046v232.559 +c0 128.441 104.116 232.558 232.559 232.558h232.558z" /> + <glyph glyph-name="glyph65" unicode="" +d="M669.791 643.768c57.6045 -57.6748 89.3945 -134.349 89.3945 -217.884c0 -79.6279 -31.79 -156.303 -89.3945 -214.116l-70.1396 -69.9531l-65.7676 65.7666l70.1396 70.0938c40.0693 40.1621 62.1396 93.3945 62.1396 148.209 +c0 58.6514 -22.0703 111.884 -62.1396 151.931c-80.1162 80.3018 -219.838 80.3018 -299.954 0.0927734l-126.813 -128.768h116.813v-91.1631h-279.069v279.232h93.0234v-123.697l130.163 130.256c115.209 115.372 316.325 115.279 431.604 0zM444.047 -13.9766 +l-65.7676 65.9531l65.7676 65.7676l65.7676 -65.7676z" /> + <glyph glyph-name="glyph66" unicode="☂" +d="M387.093 730.232c205.21 0 372.093 -166.93 372.093 -372.093h-93.0225c0 19.209 -15.6279 34.8838 -34.8838 34.8838c-19.1631 0 -34.8838 -15.6748 -34.8838 -34.8838h-93.0234c0 19.209 -15.6279 34.8838 -34.8838 34.8838 +c-19.1631 0 -34.8838 -15.6748 -34.8838 -34.8838v-232.559c0 -76.9531 -62.5117 -139.534 -139.535 -139.534c-76.8604 0 -139.534 62.5811 -139.534 139.534h93.0234c0 -25.6279 20.8828 -46.5117 46.5107 -46.5117c25.6982 0 46.5117 20.8838 46.5117 46.5117v232.559 +c0 19.209 -15.6279 34.8838 -34.8838 34.8838c-19.1621 0 -34.8838 -15.6748 -34.8838 -34.8838h-93.0225c0 19.209 -15.6279 34.8838 -34.8838 34.8838c-19.1631 0 -34.8838 -15.6748 -34.8838 -34.8838h-93.0234c0 205.163 166.977 372.093 372.093 372.093z" /> + <glyph glyph-name="glyph67" unicode="⚡" +d="M759.186 730.232l-325.581 -372.093l139.535 -93.0234l-558.14 -279.069l325.581 279.069l-139.534 93.0234z" /> + <glyph glyph-name="glyph68" unicode="" +d="M759.186 637.209h-744.186v93.0234h744.186v-93.0234zM480.116 451.163h-465.116v93.0225h465.116v-93.0225zM759.186 172.093h-744.186v93.0234h744.186v-93.0234zM573.14 -13.9531h-558.14v93.0225h558.14v-93.0225zM759.186 32.5586 +c0 -25.6982 -20.8828 -46.5117 -46.5107 -46.5117c-25.791 0 -46.6055 20.8135 -46.6055 46.5117c0 25.6973 20.8145 46.5107 46.6055 46.5107c25.6279 0 46.5107 -20.8135 46.5107 -46.5107z" /> + <glyph glyph-name="glyph69" unicode="" +d="M759.186 637.209h-744.186v93.0234h744.186v-93.0234zM480.116 451.163h-465.116v93.0225h465.116v-93.0225zM759.186 263.116h-744.186v93.0234h744.186v-93.0234zM15 32.5586c0 31.0068 15.5039 46.5107 46.5117 46.5107s46.5117 -15.5039 46.5117 -46.5107 +c0 -31.0078 -15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM294.069 32.5586c0 -12.8408 -4.5459 -23.8027 -13.6396 -32.8867c-9.0918 -9.08301 -20.0498 -13.625 -32.8711 -13.625c-12.8906 0 -23.8809 4.53809 -32.9707 13.6152 +s-13.6348 20.043 -13.6348 32.8965s4.54492 23.8184 13.6348 32.8955s20.0801 13.6152 32.9707 13.6152c12.8223 0 23.7793 -4.54199 32.8711 -13.625c9.09375 -9.08301 13.6396 -20.0449 13.6396 -32.8857zM387.093 32.5586c0 31.0068 15.5039 46.5107 46.5117 46.5107 +s46.5117 -15.5039 46.5117 -46.5107c0 -31.0078 -15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117z" /> + <glyph glyph-name="glyph70" unicode="" horiz-adv-x="402" +d="M340.581 730.232c25.6982 0 46.5117 -20.8135 46.5117 -46.5117v-511.628c0 -102.744 -83.3018 -186.046 -186.046 -186.046s-186.047 83.3018 -186.047 186.046v511.628c0 25.6982 20.8135 46.5117 46.5117 46.5117h279.069zM247.559 172.093 +c25.6973 0 46.5107 20.8145 46.5107 46.5117c0 25.6982 -20.8135 46.5117 -46.5107 46.5117c-25.6982 0 -46.5117 -20.8135 -46.5117 -46.5117c0 -25.6973 20.8135 -46.5117 46.5117 -46.5117zM294.069 358.14v279.069h-186.046v-279.069h46.7207 +c0.348633 25.6973 21.2559 46.5117 47.0469 46.5117c25.79 0 46.6738 -20.8145 47.0459 -46.5117h45.2324z" /> + <glyph glyph-name="glyph71" unicode="" horiz-adv-x="402" +d="M201.768 520.931c0 15.0225 7.51172 22.5342 22.5352 22.5342c15.0225 0 22.5342 -7.51172 22.5342 -22.5342c0 -15.0234 -7.51172 -22.5352 -22.5342 -22.5352c-15.0234 0 -22.5352 7.51172 -22.5352 22.5352zM340.581 730.232 +c12.8486 0 23.8135 -4.54004 32.8926 -13.6191s13.6191 -20.043 13.6191 -32.8926v-511.628c0 -51.3721 -18.165 -95.2227 -54.4941 -131.552s-80.1797 -54.4941 -131.552 -54.4941s-95.2227 18.165 -131.553 54.4941c-36.3291 36.3291 -54.4941 80.1797 -54.4941 131.552 +v511.628c0 12.8496 4.54004 23.8135 13.6191 32.8926s20.043 13.6191 32.8926 13.6191h279.069zM132 265.116c6.2207 0 11.5322 2.2002 15.9336 6.60156s6.60156 9.71289 6.60156 15.9336s-2.2002 11.5312 -6.60156 15.9326s-9.71289 6.60156 -15.9336 6.60156 +s-11.5322 -2.2002 -15.9336 -6.60156s-6.60156 -9.71191 -6.60156 -15.9326s2.2002 -11.5322 6.60156 -15.9336s9.71289 -6.60156 15.9336 -6.60156zM247.559 172.093c12.8486 0 23.8125 4.54004 32.8916 13.6191c9.0791 9.08008 13.6191 20.0439 13.6191 32.8926 +s-4.54004 23.8135 -13.6191 32.8926s-20.043 13.6191 -32.8916 13.6191c-12.8496 0 -23.8135 -4.54004 -32.8926 -13.6191s-13.6191 -20.0439 -13.6191 -32.8926s4.54004 -23.8125 13.6191 -32.8926c9.0791 -9.0791 20.0439 -13.6191 32.8926 -13.6191zM294.069 358.14 +v279.069h-186.046v-279.069h46.7207c0.174805 12.8652 4.83984 23.834 13.9951 32.9053c9.15625 9.07129 20.1729 13.6064 33.0518 13.6064c12.875 0 23.8887 -4.53516 33.04 -13.6045c9.15039 -9.07031 13.8193 -20.0391 14.0059 -32.9072h45.2324z" /> + <glyph glyph-name="glyph72" unicode="" +d="M759.186 451.163v-186.047h-93.0225v-46.5117c0 -25.6279 -20.8838 -46.5117 -46.5117 -46.5117h-558.14c-25.6279 0 -46.5117 20.8838 -46.5117 46.5117v279.07c0 25.5342 20.8838 46.5107 46.5117 46.5107h558.14c25.6279 0 46.5117 -20.9766 46.5117 -46.5107 +v-46.5117h93.0225z" /> + <glyph glyph-name="glyph73" unicode="→" +d="M387.465 730.232l371.721 -372.093l-371.721 -372.093l-131.906 131.93l146.883 146.884h-387.441v186.675h387.441l-146.79 146.79z" /> + <glyph glyph-name="glyph74" unicode="" +d="M759.186 730.232v-558.14h-186.046v-186.046h-558.14v558.139h186.047v186.047h558.139zM480.116 79.0693v93.0234h-279.069v186.047h-93.0234v-279.07h372.093zM666.163 265.116v279.069h-372.094v-279.069h372.094z" /> + <glyph glyph-name="glyph75" unicode="➕" +d="M759.186 451.163v-186.047h-279.069v-279.069h-186.047v279.069h-279.069v186.047h279.069v279.069h186.047v-279.069h279.069z" /> + <glyph glyph-name="glyph76" unicode="⚙" +d="M759.186 312.349l-111.209 -47.418c-3.09277 -8.62793 -6.2793 -17.0938 -10.1855 -25.4424l45.79 -111l-65.7666 -65.7676l-111.559 44.6982c-8.34863 -4 -17.0703 -7.44238 -25.8838 -10.7217l-46.0469 -110.65h-93.0225l-47.0469 110.093 +c-9.25586 3.18555 -18.2559 6.53516 -27.0703 10.7207l-109.837 -45.2324l-65.7676 65.7676l44.2324 110.279c-4.34863 9 -7.97656 18.1855 -11.3486 27.6279l-109.465 45.6045v93.0234l109.372 46.7666c3.37207 9.46582 6.90723 18.6279 11.2793 27.6279l-45.0703 109.559 +l65.7676 65.7676l110.559 -44.4189c8.81348 4.18652 17.7207 7.62793 26.9766 10.9072l45.9766 110.093h93.0234l47.1396 -110.465c8.90723 -3.18652 17.5352 -6.62793 25.9766 -10.7207l110.744 45.6045l65.791 -65.7676l-44.8838 -111.744 +c4 -8.2793 7.25586 -16.7207 10.3486 -25.4424l111.186 -46.3252v-93.0234zM386.372 218.604c77.0234 0 139.535 62.5117 139.535 139.535s-62.5117 139.535 -139.535 139.535s-139.535 -62.5117 -139.535 -139.535s62.5117 -139.535 139.535 -139.535z" /> + <glyph glyph-name="glyph77" unicode="⚿" +d="M526.628 637.209c-76.9531 0 -139.535 -62.5811 -139.535 -139.534c0 -7.25586 0.860352 -15.2559 2.72168 -25.2559l8.90625 -48.1396l-34.6045 -34.6045l-256.093 -256.094v-54.5117h93.0234v93.0234h93.0225v93.0234h93.0234v38.5117l27.2559 27.2559l4.2793 4.2793 +l34.6045 34.6045l48.1396 -8.90723c10 -1.81348 18 -2.7207 25.2559 -2.7207c76.9531 0 139.535 62.5811 139.535 139.535c0 76.9531 -62.582 139.534 -139.535 139.534zM526.628 730.232c128.441 0 232.558 -104.116 232.558 -232.558 +c0 -128.442 -104.116 -232.559 -232.558 -232.559c-14.5352 0 -28.5352 1.7207 -42.2324 4.2793l-4.2793 -4.2793v-93.0234h-93.0234v-93.0234h-93.0234v-93.0225h-279.069v186.046l283.349 283.349c-2.55762 13.6982 -4.2793 27.6982 -4.2793 42.2334 +c0 128.441 104.116 232.558 232.559 232.558zM480.303 497.675c0 31.0068 15.5039 46.5107 46.5107 46.5107c31.0078 0 46.5117 -15.5039 46.5117 -46.5107c0 -31.0078 -15.5039 -46.5117 -46.5117 -46.5117c-31.0068 0 -46.5107 15.5039 -46.5107 46.5117z" /> + <glyph glyph-name="glyph78" unicode="" +d="M759.186 -13.9531l-558.139 372.093l558.139 372.093v-744.186zM15 79.0693v558.14h186.047v-558.14h-186.047z" /> + <glyph glyph-name="glyph79" unicode="" +d="M387.138 544.186c-144.116 0 -233.14 -38.5107 -264.581 -114.371c-27 -64.9541 -13 -145.814 8.81348 -205.582c52.6045 36.3486 99.9307 40.8838 209.303 40.8838h308.093c9.09277 27.791 17.4414 61.7676 17.4414 93.0234 +c0 90.0234 -21.6279 186.046 -279.069 186.046zM387.138 637.209c186.046 0 372.093 -46.5117 372.093 -279.069c0 -93.0234 -47.9531 -186.047 -47.9531 -186.047h-370.604c-139.442 0 -139.442 0 -232.466 -93.0234c-92.9531 93.0234 -241.302 558.14 278.931 558.14z" /> + <glyph glyph-name="glyph80" unicode="" +d="M759.186 637.209v-93.0234h-93.0225v-418.604c0 -77.0225 -62.5117 -139.534 -139.535 -139.534h-279.069c-77.0234 0 -139.535 62.5117 -139.535 139.534v418.604h-93.0234v93.0234h93.0234h93.0234c0 51.4189 41.6045 93.0234 93.0225 93.0234h186.047 +c51.4189 0 93.0234 -41.6045 93.0234 -93.0234h93.0234h93.0225zM573.14 125.581v418.604h-372.093v-418.604c0 -25.6279 20.8838 -46.5117 46.5117 -46.5117h279.069c25.6279 0 46.5117 20.8838 46.5117 46.5117zM247.559 218.604 +c0 31.0078 15.5039 46.5117 46.5107 46.5117c31.0078 0 46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117c-31.0068 0 -46.5107 15.5039 -46.5107 46.5117zM247.559 404.651c0 31.0078 15.5039 46.5117 46.5107 46.5117 +c31.0078 0 46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117c-31.0068 0 -46.5107 15.5039 -46.5107 46.5117zM433.604 218.604c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117 +s-46.5117 15.5039 -46.5117 46.5117zM433.604 404.651c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117z" /> + <glyph glyph-name="glyph81" unicode="" +d="M201.047 172.093v186.047l93.0225 93.0234l93.0234 -93.0234l186.047 186.046l186.046 -186.046v-186.047h-558.139zM108.023 79.0693h651.162l-93.0225 -93.0225h-558.14h-93.0234v93.0225v558.14l93.0234 93.0234v-651.163z" /> + <glyph glyph-name="glyph82" unicode="" +d="M619.116 446.209c75.3955 -14.5811 140.069 -67.3018 140.069 -181.093c0 -133.721 -93.0225 -186.047 -185.953 -186.047h-93.1162c-51.4189 0 -93.0234 -41.6045 -93.0234 -93.0225c-102.744 0 -185.953 83.3018 -185.953 186.046v93.0234 +c0 16.7207 1.62793 32.1162 4.62793 46.5117h88.3018c2.90723 0 5.62793 -1.18652 8.34961 -1.6748c-5.07031 -11.9531 -8.34961 -26.4414 -8.34961 -44.8369v-93.0234c0 -30.3486 14.7217 -57.418 37.2559 -74.4883c33.9541 45.2324 88.21 74.4883 148.791 74.4883h93.1162 +c92.9307 0 92.9307 69.9541 92.9307 93.0234c0 24.8838 -0.535156 79.4883 -67.582 90.6514c12.7217 27.7676 19.9072 58.1855 20.5352 90.4414zM387.093 637.209h-185.953c-93.1162 0 -93.1162 -65.2324 -93.1162 -93.0234c0 -23.0225 0 -93.0225 93.1162 -93.0225h92.9297 +c60.6748 0 114.838 -29.3027 148.791 -74.4424c22.5352 16.9766 37.2559 44 37.2559 74.4424v93.0225c0 80.9307 -58.3252 93.0234 -93.0234 93.0234zM387.093 730.232c93.0234 0 186.14 -57.6514 186.14 -186.047v-93.0225c0 -102.744 -83.3955 -186.047 -186.14 -186.047 +c0 51.3252 -41.6045 93.0234 -93.0234 93.0234h-92.9297c-93.1162 0 -186.14 52.3252 -186.14 186.046c0 136.629 93.0234 186.047 186.14 186.047h185.953z" /> + <glyph glyph-name="glyph83" unicode="" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM387.814 266.651c51.0693 0 92.3018 41.2559 92.3018 92.209 +c0 51.0703 -41.2324 92.3027 -92.3018 92.3027c-50.8838 0 -92.21 -41.2559 -92.21 -92.3027c0 -50.9766 41.3262 -92.209 92.21 -92.209z" /> + <glyph glyph-name="glyph84" unicode="❞" +d="M15 637.209h279.069v-279.069c0 -153.884 -125.186 -279.07 -279.069 -279.07v93.0234c102.651 0 186.047 83.4883 186.047 186.047h-186.047v279.069zM480.116 637.209h279.069v-279.069c0 -153.884 -125.186 -279.07 -279.069 -279.07v93.0234 +c102.651 0 186.047 83.4883 186.047 186.047h-186.047v279.069z" /> + <glyph glyph-name="glyph85" unicode="" +d="M387 234.14h0.0927734c0 -137 -111.093 -248.093 -248.093 -248.093c-45.0469 0 -87.209 12 -123.628 32.8828l-0.37207 0.46582c74.0469 42.8604 123.907 122.907 124 214.651l-0.0927734 0.0927734c0 68.4883 55.5117 124 124 124s124.093 -55.5117 124.093 -124z +M731.93 702.977c36.3496 -36.3252 36.3496 -95.209 0 -131.535l-265.162 -265.162c-21.791 61.3955 -70.1162 109.744 -131.535 131.628l265.163 265.069c36.3252 36.3262 95.209 36.3262 131.534 0z" /> + <glyph glyph-name="glyph86" unicode="☁" +d="M573.14 497.675c102.558 0 186.046 -83.4424 186.046 -186.047c0 -102.651 -83.4883 -186.047 -186.046 -186.047h-372.093c-102.559 0 -186.047 83.3955 -186.047 186.047c0 102.604 83.4883 186.047 186.047 186.047c8.25586 0 16.4414 -1.2334 24.6279 -2.32617 +c31.9766 56.6045 91.9297 95.3486 161.418 95.3486c68.0469 0 128 -38.2783 160.419 -95.6045c8.46484 1.16309 16.8135 2.58203 25.6279 2.58203zM573.14 218.604c51.3252 0 93.0234 41.7441 93.0234 93.0234s-41.6982 93.0234 -93.0234 93.0234 +c-51.3262 0 -93.0234 -41.7441 -93.0234 -93.0234h-93.0234c0 60.5811 29.5352 113.953 74.3955 147.931c-17.0693 23.209 -44.3252 38.1162 -74.3955 38.1162c-51.3252 0 -93.0234 -41.7441 -93.0234 -93.0234c0 -11.21 1.90723 -22.1631 5.81445 -32.4883 +l-87.1162 -32.6045c-7.62793 20.3486 -11.4424 41.8828 -11.6279 63.8135c-47.9766 -1.39551 -93.1162 -40.7441 -93.1162 -91.7441c0 -51.2793 41.6973 -93.0234 93.0234 -93.0234h372.093z" /> + <glyph glyph-name="glyph87" unicode="" +d="M387.093 637.209c205.488 0 372.093 -275.441 372.093 -275.441s-166.604 -282.698 -372.093 -282.698s-372.093 282.698 -372.093 282.698s166.604 275.441 372.093 275.441zM387.093 172.093c102.744 0 186.047 83.3027 186.047 186.047 +s-83.3027 186.046 -186.047 186.046s-186.046 -83.3018 -186.046 -186.046s83.3018 -186.047 186.046 -186.047zM294.069 357.768c0 62.0156 31.0078 93.0234 93.0234 93.0234s93.0234 -31.0078 93.0234 -93.0234s-31.0078 -93.0234 -93.0234 -93.0234 +s-93.0234 31.0078 -93.0234 93.0234z" /> + <glyph glyph-name="glyph88" unicode="" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM247.559 172.093l372.278 186.047l-372.278 186.046v-372.093z" /> + <glyph glyph-name="glyph89" unicode="" +d="M759.186 172.093h-558.325v-93.0234l-185.86 139.535l185.86 139.535v-93.0234h558.325v-93.0234zM15 451.163v93.0225h558.14v93.0234l186.046 -139.534l-186.046 -139.535v93.0234h-558.14z" /> + <glyph glyph-name="glyph90" unicode="" +d="M731.93 702.977c36.3496 -36.3252 36.3496 -95.209 0 -131.535l-351.744 -351.837c-8.16211 30.6982 -23.4414 59.9541 -47.418 83.9307c-23.6045 23.6279 -52.6748 39.418 -84.1162 47.6045l351.744 351.837c36.3252 36.3262 95.209 36.3262 131.534 0zM267 106.232 +l-252 -120.186l120.465 251.721c36.3262 36.3252 95.21 36.3252 131.535 0c36.3252 -36.3262 36.3252 -95.209 0 -131.535z" /> + <glyph glyph-name="glyph91" unicode="" +d="M387.093 265.116c0 62.0156 31.0078 93.0234 93.0234 93.0234s93.0234 -31.0078 93.0234 -93.0234s-31.0078 -93.0234 -93.0234 -93.0234s-93.0234 31.0078 -93.0234 93.0234zM666.163 544.186c25.7041 0 47.6338 -9.08105 65.7891 -27.2432 +c18.1553 -18.1611 27.2334 -40.0879 27.2334 -65.7793v-465.116h-744.186v465.116c0 25.6855 9.08203 47.6113 27.2471 65.7754c18.165 18.165 40.0898 27.2471 65.7764 27.2471h186.14l79.3486 153.838c3.04004 9.46191 8.61621 17.1953 16.7285 23.2012 +c8.1123 6.00488 17.2959 9.00781 27.5508 9.00781h127.721c10.1338 0 19.2324 -2.93359 27.2939 -8.80078c8.0625 -5.86719 13.6855 -13.4531 16.8691 -22.7568zM154.535 358.14c12.8486 0 23.8125 4.54004 32.8926 13.6191c9.0791 9.0791 13.6191 20.0439 13.6191 32.8926 +s-4.54004 23.8125 -13.6191 32.8926c-9.08008 9.0791 -20.0439 13.6191 -32.8926 13.6191s-23.8135 -4.54004 -32.8926 -13.6191c-9.0791 -9.08008 -13.6191 -20.0439 -13.6191 -32.8926s4.54004 -23.8135 13.6191 -32.8926s20.043 -13.6191 32.8926 -13.6191z +M480.116 79.0693c51.3721 0 95.2227 18.165 131.553 54.4941c36.3291 36.3301 54.4941 80.1807 54.4941 131.553s-18.165 95.2227 -54.4941 131.553c-36.3301 36.3291 -80.1807 54.4941 -131.553 54.4941s-95.2227 -18.165 -131.553 -54.4941 +c-36.3291 -36.3301 -54.4941 -80.1807 -54.4941 -131.553s18.165 -95.2227 54.4941 -131.553c36.3301 -36.3291 80.1807 -54.4941 131.553 -54.4941z" /> + <glyph glyph-name="glyph92" unicode="" +d="M759.186 358.14c0 -205.488 -166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093s372.093 -166.604 372.093 -372.093zM247.559 311.628h279.069v-46.5117l93.0234 93.0234l-93.0234 93.0234v-46.5117h-279.069 +v46.5117l-93.0234 -93.0234l93.0234 -93.0234v46.5117z" /> + <glyph glyph-name="glyph93" unicode="⤵" +d="M666.163 311.628v-46.5117h93.0225l-186.046 -186.047l-186.047 186.047h93.0234v46.5117c0 128.441 -104.116 232.558 -232.558 232.558c-128.442 0 -232.559 -104.116 -232.559 -232.558c0 179.768 145.814 325.581 325.581 325.581 +c179.768 0 325.582 -145.813 325.582 -325.581z" /> + <glyph glyph-name="glyph94" unicode="" +d="M247.559 358.14l46.5107 -46.5117h-139.534v-93.0234l-139.535 139.535l139.535 139.535v-93.0234h139.534zM525.186 358.14l-45.0693 46.5117h139.535v93.0234l139.534 -139.535l-139.534 -139.535v93.0234h-139.535z" /> + <glyph glyph-name="glyph95" unicode="" +d="M507.372 405.116l-188 318.303c22.0234 4.0459 44.5117 6.81348 67.7207 6.81348c97.9307 0 186.232 -38.5576 252.628 -100.372zM478.977 265.116l193.628 328.953c53.3262 -64.3721 86.5811 -145.86 86.5811 -235.93c0 -32.3486 -5.44141 -63.1396 -13.1855 -93.0234 +h-267.023zM398.721 497.675h-356.093c41.0469 101.256 125.675 178.906 230.325 212.837zM378.559 218.604h353.022c-40.6973 -100.372 -124.186 -177.512 -227.65 -212.023zM296.512 451.163l-194.163 -329.954c-53.7441 64.6055 -87.3486 146.442 -87.3486 236.931 +c0 32.3486 5.39551 63.1396 13.1631 93.0234h268.349zM268.907 312.535l188.907 -319.396c-22.9307 -4.37207 -46.5117 -7.09277 -70.7217 -7.09277c-97.4648 0 -185.418 38.3252 -251.768 99.5576z" /> + <glyph glyph-name="glyph96" unicode="" horiz-adv-x="588" +d="M480.116 311.628h93.0234c0 -154.069 -125 -279.069 -279.07 -279.069c-154.069 0 -279.069 125 -279.069 279.069s125 279.069 279.069 279.069h93.5586v93.0234l139.813 -139.535l-139.813 -140v92.4893l-93.5586 1c-102.65 0 -186.046 -83.3955 -186.046 -186.047 +s83.3955 -186.047 186.046 -186.047c102.651 0 186.047 83.3955 186.047 186.047z" /> + <glyph glyph-name="glyph97" unicode="" +d="M278.628 271.209c6.81348 -7.62793 13.9072 -14.7207 21.3486 -21.4414c-43.0693 -43.0703 -102.651 -102.675 -132.186 -132.279c-10.0938 10.1865 -11.4424 11.4424 -21.4424 21.4424c29.6279 29.5342 89.1396 89.209 132.279 132.278zM483.209 730.232 +c152.163 0 275.977 -123.721 275.954 -275.907c0 -152.069 -123.814 -275.79 -275.978 -275.79c-36.3252 0 -70.8604 7.44141 -102.65 20.3486l-212.744 -212.837l-152.791 152.884l212.651 212.674c-12.8145 31.791 -20.2559 66.3262 -20.2559 102.744 +c0 152.163 123.744 275.884 275.813 275.884zM483.209 271.465c100.931 0 183.047 82.1396 183.047 182.86c0 100.838 -82.1162 182.954 -183.047 182.954c-100.744 0 -182.86 -82.1162 -182.86 -182.954c0 -100.744 82.1162 -182.86 182.86 -182.86z" /> + <glyph glyph-name="glyph98" unicode="" horiz-adv-x="588" +d="M387.093 730.232c102.744 0 186.047 -83.3018 186.047 -186.047v-372.093c0 -102.744 -83.3027 -186.046 -186.047 -186.046h-186.046c-102.744 0 -186.047 83.3018 -186.047 186.046v372.093c0 102.745 83.3027 186.047 186.047 186.047h186.046zM294.069 31.1162 +c26.4893 0 47.9541 21.4424 47.9541 47.9531c0 26.5117 -21.4883 47.9541 -47.9541 47.9541c-26.4648 0 -47.9531 -21.4424 -47.9531 -47.9541c0 -26.5107 21.4648 -47.9531 47.9531 -47.9531zM480.116 172.093v372.093c0 51.2334 -41.791 93.0234 -93.0234 93.0234 +h-186.046c-51.2793 0 -93.0234 -41.79 -93.0234 -93.0234v-372.093h372.093z" /> + <glyph glyph-name="glyph99" unicode="" horiz-adv-x="681" +d="M480.116 730.232h93.0234v-90.1162c0 -62.1396 -24.1631 -120.465 -68.1396 -164.419l-263.163 -261.628c-23.8838 -24 -37.3486 -55.0459 -39.79 -88.4883h92.0225l-139.534 -139.534l-139.535 139.534h94.1162c2.53516 58.2334 25.4424 112.744 67.0469 154.256 +l263.162 261.722c26.2559 26.2559 40.791 61.3018 40.791 98.5576v90.1162zM572.047 125.581h94.1162l-139.535 -139.534l-139.535 139.534h92.0234c-2.46484 33.4424 -15.9072 64.6045 -39.8838 88.4883l-52.1396 51.8613l65.9541 65.6045l51.8604 -51.5117 +c41.6045 -41.6982 64.6045 -96.209 67.1396 -154.442z" /> + <glyph glyph-name="glyph100" unicode="" +d="M15 -13.9531v465.116h744.186v-465.116h-744.186zM433.604 544.186v186.047h232.559l93.0225 -186.047h-325.581zM340.581 730.232v-186.047h-325.581l93.0234 186.047h232.558z" /> + <glyph glyph-name="glyph101" unicode="" horiz-adv-x="681" +d="M573.14 -13.9531v744.186h93.0234v-744.186h-93.0234zM387.093 -13.9531v558.139h93.0234v-558.139h-93.0234zM201.047 -13.9531v372.093h93.0225v-372.093h-93.0225zM15 -13.9531v186.046h93.0234v-186.046h-93.0234z" /> + <glyph glyph-name="glyph102" unicode="❤" +d="M552.512 590.697c-46.8604 0 -89.6514 -50.3252 -89.6514 -50.3252l-75.7676 -80.4883l-75.7676 80.4883s-42.7666 50.3252 -89.6504 50.3252c-57.1396 0 -104.466 -42.3252 -112.466 -97.3945l277.977 -319.023l277.791 319.023 +c-8 55.0693 -55.3252 97.3945 -112.465 97.3945zM552.512 683.721c114.023 0 206.674 -92.8369 206.674 -206.768v-17.0693l-371.906 -427.325l-372.279 427.325v17.0693c0 113.931 92.6514 206.768 206.675 206.768c69.3945 0 127.906 -36.6973 165.418 -89.3955 +c37.5117 52.6982 96.0234 89.3955 165.419 89.3955z" /> + <glyph glyph-name="glyph103" unicode="" +d="M201.047 172.093c-102.744 0 -186.047 83.3027 -186.047 186.047s83.3027 186.046 186.047 186.046v-372.093zM294.069 544.186l186.047 93.0234v-558.14l-186.047 93.0234v372.093zM573.232 172.186v93.0234c7.7207 0 15.5352 1 23.3486 2.90723 +c40.791 10.3486 69.582 47.4189 69.582 90.0234s-28.791 79.5811 -70.0469 90.0234c-7.34863 1.81348 -15.1631 2.81348 -22.8838 2.81348v93.0234c15.2559 0 30.5117 -1.90723 45.5117 -5.53516c82.7676 -21.0693 140.441 -95.1162 140.441 -180.325 +c0 -85.3027 -57.6738 -159.419 -140.162 -180.325c-15.4424 -3.72168 -30.7207 -5.62891 -45.791 -5.62891z" /> + <glyph glyph-name="glyph104" unicode="✘" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM571.14 239.86l-118.279 118.279l118.279 118.279l-65.7676 65.7666l-118.279 -118.278 +l-118.279 118.278l-65.7666 -65.7666l118.278 -118.279l-118.278 -118.279l65.7666 -65.7676l118.279 118.279l118.279 -118.279z" /> + <glyph glyph-name="glyph105" unicode="" +d="M745.529 716.604c18.1621 -18.1631 18.1621 -47.6045 -0.0234375 -65.7676l-94.9307 -94.7441c59.791 -90.209 49.9766 -213.116 -29.6045 -292.604l-139.256 -139.535c-45.4189 -45.418 -106.86 -68.1387 -164.419 -68.1387 +c-44.6973 0 -89.4883 12.8135 -128.278 38.6045l-94.6514 -94.7441c-9.09277 -9.09375 -20.9766 -13.6279 -32.8838 -13.6279s-23.791 4.53418 -32.8604 13.6279c-18.1631 18.1621 -18.1631 47.6045 0 65.7666l94.6514 94.7441 +c-59.791 90.21 -49.9775 213.117 29.6045 292.605l139.534 139.534c43.4658 45.4189 104.907 68.1396 164.419 68.1396c44.6982 0 89.209 -12.8135 128 -38.6045l94.6514 94.7441c18.1631 18.1631 47.8838 18.1631 66.0469 0zM596.087 427.907 +c0 21.1621 -5.06934 41.3252 -14 59.7676l-70.6748 -70.8604c-9.06934 -9.09375 -20.9766 -13.6279 -32.79 -13.6279c-11.9072 0 -23.791 4.53418 -32.8838 13.6279c-18.1631 18.1621 -18.1631 47.6045 0 65.7666l70.7676 70.8604c-18.5117 8.81445 -38.6045 14 -59.6748 14 +c-37.2559 0 -74.2559 -14.5342 -100.604 -40.8828l-137.581 -139.535c-26.3496 -26.3486 -40.8838 -61.3955 -40.8838 -98.6514c0 -21.1631 5.09277 -41.3252 14 -59.7676l69.3945 69.3955c18.1631 18.1631 47.6055 18.1631 63.8145 0 +c18.1631 -18.1631 18.1631 -47.6045 0 -65.7676l-67.4414 -69.3955c18.5342 -8.81348 38.6973 -14 59.7666 -14c35.3027 0 72.21 14.5352 98.6514 40.8838l139.256 139.535c26.3486 26.3486 40.8838 61.3955 40.8838 98.6514z" /> + <glyph glyph-name="glyph106" unicode="☾" +d="M152.093 517.488c-28.0693 -44.4414 -44.0693 -96.5352 -44.0693 -151.116c0 -158.488 128.813 -287.303 287.256 -287.279c54.6045 0 106.744 15.9766 151.162 44.1396c-208.302 19.6279 -374.628 185.907 -394.349 394.256zM290.441 730.232 +c-29.2549 -50.6514 -47.2549 -108.604 -47.2324 -171.279c0 -190.302 154.232 -344.697 344.651 -344.697c62.6748 0 120.628 17.9766 171.325 47.2324c-45.7666 -158.628 -190.488 -275.441 -363.906 -275.441c-210.047 0 -380.279 170.232 -380.279 380.325 +c0 173.419 116.744 318.069 275.441 363.86z" /> + <glyph glyph-name="glyph107" unicode="" +d="M704.488 412l-13.6045 -13.7207l67.0459 -66.9072l-65.7666 -65.5811l-66.9541 66.9062l-346.396 -346.65h-172.418l-91.3955 92.8369v168.604l347.721 347.931l-69.1855 69.1855l65.5342 65.6279l69.1162 -69.2324l13.8145 13.7207 +c36.1396 36.2559 83.6973 54.4189 131.303 54.4189c47.3486 0 94.9297 -18.1631 131.186 -54.4189c72.6748 -72.4883 72.6748 -190.186 0 -262.721zM255 93.791l304.512 304.697l-131.14 131.14l-300.372 -300.559c32.3486 -1.09277 64.4883 -13.1855 89.1162 -37.8838 +c26.791 -26.8135 38.9766 -62.1387 37.8838 -97.3945z" /> + <glyph glyph-name="glyph108" unicode="" horiz-adv-x="681" +d="M570.419 588.697c61.7666 -61.5811 95.7441 -143.441 95.7441 -230.558c0 -179.512 -146.07 -325.581 -325.582 -325.581v-46.5117l-93.0225 93.0225l93.0225 93.0234v-46.5117c128.279 0 232.559 104.279 232.559 232.559c0 62.2324 -24.3486 120.721 -68.3027 164.697z +M433.604 637.209l-93.0234 -93.0234v46.5117c-128.278 0 -232.558 -104.278 -232.558 -232.558c0 -62.2324 24.3486 -120.721 68.3018 -164.698l-65.5811 -65.8604c-61.7676 61.582 -95.7441 143.442 -95.7441 230.559c0 179.512 146.069 325.581 325.581 325.581v46.5117z +" /> + <glyph glyph-name="glyph109" unicode="" +d="M15 79.0693c0 62.0312 31.0156 93.0469 93.0469 93.0469c62.0303 0 93.0459 -31.0156 93.0459 -93.0469c0 -62.0303 -31.0156 -93.0459 -93.0459 -93.0459c-62.0312 0 -93.0469 31.0156 -93.0469 93.0459zM155.069 265.023v93.1162 +c64.1133 0 118.909 -22.7549 164.388 -68.2646s68.2178 -100.336 68.2178 -164.479h-93.0703c0 38.5186 -13.6357 71.4189 -40.9062 98.7031c-27.2705 27.2832 -60.1475 40.9248 -98.6289 40.9248zM154.441 451.163v93.0225c75.7012 0 145.709 -18.7051 210.023 -56.1143 +c64.3154 -37.4102 115.173 -88.2793 152.574 -152.608c37.4004 -64.3291 56.1006 -134.352 56.1006 -210.067h-93.0703c0 58.8857 -14.5469 113.351 -43.6416 163.393c-29.0938 50.042 -68.6504 89.6152 -118.671 118.719 +c-50.0195 29.1045 -104.458 43.6562 -163.315 43.6562zM154.441 637.209v93.0234c81.8926 0 160.163 -15.9893 234.812 -47.9668c74.6484 -31.9775 138.979 -74.9736 192.988 -128.988s97.0029 -118.354 128.979 -193.017 +c31.9766 -74.6641 47.9648 -152.952 47.9648 -234.865h-93.0225c0 69.3096 -13.5303 135.554 -40.5908 198.733c-27.0605 63.1807 -63.4434 117.625 -109.146 163.333c-45.7041 45.708 -100.14 82.0928 -163.305 109.155c-63.165 27.0605 -129.393 40.5918 -198.681 40.5918 +z" /> + <glyph glyph-name="glyph110" unicode="ℹ" horiz-adv-x="402" +d="M61.5117 358.14h-46.5117v93.0234h279.069l0.186523 -325.582c0 -25.6973 20.8838 -46.5117 46.5117 -46.5117h46.3252v-93.0225h-372.093v93.0225h46.5117c25.6973 0 46.5117 20.8145 46.5117 46.5117v186.047c0 25.6973 -20.8145 46.5117 -46.5117 46.5117z +M108.023 637.209c0 62.0156 31.0078 93.0234 93.0234 93.0234c62.0146 0 93.0225 -31.0078 93.0225 -93.0234s-31.0078 -93.0234 -93.0225 -93.0234c-62.0156 0 -93.0234 31.0078 -93.0234 93.0234z" /> + <glyph glyph-name="glyph111" unicode="" +d="M434.14 405.232v134.628c65.9531 -17.0234 117.558 -68.6738 134.628 -134.628h-134.628zM434.14 311.047h134.628c-17.0703 -65.9072 -68.6748 -117.605 -134.628 -134.582v134.582zM339.953 405.232h-134.628c16.9775 65.9531 68.6748 117.604 134.628 134.628 +v-134.628zM339.953 311.047v-134.582c-65.9531 16.9766 -117.65 68.6748 -134.628 134.582h134.628zM434.14 635.977v94.2559c170.069 -21.4883 303.512 -154.977 325.046 -325h-94.3018c-20 118 -112.744 210.768 -230.744 230.744zM109.209 405.232h-94.209 +c21.4414 170.023 154.977 303.512 324.953 325v-94.2559c-118.022 -19.9766 -210.767 -112.721 -230.744 -230.744zM339.953 80.3486v-94.3018c-169.977 21.4414 -303.512 154.977 -324.953 325h94.209c20 -118.047 112.744 -210.722 230.744 -230.698zM664.884 311.047 +h94.3018c-21.5342 -170.023 -154.977 -303.559 -325.046 -325v94.3018c118 19.9766 210.768 112.651 230.744 230.698z" /> + <glyph glyph-name="glyph112" unicode="" +d="M759.186 79.0693l-93.0225 -93.0225l-325.582 325.674l-139.534 -139.535l-186.047 558.047l558.14 -186.047l-139.535 -139.534z" /> + <glyph glyph-name="glyph113" unicode="➖" +d="M15 265.116v186.047h744.186v-186.047h-744.186z" /> + <glyph glyph-name="glyph114" unicode="" +d="M293.791 450.441v93.7441h185.86v-93.7441h-185.86zM665.535 543.093l92.9297 -93.0234h-92.9297v-464.022h-557.604c-51.3262 0 -92.9307 41.6045 -92.9307 93.0225v558.14c0 51.4189 41.6045 93.0234 92.9307 93.0234h557.604v-93.3955h93.6504zM572.604 79.0693 +h-0.0234375v558.14h-371.721v-558.14h371.744z" /> + <glyph glyph-name="glyph115" unicode="" +d="M712.675 311.628c25.6973 0 46.5107 -20.8135 46.5107 -46.5117v-186.047c0 -25.6973 -20.8135 -46.5107 -46.5107 -46.5107h-139.535v279.069v93.0234c0 102.651 -83.3955 186.046 -186.047 186.046s-186.046 -83.3945 -186.046 -186.046v-93.0234v-279.069h-139.535 +c-25.6982 0 -46.5117 20.8135 -46.5117 46.5107v186.047c0 25.6982 20.8135 46.5117 46.5117 46.5117h46.5117v93.0234c0 154.069 125 279.069 279.069 279.069c154.07 0 279.07 -125 279.07 -279.069v-93.0234h46.5117z" /> + <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="681" +d="M666.163 451.163h-128l-23.1631 -186.047h151.163v-93.0234h-162.791l-23.3027 -186.046h-93.0225l23.2559 186.046h-186l-23.2559 -186.046h-93.0234l23.2559 186.046h-116.279v93.0234h127.907l23.209 186.047h-151.116v93.0225h162.744l23.2559 186.047h93.0234 +l-23.2559 -186.047h186l23.2559 186.047h93.0234l-23.2559 -186.047h116.372v-93.0225zM421.931 265.116l23.209 186.047h-186l-23.209 -186.047h186z" /> + <glyph glyph-name="glyph117" unicode="" +d="M387.093 -13.9531c-205.488 0 -372.093 166.604 -372.093 372.046c0 205.535 166.604 372.14 372.093 372.14s372.093 -166.604 372.093 -372.14c0 -205.441 -166.604 -372.046 -372.093 -372.046zM386.372 544.186l-185.325 -186.093l185.325 -185.278v138.813h186.768 +v92.9766h-186.768v139.581z" /> + <glyph glyph-name="glyph118" unicode="" +d="M387.093 -13.9531c-205.488 0 -372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093s372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093zM247.559 451.163l-93.0234 -93.0234l93.0234 -93.0234v46.5117h372.093v93.0234h-372.093 +v46.5117z" /> + <glyph glyph-name="glyph119" unicode="" +d="M586.768 92.6973l-106.651 -106.65v279.069h279.069l-106.65 -106.651l106.65 -106.65l-65.7666 -65.7676zM15 451.163l106.651 106.651l-105.559 105.65l65.7676 65.7676l105.559 -105.651l106.65 106.651v-279.069h-279.069zM15 51.8145l106.651 106.65 +l-106.651 106.651h279.069v-279.069l-106.65 106.65l-106.651 -106.65zM480.116 451.163v279.069l106.651 -106.651l105.744 105.651l65.7676 -65.7676l-105.744 -105.65l106.65 -106.651h-279.069z" /> + <glyph glyph-name="glyph120" unicode="" +d="M666.163 172.093c51.418 0 93.0225 -41.6973 93.0225 -93.0234c0 -51.3252 -41.6045 -93.0225 -93.0225 -93.0225c-51.4189 0 -93.0234 41.6973 -93.0234 93.0225c0 11.7217 2.7207 22.7217 6.7207 33.0703l-140.907 100.558 +c-25.2324 -25.0693 -60.0459 -40.6045 -98.3721 -40.6045c-77.0225 0 -139.534 62.5117 -139.534 139.535c0 7.25586 1.09277 14.2559 2.18555 21.2559l-111.372 37.1631c-8.18555 -7.18652 -18.6279 -11.9072 -30.3486 -11.9072 +c-25.6982 0 -46.5117 20.8135 -46.5117 46.5117c0 25.6973 20.8135 46.5117 46.5117 46.5117c22.2559 0 39.9766 -15.9072 44.5117 -36.791l112 -37.4189c23.5352 43.9541 69.3252 74.21 122.558 74.21c30.1631 0 57.7676 -9.72168 80.6748 -26.0703l165.884 165.977 +c-8.09277 13.791 -14 28.9775 -14 46.1396c0 51.4189 41.6045 93.0234 93.0234 93.0234c51.418 0 93.0225 -41.6045 93.0225 -93.0234c0 -51.418 -41.6045 -93.0234 -93.0225 -93.0234c-17.1631 0 -32.3496 5.90723 -46.1396 14l-165.884 -165.977 +c16.1631 -22.7207 25.9766 -50.5117 25.9766 -80.5811c0 -21.8838 -5.44141 -42.2324 -14.4414 -60.7676l141.813 -101.209c16.0703 13.3486 36.0469 22.4414 58.6748 22.4414z" /> + <glyph glyph-name="glyph121" unicode="" +d="M699.047 111.953l60.1387 60.1396v-186.046h-186.046l60.1396 60.1387l-153.163 153.163l65.7676 65.7676zM75.1396 604.325l-60.1396 -60.1396v186.047h186.047l-60.1396 -60.1396l153.162 -153.162l-65.7666 -65.7676zM633.279 670.093l-60.1396 60.1396h186.046 +v-186.047l-60.1387 60.1396l-153.163 -153.162l-65.7676 65.7676zM294.069 199.349l-153.162 -153.163l60.1396 -60.1387h-186.047v186.046l60.1396 -60.1396l153.163 153.163z" /> + <glyph glyph-name="at" unicode="@" +d="M709.047 172.093h-135.907c-30.3486 0 -56.1396 15.6279 -73.0469 38.1631c-31.418 -24.1631 -70.3018 -39.1631 -113 -39.1631c-102.744 0 -186.046 83.3027 -186.046 186.047s83.3018 186.046 186.046 186.046h186.047v-278.069h75.3018l0.744141 -1.09277 +c10.6279 29.4414 16.9775 61.0459 16.9775 94.1162c0 153.884 -125.187 279.069 -279.07 279.069s-279.069 -125.186 -279.069 -279.069s125.186 -279.07 279.069 -279.07c76.9541 0 146.722 31.2559 197.21 81.8613l65.8604 -65.8613 +c-67.3027 -67.418 -160.326 -109.022 -263.07 -109.022c-205.488 0 -372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093s372.093 -166.604 372.093 -372.093c0 -67.9541 -18.2549 -131.279 -50.1387 -186.047zM480.116 404.465v45.6982h-93.0234 +c-51.2324 0 -93.0234 -41.6982 -93.0234 -93.0234s41.791 -93.0234 93.0234 -93.0234s93.0234 41.6982 93.0234 93.0234v47.3252z" /> + <glyph glyph-name="glyph123" unicode="" +d="M573.047 451.163c93.1162 0 186.139 -49.4189 186.139 -186.047c0 -133.721 -93.0225 -186.047 -186.139 -186.047h-92.9307c-51.3252 0 -93.0234 -41.6045 -93.0234 -93.0225c-102.744 0 -186.14 83.3018 -186.14 186.046v93.0234 +c0 37.0703 8.46582 67.4424 21.6279 93.0234h-21.6279c-92.9297 0 -185.953 52.3252 -185.953 186.046c0 136.629 93.0234 186.047 185.953 186.047h186.14c93.0234 0 185.954 -57.6045 185.954 -186.047v-93.0225zM200.953 451.163h93.1162 +c60.6748 0 114.651 -29.2559 148.628 -74.4424c22.791 16.9766 37.4189 44.0469 37.4189 74.4424v93.0225c0 80.9307 -58.2324 93.0234 -93.0234 93.0234h-186.14c-92.9297 0 -92.9297 -65.1396 -92.9297 -93.0234c0 -22.9766 0 -93.0225 92.9297 -93.0225zM573.047 172.093 +c93.1162 0 93.1162 69.9541 93.1162 93.0234c0 27.8369 0 93.0234 -93.1162 93.0234l-25.6982 0.0458984l0.0927734 0.046875c-32.2559 -55.418 -91.5811 -93.1162 -160.349 -93.1162c0 35.8838 -20.9766 66.1396 -50.79 81.6748 +c-21.0703 -13.2793 -42.2334 -39.1162 -42.2334 -81.6748v-93.0234c0 -30.3486 14.6279 -57.418 37.2559 -74.3955c33.9541 45.1396 88.0234 74.3955 148.791 74.3955h92.9307zM566.604 404.791c-0.62793 -2.13965 -1.37207 -4.23242 -2 -6.30273 +c0.62793 2.07031 1.44238 4.16309 2 6.30273z" /> + <glyph glyph-name="glyph124" unicode="" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM433.604 218.604v279.07h46.5117l-93.0234 93.0225l-93.0234 -93.0225h46.5117v-279.07 +h-46.5117l93.0234 -93.0234l93.0234 93.0234h-46.5117z" /> + <glyph glyph-name="glyph125" unicode="" horiz-adv-x="309" +d="M154.535 218.604l46.5117 46.5117v-139.535h93.0225l-139.534 -139.534l-139.535 139.534h93.0234v139.535zM154.535 496.232l-46.5117 -45.0693v139.534h-93.0234l139.535 139.535l139.534 -139.535h-93.0225v-139.534z" /> + <glyph glyph-name="glyph126" unicode="✓" +d="M292.697 58.6748l-277.697 277.697l132.441 132.465l145.256 -145.256l334.047 334.023l132.441 -132.441z" /> + <glyph glyph-name="glyph127" unicode="" horiz-adv-x="588" +d="M294.069 358.14c-51.418 0 -93.0225 41.6514 -93.0225 93.0234v186.046c0 51.3721 41.6045 93.0234 93.0225 93.0234c51.4189 0 93.0234 -41.6514 93.0234 -93.0234v-186.046c0 -51.3721 -41.6045 -93.0234 -93.0234 -93.0234zM387.093 79.0693 +c51.4189 0 93.0234 -41.6045 93.0234 -93.0225h-372.093c0 51.418 41.6045 93.0225 93.0234 93.0225h46.5117v97.7451c-131.722 22.2549 -232.559 136.395 -232.559 274.349v45.0693c0 25.6973 20.8135 46.5117 46.5117 46.5117 +c25.6973 0 46.5117 -20.8145 46.5117 -46.5117v-45.0693c0 -102.604 83.3955 -186.047 186.046 -186.047c102.651 0 186.047 83.4424 186.047 186.047v45.0693c0 25.6973 20.8145 46.5117 46.5117 46.5117s46.5117 -20.8145 46.5117 -46.5117v-45.0693 +c0 -137.954 -100.837 -252.094 -232.559 -274.349v-97.7451h46.5117z" /> + <glyph glyph-name="glyph128" unicode="" +d="M759.186 -13.9531h-744.186v651.162h93.0234v-558.14h558.14v558.14h93.0225v-651.162zM154.535 358.14v93.0234h93.0234v-93.0234h-93.0234zM340.581 357.953v93.0234h93.0234v-93.0234h-93.0234zM526.628 358.14v93.0234h93.0234v-93.0234h-93.0234zM154.535 172.093 +v93.0234h93.0234v-93.0234h-93.0234zM340.581 172.093v93.0234h93.0234v-93.0234h-93.0234zM526.628 172.093v93.0234h93.0234zM201.047 590.697v93.0234c0 25.6982 20.8135 46.5117 46.5117 46.5117c25.6973 0 46.5107 -20.8135 46.5107 -46.5117v-93.0234 +c0 -25.6973 -20.8135 -46.5117 -46.5107 -46.5117c-25.6982 0 -46.5117 20.8145 -46.5117 46.5117zM480.116 590.697v93.0234c0 25.6982 20.8145 46.5117 46.5117 46.5117s46.5117 -20.8135 46.5117 -46.5117v-93.0234c0 -25.6973 -20.8145 -46.5117 -46.5117 -46.5117 +s-46.5117 20.8145 -46.5117 46.5117z" /> + <glyph glyph-name="glyph129" unicode="" horiz-adv-x="681" +d="M108.023 730.232h558.14v-744.186h-558.14c-51.3721 0 -93.0234 41.6045 -93.0234 93.0225v558.14c0 51.4189 41.6514 93.0234 93.0234 93.0234zM573.14 79.0693v558.14h-92.6748v-187.674l-93.7441 93.7441l-93.0234 -93.0234v186.953h-92.6504v-558.14h372.093z" /> + <glyph glyph-name="glyph130" unicode="" +d="M387.093 218.604l46.5117 46.5117v-139.535h93.0234l-139.535 -139.534l-139.534 139.534h93.0225v139.535zM387.093 496.232l-46.5117 -45.0693v139.534h-93.0225l139.534 139.535l139.535 -139.535h-93.0234v-139.534zM247.559 358.14l46.5107 -46.5117h-139.534 +v-93.0234l-139.535 139.535l139.535 139.535v-93.0234h139.534zM525.186 358.14l-45.0693 46.5117h139.535v93.0234l139.534 -139.535l-139.534 -139.535v93.0234h-139.535z" /> + <glyph glyph-name="glyph131" unicode="" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM526.628 265.116l93.0234 93.0234l-93.0234 93.0234v-46.5117h-93.0234v93.0234h46.5117 +l-93.0234 93.0225l-93.0234 -93.0225h46.5117v-93.0234h-93.0225v46.5117l-93.0234 -93.0234l93.0234 -93.0234v46.5117h93.0225v-93.0234h-46.5117l93.0234 -93.0234l93.0234 93.0234h-46.5117v93.0234h93.0234v-46.5117z" /> + <glyph glyph-name="glyph132" unicode="" horiz-adv-x="402" +d="M201.047 265.116c32.79 0 63.7666 6.7207 93.0225 17.1162v-296.186l-93.0225 93.0225l-93.0234 -93.0225v296.186c29.2559 -10.3955 60.2324 -17.1162 93.0234 -17.1162zM201.047 730.232c102.744 0 186.046 -83.3018 186.046 -186.047 +c0 -102.744 -83.3018 -186.046 -186.046 -186.046s-186.047 83.3018 -186.047 186.046c0 102.745 83.3027 186.047 186.047 186.047zM201.047 451.163c51.418 0 93.0225 41.6514 93.0225 93.0225c0 51.373 -41.6045 93.0234 -93.0225 93.0234 +c-51.4189 0 -93.0234 -41.6504 -93.0234 -93.0234c0 -51.3711 41.6045 -93.0225 93.0234 -93.0225z" /> + <glyph glyph-name="glyph133" unicode="" +d="M750 599c5.46484 -17.4414 9.18555 -35.6045 9.18555 -54.8145c0 -102.697 -83.3018 -186.046 -186.046 -186.046c-28.6045 0 -55.5117 7.0459 -79.6748 18.5811l-372.628 -372.512c-11.0928 -11.2559 -26.6279 -18.1621 -43.79 -18.1621 +c-34.3496 0 -62.0469 27.79 -62.0469 61.9531c0 17.2559 7 32.6973 18.1631 43.9766l372.558 372.442c-11.6279 24.3018 -18.6279 51.1162 -18.6279 79.7666c0 102.698 83.3027 186.047 186.047 186.047c18.6279 0 36.3252 -3.58105 53.3252 -8.7207l-115.372 -115.326 +v-123.999h122.093z" /> + <glyph glyph-name="glyph134" unicode="" horiz-adv-x="588" +d="M15 730.232l558.14 -372.093l-558.14 -372.093v744.186z" /> + <glyph glyph-name="glyph135" unicode="★" +d="M529.813 273.837l90.0234 -287.79l-232.372 178.604l-232.93 -178.604l90.1162 288.512l-229.651 176.604h279.069l93.0234 279.069l93.0234 -279.069h279.069z" /> + <glyph glyph-name="glyph136" unicode="" +d="M334.553 279.116l-232.744 -232.558c-115.744 133.813 -115.744 331.302 0 465.116zM478.133 633.535c159.35 -23.3955 281.07 -156.396 281.07 -320.535c0 -180.697 -146.441 -326.953 -329.232 -326.953c-70.7207 0 -136.488 25.6279 -190.629 66.0459l238.791 240.838 +v340.604zM387.064 357.768l-266.908 266.953c73.9531 60.4424 165.535 99.2324 266.908 105.512v-372.465z" /> + <glyph glyph-name="glyph137" unicode="⛆" +d="M573.151 590.697c102.558 0 186.046 -83.4414 186.046 -186.046s-83.4883 -186.047 -186.046 -186.047h-372.093c-102.559 0 -186.047 83.4424 -186.047 186.047s83.4883 186.046 186.047 186.046c8.25586 0 16.4414 -1.23242 24.6279 -2.3252 +c31.9766 56.6045 91.9297 95.3486 161.418 95.3486c68.0469 0 128 -38.2793 160.419 -95.6045c8.46484 1.16309 16.8135 2.58105 25.6279 2.58105zM573.151 311.628c51.3252 0 93.0234 41.7441 93.0234 93.0234s-41.6982 93.0234 -93.0234 93.0234 +c-51.3262 0 -93.0234 -41.7441 -93.0234 -93.0234h-93.0234c0 60.5811 29.5352 113.953 74.3955 147.93c-17.0693 23.21 -44.3252 38.1162 -74.3955 38.1162c-51.3252 0 -93.0234 -41.7441 -93.0234 -93.0225c0 -11.21 1.90723 -22.1631 5.81445 -32.4893l-87.1162 -32.6045 +c-7.62793 20.3496 -11.4424 41.8838 -11.6279 63.8145c-47.9766 -1.39551 -93.1162 -40.7441 -93.1162 -91.7441c0 -51.2793 41.6973 -93.0234 93.0234 -93.0234h372.093zM91.3145 45.6279c-17.4424 -17.4424 -45.791 -17.4424 -63.2334 0 +c-17.4414 17.4414 -17.4414 45.791 0 63.2324c17.4424 17.4424 126.466 63.2324 126.466 63.2324s-45.791 -109.023 -63.2324 -126.465zM277.453 45.6279c-17.4414 -17.4424 -45.6973 -17.4424 -63.2324 0c-17.4414 17.4414 -17.4414 45.791 0 63.2324 +c17.5352 17.4424 126.466 63.2324 126.466 63.2324s-45.6982 -109.023 -63.2334 -126.465zM463.407 45.6279c-17.4424 -17.4424 -45.791 -17.4424 -63.2324 0c-17.4424 17.4414 -17.4424 45.791 0 63.2324c17.4414 17.4424 126.465 63.2324 126.465 63.2324 +s-45.791 -109.023 -63.2324 -126.465z" /> + <glyph glyph-name="glyph138" unicode="" +d="M387.093 637.163h372.093v-186.094v-93.0225v-278.978c0 -51.418 -41.6973 -93.0225 -93.0225 -93.0225h-558.14c-51.4189 0 -93.0234 41.6045 -93.0234 93.0225v293.512v78.4883v279.163h372.093v-93.0693zM294.069 637.209h-186.046v-186.046h558.14v92.9766h-279.07 +h-93.0234v93.0234v0.0458984zM666.163 79.0693v278.978v0.0927734h-558.14v-279.07h558.14z" /> + <glyph glyph-name="glyph139" unicode="☀" +d="M387.093 451.163c-51.2324 0 -93.0234 -41.7441 -93.0234 -93.0234s41.791 -93.0234 93.0234 -93.0234s93.0234 41.7441 93.0234 93.0234s-41.791 93.0234 -93.0234 93.0234zM387.093 544.186c102.744 0 186.047 -83.3018 186.047 -186.046 +s-83.3027 -186.047 -186.047 -186.047s-186.046 83.3027 -186.046 186.047s83.3018 186.046 186.046 186.046zM340.581 683.721c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117 +s-46.5117 15.5039 -46.5117 46.5117zM108.023 590.697c0 31.0078 15.5039 46.5117 46.5117 46.5117s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM61.5117 404.697 +c25.6973 0 46.5117 -20.8135 46.5117 -46.5107c0 -25.7451 -20.8145 -46.5117 -46.5117 -46.5117c-25.6982 0 -46.5117 20.7666 -46.5117 46.5117c0 25.6973 20.8135 46.5107 46.5117 46.5107zM108.023 125.581c0 31.0078 15.5039 46.5117 46.5117 46.5117 +s46.5117 -15.5039 46.5117 -46.5117s-15.5039 -46.5117 -46.5117 -46.5117s-46.5117 15.5039 -46.5117 46.5117zM340.581 32.5586c0 25.79 20.8145 46.5107 46.5117 46.5107c25.791 0 46.5117 -20.7207 46.5117 -46.5107c0 -25.6279 -20.7207 -46.5117 -46.5117 -46.5117 +c-25.6973 0 -46.5117 20.8838 -46.5117 46.5117zM586.953 92.6973c-18.1621 18.1631 -18.1621 47.6055 0 65.7676c18.2559 18.1631 47.6055 18.1631 65.7676 0c18.1631 -18.1621 18.2559 -47.6045 0 -65.7676c-18.1621 -18.1621 -47.6045 -18.1621 -65.7676 0z +M712.581 311.675c-25.6045 0 -46.418 20.79 -46.418 46.4648c0 25.791 20.7207 46.5117 46.5117 46.5117c25.6279 0 46.5107 -20.7676 46.5107 -46.4648c0 -25.7451 -20.8828 -46.5586 -46.6045 -46.5117zM652.721 557.768c-18.1621 -18.1162 -47.6045 -18.1162 -65.7676 0 +c-18.1621 18.2559 -18.1621 47.6045 0 65.8135c18.1631 18.1162 47.6055 18.1631 65.7676 -0.0458984c18.1631 -18.1631 18.1631 -47.6514 0 -65.7676z" /> + <glyph glyph-name="glyph140" unicode="" horiz-adv-x="588" +d="M294.069 358.14c154.07 0 279.07 -125 279.07 -279.07c0 -51.418 -41.6045 -93.0225 -93.0234 -93.0225h-372.093c-51.4189 0 -93.0234 41.6045 -93.0234 93.0225c0 154.07 125 279.07 279.069 279.07zM154.535 590.697c0 93.0234 46.5117 139.535 139.534 139.535 +c93.0234 0 139.535 -46.5117 139.535 -139.535c0 -93.0225 -46.5117 -139.534 -139.535 -139.534c-93.0225 0 -139.534 46.5117 -139.534 139.534z" /> + <glyph glyph-name="glyph141" unicode="" +d="M759.186 451.163v-186.047h-93.0225v-46.5117c0 -25.6279 -20.8838 -46.5117 -46.5117 -46.5117h-558.14c-25.6279 0 -46.5117 20.8838 -46.5117 46.5117v279.07c0 25.5811 20.8838 46.5107 46.5117 46.5107h558.14c25.6279 0 46.5117 -20.9297 46.5117 -46.5107 +v-46.5117h93.0225zM573.14 265.116v186.047h-186.047v-186.047h186.047z" /> + <glyph glyph-name="glyph142" unicode="" +d="M719.86 521.559c24.4189 -49.5117 39.3252 -104.512 39.3252 -163.419c0 -23.4424 -2.7207 -46.1396 -6.90625 -68.5117h-264.349zM504.651 375.814v333.604c78.1162 -26.1631 145.349 -75.9775 190.768 -142.931zM404.488 240.581h333.884 +c-26.1631 -78.209 -76.0234 -145.534 -143.069 -190.86zM455.535 457.116l-233.094 233.093c49.8145 24.8145 105.233 40.0234 164.651 40.0234c23.4424 0 46.1865 -2.76758 68.4424 -6.90723v-266.209zM318.651 256.931l231.697 -231.628 +c-49.5117 -24.3496 -104.396 -39.2559 -163.256 -39.2559c-23.4414 0 -46.1855 2.7207 -68.4414 6.88379v264zM269.488 340.163v-333.326c-78.0234 26.1631 -145.209 75.9541 -190.535 142.814zM21.9072 426.581v0.0234375h264.581l-232.069 -232.069 +c-24.4189 49.5117 -39.4189 104.558 -39.4189 163.604c0 23.4414 2.76758 46.1855 6.90723 68.4414zM177.697 665.559l189.814 -189.814h-331.721c26.0459 77.6748 75.5117 144.488 141.906 189.814z" /> + <glyph glyph-name="glyph143" unicode="" +d="M15 265.116l372.093 465.116l372.093 -465.116h-744.186zM15 -13.9531v186.046h743.186v-186.046h-743.186z" /> + <glyph glyph-name="glyph144" unicode="" +d="M759.186 358.187c0 -205.535 -166.604 -372.14 -372.093 -372.14s-372.093 166.604 -372.093 372.14c0 205.441 166.604 372.046 372.093 372.046s372.093 -166.604 372.093 -372.046zM201.047 357.465l186.046 -185.372l185.326 185.372h-138.814v186.721h-93.0234 +v-186.721h-139.534z" /> + <glyph glyph-name="paragraph" unicode="¶" horiz-adv-x="588" +d="M573.14 730.232v-93.0234h-93.0234v-651.162h-93.0234v651.162h-93.0234v-651.162h-93.0225v372.093c-102.744 0 -186.047 83.3018 -186.047 186.046c0 102.745 83.3027 186.047 186.047 186.047h93.0225h93.0234h93.0234h93.0234z" /> + <glyph glyph-name="glyph146" unicode="" +d="M15 358.14c0 205.488 166.604 372.093 372.093 372.093s372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093zM480.116 497.675l-93.0234 93.0225l-93.0234 -93.0225h46.5117v-372.094h93.0234v372.094h46.5117z +" /> + <glyph glyph-name="glyph147" unicode="" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM387.814 172.093l185.325 186.047l-185.325 185.325v-138.813h-186.768v-93.0234h186.768 +v-139.535z" /> + <glyph glyph-name="glyph148" unicode="" +d="M387.093 730.232c205.488 0 372.093 -166.604 372.093 -372.093s-166.604 -372.093 -372.093 -372.093s-372.093 166.604 -372.093 372.093s166.604 372.093 372.093 372.093zM526.628 265.116l93.0234 93.0234l-93.0234 93.0234v-46.5117h-372.093v-93.0234h372.093 +v-46.5117z" /> + <glyph glyph-name="glyph149" unicode="" +d="M759.186 -13.9531h-106.278c0 351.744 -286.163 637.86 -637.907 637.86v106.325c410.256 0 744.186 -333.837 744.186 -744.186zM546.512 -13.9531h-106.279c0 234.465 -190.86 425.232 -425.232 425.232v106.325c293.069 0 531.512 -238.488 531.512 -531.558z +M333.953 -13.9531h-106.372c0 117.278 -95.3018 212.581 -212.581 212.581v106.372c175.86 0 318.953 -143.093 318.953 -318.953zM121.279 -13.9531h-106.279v106.278c58.7676 0 106.279 -47.6045 106.279 -106.278z" /> + <glyph glyph-name="glyph150" unicode="" +d="M124.093 94.8838c-70.3955 70.3018 -109.093 163.697 -109.093 263.256c0 205.116 166.884 372.093 372.093 372.093l46.5117 -46.5117l-46.5117 -46.5117c-153.884 0 -279.069 -125.186 -279.069 -279.069c0 -74.6748 29.0693 -144.814 81.8604 -197.488 +l-57.1396 -7.44238zM387.093 -13.9531l-46.5117 46.3252l46.5117 46.6973c153.884 0 279.07 125.187 279.07 279.07c0 74.4883 -29.0703 144.628 -81.9307 197.396l57.2324 7.53418l8.53516 58.2334c70.3955 -70.3027 109.186 -163.791 109.186 -263.163 +c0 -205.116 -166.977 -372.093 -372.093 -372.093z" /> + </font> +</defs></svg> diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.ttf b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.ttf Binary files differnew file mode 100644 index 00000000..f891c8da --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.ttf diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.woff b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.woff Binary files differnew file mode 100644 index 00000000..85f5be59 --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/font/iconic_stroke.woff diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/img/glyphicons-halflings-white.png b/src/main/java/com/gitblit/wicket/resources/bootstrap/img/glyphicons-halflings-white.png Binary files differnew file mode 100644 index 00000000..3bf6484a --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/img/glyphicons-halflings-white.png diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/img/glyphicons-halflings.png b/src/main/java/com/gitblit/wicket/resources/bootstrap/img/glyphicons-halflings.png Binary files differnew file mode 100644 index 00000000..79bc568c --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/img/glyphicons-halflings.png diff --git a/src/main/java/com/gitblit/wicket/resources/bootstrap/js/bootstrap.js b/src/main/java/com/gitblit/wicket/resources/bootstrap/js/bootstrap.js new file mode 100644 index 00000000..5d6e65b8 --- /dev/null +++ b/src/main/java/com/gitblit/wicket/resources/bootstrap/js/bootstrap.js @@ -0,0 +1,1825 @@ +/* =================================================== + * bootstrap-transition.js v2.0.4 + * http://twitter.github.com/bootstrap/javascript.html#transitions + * =================================================== + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ========================================================== */ + + +!function ($) { + + $(function () { + + "use strict"; // jshint ;_; + + + /* CSS TRANSITION SUPPORT (http://www.modernizr.com/) + * ======================================================= */ + + $.support.transition = (function () { + + var transitionEnd = (function () { + + var el = document.createElement('bootstrap') + , transEndEventNames = { + 'WebkitTransition' : 'webkitTransitionEnd' + , 'MozTransition' : 'transitionend' + , 'OTransition' : 'oTransitionEnd' + , 'msTransition' : 'MSTransitionEnd' + , 'transition' : 'transitionend' + } + , name + + for (name in transEndEventNames){ + if (el.style[name] !== undefined) { + return transEndEventNames[name] + } + } + + }()) + + return transitionEnd && { + end: transitionEnd + } + + })() + + }) + +}(window.jQuery);/* ========================================================== + * bootstrap-alert.js v2.0.4 + * http://twitter.github.com/bootstrap/javascript.html#alerts + * ========================================================== + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ========================================================== */ + + +!function ($) { + + "use strict"; // jshint ;_; + + + /* ALERT CLASS DEFINITION + * ====================== */ + + var dismiss = '[data-dismiss="alert"]' + , Alert = function (el) { + $(el).on('click', dismiss, this.close) + } + + Alert.prototype.close = function (e) { + var $this = $(this) + , selector = $this.attr('data-target') + , $parent + + if (!selector) { + selector = $this.attr('href') + selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 + } + + $parent = $(selector) + + e && e.preventDefault() + + $parent.length || ($parent = $this.hasClass('alert') ? $this : $this.parent()) + + $parent.trigger(e = $.Event('close')) + + if (e.isDefaultPrevented()) return + + $parent.removeClass('in') + + function removeElement() { + $parent + .trigger('closed') + .remove() + } + + $.support.transition && $parent.hasClass('fade') ? + $parent.on($.support.transition.end, removeElement) : + removeElement() + } + + + /* ALERT PLUGIN DEFINITION + * ======================= */ + + $.fn.alert = function (option) { + return this.each(function () { + var $this = $(this) + , data = $this.data('alert') + if (!data) $this.data('alert', (data = new Alert(this))) + if (typeof option == 'string') data[option].call($this) + }) + } + + $.fn.alert.Constructor = Alert + + + /* ALERT DATA-API + * ============== */ + + $(function () { + $('body').on('click.alert.data-api', dismiss, Alert.prototype.close) + }) + +}(window.jQuery);/* ============================================================ + * bootstrap-button.js v2.0.4 + * http://twitter.github.com/bootstrap/javascript.html#buttons + * ============================================================ + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============================================================ */ + + +!function ($) { + + "use strict"; // jshint ;_; + + + /* BUTTON PUBLIC CLASS DEFINITION + * ============================== */ + + var Button = function (element, options) { + this.$element = $(element) + this.options = $.extend({}, $.fn.button.defaults, options) + } + + Button.prototype.setState = function (state) { + var d = 'disabled' + , $el = this.$element + , data = $el.data() + , val = $el.is('input') ? 'val' : 'html' + + state = state + 'Text' + data.resetText || $el.data('resetText', $el[val]()) + + $el[val](data[state] || this.options[state]) + + // push to event loop to allow forms to submit + setTimeout(function () { + state == 'loadingText' ? + $el.addClass(d).attr(d, d) : + $el.removeClass(d).removeAttr(d) + }, 0) + } + + Button.prototype.toggle = function () { + var $parent = this.$element.parent('[data-toggle="buttons-radio"]') + + $parent && $parent + .find('.active') + .removeClass('active') + + this.$element.toggleClass('active') + } + + + /* BUTTON PLUGIN DEFINITION + * ======================== */ + + $.fn.button = function (option) { + return this.each(function () { + var $this = $(this) + , data = $this.data('button') + , options = typeof option == 'object' && option + if (!data) $this.data('button', (data = new Button(this, options))) + if (option == 'toggle') data.toggle() + else if (option) data.setState(option) + }) + } + + $.fn.button.defaults = { + loadingText: 'loading...' + } + + $.fn.button.Constructor = Button + + + /* BUTTON DATA-API + * =============== */ + + $(function () { + $('body').on('click.button.data-api', '[data-toggle^=button]', function ( e ) { + var $btn = $(e.target) + if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn') + $btn.button('toggle') + }) + }) + +}(window.jQuery);/* ========================================================== + * bootstrap-carousel.js v2.0.4 + * http://twitter.github.com/bootstrap/javascript.html#carousel + * ========================================================== + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ========================================================== */ + + +!function ($) { + + "use strict"; // jshint ;_; + + + /* CAROUSEL CLASS DEFINITION + * ========================= */ + + var Carousel = function (element, options) { + this.$element = $(element) + this.options = options + this.options.slide && this.slide(this.options.slide) + this.options.pause == 'hover' && this.$element + .on('mouseenter', $.proxy(this.pause, this)) + .on('mouseleave', $.proxy(this.cycle, this)) + } + + Carousel.prototype = { + + cycle: function (e) { + if (!e) this.paused = false + this.options.interval + && !this.paused + && (this.interval = setInterval($.proxy(this.next, this), this.options.interval)) + return this + } + + , to: function (pos) { + var $active = this.$element.find('.active') + , children = $active.parent().children() + , activePos = children.index($active) + , that = this + + if (pos > (children.length - 1) || pos < 0) return + + if (this.sliding) { + return this.$element.one('slid', function () { + that.to(pos) + }) + } + + if (activePos == pos) { + return this.pause().cycle() + } + + return this.slide(pos > activePos ? 'next' : 'prev', $(children[pos])) + } + + , pause: function (e) { + if (!e) this.paused = true + clearInterval(this.interval) + this.interval = null + return this + } + + , next: function () { + if (this.sliding) return + return this.slide('next') + } + + , prev: function () { + if (this.sliding) return + return this.slide('prev') + } + + , slide: function (type, next) { + var $active = this.$element.find('.active') + , $next = next || $active[type]() + , isCycling = this.interval + , direction = type == 'next' ? 'left' : 'right' + , fallback = type == 'next' ? 'first' : 'last' + , that = this + , e = $.Event('slide') + + this.sliding = true + + isCycling && this.pause() + + $next = $next.length ? $next : this.$element.find('.item')[fallback]() + + if ($next.hasClass('active')) return + + if ($.support.transition && this.$element.hasClass('slide')) { + this.$element.trigger(e) + if (e.isDefaultPrevented()) return + $next.addClass(type) + $next[0].offsetWidth // force reflow + $active.addClass(direction) + $next.addClass(direction) + this.$element.one($.support.transition.end, function () { + $next.removeClass([type, direction].join(' ')).addClass('active') + $active.removeClass(['active', direction].join(' ')) + that.sliding = false + setTimeout(function () { that.$element.trigger('slid') }, 0) + }) + } else { + this.$element.trigger(e) + if (e.isDefaultPrevented()) return + $active.removeClass('active') + $next.addClass('active') + this.sliding = false + this.$element.trigger('slid') + } + + isCycling && this.cycle() + + return this + } + + } + + + /* CAROUSEL PLUGIN DEFINITION + * ========================== */ + + $.fn.carousel = function (option) { + return this.each(function () { + var $this = $(this) + , data = $this.data('carousel') + , options = $.extend({}, $.fn.carousel.defaults, typeof option == 'object' && option) + if (!data) $this.data('carousel', (data = new Carousel(this, options))) + if (typeof option == 'number') data.to(option) + else if (typeof option == 'string' || (option = options.slide)) data[option]() + else if (options.interval) data.cycle() + }) + } + + $.fn.carousel.defaults = { + interval: 5000 + , pause: 'hover' + } + + $.fn.carousel.Constructor = Carousel + + + /* CAROUSEL DATA-API + * ================= */ + + $(function () { + $('body').on('click.carousel.data-api', '[data-slide]', function ( e ) { + var $this = $(this), href + , $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7 + , options = !$target.data('modal') && $.extend({}, $target.data(), $this.data()) + $target.carousel(options) + e.preventDefault() + }) + }) + +}(window.jQuery);/* ============================================================= + * bootstrap-collapse.js v2.0.4 + * http://twitter.github.com/bootstrap/javascript.html#collapse + * ============================================================= + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============================================================ */ + + +!function ($) { + + "use strict"; // jshint ;_; + + + /* COLLAPSE PUBLIC CLASS DEFINITION + * ================================ */ + + var Collapse = function (element, options) { + this.$element = $(element) + this.options = $.extend({}, $.fn.collapse.defaults, options) + + if (this.options.parent) { + this.$parent = $(this.options.parent) + } + + this.options.toggle && this.toggle() + } + + Collapse.prototype = { + + constructor: Collapse + + , dimension: function () { + var hasWidth = this.$element.hasClass('width') + return hasWidth ? 'width' : 'height' + } + + , show: function () { + var dimension + , scroll + , actives + , hasData + + if (this.transitioning) return + + dimension = this.dimension() + scroll = $.camelCase(['scroll', dimension].join('-')) + actives = this.$parent && this.$parent.find('> .accordion-group > .in') + + if (actives && actives.length) { + hasData = actives.data('collapse') + if (hasData && hasData.transitioning) return + actives.collapse('hide') + hasData || actives.data('collapse', null) + } + + this.$element[dimension](0) + this.transition('addClass', $.Event('show'), 'shown') + this.$element[dimension](this.$element[0][scroll]) + } + + , hide: function () { + var dimension + if (this.transitioning) return + dimension = this.dimension() + this.reset(this.$element[dimension]()) + this.transition('removeClass', $.Event('hide'), 'hidden') + this.$element[dimension](0) + } + + , reset: function (size) { + var dimension = this.dimension() + + this.$element + .removeClass('collapse') + [dimension](size || 'auto') + [0].offsetWidth + + this.$element[size !== null ? 'addClass' : 'removeClass']('collapse') + + return this + } + + , transition: function (method, startEvent, completeEvent) { + var that = this + , complete = function () { + if (startEvent.type == 'show') that.reset() + that.transitioning = 0 + that.$element.trigger(completeEvent) + } + + this.$element.trigger(startEvent) + + if (startEvent.isDefaultPrevented()) return + + this.transitioning = 1 + + this.$element[method]('in') + + $.support.transition && this.$element.hasClass('collapse') ? + this.$element.one($.support.transition.end, complete) : + complete() + } + + , toggle: function () { + this[this.$element.hasClass('in') ? 'hide' : 'show']() + } + + } + + + /* COLLAPSIBLE PLUGIN DEFINITION + * ============================== */ + + $.fn.collapse = function (option) { + return this.each(function () { + var $this = $(this) + , data = $this.data('collapse') + , options = typeof option == 'object' && option + if (!data) $this.data('collapse', (data = new Collapse(this, options))) + if (typeof option == 'string') data[option]() + }) + } + + $.fn.collapse.defaults = { + toggle: true + } + + $.fn.collapse.Constructor = Collapse + + + /* COLLAPSIBLE DATA-API + * ==================== */ + + $(function () { + $('body').on('click.collapse.data-api', '[data-toggle=collapse]', function ( e ) { + var $this = $(this), href + , target = $this.attr('data-target') + || e.preventDefault() + || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7 + , option = $(target).data('collapse') ? 'toggle' : $this.data() + $(target).collapse(option) + }) + }) + +}(window.jQuery);/* ============================================================ + * bootstrap-dropdown.js v2.0.4 + * http://twitter.github.com/bootstrap/javascript.html#dropdowns + * ============================================================ + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============================================================ */ + + +!function ($) { + + "use strict"; // jshint ;_; + + + /* DROPDOWN CLASS DEFINITION + * ========================= */ + + var toggle = '[data-toggle="dropdown"]' + , Dropdown = function (element) { + var $el = $(element).on('click.dropdown.data-api', this.toggle) + $('html').on('click.dropdown.data-api', function () { + $el.parent().removeClass('open') + }) + } + + Dropdown.prototype = { + + constructor: Dropdown + + , toggle: function (e) { + var $this = $(this) + , $parent + , selector + , isActive + + if ($this.is('.disabled, :disabled')) return + + selector = $this.attr('data-target') + + if (!selector) { + selector = $this.attr('href') + selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 + } + + $parent = $(selector) + $parent.length || ($parent = $this.parent()) + + isActive = $parent.hasClass('open') + + clearMenus() + + if (!isActive) $parent.toggleClass('open') + + return false + } + + } + + function clearMenus() { + $(toggle).parent().removeClass('open') + } + + + /* DROPDOWN PLUGIN DEFINITION + * ========================== */ + + $.fn.dropdown = function (option) { + return this.each(function () { + var $this = $(this) + , data = $this.data('dropdown') + if (!data) $this.data('dropdown', (data = new Dropdown(this))) + if (typeof option == 'string') data[option].call($this) + }) + } + + $.fn.dropdown.Constructor = Dropdown + + + /* APPLY TO STANDARD DROPDOWN ELEMENTS + * =================================== */ + + $(function () { + $('html').on('click.dropdown.data-api', clearMenus) + $('body') + .on('click.dropdown', '.dropdown form', function (e) { e.stopPropagation() }) + .on('click.dropdown.data-api', toggle, Dropdown.prototype.toggle) + }) + +}(window.jQuery);/* ========================================================= + * bootstrap-modal.js v2.0.4 + * http://twitter.github.com/bootstrap/javascript.html#modals + * ========================================================= + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ========================================================= */ + + +!function ($) { + + "use strict"; // jshint ;_; + + + /* MODAL CLASS DEFINITION + * ====================== */ + + var Modal = function (content, options) { + this.options = options + this.$element = $(content) + .delegate('[data-dismiss="modal"]', 'click.dismiss.modal', $.proxy(this.hide, this)) + } + + Modal.prototype = { + + constructor: Modal + + , toggle: function () { + return this[!this.isShown ? 'show' : 'hide']() + } + + , show: function () { + var that = this + , e = $.Event('show') + + this.$element.trigger(e) + + if (this.isShown || e.isDefaultPrevented()) return + + $('body').addClass('modal-open') + + this.isShown = true + + escape.call(this) + backdrop.call(this, function () { + var transition = $.support.transition && that.$element.hasClass('fade') + + if (!that.$element.parent().length) { + that.$element.appendTo(document.body) //don't move modals dom position + } + + that.$element + .show() + + if (transition) { + that.$element[0].offsetWidth // force reflow + } + + that.$element.addClass('in') + + transition ? + that.$element.one($.support.transition.end, function () { that.$element.trigger('shown') }) : + that.$element.trigger('shown') + + }) + } + + , hide: function (e) { + e && e.preventDefault() + + var that = this + + e = $.Event('hide') + + this.$element.trigger(e) + + if (!this.isShown || e.isDefaultPrevented()) return + + this.isShown = false + + $('body').removeClass('modal-open') + + escape.call(this) + + this.$element.removeClass('in') + + $.support.transition && this.$element.hasClass('fade') ? + hideWithTransition.call(this) : + hideModal.call(this) + } + + } + + + /* MODAL PRIVATE METHODS + * ===================== */ + + function hideWithTransition() { + var that = this + , timeout = setTimeout(function () { + that.$element.off($.support.transition.end) + hideModal.call(that) + }, 500) + + this.$element.one($.support.transition.end, function () { + clearTimeout(timeout) + hideModal.call(that) + }) + } + + function hideModal(that) { + this.$element + .hide() + .trigger('hidden') + + backdrop.call(this) + } + + function backdrop(callback) { + var that = this + , animate = this.$element.hasClass('fade') ? 'fade' : '' + + if (this.isShown && this.options.backdrop) { + var doAnimate = $.support.transition && animate + + this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />') + .appendTo(document.body) + + if (this.options.backdrop != 'static') { + this.$backdrop.click($.proxy(this.hide, this)) + } + + if (doAnimate) this.$backdrop[0].offsetWidth // force reflow + + this.$backdrop.addClass('in') + + doAnimate ? + this.$backdrop.one($.support.transition.end, callback) : + callback() + + } else if (!this.isShown && this.$backdrop) { + this.$backdrop.removeClass('in') + + $.support.transition && this.$element.hasClass('fade')? + this.$backdrop.one($.support.transition.end, $.proxy(removeBackdrop, this)) : + removeBackdrop.call(this) + + } else if (callback) { + callback() + } + } + + function removeBackdrop() { + this.$backdrop.remove() + this.$backdrop = null + } + + function escape() { + var that = this + if (this.isShown && this.options.keyboard) { + $(document).on('keyup.dismiss.modal', function ( e ) { + e.which == 27 && that.hide() + }) + } else if (!this.isShown) { + $(document).off('keyup.dismiss.modal') + } + } + + + /* MODAL PLUGIN DEFINITION + * ======================= */ + + $.fn.modal = function (option) { + return this.each(function () { + var $this = $(this) + , data = $this.data('modal') + , options = $.extend({}, $.fn.modal.defaults, $this.data(), typeof option == 'object' && option) + if (!data) $this.data('modal', (data = new Modal(this, options))) + if (typeof option == 'string') data[option]() + else if (options.show) data.show() + }) + } + + $.fn.modal.defaults = { + backdrop: true + , keyboard: true + , show: true + } + + $.fn.modal.Constructor = Modal + + + /* MODAL DATA-API + * ============== */ + + $(function () { + $('body').on('click.modal.data-api', '[data-toggle="modal"]', function ( e ) { + var $this = $(this), href + , $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7 + , option = $target.data('modal') ? 'toggle' : $.extend({}, $target.data(), $this.data()) + + e.preventDefault() + $target.modal(option) + }) + }) + +}(window.jQuery);/* =========================================================== + * bootstrap-tooltip.js v2.0.4 + * http://twitter.github.com/bootstrap/javascript.html#tooltips + * Inspired by the original jQuery.tipsy by Jason Frame + * =========================================================== + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ========================================================== */ + + +!function ($) { + + "use strict"; // jshint ;_; + + + /* TOOLTIP PUBLIC CLASS DEFINITION + * =============================== */ + + var Tooltip = function (element, options) { + this.init('tooltip', element, options) + } + + Tooltip.prototype = { + + constructor: Tooltip + + , init: function (type, element, options) { + var eventIn + , eventOut + + this.type = type + this.$element = $(element) + this.options = this.getOptions(options) + this.enabled = true + + if (this.options.trigger != 'manual') { + eventIn = this.options.trigger == 'hover' ? 'mouseenter' : 'focus' + eventOut = this.options.trigger == 'hover' ? 'mouseleave' : 'blur' + this.$element.on(eventIn, this.options.selector, $.proxy(this.enter, this)) + this.$element.on(eventOut, this.options.selector, $.proxy(this.leave, this)) + } + + this.options.selector ? + (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) : + this.fixTitle() + } + + , getOptions: function (options) { + options = $.extend({}, $.fn[this.type].defaults, options, this.$element.data()) + + if (options.delay && typeof options.delay == 'number') { + options.delay = { + show: options.delay + , hide: options.delay + } + } + + return options + } + + , enter: function (e) { + var self = $(e.currentTarget)[this.type](this._options).data(this.type) + + if (!self.options.delay || !self.options.delay.show) return self.show() + + clearTimeout(this.timeout) + self.hoverState = 'in' + this.timeout = setTimeout(function() { + if (self.hoverState == 'in') self.show() + }, self.options.delay.show) + } + + , leave: function (e) { + var self = $(e.currentTarget)[this.type](this._options).data(this.type) + + if (this.timeout) clearTimeout(this.timeout) + if (!self.options.delay || !self.options.delay.hide) return self.hide() + + self.hoverState = 'out' + this.timeout = setTimeout(function() { + if (self.hoverState == 'out') self.hide() + }, self.options.delay.hide) + } + + , show: function () { + var $tip + , inside + , pos + , actualWidth + , actualHeight + , placement + , tp + + if (this.hasContent() && this.enabled) { + $tip = this.tip() + this.setContent() + + if (this.options.animation) { + $tip.addClass('fade') + } + + placement = typeof this.options.placement == 'function' ? + this.options.placement.call(this, $tip[0], this.$element[0]) : + this.options.placement + + inside = /in/.test(placement) + + $tip + .remove() + .css({ top: 0, left: 0, display: 'block' }) + .appendTo(inside ? this.$element : document.body) + + pos = this.getPosition(inside) + + actualWidth = $tip[0].offsetWidth + actualHeight = $tip[0].offsetHeight + + switch (inside ? placement.split(' ')[1] : placement) { + case 'bottom': + tp = {top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2} + break + case 'top': + tp = {top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2} + break + case 'left': + tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth} + break + case 'right': + tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width} + break + } + + $tip + .css(tp) + .addClass(placement) + .addClass('in') + } + } + + , isHTML: function(text) { + // html string detection logic adapted from jQuery + return typeof text != 'string' + || ( text.charAt(0) === "<" + && text.charAt( text.length - 1 ) === ">" + && text.length >= 3 + ) || /^(?:[^<]*<[\w\W]+>[^>]*$)/.exec(text) + } + + , setContent: function () { + var $tip = this.tip() + , title = this.getTitle() + + $tip.find('.tooltip-inner')[this.isHTML(title) ? 'html' : 'text'](title) + $tip.removeClass('fade in top bottom left right') + } + + , hide: function () { + var that = this + , $tip = this.tip() + + $tip.removeClass('in') + + function removeWithAnimation() { + var timeout = setTimeout(function () { + $tip.off($.support.transition.end).remove() + }, 500) + + $tip.one($.support.transition.end, function () { + clearTimeout(timeout) + $tip.remove() + }) + } + + $.support.transition && this.$tip.hasClass('fade') ? + removeWithAnimation() : + $tip.remove() + } + + , fixTitle: function () { + var $e = this.$element + if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') { + $e.attr('data-original-title', $e.attr('title') || '').removeAttr('title') + } + } + + , hasContent: function () { + return this.getTitle() + } + + , getPosition: function (inside) { + return $.extend({}, (inside ? {top: 0, left: 0} : this.$element.offset()), { + width: this.$element[0].offsetWidth + , height: this.$element[0].offsetHeight + }) + } + + , getTitle: function () { + var title + , $e = this.$element + , o = this.options + + title = $e.attr('data-original-title') + || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title) + + return title + } + + , tip: function () { + return this.$tip = this.$tip || $(this.options.template) + } + + , validate: function () { + if (!this.$element[0].parentNode) { + this.hide() + this.$element = null + this.options = null + } + } + + , enable: function () { + this.enabled = true + } + + , disable: function () { + this.enabled = false + } + + , toggleEnabled: function () { + this.enabled = !this.enabled + } + + , toggle: function () { + this[this.tip().hasClass('in') ? 'hide' : 'show']() + } + + } + + + /* TOOLTIP PLUGIN DEFINITION + * ========================= */ + + $.fn.tooltip = function ( option ) { + return this.each(function () { + var $this = $(this) + , data = $this.data('tooltip') + , options = typeof option == 'object' && option + if (!data) $this.data('tooltip', (data = new Tooltip(this, options))) + if (typeof option == 'string') data[option]() + }) + } + + $.fn.tooltip.Constructor = Tooltip + + $.fn.tooltip.defaults = { + animation: true + , placement: 'top' + , selector: false + , template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>' + , trigger: 'hover' + , title: '' + , delay: 0 + } + +}(window.jQuery); +/* =========================================================== + * bootstrap-popover.js v2.0.4 + * http://twitter.github.com/bootstrap/javascript.html#popovers + * =========================================================== + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * =========================================================== */ + + +!function ($) { + + "use strict"; // jshint ;_; + + + /* POPOVER PUBLIC CLASS DEFINITION + * =============================== */ + + var Popover = function ( element, options ) { + this.init('popover', element, options) + } + + + /* NOTE: POPOVER EXTENDS BOOTSTRAP-TOOLTIP.js + ========================================== */ + + Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype, { + + constructor: Popover + + , setContent: function () { + var $tip = this.tip() + , title = this.getTitle() + , content = this.getContent() + + $tip.find('.popover-title')[this.isHTML(title) ? 'html' : 'text'](title) + $tip.find('.popover-content > *')[this.isHTML(content) ? 'html' : 'text'](content) + + $tip.removeClass('fade top bottom left right in') + } + + , hasContent: function () { + return this.getTitle() || this.getContent() + } + + , getContent: function () { + var content + , $e = this.$element + , o = this.options + + content = $e.attr('data-content') + || (typeof o.content == 'function' ? o.content.call($e[0]) : o.content) + + return content + } + + , tip: function () { + if (!this.$tip) { + this.$tip = $(this.options.template) + } + return this.$tip + } + + }) + + + /* POPOVER PLUGIN DEFINITION + * ======================= */ + + $.fn.popover = function (option) { + return this.each(function () { + var $this = $(this) + , data = $this.data('popover') + , options = typeof option == 'object' && option + if (!data) $this.data('popover', (data = new Popover(this, options))) + if (typeof option == 'string') data[option]() + }) + } + + $.fn.popover.Constructor = Popover + + $.fn.popover.defaults = $.extend({} , $.fn.tooltip.defaults, { + placement: 'right' + , content: '' + , template: '<div class="popover"><div class="arrow"></div><div class="popover-inner"><h3 class="popover-title"></h3><div class="popover-content"><p></p></div></div></div>' + }) + +}(window.jQuery);/* ============================================================= + * bootstrap-scrollspy.js v2.0.4 + * http://twitter.github.com/bootstrap/javascript.html#scrollspy + * ============================================================= + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============================================================== */ + + +!function ($) { + + "use strict"; // jshint ;_; + + + /* SCROLLSPY CLASS DEFINITION + * ========================== */ + + function ScrollSpy( element, options) { + var process = $.proxy(this.process, this) + , $element = $(element).is('body') ? $(window) : $(element) + , href + this.options = $.extend({}, $.fn.scrollspy.defaults, options) + this.$scrollElement = $element.on('scroll.scroll.data-api', process) + this.selector = (this.options.target + || ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7 + || '') + ' .nav li > a' + this.$body = $('body') + this.refresh() + this.process() + } + + ScrollSpy.prototype = { + + constructor: ScrollSpy + + , refresh: function () { + var self = this + , $targets + + this.offsets = $([]) + this.targets = $([]) + + $targets = this.$body + .find(this.selector) + .map(function () { + var $el = $(this) + , href = $el.data('target') || $el.attr('href') + , $href = /^#\w/.test(href) && $(href) + return ( $href + && href.length + && [[ $href.position().top, href ]] ) || null + }) + .sort(function (a, b) { return a[0] - b[0] }) + .each(function () { + self.offsets.push(this[0]) + self.targets.push(this[1]) + }) + } + + , process: function () { + var scrollTop = this.$scrollElement.scrollTop() + this.options.offset + , scrollHeight = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight + , maxScroll = scrollHeight - this.$scrollElement.height() + , offsets = this.offsets + , targets = this.targets + , activeTarget = this.activeTarget + , i + + if (scrollTop >= maxScroll) { + return activeTarget != (i = targets.last()[0]) + && this.activate ( i ) + } + + for (i = offsets.length; i--;) { + activeTarget != targets[i] + && scrollTop >= offsets[i] + && (!offsets[i + 1] || scrollTop <= offsets[i + 1]) + && this.activate( targets[i] ) + } + } + + , activate: function (target) { + var active + , selector + + this.activeTarget = target + + $(this.selector) + .parent('.active') + .removeClass('active') + + selector = this.selector + + '[data-target="' + target + '"],' + + this.selector + '[href="' + target + '"]' + + active = $(selector) + .parent('li') + .addClass('active') + + if (active.parent('.dropdown-menu')) { + active = active.closest('li.dropdown').addClass('active') + } + + active.trigger('activate') + } + + } + + + /* SCROLLSPY PLUGIN DEFINITION + * =========================== */ + + $.fn.scrollspy = function ( option ) { + return this.each(function () { + var $this = $(this) + , data = $this.data('scrollspy') + , options = typeof option == 'object' && option + if (!data) $this.data('scrollspy', (data = new ScrollSpy(this, options))) + if (typeof option == 'string') data[option]() + }) + } + + $.fn.scrollspy.Constructor = ScrollSpy + + $.fn.scrollspy.defaults = { + offset: 10 + } + + + /* SCROLLSPY DATA-API + * ================== */ + + $(function () { + $('[data-spy="scroll"]').each(function () { + var $spy = $(this) + $spy.scrollspy($spy.data()) + }) + }) + +}(window.jQuery);/* ======================================================== + * bootstrap-tab.js v2.0.4 + * http://twitter.github.com/bootstrap/javascript.html#tabs + * ======================================================== + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ======================================================== */ + + +!function ($) { + + "use strict"; // jshint ;_; + + + /* TAB CLASS DEFINITION + * ==================== */ + + var Tab = function ( element ) { + this.element = $(element) + } + + Tab.prototype = { + + constructor: Tab + + , show: function () { + var $this = this.element + , $ul = $this.closest('ul:not(.dropdown-menu)') + , selector = $this.attr('data-target') + , previous + , $target + , e + + if (!selector) { + selector = $this.attr('href') + selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7 + } + + if ( $this.parent('li').hasClass('active') ) return + + previous = $ul.find('.active a').last()[0] + + e = $.Event('show', { + relatedTarget: previous + }) + + $this.trigger(e) + + if (e.isDefaultPrevented()) return + + $target = $(selector) + + this.activate($this.parent('li'), $ul) + this.activate($target, $target.parent(), function () { + $this.trigger({ + type: 'shown' + , relatedTarget: previous + }) + }) + } + + , activate: function ( element, container, callback) { + var $active = container.find('> .active') + , transition = callback + && $.support.transition + && $active.hasClass('fade') + + function next() { + $active + .removeClass('active') + .find('> .dropdown-menu > .active') + .removeClass('active') + + element.addClass('active') + + if (transition) { + element[0].offsetWidth // reflow for transition + element.addClass('in') + } else { + element.removeClass('fade') + } + + if ( element.parent('.dropdown-menu') ) { + element.closest('li.dropdown').addClass('active') + } + + callback && callback() + } + + transition ? + $active.one($.support.transition.end, next) : + next() + + $active.removeClass('in') + } + } + + + /* TAB PLUGIN DEFINITION + * ===================== */ + + $.fn.tab = function ( option ) { + return this.each(function () { + var $this = $(this) + , data = $this.data('tab') + if (!data) $this.data('tab', (data = new Tab(this))) + if (typeof option == 'string') data[option]() + }) + } + + $.fn.tab.Constructor = Tab + + + /* TAB DATA-API + * ============ */ + + $(function () { + $('body').on('click.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) { + e.preventDefault() + $(this).tab('show') + }) + }) + +}(window.jQuery);/* ============================================================= + * bootstrap-typeahead.js v2.0.4 + * http://twitter.github.com/bootstrap/javascript.html#typeahead + * ============================================================= + * Copyright 2012 Twitter, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============================================================ */ + + +!function($){ + + "use strict"; // jshint ;_; + + + /* TYPEAHEAD PUBLIC CLASS DEFINITION + * ================================= */ + + var Typeahead = function (element, options) { + this.$element = $(element) + this.options = $.extend({}, $.fn.typeahead.defaults, options) + this.matcher = this.options.matcher || this.matcher + this.sorter = this.options.sorter || this.sorter + this.highlighter = this.options.highlighter || this.highlighter + this.updater = this.options.updater || this.updater + this.$menu = $(this.options.menu).appendTo('body') + this.source = this.options.source + this.shown = false + this.listen() + } + + Typeahead.prototype = { + + constructor: Typeahead + + , select: function () { + var val = this.$menu.find('.active').attr('data-value') + this.$element + .val(this.updater(val)) + .change() + return this.hide() + } + + , updater: function (item) { + return item + } + + , show: function () { + var pos = $.extend({}, this.$element.offset(), { + height: this.$element[0].offsetHeight + }) + + this.$menu.css({ + top: pos.top + pos.height + , left: pos.left + }) + + this.$menu.show() + this.shown = true + return this + } + + , hide: function () { + this.$menu.hide() + this.shown = false + return this + } + + , lookup: function (event) { + var that = this + , items + , q + + this.query = this.$element.val() + + if (!this.query) { + return this.shown ? this.hide() : this + } + + items = $.grep(this.source, function (item) { + return that.matcher(item) + }) + + items = this.sorter(items) + + if (!items.length) { + return this.shown ? this.hide() : this + } + + return this.render(items.slice(0, this.options.items)).show() + } + + , matcher: function (item) { + return ~item.toLowerCase().indexOf(this.query.toLowerCase()) + } + + , sorter: function (items) { + var beginswith = [] + , caseSensitive = [] + , caseInsensitive = [] + , item + + while (item = items.shift()) { + if (!item.toLowerCase().indexOf(this.query.toLowerCase())) beginswith.push(item) + else if (~item.indexOf(this.query)) caseSensitive.push(item) + else caseInsensitive.push(item) + } + + return beginswith.concat(caseSensitive, caseInsensitive) + } + + , highlighter: function (item) { + var query = this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, '\\$&') + return item.replace(new RegExp('(' + query + ')', 'ig'), function ($1, match) { + return '<strong>' + match + '</strong>' + }) + } + + , render: function (items) { + var that = this + + items = $(items).map(function (i, item) { + i = $(that.options.item).attr('data-value', item) + i.find('a').html(that.highlighter(item)) + return i[0] + }) + + items.first().addClass('active') + this.$menu.html(items) + return this + } + + , next: function (event) { + var active = this.$menu.find('.active').removeClass('active') + , next = active.next() + + if (!next.length) { + next = $(this.$menu.find('li')[0]) + } + + next.addClass('active') + } + + , prev: function (event) { + var active = this.$menu.find('.active').removeClass('active') + , prev = active.prev() + + if (!prev.length) { + prev = this.$menu.find('li').last() + } + + prev.addClass('active') + } + + , listen: function () { + this.$element + .on('blur', $.proxy(this.blur, this)) + .on('keypress', $.proxy(this.keypress, this)) + .on('keyup', $.proxy(this.keyup, this)) + + if ($.browser.webkit || $.browser.msie) { + this.$element.on('keydown', $.proxy(this.keypress, this)) + } + + this.$menu + .on('click', $.proxy(this.click, this)) + .on('mouseenter', 'li', $.proxy(this.mouseenter, this)) + } + + , keyup: function (e) { + switch(e.keyCode) { + case 40: // down arrow + case 38: // up arrow + break + + case 9: // tab + case 13: // enter + if (!this.shown) return + this.select() + break + + case 27: // escape + if (!this.shown) return + this.hide() + break + + default: + this.lookup() + } + + e.stopPropagation() + e.preventDefault() + } + + , keypress: function (e) { + if (!this.shown) return + + switch(e.keyCode) { + case 9: // tab + case 13: // enter + case 27: // escape + e.preventDefault() + break + + case 38: // up arrow + if (e.type != 'keydown') break + e.preventDefault() + this.prev() + break + + case 40: // down arrow + if (e.type != 'keydown') break + e.preventDefault() + this.next() + break + } + + e.stopPropagation() + } + + , blur: function (e) { + var that = this + setTimeout(function () { that.hide() }, 150) + } + + , click: function (e) { + e.stopPropagation() + e.preventDefault() + this.select() + } + + , mouseenter: function (e) { + this.$menu.find('.active').removeClass('active') + $(e.currentTarget).addClass('active') + } + + } + + + /* TYPEAHEAD PLUGIN DEFINITION + * =========================== */ + + $.fn.typeahead = function (option) { + return this.each(function () { + var $this = $(this) + , data = $this.data('typeahead') + , options = typeof option == 'object' && option + if (!data) $this.data('typeahead', (data = new Typeahead(this, options))) + if (typeof option == 'string') data[option]() + }) + } + + $.fn.typeahead.defaults = { + source: [] + , items: 8 + , menu: '<ul class="typeahead dropdown-menu"></ul>' + , item: '<li><a href="#"></a></li>' + } + + $.fn.typeahead.Constructor = Typeahead + + + /* TYPEAHEAD DATA-API + * ================== */ + + $(function () { + $('body').on('focus.typeahead.data-api', '[data-provide="typeahead"]', function (e) { + var $this = $(this) + if ($this.data('typeahead')) return + e.preventDefault() + $this.typeahead($this.data()) + }) + }) + +}(window.jQuery);
\ No newline at end of file diff --git a/src/main/resources/bootstrap/js/jquery.js b/src/main/resources/bootstrap/js/jquery.js deleted file mode 100644 index 198b3ff0..00000000 --- a/src/main/resources/bootstrap/js/jquery.js +++ /dev/null @@ -1,4 +0,0 @@ -/*! jQuery v1.7.1 jquery.com | jquery.org/license */ -(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>"),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function cb(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function ca(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bE.test(a)?d(a,e):ca(a+"["+(typeof e=="object"||f.isArray(e)?b:"")+"]",e,c,d)});else if(!c&&b!=null&&typeof b=="object")for(var e in b)ca(a+"["+e+"]",b[e],c,d);else d(a,b)}function b_(a,c){var d,e,g=f.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((g[d]?a:e||(e={}))[d]=c[d]);e&&f.extend(!0,a,e)}function b$(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bT,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=b$(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=b$(a,c,d,e,"*",g));return l}function bZ(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bP),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bC(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?bx:by,g=0,h=e.length;if(d>0){if(c!=="border")for(;g<h;g++)c||(d-=parseFloat(f.css(a,"padding"+e[g]))||0),c==="margin"?d+=parseFloat(f.css(a,c+e[g]))||0:d-=parseFloat(f.css(a,"border"+e[g]+"Width"))||0;return d+"px"}d=bz(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0;if(c)for(;g<h;g++)d+=parseFloat(f.css(a,"padding"+e[g]))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+e[g]+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+e[g]))||0);return d+"px"}function bp(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bf,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bo(a){var b=c.createElement("div");bh.appendChild(b),b.innerHTML=a.outerHTML;return b.firstChild}function bn(a){var b=(a.nodeName||"").toLowerCase();b==="input"?bm(a):b!=="script"&&typeof a.getElementsByTagName!="undefined"&&f.grep(a.getElementsByTagName("input"),bm)}function bm(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bl(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bk(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bj(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c,d,e,g=f._data(a),h=f._data(b,g),i=g.events;if(i){delete h.handle,h.events={};for(c in i)for(d=0,e=i[c].length;d<e;d++)f.event.add(b,c+(i[c][d].namespace?".":"")+i[c][d].namespace,i[c][d],i[c][d].data)}h.data&&(h.data=f.extend({},h.data))}}function bi(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function U(a){var b=V.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function T(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(O.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c<d;c++)b[a[c]]=!0;return b}var c=a.document,d=a.navigator,e=a.location,f=function(){function J(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(J,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:G?function(a){return a==null?"":G.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?E.call(c,a):e.merge(c,a)}return c},inArray:function(a,b,c){var d;if(b){if(H)return H.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=F.call(arguments,2),g=function(){return a.apply(c,f.concat(F.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h){var i=a.length;if(typeof c=="object"){for(var j in c)e.access(a,j,c[j],f,g,d);return a}if(d!==b){f=!h&&f&&e.isFunction(d);for(var k=0;k<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){I["[object "+b+"]"]=b.toLowerCase()}),z=e.uaMatch(y),z.browser&&(e.browser[z.browser]=!0,e.browser.version=z.version),e.browser.webkit&&(e.browser.safari=!0),j.test("Â ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?B=function(){c.removeEventListener("DOMContentLoaded",B,!1),e.ready()}:c.attachEvent&&(B=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",B),e.ready())});return e}(),g={};f.Callbacks=function(a){a=a?g[a]||h(a):{};var c=[],d=[],e,i,j,k,l,m=function(b){var d,e,g,h,i;for(d=0,e=b.length;d<e;d++)g=b[d],h=f.type(g),h==="array"?m(g):h==="function"&&(!a.unique||!o.has(g))&&c.push(g)},n=function(b,f){f=f||[],e=!a.memory||[b,f],i=!0,l=j||0,j=0,k=c.length;for(;c&&l<k;l++)if(c[l].apply(b,f)===!1&&a.stopOnFalse){e=!0;break}i=!1,c&&(a.once?e===!0?o.disable():c=[]:d&&d.length&&(e=d.shift(),o.fireWith(e[0],e[1])))},o={add:function(){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this},remove:function(){if(c){var b=arguments,d=0,e=b.length;for(;d<e;d++)for(var f=0;f<c.length;f++)if(b[d]===c[f]){i&&f<=k&&(k--,f<=l&&l--),c.splice(f--,1);if(a.unique)break}}return this},has:function(a){if(c){var b=0,d=c.length;for(;b<d;b++)if(a===c[b])return!0}return!1},empty:function(){c=[];return this},disable:function(){c=d=e=b;return this},disabled:function(){return!c},lock:function(){d=b,(!e||e===!0)&&o.disable();return this},locked:function(){return!d},fireWith:function(b,c){d&&(i?a.once||d.push([b,c]):(!a.once||!e)&&n(b,c));return this},fire:function(){o.fireWith(this,arguments);return this},fired:function(){return!!e}};return o};var i=[].slice;f.extend({Deferred:function(a){var b=f.Callbacks("once memory"),c=f.Callbacks("once memory"),d=f.Callbacks("memory"),e="pending",g={resolve:b,reject:c,notify:d},h={done:b.add,fail:c.add,progress:d.add,state:function(){return e},isResolved:b.fired,isRejected:c.fired,then:function(a,b,c){i.done(a).fail(b).progress(c);return this},always:function(){i.done.apply(i,arguments).fail.apply(i,arguments);return this},pipe:function(a,b,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[b,"reject"],progress:[c,"notify"]},function(a,b){var c=b[0],e=b[1],g;f.isFunction(c)?i[a](function(){g=c.apply(this,arguments),g&&f.isFunction(g.promise)?g.promise().then(d.resolve,d.reject,d.notify):d[e+"With"](this===i?d:this,[g])}):i[a](d[e])})}).promise()},promise:function(a){if(a==null)a=h;else for(var b in h)a[b]=h[b];return a}},i=h.promise({}),j;for(j in g)i[j]=g[j].fire,i[j+"With"]=g[j].fireWith;i.done(function(){e="resolved"},c.disable,d.lock).fail(function(){e="rejected"},b.disable,d.lock),a&&a.call(i,i);return i},when:function(a){function m(a){return function(b){e[a]=arguments.length>1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c<d;c++)b[c]&&b[c].promise&&f.isFunction(b[c].promise)?b[c].promise().then(l(c),j.reject,m(c)):--g;g||j.resolveWith(j,b)}else j!==a&&j.resolveWith(j,d?[a]:[]);return k}}),f.support=function(){var b,d,e,g,h,i,j,k,l,m,n,o,p,q=c.createElement("div"),r=c.documentElement;q.setAttribute("className","t"),q.innerHTML=" <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="<div "+n+"><div></div></div>"+"<table "+n+" cellpadding='0' cellspacing='0'>"+"<tr><td></td></tr></table>",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="<div style='width:4px;'></div>",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e<g;e++)delete d[b[e]];if(!(c?m:f.isEmptyObject)(d))return}}if(!c){delete j[k].data;if(!m(j[k]))return}f.support.deleteExpando||!j.setInterval?delete j[k]:j[k]=null,i&&(f.support.deleteExpando?delete a[h]:a.removeAttribute?a.removeAttribute(h):a[h]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d,e,g,h=null;if(typeof a=="undefined"){if(this.length){h=f.data(this[0]);if(this[0].nodeType===1&&!f._data(this[0],"parsedAttrs")){e=this[0].attributes;for(var i=0,j=e.length;i<j;i++)g=e[i].name,g.indexOf("data-")===0&&(g=f.camelCase(g.substring(5)),l(this[0],g,h[g]));f._data(this[0],"parsedAttrs",!0)}}return h}if(typeof a=="object")return this.each(function(){f.data(this,a)});d=a.split("."),d[1]=d[1]?"."+d[1]:"";if(c===b){h=this.triggerHandler("getData"+d[1]+"!",[d[0]]),h===b&&this.length&&(h=f.data(this[0],a),h=l(this[0],a,h));return h===b&&d[1]?this.data(d[0]):h}return this.each(function(){var b=f(this),e=[d[0],c];b.triggerHandler("setData"+d[1]+"!",e),f.data(this,a,c),b.triggerHandler("changeData"+d[1]+"!",e)})},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){typeof a!="string"&&(c=a,a="fx");if(c===b)return f.queue(this[0],a);return this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f.Callbacks("once memory"),!0))h++,l.add(m);m();return d.promise()}});var o=/[\n\t\r]/g,p=/\s+/,q=/\r/g,r=/^(?:button|input)$/i,s=/^(?:button|input|object|select|textarea)$/i,t=/^a(?:rea)?$/i,u=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,v=f.support.getSetAttribute,w,x,y;f.fn.extend({attr:function(a,b){return f.access(this,a,b,!0,f.attr)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,a,b,!0,f.prop)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{g=" "+e.className+" ";for(h=0,i=b.length;h<i;h++)~g.indexOf(" "+b[h]+" ")||(g+=b[h]+" ");e.className=f.trim(g)}}}return this},removeClass:function(a){var c,d,e,g,h,i,j;if(f.isFunction(a))return this.each(function(b){f(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(p);for(d=0,e=this.length;d<e;d++){g=this[d];if(g.nodeType===1&&g.className)if(a){h=(" "+g.className+" ").replace(o," ");for(i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){f(this).toggleClass(a.call(this,c,this.className,b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(p);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(o," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c<d;c++){e=i[c];if(e.selected&&(f.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!f.nodeName(e.parentNode,"optgroup"))){b=f(e).val();if(j)return b;h.push(b)}}if(j&&!h.length&&i.length)return f(i[g]).val();return h},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h<g;h++)e=d[h],e&&(c=f.propFix[e]||e,f.attr(a,e,""),a.removeAttribute(v?e:c),u.test(e)&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(r.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(w&&f.nodeName(a,"button"))return w.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(w&&f.nodeName(a,"button"))return w.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,g,h,i=a.nodeType;if(!!a&&i!==3&&i!==8&&i!==2){h=i!==1||!f.isXMLDoc(a),h&&(c=f.propFix[c]||c,g=f.propHooks[c]);return d!==b?g&&"set"in g&&(e=g.set(a,d,c))!==b?e:a[c]=d:g&&"get"in g&&(e=g.get(a,c))!==null?e:a[c]}},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):s.test(a.nodeName)||t.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabindex=f.propHooks.tabIndex,x={get:function(a,c){var d,e=f.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},v||(y={name:!0,id:!0},w=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&(y[c]?d.nodeValue!=="":d.specified)?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.attrHooks.tabindex.set=w.set,f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})}),f.attrHooks.contenteditable={get:w.get,set:function(a,b,c){b===""&&(b="false"),w.set(a,b,c)}}),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.enctype||(f.propFix.enctype="encoding"),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")}; -f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k<c.length;k++){l=A.exec(c[k])||[],m=l[1],n=(l[2]||"").split(".").sort(),s=f.event.special[m]||{},m=(g?s.delegateType:s.bindType)||m,s=f.event.special[m]||{},o=f.extend({type:m,origType:l[1],data:e,handler:d,guid:d.guid,selector:g,quick:G(g),namespace:n.join(".")},p),r=j[m];if(!r){r=j[m]=[],r.delegateCount=0;if(!s.setup||s.setup.call(a,e,n,i)===!1)a.addEventListener?a.addEventListener(m,i,!1):a.attachEvent&&a.attachEvent("on"+m,i)}s.add&&(s.add.call(a,o),o.handler.guid||(o.handler.guid=d.guid)),g?r.splice(r.delegateCount++,0,o):r.push(o),f.event.global[m]=!0}a=null}},global:{},remove:function(a,b,c,d,e){var g=f.hasData(a)&&f._data(a),h,i,j,k,l,m,n,o,p,q,r,s;if(!!g&&!!(o=g.events)){b=f.trim(I(b||"")).split(" ");for(h=0;h<b.length;h++){i=A.exec(b[h])||[],j=k=i[1],l=i[2];if(!j){for(j in o)f.event.remove(a,j+b[h],c,d,!0);continue}p=f.event.special[j]||{},j=(d?p.delegateType:p.bindType)||j,r=o[j]||[],m=r.length,l=l?new RegExp("(^|\\.)"+l.split(".").sort().join("\\.(?:.*\\.)?")+"(\\.|$)"):null;for(n=0;n<r.length;n++)s=r[n],(e||k===s.origType)&&(!c||c.guid===s.guid)&&(!l||l.test(s.namespace))&&(!d||d===s.selector||d==="**"&&s.selector)&&(r.splice(n--,1),s.selector&&r.delegateCount--,p.remove&&p.remove.call(a,s));r.length===0&&m!==r.length&&((!p.teardown||p.teardown.call(a,l)===!1)&&f.removeEvent(a,j,g.handle),delete o[j])}f.isEmptyObject(o)&&(q=g.handle,q&&(q.elem=null),f.removeData(a,["events","handle"],!0))}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){if(!e||e.nodeType!==3&&e.nodeType!==8){var h=c.type||c,i=[],j,k,l,m,n,o,p,q,r,s;if(E.test(h+f.event.triggered))return;h.indexOf("!")>=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;l<r.length&&!c.isPropagationStopped();l++)m=r[l][0],c.type=r[l][1],q=(f._data(m,"events")||{})[c.type]&&f._data(m,"handle"),q&&q.apply(m,d),q=o&&m[o],q&&f.acceptData(m)&&q.apply(m,d)===!1&&c.preventDefault();c.type=h,!g&&!c.isDefaultPrevented()&&(!p._default||p._default.apply(e.ownerDocument,d)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)&&o&&e[h]&&(h!=="focus"&&h!=="blur"||c.target.offsetWidth!==0)&&!f.isWindow(e)&&(n=e[o],n&&(e[o]=null),f.event.triggered=h,e[h](),f.event.triggered=b,n&&(e[o]=n));return c.result}},dispatch:function(c){c=f.event.fix(c||a.event);var d=(f._data(this,"events")||{})[c.type]||[],e=d.delegateCount,g=[].slice.call(arguments,0),h=!c.exclusive&&!c.namespace,i=[],j,k,l,m,n,o,p,q,r,s,t;g[0]=c,c.delegateTarget=this;if(e&&!c.target.disabled&&(!c.button||c.type!=="click")){m=f(this),m.context=this.ownerDocument||this;for(l=c.target;l!=this;l=l.parentNode||this){o={},q=[],m[0]=l;for(j=0;j<e;j++)r=d[j],s=r.selector,o[s]===b&&(o[s]=r.quick?H(l,r.quick):m.is(s)),o[s]&&q.push(r);q.length&&i.push({elem:l,matches:q})}}d.length>e&&i.push({elem:this,matches:d.slice(e)});for(j=0;j<i.length&&!c.isPropagationStopped();j++){p=i[j],c.currentTarget=p.elem;for(k=0;k<p.matches.length&&!c.isImmediatePropagationStopped();k++){r=p.matches[k];if(h||!c.namespace&&!r.namespace||c.namespace_re&&c.namespace_re.test(r.namespace))c.data=r.data,c.handleObj=r,n=((f.event.special[r.origType]||{}).handle||r.handler).apply(p.elem,g),n!==b&&(c.result=n,n===!1&&(c.preventDefault(),c.stopPropagation()))}}return c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode);return a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,d){var e,f,g,h=d.button,i=d.fromElement;a.pageX==null&&d.clientX!=null&&(e=a.target.ownerDocument||c,f=e.documentElement,g=e.body,a.pageX=d.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=d.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?d.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0);return a}},fix:function(a){if(a[f.expando])return a;var d,e,g=a,h=f.event.fixHooks[a.type]||{},i=h.props?this.props.concat(h.props):this.props;a=f.Event(g);for(d=i.length;d;)e=i[--d],a[e]=g[e];a.target||(a.target=g.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey===b&&(a.metaKey=a.ctrlKey);return h.filter?h.filter(a,g):a},special:{ready:{setup:f.bindReady},load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=f.extend(new f.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?f.event.trigger(e,null,b):f.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},f.event.handle=f.event.dispatch,f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!(this instanceof f.Event))return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?K:J):this.type=a,b&&f.extend(this,b),this.timeStamp=a&&a.timeStamp||f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=K;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=K;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=K,this.stopPropagation()},isDefaultPrevented:J,isPropagationStopped:J,isImmediatePropagationStopped:J},f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c=this,d=a.relatedTarget,e=a.handleObj,g=e.selector,h;if(!d||d!==c&&!f.contains(c,d))a.type=e.origType,h=e.handler.apply(this,arguments),a.type=b;return h}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(){if(f.nodeName(this,"form"))return!1;f.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=f.nodeName(c,"input")||f.nodeName(c,"button")?c.form:b;d&&!d._submit_attached&&(f.event.add(d,"submit._submit",function(a){this.parentNode&&!a.isTrigger&&f.event.simulate("submit",this.parentNode,a,!0)}),d._submit_attached=!0)})},teardown:function(){if(f.nodeName(this,"form"))return!1;f.event.remove(this,"._submit")}}),f.support.changeBubbles||(f.event.special.change={setup:function(){if(z.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")f.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),f.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1,f.event.simulate("change",this,a,!0))});return!1}f.event.add(this,"beforeactivate._change",function(a){var b=a.target;z.test(b.nodeName)&&!b._change_attached&&(f.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&f.event.simulate("change",this.parentNode,a,!0)}),b._change_attached=!0)})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){f.event.remove(this,"._change");return z.test(this.nodeName)}}),f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){var d=0,e=function(a){f.event.simulate(b,a.target,f.event.fix(a),!0)};f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.fn.extend({on:function(a,c,d,e,g){var h,i;if(typeof a=="object"){typeof c!="string"&&(d=c,c=b);for(i in a)this.on(i,c,d,a[i],g);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=J;else if(!e)return this;g===1&&(h=e,e=function(a){f().off(a);return h.apply(this,arguments)},e.guid=h.guid||(h.guid=f.guid++));return this.each(function(){f.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on.call(this,a,b,c,d,1)},off:function(a,c,d){if(a&&a.preventDefault&&a.handleObj){var e=a.handleObj;f(a.delegateTarget).off(e.namespace?e.type+"."+e.namespace:e.type,e.selector,e.handler);return this}if(typeof a=="object"){for(var g in a)this.off(g,c,a[g]);return this}if(c===!1||typeof c=="function")d=c,c=b;d===!1&&(d=J);return this.each(function(){f.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){f(this.context).on(a,this.selector,b,c);return this},die:function(a,b){f(this.context).off(a,this.selector||"**",b);return this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length==1?this.off(a,"**"):this.off(b,a,c)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f._data(this,"lastToggle"+a.guid)||0)%d;f._data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}if(j.nodeType===1){g||(j[d]=c,j.sizset=h);if(typeof b!="string"){if(j===b){k=!0;break}}else if(m.filter(b,[j]).length>0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}j.nodeType===1&&!g&&(j[d]=c,j.sizset=h);if(j.nodeName.toLowerCase()===b){k=j;break}j=j[a]}e[h]=k}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},m.matches=function(a,b){return m(a,null,null,b)},m.matchesSelector=function(a,b){return m(b,null,null,[a]).length>0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e<f;e++){h=o.order[e];if(g=o.leftMatch[h].exec(a)){i=g[1],g.splice(1,1);if(i.substr(i.length-1)!=="\\"){g[1]=(g[1]||"").replace(j,""),d=o.find[h](g,b,c);if(d!=null){a=a.replace(o.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},m.filter=function(a,c,d,e){var f,g,h,i,j,k,l,n,p,q=a,r=[],s=c,t=c&&c[0]&&m.isXML(c[0]);while(a&&c.length){for(h in o.filter)if((f=o.leftMatch[h].exec(a))!=null&&f[2]){k=o.filter[h],l=f[1],g=!1,f.splice(1,1);if(l.substr(l.length-1)==="\\")continue;s===r&&(r=[]);if(o.preFilter[h]){f=o.preFilter[h](f,s,d,r,e,t);if(!f)g=i=!0;else if(f===!0)continue}if(f)for(n=0;(j=s[n])!=null;n++)j&&(i=k(j,f,n,s),p=e^i,d&&i!=null?p?g=!0:s[n]=!1:p&&(r.push(j),g=!0));if(i!==b){d||(s=r),a=a.replace(o.match[h],"");if(!g)return[];break}}if(a===q)if(g==null)m.error(a);else break;q=a}return s},m.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)};var n=m.getText=function(a){var b,c,d=a.nodeType,e="";if(d){if(d===1||d===9){if(typeof a.textContent=="string")return a.textContent;if(typeof a.innerText=="string")return a.innerText.replace(k,"");for(a=a.firstChild;a;a=a.nextSibling)e+=n(a)}else if(d===3||d===4)return a.nodeValue}else for(b=0;c=a[b];b++)c.nodeType!==8&&(e+=n(c));return e},o=m.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!l.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&m.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&m.filter(b,a,!0)}},"":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("previousSibling",b,f,a,d,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(j,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}m.error(e)},CHILD:function(a,b){var c,e,f,g,h,i,j,k=b[1],l=a;switch(k){case"only":case"first":while(l=l.previousSibling)if(l.nodeType===1)return!1;if(k==="first")return!0;l=a;case"last":while(l=l.nextSibling)if(l.nodeType===1)return!1;return!0;case"nth":c=b[2],e=b[3];if(c===1&&e===0)return!0;f=b[0],g=a.parentNode;if(g&&(g[d]!==f||!a.nodeIndex)){i=0;for(l=g.firstChild;l;l=l.nextSibling)l.nodeType===1&&(l.nodeIndex=++i);g[d]=f}j=a.nodeIndex-e;return c===0?j===0:j%c===0&&j/c>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var u,v;c.documentElement.compareDocumentPosition?u=function(a,b){if(a===b){h=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(u=function(a,b){if(a===b){h=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,i=b.parentNode,j=g;if(g===i)return v(a,b);if(!g)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return v(e[k],f[k]);return k===c?v(a,f[k],-1):v(e[k],b,1)},v=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h<i;h++)m(a,g[h],e,c);return m.filter(f,e)};m.attr=f.attr,m.selectors.attrMap={},f.find=m,f.expr=m.selectors,f.expr[":"]=f.expr.filters,f.unique=m.uniqueSort,f.text=m.getText,f.isXMLDoc=m.isXML,f.contains=m.contains}();var L=/Until$/,M=/^(?:parents|prevUntil|prevAll)/,N=/,/,O=/^.[^:#\[\.,]*$/,P=Array.prototype.slice,Q=f.expr.match.POS,R={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(T(this,a,!1),"not",a)},filter:function(a){return this.pushStack(T(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?Q.test(a)?f(a,this.context).index(this[0])>=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d<a.length;d++)f(g).is(a[d])&&c.push({selector:a[d],elem:g,level:h});g=g.parentNode,h++}return c}var i=Q.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(i?i.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/<tbody/i,_=/<|&#?\w+;/,ba=/<(?:script|style)/i,bb=/<(?:script|object|embed|option|style)/i,bc=new RegExp("<(?:"+V+")","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*<!(?:\[CDATA\[|\-\-)/,bg={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function() -{for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1></$2>");try{for(var c=0,d=this.length;c<d;c++)this[c].nodeType===1&&(f.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(e){this.empty().append(a)}}else f.isFunction(a)?this.each(function(b){var c=f(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bd.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bi(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,bp)}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i,j=a[0];b&&b[0]&&(i=b[0].ownerDocument||b[0]),i.createDocumentFragment||(i=c),a.length===1&&typeof j=="string"&&j.length<512&&i===c&&j.charAt(0)==="<"&&!bb.test(j)&&(f.support.checkClone||!bd.test(j))&&(f.support.html5Clone||!bc.test(j))&&(g=!0,h=f.fragments[j],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean(a,i,e,d)),g&&(f.fragments[j]=h?e:1);return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||!bc.test("<"+a.nodeName)?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1></$2>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");b===c?bh.appendChild(o):U(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]==="<table>"&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i<r;i++)bn(k[i]);else bn(k);k.nodeType?h.push(k):h=f.merge(h,k)}if(d){g=function(a){return!a.type||be.test(a.type)};for(j=0;h[j];j++)if(e&&f.nodeName(h[j],"script")&&(!h[j].type||h[j].type.toLowerCase()==="text/javascript"))e.push(h[j].parentNode?h[j].parentNode.removeChild(h[j]):h[j]);else{if(h[j].nodeType===1){var s=f.grep(h[j].getElementsByTagName("script"),g);h.splice.apply(h,[j+1,0].concat(s))}d.appendChild(h[j])}}return h},cleanData:function(a){var b,c,d=f.cache,e=f.event.special,g=f.support.deleteExpando;for(var h=0,i;(i=a[h])!=null;h++){if(i.nodeName&&f.noData[i.nodeName.toLowerCase()])continue;c=i[f.expando];if(c){b=d[c];if(b&&b.events){for(var j in b.events)e[j]?f.event.remove(i,j):f.removeEvent(i,j,b.handle);b.handle&&(b.handle.elem=null)}g?delete i[f.expando]:i.removeAttribute&&i.removeAttribute(f.expando),delete d[c]}}}});var bq=/alpha\([^)]*\)/i,br=/opacity=([^)]*)/,bs=/([A-Z]|^ms)/g,bt=/^-?\d+(?:px)?$/i,bu=/^-?\d/,bv=/^([\-+])=([\-+.\de]+)/,bw={position:"absolute",visibility:"hidden",display:"block"},bx=["Left","Right"],by=["Top","Bottom"],bz,bA,bB;f.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return f.access(this,a,c,!0,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)})},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bz(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bv.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(bz)return bz(a,c)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]}}),f.curCSS=f.css,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){var e;if(c){if(a.offsetWidth!==0)return bC(a,b,d);f.swap(a,bw,function(){e=bC(a,b,d)});return e}},set:function(a,b){if(!bt.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return br.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bq,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bq.test(g)?g.replace(bq,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,b){var c,d,e;b=b.replace(bs,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b)));return c}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bt.test(f)&&bu.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bD=/%20/g,bE=/\[\]$/,bF=/\r?\n/g,bG=/#.*$/,bH=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bI=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bJ=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bK=/^(?:GET|HEAD)$/,bL=/^\/\//,bM=/\?/,bN=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bO=/^(?:select|textarea)/i,bP=/\s+/,bQ=/([?&])_=[^&]*/,bR=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bS=f.fn.load,bT={},bU={},bV,bW,bX=["*/"]+["*"];try{bV=e.href}catch(bY){bV=c.createElement("a"),bV.href="",bV=bV.href}bW=bR.exec(bV.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bS)return bS.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bN,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bO.test(this.nodeName)||bI.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bF,"\r\n")}}):{name:b.name,value:c.replace(bF,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b_(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b_(a,b);return a},ajaxSettings:{url:bV,isLocal:bJ.test(bW[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bX},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bZ(bT),ajaxTransport:bZ(bU),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cb(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cc(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bH.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bG,"").replace(bL,bW[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bP),d.crossDomain==null&&(r=bR.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bW[1]&&r[2]==bW[2]&&(r[3]||(r[1]==="http:"?80:443))==(bW[3]||(bW[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bT,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bK.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bM.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bQ,"$1_="+x);d.url=y+(y===d.url?(bM.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bX+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bU,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)ca(g,a[g],c,e);return d.join("&").replace(bD,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cd=f.now(),ce=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cd++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ce.test(b.url)||e&&ce.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ce,l),b.url===j&&(e&&(k=k.replace(ce,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cf=a.ActiveXObject?function(){for(var a in ch)ch[a](0,1)}:!1,cg=0,ch;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ci()||cj()}:ci,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cf&&delete ch[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cg,cf&&(ch||(ch={},f(a).unload(cf)),ch[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var ck={},cl,cm,cn=/^(?:toggle|show|hide)$/,co=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cp,cq=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cr;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),e===""&&f.css(d,"display")==="none"&&f._data(d,"olddisplay",cv(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cu("hide",3),a,b,c);var d,e,g=0,h=this.length;for(;g<h;g++)d=this[g],d.style&&(e=f.css(d,"display"),e!=="none"&&!f._data(d,"olddisplay")&&f._data(d,"olddisplay",e));for(g=0;g<h;g++)this[g].style&&(this[g].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(cu("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){function g(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]),h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(!f.support.inlineBlockNeedsLayout||cv(this.nodeName)==="inline"?this.style.display="inline-block":this.style.zoom=1))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)j=new f.fx(this,b,i),h=a[i],cn.test(h)?(o=f._data(this,"toggle"+i)||(h==="toggle"?d?"show":"hide":0),o?(f._data(this,"toggle"+i,o==="show"?"hide":"show"),j[o]()):j[h]()):(k=co.exec(h),l=j.cur(),k?(m=parseFloat(k[2]),n=k[3]||(f.cssNumber[i]?"":"px"),n!=="px"&&(f.style(this,i,(m||1)+n),l=(m||1)/j.cur()*l,f.style(this,i,l+n)),k[1]&&(m=(k[1]==="-="?-1:1)*m+l),j.custom(l,m,n)):j.custom(l,h,""));return!0}var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return e.queue===!1?this.each(g):this.queue(e.queue,g)},stop:function(a,c,d){typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]);return this.each(function(){function h(a,b,c){var e=b[c];f.removeData(a,c,!0),e.stop(d)}var b,c=!1,e=f.timers,g=f._data(this);d||f._unmark(!0,this);if(a==null)for(b in g)g[b]&&g[b].stop&&b.indexOf(".run")===b.length-4&&h(this,g,b);else g[b=a+".run"]&&g[b].stop&&h(this,g,b);for(b=e.length;b--;)e[b].elem===this&&(a==null||e[b].queue===a)&&(d?e[b](!0):e[b].saveState(),c=!0,e.splice(b,1));(!d||!c)&&f.dequeue(this,a)})}}),f.each({slideDown:cu("show",1),slideUp:cu("hide",1),slideToggle:cu("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";d.old=d.complete,d.complete=function(a){f.isFunction(d.old)&&d.old.call(this),d.queue?f.dequeue(this,d.queue):a!==!1&&f._unmark(this)};return d},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,c,d){function h(a){return e.step(a)}var e=this,g=f.fx;this.startTime=cr||cs(),this.end=c,this.now=this.start=a,this.pos=this.state=0,this.unit=d||this.unit||(f.cssNumber[this.prop]?"":"px"),h.queue=this.options.queue,h.elem=this.elem,h.saveState=function(){e.options.hide&&f._data(e.elem,"fxshow"+e.prop)===b&&f._data(e.elem,"fxshow"+e.prop,e.start)},h()&&f.timers.push(h)&&!cp&&(cp=setInterval(g.tick,g.interval))},show:function(){var a=f._data(this.elem,"fxshow"+this.prop);this.options.orig[this.prop]=a||f.style(this.elem,this.prop),this.options.show=!0,a!==b?this.custom(this.cur(),a):this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f._data(this.elem,"fxshow"+this.prop)||f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b,c,d,e=cr||cs(),g=!0,h=this.elem,i=this.options;if(a||e>=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||f.fx.stop()},interval:13,stop:function(){clearInterval(cp),cp=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=a.now+a.unit:a.elem[a.prop]=a.now}}}),f.each(["width","height"],function(a,b){f.fx.step[b]=function(a){f.style(a.elem,b,Math.max(0,a.now)+a.unit)}}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var cw=/^t(?:able|d|h)$/i,cx=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?f.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(d){}var e=b.ownerDocument,g=e.documentElement;if(!c||!f.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=e.body,i=cy(e),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||f.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||f.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:f.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);var c,d=b.offsetParent,e=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(f.support.fixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===d&&(l+=b.offsetTop,m+=b.offsetLeft,f.support.doesNotAddBorder&&(!f.support.doesAddBorderForTableAndCells||!cw.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),e=d,d=b.offsetParent),f.support.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;f.support.fixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},f.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window);
\ No newline at end of file |