code stringlengths 2 1.05M | repo_name stringlengths 5 101 | path stringlengths 4 991 | language stringclasses 3 values | license stringclasses 5 values | size int64 2 1.05M |
|---|---|---|---|---|---|
---
layout: attachment
title: Bitcoin-Central_Big_Logo_20140224
date:
type: attachment
published: false
status: inherit
categories: []
tags: []
meta:
_wp_attachment_metadata: a:5:{s:5:"width";i:400;s:6:"height";i:132;s:4:"file";s:60:"2014/02/Bitcoin-Central_Big_Logo_20140224-e1393345105322.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:45:"Bitcoin-Central_Big_Logo_20140224-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:44:"Bitcoin-Central_Big_Logo_20140224-300x98.png";s:5:"width";i:300;s:6:"height";i:98;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:45:"Bitcoin-Central_Big_Logo_20140224-910x198.png";s:5:"width";i:910;s:6:"height";i:198;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:10:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";}}
_wp_attached_file: 2014/02/Bitcoin-Central_Big_Logo_20140224-e1393345105322.png
_wp_attachment_backup_sizes: a:1:{s:9:"full-orig";a:3:{s:5:"width";i:910;s:6:"height";i:300;s:4:"file";s:37:"Bitcoin-Central_Big_Logo_20140224.png";}}
_edit_last: '1'
author:
login: admin
email: noizat@hotmail.com
display_name: Boussac
first_name: ''
last_name: ''
---
| pierrenoizat/pierrenoizat.github.io | _attachments/bitcoin-central_big_logo_20140224.html | HTML | mit | 1,390 |
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0">
<title>index</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body class="body page-index clearfix">
<div id="header" class="_container clearfix">
<p class="text header">Raj's Cheat Sheet Library</p>
<div class="navbuts">
<button class="header header-2">Git</button>
<button class="header header-3">MySQL</button>
<button class="header header-4">JavaScript</button>
<button class="header header-5">Ruby</button>
<button class="header header-6">HTML/CSS</button>
</div>
</div>
<div class="sheetbody">
<div class="csheet csheet-1"></div>
<div class="csheet csheet-2"></div>
<div class="csheet csheet-3"></div>
<div class="csheet csheet-4"></div>
<div class="csheet csheet-5"></div>
<div class="csheet csheet-6"></div>
<div class="csheet csheet-7"></div>
<div class="csheet csheet-8"></div>
</div>
<script src="js/jquery-min.js"></script>
</body>
</html> | Zamyatin/Zamyatin.github.io | cheatSheet/index.html | HTML | mit | 1,062 |
<!DOCTYPE html>
<html>
<head>
<title>About Page</title>
<link type="text/css" rel="stylesheet" href="../stylesheets/default.css">
<link type="text/css" rel="stylesheet" href="../stylesheets/blog-stylesheet.css">
</head>
<body>
<div id="banner"><h1>Makeven's Site</h1>
</div>
<div id="top-navbar">
<ol><h4>
<li class="top-link"><a href="../index.html">Homepage</a></li>
<li class="top-link"><a href="../profolio.html">Profolio</a></li>
<li class="top-link"><a href="../blog.html">Blogs</a></li>
<li class="top-link"><a href="../contact.html">Contact</a></li>
</ol></h4>
</div>
<p class="post">
<div class="content"><h3> Margin, Border, and Padding....oh My!</h3>
<p>If you just starting out in html/CSS then you probably ran into the issues of margin, border, padding. As a beginner figuring out the difference may be frustrating at time but fear not! I'm here to show you the way!
<p>So what is the difference between Margin, Border, and Padding?</p>
<p><ul class="blog-post">
<li>Padding property defines the space inside the element content.</li>
<li>The margin property defines the space around the element outside the border. It is always transparent.</li>
<li>Border property is used to style the size, color of an element. It is also the separation between Padding and margin. Padding tacks the background color of the element. </i>
</ul>
</p>
<p> For a more visual representation refer to the image below.</p>
<img src ="../imgs/content.jpg" class="center"></a>
<p class="center"> In this image, the blue space is the margin, the light green spacing is the padding and the black space is the border. In the next example I try to show what would happen if you expand the padding. Usually when you have element(your content) there would be no padding, borders or margin respresent yet. The only think should would be the content(represented by the white space in the image). If you were add some adding padding to your content, spaces would be created around your content but inside of the border. Refer to the image below if your still having trouble.
</p>
<br />
<img src ="../imgs/padding-image2.jpg" class="center" class="size"></a>
<br />
<p>As you can see, increasing the right padding of the your content will increase the spacing right of the content. Increasing both top and bottom of the content will expand the space as well. Inc CSS you can expand the left, right, top, down independently or all at once.
</p>
<br />
<p>In the next example, I'll show you what happens when you increase the margin of your content.
<br />
<br />
<img src ="../imgs/margin-image2.jpg" class="center" class-"size"></a>
<br />
<p>In this image, you can see that the spaces outside of the content and the border is increase if you apply margin into your content. Like padding, you can expand the left, right, top, down independently or all at once.
</p>
<p>Alright! I pretty sure you got the hang of it now. In the next example I show you how to use padding and margin when you have two content right next to each other.
</p>
<br />
<img src ="../imgs/example-final2.jpg" class="center" class-"size"></a>
<p>In, Example #1, you see two elements with no padding or margin but does have a border.
<br />
<br />
In example #2, you see that I added padding and margin to both elements. There is now padding around content inside the border.
<br />
<br />
In example #3, if you were to increase the rigt padding(or "padding-right" in CSS) the space between the content and the border increase but the space between the elements stay the same.
<br />
<br />
But what would happen if you increase the right margin(margin-right)? In example #4, I did just that. The image shows the element push the other element further apart from the place we I created.
<br />
<br />
Well hopefully this makes sense. But the best way to learn is do it yourself and see the different that padding, margin, border behaves in your code.
<br />
<br />
If you see anything in my post that can be improve upon because contact me. I would love to hear what you have to say. Thanks!
<br />
<br />
</p>
<div id="footer">footer</div>
</p>
</body>
</html> | k3vinyan/k3vinyan.github.io | blog/posts/post-three.html | HTML | mit | 4,353 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_40) on Thu Jan 19 13:15:32 EST 2017 -->
<title>Uses of Class org.hibernate.cfg.Ejb3JoinColumn (Hibernate JavaDocs)</title>
<meta name="date" content="2017-01-19">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.hibernate.cfg.Ejb3JoinColumn (Hibernate JavaDocs)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../overview-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/hibernate/cfg/class-use/Ejb3JoinColumn.html" target="_top">Frames</a></li>
<li><a href="Ejb3JoinColumn.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.hibernate.cfg.Ejb3JoinColumn" class="title">Uses of Class<br>org.hibernate.cfg.Ejb3JoinColumn</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#org.hibernate.cfg">org.hibernate.cfg</a></td>
<td class="colLast">
<div class="block">
This package defines APIs for configuring Hibernate, and classes
for building the Hibernate configuration-time metamodel.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.hibernate.cfg.annotations">org.hibernate.cfg.annotations</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.hibernate.cfg">
<!-- -->
</a>
<h3>Uses of <a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a> in <a href="../../../../org/hibernate/cfg/package-summary.html">org.hibernate.cfg</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation">
<caption><span>Fields in <a href="../../../../org/hibernate/cfg/package-summary.html">org.hibernate.cfg</a> declared as <a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>protected <a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[]</code></td>
<td class="colLast"><span class="typeNameLabel">FkSecondPass.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/FkSecondPass.html#columns">columns</a></span></code> </td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../org/hibernate/cfg/package-summary.html">org.hibernate.cfg</a> that return <a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a></code></td>
<td class="colLast"><span class="typeNameLabel">Ejb3JoinColumn.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html#buildJoinColumn-javax.persistence.PrimaryKeyJoinColumn-javax.persistence.JoinColumn-org.hibernate.mapping.Value-java.util.Map-org.hibernate.cfg.PropertyHolder-org.hibernate.boot.spi.MetadataBuildingContext-">buildJoinColumn</a></span>(<a href="http://download.oracle.com/javaee/6/api/javax/persistence/PrimaryKeyJoinColumn.html?is-external=true" title="class or interface in javax.persistence">PrimaryKeyJoinColumn</a> pkJoinAnn,
<a href="http://download.oracle.com/javaee/6/api/javax/persistence/JoinColumn.html?is-external=true" title="class or interface in javax.persistence">JoinColumn</a> joinAnn,
<a href="../../../../org/hibernate/mapping/Value.html" title="interface in org.hibernate.mapping">Value</a> identifier,
<a href="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../org/hibernate/mapping/Join.html" title="class in org.hibernate.mapping">Join</a>> joins,
<a href="../../../../org/hibernate/cfg/PropertyHolder.html" title="interface in org.hibernate.cfg">PropertyHolder</a> propertyHolder,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> context)</code>
<div class="block">Build JoinColumn for a JOINED hierarchy</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[]</code></td>
<td class="colLast"><span class="typeNameLabel">Ejb3JoinColumn.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html#buildJoinColumns-javax.persistence.JoinColumn:A-java.lang.String-java.util.Map-org.hibernate.cfg.PropertyHolder-java.lang.String-org.hibernate.boot.spi.MetadataBuildingContext-">buildJoinColumns</a></span>(<a href="http://download.oracle.com/javaee/6/api/javax/persistence/JoinColumn.html?is-external=true" title="class or interface in javax.persistence">JoinColumn</a>[] anns,
<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> mappedBy,
<a href="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../org/hibernate/mapping/Join.html" title="class in org.hibernate.mapping">Join</a>> joins,
<a href="../../../../org/hibernate/cfg/PropertyHolder.html" title="interface in org.hibernate.cfg">PropertyHolder</a> propertyHolder,
<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> propertyName,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[]</code></td>
<td class="colLast"><span class="typeNameLabel">Ejb3JoinColumn.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html#buildJoinColumnsOrFormulas-org.hibernate.annotations.JoinColumnsOrFormulas-java.lang.String-java.util.Map-org.hibernate.cfg.PropertyHolder-java.lang.String-org.hibernate.boot.spi.MetadataBuildingContext-">buildJoinColumnsOrFormulas</a></span>(<a href="../../../../org/hibernate/annotations/JoinColumnsOrFormulas.html" title="annotation in org.hibernate.annotations">JoinColumnsOrFormulas</a> anns,
<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> mappedBy,
<a href="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../org/hibernate/mapping/Join.html" title="class in org.hibernate.mapping">Join</a>> joins,
<a href="../../../../org/hibernate/cfg/PropertyHolder.html" title="interface in org.hibernate.cfg">PropertyHolder</a> propertyHolder,
<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> propertyName,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[]</code></td>
<td class="colLast"><span class="typeNameLabel">Ejb3JoinColumn.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html#buildJoinColumnsWithDefaultColumnSuffix-javax.persistence.JoinColumn:A-java.lang.String-java.util.Map-org.hibernate.cfg.PropertyHolder-java.lang.String-java.lang.String-org.hibernate.boot.spi.MetadataBuildingContext-">buildJoinColumnsWithDefaultColumnSuffix</a></span>(<a href="http://download.oracle.com/javaee/6/api/javax/persistence/JoinColumn.html?is-external=true" title="class or interface in javax.persistence">JoinColumn</a>[] anns,
<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> mappedBy,
<a href="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../org/hibernate/mapping/Join.html" title="class in org.hibernate.mapping">Join</a>> joins,
<a href="../../../../org/hibernate/cfg/PropertyHolder.html" title="interface in org.hibernate.cfg">PropertyHolder</a> propertyHolder,
<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> propertyName,
<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> suffixForDefaultColumnName,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a></code></td>
<td class="colLast"><span class="typeNameLabel">Ejb3JoinColumn.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html#buildJoinFormula-org.hibernate.annotations.JoinFormula-java.lang.String-java.util.Map-org.hibernate.cfg.PropertyHolder-java.lang.String-org.hibernate.boot.spi.MetadataBuildingContext-">buildJoinFormula</a></span>(<a href="../../../../org/hibernate/annotations/JoinFormula.html" title="annotation in org.hibernate.annotations">JoinFormula</a> ann,
<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> mappedBy,
<a href="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../org/hibernate/mapping/Join.html" title="class in org.hibernate.mapping">Join</a>> joins,
<a href="../../../../org/hibernate/cfg/PropertyHolder.html" title="interface in org.hibernate.cfg">PropertyHolder</a> propertyHolder,
<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> propertyName,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code>
<div class="block">build join formula</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[]</code></td>
<td class="colLast"><span class="typeNameLabel">Ejb3JoinColumn.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html#buildJoinTableJoinColumns-javax.persistence.JoinColumn:A-java.util.Map-org.hibernate.cfg.PropertyHolder-java.lang.String-java.lang.String-org.hibernate.boot.spi.MetadataBuildingContext-">buildJoinTableJoinColumns</a></span>(<a href="http://download.oracle.com/javaee/6/api/javax/persistence/JoinColumn.html?is-external=true" title="class or interface in javax.persistence">JoinColumn</a>[] annJoins,
<a href="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../org/hibernate/mapping/Join.html" title="class in org.hibernate.mapping">Join</a>> secondaryTables,
<a href="../../../../org/hibernate/cfg/PropertyHolder.html" title="interface in org.hibernate.cfg">PropertyHolder</a> propertyHolder,
<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> propertyName,
<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> mappedBy,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../org/hibernate/cfg/package-summary.html">org.hibernate.cfg</a> with parameters of type <a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/hibernate/mapping/Any.html" title="class in org.hibernate.mapping">Any</a></code></td>
<td class="colLast"><span class="typeNameLabel">BinderHelper.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/BinderHelper.html#buildAnyValue-java.lang.String-org.hibernate.cfg.Ejb3JoinColumn:A-javax.persistence.Column-org.hibernate.cfg.PropertyData-boolean-org.hibernate.cfg.annotations.Nullability-org.hibernate.cfg.PropertyHolder-org.hibernate.cfg.annotations.EntityBinder-boolean-org.hibernate.boot.spi.MetadataBuildingContext-">buildAnyValue</a></span>(<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> anyMetaDefName,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] columns,
<a href="http://download.oracle.com/javaee/6/api/javax/persistence/Column.html?is-external=true" title="class or interface in javax.persistence">Column</a> metaColumn,
<a href="../../../../org/hibernate/cfg/PropertyData.html" title="interface in org.hibernate.cfg">PropertyData</a> inferredData,
boolean cascadeOnDelete,
<a href="../../../../org/hibernate/cfg/annotations/Nullability.html" title="enum in org.hibernate.cfg.annotations">Nullability</a> nullability,
<a href="../../../../org/hibernate/cfg/PropertyHolder.html" title="interface in org.hibernate.cfg">PropertyHolder</a> propertyHolder,
<a href="../../../../org/hibernate/cfg/annotations/EntityBinder.html" title="class in org.hibernate.cfg.annotations">EntityBinder</a> entityBinder,
boolean optional,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> context)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><span class="typeNameLabel">Ejb3JoinColumn.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html#checkReferencedColumnsType-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.mapping.PersistentClass-org.hibernate.boot.spi.MetadataBuildingContext-">checkReferencedColumnsType</a></span>(<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] columns,
<a href="../../../../org/hibernate/mapping/PersistentClass.html" title="class in org.hibernate.mapping">PersistentClass</a> referencedEntity,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> context)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><span class="typeNameLabel">BinderHelper.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/BinderHelper.html#createSyntheticPropertyReference-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.mapping.PersistentClass-org.hibernate.mapping.PersistentClass-org.hibernate.mapping.Value-boolean-org.hibernate.boot.spi.MetadataBuildingContext-">createSyntheticPropertyReference</a></span>(<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] columns,
<a href="../../../../org/hibernate/mapping/PersistentClass.html" title="class in org.hibernate.mapping">PersistentClass</a> ownerEntity,
<a href="../../../../org/hibernate/mapping/PersistentClass.html" title="class in org.hibernate.mapping">PersistentClass</a> associatedEntity,
<a href="../../../../org/hibernate/mapping/Value.html" title="interface in org.hibernate.mapping">Value</a> value,
boolean inverse,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> context)</code> </td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
<caption><span>Constructors in <a href="../../../../org/hibernate/cfg/package-summary.html">org.hibernate.cfg</a> with parameters of type <a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/CopyIdentifierComponentSecondPass.html#CopyIdentifierComponentSecondPass-org.hibernate.mapping.Component-java.lang.String-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.boot.spi.MetadataBuildingContext-">CopyIdentifierComponentSecondPass</a></span>(<a href="../../../../org/hibernate/mapping/Component.html" title="class in org.hibernate.mapping">Component</a> comp,
<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> referencedEntityName,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] joinColumns,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="rowColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/FkSecondPass.html#FkSecondPass-org.hibernate.mapping.SimpleValue-org.hibernate.cfg.Ejb3JoinColumn:A-">FkSecondPass</a></span>(<a href="../../../../org/hibernate/mapping/SimpleValue.html" title="class in org.hibernate.mapping">SimpleValue</a> value,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] columns)</code> </td>
</tr>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/JoinedSubclassFkSecondPass.html#JoinedSubclassFkSecondPass-org.hibernate.mapping.JoinedSubclass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.mapping.SimpleValue-org.hibernate.boot.spi.MetadataBuildingContext-">JoinedSubclassFkSecondPass</a></span>(<a href="../../../../org/hibernate/mapping/JoinedSubclass.html" title="class in org.hibernate.mapping">JoinedSubclass</a> entity,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inheritanceJoinedColumns,
<a href="../../../../org/hibernate/mapping/SimpleValue.html" title="class in org.hibernate.mapping">SimpleValue</a> key,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="rowColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/OneToOneSecondPass.html#OneToOneSecondPass-java.lang.String-java.lang.String-java.lang.String-org.hibernate.cfg.PropertyHolder-org.hibernate.cfg.PropertyData-org.hibernate.annotations.common.reflection.XClass-boolean-boolean-boolean-java.lang.String-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.boot.spi.MetadataBuildingContext-">OneToOneSecondPass</a></span>(<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> mappedBy,
<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> ownerEntity,
<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> ownerProperty,
<a href="../../../../org/hibernate/cfg/PropertyHolder.html" title="interface in org.hibernate.cfg">PropertyHolder</a> propertyHolder,
<a href="../../../../org/hibernate/cfg/PropertyData.html" title="interface in org.hibernate.cfg">PropertyData</a> inferredData,
org.hibernate.annotations.common.reflection.XClass targetEntity,
boolean ignoreNotFound,
boolean cascadeOnDelete,
boolean optional,
<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> cascadeStrategy,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] columns,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/PkDrivenByDefaultMapsIdSecondPass.html#PkDrivenByDefaultMapsIdSecondPass-java.lang.String-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.mapping.SimpleValue-">PkDrivenByDefaultMapsIdSecondPass</a></span>(<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> referencedEntityName,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] columns,
<a href="../../../../org/hibernate/mapping/SimpleValue.html" title="class in org.hibernate.mapping">SimpleValue</a> value)</code> </td>
</tr>
<tr class="rowColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/ToOneFkSecondPass.html#ToOneFkSecondPass-org.hibernate.mapping.ToOne-org.hibernate.cfg.Ejb3JoinColumn:A-boolean-java.lang.String-java.lang.String-org.hibernate.boot.spi.MetadataBuildingContext-">ToOneFkSecondPass</a></span>(<a href="../../../../org/hibernate/mapping/ToOne.html" title="class in org.hibernate.mapping">ToOne</a> value,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] columns,
boolean unique,
<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> entityClassName,
<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> path,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.hibernate.cfg.annotations">
<!-- -->
</a>
<h3>Uses of <a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a> in <a href="../../../../org/hibernate/cfg/annotations/package-summary.html">org.hibernate.cfg.annotations</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../org/hibernate/cfg/annotations/package-summary.html">org.hibernate.cfg.annotations</a> with parameters of type <a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><span class="typeNameLabel">TableBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/TableBinder.html#bindFk-org.hibernate.mapping.PersistentClass-org.hibernate.mapping.PersistentClass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.mapping.SimpleValue-boolean-org.hibernate.boot.spi.MetadataBuildingContext-">bindFk</a></span>(<a href="../../../../org/hibernate/mapping/PersistentClass.html" title="class in org.hibernate.mapping">PersistentClass</a> referencedEntity,
<a href="../../../../org/hibernate/mapping/PersistentClass.html" title="class in org.hibernate.mapping">PersistentClass</a> destinationEntity,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] columns,
<a href="../../../../org/hibernate/mapping/SimpleValue.html" title="class in org.hibernate.mapping">SimpleValue</a> value,
boolean unique,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><span class="typeNameLabel">CollectionBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/CollectionBinder.html#bindManytoManyInverseFk-org.hibernate.mapping.PersistentClass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.mapping.SimpleValue-boolean-org.hibernate.boot.spi.MetadataBuildingContext-">bindManytoManyInverseFk</a></span>(<a href="../../../../org/hibernate/mapping/PersistentClass.html" title="class in org.hibernate.mapping">PersistentClass</a> referencedEntity,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] columns,
<a href="../../../../org/hibernate/mapping/SimpleValue.html" title="class in org.hibernate.mapping">SimpleValue</a> value,
boolean unique,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code>
<div class="block">bind the inverse FK of a ManyToMany
If we are in a mappedBy case, read the columns from the associated
collection element
Otherwise delegates to the usual algorithm</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><span class="typeNameLabel">CollectionBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/CollectionBinder.html#bindManyToManySecondPass-org.hibernate.mapping.Collection-java.util.Map-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3Column:A-boolean-org.hibernate.annotations.common.reflection.XClass-boolean-boolean-boolean-org.hibernate.cfg.annotations.TableBinder-org.hibernate.annotations.common.reflection.XProperty-org.hibernate.cfg.PropertyHolder-org.hibernate.boot.spi.MetadataBuildingContext-">bindManyToManySecondPass</a></span>(<a href="../../../../org/hibernate/mapping/Collection.html" title="class in org.hibernate.mapping">Collection</a> collValue,
<a href="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a> persistentClasses,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] joinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseJoinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] elementColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XClass collType,
boolean ignoreNotFound,
boolean unique,
boolean cascadeDeleteEnabled,
<a href="../../../../org/hibernate/cfg/annotations/TableBinder.html" title="class in org.hibernate.cfg.annotations">TableBinder</a> associationTableBinder,
org.hibernate.annotations.common.reflection.XProperty property,
<a href="../../../../org/hibernate/cfg/PropertyHolder.html" title="interface in org.hibernate.cfg">PropertyHolder</a> parentPropertyHolder,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><span class="typeNameLabel">CollectionBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/CollectionBinder.html#bindManyToManySecondPass-org.hibernate.mapping.Collection-java.util.Map-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3Column:A-boolean-org.hibernate.annotations.common.reflection.XClass-boolean-boolean-boolean-org.hibernate.cfg.annotations.TableBinder-org.hibernate.annotations.common.reflection.XProperty-org.hibernate.cfg.PropertyHolder-org.hibernate.boot.spi.MetadataBuildingContext-">bindManyToManySecondPass</a></span>(<a href="../../../../org/hibernate/mapping/Collection.html" title="class in org.hibernate.mapping">Collection</a> collValue,
<a href="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a> persistentClasses,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] joinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseJoinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] elementColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XClass collType,
boolean ignoreNotFound,
boolean unique,
boolean cascadeDeleteEnabled,
<a href="../../../../org/hibernate/cfg/annotations/TableBinder.html" title="class in org.hibernate.cfg.annotations">TableBinder</a> associationTableBinder,
org.hibernate.annotations.common.reflection.XProperty property,
<a href="../../../../org/hibernate/cfg/PropertyHolder.html" title="interface in org.hibernate.cfg">PropertyHolder</a> parentPropertyHolder,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><span class="typeNameLabel">CollectionBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/CollectionBinder.html#bindOneToManySecondPass-org.hibernate.mapping.Collection-java.util.Map-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.annotations.common.reflection.XClass-boolean-boolean-org.hibernate.boot.spi.MetadataBuildingContext-java.util.Map-">bindOneToManySecondPass</a></span>(<a href="../../../../org/hibernate/mapping/Collection.html" title="class in org.hibernate.mapping">Collection</a> collection,
<a href="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a> persistentClasses,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] fkJoinColumns,
org.hibernate.annotations.common.reflection.XClass collectionType,
boolean cascadeDeleteEnabled,
boolean ignoreNotFound,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext,
<a href="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><org.hibernate.annotations.common.reflection.XClass,<a href="../../../../org/hibernate/cfg/InheritanceState.html" title="class in org.hibernate.cfg">InheritanceState</a>> inheritanceStatePerClass)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><span class="typeNameLabel">CollectionBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/CollectionBinder.html#bindStarToManySecondPass-java.util.Map-org.hibernate.annotations.common.reflection.XClass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3Column:A-boolean-org.hibernate.annotations.common.reflection.XProperty-boolean-org.hibernate.cfg.annotations.TableBinder-boolean-org.hibernate.boot.spi.MetadataBuildingContext-">bindStarToManySecondPass</a></span>(<a href="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a> persistentClasses,
org.hibernate.annotations.common.reflection.XClass collType,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] fkJoinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] keyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] elementColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XProperty property,
boolean unique,
<a href="../../../../org/hibernate/cfg/annotations/TableBinder.html" title="class in org.hibernate.cfg.annotations">TableBinder</a> associationTableBinder,
boolean ignoreNotFound,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code>
<div class="block">return true if it's a Fk, false if it's an association table</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><span class="typeNameLabel">CollectionBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/CollectionBinder.html#bindStarToManySecondPass-java.util.Map-org.hibernate.annotations.common.reflection.XClass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3Column:A-boolean-org.hibernate.annotations.common.reflection.XProperty-boolean-org.hibernate.cfg.annotations.TableBinder-boolean-org.hibernate.boot.spi.MetadataBuildingContext-">bindStarToManySecondPass</a></span>(<a href="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a> persistentClasses,
org.hibernate.annotations.common.reflection.XClass collType,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] fkJoinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] keyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] elementColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XProperty property,
boolean unique,
<a href="../../../../org/hibernate/cfg/annotations/TableBinder.html" title="class in org.hibernate.cfg.annotations">TableBinder</a> associationTableBinder,
boolean ignoreNotFound,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code>
<div class="block">return true if it's a Fk, false if it's an association table</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><span class="typeNameLabel">CollectionBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/CollectionBinder.html#bindStarToManySecondPass-java.util.Map-org.hibernate.annotations.common.reflection.XClass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3Column:A-boolean-org.hibernate.annotations.common.reflection.XProperty-boolean-org.hibernate.cfg.annotations.TableBinder-boolean-org.hibernate.boot.spi.MetadataBuildingContext-">bindStarToManySecondPass</a></span>(<a href="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a> persistentClasses,
org.hibernate.annotations.common.reflection.XClass collType,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] fkJoinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] keyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] elementColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XProperty property,
boolean unique,
<a href="../../../../org/hibernate/cfg/annotations/TableBinder.html" title="class in org.hibernate.cfg.annotations">TableBinder</a> associationTableBinder,
boolean ignoreNotFound,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code>
<div class="block">return true if it's a Fk, false if it's an association table</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><span class="typeNameLabel">IdBagBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/IdBagBinder.html#bindStarToManySecondPass-java.util.Map-org.hibernate.annotations.common.reflection.XClass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3Column:A-boolean-org.hibernate.annotations.common.reflection.XProperty-boolean-org.hibernate.cfg.annotations.TableBinder-boolean-org.hibernate.boot.spi.MetadataBuildingContext-">bindStarToManySecondPass</a></span>(<a href="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a> persistentClasses,
org.hibernate.annotations.common.reflection.XClass collType,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] fkJoinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] keyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] elementColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XProperty property,
boolean unique,
<a href="../../../../org/hibernate/cfg/annotations/TableBinder.html" title="class in org.hibernate.cfg.annotations">TableBinder</a> associationTableBinder,
boolean ignoreNotFound,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><span class="typeNameLabel">IdBagBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/IdBagBinder.html#bindStarToManySecondPass-java.util.Map-org.hibernate.annotations.common.reflection.XClass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3Column:A-boolean-org.hibernate.annotations.common.reflection.XProperty-boolean-org.hibernate.cfg.annotations.TableBinder-boolean-org.hibernate.boot.spi.MetadataBuildingContext-">bindStarToManySecondPass</a></span>(<a href="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a> persistentClasses,
org.hibernate.annotations.common.reflection.XClass collType,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] fkJoinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] keyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] elementColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XProperty property,
boolean unique,
<a href="../../../../org/hibernate/cfg/annotations/TableBinder.html" title="class in org.hibernate.cfg.annotations">TableBinder</a> associationTableBinder,
boolean ignoreNotFound,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><span class="typeNameLabel">IdBagBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/IdBagBinder.html#bindStarToManySecondPass-java.util.Map-org.hibernate.annotations.common.reflection.XClass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3Column:A-boolean-org.hibernate.annotations.common.reflection.XProperty-boolean-org.hibernate.cfg.annotations.TableBinder-boolean-org.hibernate.boot.spi.MetadataBuildingContext-">bindStarToManySecondPass</a></span>(<a href="http://download.oracle.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a> persistentClasses,
org.hibernate.annotations.common.reflection.XClass collType,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] fkJoinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] keyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] elementColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XProperty property,
boolean unique,
<a href="../../../../org/hibernate/cfg/annotations/TableBinder.html" title="class in org.hibernate.cfg.annotations">TableBinder</a> associationTableBinder,
boolean ignoreNotFound,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../org/hibernate/cfg/SecondPass.html" title="interface in org.hibernate.cfg">SecondPass</a></code></td>
<td class="colLast"><span class="typeNameLabel">CollectionBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/CollectionBinder.html#getSecondPass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3JoinColumn:A-boolean-org.hibernate.annotations.common.reflection.XProperty-org.hibernate.annotations.common.reflection.XClass-boolean-boolean-org.hibernate.cfg.annotations.TableBinder-org.hibernate.boot.spi.MetadataBuildingContext-">getSecondPass</a></span>(<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] fkJoinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] keyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] elementColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] mapKeyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] mapKeyManyToManyColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XProperty property,
org.hibernate.annotations.common.reflection.XClass collType,
boolean ignoreNotFound,
boolean unique,
<a href="../../../../org/hibernate/cfg/annotations/TableBinder.html" title="class in org.hibernate.cfg.annotations">TableBinder</a> assocTableBinder,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../org/hibernate/cfg/SecondPass.html" title="interface in org.hibernate.cfg">SecondPass</a></code></td>
<td class="colLast"><span class="typeNameLabel">CollectionBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/CollectionBinder.html#getSecondPass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3JoinColumn:A-boolean-org.hibernate.annotations.common.reflection.XProperty-org.hibernate.annotations.common.reflection.XClass-boolean-boolean-org.hibernate.cfg.annotations.TableBinder-org.hibernate.boot.spi.MetadataBuildingContext-">getSecondPass</a></span>(<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] fkJoinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] keyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] elementColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] mapKeyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] mapKeyManyToManyColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XProperty property,
org.hibernate.annotations.common.reflection.XClass collType,
boolean ignoreNotFound,
boolean unique,
<a href="../../../../org/hibernate/cfg/annotations/TableBinder.html" title="class in org.hibernate.cfg.annotations">TableBinder</a> assocTableBinder,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../org/hibernate/cfg/SecondPass.html" title="interface in org.hibernate.cfg">SecondPass</a></code></td>
<td class="colLast"><span class="typeNameLabel">CollectionBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/CollectionBinder.html#getSecondPass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3JoinColumn:A-boolean-org.hibernate.annotations.common.reflection.XProperty-org.hibernate.annotations.common.reflection.XClass-boolean-boolean-org.hibernate.cfg.annotations.TableBinder-org.hibernate.boot.spi.MetadataBuildingContext-">getSecondPass</a></span>(<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] fkJoinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] keyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] elementColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] mapKeyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] mapKeyManyToManyColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XProperty property,
org.hibernate.annotations.common.reflection.XClass collType,
boolean ignoreNotFound,
boolean unique,
<a href="../../../../org/hibernate/cfg/annotations/TableBinder.html" title="class in org.hibernate.cfg.annotations">TableBinder</a> assocTableBinder,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../org/hibernate/cfg/SecondPass.html" title="interface in org.hibernate.cfg">SecondPass</a></code></td>
<td class="colLast"><span class="typeNameLabel">CollectionBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/CollectionBinder.html#getSecondPass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3JoinColumn:A-boolean-org.hibernate.annotations.common.reflection.XProperty-org.hibernate.annotations.common.reflection.XClass-boolean-boolean-org.hibernate.cfg.annotations.TableBinder-org.hibernate.boot.spi.MetadataBuildingContext-">getSecondPass</a></span>(<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] fkJoinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] keyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] elementColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] mapKeyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] mapKeyManyToManyColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XProperty property,
org.hibernate.annotations.common.reflection.XClass collType,
boolean ignoreNotFound,
boolean unique,
<a href="../../../../org/hibernate/cfg/annotations/TableBinder.html" title="class in org.hibernate.cfg.annotations">TableBinder</a> assocTableBinder,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../org/hibernate/cfg/SecondPass.html" title="interface in org.hibernate.cfg">SecondPass</a></code></td>
<td class="colLast"><span class="typeNameLabel">MapBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/MapBinder.html#getSecondPass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3JoinColumn:A-boolean-org.hibernate.annotations.common.reflection.XProperty-org.hibernate.annotations.common.reflection.XClass-boolean-boolean-org.hibernate.cfg.annotations.TableBinder-org.hibernate.boot.spi.MetadataBuildingContext-">getSecondPass</a></span>(<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] fkJoinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] keyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] elementColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] mapKeyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] mapKeyManyToManyColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XProperty property,
org.hibernate.annotations.common.reflection.XClass collType,
boolean ignoreNotFound,
boolean unique,
<a href="../../../../org/hibernate/cfg/annotations/TableBinder.html" title="class in org.hibernate.cfg.annotations">TableBinder</a> assocTableBinder,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../org/hibernate/cfg/SecondPass.html" title="interface in org.hibernate.cfg">SecondPass</a></code></td>
<td class="colLast"><span class="typeNameLabel">MapBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/MapBinder.html#getSecondPass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3JoinColumn:A-boolean-org.hibernate.annotations.common.reflection.XProperty-org.hibernate.annotations.common.reflection.XClass-boolean-boolean-org.hibernate.cfg.annotations.TableBinder-org.hibernate.boot.spi.MetadataBuildingContext-">getSecondPass</a></span>(<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] fkJoinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] keyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] elementColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] mapKeyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] mapKeyManyToManyColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XProperty property,
org.hibernate.annotations.common.reflection.XClass collType,
boolean ignoreNotFound,
boolean unique,
<a href="../../../../org/hibernate/cfg/annotations/TableBinder.html" title="class in org.hibernate.cfg.annotations">TableBinder</a> assocTableBinder,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../org/hibernate/cfg/SecondPass.html" title="interface in org.hibernate.cfg">SecondPass</a></code></td>
<td class="colLast"><span class="typeNameLabel">MapBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/MapBinder.html#getSecondPass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3JoinColumn:A-boolean-org.hibernate.annotations.common.reflection.XProperty-org.hibernate.annotations.common.reflection.XClass-boolean-boolean-org.hibernate.cfg.annotations.TableBinder-org.hibernate.boot.spi.MetadataBuildingContext-">getSecondPass</a></span>(<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] fkJoinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] keyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] elementColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] mapKeyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] mapKeyManyToManyColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XProperty property,
org.hibernate.annotations.common.reflection.XClass collType,
boolean ignoreNotFound,
boolean unique,
<a href="../../../../org/hibernate/cfg/annotations/TableBinder.html" title="class in org.hibernate.cfg.annotations">TableBinder</a> assocTableBinder,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../org/hibernate/cfg/SecondPass.html" title="interface in org.hibernate.cfg">SecondPass</a></code></td>
<td class="colLast"><span class="typeNameLabel">MapBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/MapBinder.html#getSecondPass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3JoinColumn:A-boolean-org.hibernate.annotations.common.reflection.XProperty-org.hibernate.annotations.common.reflection.XClass-boolean-boolean-org.hibernate.cfg.annotations.TableBinder-org.hibernate.boot.spi.MetadataBuildingContext-">getSecondPass</a></span>(<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] fkJoinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] keyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] elementColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] mapKeyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] mapKeyManyToManyColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XProperty property,
org.hibernate.annotations.common.reflection.XClass collType,
boolean ignoreNotFound,
boolean unique,
<a href="../../../../org/hibernate/cfg/annotations/TableBinder.html" title="class in org.hibernate.cfg.annotations">TableBinder</a> assocTableBinder,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../org/hibernate/cfg/SecondPass.html" title="interface in org.hibernate.cfg">SecondPass</a></code></td>
<td class="colLast"><span class="typeNameLabel">ListBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/ListBinder.html#getSecondPass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3JoinColumn:A-boolean-org.hibernate.annotations.common.reflection.XProperty-org.hibernate.annotations.common.reflection.XClass-boolean-boolean-org.hibernate.cfg.annotations.TableBinder-org.hibernate.boot.spi.MetadataBuildingContext-">getSecondPass</a></span>(<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] fkJoinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] keyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] elementColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] mapKeyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] mapKeyManyToManyColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XProperty property,
org.hibernate.annotations.common.reflection.XClass collType,
boolean ignoreNotFound,
boolean unique,
<a href="../../../../org/hibernate/cfg/annotations/TableBinder.html" title="class in org.hibernate.cfg.annotations">TableBinder</a> assocTableBinder,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../org/hibernate/cfg/SecondPass.html" title="interface in org.hibernate.cfg">SecondPass</a></code></td>
<td class="colLast"><span class="typeNameLabel">ListBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/ListBinder.html#getSecondPass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3JoinColumn:A-boolean-org.hibernate.annotations.common.reflection.XProperty-org.hibernate.annotations.common.reflection.XClass-boolean-boolean-org.hibernate.cfg.annotations.TableBinder-org.hibernate.boot.spi.MetadataBuildingContext-">getSecondPass</a></span>(<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] fkJoinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] keyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] elementColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] mapKeyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] mapKeyManyToManyColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XProperty property,
org.hibernate.annotations.common.reflection.XClass collType,
boolean ignoreNotFound,
boolean unique,
<a href="../../../../org/hibernate/cfg/annotations/TableBinder.html" title="class in org.hibernate.cfg.annotations">TableBinder</a> assocTableBinder,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../org/hibernate/cfg/SecondPass.html" title="interface in org.hibernate.cfg">SecondPass</a></code></td>
<td class="colLast"><span class="typeNameLabel">ListBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/ListBinder.html#getSecondPass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3JoinColumn:A-boolean-org.hibernate.annotations.common.reflection.XProperty-org.hibernate.annotations.common.reflection.XClass-boolean-boolean-org.hibernate.cfg.annotations.TableBinder-org.hibernate.boot.spi.MetadataBuildingContext-">getSecondPass</a></span>(<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] fkJoinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] keyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] elementColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] mapKeyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] mapKeyManyToManyColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XProperty property,
org.hibernate.annotations.common.reflection.XClass collType,
boolean ignoreNotFound,
boolean unique,
<a href="../../../../org/hibernate/cfg/annotations/TableBinder.html" title="class in org.hibernate.cfg.annotations">TableBinder</a> assocTableBinder,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../org/hibernate/cfg/SecondPass.html" title="interface in org.hibernate.cfg">SecondPass</a></code></td>
<td class="colLast"><span class="typeNameLabel">ListBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/ListBinder.html#getSecondPass-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3Column:A-org.hibernate.cfg.Ejb3JoinColumn:A-boolean-org.hibernate.annotations.common.reflection.XProperty-org.hibernate.annotations.common.reflection.XClass-boolean-boolean-org.hibernate.cfg.annotations.TableBinder-org.hibernate.boot.spi.MetadataBuildingContext-">getSecondPass</a></span>(<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] fkJoinColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] keyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] elementColumns,
<a href="../../../../org/hibernate/cfg/Ejb3Column.html" title="class in org.hibernate.cfg">Ejb3Column</a>[] mapKeyColumns,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] mapKeyManyToManyColumns,
boolean isEmbedded,
org.hibernate.annotations.common.reflection.XProperty property,
org.hibernate.annotations.common.reflection.XClass collType,
boolean ignoreNotFound,
boolean unique,
<a href="../../../../org/hibernate/cfg/annotations/TableBinder.html" title="class in org.hibernate.cfg.annotations">TableBinder</a> assocTableBinder,
<a href="../../../../org/hibernate/boot/spi/MetadataBuildingContext.html" title="interface in org.hibernate.boot.spi">MetadataBuildingContext</a> buildingContext)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><span class="typeNameLabel">TableBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/TableBinder.html#linkJoinColumnWithValueOverridingNameIfImplicit-org.hibernate.mapping.PersistentClass-java.util.Iterator-org.hibernate.cfg.Ejb3JoinColumn:A-org.hibernate.mapping.SimpleValue-">linkJoinColumnWithValueOverridingNameIfImplicit</a></span>(<a href="../../../../org/hibernate/mapping/PersistentClass.html" title="class in org.hibernate.mapping">PersistentClass</a> referencedEntity,
<a href="http://download.oracle.com/javase/6/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util">Iterator</a> columnIterator,
<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] columns,
<a href="../../../../org/hibernate/mapping/SimpleValue.html" title="class in org.hibernate.mapping">SimpleValue</a> value)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">CollectionBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/CollectionBinder.html#setFkJoinColumns-org.hibernate.cfg.Ejb3JoinColumn:A-">setFkJoinColumns</a></span>(<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] ejb3JoinColumns)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">CollectionBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/CollectionBinder.html#setInverseJoinColumns-org.hibernate.cfg.Ejb3JoinColumn:A-">setInverseJoinColumns</a></span>(<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] inverseJoinColumns)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">CollectionBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/CollectionBinder.html#setJoinColumns-org.hibernate.cfg.Ejb3JoinColumn:A-">setJoinColumns</a></span>(<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] joinColumns)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">CollectionBinder.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/cfg/annotations/CollectionBinder.html#setMapKeyManyToManyColumns-org.hibernate.cfg.Ejb3JoinColumn:A-">setMapKeyManyToManyColumns</a></span>(<a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Ejb3JoinColumn</a>[] mapJoinColumns)</code> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../org/hibernate/cfg/Ejb3JoinColumn.html" title="class in org.hibernate.cfg">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../overview-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/hibernate/cfg/class-use/Ejb3JoinColumn.html" target="_top">Frames</a></li>
<li><a href="Ejb3JoinColumn.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2001-2017 <a href="http://redhat.com">Red Hat, Inc.</a> All Rights Reserved.</small></p>
</body>
</html>
| thefreebird777/StockMarketGame | Resources/hibernate-release-5.0.12.Final/documentation/orm/5.0/javadocs/org/hibernate/cfg/class-use/Ejb3JoinColumn.html | HTML | mit | 86,355 |
<html dir="LTR">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252" />
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5" />
<title>HistEqualizer Methods</title>
<xml>
</xml>
<link rel="stylesheet" type="text/css" href="MSDN.css" />
</head>
<body id="bodyID" class="dtBODY">
<div id="nsbanner">
<div id="bannerrow1">
<table class="bannerparthead" cellspacing="0">
<tr id="hdr">
<td class="runninghead">OCR PreProcessing Imagefilters, Imagesegmentation, OCR Image Creation and Feature Extraction</td>
<td class="product">
</td>
</tr>
</table>
</div>
<div id="TitleRow">
<h1 class="dtH1">HistEqualizer Methods</h1>
</div>
</div>
<div id="nstext">
<p>The methods of the <b>HistEqualizer</b> class are listed below. For a complete list of <b>HistEqualizer</b> class members, see the <a href="OCRPreProcessing.HistEqualizerMembers.html">HistEqualizer Members</a> topic.</p>
<h4 class="dtH4">Public Instance Methods</h4>
<div class="tablediv">
<table class="dtTABLE" cellspacing="0">
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="OCRPreProcessing.HistEqualizer.compute.html">compute</a></td><td width="50%"> Equalizes the histogram of an image </td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemObjectClassEqualsTopic.asp">Equals</a> (inherited from <b>Object</b>)</td><td width="50%"> </td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemObjectClassGetHashCodeTopic.asp">GetHashCode</a> (inherited from <b>Object</b>)</td><td width="50%"> </td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemObjectClassGetTypeTopic.asp">GetType</a> (inherited from <b>Object</b>)</td><td width="50%"> </td></tr>
<tr VALIGN="top"><td width="50%"><img src="pubmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemObjectClassToStringTopic.asp">ToString</a> (inherited from <b>Object</b>)</td><td width="50%"> </td></tr></table>
</div>
<h4 class="dtH4">Protected Instance Methods</h4>
<div class="tablediv">
<table class="dtTABLE" cellspacing="0">
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemObjectClassFinalizeTopic.asp">Finalize</a> (inherited from <b>Object</b>)</td><td width="50%"> </td></tr>
<tr VALIGN="top"><td width="50%"><img src="protmethod.gif"></img><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemObjectClassMemberwiseCloneTopic.asp">MemberwiseClone</a> (inherited from <b>Object</b>)</td><td width="50%"> </td></tr></table>
</div>
<h4 class="dtH4">See Also</h4>
<p>
<a href="OCRPreProcessing.HistEqualizer.html">HistEqualizer Class</a> | <a href="OCRPreProcessing.html">OCRPreProcessing Namespace</a></p>
<object type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e" viewastext="true" style="display: none;">
<param name="Keyword" value="HistEqualizer class, methods">
</param>
</object>
<hr />
<div id="footer">
<p>
<a href="mailto:ocrPreProc@rene-schulte.info?subject=OCR%20PreProcessing%20Imagefilters,%20Imagesegmentation,%20OCR%20Image%20Creation%20and%20Feature%20Extraction%20Documentation%20Feedback:%20HistEqualizer Methods">Send comments on this topic.</a>
</p>
<p>
<a>(c) 2004 Rene Schulte and Torsten Baer</a>
</p>
<p>
</p>
</div>
</div>
</body>
</html> | teichgraf/MuLaPeGASim | web/docs/OCR/OCRPreProcessing.HistEqualizerMethods.html | HTML | mit | 4,102 |
---
layout: default
title: Page Does Not Exist.
permalink: /404.html
---
<p><a class="post__back" href="/"><-- home</a></p>
<br>
<p>Sorry this page does not exist.</p>
| krtkush/krtkush.github.io | 404.html | HTML | mit | 171 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- 選舉資料查詢 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>中選會選舉資料庫網站</title>
<link rel="stylesheet" type="text/css" href="http://db.cec.gov.tw/votehist.css">
<script type="text/javascript">
function AddToFaves_hp() {
var is_4up = parseInt(navigator.appVersion);
var is_mac = navigator.userAgent.toLowerCase().indexOf("mac")!=-1;
var is_ie = navigator.userAgent.toLowerCase().indexOf("msie")!=-1;
var thePage = location.href;
if (thePage.lastIndexOf('#')!=-1)
thePage = thePage.substring(0,thePage.lastIndexOf('#'));
if (is_ie && is_4up && !is_mac)
window.external.AddFavorite(thePage,document.title);
else if (is_ie || document.images)
booker_hp = window.open(thePage,'booker_','menubar,width=325,height=100,left=140,top=60');
//booker_hp.focus();
}
</script>
</head>
<body class="frame">
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- 標題:選舉資料庫網站 -->
<div style="width: 100%; height: 56px; margin: 0px 0px 0px 0px; border-style: solid; border-width: 0px 0px 1px 0px; border-color: black;">
<div style="float: left;">
<img src="http://db.cec.gov.tw/images/main_title.gif" />
</div>
<div style="width: 100%; height: 48px;">
<div style="text-align: center;">
<img src="http://db.cec.gov.tw/images/small_ghost.gif" /> <span
style="height: 30px; font-size: 20px;"> <a href="http://www.cec.gov.tw"
style="text-decoration: none;">回中選會網站</a>
</span>
</div>
</div>
<div style="width: 100%; height: 8px; background-color: #fde501;">
</div>
</div>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- 頁籤 -->
<div
style="width: 100%; height: 29px; background-image: url('http://db.cec.gov.tw/images/tab_background.gif'); background-repeat: repeat-x;">
<div style="text-align: center;">
<a href="histMain.jsp"><img border="0" src="http://db.cec.gov.tw/images/tab_01.gif" /></a>
<a href="histCand.jsp"><img border="0" src="http://db.cec.gov.tw/images/tab_02.gif" /></a>
<!-- <a href=""><img border="0" src="images/tab_03.gif" /></a> -->
<!-- <a href=""><img border="0" src="images/tab_04.gif" /></a> -->
<a href="histQuery.jsp?voteCode=20120101T1A2&qryType=ctks&prvCode=06&cityCode=008&areaCode=02&deptCode=012&liCode=0251#"><img border="0" src="http://db.cec.gov.tw/images/tab_05.gif" onClick="AddToFaves_hp()" /></a>
<a href="mailto:info@cec.gov.tw;ytlin@cec.gov.tw"><img border="0" src="http://db.cec.gov.tw/images/tab_06.gif" /></a>
</div>
</div>
<div
style="width: 100%; height: 22px; background-image: url('http://db.cec.gov.tw/images/tab_separator.gif'); background-repeat: repeat-x;">
</div>
<div class="query">
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- 子頁面:查詢候選人得票數 -->
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- 標題 -->
<div class="titlebox">
<div class="title">
<div class="head">第 08 屆 立法委員選舉(區域) 候選人得票數</div>
<div class="date">投票日期:中華民國101年01月14日</div>
<div class="separator"></div>
</div>
</div>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- 查詢:候選人得票數,縣市多選區,如區域立委 -->
<link rel="stylesheet" type="text/css" href="http://db.cec.gov.tw/qryCtks.css" />
<!-- 投開票所表頭 -->
<table class="ctks" width="950" height="22" border=1 cellpadding="0" cellspacing="0" >
<tr class="title">
<td nowrap align="center">地區</td>
<td nowrap align="center">姓名</td>
<td nowrap align="center">號次</td>
<td nowrap align="center">得票數</td>
<td nowrap align="center">得票率</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap rowspan=2 align=center>嘉義縣第02選區新港鄉共和村第0322投開票所</td>
<td nowrap align="center">陳明文</td>
<td nowrap align="center">1</td>
<td nowrap align="right">395</td>
<td nowrap align="right"> 66.49%</td>
</tr>
<!-- 投開票所內容 -->
<tr class="data">
<td nowrap align="center">陳以真</td>
<td nowrap align="center">2</td>
<td nowrap align="right">199</td>
<td nowrap align="right"> 33.50%</td>
</tr>
</table>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<div style="width: 100%; height: 20px; margin: 30px 0px 0px 0px; text-align: center; ">
<span>
<img src="http://db.cec.gov.tw/images/leave_arrow_left.gif" />
</span>
<span style="margin: 0px 10px 0px 10px; ">
<a style="text-decoration: none; font-size: 15px; " href="histPrint">下載</a>
</span>
<span>
<img src="http://db.cec.gov.tw/images/leave_arrow_right.gif" />
</span>
<span style="margin-right: 100px;"> </span>
<span>
<img src="http://db.cec.gov.tw/images/leave_arrow_left.gif" />
</span>
<span style="margin: 0px 10px 0px 10px; ">
<a style="text-decoration: none; font-size: 15px; " href="histMain.jsp">離開</a>
</span>
<span>
<img src="http://db.cec.gov.tw/images/leave_arrow_right.gif" />
</span>
</div>
</div>
</body>
</html> | g0v/projectV | mirror/prvCode_07/cityCode_008-areaCode_02-deptCode_012/voteCode_20120101T1A2-qryType_ctks-prvCode_06-cityCode_008-areaCode_02-deptCode_012-liCode_0251.html | HTML | mit | 5,549 |
google-site-verification: googlee422c97a711e42aa.html | azvoleff/azvoleff.github.io | googlee422c97a711e42aa.html | HTML | mit | 53 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta charset="utf-8" />
<title>Sticky Scroll Demo</title>
<style type="text/css">
body {
margin: 0;
padding: 0;
}
#footer, #header, #contentWrapper, #sidebar, #content1, #content2 {
border: 1px solid black;
text-align: center;
padding: 0.5em;
margin: 0.2em;
}
#wrapper {
height: auto !important;
margin: 0 auto -70em;
min-height: 100%;
}
#header {
margin: 0 auto;
width: 70em;
height: 60em;
}
#contentWrapper {
margin: 0 auto;
width: 70em;
}
#sidebar {
float: right;
width: 10em;
height: 5em;
}
#content1, #content2 {
width: 55em;
}
#footer, .push {
margin: 0 auto;
height: 70em;
width: 70em;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="header">
<h1> Sticky Scroll Demo </h1>
<p>Scroll down to see the side bar demo</p>
</div>
<div id="contentWrapper">
<div id="sidebar">
Sidebar Sticky Scroll
</div>
<div id="content1">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ut metus in elit suscipit dictum at quis diam. Aliquam dignissim aliquam est, ut faucibus enim laoreet aliquet. Pellentesque accumsan metus sed libero imperdiet, in cursus risus feugiat. Nunc sodales at est non dapibus. Ut auctor elit a hendrerit gravida. Suspendisse potenti. Nam eu massa augue. Suspendisse vitae blandit nibh, in molestie eros.
</p>
<p>
Donec nec feugiat ipsum. Duis suscipit a est eget consequat. Sed malesuada porta fermentum. Ut rutrum elit tincidunt pellentesque placerat. Cras eu tincidunt ligula, viverra congue odio. Duis sollicitudin auctor odio, nec laoreet mauris pellentesque vitae. Phasellus pretium tempus dolor. Sed tincidunt ac dolor vel vestibulum. Fusce malesuada faucibus massa nec malesuada. Duis malesuada mollis lectus quis consectetur. Vivamus placerat rutrum est, at malesuada purus fermentum ut. Etiam auctor pharetra malesuada. Nullam nulla lacus, molestie et volutpat eu, auctor id sem.
</p>
<p>
Fusce euismod non turpis quis fringilla. Curabitur luctus tellus ante, vel eleifend augue ultricies ut. Duis luctus nisl tortor, non adipiscing elit fermentum eget. Nulla ultrices porta fermentum. Proin sit amet suscipit erat. Duis sed lectus sed turpis porttitor tristique. Donec semper dolor quis metus semper pulvinar sit amet at magna.
</p>
<p>
Sed eu sem nulla. Ut ac ligula tincidunt magna aliquam egestas dapibus id arcu. Vivamus ut nunc nec nunc feugiat fermentum porta a ante. Sed et sapien eu lectus facilisis scelerisque. Nulla at turpis ante. Donec posuere ac mauris sollicitudin eleifend. In fermentum turpis quis consequat gravida. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam eleifend turpis quis lacus malesuada, id congue sem dapibus. Fusce feugiat sed purus a venenatis. Donec eget magna mi. Quisque sit amet velit at felis interdum dictum ac sit amet magna.
</p>
<p>
Morbi blandit malesuada ante ut viverra. Suspendisse suscipit lorem eu fringilla ultrices. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Etiam tempor, erat vitae consectetur molestie, tortor felis semper magna, interdum aliquam lacus lacus a nisi. Fusce pulvinar ligula quis metus mollis, et facilisis ante facilisis. Nullam porttitor, leo non venenatis egestas, dolor justo ultrices ligula, sit amet condimentum purus sapien in ipsum. Aenean id tellus nunc. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</p>
<p>
Pellentesque id arcu venenatis, cursus justo eu, imperdiet enim. Integer ut bibendum nulla. Phasellus nisl nunc, condimentum quis auctor in, adipiscing quis mauris. Nam tellus metus, fermentum vitae volutpat congue, feugiat ac diam. Phasellus malesuada elementum euismod. Nulla vitae tellus diam. Morbi rhoncus neque suscipit, tincidunt diam eu, sollicitudin nisl. Aliquam magna erat, ullamcorper sed risus id, ultricies auctor diam. Nam gravida vitae nisl sed gravida. Nam vestibulum semper justo, blandit euismod mi viverra sit amet. Praesent iaculis, dui a iaculis ultrices, risus ante sagittis sem, ac euismod ligula nunc sit amet justo.
</p>
<p>
Pellentesque ut risus ac nulla semper varius sit amet scelerisque mi. Cras iaculis arcu condimentum tincidunt pulvinar. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Phasellus libero dui, iaculis sed erat ac, pellentesque molestie nisi. Etiam aliquam diam nec ante accumsan aliquam. Sed vel scelerisque mi, id tristique lacus. Nunc sodales euismod ligula et venenatis. Nullam quis purus sollicitudin, cursus urna ac, sodales arcu. Ut commodo convallis quam nec vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</p>
<p>
Sed faucibus, ligula vitae fermentum suscipit, dolor libero posuere nibh, sed tincidunt est nunc et lacus. Pellentesque et magna vel magna accumsan consequat. Vivamus hendrerit massa hendrerit congue porta. Interdum et malesuada fames ac ante ipsum primis in faucibus. Phasellus et porttitor nunc, vel suscipit dolor. Duis rhoncus, magna vehicula aliquam rutrum, tortor metus dignissim erat, condimentum porta elit elit id quam. Maecenas nunc lorem, dapibus a pretium eu, viverra ut arcu. Nunc egestas pulvinar nisi eget euismod. Morbi suscipit accumsan orci id consectetur. Nulla sit amet est non sapien interdum congue in id sem. Proin et tellus molestie, semper ante nec, congue lacus. Fusce orci tortor, lobortis sed molestie at, rutrum in magna. Curabitur libero quam, auctor in facilisis vitae, tempus non est. Sed molestie lectus neque, at dignissim enim aliquet a. Interdum et malesuada fames ac ante ipsum primis in faucibus.
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ut metus in elit suscipit dictum at quis diam. Aliquam dignissim aliquam est, ut faucibus enim laoreet aliquet. Pellentesque accumsan metus sed libero imperdiet, in cursus risus feugiat. Nunc sodales at est non dapibus. Ut auctor elit a hendrerit gravida. Suspendisse potenti. Nam eu massa augue. Suspendisse vitae blandit nibh, in molestie eros.
</p>
<p>
Donec nec feugiat ipsum. Duis suscipit a est eget consequat. Sed malesuada porta fermentum. Ut rutrum elit tincidunt pellentesque placerat. Cras eu tincidunt ligula, viverra congue odio. Duis sollicitudin auctor odio, nec laoreet mauris pellentesque vitae. Phasellus pretium tempus dolor. Sed tincidunt ac dolor vel vestibulum. Fusce malesuada faucibus massa nec malesuada. Duis malesuada mollis lectus quis consectetur. Vivamus placerat rutrum est, at malesuada purus fermentum ut. Etiam auctor pharetra malesuada. Nullam nulla lacus, molestie et volutpat eu, auctor id sem.
</p>
<p>
Fusce euismod non turpis quis fringilla. Curabitur luctus tellus ante, vel eleifend augue ultricies ut. Duis luctus nisl tortor, non adipiscing elit fermentum eget. Nulla ultrices porta fermentum. Proin sit amet suscipit erat. Duis sed lectus sed turpis porttitor tristique. Donec semper dolor quis metus semper pulvinar sit amet at magna.
</p>
<p>
Sed eu sem nulla. Ut ac ligula tincidunt magna aliquam egestas dapibus id arcu. Vivamus ut nunc nec nunc feugiat fermentum porta a ante. Sed et sapien eu lectus facilisis scelerisque. Nulla at turpis ante. Donec posuere ac mauris sollicitudin eleifend. In fermentum turpis quis consequat gravida. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam eleifend turpis quis lacus malesuada, id congue sem dapibus. Fusce feugiat sed purus a venenatis. Donec eget magna mi. Quisque sit amet velit at felis interdum dictum ac sit amet magna.
</p>
<p>
Morbi blandit malesuada ante ut viverra. Suspendisse suscipit lorem eu fringilla ultrices. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Etiam tempor, erat vitae consectetur molestie, tortor felis semper magna, interdum aliquam lacus lacus a nisi. Fusce pulvinar ligula quis metus mollis, et facilisis ante facilisis. Nullam porttitor, leo non venenatis egestas, dolor justo ultrices ligula, sit amet condimentum purus sapien in ipsum. Aenean id tellus nunc. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</p>
<p>
Pellentesque id arcu venenatis, cursus justo eu, imperdiet enim. Integer ut bibendum nulla. Phasellus nisl nunc, condimentum quis auctor in, adipiscing quis mauris. Nam tellus metus, fermentum vitae volutpat congue, feugiat ac diam. Phasellus malesuada elementum euismod. Nulla vitae tellus diam. Morbi rhoncus neque suscipit, tincidunt diam eu, sollicitudin nisl. Aliquam magna erat, ullamcorper sed risus id, ultricies auctor diam. Nam gravida vitae nisl sed gravida. Nam vestibulum semper justo, blandit euismod mi viverra sit amet. Praesent iaculis, dui a iaculis ultrices, risus ante sagittis sem, ac euismod ligula nunc sit amet justo.
</p>
<p>
Pellentesque ut risus ac nulla semper varius sit amet scelerisque mi. Cras iaculis arcu condimentum tincidunt pulvinar. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Phasellus libero dui, iaculis sed erat ac, pellentesque molestie nisi. Etiam aliquam diam nec ante accumsan aliquam. Sed vel scelerisque mi, id tristique lacus. Nunc sodales euismod ligula et venenatis. Nullam quis purus sollicitudin, cursus urna ac, sodales arcu. Ut commodo convallis quam nec vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</p>
<p>
Sed faucibus, ligula vitae fermentum suscipit, dolor libero posuere nibh, sed tincidunt est nunc et lacus. Pellentesque et magna vel magna accumsan consequat. Vivamus hendrerit massa hendrerit congue porta. Interdum et malesuada fames ac ante ipsum primis in faucibus. Phasellus et porttitor nunc, vel suscipit dolor. Duis rhoncus, magna vehicula aliquam rutrum, tortor metus dignissim erat, condimentum porta elit elit id quam. Maecenas nunc lorem, dapibus a pretium eu, viverra ut arcu. Nunc egestas pulvinar nisi eget euismod. Morbi suscipit accumsan orci id consectetur. Nulla sit amet est non sapien interdum congue in id sem. Proin et tellus molestie, semper ante nec, congue lacus. Fusce orci tortor, lobortis sed molestie at, rutrum in magna. Curabitur libero quam, auctor in facilisis vitae, tempus non est. Sed molestie lectus neque, at dignissim enim aliquet a. Interdum et malesuada fames ac ante ipsum primis in faucibus.
</p>
</div>
<div id="content2">
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ut metus in elit suscipit dictum at quis diam. Aliquam dignissim aliquam est, ut faucibus enim laoreet aliquet. Pellentesque accumsan metus sed libero imperdiet, in cursus risus feugiat. Nunc sodales at est non dapibus. Ut auctor elit a hendrerit gravida. Suspendisse potenti. Nam eu massa augue. Suspendisse vitae blandit nibh, in molestie eros.
</p>
<p>
Donec nec feugiat ipsum. Duis suscipit a est eget consequat. Sed malesuada porta fermentum. Ut rutrum elit tincidunt pellentesque placerat. Cras eu tincidunt ligula, viverra congue odio. Duis sollicitudin auctor odio, nec laoreet mauris pellentesque vitae. Phasellus pretium tempus dolor. Sed tincidunt ac dolor vel vestibulum. Fusce malesuada faucibus massa nec malesuada. Duis malesuada mollis lectus quis consectetur. Vivamus placerat rutrum est, at malesuada purus fermentum ut. Etiam auctor pharetra malesuada. Nullam nulla lacus, molestie et volutpat eu, auctor id sem.
</p>
<p>
Fusce euismod non turpis quis fringilla. Curabitur luctus tellus ante, vel eleifend augue ultricies ut. Duis luctus nisl tortor, non adipiscing elit fermentum eget. Nulla ultrices porta fermentum. Proin sit amet suscipit erat. Duis sed lectus sed turpis porttitor tristique. Donec semper dolor quis metus semper pulvinar sit amet at magna.
</p>
<p>
Sed eu sem nulla. Ut ac ligula tincidunt magna aliquam egestas dapibus id arcu. Vivamus ut nunc nec nunc feugiat fermentum porta a ante. Sed et sapien eu lectus facilisis scelerisque. Nulla at turpis ante. Donec posuere ac mauris sollicitudin eleifend. In fermentum turpis quis consequat gravida. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam eleifend turpis quis lacus malesuada, id congue sem dapibus. Fusce feugiat sed purus a venenatis. Donec eget magna mi. Quisque sit amet velit at felis interdum dictum ac sit amet magna.
</p>
<p>
Morbi blandit malesuada ante ut viverra. Suspendisse suscipit lorem eu fringilla ultrices. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Etiam tempor, erat vitae consectetur molestie, tortor felis semper magna, interdum aliquam lacus lacus a nisi. Fusce pulvinar ligula quis metus mollis, et facilisis ante facilisis. Nullam porttitor, leo non venenatis egestas, dolor justo ultrices ligula, sit amet condimentum purus sapien in ipsum. Aenean id tellus nunc. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</p>
<p>
Pellentesque id arcu venenatis, cursus justo eu, imperdiet enim. Integer ut bibendum nulla. Phasellus nisl nunc, condimentum quis auctor in, adipiscing quis mauris. Nam tellus metus, fermentum vitae volutpat congue, feugiat ac diam. Phasellus malesuada elementum euismod. Nulla vitae tellus diam. Morbi rhoncus neque suscipit, tincidunt diam eu, sollicitudin nisl. Aliquam magna erat, ullamcorper sed risus id, ultricies auctor diam. Nam gravida vitae nisl sed gravida. Nam vestibulum semper justo, blandit euismod mi viverra sit amet. Praesent iaculis, dui a iaculis ultrices, risus ante sagittis sem, ac euismod ligula nunc sit amet justo.
</p>
<p>
Pellentesque ut risus ac nulla semper varius sit amet scelerisque mi. Cras iaculis arcu condimentum tincidunt pulvinar. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Phasellus libero dui, iaculis sed erat ac, pellentesque molestie nisi. Etiam aliquam diam nec ante accumsan aliquam. Sed vel scelerisque mi, id tristique lacus. Nunc sodales euismod ligula et venenatis. Nullam quis purus sollicitudin, cursus urna ac, sodales arcu. Ut commodo convallis quam nec vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</p>
<p>
Sed faucibus, ligula vitae fermentum suscipit, dolor libero posuere nibh, sed tincidunt est nunc et lacus. Pellentesque et magna vel magna accumsan consequat. Vivamus hendrerit massa hendrerit congue porta. Interdum et malesuada fames ac ante ipsum primis in faucibus. Phasellus et porttitor nunc, vel suscipit dolor. Duis rhoncus, magna vehicula aliquam rutrum, tortor metus dignissim erat, condimentum porta elit elit id quam. Maecenas nunc lorem, dapibus a pretium eu, viverra ut arcu. Nunc egestas pulvinar nisi eget euismod. Morbi suscipit accumsan orci id consectetur. Nulla sit amet est non sapien interdum congue in id sem. Proin et tellus molestie, semper ante nec, congue lacus. Fusce orci tortor, lobortis sed molestie at, rutrum in magna. Curabitur libero quam, auctor in facilisis vitae, tempus non est. Sed molestie lectus neque, at dignissim enim aliquet a. Interdum et malesuada fames ac ante ipsum primis in faucibus.
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ut metus in elit suscipit dictum at quis diam. Aliquam dignissim aliquam est, ut faucibus enim laoreet aliquet. Pellentesque accumsan metus sed libero imperdiet, in cursus risus feugiat. Nunc sodales at est non dapibus. Ut auctor elit a hendrerit gravida. Suspendisse potenti. Nam eu massa augue. Suspendisse vitae blandit nibh, in molestie eros.
</p>
<p>
Donec nec feugiat ipsum. Duis suscipit a est eget consequat. Sed malesuada porta fermentum. Ut rutrum elit tincidunt pellentesque placerat. Cras eu tincidunt ligula, viverra congue odio. Duis sollicitudin auctor odio, nec laoreet mauris pellentesque vitae. Phasellus pretium tempus dolor. Sed tincidunt ac dolor vel vestibulum. Fusce malesuada faucibus massa nec malesuada. Duis malesuada mollis lectus quis consectetur. Vivamus placerat rutrum est, at malesuada purus fermentum ut. Etiam auctor pharetra malesuada. Nullam nulla lacus, molestie et volutpat eu, auctor id sem.
</p>
<p>
Fusce euismod non turpis quis fringilla. Curabitur luctus tellus ante, vel eleifend augue ultricies ut. Duis luctus nisl tortor, non adipiscing elit fermentum eget. Nulla ultrices porta fermentum. Proin sit amet suscipit erat. Duis sed lectus sed turpis porttitor tristique. Donec semper dolor quis metus semper pulvinar sit amet at magna.
</p>
<p>
Sed eu sem nulla. Ut ac ligula tincidunt magna aliquam egestas dapibus id arcu. Vivamus ut nunc nec nunc feugiat fermentum porta a ante. Sed et sapien eu lectus facilisis scelerisque. Nulla at turpis ante. Donec posuere ac mauris sollicitudin eleifend. In fermentum turpis quis consequat gravida. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam eleifend turpis quis lacus malesuada, id congue sem dapibus. Fusce feugiat sed purus a venenatis. Donec eget magna mi. Quisque sit amet velit at felis interdum dictum ac sit amet magna.
</p>
<p>
Morbi blandit malesuada ante ut viverra. Suspendisse suscipit lorem eu fringilla ultrices. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Etiam tempor, erat vitae consectetur molestie, tortor felis semper magna, interdum aliquam lacus lacus a nisi. Fusce pulvinar ligula quis metus mollis, et facilisis ante facilisis. Nullam porttitor, leo non venenatis egestas, dolor justo ultrices ligula, sit amet condimentum purus sapien in ipsum. Aenean id tellus nunc. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</p>
<p>
Pellentesque id arcu venenatis, cursus justo eu, imperdiet enim. Integer ut bibendum nulla. Phasellus nisl nunc, condimentum quis auctor in, adipiscing quis mauris. Nam tellus metus, fermentum vitae volutpat congue, feugiat ac diam. Phasellus malesuada elementum euismod. Nulla vitae tellus diam. Morbi rhoncus neque suscipit, tincidunt diam eu, sollicitudin nisl. Aliquam magna erat, ullamcorper sed risus id, ultricies auctor diam. Nam gravida vitae nisl sed gravida. Nam vestibulum semper justo, blandit euismod mi viverra sit amet. Praesent iaculis, dui a iaculis ultrices, risus ante sagittis sem, ac euismod ligula nunc sit amet justo.
</p>
<p>
Pellentesque ut risus ac nulla semper varius sit amet scelerisque mi. Cras iaculis arcu condimentum tincidunt pulvinar. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Phasellus libero dui, iaculis sed erat ac, pellentesque molestie nisi. Etiam aliquam diam nec ante accumsan aliquam. Sed vel scelerisque mi, id tristique lacus. Nunc sodales euismod ligula et venenatis. Nullam quis purus sollicitudin, cursus urna ac, sodales arcu. Ut commodo convallis quam nec vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</p>
<p>
Sed faucibus, ligula vitae fermentum suscipit, dolor libero posuere nibh, sed tincidunt est nunc et lacus. Pellentesque et magna vel magna accumsan consequat. Vivamus hendrerit massa hendrerit congue porta. Interdum et malesuada fames ac ante ipsum primis in faucibus. Phasellus et porttitor nunc, vel suscipit dolor. Duis rhoncus, magna vehicula aliquam rutrum, tortor metus dignissim erat, condimentum porta elit elit id quam. Maecenas nunc lorem, dapibus a pretium eu, viverra ut arcu. Nunc egestas pulvinar nisi eget euismod. Morbi suscipit accumsan orci id consectetur. Nulla sit amet est non sapien interdum congue in id sem. Proin et tellus molestie, semper ante nec, congue lacus. Fusce orci tortor, lobortis sed molestie at, rutrum in magna. Curabitur libero quam, auctor in facilisis vitae, tempus non est. Sed molestie lectus neque, at dignissim enim aliquet a. Interdum et malesuada fames ac ante ipsum primis in faucibus.
</p>
</div>
</div>
<div class="push"></div>
</div>
<div id="footer">
Footer
</div>
<script type="text/javascript">
var stickyScroll = function() {
//Private properties
var properties = {
singletonInstance: null
};
//Private Methods
var methods = {
$ : function(id) {
var elem = null;
if( this.oType( id ) == "string" ) {
elem = document.getElementById( id );
// IE needs this extra check to return the ID and not the name of an element it finds.
elem = (elem && elem.id && elem.id == id ? elem : null);
}
return elem;
},
oType: function (o) {
var objTypes = [], types = "Boolean Number String Function Array Date RegExp Object".split(" ");
for (var i = 0, l = types.length; i < l; i++)
objTypes[ "[object " + types[i] + "]" ] = types[i].toLowerCase();
return objTypes[ Object.prototype.toString.call(o) ] || "object";
},
Event: {
add: function (obj, evt, fn) {
if (!obj) return false;
if (obj.addEventListener) {
obj.addEventListener(evt, fn, false);
} else if (obj.attachEvent) {
obj.attachEvent('on' + evt, fn);
}
return this;
}
},
getPosition: function (id) {
var obj = this.$(id), x = y = a = b = null;
if(obj) {
var objSize = this.size(id);
if (obj.offsetParent) {
x = parseInt(obj.offsetLeft, 10);
y = parseInt(obj.offsetTop, 10);
while (obj = obj.offsetParent) {
x += parseInt(obj.offsetLeft, 10);
y += parseInt(obj.offsetTop, 10);
}
}
a = Math.round(x+objSize.width);
b = Math.round(y+objSize.height);
}
return { left: x, top: y, right: a, bottom: b };
},
size: function (id) {
var obj = this.$(id), w = h = null;
if(obj) {
if (obj.offsetHeight && obj.offsetWidth) {
w = parseInt(obj.offsetWidth, 10);
h = parseInt(obj.offsetHeight, 10);
}
}
return { width: w, height: h };
},
place: function (id, x, y) {
var obj = this.$(id)
if( obj && obj.style ) {
if ( this.oType(x) == "number" ) obj.style.left = parseInt( x, 10 )+"px";
if ( this.oType(y) == "number" ) obj.style.top = parseInt( y, 10 )+"px";
}
return this;
},
page : {
width:function(){return window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth; },
height:function(){return window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight; },
left: function () {return window.pageXOffset || document.documentElement.scrollLeft || document.body.scrollLeft || 0; },
top: function () {return window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0; } ,
scrollWidth: function() { return Math.max(Math.max(document.body.scrollWidth,document.documentElement.scrollWidth), this.width()); },
scrollHeight: function() { return Math.max(Math.max(document.body.scrollHeight,document.documentElement.scrollHeight), this.height()); }
},
setScrollLeftPosition : function ( scrollerID, rightOfID ) {
var rightOfPos = this.getPosition(rightOfID);
var obj = this.$(scrollerID);
if( obj && obj.style ) {
obj.style.position = "absolute";
this.place( scrollerID, parseInt(rightOfPos.right+10,10));
}
return this;
},
setScrollPosition: function ( scrollerID, rightOfID, limitID ) {
var limitPos = this.getPosition(limitID),
rightOfPos = this.getPosition(rightOfID),
limitPosBottom = ( this.oType(limitPos.top) == "number" ? limitPos.top : ( this.oType(rightOfPos.bottom) == "number" ? rightOfPos.bottom : this.page.scrollHeight() ) ),
scrollerElem = this.$(scrollerID),
scrollerElemHeight = this.size(scrollerID).height,
bottomTop = parseInt(limitPosBottom-scrollerElemHeight,10),
setPos = 0;
this.setScrollLeftPosition(scrollerID, rightOfID);
if ( this.page.top() > bottomTop ) {
setPos = (bottomTop-10);
} else if ( rightOfPos.top <= this.page.top() ) {
if ( this.page.scrollWidth() == this.page.width() ) {
scrollerElem.style.position = "fixed";
setPos = 10;
} else {
setPos = ( this.page.top()+10 );
}
} else {
if ( this.page.scrollWidth() == this.page.width() ) {
scrollerElem.style.position = "fixed";
setPos = (rightOfPos.top-this.page.top());
} else {
setPos = rightOfPos.top;
}
}
return this.place( scrollerID, null, setPos );
},
// Get the instance of the class.
getInstance: function () {
if (null === properties.singletonInstance) {
properties.singletonInstance = _createInstance();
}
return properties.singletonInstance;
}
};
var _createInstance = function () {
return {
setScrollPosition : function( scrollerID, rightOfID, limitID ) {
return methods.setScrollPosition( scrollerID, rightOfID, limitID );
},
observe : function( scrollerID, rightOfID, limitID ) {
methods.Event.add(window, "resize", function(){ stickyScroll.setScrollPosition( scrollerID, rightOfID, limitID ); });
methods.Event.add(window, "scroll", function(){ stickyScroll.setScrollPosition( scrollerID, rightOfID, limitID ); });
methods.Event.add(window, "load", function(){ stickyScroll.setScrollPosition( scrollerID, rightOfID, limitID ); });
}
};
};
return methods.getInstance();
}();
stickyScroll.observe("sidebar","content1","content2");
</script>
</body>
</html>
| gforti/stickyscroll | demo2.html | HTML | mit | 26,394 |
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>No Header but Article Image</title>
<link rel="stylesheet" type="text/css" href="http://54.148.113.64/jekyllDemo//assets/css/styles_feeling_responsive.css" />
<script src="http://54.148.113.64/jekyllDemo//assets/js/modernizr.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.5.18/webfont.js"></script>
<script>
WebFont.load({
google: {
families: [ 'Lato:400,700,400italic:latin', 'Volkhov::latin' ]
}
});
</script>
<noscript>
<link href='http://fonts.googleapis.com/css?family=Lato:400,700,400italic|Volkhov' rel='stylesheet' type='text/css' />
</noscript>
<meta name="google-site-verification" content="Vk0IOJ2jwG_qEoG7fuEXYqv0m2rLa8P778Fi_GrsgEQ" />
<meta name="msvalidate.01" content="0FB4C028ABCF07C908C54386ABD2D97F" />
<meta name="description" content="Feeling Responsive enables you to get the attention of visitors. If you don't want to use a big header, use an image for the article instead." />
<link rel="author" href="https://plus.google.com/u/0/118311555303973066167"/>
<link rel="icon" sizes="32x32" href="http://54.148.113.64/jekyllDemo//assets/img/favicon-32x32.png" />
<link rel="icon" sizes="192x192" href="http://54.148.113.64/jekyllDemo//assets/img/touch-icon-192x192.png" />
<link rel="apple-touch-icon-precomposed" sizes="180x180" href="http://54.148.113.64/jekyllDemo//assets/img/apple-touch-icon-180x180-precomposed.png" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="http://54.148.113.64/jekyllDemo//assets/img/apple-touch-icon-152x152-precomposed.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://54.148.113.64/jekyllDemo//assets/img/apple-touch-icon-144x144-precomposed.png" />
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="http://54.148.113.64/jekyllDemo//assets/img/apple-touch-icon-120x120-precomposed.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://54.148.113.64/jekyllDemo//assets/img/apple-touch-icon-114x114-precomposed.png" />
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="http://54.148.113.64/jekyllDemo//assets/img/apple-touch-icon-76x76-precomposed.png" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://54.148.113.64/jekyllDemo//assets/img/apple-touch-icon-72x72-precomposed.png" />
<link rel="apple-touch-icon-precomposed" href="http://54.148.113.64/jekyllDemo//assets/img/apple-touch-icon-precomposed.png" />
<meta name="msapplication-TileImage" content="http://54.148.113.64/jekyllDemo//assets/img/msapplication_tileimage.png" />
<meta name="msapplication-TileColor" content="#fabb00" />
<!-- Facebook Optimization -->
<meta property="og:locale" content="en_EN" />
<meta property="og:type" content="website" />
<meta property="og:title" content="No Header but Article Image" />
<meta property="og:description" content="»Inmerso Responsivo« es un tema responsivo desarrollado con Jekyll usando « foundation » con una buena tipografía y una excelente paleta de colores." />
<meta property="og:url" content="http://54.148.113.64/jekyllDemo///design/no-header-but-image/" />
<meta property="og:site_name" content="Inmerso Responsivo!" />
<!-- Search Engine Optimization -->
<link type="text/plain" rel="author" href="http://54.148.113.64/jekyllDemo//humans.txt" />
</head>
</head>
<body id="top-of-page" class="post">
<div id="navigation" class="sticky">
<nav class="top-bar" role="navigation" data-topbar>
<ul class="title-area">
<li class="name">
<h1 class="show-for-small-only"><a href="http://54.148.113.64/jekyllDemo/" class="icon-tree"> Inmerso Responsivo!</a></h1>
</li>
<!-- Remove the class "menu-icon" to get rid of menu icon. Take out "Menu" to just have icon alone -->
<li class="toggle-topbar menu-icon"><a href="#"><span>Navigation</span></a></li>
</ul>
<section class="top-bar-section">
<ul class="right">
<li class="divider"></li>
<li><a href="http://54.148.113.64/jekyllDemo//search/">Search</a></li>
<li class="divider"></li>
<li><a href="http://54.148.113.64/jekyllDemo//contact/">Contact</a></li>
</ul>
<ul class="left">
<li><a href="http://54.148.113.64/jekyllDemo//">Start</a></li>
<li class="divider"></li>
<li><a href="http://54.148.113.64/jekyllDemo//getting-started/">Getting Started</a></li>
<li class="divider"></li>
<li class="has-dropdown">
<a href="http://54.148.113.64/jekyllDemo//design/">Templates</a>
<ul class="dropdown">
<li><a href="http://54.148.113.64/jekyllDemo//design/grid/">Grid & Colors</a></li>
<li><a href="http://54.148.113.64/jekyllDemo//design/typography/">Typography</a></li>
<li><a href="http://54.148.113.64/jekyllDemo//design/page/">Page/Post</a></li>
<li><a href="http://54.148.113.64/jekyllDemo//design/post-left-sidebar/">Post-Left-Sidebar</a></li>
<li><a href="http://54.148.113.64/jekyllDemo//design/post-right-sidebar/">Post-Right-Sidebar</a></li>
<li><a href="http://54.148.113.64/jekyllDemo//design/page-fullwidth/">Page Full-Width</a></li>
<li><a href="http://54.148.113.64/jekyllDemo//blog/">Blog-Page</a></li>
<li><a href="http://54.148.113.64/jekyllDemo//design/video/">Video</a></li>
<li><a href="http://54.148.113.64/jekyllDemo//design/gallery/">Gallery</a></li>
<li><a href="http://54.148.113.64/jekyllDemo//design/portfolio/">Portfolio</a></li>
</ul>
</li>
<li class="divider"></li>
<li class="has-dropdown">
<a href="http://54.148.113.64/jekyllDemo//headers/">Header Styles</a>
<ul class="dropdown">
<li><a href="http://54.148.113.64/jekyllDemo//design/header-full-width-image/">Header with Full-Width-Image</a></li>
<li><a href="http://54.148.113.64/jekyllDemo//design/header-image-pattern/">Header with Image and Pattern</a></li>
<li><a href="http://54.148.113.64/jekyllDemo//design/header-image-color/">Header with image and color</a></li>
<li><a href="http://54.148.113.64/jekyllDemo//design/header-logo-only/">Header Only With Logo</a></li>
<li><a href="http://54.148.113.64/jekyllDemo//design/header-with-text/">Header With Text</a></li>
<li><a href="http://54.148.113.64/jekyllDemo//design/no-header/">No Header</a></li>
<li><a href="http://54.148.113.64/jekyllDemo//design/no-header-but-image/">No Header but Image</a></li>
</ul>
</li>
<li class="divider"></li>
<li class="has-dropdown">
<a href="http://54.148.113.64/jekyllDemo//documentation/">Documentation</a>
<ul class="dropdown">
<li><a href="http://54.148.113.64/jekyllDemo//changelog/">Changelog</a></li>
<li><a href="http://54.148.113.64/jekyllDemo//roadmap/">Roadmap</a></li>
</ul>
</li>
<li class="divider"></li>
<li class="has-dropdown">
<a href="http://54.148.113.64/jekyllDemo//blog/">Blog</a>
<ul class="dropdown">
<li><a href="http://54.148.113.64/jekyllDemo//blog/archive/">Blog Archive</a></li>
</ul>
</li>
<li class="divider"></li>
</ul>
</section>
</nav>
</div><!-- /#navigation -->
<div class="row t30">
<div class="medium-8 columns medium-offset-2 end">
<article itemscope itemtype="http://schema.org/Article">
<header>
<figure>
<img src="https://phlow.github.io/feeling-responsive/images/unsplash_eagle.jpg" width="970" alt="No Header but Article Image" itemprop="image">
<figcaption class="text-right">
<a href="https://unsplash.com/">This is a caption for the header image with link</a>
</figcaption>
</figure>
<span itemprop="name">
<p class="subheadline">Headers With Style</p>
<h1>No Header but Article Image</h1>
</span>
</header>
<p class="teaser" itemprop="description">
Feeling Responsive enables you to get the attention of visitors. If you don't want to use a big header, use an image for the article instead.
</p>
<span itemprop="articleSection">
<p>First turn of the header with <code>header: no</code>. Then add an image to with the following code. The caption is optional.
<!--more--></p>
<pre><code>header: no
image:
title: unsplash_eagle.jpg
caption: This is a caption for the header image with link
caption_url: https://unsplash.com/
</code></pre>
<h3 class="t60" id="all-header-styles">All Header-Styles</h3>
<ul class="side-nav">
<li><a href="http://54.148.113.64/jekyllDemo//design/no-header/">Headers With Style · <strong>No Header</strong></a></li>
<li><a href="http://54.148.113.64/jekyllDemo//design/no-header-but-image/">Headers With Style · <strong>No Header but Article Image</strong></a></li>
<li><a href="http://54.148.113.64/jekyllDemo//design/header-with-text/">Headers With Style · <strong>Header With Text</strong></a></li>
<li><a href="http://54.148.113.64/jekyllDemo//design/header-logo-only/">Headers With Style · <strong>Header With Logo Only</strong></a></li>
<li><a href="http://54.148.113.64/jekyllDemo//design/header-image-color/">Headers With Style · <strong>Header Image With Background Color</strong></a></li>
<li><a href="http://54.148.113.64/jekyllDemo//design/header-full-width-image/">Headers With Style · <strong>Header with a Full-Width-Image</strong></a></li>
<li><a href="http://54.148.113.64/jekyllDemo//design/header-image-pattern/">Headers With Style · <strong>Header Image With Pattern</strong></a></li>
</ul>
</span>
<div id="page-meta" class="t30">
<p>
<!-- Look the author details up from the site config. -->
<!-- Output author details if some exist. -->
<span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name" class="pr20 icon-edit"><a href="http://phlow.de/" target="_blank"> Phlow</a></span>
</span>
<time class="icon-calendar pr20" datetime="2015-03-12" itemprop="datePublished"> 2015-03-12</time>
<span class="icon-archive pr20"> DESIGN</span>
<br />
<span class="pr20"><span class="icon-price-tag pr10"> design</span> <span class="icon-price-tag pr10"> background color</span> <span class="icon-price-tag pr10"> header</span> </span>
</p>
<div id="post-nav" class="row">
<div class="small-5 columns"><a class="button small radius prev" href="http://54.148.113.64/jekyllDemo//design/header-with-text/">« Header With Text</a></div><!-- /.small-4.columns -->
<div class="small-2 columns text-center"><a class="radius button small" href="http://54.148.113.64/jekyllDemo//blog/archive/" title="Blog Archive">Archive</a></div><!-- /.small-4.columns -->
<div class="small-5 columns text-right"><a class="button small radius next" href="http://54.148.113.64/jekyllDemo//design/no-header/">No Header »</a></div><!-- /.small-4.columns -->
</div>
</div><!-- /.page-meta -->
</article>
</div><!-- /.medium-8.columns -->
</div><!-- /.row -->
<div id="up-to-top" class="row">
<div class="small-12 columns" style="text-align: right;">
<a class="iconfont" href="#top-of-page"></a>
</div><!-- /.small-12.columns -->
</div><!-- /.row -->
<footer id="footer-content" class="bg-grau">
<div id="footer">
<div class="row">
<div class="medium-6 large-5 columns">
<h5 class="shadow-black">About This Site</h5>
<p class="shadow-black">
»Inmerso Responsivo« es un tema responsivo desarrollado con Jekyll usando « foundation » con una buena tipografía y una excelente paleta de colores.
<a href="http://54.148.113.64/jekyllDemo//info/">More ›</a>
</p>
</div><!-- /.large-6.columns -->
<div class="small-6 medium-3 large-3 large-offset-1 columns">
<h5 class="shadow-black">Services</h5>
<ul class="no-bullet shadow-black">
<li >
<a href="" title=""></a>
</li>
<li >
<a href="/contact/" title="Contact">Contact</a>
</li>
<li >
<a href="/feed.xml" title="Subscribe to RSS Feed">RSS</a>
</li>
<li >
<a href="/atom.xml" title="Subscribe to Atom Feed">Atom</a>
</li>
<li >
<a href="/sitemap.xml" title="Sitemap for Google Webmaster Tools">sitemap.xml</a>
</li>
</ul>
</div><!-- /.large-4.columns -->
<div class="small-6 medium-3 large-3 columns">
<ul class="no-bullet shadow-black">
</ul>
</div><!-- /.large-3.columns -->
</div><!-- /.row -->
</div><!-- /#footer -->
<div id="subfooter">
<nav class="row">
<section id="subfooter-left" class="small-12 medium-6 columns credits">
<p>
Created with ♥
by <a href=""></a>
with <a href="http://jekyllrb.com/" target="_blank">Jekyll</a>
based on <a href="http://phlow.github.io/feeling-responsive/">Feeling Responsive</a>.
</p>
</section>
<section id="subfooter-right" class="small-12 medium-6 columns">
<ul class="inline-list social-icons">
<li><a href="https://twitter.com/xillingo" target="_blank" class="icon-twitter" title="Xillingo en Twitter!"></a></li>
<li><a href="https://www.facebook.com/xillingo" target="_blank" class="icon-facebook" title="Xillingo en facebook!"></a></li>
</ul>
</section>
</nav>
</div><!-- /#subfooter -->
</footer>
<script src="http://54.148.113.64/jekyllDemo//assets/js/javascript.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-60112281-1', 'auto');
ga('set', 'anonymizeIp', true);
ga('send', 'pageview');
</script>
</body>
</html>
| gldev/gldev.github.io | jekyllDemo/design/no-header-but-image/index.html | HTML | mit | 19,703 |
<html>
<script src="https://raw.github.com/01org/appframework/2.0/appframework.js"></script>
<script src="http://maps.google.com/maps/api/js?sensor=true&"></script>
<script src="af.maps.js"></script>
<script>
$(document).ready(function(){
$("#maps").gmaps({zoom: 5,center: new google.maps.LatLng(40.010787, -76.278076),mapTypeId: google.maps.MapTypeId.ROADMAP});
});
function refresher(){
$("#maps").css("width","201px");
$("#maps").gmaps("resize");
}
</script>
<body>
<a href="javascript:;" onclick="refresher()">Refresh map size</a>
<div style='width:320px;height:200px;' id="maps">
</div>
</body>
</html>
| imaffett/af-maps | index.html | HTML | mit | 637 |
tongjie
| yangtjie/yangtjie.github.io | _posts/tongjie.html | HTML | mit | 8 |
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style/style.css">
<link rel="stylesheet" href="https://cdn.rawgit.com/twbs/bootstrap/48938155eb24b4ccdde09426066869504c6dab3c/dist/css/bootstrap.min.css">
<script src="https://maps.googleapis.com/maps/api/js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="//cdn.muicss.com/mui-0.9.27/css/mui.min.css" rel="stylesheet" type="text/css" />
<script src="//cdn.muicss.com/mui-0.9.27/js/mui.min.js"></script>
</head>
<body>
<div class="container"></div>
</body>
<script src="/bundle.js"></script>
</html>
| fnumono/combo | index.html | HTML | mit | 858 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_171) on Fri Mar 29 13:49:59 CET 2019 -->
<title>PowerIterator (ch.obermuhlner.math.big 2.1.0 API)</title>
<meta name="date" content="2019-03-29">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="PowerIterator (ch.obermuhlner.math.big 2.1.0 API)";
}
}
catch(err) {
}
//-->
var methods = {"i0":6,"i1":6};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../ch/obermuhlner/math/big/internal/ExpCalculator.html" title="class in ch.obermuhlner.math.big.internal"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../ch/obermuhlner/math/big/internal/PowerNIterator.html" title="class in ch.obermuhlner.math.big.internal"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?ch/obermuhlner/math/big/internal/PowerIterator.html" target="_top">Frames</a></li>
<li><a href="PowerIterator.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">ch.obermuhlner.math.big.internal</div>
<h2 title="Interface PowerIterator" class="title">Interface PowerIterator</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Known Implementing Classes:</dt>
<dd><a href="../../../../../ch/obermuhlner/math/big/internal/PowerNIterator.html" title="class in ch.obermuhlner.math.big.internal">PowerNIterator</a>, <a href="../../../../../ch/obermuhlner/math/big/internal/PowerTwoNIterator.html" title="class in ch.obermuhlner.math.big.internal">PowerTwoNIterator</a>, <a href="../../../../../ch/obermuhlner/math/big/internal/PowerTwoNMinusOneIterator.html" title="class in ch.obermuhlner.math.big.internal">PowerTwoNMinusOneIterator</a>, <a href="../../../../../ch/obermuhlner/math/big/internal/PowerTwoNPlusOneIterator.html" title="class in ch.obermuhlner.math.big.internal">PowerTwoNPlusOneIterator</a></dd>
</dl>
<hr>
<br>
<pre>public interface <span class="typeNameLabel">PowerIterator</span></pre>
<div class="block">Iterator over the powers of a value x.
<p>This API allows to efficiently calculate the various powers of x in a taylor series by storing intermediate results.</p>
<p>For example x<sup>n</sup> can be calculated using one multiplication by storing the previously calculated x<sup>n-1</sup> and x.</p>
<p><a href="../../../../../ch/obermuhlner/math/big/internal/PowerIterator.html#getCurrentPower--"><code>getCurrentPower()</code></a> will be called first to retrieve the initial value.</p>
For later iterations <a href="../../../../../ch/obermuhlner/math/big/internal/PowerIterator.html#calculateNextPower--"><code>calculateNextPower()</code></a> will be called before <a href="../../../../../ch/obermuhlner/math/big/internal/PowerIterator.html#getCurrentPower--"><code>getCurrentPower()</code></a>.</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../ch/obermuhlner/math/big/internal/PowerIterator.html#calculateNextPower--">calculateNextPower</a></span>()</code>
<div class="block">Calculates the next power.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>java.math.BigDecimal</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../ch/obermuhlner/math/big/internal/PowerIterator.html#getCurrentPower--">getCurrentPower</a></span>()</code>
<div class="block">Returns the current power.</div>
</td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getCurrentPower--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getCurrentPower</h4>
<pre>java.math.BigDecimal getCurrentPower()</pre>
<div class="block">Returns the current power.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the current power.</dd>
</dl>
</li>
</ul>
<a name="calculateNextPower--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>calculateNextPower</h4>
<pre>void calculateNextPower()</pre>
<div class="block">Calculates the next power.</div>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../ch/obermuhlner/math/big/internal/ExpCalculator.html" title="class in ch.obermuhlner.math.big.internal"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../ch/obermuhlner/math/big/internal/PowerNIterator.html" title="class in ch.obermuhlner.math.big.internal"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?ch/obermuhlner/math/big/internal/PowerIterator.html" target="_top">Frames</a></li>
<li><a href="PowerIterator.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| eobermuhlner/big-math | docs/javadoc/v2.1.0/ch/obermuhlner/math/big/internal/PowerIterator.html | HTML | mit | 9,926 |
---
layout: post
title: Requests Ajax com Cross-Origin Resource Sharing (CORS) entre Sencha Touch e
ExtJS e Backend
date: 2014-01-07 07:00:44.000000000 -02:00
type: post
published: true
status: publish
categories:
- Ext JS 4
- Sencha Touch 2
tags:
- AJAX
- CORS
- ExtJS 4
- Sencha Touch 2
language: pt-br
category: pt-br
---
<p>Oi pessoal,</p>
<p>Muitas pessoas às vezes perguntam como uma aplicação que está em um dominio1.com fazer requests Ajax para o dominio2.com ou até mesmo subdomínios do mesmo domínio.</p>
<p>A resposta que o Ext JS e Sencha Touch tem para isso é usar o proxy JsonP, onde você faz um request cross-domain e consegue ler um JSON como resposta. Nesse caso um script javascript será adicionado automaticamente na página para que essa leitura seja possível. Mas o JsonP fazer apenas requests GET, ou seja, só é possível ler dados.</p>
<p>Com uma requisição GET também é possível enviar parâmetros na url, mas como você vai fazer login passando usuário e senha na própria URL (<strong><em>http://dominio1.com?user=loiane&senha=123456</em></strong>)? Não dá né gente!?</p>
<p>Será que é possível então fazer requests AJAX usando GET, POST ou até mesmo REST (GET, POST, PUT, DELETE) para domínios diferentes (cross-domain)?</p>
<p style="text-align: center;"><a href="https://forrst-live.s3.amazonaws.com/posts/snaps/81575/mega.png?1305377817"><img class="aligncenter wp-image-6426" alt="cors" src="{{ site.baseurl }}/assets/images/assets/cors.png" width="347" height="197" /></a></p>
<p>É possível sim e a resposta é o CORS (Cross-Origin Resource Sharing).</p>
<p>Nesse caso, quando a gente usa CORS precisamos mudar apenas o backend para que este aceite requisições cross-origin. No Ext JS ou Sencha Touch não precisamos fazer nada, vamos usar um proxy Ajax ou Rest (o que preferir) normalmente.</p>
<p>Para adicionar o CORS no backend é muito simples. Nessa página tem todos os detalhes: <strong><a href="http://enable-cors.org/" target="_blank" rel="noopener">http://enable-cors.org/</a></strong></p>
<p>No PHP por exemplo, basta adicionar o seguinte código no início do código de cada arquivo PHP que irá aceitar requisições cross-origin:</p>
<pre class="lang:php decode:true"><?php
header('Access-Control-Allow-Origin: *');
?></pre>
<p>Se você usa Java ou Python, pode olhar os seguintes links:</p>
<ul>
<li>Java: <a href="http://software.dzhuvinov.com/cors-filter.html" target="_blank" rel="noopener">http://software.dzhuvinov.com/cors-filter.html</a> (esse filtro é ótimo, uso bastante!)</li>
<li>Python: <a href="https://github.com/monsur/cors-python" target="_blank" rel="noopener">https://github.com/monsur/cors-python</a></li>
<li>Mais infos: <a href="http://enable-cors.org/resources.html" target="_blank" rel="noopener">http://enable-cors.org/resources.html</a></li>
</ul>
<p>É importante saber também que nem todos os browsers suportam <em><strong>CORS</strong></em>: <a href="http://enable-cors.org/client.html" target="_blank" rel="noopener">http://enable-cors.org/client.html</a></p>
<p>Ok, pode nos mostrar um exemplo Loiane pra ficar mais claro?<br />
Claro que sim! :)</p>
<p>Vou usar o <a title="Criando uma Aplicação CRUD com ExtJS 4 MVC: Parte 1" href="http://www.loiane.com/2012/09/criando-uma-aplicacao-crud-com-extjs-4-mvc-parte-1/" target="_blank" rel="noopener">esse exemplo como base</a>, que é um CRUD que já usei algumas vezes aqui no blog.</p>
<p>Se você executar locamente vai rodar tranquilo.</p>
<p>Agora, vou retirar a parte PHP e vou fazer deploy em outro servidor/computador e vou executar o Ext JS de um computador. Para melhor exemplificar, vou executar o código Ext JS no código do meu laptop e o PHP vai ficar deployado no meu desktop:</p>
<p>Meu desktop - computador 01:</p>
<p><a href="http://www.loiane.com/wp-content/uploads/2013/09/encha-cors-loiane01.png"><img class="aligncenter size-full wp-image-6987" alt="encha-cors-loiane01" src="{{ site.baseurl }}/assets/images/assets/encha-cors-loiane01.png" width="437" height="279" /></a></p>
<p>Meu notebook - computador 02:</p>
<p style="text-align: center;"><a href="http://www.loiane.com/wp-content/uploads/2013/09/encha-cors-loiane02.png"><img class="aligncenter wp-image-6988" alt="encha-cors-loiane02" src="{{ site.baseurl }}/assets/images/assets/encha-cors-loiane02.png" width="463" height="310" /></a></p>
<p>Como os códigos cliente e servidor estão separados, na Store do ExtJS preciso atualizar a url, já que o acesso ao php não é mais local. No meu caso ficou assim:</p>
<pre class="lang:js decode:true">api: {
create: 'http://192.168.0.14/blog/sencha-cors-comp01/extjs4-crud-mvc/php/criaContato.php',
read: 'http://192.168.0.14/blog/sencha-cors-comp01/extjs4-crud-mvc/php/listaContatos.php',
update: 'http://192.168.0.14/blog/sencha-cors-comp01/extjs4-crud-mvc/php/atualizaContato.php',
destroy: 'http://192.168.0.14/blog/sencha-cors-comp01/extjs4-crud-mvc/php/deletaContato.php'
}</pre>
<p>Se tentar executar agora, não vai funcionar e o Ext JS vai lançar uma exception dizendo que não consegue fazer esse request e/ou o servidor não consegue processar:</p>
<p style="text-align: center;"><a href="http://www.loiane.com/wp-content/uploads/2013/09/encha-cors-loiane03.png" target="_blank" rel="noopener"><img class="aligncenter wp-image-6989" alt="encha-cors-loiane03" src="{{ site.baseurl }}/assets/images/assets/encha-cors-loiane03-1024x821.png" width="553" height="444" /></a></p>
<blockquote><p>Note que o código onde está o código ExtJS é localhost (127.0.0.1) e estou tentando fazer request para 192.168.0.14, ou seja, domínios diferentes.</p></blockquote>
<p>Agora vamos voltar no código PHP e adicionar o <em><strong>Access-Control-Allow-Origin: * - </strong>na verdade, no site do CORS fala que basta adicionar o header, mas isso não procede. Para que o seu código trate o CORS de maneira correta no PHP, é necessário um pouco mais que isso! Criei um arquivo novo chamado enableCORS.php com o seguinte conteúdo:</em></p>
<pre class="lang:php decode:true"><?php
function enableCORS() {
// Allow from any origin
if (isset($_SERVER['HTTP_ORIGIN'])) {
header("Access-Control-Allow-Origin: {$_SERVER['HTTP_ORIGIN']}");
header('Access-Control-Allow-Credentials: true');
header('Access-Control-Max-Age: 86400'); // cache for 1 day
}
// Access-Control headers are received during OPTIONS requests
if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_METHOD']))
header("Access-Control-Allow-Methods: GET, POST, OPTIONS");
if (isset($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']))
header("Access-Control-Allow-Headers: {$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']}");
exit(0);
}
return true;
}
?></pre>
<p>E no código para listar os contatos, por exemplo, o início do arquivo ficaria assim:</p>
<pre class="lang:php mark:3-4 decode:true"><?php
include("enableCORS.php");
enableCORS();
//chama o arquivo de conexão com o bd
include("connect.php");
$start = $_REQUEST['start'];
$limit = $_REQUEST['limit'];
$queryString = "SELECT * FROM contact LIMIT $start, $limit";
...</pre>
<p>E vamos tentar novamente:</p>
<p style="text-align: center;"><a href="http://www.loiane.com/wp-content/uploads/2013/09/encha-cors-loiane04.png" target="_blank" rel="noopener"><img class="aligncenter wp-image-6990" alt="encha-cors-loiane04" src="{{ site.baseurl }}/assets/images/assets/encha-cors-loiane04-1024x821.png" width="553" height="444" /></a></p>
<p>Agora funciona! E basta fazer o mesmo para todos os arquivos PHP para que o CRUD funcione como esperado.</p>
<p>Se a gente olhar os detalhes do request, vamos ver as informações do response e ver que o request foi feito usando CORS:</p>
<p style="text-align: center;"><a href="http://www.loiane.com/wp-content/uploads/2013/09/encha-cors-loiane05.png"><img class="aligncenter wp-image-6991" alt="encha-cors-loiane05" src="{{ site.baseurl }}/assets/images/assets/encha-cors-loiane05-1024x781.png" width="553" height="422" /></a></p>
<p>O mesmo se aplica a alguma app <strong>Sencha Touch</strong> - ou até mesmo requisição <strong>Ajax com JQuery</strong>.</p>
<p>Caso queria conferir o código completo usado nesse post, segue o exemplo de CRUD com CORD habilitado: <a href="https://github.com/loiane/sencha-touch-extjs-CORS" target="_blank" rel="noopener">https://github.com/loiane/sencha-touch-extjs-CORS</a></p>
<p>Até a próxima! :)</p>
| loiane/loiane.github.io | _posts/2014-01-07-requests-ajax-com-cross-origin-resource-sharing-cors-entre-sencha-touch-e-extjs-e-backend.html | HTML | mit | 8,611 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_05) on Mon Jul 09 21:14:46 EDT 2012 -->
<title>tutorials.tools Class Hierarchy (Java Machine Learning Library 0.1.7)</title>
<meta name="date" content="2012-07-09">
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="tutorials.tools Class Hierarchy (Java Machine Learning Library 0.1.7)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-all.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../tutorials/filter/package-tree.html">Prev</a></li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../index.html?tutorials/tools/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 class="title">Hierarchy For Package tutorials.tools</h1>
<span class="strong">Package Hierarchies:</span>
<ul class="horizontal">
<li><a href="../../overview-tree.html">All Packages</a></li>
</ul>
</div>
<div class="contentContainer">
<h2 title="Class Hierarchy">Class Hierarchy</h2>
<ul>
<li type="circle">java.lang.Object
<ul>
<li type="circle">tutorials.tools.<a href="../../tutorials/tools/TutorialARFFLoader.html" title="class in tutorials.tools"><span class="strong">TutorialARFFLoader</span></a></li>
<li type="circle">tutorials.tools.<a href="../../tutorials/tools/TutorialDataLoader.html" title="class in tutorials.tools"><span class="strong">TutorialDataLoader</span></a></li>
<li type="circle">tutorials.tools.<a href="../../tutorials/tools/TutorialSampling.html" title="class in tutorials.tools"><span class="strong">TutorialSampling</span></a></li>
<li type="circle">tutorials.tools.<a href="../../tutorials/tools/TutorialStoreData.html" title="class in tutorials.tools"><span class="strong">TutorialStoreData</span></a></li>
<li type="circle">tutorials.tools.<a href="../../tutorials/tools/TutorialWekaClassifier.html" title="class in tutorials.tools"><span class="strong">TutorialWekaClassifier</span></a></li>
<li type="circle">tutorials.tools.<a href="../../tutorials/tools/TutorialWekaClusterer.html" title="class in tutorials.tools"><span class="strong">TutorialWekaClusterer</span></a></li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-all.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../tutorials/filter/package-tree.html">Prev</a></li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../index.html?tutorials/tools/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>
<i>Copyright © 2006-2012 - <a target=_blank href=http://www.abeel.be/>Thomas Abeel</a> - All Rights Reserved.</i>
<a href=http://sourceforge.net><img src=http://sflogo.sourceforge.net/sflogo.php?group_id=179204&type=1 width=88 height=31 border=0 alt=SourceForge.netLogo /></a>
</small></p>
</body>
</html>
| diyerland/saveAll | algorithm/java-ml/javaml-0.1.7/doc/tutorials/tools/package-tree.html | HTML | mit | 5,363 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>
忘记密码
</title>
<meta content="" name="keywords"/>
<meta content="" name="description"/>
<link href="favicon.ico" rel="shortcut icon"/>
<link href="css/bootstrap.min.css?v=3.3.6" rel="stylesheet"/>
<link href="css/font-awesome.min.css?v=4.4.0" rel="stylesheet"/>
<link href="css/animate.min.css" rel="stylesheet"/>
<link href="css/style.min.css?v=4.1.0" rel="stylesheet"/>
<link href="css/common.css" rel="stylesheet"/>
<link href="css/login.css" rel="stylesheet"/>
<!--[if lt IE 9]>
<meta http-equiv="refresh" content="0;ie.html" />
<![endif]-->
<script>
if(window.top !== window.self){ window.top.location = window.location;}
</script>
</head>
<body class="gray-bg animated fadeInDown">
<header>
<div class="login-header-main">
<img src="img/logo.png" class="logo" alt="">
<ul class="nav-menu">
<li><a href="">首页</a></li>
<li><a href="">渠道</a></li>
<li><a href="">文档</a></li>
<li><a href="">联系我们</a></li>
<li><a href="">关于我们</a></li>
</ul>
<ul class="nav-btn">
<li><a href="">登录</a></li>
<li><a href="">注册</a></li>
</ul>
</div>
</header>
<div class="container">
<div class="forget-pwd">
<h3>找回密码</h3>
<p>GrowPay将发送重置密码邮件到您的邮箱</p>
<div class="form-group">
<input class="form-control" type="email" id="email" placeholder="请输入邮箱" />
</div>
<button class="btn block full-width" value="请输入邮箱" type="submit" disabled="disabled">
确认发送邮件
</button>
</div>
</div>
<script src="js/jquery.min.js?v=2.1.4"></script>
<script src="js/bootstrap.min.js?v=3.3.6"></script>
<script>
// 忘记密码输入框
$(document).on('input', '#email', function(event) {
event.preventDefault();
var email=$('#email').val();
var emailReg = /^([a-z0-9\+_\-]+)(\.[a-z0-9\+_\-]+)*@([a-z0-9\-]+\.)+[a-z]{2,6}$/i;
if(emailReg.test(email)){
$('.btn').addClass('btn-primary');
$('.btn').removeAttr('disabled');
}else {
$('.btn').removeClass('btn-primary');
$('.btn').attr('disabled','disabled');
}
});
// 确认发送按钮点击
$('.btn').click(function(event) {
$(this).html('<i class="fa fa-check"></i>发送成功');
setTimeout(function(){
window.location.href='login.html';
},200);
});
</script>
</body>
</html>
| supermars01/htdocs | 忘记密码.html | HTML | mit | 3,294 |
<!DOCTYPE html>
<html lang="ko-kr">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="generator" content="Hugo 0.15" />
<title>#Ludens</title>
<meta property="og:site_name" content="#Ludens" />
<meta property="og:locale" content="ko-kr" />
<meta property="og:url" content="http://ludens.kr/tags/world-health-organization/" />
<meta property="fb:pages" content="1707155736233413"/>
<meta property="fb:admins" content="100001662925065"/>
<meta property="fb:app_id" content="326482430777833"/>
<meta property="fb:article_style" content="default" />
<meta name="twitter:site" content="@ludensk" />
<meta name="twitter:creator" content="@ludensk" />
<meta name="google-site-verification" content="RPY_1Z0am0hoduGzENYtuwF3BBoE0x5l3UxhUplLWPU" />
<meta name="naver-site-verification" content="f84c50bc744edf7a543994325914265117555d53" />
<meta name="p:domain_verify" content="381496f2247c95edc614061bacd92e08" />
<meta name="msvalidate.01" content="9137E6F3A8C1C4AE6DC4809DEDB06FD9" />
<meta property="og:title" content="World Health Organization" />
<meta property="og:type" content="website" />
<meta name="description" content="페이스북부터 심리학 그리고 워드프레스까지 온갖 잡지식을 가끔씩 끄적이고 있습니다." />
<meta name="twitter:card" content="summary" />
<link rel="author" href="humans.txt" />
<link rel="me" href="https://twitter.com/ludensk" />
<link rel="me" href="https://google.com/+ludensk" />
<link rel="me" href="https://github.com/ludens" />
<link rel="pingback" href="https://webmention.io/ludens.kr/xmlrpc" />
<link rel="webmention" href="https://webmention.io/ludens.kr/webmention" />
<link href="https://plus.google.com/+ludensk" rel="publisher">
<link rel="canonical" href="http://ludens.kr/tags/world-health-organization/" />
<link rel="alternate" type="application/rss+xml" title="#Ludens" href="http://ludens.kr/rss/" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="#Ludens">
<meta name="mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#111111">
<meta name="msapplication-navbutton-color" content="#111111">
<meta name="msapplication-TileColor" content="#111111">
<meta name="application-name" content="#Ludens">
<meta name="msapplication-tooltip" content="페이스북부터 심리학 그리고 워드프레스까지 온갖 잡지식을 가끔씩 끄적이고 있습니다.">
<meta name="msapplication-starturl" content="/">
<meta http-equiv="cleartype" content="on">
<meta name="msapplication-tap-highlight" content="no">
<link rel="apple-touch-icon" sizes="57x57" href="http://ludens.kr/favicon/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="http://ludens.kr/favicon/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="http://ludens.kr/favicon/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="http://ludens.kr/favicon/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="http://ludens.kr/favicon/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="http://ludens.kr/favicon/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="http://ludens.kr/favicon/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="http://ludens.kr/favicon/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="http://ludens.kr/favicon/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="http://ludens.kr/favicon/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="http://ludens.kr/favicon/favicon-194x194.png" sizes="194x194">
<link rel="icon" type="image/png" href="http://ludens.kr/favicon/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="http://ludens.kr/favicon/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="http://ludens.kr/favicon/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="http://ludens.kr/favicon/manifest.json">
<link rel="mask-icon" href="http://ludens.kr/favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
<link rel="stylesheet" href="http://ludens.kr/css/pure/pure-min.css" />
<link rel="stylesheet" href="http://ludens.kr/css/pure/grids-responsive-min.css" />
<link rel='stylesheet' href='http://ludens.kr/font/fonts.css'>
<link rel="stylesheet" href="http://ludens.kr/font/font-awesome.min.css">
<link rel="stylesheet" href="http://ludens.kr/css/style.css"/>
<script src="http://ludens.kr/js/jquery-2.2.1.min.js"></script>
</head>
<body>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '326482430777833',
xfbml : true,
version : 'v2.6'
});
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/ko_KR/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<header class="pure-g">
<div class="pure-u-1 pure-u-sm-1-3 center">
<h1><a href="http://ludens.kr">#LUDENS</a></h1>
</div>
<nav class="pure-u-1 pure-u-sm-2-3 center">
<a href="http://ludens.kr/" class="home" title="Home">HOME</a>
<a href="http://ludens.kr/categories/" class="category" title="Category">CATEGORY</a>
<a href="http://ludens.kr/post/" class="archive" title="Archive">ARCHIVE</a>
<a href="http://ludens.kr/tags/" class="tag" title="Tag">TAG</a>
<a href="http://ludens.kr/guestbook/" class="guestbook" title="Guestbook">GUESTBOOK</a>
</nav>
</header>
<main class="list mainWrap">
<h2 class="ellipsis"><small>Posts about </small>World Health Organization</h2>
<h3 id="2014">2014</h3>
<div class="pure-g">
<div class="pure-u-1 pure-u-sm-1-2">
<a href="http://ludens.kr/post/where-did-hiv-aids-come-from/" class="cover" style="background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/a/a1/AIDS_march_2_1990_aids_protest_Evansdale.jpg/800px-AIDS_march_2_1990_aids_protest_Evansdale.jpg');"></a>
<div class="category ubuntu300 grey">
<a class="grey" href="http://ludens.kr/categories/health" title="health">health</a>
at <time datetime="16 Aug 2014 87:00">2014/8/16</time>
</div>
<h3 class="ellipsis margintop0"><a href="http://ludens.kr/post/where-did-hiv-aids-come-from/" title="HIV(AIDS)는 어디서 왔을까?">HIV(AIDS)는 어디서 왔을까?</a></h3>
</div>
</div>
</main>
<footer>
<div class="footerWrap pure-g">
<div class="pure-u-1 pure-u-md-2-5 copyright center">
ⓒ 2016 Ludens | Published with <a class="black dotline" href="http://gohugo.io" target="_blank" rel="nofollow">Hugo</a>
</div>
<nav class="pure-u-1 pure-u-md-3-5 center">
<a href="https://twitter.com/ludensk" class="twitter" title="Twitter"><i class='fa fa-twitter-square'></i></a>
<a href="https://fb.com/ludensk" class="facebook" title="Facebook"><i class='fa fa-facebook-square'></i></a>
<a href="https://instagr.am/ludensk" class="instagram" title="Instagram"><i class='fa fa-instagram'></i></a>
<a href="https://pinterest.com/ludensk" class="pinterest" title="Pinterest"><i class='fa fa-pinterest-square'></i></a>
<a href="https://www.youtube.com/user/ludensk" class="youtube" title="YouTube"><i class='fa fa-youtube-square'></i></a>
<a href="https://ludensk.tumblr.com" class="tumblr" title="Tumblr"><i class='fa fa-tumblr-square'></i></a>
<a href="https://linkedin.com/in/ludensk" class="linkedin" title="LinkedIn"><i class='fa fa-linkedin-square'></i></a>
<a href="https://github.com/ludens" class="github" title="GitHub"><i class='fa fa-github-square'></i></a>
<a href="http://ludens.kr/rss/" class="rss" title="RSS"><i class='fa fa-rss-square'></i></a>
</nav>
</div>
</footer>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-29269230-1', 'auto');
ga('send', 'pageview');
</script>
<script type="text/javascript" src="//wcs.naver.net/wcslog.js"></script>
<script type="text/javascript">
if(!wcs_add) var wcs_add = {};
wcs_add["wa"] = "123cefa73667c5c";
wcs_do();
</script>
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,document,'script','//connect.facebook.net/en_US/fbevents.js');
fbq('init','1143503702345044');
fbq('track',"PageView");
</script>
<noscript><img height="1" width="1" style="display:none" src="//www.facebook.com/tr?id=1143503702345044&ev=PageView&noscript=1" /></noscript>
<script src="//twemoji.maxcdn.com/twemoji.min.js"></script>
<script>var emoji=document.getElementsByClassName("emoji");twemoji.parse(emoji[0],{size:16});</script>
<script src="http://ludens.kr/js/jquery.keep-ratio.min.js"></script>
<script type="text/javascript">
$(function() {
$('.kofic-poster').keepRatio({ ratio: 27/40, calculate: 'height' });
$('.articleWrap .cover, .post_latest .cover,.articleWrap header figure').keepRatio({ ratio: 12/5, calculate: 'height' });
if ($(window).width() >= 568) {
$('.futher .cover,.error .cover,.post_two .cover,.list .cover').keepRatio({ ratio: 4/3, calculate: 'height' });
$('.categories .cover').keepRatio({ ratio: 1/1, calculate: 'height' });
}
else {
$('.futher .cover,.error .cover,.post_two .cover,.list .cover,.categories .cover').keepRatio({ ratio: 12/5, calculate: 'height' });
}
});
</script>
</body>
</html> | ludens/ludens.kr | tags/world-health-organization/index.html | HTML | mit | 10,723 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta>
<title>61177-44-4.smi.png.html</title>
</head>
<body>ID61177-44-4<br/>
<img border="0" src="61177-44-4.smi.png" alt="61177-44-4.smi.png"></img><br/>
<br/>
<table border="1">
<tr>
<td></td><td>ID</td><td>Formula</td><td>FW</td><td>DSSTox_CID</td><td>DSSTox_RID</td><td>DSSTox_GSID</td><td>DSSTox_FileID_Sort</td><td>TS_ChemName</td><td>TS_ChemName_Synonyms</td><td>TS_CASRN</td><td>CASRN_ChemName_Relationship</td><td>TS_Description</td><td>ChemNote</td><td>STRUCTURE_Shown</td><td>STRUCTURE_Formula</td><td>STRUCTURE_MW</td><td>STRUCTURE_ChemType</td><td>STRUCTURE_DefinedOrganicForm</td><td>STRUCTURE_IUPAC</td><td>STRUCTURE_SMILES</td><td>STRUCTURE_SMILES_Desalt</td><td>Substance_modify_yyyymmdd</td></tr>
<tr>
<td>61177-44-4</td><td>11356</td><td>C8H8LiNO5</td><td>205.0938 (198.1534+6.9405)</td><td>26012</td><td>81288</td><td>46012</td><td>5969</td><td>Clavulanate lithium</td><td></td><td>61177-44-4</td><td>primary</td><td>single chemical compound</td><td>stereochem; parent [58001-44-8]</td><td>tested chemical</td><td>C8H8LiNO5</td><td>205.0938</td><td>defined organic</td><td>salt</td><td>lithium (2R,3Z,5R)-3-(2-hydroxyethylidene)-7-oxo-4-oxa-1-azabicyclo[3.2.0]heptane-2-carboxylate</td><td>[Li+].O=C([O-])[C@H]1C(=C\CO)\O[C@@H]2CC(=O)N12</td><td>OC(=O)[C@H]1C(=C\CO)\O[C@@H]2CC(=O)N12</td><td>20110824</td></tr>
</table>
<br/><br/><font size="-2">(Page generated on Wed Sep 17 04:01:52 2014 by <a href="http://www.embl.de/~gpau/hwriter/index.html">hwriter</a> 1.3)</font><br/>
</body></html> | andrewdefries/ToxCast | Figure3/Tox21_nnm/WorkHere/61177-44-4.smi.png.html | HTML | mit | 1,780 |
<div class="col s12">
<p>Are you sure you want to logout? <a href="#" (click)="onClick($event)">Yep</a>.
</div> | ndavison/drupalauthor | views/logout.html | HTML | mit | 114 |
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Namespace Juhta.Net
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Namespace Juhta.Net
">
<meta name="generator" content="docfx 2.28.2.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
</head>
<body data-spy="scroll" data-target="#affix">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="Juhta.Net">
<h1 id="Juhta_Net" data-uid="Juhta.Net" class="text-break">Namespace Juhta.Net
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>
<div class="markdown level0 remarks"></div>
<h3 id="classes">Classes
</h3>
<h4><a class="xref" href="Juhta.Net.Application.html">Application</a></h4>
<section><p>A class that represents an application built on the top of the framework. The class provides basic information
about the application and methods for initializing and closing the application.</p>
</section>
<h4><a class="xref" href="Juhta.Net.FrameworkConfig.html">FrameworkConfig</a></h4>
<section><p>A static class providing common methods and properties related to configuration files of the framework
libraries.</p>
</section>
<h4><a class="xref" href="Juhta.Net.FrameworkInfo.html">FrameworkInfo</a></h4>
<section><p>A static class that provides read-only information about the framework.</p>
</section>
<h4><a class="xref" href="Juhta.Net.Logger.html">Logger</a></h4>
<section><p>Defines a static wrapper class for enabling easy logging through the encapsulated <a class="xref" href="Juhta.Net.Diagnostics.ILogger.html">ILogger</a>
instance.</p>
</section>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<!-- <p><a class="back-to-top" href="#top">Back to top</a><p> -->
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Copyright © 2017-2018 Juha Lähteenmäki<br>Generated by <b>DocFX</b></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
| jlahteen/Juhta.NET | docs/1.0.0-rc/api/Juhta.Net.html | HTML | mit | 5,155 |
<table style="width: 100%;">
{% for publication in publications %}
<tr>
<td style="width: 100px; padding: 5px 10px 0px 0px; vertical-align: top;">
{% if publication.thumbnail %}
{% if publication.code %}
<a href="{{ publication.code }}"><img src="{{ MEDIA_URL }}{{ publication.thumbnail }}" style="width: 100px; height: 100px;" /></a>
{% else %}
<a href="{% url 'publications.views.id' publication.pk %}"><img src="{{ MEDIA_URL }}{{ publication.thumbnail }}" style="width: 100px; height: 100px;" /></a>
{% endif %}
{% endif %}
</td>
<td{% if not forloop.last %} style="padding-bottom: 20px; vertical-align: top;"{% endif %}>
{% include "publications/publication.html" %}
</td>
</tr>
{% endfor %}
</table>
| mick-t/django-publications | publications/templates/publications/publications_with_thumbnails.html | HTML | mit | 738 |
<html ng-app="WattsApp" ng-jq="" ng-strict-di="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title>Watts app</title>
<link rel="shortcut icon" href="style/favicon.ico" />
<style>[ng-cloak] {display: none !important;}</style>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootswatch/3.3.5/darkly/bootstrap.min.css" />
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="/style/watts-app.less" type="text/less">
<!-- loads library required by AngularJS beforehand -->
<script src="/socket.io/socket.io.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/mathjs/2.4.1/math.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<script src="/js/function-plot.js"></script>
</head>
<body>
<div ui-view=""></div>
<script src="//cdnjs.cloudflare.com/ajax/libs/less.js/2.5.3/less.min.js" data-env="development"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.5/js/bootstrap.min.js"></script>
<!-- AngularJS dependencies and application -->
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular-sanitize.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.2.15/angular-ui-router.js"></script>
<script src="/socket-io-ng-service.js"></script>
<script src="/js/watts-app.js"></script>
<script src="/js/routing.js"></script>
<script src="/js/filters.js"></script>
<script src="/js/controllers.js"></script>
<script src="/js/directives.js"></script>
</body>
</html>
| lucsorel/watts-app | webapp/www/index.html | HTML | mit | 1,950 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./ce002a1b33a5e204803c42babb02df3d5f39dee6d188590d5ba8558b9b8dea83.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html> | simonmysun/praxis | TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/311b62a0074b58498ebe9f6fa8942a62b5ca4f94ca02c3281c7f4919727cc220.html | HTML | mit | 550 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./b15f6461f7df14e4291114b67a98602d0844eba9399498a3532fd5e056ac4a65.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html> | simonmysun/praxis | TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/021bc9e75b9d947b9f8180bf5c6454420903a33d58412f720476140e2c9cb813.html | HTML | mit | 550 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./fc2e07e3b21892f5865489330589ed89c9d0705a2cf2baed0b371ce4dd08ca2c.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html> | simonmysun/praxis | TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/b58f2f8de5f2f280318b730e1c7785b9defb72d02ff578e4bf42e4b9efb1479c.html | HTML | mit | 550 |
<footer class="site-footer">
<div class="wrapper">
<div class="footer-col-wrapper">
<div class="footer-col footer-col-1">
<h2 class="footer-heading">{{ site.contact | escape }}</h2>
<ul class="contact-list">
<li>
{% if site.author %}
{{ site.author | escape }}
{% else %}
{{ site.title | escape }}
{% endif %}
</li>
{% if site.address %}
<li>{{ site.address }}</li>
{% endif %}
{% if site.email %}
<li><br />{{ site.email }}</li>
{% endif %}
</ul>
</div>
<div class="footer-col footer-col-2">
<h2 class="footer-heading">{{ site.mission }}</h2>
<img class="footer-bug" src="{{ site.footer_bug }}" alt="{{ site.mission | escape }}" />
</div>
<div class="footer-col footer-col-3">
<h2 class="footer-heading">{{ site.media | escape }}</h2>
<ul class="social-media-list">
{% if site.facebook_username %}
<li>
{% include icon-facebook.html username=site.facebook_username %}
</li>
{% endif %}
{% if site.twitter_username %}
<li>
{% include icon-twitter.html username=site.twitter_username %}
</li>
{% endif %}
{% if site.instagram_username %}
<li>
{% include icon-instagram.html username=site.instagram_username %}
</li>
{% endif %}
{% if site.linkedin_username %}
<li>
{% include icon-linkedin.html username=site.linkedin_username %}
</li>
{% endif %}
{% if site.github_username %}
<li>
{% include icon-github.html username=site.github_username %}
</li>
{% endif %}
{% if site.youtube_username %}
<li>
{% include icon-youtube.html username=site.youtube_username %}
</li>
{% endif %}
<!--li>
<a href="{{ "/feed.xml" | relative_url }}">RSS updates</a></p>
</li-->
</ul>
</div>
</div>
</div>
</footer>
<div class="copyright">{{ site.copyright | escape }}</div>
{% if jekyll.environment == 'production' and site.google_analytics %}
{% include google-analytics.html %}
{% endif %}
| wingedfivegames/wingedfivegames.github.io | _includes/footer.html | HTML | mit | 2,392 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_151) on Thu Feb 10 02:32:33 GMT 2022 -->
<title>Options</title>
<meta name="date" content="2022-02-10">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Options";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../com/printnode/api/package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../com/printnode/api/Download.html" title="class in com.printnode.api"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../com/printnode/api/Printer.html" title="class in com.printnode.api"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?com/printnode/api/Options.html" target="_top">Frames</a></li>
<li><a href="Options.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">com.printnode.api</div>
<h2 title="Class Options" class="title">Class Options</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>com.printnode.api.Options</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="typeNameLabel">Options</span>
extends java.lang.Object</pre>
<div class="block">Object to be serailized into JSON in createPrintJob.</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/printnode/api/Options.html#Options--">Options</a></span>()</code>
<div class="block">Default constructor.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/printnode/api/Options.html#setBin-java.lang.String-">setBin</a></span>(java.lang.String newBin)</code> </td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/printnode/api/Options.html#setCollate-boolean-">setCollate</a></span>(boolean newCollate)</code> </td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/printnode/api/Options.html#setCopies-int-">setCopies</a></span>(int newCopies)</code> </td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/printnode/api/Options.html#setDpi-java.lang.String-">setDpi</a></span>(java.lang.String newDpi)</code> </td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/printnode/api/Options.html#setDuplex-java.lang.String-">setDuplex</a></span>(java.lang.String newDuplex)</code> </td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/printnode/api/Options.html#setFitToPage-boolean-">setFitToPage</a></span>(boolean newFitToPage)</code> </td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/printnode/api/Options.html#setMedia-java.lang.String-">setMedia</a></span>(java.lang.String newMedia)</code> </td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/printnode/api/Options.html#setNup-int-">setNup</a></span>(int newNup)</code> </td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/printnode/api/Options.html#setPages-java.lang.String-">setPages</a></span>(java.lang.String newPages)</code> </td>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/printnode/api/Options.html#setPaper-java.lang.String-">setPaper</a></span>(java.lang.String newPaper)</code> </td>
</tr>
<tr id="i10" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/printnode/api/Options.html#setRotate-int-">setRotate</a></span>(int newRotate)</code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="Options--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>Options</h4>
<pre>public Options()</pre>
<div class="block">Default constructor.</div>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="setBin-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setBin</h4>
<pre>public final void setBin(java.lang.String newBin)</pre>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>newBin</code> - set the bin we want to use.</dd>
</dl>
</li>
</ul>
<a name="setCollate-boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setCollate</h4>
<pre>public final void setCollate(boolean newCollate)</pre>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>newCollate</code> - Set whether we want to collate.</dd>
</dl>
</li>
</ul>
<a name="setCopies-int-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setCopies</h4>
<pre>public final void setCopies(int newCopies)</pre>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>newCopies</code> - Set the amount of copies we want to print.</dd>
</dl>
</li>
</ul>
<a name="setDpi-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setDpi</h4>
<pre>public final void setDpi(java.lang.String newDpi)</pre>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>newDpi</code> - Set the DPI.</dd>
</dl>
</li>
</ul>
<a name="setDuplex-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setDuplex</h4>
<pre>public final void setDuplex(java.lang.String newDuplex)</pre>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>newDuplex</code> - Set the duplex.</dd>
</dl>
</li>
</ul>
<a name="setFitToPage-boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setFitToPage</h4>
<pre>public final void setFitToPage(boolean newFitToPage)</pre>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>newFitToPage</code> - set whether we want to fit the content to the page.</dd>
</dl>
</li>
</ul>
<a name="setMedia-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setMedia</h4>
<pre>public final void setMedia(java.lang.String newMedia)</pre>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>newMedia</code> - Set the media for the printer.</dd>
</dl>
</li>
</ul>
<a name="setNup-int-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setNup</h4>
<pre>public final void setNup(int newNup)</pre>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>newNup</code> - Set number of pages to print per page for a compact layout printing.</dd>
</dl>
</li>
</ul>
<a name="setPages-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setPages</h4>
<pre>public final void setPages(java.lang.String newPages)</pre>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>newPages</code> - set the pages to print.</dd>
</dl>
</li>
</ul>
<a name="setPaper-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setPaper</h4>
<pre>public final void setPaper(java.lang.String newPaper)</pre>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>newPaper</code> - set paper type.</dd>
</dl>
</li>
</ul>
<a name="setRotate-int-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>setRotate</h4>
<pre>public final void setRotate(int newRotate)</pre>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>newRotate</code> - set rotation. Can only be 90,180 or 270.</dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../com/printnode/api/package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../com/printnode/api/Download.html" title="class in com.printnode.api"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../com/printnode/api/Printer.html" title="class in com.printnode.api"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?com/printnode/api/Options.html" target="_top">Frames</a></li>
<li><a href="Options.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| PrintNode/PrintNode-Java | docs/com/printnode/api/Options.html | HTML | mit | 15,136 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `XKB_KEY_braille_dots_1357` constant in crate `wayland_kbd`.">
<meta name="keywords" content="rust, rustlang, rust-lang, XKB_KEY_braille_dots_1357">
<title>wayland_kbd::keysyms::XKB_KEY_braille_dots_1357 - Rust</title>
<link rel="stylesheet" type="text/css" href="../../main.css">
</head>
<body class="rustdoc">
<!--[if lte IE 8]>
<div class="warning">
This old browser is unsupported and will most likely display funky
things.
</div>
<![endif]-->
<section class="sidebar">
<p class='location'><a href='../index.html'>wayland_kbd</a>::<wbr><a href='index.html'>keysyms</a></p><script>window.sidebarCurrent = {name: 'XKB_KEY_braille_dots_1357', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script>
</section>
<nav class="sub">
<form class="search-form js-only">
<div class="search-container">
<input class="search-input" name="search"
autocomplete="off"
placeholder="Click or press 'S' to search, '?' for more options..."
type="search">
</div>
</form>
</nav>
<section id='main' class="content constant">
<h1 class='fqn'><span class='in-band'><a href='../index.html'>wayland_kbd</a>::<wbr><a href='index.html'>keysyms</a>::<wbr><a class='constant' href=''>XKB_KEY_braille_dots_1357</a></span><span class='out-of-band'><span id='render-detail'>
<a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">
[<span class='inner'>−</span>]
</a>
</span><a id='src-5564' class='srclink' href='../../src/wayland_kbd/ffi/keysyms.rs.html#2191' title='goto source code'>[src]</a></span></h1>
<pre class='rust const'>pub const XKB_KEY_braille_dots_1357: <a href='http://doc.rust-lang.org/nightly/std/primitive.u32.html'>u32</a><code> = </code><code>0x1002855</code></pre></section>
<section id='search' class="content hidden"></section>
<section class="footer"></section>
<div id="help" class="hidden">
<div class="shortcuts">
<h1>Keyboard shortcuts</h1>
<dl>
<dt>?</dt>
<dd>Show this help dialog</dd>
<dt>S</dt>
<dd>Focus the search field</dd>
<dt>⇤</dt>
<dd>Move up in search results</dd>
<dt>⇥</dt>
<dd>Move down in search results</dd>
<dt>⏎</dt>
<dd>Go to active search result</dd>
</dl>
</div>
<div class="infos">
<h1>Search tricks</h1>
<p>
Prefix searches with a type followed by a colon (e.g.
<code>fn:</code>) to restrict the search to a given type.
</p>
<p>
Accepted types are: <code>fn</code>, <code>mod</code>,
<code>struct</code>, <code>enum</code>,
<code>trait</code>, <code>typedef</code> (or
<code>tdef</code>).
</p>
<p>
Search functions by type signature (e.g.
<code>vec -> usize</code>)
</p>
</div>
</div>
<script>
window.rootPath = "../../";
window.currentCrate = "wayland_kbd";
window.playgroundUrl = "";
</script>
<script src="../../jquery.js"></script>
<script src="../../main.js"></script>
<script async src="../../search-index.js"></script>
</body>
</html> | mcanders/bevy | doc/wayland_kbd/keysyms/constant.XKB_KEY_braille_dots_1357.html | HTML | mit | 3,886 |
<!doctype html>
<html>
<head>
@@include('header.inc', {
"title" : "平台预约协议"
})
<style>
.explain-group{
margin:.56rem .6rem;
}
.explain-group h3{
font-size:.75rem;
color:#222;
padding:.64rem 0 0;
}
.explain-group p{
font-size:.75rem;
color:#666;
text-align:justify;
padding-top:.52rem;
line-height:1rem;
}
.explain-item-group ul li{
font-size: .65rem;
color: #666;
text-align: justify;
padding-top: .3rem;
text-indent: 1.3rem;
line-height: .8rem;
}
.blue{
color:#2aa7d6;
}
</style>
</head>
<body class="bg-f0">
<script src="http://resource.hisany.com/adapt/adapt.min.js" async="false"></script>
<div class="main-wrap">
<div class="content">
<div class="explain-group">
<!-- <h3>平台预约协议</h3> -->
<p>本条款所述“平台预约协议”,是指:“找设备”接受需求方(包括需求设备、需求机手、需求服务工程师的用户)委托,承诺按照具体要求访寻相应的提供者(包括设备、机手、服务工程师的提供者),“找设备”与需求方达成的服务协议;以及“找设备”把需求信息推送给寻访到的提供方,“找设备”与提供方达成的服务协议。</p>
<h3>一、需求方权利与义务</h3>
<p>1.1、您应当按照法律法规要求,按相应页面的提示准确提供并及时更新您的资料,以使之真实、及时,完整和准确。如有合理理由怀疑您提供的资料错误、不实、过时或不完整的,找设备有权向您发出询问及/或要求改正的通知,并有权直接做出删除相应资料的处理,直至中止、终止对您提供部分或全部找设备服务,找设备对此不承担任何责任,您将承担因此产生的任何直接或间接损失及不利后果。</p>
<p>1.2、您应当确保你发布的需求信息真实可靠,不会含有国家法律、法规、行政规章规定禁止的信息、侵犯他人知识产权或其他合法权益的信息、违背社会公共利益或公共道德的信息。如有违反导致任何法律后果的发生,您将以自己的名义独立承担相应的法律责任。</p>
<p>1.3、对于您提交的需求,找设备会酌情进行审核。若因您的联系方式有误或其他非找设备原因导致无法联系到您进行审核,需求将无法及时发布。找设备对此不承担任何责任,您将承担因此产生的任何直接或间接损失及不利后果。</p>
<p>1.4、对于提供方,您有自主审核的权利与义务。请小心谨慎并运用常识,自行签订合作合同以保障自身权益。找设备会向您提供提供方在平台的相关信息。找设备会尽量促使提供方的信息真实可靠。但您应当理解与认同,找设备作为服务平台,非司法机关和专业机构,不能对涉及的技术及信息的有效性、准确性、正确性、可靠性、质量、稳定、完整和及时性作出任何承诺和保证。如您发现信息不一致可以通知找设备,找设备将及时做出修改补充。</p>
<p>1.5、合作一旦建立,不可单方面取消或更改,除非对方有明显不符合规范的行为,或本协议认可的其他特殊因素。如有违反,找设备将对您进行处罚(包括但不限于降低用户等级、删除账户)。若因违反导致任何法律后果的发生,您将以自己的名义独立承担相应的法律责任。</p>
<p>1.6、合作结束后,您可以对合作进行评价。您应当确保评价言之有物,不得进行恶意评价。您随时可以联系找设备进行问题投诉或意见反馈。督促找设备进行改善优化,以为您提供更好的服务。但所提交内容不得违反中国现行法律法规及其他规范性文件的要求,不得含有非法、淫秽、威胁、诽谤、侵犯隐私、侵犯知识产权或以其他形式对第三方权利构成侵犯。找设备保留清除或编辑这些内容的权利(但非义务),但不对用户所张贴的内容进行经常性的审查。用户声明和保证对于因其所提供内容引起的对找设备的损害进行赔偿。</p>
<h3>二、提供方权利与义务</h3>
<p>2.1、您应当按照法律法规要求,按相应页面的提示准确提供并及时更新您的资料,以使之真实、及时,完整和准确。如有合理理由怀疑您提供的资料错误、不实、过时或不完整的,找设备有权向您发出询问及/或要求改正的通知,并有权直接做出删除相应资料的处理,直至中止、终止对您提供部分或全部找设备服务,找设备对此不承担任何责任,您将承担因此产生的任何直接或间接损失及不利后果。</p>
<p>2.2、对于您提供的设备或/和机手、服务,您应该确保准确性及可靠性。如有违反导致任何法律后果的发生,您将以自己的名义独立承担相应的法律责任。</p>
<p>2.3、对于需求方,您有自主审核的权利与义务。请小心谨慎并运用常识,自行签订合作合同以保障自身权益。找设备会向您提供需求方在平台的相关信息。找设备会尽量促使需求方的信息真实可靠。但您应当理解与认同,找设备作为服务平台,非司法机关和专业机构,不能对涉及的技术及信息的有效性、准确性、正确性、可靠性、质量、稳定、完整和及时性作出任何承诺和保证。如您发现信息不一致可以通知找设备,找设备将及时做出修改补充。</p>
<p>2.4、合作一旦建立,不可单方面取消或更改,除非对方有明显不符合规范的行为,或本协议认可的其他特殊因素。如有违反,找设备将对您进行处罚(包括但不限于降低用户等级、删除账户)。若因违反导致任何法律后果的发生,您将以自己的名义独立承担相应的法律责任。</p>
<p>2.5、合作结束后,您可以对合作进行评价。您应当确保评价言之有物,不得进行恶意评价。您随时可以联系找设备进行问题投诉或意见反馈。督促找设备进行改善优化,以为您提供更好的服务。但所提交内容不得违反中国现行法律法规及其他规范性文件的要求,不得含有非法、淫秽、威胁、诽谤、侵犯隐私、侵犯知识产权或以其他形式对第三方权利构成侵犯。找设备保留清除或编辑这些内容的权利(但非义务),但不对用户所张贴的内容进行经常性的审查。用户声明和保证对于因其所提供内容引起的对找设备的损害进行赔偿。</p>
<h3>三、争议解决方式</h3>
<p>3.1、若您与合作方产生争议或纠纷,您应当按照所签合同进行处理。如有需要找设备提供任何协助,找设备将依据法律法规予以援助。</p>
<p>3.2、本软件有权受理并调处您与合作方因交易服务产生的争议,同时有权单方面独立判断其他会员对您的投诉及索偿是否成立,若本软件判断索偿成立,则本软件有权使用您已被托管的资金或交纳的保证金进行相应偿付。本软件没有使用自用资金进行偿付的义务,但若进行了该等支付,您应及时赔偿本软件的全部损失,否则本软件有权通过前述方式抵减相应资金或权益,如仍无法弥补损失,则本软件保留继续追偿的权利。因本软件非司法机关,您完全理解并承认,本软件对证据的鉴别能力及对纠纷的处理能力有限,受理交易争议完全是基于您之委托,不保证争议处理结果符合您的期望,本软件有权决定是否参与争议的调处;凡因本协议及其规则发生的所有争议,争议双方可协商解决,若协商不成的,争议双方同意提交北京仲裁委员会按其仲裁规则进行仲裁。</p>
<h3>四、其他</h3>
<p>4.1、其他未尽事项,请查看《用户协议》。如本协议与《用户协议》有冲突之处,以《用户协议》为准。</p>
</div>
</div>
</div>
</body>
</html>
| jackchen0120/autoSany | app/immunityExplain.html | HTML | mit | 8,515 |
<template name="adminRooms">
<section class="page-container page-list">
<head class="fixed-title">
{{> burger}}
<h2>
<span class="room-title">{{_ "Rooms"}}</span>
</h2>
</head>
<div class="content">
{{#unless hasPermission 'view-room-administration'}}
<p>{{_ "You_are_not_authorized_to_view_this_page"}}</p>
{{else}}
<form class="search-form" role="form">
<div class="input-line search">
<input type="text" id="rooms-filter" placeholder="{{_ "Search"}}" dir="auto">
<i class="icon-search"></i>
{{#unless isReady}}<i class="icon-spin"></i>{{/unless}}
</div>
<label><input type="checkbox" name="room-type" value="c"> {{_ "Channels"}}</label>
<label><input type="checkbox" name="room-type" value="d"> {{_ "Direct_Messages"}}</label>
<label><input type="checkbox" name="room-type" value="p"> {{_ "Private_Groups"}}</label>
</form>
<div class="results">
{{{_ "Showing_results" roomCount}}}
</div>
<div class="list">
<table>
<thead>
<tr>
<th width="30%">{{_ "Name"}}</th>
<th width="20%">{{_ "Type"}}</th>
<th width="20%">{{_ "Users"}}</th>
<th width="10%">{{_ "Msgs"}}</th>
<th width="20%">{{_ "Default"}}</th>
</tr>
</thead>
<tbody>
{{#each rooms}}
<tr class="room-info row-link">
<td>{{name}}</td>
<td>{{type}}</td>
<td>{{usernames.length}}</td>
<td>{{msgs}}</td>
<td>{{default}}</td>
</tr>
{{/each}}
</tbody>
</table>
{{#if hasMore}}
<button class="button secondary load-more {{isLoading}} waves-effect waves-light ">{{_ "Load_more"}}</button>
{{/if}}
</div>
{{/unless}}
</div>
</section>
<section class="flex-tab">
{{> Template.dynamic template=flexTemplate data=flexData}}
</section>
</template>
| YY030913/tg | packages/tagt-ui-admin/admin/rooms/adminRooms.html | HTML | mit | 1,880 |
<!doctype html>
<html lang="en">
<head>
<base href="/">
<link href="/app.css" rel="stylesheet" />
<link href="/bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" />
<link href="/bower_components/angular-ui-notification/dist/angular-ui-notification.min.css" rel="stylesheet" />
<title>Meetings</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body ng-app="meetings" ><iit-header></iit-header><div class="container main-view" ng-view></div>
<!-- build:js /app.js -->
<!-- bower -->
<script src="/bower_components/jquery/dist/jquery.min.js"></script>
<script src="/bower_components/angular/angular.js"></script>
<script src="/bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="/bower_components/angular-route/angular-route.js"></script>
<script src="/bower_components/lodash/lodash.min.js"></script>
<script src="/bower_components/restangular/dist/restangular.min.js"></script>
<script src="/bower_components/angular-animate/angular-animate.min.js"></script>
<script src="/bower_components/angular-bootstrap/ui-bootstrap-tpls.min.js"></script>
<script src="/bower_components/angular-ui-notification/dist/angular-ui-notification.min.js"></script>
<script src="/bower_components/angular-cookies/angular-cookies.min.js"></script>
<script type="text/javascript" src="/bower_components/angular-file-saver/dist/angular-file-saver.bundle.min.js"></script>
<script type="text/javascript" src="/bower_components/js-xlsx/dist/xlsx.core.min.js"></script>
<!-- endbower -->
<!-- appcode -->
<script src="/modules.js"></script>
<script src="/app.js"></script>
<script src="/homeController.js"></script>
<script src="/MeetingsService.js"></script>
<script src="/PeopleService.js"></script>
<script src="/datepickerlocaldate.js"></script>
<script src="/UsersService.js"></script>
<script src="/loginController.js"></script>
<script src="/meetingsController.js"></script>
<script src="/headerDirective.js"></script>
<script src="/meetingsListDirective.js"></script>
<script src="/formatDateFilter.js"></script>
<script src="/meetingsFormDirective.js"></script>
<script src="/datepickerDirective.js"></script>
<!-- endappcode -->
<!-- endbuild -->
</body>
</html> | iit-data-analysis/meetings | src/server/views/index.html | HTML | mit | 2,549 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head><title>IPP PHP SDK for QuickBooks V3</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta><link rel="stylesheet" href="../css/template.css" type="text/css"></link><script type="text/javascript" src="../js/jquery-1.4.2.min.js"></script><script type="text/javascript" src="../js/jquery.tools.min.js"></script><script type="text/javascript" src="../js/jquery-ui-1.8.2.custom.min.js"></script><script type="text/javascript" src="../js/template.js"></script></head><body><div id="content"><h1 class="file">IntuitRestServiceDef\IPPAdvancedInventoryPrefs.php<a href="../source/IntuitRestServiceDef\IPPAdvancedInventoryPrefs.php.html"><img src="../images/icons/view_source.png" alt="View Source" border="0"></img></a></h1><div id="file-nav-box"><div id="file-nav-options">
Show:
<img src="../images/icons/visibility_public.png" alt="Public" id="show-public"></img><img src="../images/icons/visibility_protected.png" alt="Protected" id="show-protected"></img><img src="../images/icons/visibility_private.png" alt="Private" id="show-private"></img><span class="attribute" id="show-inherited">inherited</span></div><div id="file-nav-container"><ul id="file-nav"><li><a href="#classes"><img src="../images/icons/class.png" alt="Class" height="14"></img>
Classes
</a><ul><li><a href="#\IPPAdvancedInventoryPrefs">\IPPAdvancedInventoryPrefs</a></li></ul></li></ul><div style="clear: left;"></div></div><div id="file-nav-tab">
Table of Contents
</div></div><a name="top" class="anchor"></a><div id="file-description"><div class="long-description"></div></div><a name="classes" class="anchor"></a><a id="\IPPAdvancedInventoryPrefs" class="anchor"></a><h2 class="class">\IPPAdvancedInventoryPrefs<div class="to-top"><a href="#top">jump to top</a></div></h2><div class="class"><small class="package"><b>Package: </b>Default</small><div class="long-description"></div><dl class="class-info"><dt>IPPAdvancedInventoryPrefs</dt><dd>\IPPAdvancedInventoryPrefs<br></br><em></em></dd><dt>XmlDefinition</dt><dd>QBW: only. Defines advance inventory Prefs details
</dd><dt>XmlName</dt><dd>IPPAdvancedInventoryPrefs
</dd><dt>XmlNamespace</dt><dd>http://schema.intuit.com/finance/v3
</dd><dt>XmlType</dt><dd>
</dd></dl><h3>Properties</h3><div><a id="\IPPAdvancedInventoryPrefs::$BarcodeEnabled" class="anchor"></a><div class="property public"><a href="#" class="gripper"><img src="../images/icons/arrow_right.png" alt=">"></img><img src="../images/icons/arrow_down.png" alt="V" style="display: none;"></img></a><code class="title"><img src="../images/icons/property.png" alt="Property"></img><img src="../images/icons/visibility_public.png" style="margin-right: 5px" alt="public"></img>boolean <span class="highlight">$BarcodeEnabled</span></code><div class="description"><div class="short-description"></div></div><div class="code-tabs"><div class="long-description"></div><strong>Details</strong><dl class="property-info"><dt>Type</dt><dd>boolean</dd><dt>Definition</dt><dd>Product: QBW
Description: Indicates whether barcoding is enabled
</dd><dt>XmlMinOccurs</dt><dd>0
</dd><dt>XmlName</dt><dd>BarcodeEnabled
</dd><dt>XmlNamespace</dt><dd>http://schema.intuit.com/finance/v3
</dd><dt>XmlType</dt><dd>element
</dd></dl></div><div class="clear"></div></div><a id="\IPPAdvancedInventoryPrefs::$EnhancedInventoryReceivingEnabled" class="anchor"></a><div class="property public"><a href="#" class="gripper"><img src="../images/icons/arrow_right.png" alt=">"></img><img src="../images/icons/arrow_down.png" alt="V" style="display: none;"></img></a><code class="title"><img src="../images/icons/property.png" alt="Property"></img><img src="../images/icons/visibility_public.png" style="margin-right: 5px" alt="public"></img>boolean <span class="highlight">$EnhancedInventoryReceivingEnabled</span></code><div class="description"><div class="short-description"></div></div><div class="code-tabs"><div class="long-description"></div><strong>Details</strong><dl class="property-info"><dt>Type</dt><dd>boolean</dd><dt>Definition</dt><dd>QBW: Only QBW supported
</dd><dt>XmlMinOccurs</dt><dd>0
</dd><dt>XmlName</dt><dd>EnhancedInventoryReceivingEnabled
</dd><dt>XmlNamespace</dt><dd>http://schema.intuit.com/finance/v3
</dd><dt>XmlType</dt><dd>element
</dd></dl></div><div class="clear"></div></div><a id="\IPPAdvancedInventoryPrefs::$FIFOEffectiveDate" class="anchor"></a><div class="property public"><a href="#" class="gripper"><img src="../images/icons/arrow_right.png" alt=">"></img><img src="../images/icons/arrow_down.png" alt="V" style="display: none;"></img></a><code class="title"><img src="../images/icons/property.png" alt="Property"></img><img src="../images/icons/visibility_public.png" style="margin-right: 5px" alt="public"></img>string <span class="highlight">$FIFOEffectiveDate</span></code><div class="description"><div class="short-description"></div></div><div class="code-tabs"><div class="long-description"></div><strong>Details</strong><dl class="property-info"><dt>Type</dt><dd>string</dd><dt>Definition</dt><dd>QBW: only
</dd><dt>XmlMinOccurs</dt><dd>0
</dd><dt>XmlName</dt><dd>FIFOEffectiveDate
</dd><dt>XmlNamespace</dt><dd>http://schema.intuit.com/finance/v3
</dd><dt>XmlType</dt><dd>element
</dd></dl></div><div class="clear"></div></div><a id="\IPPAdvancedInventoryPrefs::$FIFOEnabled" class="anchor"></a><div class="property public"><a href="#" class="gripper"><img src="../images/icons/arrow_right.png" alt=">"></img><img src="../images/icons/arrow_down.png" alt="V" style="display: none;"></img></a><code class="title"><img src="../images/icons/property.png" alt="Property"></img><img src="../images/icons/visibility_public.png" style="margin-right: 5px" alt="public"></img>boolean <span class="highlight">$FIFOEnabled</span></code><div class="description"><div class="short-description"></div></div><div class="code-tabs"><div class="long-description"></div><strong>Details</strong><dl class="property-info"><dt>Type</dt><dd>boolean</dd><dt>Definition</dt><dd>QBW: ONLY.
</dd><dt>XmlMinOccurs</dt><dd>0
</dd><dt>XmlName</dt><dd>FIFOEnabled
</dd><dt>XmlNamespace</dt><dd>http://schema.intuit.com/finance/v3
</dd><dt>XmlType</dt><dd>element
</dd></dl></div><div class="clear"></div></div><a id="\IPPAdvancedInventoryPrefs::$MLIAvailable" class="anchor"></a><div class="property public"><a href="#" class="gripper"><img src="../images/icons/arrow_right.png" alt=">"></img><img src="../images/icons/arrow_down.png" alt="V" style="display: none;"></img></a><code class="title"><img src="../images/icons/property.png" alt="Property"></img><img src="../images/icons/visibility_public.png" style="margin-right: 5px" alt="public"></img>boolean <span class="highlight">$MLIAvailable</span></code><div class="description"><div class="short-description"></div></div><div class="code-tabs"><div class="long-description"></div><strong>Details</strong><dl class="property-info"><dt>Type</dt><dd>boolean</dd><dt>Definition</dt><dd>QBW: ONLY. MLI available
</dd><dt>XmlMinOccurs</dt><dd>0
</dd><dt>XmlName</dt><dd>MLIAvailable
</dd><dt>XmlNamespace</dt><dd>http://schema.intuit.com/finance/v3
</dd><dt>XmlType</dt><dd>element
</dd></dl></div><div class="clear"></div></div><a id="\IPPAdvancedInventoryPrefs::$MLIEnabled" class="anchor"></a><div class="property public"><a href="#" class="gripper"><img src="../images/icons/arrow_right.png" alt=">"></img><img src="../images/icons/arrow_down.png" alt="V" style="display: none;"></img></a><code class="title"><img src="../images/icons/property.png" alt="Property"></img><img src="../images/icons/visibility_public.png" style="margin-right: 5px" alt="public"></img>boolean <span class="highlight">$MLIEnabled</span></code><div class="description"><div class="short-description"></div></div><div class="code-tabs"><div class="long-description"></div><strong>Details</strong><dl class="property-info"><dt>Type</dt><dd>boolean</dd><dt>Definition</dt><dd>QBW: ONLY. MLI enabled
</dd><dt>XmlMinOccurs</dt><dd>0
</dd><dt>XmlName</dt><dd>MLIEnabled
</dd><dt>XmlNamespace</dt><dd>http://schema.intuit.com/finance/v3
</dd><dt>XmlType</dt><dd>element
</dd></dl></div><div class="clear"></div></div><a id="\IPPAdvancedInventoryPrefs::$RowShelfBinEnabled" class="anchor"></a><div class="property public"><a href="#" class="gripper"><img src="../images/icons/arrow_right.png" alt=">"></img><img src="../images/icons/arrow_down.png" alt="V" style="display: none;"></img></a><code class="title"><img src="../images/icons/property.png" alt="Property"></img><img src="../images/icons/visibility_public.png" style="margin-right: 5px" alt="public"></img>boolean <span class="highlight">$RowShelfBinEnabled</span></code><div class="description"><div class="short-description"></div></div><div class="code-tabs"><div class="long-description"></div><strong>Details</strong><dl class="property-info"><dt>Type</dt><dd>boolean</dd><dt>Definition</dt><dd>Product: QBW
Description: Indicates whether Row/Shelf/Bin location tracking is enabled
</dd><dt>XmlMinOccurs</dt><dd>0
</dd><dt>XmlName</dt><dd>RowShelfBinEnabled
</dd><dt>XmlNamespace</dt><dd>http://schema.intuit.com/finance/v3
</dd><dt>XmlType</dt><dd>element
</dd></dl></div><div class="clear"></div></div><a id="\IPPAdvancedInventoryPrefs::$TrackingOnBuildAssemblyEnabled" class="anchor"></a><div class="property public"><a href="#" class="gripper"><img src="../images/icons/arrow_right.png" alt=">"></img><img src="../images/icons/arrow_down.png" alt="V" style="display: none;"></img></a><code class="title"><img src="../images/icons/property.png" alt="Property"></img><img src="../images/icons/visibility_public.png" style="margin-right: 5px" alt="public"></img>boolean <span class="highlight">$TrackingOnBuildAssemblyEnabled</span></code><div class="description"><div class="short-description"></div></div><div class="code-tabs"><div class="long-description"></div><strong>Details</strong><dl class="property-info"><dt>Type</dt><dd>boolean</dd><dt>Definition</dt><dd>QBW: only
</dd><dt>XmlMinOccurs</dt><dd>0
</dd><dt>XmlName</dt><dd>TrackingOnBuildAssemblyEnabled
</dd><dt>XmlNamespace</dt><dd>http://schema.intuit.com/finance/v3
</dd><dt>XmlType</dt><dd>element
</dd></dl></div><div class="clear"></div></div><a id="\IPPAdvancedInventoryPrefs::$TrackingOnInventoryAdjustmentEnabled" class="anchor"></a><div class="property public"><a href="#" class="gripper"><img src="../images/icons/arrow_right.png" alt=">"></img><img src="../images/icons/arrow_down.png" alt="V" style="display: none;"></img></a><code class="title"><img src="../images/icons/property.png" alt="Property"></img><img src="../images/icons/visibility_public.png" style="margin-right: 5px" alt="public"></img>boolean <span class="highlight">$TrackingOnInventoryAdjustmentEnabled</span></code><div class="description"><div class="short-description"></div></div><div class="code-tabs"><div class="long-description"></div><strong>Details</strong><dl class="property-info"><dt>Type</dt><dd>boolean</dd><dt>Definition</dt><dd>QBW: only
</dd><dt>XmlMinOccurs</dt><dd>0
</dd><dt>XmlName</dt><dd>TrackingOnInventoryAdjustmentEnabled
</dd><dt>XmlNamespace</dt><dd>http://schema.intuit.com/finance/v3
</dd><dt>XmlType</dt><dd>element
</dd></dl></div><div class="clear"></div></div><a id="\IPPAdvancedInventoryPrefs::$TrackingOnPurchaseTransactionsEnabled" class="anchor"></a><div class="property public"><a href="#" class="gripper"><img src="../images/icons/arrow_right.png" alt=">"></img><img src="../images/icons/arrow_down.png" alt="V" style="display: none;"></img></a><code class="title"><img src="../images/icons/property.png" alt="Property"></img><img src="../images/icons/visibility_public.png" style="margin-right: 5px" alt="public"></img>boolean <span class="highlight">$TrackingOnPurchaseTransactionsEnabled</span></code><div class="description"><div class="short-description"></div></div><div class="code-tabs"><div class="long-description"></div><strong>Details</strong><dl class="property-info"><dt>Type</dt><dd>boolean</dd><dt>Definition</dt><dd>QBW: only
</dd><dt>XmlMinOccurs</dt><dd>0
</dd><dt>XmlName</dt><dd>TrackingOnPurchaseTransactionsEnabled
</dd><dt>XmlNamespace</dt><dd>http://schema.intuit.com/finance/v3
</dd><dt>XmlType</dt><dd>element
</dd></dl></div><div class="clear"></div></div><a id="\IPPAdvancedInventoryPrefs::$TrackingOnSalesTransactionsEnabled" class="anchor"></a><div class="property public"><a href="#" class="gripper"><img src="../images/icons/arrow_right.png" alt=">"></img><img src="../images/icons/arrow_down.png" alt="V" style="display: none;"></img></a><code class="title"><img src="../images/icons/property.png" alt="Property"></img><img src="../images/icons/visibility_public.png" style="margin-right: 5px" alt="public"></img>boolean <span class="highlight">$TrackingOnSalesTransactionsEnabled</span></code><div class="description"><div class="short-description"></div></div><div class="code-tabs"><div class="long-description"></div><strong>Details</strong><dl class="property-info"><dt>Type</dt><dd>boolean</dd><dt>Definition</dt><dd>QBW: only
</dd><dt>XmlMinOccurs</dt><dd>0
</dd><dt>XmlName</dt><dd>TrackingOnSalesTransactionsEnabled
</dd><dt>XmlNamespace</dt><dd>http://schema.intuit.com/finance/v3
</dd><dt>XmlType</dt><dd>element
</dd></dl></div><div class="clear"></div></div><a id="\IPPAdvancedInventoryPrefs::$TrackingSerialOrLotNumber" class="anchor"></a><div class="property public"><a href="#" class="gripper"><img src="../images/icons/arrow_right.png" alt=">"></img><img src="../images/icons/arrow_down.png" alt="V" style="display: none;"></img></a><code class="title"><img src="../images/icons/property.png" alt="Property"></img><img src="../images/icons/visibility_public.png" style="margin-right: 5px" alt="public"></img>boolean <span class="highlight">$TrackingSerialOrLotNumber</span></code><div class="description"><div class="short-description"></div></div><div class="code-tabs"><div class="long-description"></div><strong>Details</strong><dl class="property-info"><dt>Type</dt><dd>boolean</dd><dt>Definition</dt><dd>QBW: only
</dd><dt>XmlMinOccurs</dt><dd>0
</dd><dt>XmlName</dt><dd>TrackingSerialOrLotNumber
</dd><dt>XmlNamespace</dt><dd>http://schema.intuit.com/finance/v3
</dd><dt>XmlType</dt><dd>element
</dd></dl></div><div class="clear"></div></div></div><h3>Methods</h3><div><a id="\IPPAdvancedInventoryPrefs::__construct()" class="anchor"></a><div class="method public"><a href="#" class="gripper"><img src="../images/icons/arrow_right.png"></img><img src="../images/icons/arrow_down.png" style="display: none;"></img></a><code class="title"><img src="../images/icons/method.png" alt="method" title="method"></img><img src="../images/icons/visibility_public.png" style="margin-right: 5px" alt="public"></img><span class="highlight">__construct</span><span class="nb-faded-text">(<a href="../files/dictionary.html">\dictionary</a> $keyValInitializers = array(), boolean $verbose = FALSE)</span> : void</code><div class="description"><p class="short_description">Initializes this object, optionally with pre-defined property values</p></div><div class="code-tabs"><div class="long-description">Initializes this object and it's property members, using the dictionary
of key/value pairs passed as an optional argument.</div><strong>Parameters</strong><table class="argument-info"><thead><tr><th>Name</th><th>Type</th><th>Description</th></tr></thead><tr><th>$keyValInitializers</th><td><a href="../files/dictionary.html">\dictionary</a></td><td><em><p>key/value pairs to be populated into object's properties</p>
</em></td></tr><tr><th>$verbose</th><td>boolean</td><td><em><p>specifies whether object should echo warnings</p></em></td></tr></table></div><div class="clear"></div></div></div></div></div><small class="footer">
Documentation was generated by
<a href="http://phpdoc.org">phpDocumentor
2.1.0
</a>.
</small></body></html>
| heroicstudios/quickbooks-php-sdk | sdk/_PhpDocs/files/IntuitRestServiceDef.IPPAdvancedInventoryPrefs.html | HTML | mit | 17,187 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="generator" content="anited. publish v2.0.0a1" />
<title>My book</title>
<style type="text/css">
p {
font-family: sans-serif;
}
div {
font-family: monospace, serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: serif;
text-decoration: underline;
}
.small-caps {
font-variant: small-caps;
}
</style>
</head>
<body>
<h1>Hello Darkness My Old Friend</h1>
<p>But Will It Blend?</p>
<h1>The second chapter</h1>
<p><span style='font-family: serif;'>Html is preserved by markdown</span> (but also always wrapped in <p> unless you wrap it in a <div> yourself)</p>
<div>See?</div>
<p>Substitutions work too.</p>
<p><span class="small-caps">RegexSubstitution allows for more advanced substitutions.</span></p>
</body>
</html> | vomaufgang/apub | examples/yaml_simple/example.html | HTML | mit | 819 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>color_space.hpp Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Generated by Doxygen 1.7.4 -->
<div id="top">
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="logo-mini.png"/></td>
</tr>
</tbody>
</table>
</div>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
</ul>
</div>
<div class="header">
<div class="headertitle">
<div class="title">color_space.hpp</div> </div>
</div>
<div class="contents">
<a href="a00030.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001
<a name="l00002"></a>00002
<a name="l00003"></a>00003
<a name="l00004"></a>00004
<a name="l00005"></a>00005
<a name="l00006"></a>00006
<a name="l00007"></a>00007
<a name="l00008"></a>00008
<a name="l00009"></a>00009
<a name="l00010"></a>00010
<a name="l00011"></a>00011
<a name="l00012"></a>00012
<a name="l00013"></a>00013
<a name="l00014"></a>00014
<a name="l00015"></a>00015
<a name="l00016"></a>00016
<a name="l00017"></a>00017
<a name="l00018"></a>00018
<a name="l00019"></a>00019
<a name="l00020"></a>00020
<a name="l00021"></a>00021
<a name="l00022"></a>00022
<a name="l00023"></a>00023
<a name="l00024"></a>00024
<a name="l00025"></a>00025
<a name="l00026"></a>00026
<a name="l00027"></a>00027
<a name="l00028"></a>00028
<a name="l00029"></a>00029
<a name="l00030"></a>00030
<a name="l00031"></a>00031
<a name="l00032"></a>00032
<a name="l00033"></a>00033
<a name="l00034"></a>00034
<a name="l00035"></a>00035
<a name="l00036"></a>00036
<a name="l00037"></a>00037
<a name="l00038"></a>00038 <span class="preprocessor">#ifndef GLM_GTX_color_space</span>
<a name="l00039"></a>00039 <span class="preprocessor"></span><span class="preprocessor">#define GLM_GTX_color_space 50</span>
<a name="l00040"></a>00040 <span class="preprocessor"></span>
<a name="l00041"></a>00041 <span class="comment">// Dependency:</span>
<a name="l00042"></a>00042 <span class="preprocessor">#include "../glm.hpp"</span>
<a name="l00043"></a>00043
<a name="l00044"></a>00044 <span class="preprocessor">#if(defined(GLM_MESSAGES) && !defined(glm_ext))</span>
<a name="l00045"></a>00045 <span class="preprocessor"></span><span class="preprocessor"># pragma message("GLM: GLM_GTX_color_space extension included")</span>
<a name="l00046"></a>00046 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00047"></a>00047 <span class="preprocessor"></span>
<a name="l00048"></a>00048 <span class="keyword">namespace </span>glm
<a name="l00049"></a>00049 {
<a name="l00052"></a>00052
<a name="l00055"></a>00055 <span class="keyword">template</span> <<span class="keyword">typename</span> valType>
<a name="l00056"></a>00056 detail::tvec3<valType> <a class="code" href="a00162.html#ga4ca555f0091dc71c54e36b0ddd9b31bc" title="Converts a color from HSV color space to its color in RGB color space.">rgbColor</a>(
<a name="l00057"></a>00057 detail::tvec3<valType> <span class="keyword">const</span> & hsvValue);
<a name="l00058"></a>00058
<a name="l00061"></a>00061 <span class="keyword">template</span> <<span class="keyword">typename</span> valType>
<a name="l00062"></a>00062 detail::tvec3<valType> <a class="code" href="a00162.html#gaa9957385a0ec4908209cfb9890e17c24" title="Converts a color from RGB color space to its color in HSV color space.">hsvColor</a>(
<a name="l00063"></a>00063 detail::tvec3<valType> <span class="keyword">const</span> & rgbValue);
<a name="l00064"></a>00064
<a name="l00067"></a>00067 <span class="keyword">template</span> <<span class="keyword">typename</span> valType>
<a name="l00068"></a>00068 detail::tmat4x4<valType> <a class="code" href="a00162.html#gaa5af7f22a8a56b3fb3f98103defe7099" title="Build a saturation matrix.">saturation</a>(
<a name="l00069"></a>00069 valType <span class="keyword">const</span> s);
<a name="l00070"></a>00070
<a name="l00073"></a>00073 <span class="keyword">template</span> <<span class="keyword">typename</span> valType>
<a name="l00074"></a>00074 detail::tvec3<valType> <a class="code" href="a00162.html#gaa5af7f22a8a56b3fb3f98103defe7099" title="Build a saturation matrix.">saturation</a>(
<a name="l00075"></a>00075 valType <span class="keyword">const</span> s,
<a name="l00076"></a>00076 detail::tvec3<valType> <span class="keyword">const</span> & color);
<a name="l00077"></a>00077
<a name="l00080"></a>00080 <span class="keyword">template</span> <<span class="keyword">typename</span> valType>
<a name="l00081"></a>00081 detail::tvec4<valType> <a class="code" href="a00162.html#gaa5af7f22a8a56b3fb3f98103defe7099" title="Build a saturation matrix.">saturation</a>(
<a name="l00082"></a>00082 valType <span class="keyword">const</span> s,
<a name="l00083"></a>00083 detail::tvec4<valType> <span class="keyword">const</span> & color);
<a name="l00084"></a>00084
<a name="l00087"></a>00087 <span class="keyword">template</span> <<span class="keyword">typename</span> valType>
<a name="l00088"></a>00088 valType <a class="code" href="a00162.html#ga739ecb162c0ab7c238b6113f7538c42e" title="Compute color luminosity associating ratios (0.33, 0.59, 0.11) to RGB canals.">luminosity</a>(
<a name="l00089"></a>00089 detail::tvec3<valType> <span class="keyword">const</span> & color);
<a name="l00090"></a>00090
<a name="l00092"></a>00092 }<span class="comment">//namespace glm</span>
<a name="l00093"></a>00093
<a name="l00094"></a>00094 <span class="preprocessor">#include "color_space.inl"</span>
<a name="l00095"></a>00095
<a name="l00096"></a>00096 <span class="preprocessor">#endif//GLM_GTX_color_space</span>
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated by 
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
</body>
</html>
| kiwaiii/pbc | src/external/glm-0.9.2.4/doc/html/a00030_source.html | HTML | mit | 7,187 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_95) on Mon Apr 04 15:13:44 MDT 2016 -->
<title>ElasticSearch.elasticAddItem</title>
<meta name="date" content="2016-04-04">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ElasticSearch.elasticAddItem";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../ualberta/cmput301w16t16/glamorousborrowingwhaleapp/package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../ualberta/cmput301w16t16/glamorousborrowingwhaleapp/ElasticSearch.html" title="class in ualberta.cmput301w16t16.glamorousborrowingwhaleapp"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../ualberta/cmput301w16t16/glamorousborrowingwhaleapp/ElasticSearch.elasticAddUser.html" title="class in ualberta.cmput301w16t16.glamorousborrowingwhaleapp"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?ualberta/cmput301w16t16/glamorousborrowingwhaleapp/ElasticSearch.elasticAddItem.html" target="_top">Frames</a></li>
<li><a href="ElasticSearch.elasticAddItem.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li><a href="#nested_classes_inherited_from_class_android.os.AsyncTask">Nested</a> | </li>
<li><a href="#fields_inherited_from_class_android.os.AsyncTask">Field</a> | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">ualberta.cmput301w16t16.glamorousborrowingwhaleapp</div>
<h2 title="Class ElasticSearch.elasticAddItem" class="title">Class ElasticSearch.elasticAddItem</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>android.os.AsyncTask<<a href="../../../ualberta/cmput301w16t16/glamorousborrowingwhaleapp/Item.html" title="class in ualberta.cmput301w16t16.glamorousborrowingwhaleapp">Item</a>,java.lang.String,java.lang.String></li>
<li>
<ul class="inheritance">
<li>ualberta.cmput301w16t16.glamorousborrowingwhaleapp.ElasticSearch.elasticAddItem</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>Enclosing class:</dt>
<dd><a href="../../../ualberta/cmput301w16t16/glamorousborrowingwhaleapp/ElasticSearch.html" title="class in ualberta.cmput301w16t16.glamorousborrowingwhaleapp">ElasticSearch</a></dd>
</dl>
<hr>
<br>
<pre>public static class <span class="strong">ElasticSearch.elasticAddItem</span>
extends android.os.AsyncTask<<a href="../../../ualberta/cmput301w16t16/glamorousborrowingwhaleapp/Item.html" title="class in ualberta.cmput301w16t16.glamorousborrowingwhaleapp">Item</a>,java.lang.String,java.lang.String></pre>
<div class="block">This adds a new item to the ElasticSearch.
This is called by ItemController.updateItemElasticSearch
and ItemController.addItemElasticSearch.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../ualberta/cmput301w16t16/glamorousborrowingwhaleapp/NewListingActivity.html" title="class in ualberta.cmput301w16t16.glamorousborrowingwhaleapp"><code>NewListingActivity</code></a>,
<a href="../../../ualberta/cmput301w16t16/glamorousborrowingwhaleapp/ItemController.html" title="class in ualberta.cmput301w16t16.glamorousborrowingwhaleapp"><code>ItemController</code></a></dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested_class_summary">
<!-- -->
</a>
<h3>Nested Class Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="nested_classes_inherited_from_class_android.os.AsyncTask">
<!-- -->
</a>
<h3>Nested classes/interfaces inherited from class android.os.AsyncTask</h3>
<code>android.os.AsyncTask.Status</code></li>
</ul>
</li>
</ul>
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="fields_inherited_from_class_android.os.AsyncTask">
<!-- -->
</a>
<h3>Fields inherited from class android.os.AsyncTask</h3>
<code>SERIAL_EXECUTOR, THREAD_POOL_EXECUTOR</code></li>
</ul>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../ualberta/cmput301w16t16/glamorousborrowingwhaleapp/ElasticSearch.elasticAddItem.html#ElasticSearch.elasticAddItem()">ElasticSearch.elasticAddItem</a></strong>()</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../ualberta/cmput301w16t16/glamorousborrowingwhaleapp/ElasticSearch.elasticAddItem.html#doInBackground(ualberta.cmput301w16t16.glamorousborrowingwhaleapp.Item...)">doInBackground</a></strong>(<a href="../../../ualberta/cmput301w16t16/glamorousborrowingwhaleapp/Item.html" title="class in ualberta.cmput301w16t16.glamorousborrowingwhaleapp">Item</a>... params)</code>
<div class="block">Override this method to perform a computation on a background thread.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_android.os.AsyncTask">
<!-- -->
</a>
<h3>Methods inherited from class android.os.AsyncTask</h3>
<code>cancel, execute, execute, executeOnExecutor, get, get, getStatus, isCancelled, onCancelled, onCancelled, onPostExecute, onPreExecute, onProgressUpdate, publishProgress, setDefaultExecutor</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="ElasticSearch.elasticAddItem()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ElasticSearch.elasticAddItem</h4>
<pre>public ElasticSearch.elasticAddItem()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="doInBackground(ualberta.cmput301w16t16.glamorousborrowingwhaleapp.Item...)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>doInBackground</h4>
<pre>protected java.lang.String doInBackground(<a href="../../../ualberta/cmput301w16t16/glamorousborrowingwhaleapp/Item.html" title="class in ualberta.cmput301w16t16.glamorousborrowingwhaleapp">Item</a>... params)</pre>
<div class="block"><strong>Description copied from class: <code>android.os.AsyncTask</code></strong></div>
<div class="block">Override this method to perform a computation on a background thread. The
specified parameters are the parameters passed to <code>AsyncTask.execute(Params...)</code>
by the caller of this task.
This method can call <code>AsyncTask.publishProgress(Progress...)</code> to publish updates
on the UI thread.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>doInBackground</code> in class <code>android.os.AsyncTask<<a href="../../../ualberta/cmput301w16t16/glamorousborrowingwhaleapp/Item.html" title="class in ualberta.cmput301w16t16.glamorousborrowingwhaleapp">Item</a>,java.lang.String,java.lang.String></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>params</code> - The parameters of the task.</dd>
<dt><span class="strong">Returns:</span></dt><dd>A result, defined by the subclass of this task.</dd><dt><span class="strong">See Also:</span></dt><dd><code>AsyncTask.onPreExecute()</code>,
<code>AsyncTask.onPostExecute(Result)</code>,
<code>AsyncTask.publishProgress(Progress...)</code></dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../ualberta/cmput301w16t16/glamorousborrowingwhaleapp/package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../ualberta/cmput301w16t16/glamorousborrowingwhaleapp/ElasticSearch.html" title="class in ualberta.cmput301w16t16.glamorousborrowingwhaleapp"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../ualberta/cmput301w16t16/glamorousborrowingwhaleapp/ElasticSearch.elasticAddUser.html" title="class in ualberta.cmput301w16t16.glamorousborrowingwhaleapp"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?ualberta/cmput301w16t16/glamorousborrowingwhaleapp/ElasticSearch.elasticAddItem.html" target="_top">Frames</a></li>
<li><a href="ElasticSearch.elasticAddItem.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li><a href="#nested_classes_inherited_from_class_android.os.AsyncTask">Nested</a> | </li>
<li><a href="#fields_inherited_from_class_android.os.AsyncTask">Field</a> | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| CMPUT301W16T16/GlamorousBorrowingWhaleApp | doc/JavaDoc/ualberta/cmput301w16t16/glamorousborrowingwhaleapp/ElasticSearch.elasticAddItem.html | HTML | mit | 13,242 |
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js" type="text/javascript"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" type="text/javascript"></script>
<link rel="stylesheet" href="js-ble.css" media="screen" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href=" https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>Lumi5</h1>
<h3>A <a href="http://jtxp.org/tech/tinysafeboot_en.htm">TinySafeBoot</a> loader with options</h3>
</div>
</div>
<div class="container">
<div class="row">
<ul class="nav nav-pills">
<li id="search-and-connect-btn" class="active"><a data-toggle="pill" href="#connect-pane">
<i class="fa fa-plug fa-2x"></i> Connect</a>
</li>
<li id="terminal-btn"><a data-toggle="pill" href="#terminal-pane">
<i class="fa fa-terminal fa-2x"></i> Terminal</a>
</li>
<li id="handshake-btn"><a data-toggle="pill" href="#handshake-pane">
<i class="fa fa-cogs fa-2x"></i> Bootloader</a>
</li>
<li id="file-btn"><a data-toggle="pill" href="#file-pane">
<i class="fa fa-file-text fa-2x"></i> Files</a>
</li>
</ul>
</div>
<div class="row">
<div class="col-sm-6">
<div class="tab-content content-pane">
<div id="connect-pane" class="tab-pane fade in active">
<div class="styled-select blue semi-square">
<select>
<option selected><i class="fa fa-bluetooth fa-2x"></i> Bluetooth</option>
</select>
</div>
</div>
<div id="terminal-pane" class="tab-pane fade">
</div>
<div id="handshake-pane" class="tab-pane fade">
<div>
<label for="optionalServices">Service ID: </label>
<input type="text" id="optionalServices" name="service" value="0xFFE0">
</div>
<div>
<label for="pin">Pin #: </label>
<input type="text" id="resetPinNumber" name="resetPinNumber" value="">
<button class="select-reset-pin-btn" id="set-reset-pin-btn">Set Reset Button</button>
</div>
</div>
<div id="file-pane" class="tab-pane fade">
<button class="blue semi-square"><i class="fa fa-cloud-download fa-2x"></i> Read Flash</button> This is where the read
flash options are.
</div>
</div>
</div>
<div class="col-sm-6">
<div class="terminal" id="terminal"></div>
<button class="btn-primary" id="btn-write-ble">Send</button>
<input class="send-text-box" type="text" id="textToWrite" name="text-to-write" value="AT+NAME?">
</div>
</div>
</div>
<br>
<br>
</body>
<footer>
<script src="terminal.js" type="text/javascript"></script>
<script src="lumi-comm-ble.js" type="text/javascript"></script>
<script src="tinysafeboot.js" type="text/javascript"></script>
<script src="file-handler.js" type="text/javascript"></script>
<script src="hex-data-handler.js" type="text/javascript"></script>
<script src="lumi5.js" type="text/javascript"></script>
</footer>
</html> | Ladvien/LumiCommunicationJS | lumi5.html | HTML | mit | 3,171 |
<html>
<head>
<title>
Competitions @ Vajra '15
</title>
<link rel="stylesheet" href="screen.css" type="text/css" media="screen, projection">
<link rel="stylesheet" href="print.css" type="text/css" media="print">
<!--[if lt IE 8]>
<link rel="stylesheet" href="ie.css" type="text/css" media="screen, projection">
<![endif]-->
<link href='http://fonts.googleapis.com/css?family=Roboto:400,300' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="smoothscroll.js"></script>
<link rel="stylesheet" href="index_style.css" />
<link rel="stylesheet" href="eventstyle.css" />
</head>
<body>
<div class="container">
<nav>
<li class="srmlogo"> <img src="srmlogo.png" /> SRM UNIVERSITY</li>
<li><a href="index.html">home</a> </li> /
<li class="active"><a href="events.html">events</a></li> /
<li><a href="gallery.html">gallery</a></li> /
<li><a href="registration.html">register</a></li>
</nav>
<div class="icons">
<li id="basketcase" class="mangycur"><a href="#bb">Basketball</a>
<div class="triangleofgod"></div>
</li>
<li id="footcase"><a href="#fb">Football</a>
<div class="triangleofgod"></div></li>
<li id="cricketcase"><a href="#cricket">Cricket</a>
<div class="triangleofgod"></div></li>
<li id="volleycase"><a href="#volleyball">Volleyball</a>
<div class="triangleofgod"></li>
<li id="chesscase"><a href="#chess">Chess</a>
<div class="triangleofgod"></li>
<li id="carromcase"><a href="#carrom">Carrom</a>
<div class="triangleofgod"></li>
<li id="ttcase"><a href="#tt">Table Tennis</a>
<div class="triangleofgod"></li>
<li id="tfcase"><a href="#tf">Track & Field</a>
<div class="triangleofgod"></li>
<li id="badmintoncase"><a href="#badminton">Badminton</a>
<div class="triangleofgod"></li>
</div>
<div id="bb" class="sport">
<div class="introsport">
<h2>BASKETBALL</h2><br /><br />
<img src="basketball.jpg" />
</div>
<div class="extrosport">
<h3>Details</h3>
<li>Separate categories for <b>Men</b> and <b>Women</b></li>
<li>Team Limit for Basketball MIN 5 MAX 12 players per team</li>
<li>FIBA rules applicable</li>
<li>Only <b>one</b> team per college per category (male, female).</li>
<li>Match will be normal 4 quarters, each quarter being 10 minutes.(unless mentioned otherwise)</li>
<li>Use of abusive or foul language during the play can lead to technical fouls or expulsion depending on the referee and the organizing committee.</li>
<li>Players should not have anything on their hands or neck (wrist watch, necklace, ring, bracelet etc.). Nails should be cut.</li>
<li>Teams should report to the Basketball court half an hour before their match.</li>
<li>Detailed rules and regulations can be found <a href="https://en.wikipedia.org/wiki/Basketball">here</a>.</li><br>
<h3>Event Coordinators</h3>
<table>
<tr>
<th>Basketball (Men)</th>
<th>Basketball (Women)</th>
</tr>
<tr><td>
<ul>
<li>Mr. M. Mohan</li>
<li>Dr. Partha Sarathi Chakraborty</li>
<li>Mr. Manoj Vishnoi</li>
</ul>
</td>
<td>
<ul>
<li>Ms. Megha Aggarwal</li>
<li>Ms. Aarti</li>
<li>Ms. Arnika Jain</li>
</ul>
</td>
</tr></table>
<table>
<tr>
<th>Student Coordinator</th>
<th>Contact Number</th>
</tr>
<tr><td>
<ul>
<li>Alap Modak</li>
<li>Manan </li>
</ul>
</td>
<td>
<ul>
<li>+918755574697</li>
<li>+919557425053</li>
</ul>
</td>
</tr></table>
</div>
</div>
<div id="fb" class="sport">
<div class="introsport">
<h2>FOOTBALL</h2><br /><br />
<img src="football.png" />
</div>
<div class="extrosport">
<h3>Details</h3>
<li>This event is open for <b>men</b> only.</li>
<li>Team Limit for Football is <b>16</b> players per college.</li>
<li>Normal FIFA rules apply.</li>
<li>Only <b>one</b> team per college will be entertained.</li>
<li>Referees decision shall be final.</li>
<li>Extra time for the matches shall be notified only before the match.</li>
<li>Offside etc. as per current format.</li>
<li>Detailed rules and regulations can be found <a href="https://en.wikipedia.org/wiki/Football">here</a>.</li><br>
<h3>Event Coordinators</h3><br />
<br />
<table>
<tr>
<th>Football</th>
</tr>
<tr><td>
<ul>
<li>Mr. Manoj Pal</li>
<li>Mr. Manjeet</li>
<li>Mr. GP Bagri</li>
<li>Mr. Harish Sharma</li>
</ul>
</td>
</tr>
</table>
<table>
<tr>
<th>Student Coordinator</th>
<th>Contact Number</th>
</tr>
<tr><td>
<ul>
<li>Viplove Pandey </li>
<li>Shivang Mathur </li>
</ul>
</td>
<td>
<ul>
<li>+919871258369</li>
<li>+918130626703</li>
</ul>
</td>
</tr></table>
</div>
</div>
<div id="cricket" class="sport">
<div class="introsport">
<h2>CRICKET</h2><br /><br />
<img src="cricket.jpg" />
</div>
<div class="extrosport">
<h3>Details</h3>
<li>Tournament will be played on T-20 format. Standard T-20 Rules apply.</li>
<li>Minimum 11 players are allowed in a team. Maximum 16 players are allowed in a team</li>
<li>Tournament will be played on knock out format until finals. Final will be played as round robin league between three teams.</li>
<li>Only <b>one</b> team per college per category.</li>
<li>Tie in the game will be resolved by a super over.</li>
<li>Tie in case of points or wins in finals will be resolved by comparison of 'net run rates of all the matches' played by the team.</li>
<li>Teams should report 30 minutes before the scheduled time if the team is late by more than 5 minutes, the match would be forfeited to the opposition team. </li>
<li>All the teams should come in whites.</li>
<li>Team has to complete its quota of overs in 1hour 25 minutes.</li>
<li>If the 1st bowling team fails to complete then they will be penalized and have to chase the score in the number of overs they have bowled in the specified time.</li>
<li>If the 2nd bowling team fails to complete then runs equal to (current run rate of the batting team * the no of overs) left will be added to the batting side total, also they will have to bowl the overs left.</li>
<li>Decision of Umpires and organizing committee shall be final and binding.</li>
<li>Detailed rules and regulations can be found <a href="https://en.wikipedia.org/wiki/Twenty20">here</a>.</li><br>
<h3>Event Coordinators</h3>
<table>
<tr>
<th>Cricket (Men)</th>
</tr>
<tr><td>
<ul>
<li>Mr. Jaswinder Singh</li>
<li>Mr. Vaibhav Sharma</li>
<li>Mr. Degamber</li>
<li>Mr. Vinay Pant</li>
<li>Mr. Dadan Jha</li>
<li>Mr. Bal Krishna Saraswat</li>
</ul>
</td>
</tr></table>
<table>
<tr>
<th>Student Coordinator</th>
<th>Contact Number</th>
</tr>
<tr><td>
<ul>
<li>Apporv Atulya Singh </li>
<li>Pardeep Parchar </li>
</ul>
</td>
<td>
<ul>
<li>+919045988078</li>
<li>+917793801815</li>
</ul>
</td>
</tr></table>
</div>
</div>
<div id="volleyball" class="sport">
<div class="introsport">
<h2>VOLLEYBALL</h2><br /><br />
<img src="vollyall.jpg" />
</div>
<div class="extrosport">
<h3>Details</h3>
<li>Separate categories for <b>Men</b> and <b>Women</b></li>
<li>Concerning the game-play, all standard FIVB rules will be followed and minimum no of players 6 are allowed in a team maximum of 12 players are allowed per team.</li>
<li>"Rotation" rule will be followed during all the matches unless both the teams agree to play "fixed"</li>
<li>Only <b>one</b> team per college per category (male, female).</li>
<li>The format of the tournament will be decided upon the arrival of teams.</li>
<li>All league matches will best out of three sets. Each set will be of 25 points.</li>
<li>The schedule will be provided to the teams upon their arrival and is subject to change at any point of time, so the teams are requested to check the notice board regularly.</li>
<li>In case of any dispute during the match, the decision of the referees will be considered final and binding.</li>
<li>Any disciplinary violation by any member of the team will lead to disqualification of the team.</li>
<li>All the players will be required to show their ID cards before the beginning of the match failing which the defaulting individual will not be allowed to play.</li>
<li>If a team arrives late by more than 15 minutes, it will be awarded a 2-0(25-0, 25-0) loss</li>
<li>Detailed rules and regulations can be found <a href="https://en.wikipedia.org/wiki/Volleyball">here</a>.</li><br>
<h3>Event Coordinators</h3><br />
<br />
<table>
<tr>
<th>Volleyball (Men)</th>
</tr>
<tr><td>
<ul>
<li>Mr. Vibhor Tyagi</li>
<li>Mr. Analp Pathak</li>
<li>Mr. Manish Bhardwaj</li>
</ul>
</td>
</tr></table>
<table>
<tr>
<th>Student Coordinator</th>
<th>Contact Number</th>
</tr>
<tr><td>
<ul>
<li>Surbhit Chaudhary </li>
<li>Eenoo Chauhan </li>
<li>Sakshi Agarwal </li>
</ul>
</td>
<td>
<ul>
<li></li>
<li>+919557736873</li>
<li></li>
</ul>
</td>
</tr></table>
</div>
</div>
<div id="chess" class="sport">
<div class="introsport">
<h2>CHESS</h2><br /><br />
<img src="chess.png" />
</div>
<div class="extrosport">
<h3>Rules</h3>
<li>Limit on number on players :</li>
<li>Classical : 5 (4 + 1 reserve) </li>
<li>Lightning : 5 (4 + 1 reserve) </li>
<li>Problem Solving : 3 per team </li><br>
<h3>Details</h3>
<li>Separate categories for <b>Men</b> and <b>Women</b></li>
<li>Touch-to-move: If a player touches a piece, he/she must move it. It also requires him/her to capture opponent's piece if he/she touches it. This rule only applies if the player can make a legal move with the piece touched. If the player accidentally brushes a piece he/she is not required to move it. if a player touches a piece by non- playing area(like elbow), then he is not required to move it. If a piece is awkwardly placed, you can adjust it; simply say "I adjust" before touching the piece to make it clear to your opponent that you don't intend to move it.</li>
<li>Clock rules: Opponents must press the clock with same hand that moves pieces. If not, he/she may be penalized one minute, which will be added to opponent's time. The chess clock will be placed on black's right-hand side.</li>
<li>Illegal move: If one player makes an illegal move, while playing on the clock, two minutes will be added to opponent's time. The player must also move the piece that he touched, if legal.</li>
<li>Winning on time: Whichever player's flag fall first, loses the game (on time). To claim a win on time, stop both clocks-claimant's flag must still be standing and he/she must have winning material. If both flags are down, the game is drawn.</li>
<li>Draw by offer: A proposal of draw offer should be made after move and before pressing clock. (Make the offer of draw while claimant's clock is running) The opponent may accept or reject it. Any opponent who makes an improper draw offer may be penalized one minute added to opponent's time.</li>
<li>Draw by threefold repetition: the claimant must present a score sheet demonstrating that the same position: A) is about to occur or B) has occurred, with the same player to move. It must be the claimant's move to make such a claim. if the claimant makes a move and stop the clock, the claim will be declared invalid.</li>
<li>50-move rule: If the player shows that (with moves written on score sheet) 50 moves having been made without a pawn having been moved or any capture made, he may claim the game a draw. Both the clock should be stopped before claiming for a draw.</li>
<li>Stalemate: If the player on turn has no legal move but is not in check, this is stalemate and the game is a draw. </li>
<li>Impossibility of checkmate: if a position arises in which neither player could possibly give checkmate by a series of legal moves, the game is a draw. This is usually because there is insufficient material left.</li>
<li>The board order of players should be given beforehand to the committee. It can not be changed except as per the substitution rule.</li>
<li>. In case of a 2-2 draw between the playing team in critical rounds, three blitz matches will be played between the best players of the teams. Captains of both the teams will report the name of the best player to the organizer confidentially. In case of further draw, a final Armageddon match will be held.</li>
<li>Rule for substitution: "Roll over substitution" The boards lower to the board on which substitution is made would slide u one board till the board of substitution.Violation of rules of substitution will lead to '0-4' loss to the violating team for that round.</li>
<li>Contact the organizers to clear your confusion/dispute. If a player has a disagreement,he/she should stop the clock, contact an arbiter and ask for a solution. The chess clock should be stopped before calling organizer.</li>
<li>All participating teams are requested to bring 'chess clocks'. The player is required to know how to use a clock. A player may ask about its operation before the clocks are applied.</li>
<li>It is expected that players record the moves. (A sheet would be provided.)It may help to resolve some disputes. At the end of game, a signed copy (by both players) of result sheet should be handed over to organizing committee. The moves should be written
using standard chess notation.
</li>
<li>No prompting allowed (Even if violation of any rule is noticed by spectators). Any person found guilty for prompting would be disqualified from the tournament and strict action would be taken against the team to which he/she belongs.</li>
<li>A player or his/her team can be disqualified if his/her conduct in the tournament hall is not found satisfactory.</li>
<li>After the game is over, both the players should leave the table immediately. However, captains of the playing team can stay inside the playing arena even if his/her match is over.</li>
<li>Walkover would be given to the player if his/her opponent does not turn up in 30 minutes (for classical chess) after the round has started. Any player absent from the playing room or board for more than fifteen minutes without permission from the committee may have his or her game forfeited due to unsportsmanlike conduct.</li>
<h3>Rules specific to lightning chess:</h3>
<li>Time of the game will be 5 minutes to each player per game.</li>
<li>Illegal move pointed out by the opponent immediately results in a loss.</li>
<li>Players do not need to point out a 'check' to the opponent.</li><br>
<li>Detailed rules and regulations can be found <a href="https://en.wikipedia.org/wiki/Chess">here</a>.</li><br>
<h3>Event Coordinators</h3>
<table>
<tr>
<th>Chess (Men)</th>
<th>Chess (Women)</th>
</tr>
<tr><td>
<ul>
<li>Mr. Jitendra Sharma</li>
<li>Mr. Naresh Sharma</li>
</ul>
</td>
<td>
<ul>
<li>Ms. Smrati Singh</li>
<li>Ms. Monika Joheri</li>
</ul>
</td>
</tr></table>
<table>
<tr>
<th>Student Coordinator</th>
<th>Contact Number</th>
</tr>
<tr><td>
<ul>
<li>Vaibhav Srivastava </li>
<li>Santosh Kumar </li>
<li>Md Reza Alam </li>
<li>Utkarsh Patel </li>
</ul>
</td>
<td>
<ul>
<li>+917417739550</li>
<li>+919982248631</li>
<li>+919199681225</li>
<li>+919717466514</li>
</ul>
</td>
</tr></table>
</div>
</div>
<div id="carrom" class="sport">
<div class="introsport">
<h2>CARROM</h2><br /><br />
<img src="http://www.bizearch.com/images/trade/01/22/12258.jpg" />
</div>
<div class="extrosport">
<h3>Details</h3>
<li>Mixed teams of 4 max 5 only. There will be no separate men’s and women’s teams.</li>
<li>Standard carrom rules apply.</li>
<li>Best of five will be considered out of three singles and two doubles matches played between any two teams. An individual can participate in not more than one singles and one doubles match.</li>
<li>Only <b>one</b> team per college per category (male, female).</li>
<li>A game shall be of 25 points or eight boards. The player/team who reaches 25 points first or leads at the conclusion of the eighth board shall be the winner of the game.</li>
<li>The participants will be made familiar with the rules before the start of the tournament.
Any hand may be used in play. Participants can change hand during the game.
</li>
<li>Detailed rules and regulations can be found <a href="https://en.wikipedia.org/wiki/Carrom">here</a>.</li><br>
<h3>Event Coordinators</h3><br />
<br />
<table>
<tr>
<th>Carrom (Men)</th>
<th>Carrom (Women)</th>
</tr>
<tr><td>
<ul>
<li>Dr. Arun Kumar Choudhary</li>
<li>Dr. Mudit Srivastava</li>
</ul>
</td>
<td>
<ul>
<li>Dr. Shalini Sharma</li>
<li>Ms. Aarti Tiwari</li>
</ul>
</td>
</tr></table>
<table>
<tr>
<th>Student Coordinator</th>
<th>Contact Number</th>
</tr>
<tr><td>
<ul>
<li>Sayan Das Gupta </li>
<li>Pratyush </li>
<li>Apoorva </li>
<li>Gehana </li>
</ul>
</td>
<td>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</td>
</tr></table>
</div>
</div>
<div id="tt" class="sport">
<div class="introsport">
<h2>TABLE TENNIS</h2><br /><br />
<img src="acccch.png" />
</div>
<div class="extrosport">
<h3>Men</h3>
<li>Play: singles(A vs X),singles(B vs Y), doubles and reverse singles(A vs Y & B vs X).
All games will be best of 5.
</li>
<li>Players playing singles won't be allowed to repeat in doubles.</li>
<li>Maximum number of 5 and minimum number of 4 players are allowed in a team.</li>
<h3>Women</h3>
<li>It is a team event requiring a minimum of 3 players and a maximum of 4 players.</li>
<li>The event will consist of 5 sets and every set will comprise 5 games of 11 points each.</li>
<li>First two sets are singles matches, to be played by two different players A and B.
Third set is a doubles match, to be played by either two new players (C and D) or one new player(C or D) and one of the single players (A or B).
</li>
<li>The fourth and fifth set are reverse singles matches to be played by players (A and B).</li>
<h3>Mixed</h3>
<li>Maximum 2 entries per college are allowed.</li>
<li>The format will be singles (men),singles(girls) and doubles(mixed).</li>
<li>Minimum number of players per team required will be 2.</li>
<li>All games will be best of 5.</li>
<li>Detailed rules and regulations can be found <a href="https://en.wikipedia.org/wiki/Table_tennis">here</a>.</li><br>
<h3>Event Coordinators</h3>
<table>
<tr>
<th>Table Tennis (Men)</th>
<th>Table Tennis (Women)</th>
</tr>
<tr><td>
<ul>
<li>Mr. Shubham Tiwary</li>
<li>Mr. Pramod</li>
</ul>
</td>
<td>
<ul>
<li>Ms. Sneha Thakur</li>
<li>Ms. Ghazala Ansari</li>
</ul>
</td>
</tr></table>
<table>
<tr>
<th>Student Coordinator</th>
<th>Contact Number</th>
</tr>
<tr><td>
<ul>
<li>Vishal Pal Singh </li>
<li>Varun Kanwatia </li>
<li>Gaurav Kr </li>
<li>Kanika Modi </li>
<li>Anusha Sinha</li>
</ul>
</td>
<td>
<ul>
<li>+919910335301</li>
<li>+917060375857</li>
<li>+917534958321</li>
<li>+919555816099</li>
<li>+919568100255</li>
</ul>
</td>
</tr></table>
</div>
</div>
<div id="tf" class="sport">
<div class="introsport">
<h2>TRACK & FIELD</h2><br /><br />
<img src="https://www.colourbox.com/preview/2364359-illustration-of-athlete-running-on-white-background.jpg" />
</div>
<div class="extrosport">
<h3>Details</h3>
<h3>GIRLS</h3>
<li>Track Events: 100m, 4*100m Relay</li>
<li>Field Events: Long Jump, Shot Put</li>
<br>
<h3>BOYS</h3>
<li>Track Events: 100m, 200m, 4*100mRelay</li>
<li>Field Events: Long Jump, Shot Put, Discus throw</li><br>
<li>In all the field events each participant will get 3 trials, of which the best would be considered for evaluation.</li>
<li>Heats will be conducted only for the 100m race, based on which participants will be selected to compete in the final race.</li>
<li>All other races will have no heats. The participants will be timed and the results will be decided accordingly.</li>
<li>Maximum 2 participants from each college in any particular event are allowed (excluding relays,which requires 4 per college team).</li>
<li>An individual can participate in maximum 3 individual events.</li>
<li>An event may stand cancelled in case of insufficient participation.</li><br>
<h3>Event Coordinators</h3><br />
<br />
<table>
<tr>
<th>Athletics (Men)</th>
<th>Athletics (Women)</th>
</tr>
<tr><td>
<ul>
<li>Mr. Sumit</li>
<li>Mr. Ankit</li>
</ul>
</td>
<td>
<ul>
<li>Ms. Rupali</li>
<li>Ms. Swati</li>
</ul>
</td>
</tr></table>
<table>
<tr>
<th>Student Coordinator</th>
<th>Contact Number</th>
</tr>
<tr><td>
<ul>
<li>Dushyant Rathore</li>
<li>Shuvam Pathania </li>
</ul>
</td>
<td>
<ul>
<li>+918938948314</li>
<li>+919418853777</li>
</ul>
</td>
</tr></table>
</div>
</div>
<div id="badminton" class="sport">
<div class="introsport">
<h2>BADMINTON</h2><br /><br />
<img src="http://previews.123rf.com/images/ostill/ostill1411/ostill141100157/33672095-one-asian-badminton-player-young-man-in-silhouette-isolated-white-background-Stock-Photo.jpg" />
</div>
<div class="extrosport">
<h3>Details</h3>
<li>Separate categories for <b>Men</b> and <b>Women</b></li>
<li>Format of Play: Best of 5(in the order), Singles, Singles, Doubles, Singles, and Doubles.</li>
<li>Each match (singles/doubles) is best of 3 sets of 21 points.</li>
<li>Teams for every game are submitted before the match (specifying who will be playing 1st singles, 2nd singles, 1st doubles and 3rd singles, and 2nd doubles). This team cannot be changed after submission.</li>
<li>Latest IBF rules will be followed.</li>
<li>Teams of maximum 7 players and minimum 5 players.</li>
<li>Only three players can play in two matches (one singles and one doubles).</li>
<li>Detailed rules and regulations can be found <a href="https://en.wikipedia.org/wiki/Badminton">here</a>.</li><br>
<h3>Event Coordinators</h3><br />
<br />
<table>
<tr>
<th>Badminton (Men)</th>
<th>Badminton (Women)</th>
</tr>
<tr><td>
<ul>
<li>Mr. Rajesh</li>
<li>Mr. Mohan Raj</li>
</ul>
</td>
<td>
<ul>
<li>Dr. Piyush Gupta</li>
<li>Ms. Hansa Gupta</li>
</ul>
</td>
</tr></table>
<table>
<tr>
<th>Student Coordinator</th>
<th>Contact Number</th>
</tr>
<tr><td>
<ul>
<li>Sharang Srivastava </li>
<li>Sadak Gautam </li>
<li>Pratibha Rai </li>
<li>Dhruva Singh</li>
<li>Tina Vij</li>
<li>Nishtha Gupta</li>
<li>Rishabh Singhal</li>
<li>Somya</li>
</ul>
</td>
<td>
<ul>
<li>+919837511179</li>
<li>+917409386234</li>
<li>+918130075981</li>
<li>+918826531833</li>
<li>+918860340300</li>
<li>+919654484192</li>
<li>+918439951253</li>
<li>+918755386969</li>
</ul>
</td>
</tr></table>
</div>
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){
$("#basketcase div").css("display","block");
$(".icons li a").click(function(){
});
});
var target = $("#bb").offset().top-140,target2=$("#fb").offset().top-140,
timeout = null,time2=null,time3=null,time4=null,time5=null,time6=null,time7=null,time8=null,time9=null;
var target3 = $("#cricket").offset().top-140;
var target4 = $("#volleyball").offset().top-140;
var target5 = $("#chess").offset().top-140;
var target6 = $("#carrom").offset().top-140;
var target7 = $("#tt").offset().top-140;
var target8 = $("#tf").offset().top-140;
var target9 = $("#badminton").offset().top-140;
$(window).scroll(function () {
if (!timeout)
{
timeout = setTimeout(function () {
console.log('scroll');
clearTimeout(timeout);
timeout = null;
if ($(window).scrollTop() >= target) {
$(".icons li").attr("class","");
$(".icons li div").css("display","none");
$("#basketcase").attr("class","mangycur");
$("#basketcase div").css("display","block");
}
}, 250);
}
});
$(window).scroll(function () {
if (!time2)
{
time2 = setTimeout(function () {
console.log('scroll');
clearTimeout(time2);
time2 = null;
if ($(window).scrollTop() >= target2) {
$(".icons li").attr("class","");
$(".icons li div").css("display","none");
$("#footcase").attr("class","mangycur");
$("#footcase div").css("display","block");
}
}, 250);
}
});
$(window).scroll(function () {
if (!time3)
{
time3 = setTimeout(function () {
console.log('scroll');
clearTimeout(time3);
time3 = null;
if ($(window).scrollTop() >= target3) {
$(".icons li").attr("class","");
$(".icons li div").css("display","none");
$("#cricketcase").attr("class","mangycur");
$("#cricketcase div").css("display","block");
}
}, 250);
}
});
$(window).scroll(function () {
if (!time4)
{
time4 = setTimeout(function () {
console.log('scroll');
clearTimeout(time4);
time4 = null;
if ($(window).scrollTop() >= target4) {
$(".icons li").attr("class","");
$(".icons li div").css("display","none");
$("#volleycase").attr("class","mangycur");
$("#volleycase div").css("display","block");
}
}, 250);
}
});
$(window).scroll(function () {
if (!time5)
{
time5 = setTimeout(function () {
console.log('scroll');
clearTimeout(time5);
time5 = null;
if ($(window).scrollTop() >= target5) {
$(".icons li").attr("class","");
$(".icons li div").css("display","none");
$("#chesscase").attr("class","mangycur");
$("#chesscase div").css("display","block");
}
}, 250);
}
});
$(window).scroll(function () {
if (!time6)
{
time6 = setTimeout(function () {
console.log('scroll');
clearTimeout(time6);
time6 = null;
if ($(window).scrollTop() >= target6) {
$(".icons li").attr("class","");
$(".icons li div").css("display","none");
$("#carromcase").attr("class","mangycur");
$("#carromcase div").css("display","block");
}
}, 250);
}
});
$(window).scroll(function () {
if (!time7)
{
time7 = setTimeout(function () {
console.log('scroll');
clearTimeout(time7);
time7 = null;
if ($(window).scrollTop() >= target7) {
$(".icons li").attr("class","");
$(".icons li div").css("display","none");
$("#ttcase").attr("class","mangycur");
$("#ttcase div").css("display","block");
}
}, 250);
}
});
$(window).scroll(function () {
if (!time8)
{
time8 = setTimeout(function () {
console.log('scrollpast');
clearTimeout(time8);
time8 = null;
if ($(window).scrollTop() >= target8) {
$(".icons li").attr("class","");
$(".icons li div").css("display","none");
$("#tfcase").attr("class","mangycur");
$("#tfcase div").css("display","block");
}
}, 250);
}
});
$(window).scroll(function () {
if (!time9)
{
time9 = setTimeout(function () {
console.log('scrollpast');
clearTimeout(time9);
time9 = null;
if ($(window).scrollTop() >= target9) {
$(".icons li").attr("class","");
$(".icons li div").css("display","none");
$("#badmintoncase").attr("class","mangycur");
$("#badmintoncase div").css("display","block");
}
}, 250);
}
});
var navHeight = 140;
$('.icons li a').click(function( e ){
e.preventDefault();
var myHref = $(this).attr('href');
var newPos = $(myHref).offset().top;
$('html, body').stop().animate({scrollTop: newPos-navHeight}, 1300);
});
</script>
</body>
</html> | lagboy/VAJRA | events.html | HTML | mit | 45,781 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>compcert: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / extra-dev</a></li>
<li class="active"><a href="">8.10.0 / compcert - 3.5</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
compcert
<small>
3.5
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2020-08-24 06:00:58 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-08-24 06:00:58 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.10.0 Formal proof management system
num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
authors: "Xavier Leroy <xavier.leroy@inria.fr>"
maintainer: "Jacques-Henri Jourdan <jacques-Henri.jourdan@normalesup.org>"
homepage: "http://compcert.inria.fr/"
dev-repo: "git+https://github.com/AbsInt/CompCert.git"
bug-reports: "https://github.com/AbsInt/CompCert/issues"
license: "INRIA Non-Commercial License Agreement"
build: [
["./configure" "ia32-linux" {os = "linux"}
"ia32-macosx" {os = "macos"}
"ia32-cygwin" {os = "cygwin"}
"-bindir" "%{bin}%"
"-libdir" "%{lib}%/compcert"
"-install-coqdev"
"-clightgen"
"-coqdevdir" "%{lib}%/coq/user-contrib/compcert"
"-ignore-coq-version"]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
["install" "-m" "0644" "VERSION" "%{lib}%/coq/user-contrib/compcert/"]
]
remove: [
["rm" "%{bin}%/ccomp"]
["rm" "%{bin}%/clightgen"]
["rm" "-R" "%{lib}%/compcert"]
["rm" "-R" "%{lib}%/coq/user-contrib/compcert"]
["rm" "%{share}%/compcert.ini"]
["rm" "%{share}%/man/man1/ccomp.1"]
["sh" "-c" "rmdir -p %{share}%/man/man1 || true"]
]
depends: [
"ocaml" {< "4.08.0"}
"coq" {>= "8.9.0" & < "8.10"}
"menhir" {>= "20180530" & <= "20181113"}
]
synopsis: "The CompCert C compiler"
url {
src: "https://github.com/AbsInt/CompCert/archive/v3.5.tar.gz"
checksum: "sha256=1ea01f9fe9dcfb664dec3b0076bd9ae0d54bb9d79279b5351ab12cc32369b509"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-compcert.3.5 coq.8.10.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.10.0).
The following dependencies couldn't be met:
- coq-compcert -> coq < 8.10 -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-compcert.3.5</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.06.1-2.0.5/extra-dev/8.10.0/compcert/3.5.html | HTML | mit | 7,652 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>containers: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.5.0~camlp4 / containers - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
containers
<small>
8.6.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-23 07:49:00 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-23 07:49:00 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp4 4.03+1 Camlp4 is a system for writing extensible parsers for programming languages
conf-findutils 1 Virtual package relying on findutils
conf-which 1 Virtual package relying on which
coq 8.5.0~camlp4 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.03.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.03.0 Official 4.03.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlbuild 0.14.0 OCamlbuild is a build system with builtin rules to easily build most OCaml projects.
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/containers"
license: "Unknown"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Containers"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: data structures" "keyword: type classes" "category: Computer Science/Data Types and Data Structures" ]
authors: [ "Stéphane Lescuyer" ]
bug-reports: "https://github.com/coq-contribs/containers/issues"
dev-repo: "git+https://github.com/coq-contribs/containers.git"
synopsis: "Containers: a typeclass-based library of finite sets/maps"
description:
"This is a reimplementation of the FSets/FMaps library from the standard library, using typeclasses. See tests files for usage. A new vernacular command is provided by Generate.v and the plugin to automatically generate ordered types for user-defined inductive types."
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/containers/archive/v8.6.0.tar.gz"
checksum: "md5=f954255c939acdebd61f245a70250a7d"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-containers.8.6.0 coq.8.5.0~camlp4</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.5.0~camlp4).
The following dependencies couldn't be met:
- coq-containers -> coq >= 8.6 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-containers.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.03.0-2.0.5/released/8.5.0~camlp4/containers/8.6.0.html | HTML | mit | 7,323 |
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width initial-scale=1">
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
<meta name="google-translate-customization" content="b9870a0c7376df54-aa35852016e6a5cc-ga0a0d80f6c171f17-e"></meta>
<link rel="stylesheet" href="{{ "/css/bootstrap.min.css" | prepend: site.baseurl }}">
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
<link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ " /feed.xml " | prepend: site.baseurl | prepend: site.url }}" />
</head>
| maangalabs/maangalabs.github.io | _includes/head.html | HTML | mit | 996 |
{% extends "layout.html" %}
{% block page_title %}
Check and submit your change
{% endblock %}
{% block content %}
<main id="content" role="main">
{% include "includes/phase_banner_alpha.html" %}
<div class="grid-row">
<div class="column-full">
<h1 class="heading-large margin-bottom-0">
Check and submit your notification
</h1>
<table class="check-your-answers">
<thead>
<tr>
<th colspan="2">
<h2 class="heading-medium">
Replace educational oversight body
</h2>
</th>
<th>
</th>
</tr>
</thead>
<tbody>
<tr>
<td>Educational oversight body</td>
<td>Ofsted
</td>
<td class="change-answer">
<a href="/org/educational-oversight/add">Change</a>
</td>
</tr>
</tbody>
</table>
</div> <!-- col full -->
<div class="column-two-thirds">
<br>
<div class="panel panel-border-wide">
<p>[Ofsted] will replace [existing body] as your oversight body.</p>
</div>
<form action="/org/educational-oversight/confirm" method="post" class="form">
<h2 class="heading-medium">
Declaration
</h2>
<p>The information that I’ve given is true to the best of my knowledge.</p>
<div class="notice margin-bottom-30">
<i class="icon icon-important">
<span class="visually-hidden">Warning</span>
</i>
<strong class="bold-small">
I understand that if I give false information, my organisation's licence will not be updated
and may be revoked.
</strong>
</div>
<div class="form-group">
<input type="submit" class="button" value="Accept and send">
</div>
</form>
<p>or <a href="/cancel">cancel</a></p>
</div>
</div> <!-- /grid-row -->
</main>
{% endblock %}
| chris-hanson-hoddat/sms-redesign | app/views/org/educational-oversight/check_answer_replace.html | HTML | mit | 2,031 |
<html>
<head>
<link href="/media/info_page.css" rel="stylesheet" type="text/css">
<link rel="icon" type="image/x-icon" href="/media/images/equilibrator_favicon.png">
<title>eQuilibrator relevant publications</title>
{% include "analytics.html" %}
</head>
<body>
<div class="container">
{% include "logo_large.html" %}
<div class="title">Relevant publications:</div>
<div class="references">
<ul>
<li>
A. Flamholz, E. Noor, A. Bar-Even, R. Milo, </br>
<b>eQuilibrator - the biochemical thermodynamics calculator
<a href="http://www.nar.oxfordjournals.org/cgi/doi/10.1093/nar/gkr874"></b></br>
<i>Nucleic Acids Res (2012) 40:D770-5</i> [DOI: 10.1093/nar/gkr874]</a></br></br></br>
</li>
<li>E. Noor, A. Bar-Even, A. Flamholz, Y. Lubling, D. Davidi, R. Milo,</br>
<b>An integrated open framework for thermodynamics of reactions that combines accuracy and coverage
<a href="http://bioinformatics.oxfordjournals.org/content/28/15/2037.long"></b></br>
<i>Bioinformatics (2012) 28:2037-2044</i> [DOI: 10.1093/bioinformatics/bts317]</a></br></br></br>
</li>
<li>
E. Noor, H.S. Haraldsdóttir, R. Milo, R.M.T. Fleming,</br>
<b>Consistent Estimation of Gibbs Energy Using Component Contributions
<a href="http://dx.plos.org/10.1371/journal.pcbi.1003098"></b></br>
<i>PLoS Comput Biol (2013) 9:e1003098</i> [DOI: 10.1371/journal.pcbi.1003098]</a>
</li>
</ul>
</div>
{% include "footer.html" %}
</div>
</body> | flamholz/equilibrator | templates/cite.html | HTML | mit | 1,728 |
<?xml version="1.0" encoding="utf-8"?>
<!-- Generate more at customizr.net -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg id="rss-feed" class="custom-icon" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 100 100" style="height: 40px; width: 40px;"><rect style="opacity: 1; fill: rgb(41, 104, 162);" class="outer-shape" x="0" y="0" width="100" height="100" rx="20" ry="20"></rect>
<path class="inner-shape" style="opacity:1;fill:#fff;" transform="translate(25,25) scale(0.5)" d="M14.044,72.866C6.848,72.866,1,78.736,1,85.889c0,7.192,5.848,12.997,13.044,12.997c7.223,0,13.062-5.804,13.062-12.997 C27.106,78.736,21.267,72.866,14.044,72.866z M1.015,34.299v18.782c12.229,0,23.73,4.782,32.392,13.447 C42.057,75.172,46.832,86.725,46.832,99h18.865C65.697,63.321,36.672,34.3,1.015,34.299L1.015,34.299z M1.038,1v18.791 C44.657,19.792,80.16,55.329,80.16,99H99C99,44.979,55.048,1,1.038,1z"></path>
</svg>
| hoanguc3m/hoanguc3m.github.io | _includes/svg-icons/rss.html | HTML | mit | 1,013 |
<!DOCTYPE html>
<html>
<head>
<title>scope.litcoffee</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, target-densitydpi=160dpi, initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">
<link rel="stylesheet" media="all" href="docco.css" />
</head>
<body>
<div id="container">
<div id="background"></div>
<ul id="jump_to">
<li>
<a class="large" href="javascript:void(0);">Jump To …</a>
<a class="small" href="javascript:void(0);">+</a>
<div id="jump_wrapper">
<div id="jump_page">
<a class="source" href="browser.html">
browser.coffee
</a>
<a class="source" href="cake.html">
cake.coffee
</a>
<a class="source" href="coffee-script.html">
coffee-script.coffee
</a>
<a class="source" href="command.html">
command.coffee
</a>
<a class="source" href="grammar.html">
grammar.coffee
</a>
<a class="source" href="helpers.html">
helpers.coffee
</a>
<a class="source" href="index.html">
index.coffee
</a>
<a class="source" href="lexer.html">
lexer.coffee
</a>
<a class="source" href="nodes.html">
nodes.coffee
</a>
<a class="source" href="optparse.html">
optparse.coffee
</a>
<a class="source" href="register.html">
register.coffee
</a>
<a class="source" href="repl.html">
repl.coffee
</a>
<a class="source" href="rewriter.html">
rewriter.coffee
</a>
<a class="source" href="scope.html">
scope.litcoffee
</a>
<a class="source" href="sourcemap.html">
sourcemap.litcoffee
</a>
</div>
</li>
</ul>
<ul class="sections">
<li id="title">
<div class="annotation">
<h1>scope.litcoffee</h1>
</div>
</li>
<li id="section-1">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-1">¶</a>
</div>
<p>The <strong>Scope</strong> class regulates lexical scoping within CoffeeScript. As you
generate code, you create a tree of scopes in the same shape as the nested
function bodies. Each scope knows about the variables declared within it,
and has a reference to its parent enclosing scope. In this way, we know which
variables are new and need to be declared with <code>var</code>, and which are shared
with external scopes.</p>
</div>
<div class="content"><div class='highlight'><pre><span class="hljs-built_in">exports</span>.Scope = <span class="hljs-class"><span class="hljs-keyword">class</span> <span class="hljs-title">Scope</span></span></pre></div></div>
</li>
<li id="section-2">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-2">¶</a>
</div>
<p>Initialize a scope with its parent, for lookups up the chain,
as well as a reference to the <strong>Block</strong> node it belongs to, which is
where it should declare its variables, a reference to the function that
it belongs to, and a list of variables referenced in the source code
and therefore should be avoided when generating variables.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-attribute">constructor</span>: <span class="hljs-function"><span class="hljs-params">(parent, <span class="hljs-property">@expressions</span>, <span class="hljs-property">@method</span>, <span class="hljs-property">@referencedVars</span> = [ ], forceStrict = <span class="hljs-literal">false</span>)</span> -></span>
<span class="hljs-property">@parent</span> = parent
<span class="hljs-property">@strict</span> = forceStrict <span class="hljs-keyword">or</span> parent?.strict
<span class="hljs-property">@variables</span> = [{<span class="hljs-attribute">name</span>: <span class="hljs-string">'arguments'</span>, <span class="hljs-attribute">type</span>: <span class="hljs-string">'arguments'</span>}]
<span class="hljs-property">@positions</span> = {}
<span class="hljs-property">@utilities</span> = {} <span class="hljs-keyword">unless</span> parent</pre></div></div>
</li>
<li id="section-3">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-3">¶</a>
</div>
<p>The <code>@root</code> is the top-level <strong>Scope</strong> object for a given file.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-keyword">if</span> forceStrict
<span class="hljs-property">@root</span> = @
<span class="hljs-keyword">else</span>
<span class="hljs-property">@root</span> = parent?.root ? @</pre></div></div>
</li>
<li id="section-4">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-4">¶</a>
</div>
<p>Adds a new variable or overrides an existing one.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-attribute">add</span>: <span class="hljs-function"><span class="hljs-params">(name, type, immediate)</span> -></span>
<span class="hljs-keyword">return</span> <span class="hljs-property">@parent</span>.add name, type, immediate <span class="hljs-keyword">if</span> <span class="hljs-property">@shared</span> <span class="hljs-keyword">and</span> <span class="hljs-keyword">not</span> immediate
<span class="hljs-keyword">if</span> <span class="hljs-attribute">Object</span>::hasOwnProperty.call <span class="hljs-property">@positions</span>, name
<span class="hljs-property">@variables</span>[<span class="hljs-property">@positions</span>[name]].type = type
<span class="hljs-keyword">else</span>
<span class="hljs-property">@positions</span>[name] = <span class="hljs-property">@variables</span>.push({name, type}) - <span class="hljs-number">1</span></pre></div></div>
</li>
<li id="section-5">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-5">¶</a>
</div>
<p>When <code>super</code> is called, we need to find the name of the current method we're
in, so that we know how to invoke the same method of the parent class. This
can get complicated if super is being called from an inner function.
<code>namedMethod</code> will walk up the scope tree until it either finds the first
function object that has a name filled in, or bottoms out.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-attribute">namedMethod</span>:<span class="hljs-function"> -></span>
<span class="hljs-keyword">return</span> <span class="hljs-property">@method</span> <span class="hljs-keyword">if</span> <span class="hljs-property">@method</span>?.name <span class="hljs-keyword">or</span> !<span class="hljs-property">@parent</span>
<span class="hljs-property">@parent</span>.namedMethod()</pre></div></div>
</li>
<li id="section-6">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-6">¶</a>
</div>
<p>Look up a variable name in lexical scope, and declare it if it does not
already exist.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-attribute">find</span>: <span class="hljs-function"><span class="hljs-params">(name)</span> -></span>
<span class="hljs-keyword">return</span> <span class="hljs-literal">yes</span> <span class="hljs-keyword">if</span> <span class="hljs-property">@check</span> name
<span class="hljs-property">@add</span> name, <span class="hljs-string">'var'</span>
<span class="hljs-literal">no</span></pre></div></div>
</li>
<li id="section-7">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-7">¶</a>
</div>
<p>Reserve a variable name as originating from a function parameter for this
scope. No <code>var</code> required for internal references.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-attribute">parameter</span>: <span class="hljs-function"><span class="hljs-params">(name)</span> -></span>
<span class="hljs-keyword">return</span> <span class="hljs-keyword">if</span> <span class="hljs-property">@shared</span> <span class="hljs-keyword">and</span> <span class="hljs-property">@parent</span>.check name, <span class="hljs-literal">yes</span>
<span class="hljs-property">@add</span> name, <span class="hljs-string">'param'</span></pre></div></div>
</li>
<li id="section-8">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-8">¶</a>
</div>
<p>Just check to see if a variable has already been declared, without reserving,
walks up to the root scope.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-attribute">check</span>: <span class="hljs-function"><span class="hljs-params">(name)</span> -></span>
!!(<span class="hljs-property">@type</span>(name) <span class="hljs-keyword">or</span> <span class="hljs-property">@parent</span>?.check(name))</pre></div></div>
</li>
<li id="section-9">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-9">¶</a>
</div>
<p>Generate a temporary variable name at the given index.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-attribute">temporary</span>: <span class="hljs-function"><span class="hljs-params">(name, index, single=<span class="hljs-literal">false</span>)</span> -></span>
<span class="hljs-keyword">if</span> single
(index + parseInt name, <span class="hljs-number">36</span>).toString(<span class="hljs-number">36</span>).replace <span class="hljs-regexp">/\d/g</span>, <span class="hljs-string">'a'</span>
<span class="hljs-keyword">else</span>
name + (index <span class="hljs-keyword">or</span> <span class="hljs-string">''</span>)</pre></div></div>
</li>
<li id="section-10">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-10">¶</a>
</div>
<p>Gets the type of a variable.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-attribute">type</span>: <span class="hljs-function"><span class="hljs-params">(name)</span> -></span>
<span class="hljs-keyword">return</span> v.type <span class="hljs-keyword">for</span> v <span class="hljs-keyword">in</span> <span class="hljs-property">@variables</span> <span class="hljs-keyword">when</span> v.name <span class="hljs-keyword">is</span> name
<span class="hljs-literal">null</span></pre></div></div>
</li>
<li id="section-11">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-11">¶</a>
</div>
<p>If we need to store an intermediate result, find an available name for a
compiler-generated variable. <code>_var</code>, <code>_var2</code>, and so on...</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-attribute">freeVariable</span>: <span class="hljs-function"><span class="hljs-params">(name, options={})</span> -></span>
index = <span class="hljs-number">0</span>
<span class="hljs-keyword">loop</span>
temp = <span class="hljs-property">@temporary</span> name, index, options.single
<span class="hljs-keyword">break</span> <span class="hljs-keyword">unless</span> <span class="hljs-property">@check</span>(temp) <span class="hljs-keyword">or</span> temp <span class="hljs-keyword">in</span> <span class="hljs-property">@root</span>.referencedVars
index++
<span class="hljs-property">@add</span> temp, <span class="hljs-string">'var'</span>, <span class="hljs-literal">yes</span> <span class="hljs-keyword">if</span> options.reserve ? <span class="hljs-literal">true</span>
temp</pre></div></div>
</li>
<li id="section-12">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-12">¶</a>
</div>
<p>Ensure that an assignment is made at the top of this scope
(or at the top-level scope, if requested).</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-attribute">assign</span>: <span class="hljs-function"><span class="hljs-params">(name, value)</span> -></span>
<span class="hljs-property">@add</span> name, {value, <span class="hljs-attribute">assigned</span>: <span class="hljs-literal">yes</span>}, <span class="hljs-literal">yes</span>
<span class="hljs-property">@hasAssignments</span> = <span class="hljs-literal">yes</span></pre></div></div>
</li>
<li id="section-13">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-13">¶</a>
</div>
<p>Does this scope have any declared variables?</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-attribute">hasDeclarations</span>:<span class="hljs-function"> -></span>
!!<span class="hljs-property">@declaredVariables</span>().length</pre></div></div>
</li>
<li id="section-14">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-14">¶</a>
</div>
<p>Return the list of variables first declared in this scope.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-attribute">declaredVariables</span>:<span class="hljs-function"> -></span>
(v.name <span class="hljs-keyword">for</span> v <span class="hljs-keyword">in</span> <span class="hljs-property">@variables</span> <span class="hljs-keyword">when</span> v.type <span class="hljs-keyword">is</span> <span class="hljs-string">'var'</span>).sort()</pre></div></div>
</li>
<li id="section-15">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-15">¶</a>
</div>
<p>Return the list of assignments that are supposed to be made at the top
of this scope.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-attribute">assignedVariables</span>:<span class="hljs-function"> -></span>
<span class="hljs-string">"<span class="hljs-subst">#{v.name}</span> = <span class="hljs-subst">#{v.type.value}</span>"</span> <span class="hljs-keyword">for</span> v <span class="hljs-keyword">in</span> <span class="hljs-property">@variables</span> <span class="hljs-keyword">when</span> v.type.assigned</pre></div></div>
</li>
</ul>
</div>
</body>
</html>
| rev22/reflective-coffeescript | documentation/docs/scope.html | HTML | mit | 17,688 |
<!DOCTYPE html>
<html>
<head>
<title>Text Gravity</title>
<style>
label, input, textarea {
display: block;
}
textarea {
width: 300px;
height: 100px;
}
</style>
</head>
<body>
<form method="get" action="TextGravity.php">
<label>Text:</label>
<textarea name="text">The Milky Way is the galaxy that contains our star system</textarea>
<label>Line length:</label>
<input type="text" name="lineLength" value="10"/>
<input type="submit" value="SUBMIT"/>
</form>
</body>
</html> | ttitto/PHP | Softuni/PHPBasicsCourse/PHPExam/Task03/TextGravity.html | HTML | mit | 594 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<title>Psalm 52 (KJV-VN)</title>
<link href="../../../build/mobile.css" rel="stylesheet" />
<script src="../../../build/mobile.js"></script>
</head>
<body dir="ltr" class="section-document">
<div class="header"><div class="nav">
<a class="name" href="PS.html">KJV-Vietnamese Version</a><a class="location" href="PS.html">Psalm 52</a><a class="prev" href="PS51.html"><</a>
<a class="home" href="index.html">=</a>
<a class="next" href="PS53.html">></a>
</div></div>
<div class="section chapter PS PS52 vn_kjv eng " dir="ltr" lang="en" data-id="PS52" data-nextid="PS53" data-previd="PS51">
<div class="c">Psalm 52</div>
<div class="p">
<span class="v-num v-1">1 </span><span class="v PS52_1" data-id="PS52_1"><l s="H1984" m="strongMorph:TH8691">Why boastest</l> <l s="H7451">thou thyself in mischief</l>, <l s="H1368">O mighty</l> <l s="H2617">man? the goodness</l> <l s="H410">của Đức Chúa Trời</l> <span class="add">endureth</span> <l s="H3117">continually</l>.<span class="note" id="note-1"><a class="key" href="#footnote-1">1</a></span></span>
<span class="v-num v-2">2 </span><span class="v PS52_2" data-id="PS52_2"><l s="H3956">lưỡi của ngươi</l> <l s="H2803" m="strongMorph:TH8799">deviseth</l> <l s="H1942">mischiefs</l>; <l s="H3913" m="strongMorph:TH8794">like a sharp</l> <l s="H8593">razor</l>, <l s="H6213" m="strongMorph:TH8802">working</l> <l s="H7423">deceitfully</l>.</span>
<span class="v-num v-3">3 </span><span class="v PS52_3" data-id="PS52_3"><l s="H157" m="strongMorph:TH8804">Thou lovest</l> <l s="H7451">evil</l> <l s="H2896">more than good</l>; <span class="add">và</span> <l s="H8267">lying</l> <l s="H1696" m="strongMorph:TH8763">rather than to speak</l> <l s="H6664">sự công chính</l>. <l s="H5542">Selah</l>.</span>
<span class="v-num v-4">4 </span><span class="v PS52_4" data-id="PS52_4"><l s="H157" m="strongMorph:TH8804">Thou lovest</l> <l s="H1105">all devouring</l> <l s="H1697">words</l>, O <span class="add">thou</span> <l s="H4820">deceitful</l> <l s="H3956">tongue</l>.<span class="note" id="note-2"><a class="key" href="#footnote-2">2</a></span></span>
<span class="v-num v-5">5 </span><span class="v PS52_5" data-id="PS52_5"><l s="H410">Chúa</l> <l s="H5422" m="strongMorph:TH8799">shall likewise destroy</l> <l s="H5331">thee for ever</l>, <l s="H2846" m="strongMorph:TH8799">he shall take thee away</l>, <l s="H5255" m="strongMorph:TH8799">và pluck thee out</l> of <span class="add">thy</span> <l s="H168">dwelling place</l>, <l s="H8327" m="strongMorph:TH8765">và root thee out</l> <l s="H776">của the land</l> <l s="H2416">của the living</l>. <l s="H5542">Selah</l>.<span class="note" id="note-3"><a class="key" href="#footnote-3">3</a></span></span>
<span class="v-num v-6">6 </span><span class="v PS52_6" data-id="PS52_6"><l s="H6662">The righteous</l> <l s="H7200" m="strongMorph:TH8799">also shall see</l>, <l s="H3372" m="strongMorph:TH8799">và fear</l>, <l s="H7832" m="strongMorph:TH8799">và shall laugh</l> at him:</span>
<span class="v-num v-7">7 </span><span class="v PS52_7" data-id="PS52_7">Lo, <span class="add">this is</span> <l s="H1397">the man</l> <span class="add">that</span> <l s="H7760" m="strongMorph:TH8799">made</l> <l s="H430">not Đức Chúa Trời</l> <l s="H4581">his strength</l>; <l s="H982" m="strongMorph:TH8799">but trusted</l> <l s="H7230">trong the abundance</l> <l s="H6239">của his riches</l>, <span class="add">và</span> <l s="H5810" m="strongMorph:TH8799">strengthened</l> <l s="H1942">himself in his wickedness</l>.<span class="note" id="note-4"><a class="key" href="#footnote-4">4</a></span></span>
<span class="v-num v-8">8 </span><span class="v PS52_8" data-id="PS52_8">But I <span class="add">am</span> <l s="H7488">like a green</l> <l s="H2132">olive tree</l> <l s="H1004">trong the house</l> <l s="H430">của Đức Chúa Trời</l>: <l s="H982" m="strongMorph:TH8804">I trust</l> <l s="H2617">trong the mercy</l> <l s="H430">của Đức Chúa Trời</l> <l s="H5769">for ever</l> <l s="H5703">và ever</l>.</span>
<span class="v-num v-9">9 </span><span class="v PS52_9" data-id="PS52_9"><l s="H3034" m="strongMorph:TH8686">I will praise</l> <l s="H5769">thee for ever</l>, <l s="H6213" m="strongMorph:TH8804">because thou hast done</l> <span class="add">it</span>: <l s="H6960" m="strongMorph:TH8762">và I will wait</l> <l s="H8034">on thy name</l>; for <span class="add">it is</span> <l s="H2896">good</l> <l s="H2623">before thy saints</l>.</span>
</div>
</div>
<div class="footnotes">
<span class="footnote" id="footnote-1"><span class="key">1</span><a class="backref" href="#note-1">52:1</a><span class="text">Maschil: or, of instruction</span></span><span class="footnote" id="footnote-2"><span class="key">2</span><a class="backref" href="#note-2">52:4</a><span class="text">O thou…: or, và the deceitful tongue</span></span><span class="footnote" id="footnote-3"><span class="key">3</span><a class="backref" href="#note-3">52:5</a><span class="text">destroy…: Heb. beat thee down</span></span><span class="footnote" id="footnote-4"><span class="key">4</span><a class="backref" href="#note-4">52:7</a><span class="text">wickedness: or, substance</span></span>
</div>
<div class="footer"><div class="nav">
<a class="prev" href="PS51.html"><</a>
<a class="home" href="index.html">=</a>
<a class="next" href="PS53.html">></a>
</div></div>
</body>
</html> | khangpng/VietnameseBible | app/content/texts/vn_kjv/PS52.html | HTML | mit | 5,601 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Coq bench</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../../..">Unstable</a></li>
<li class="active"><a href="">8.4.dev / contrib:relation-algebra 8.4.dev</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="../../../../../about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../../..">« Up</a>
<h1>contrib:relation-algebra <small>8.4.dev</small></h1>
<table class="table table-striped text-center">
<thead>
<tr>
<td>Date</td>
<td>Time</td>
<td>Relative</td>
<td>Status</td>
</tr>
</thead>
<tbody>
<tr>
<td>2015-01-31</td>
<td>05:04:50</td>
<td><script>document.write(moment("2015-01-31 05:04:50 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="success"><a href="2015-01-31_05-04-50.html">2 m 29 s</a></td>
</tr>
<tr>
<td>2014-12-13</td>
<td>08:31:47</td>
<td><script>document.write(moment("2014-12-13 08:31:47 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="danger"><a href="2014-12-13_08-31-47.html">Error</a></td>
</tr>
<tr>
<td>2014-12-03</td>
<td>22:27:58</td>
<td><script>document.write(moment("2014-12-03 22:27:58 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="success"><a href="2014-12-03_22-27-58.html">2 m 29 s</a></td>
</tr>
<tr>
<td>2014-11-29</td>
<td>17:44:14</td>
<td><script>document.write(moment("2014-11-29 17:44:14 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="danger"><a href="2014-11-29_17-44-14.html">Error</a></td>
</tr>
<tr>
<td>2014-11-20</td>
<td>21:47:30</td>
<td><script>document.write(moment("2014-11-20 21:47:30 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="success"><a href="2014-11-20_21-47-30.html">2 m 26 s</a></td>
</tr>
<tr>
<td>2014-11-19</td>
<td>21:53:26</td>
<td><script>document.write(moment("2014-11-19 21:53:26 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="success"><a href="2014-11-19_21-53-26.html">2 m 27 s</a></td>
</tr>
<tr>
<td>2014-11-18</td>
<td>18:25:03</td>
<td><script>document.write(moment("2014-11-18 18:25:03 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="danger"><a href="2014-11-18_18-25-03.html">Error</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html> | coq-bench/coq-bench.github.io-old | clean/Linux-x86_64-4.02.1-1.2.0/unstable/8.4.dev/contrib:relation-algebra/8.4.dev/index.html | HTML | mit | 5,353 |
v<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="Notes on Data Science, Machine Learning, & Artificial Intelligence">
<meta name="author" content="Chris Albon">
<link rel="icon" href="../favicon.ico">
<title>For Looping - Scala</title>
<!-- JQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="../theme/js/jquery.min.js"><\/script>')
</script>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="../theme/css/bootstrap.css" />
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link rel="stylesheet" type="text/css" href="../theme/css/ie10-viewport-bug-workaround.css" />
<!-- Custom styles for this template -->
<link rel="stylesheet" type="text/css" href="../theme/css/style.css" />
<link rel="stylesheet" type="text/css" href="../theme/css/notebooks.css" />
<link href='https://fonts.googleapis.com/css?family=PT+Serif:400,700|Roboto:400,500,700' rel='stylesheet' type='text/css'>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link href="http://runningthenumbers.co.uk/feeds/all.rss.xml" type="application/rss+xml" rel="alternate" title="Running the Numbers | Data Science Notes and Resources Full RSS Feed" /> <link href="http://runningthenumbers.co.uk/feeds/scala.rss.xml" type="application/rss+xml" rel="alternate" title="Running the Numbers | Data Science Notes and Resources Categories RSS Feed" />
<meta name="tags" content="Basics" />
<meta name="google-site-verification" content="7RLmddm4HbzdQLpwH2LH94_vBNmcaMGZSEhmmF5n0NM" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-111487179-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-111487179-1');
</script>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="..">Running The Numbers</a>
</div>
<div class="navbar-collapse collapse" id="searchbar">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">ML/AI Notes<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="..#Blog">Blog</a></li>
<li><a href="..#Machine-Learning">Machine Learning</a></li>
<li><a href="..#Deep-Learning">Deep Learning</a></li>
<li><a href="..#Algorithms">Algorithms</a></li>
<li><a href="..#Python">Python</a></li>
<li><a href="..#Statistics">Statistics</a></li>
<li><a href="..#Cloud-Computing">Cloud Computing</a></li>
<li><a href="..#Javascript">Javascript</a></li>
<li><a href="..#SQL">SQL</a></li>
<li><a href="..#Scala">Scala</a></li>
<li><a href="..#Regex">Regex</a></li>
<li><a href="..#Mathematics">Mathematics</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">About<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="../pages/about.html">About Chris</a></li>
<li><a href="https://github.com/chrisalbon">GitHub</a></li>
<li><a href="https://twitter.com/chrisalbon">Twitter</a></li>
<li><a href="https://www.linkedin.com/in/chrisralbon">LinkedIn</a></li>
<li><a href="https://pinboard.in/u:chrisalbon">Pinboard</a></li>
</ul>
</li>
<!--<li class="dropdown">
<a href="../feeds/blog.rss.xml">Blog RSS</a>
</li>-->
</ul>
<form class="navbar-form" action="../search.html" onsubmit="return validateForm(this.elements['q'].value);">
<div class="form-group" style="display:inline;">
<div class="input-group" style="display:table;">
<span class="input-group-addon" style="width:1%;"><span class="glyphicon glyphicon-search"></span></span>
<input class="form-control search-query" name="q" id="tipue_search_input" placeholder="e.g. scikit KNN, pandas merge" required autocomplete="off" type="text">
</div>
</div>
</form>
</div>
<!--/.nav-collapse -->
</div>
</div>
<!-- end of header section -->
<div class="container">
<div class="alert alert-warning advert" role="alert">
Want to learn machine learning? Use my <a href="https://machinelearningflashcards.com" class="alert-link">machine learning flashcards</a>.
</div>
<section id="content" class="body">
<header>
<h1>
For Looping
</h1>
<ol class="breadcrumb">
<li>
<time class="published" datetime="2017-01-03T12:00:00+00:00">
03 January 2017
</time>
</li>
<li>Scala</li>
<li>Basics</li>
</ol>
</header>
<div class='article_content'>
<p>This tutorial was inspired by the awesome <a href="http://amzn.to/2lxbrxN">Scala Cookbook</a>.</p>
<h2>Create An Array</h2>
<div class="highlight"><pre><span></span><span class="k">val</span> <span class="n">staffMembers</span> <span class="k">=</span> <span class="nc">Array</span><span class="o">(</span><span class="s">"Jason Miller"</span><span class="o">,</span> <span class="s">"Steve Miller"</span><span class="o">,</span> <span class="s">"Sally Fields"</span><span class="o">)</span>
</pre></div>
<h2>Loop Over Every Item In The Array</h2>
<div class="highlight"><pre><span></span><span class="c1">// Create a value that is the output, then for each person in staff</span>
<span class="k">val</span> <span class="n">staffFirstNames</span> <span class="k">=</span> <span class="k">for</span> <span class="o">(</span><span class="n">person</span> <span class="k"><-</span> <span class="n">staffMembers</span><span class="o">)</span> <span class="k">yield</span> <span class="o">{</span>
<span class="c1">// Upper case the name</span>
<span class="k">val</span> <span class="n">upperCaseFullNames</span> <span class="k">=</span> <span class="n">person</span><span class="o">.</span><span class="n">toUpperCase</span>
<span class="c1">// Get the first name by splitting the full name by space and taking the first element</span>
<span class="k">val</span> <span class="n">firstName</span> <span class="k">=</span> <span class="n">upperCaseFullNames</span><span class="o">.</span><span class="n">split</span><span class="o">(</span><span class="s">" "</span><span class="o">)(</span><span class="mi">0</span><span class="o">)</span>
<span class="c1">// Return the first name</span>
<span class="n">firstName</span>
<span class="o">}</span>
</pre></div>
<div class="highlight"><pre><span></span><span class="c1">// View the returned values</span>
<span class="n">staffFirstNames</span>
</pre></div>
<div class="highlight"><pre><span></span>Array(JASON, STEVE, SALLY)
</pre></div>
<h2>Loop Over Every Item In The Array That Meets A Criteria</h2>
<p>An if statement in a for loop is called a "guard."</p>
<div class="highlight"><pre><span></span><span class="c1">// Create a value that is the output, then for each person in staff with the last name of Miller</span>
<span class="k">val</span> <span class="n">staffWithLastNameMiller</span> <span class="k">=</span> <span class="k">for</span> <span class="o">(</span><span class="n">person</span> <span class="k"><-</span> <span class="n">staffMembers</span> <span class="k">if</span> <span class="n">person</span><span class="o">.</span><span class="n">split</span><span class="o">(</span><span class="s">" "</span><span class="o">)(</span><span class="mi">1</span><span class="o">)</span> <span class="o">==</span> <span class="s">"Miller"</span><span class="o">)</span> <span class="k">yield</span> <span class="o">{</span>
<span class="c1">// Get the first name by splitting the full name by space and taking the first element</span>
<span class="k">val</span> <span class="n">firstName</span> <span class="k">=</span> <span class="n">person</span><span class="o">.</span><span class="n">split</span><span class="o">(</span><span class="s">" "</span><span class="o">)(</span><span class="mi">0</span><span class="o">)</span>
<span class="c1">// Return the first name</span>
<span class="n">firstName</span>
<span class="o">}</span>
</pre></div>
<div class="highlight"><pre><span></span><span class="c1">// View the returned values</span>
<span class="n">staffWithLastNameMiller</span>
</pre></div>
<div class="highlight"><pre><span></span>Array(Jason, Steve)
</pre></div>
<h2>Loop With Value And Index</h2>
<p>This is like Python's <code>enumerate()</code>.</p>
<div class="highlight"><pre><span></span><span class="c1">// Create a value that is the output, then for each person and index, yield</span>
<span class="k">val</span> <span class="n">staffNamesAndIndex</span> <span class="k">=</span> <span class="k">for</span> <span class="o">((</span><span class="n">person</span><span class="o">,</span> <span class="n">i</span><span class="o">)</span> <span class="k"><-</span> <span class="n">staffMembers</span><span class="o">.</span><span class="n">zipWithIndex</span><span class="o">)</span> <span class="k">yield</span> <span class="o">{</span>
<span class="c1">// Upper case the name</span>
<span class="k">val</span> <span class="n">firstName</span> <span class="k">=</span> <span class="n">person</span><span class="o">.</span><span class="n">split</span><span class="o">(</span><span class="s">" "</span><span class="o">)(</span><span class="mi">0</span><span class="o">)</span>
<span class="c1">// Return a tuple with the first name and index</span>
<span class="o">(</span><span class="n">firstName</span><span class="o">,</span> <span class="n">i</span><span class="o">)</span>
<span class="o">}</span>
</pre></div>
<div class="highlight"><pre><span></span><span class="c1">// View the returned values</span>
<span class="n">staffNamesAndIndex</span>
</pre></div>
<div class="highlight"><pre><span></span>Array((Jason,0), (Steve,1), (Sally,2))
</pre></div>
</div>
<aside>
<div class="bug-reporting__panel">
<h3>Find an error or bug?</h3>
<p>Everything on this site is available on GitHub. Head to <a href='https://github.com/chrisalbon/notes_on_data_science_machine_learning_and_artificial_intelligence/issues/new'>and submit a suggested change</a>. You can also message me directly on <a href='https://twitter.com/chrisalbon'>Twitter</a>.</p>
</div>
</aside>
</section>
</div>
<!-- start of footer section -->
<footer class="footer">
<div class="container">
<p class="text-muted">
<center>This project contains 486 pages and is available on <a href="https://github.com/chrisalbon/notes_on_data_science_machine_learning_and_artificial_intelligence">GitHub</a>.
<br/>
Copyright © Chris Albon,
<time datetime="2017">2017</time>.
</center>
</p>
</div>
</footer>
<!-- This jQuery line finds any span that contains code highlighting classes and then selects the parent <pre> tag and adds a border. This is done as a workaround to visually distinguish the code inputs and outputs -->
<script>
$( ".hll, .n, .c, .err, .k, .o, .cm, .cp, .c1, .cs, .gd, .ge, .gr, .gh, .gi, .go, .gp, .gs, .gu, .gt, .kc, .kd, .kn, .kp, .kr, .kt, .m, .s, .na, .nb, .nc, .no, .nd, .ni, .ne, .nf, .nl, .nn, .nt, .nv, .ow, .w, .mf, .mh, .mi, .mo, .sb, .sc, .sd, .s2, .se, .sh, .si, .sx, .sr, .s1, .ss, .bp, .vc, .vg, .vi, .il" ).parent( "pre" ).css( "border", "1px solid #DEDEDE" );
</script>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="../theme/js/bootstrap.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="../theme/js/ie10-viewport-bug-workaround.js"></script>
<!-- Amazon OneLink -->
<script src="//z-na.amazon-adsystem.com/widgets/onejs?MarketPlace=US&adInstanceId=946c0716-c88a-4df0-8944-a058be8c1e86"></script>
</body>
</html> | tpin3694/tpin3694.github.io | scala/for_looping.html | HTML | mit | 14,539 |
<html>
<head>
<title>OGRE: Ogre::ScriptCompiler::Error Struct Reference - OGRE Documentation</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link type="text/css" rel="stylesheet" href="doxygen.css">
<link type="text/css" rel="stylesheet" href="tabs.css">
</head>
<body>
<!-- Generated by Doxygen 1.7.1 -->
<div class="navigation" id="top">
<div class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="dirs.html"><span>Directories</span></a></li>
</ul>
</div>
<div class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div class="navpath">
<ul>
<li><a class="el" href="namespaceOgre.html">Ogre</a> </li>
<li><a class="el" href="classOgre_1_1ScriptCompiler.html">Ogre::ScriptCompiler</a> </li>
<li><a class="el" href="structOgre_1_1ScriptCompiler_1_1Error.html">Ogre::ScriptCompiler::Error</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-attribs">Public Attributes</a> </div>
<div class="headertitle">
<h1>Ogre::ScriptCompiler::Error Struct Reference</h1> </div>
</div>
<div class="contents">
<!-- doxytag: class="Ogre::ScriptCompiler::Error" --><!-- doxytag: inherits="Ogre::AllocatedObject" -->
<p><code>#include <<a class="el" href="OgreScriptCompiler_8h_source.html">OgreScriptCompiler.h</a>></code></p>
<div class="dynheader">
Inheritance diagram for Ogre::ScriptCompiler::Error:</div>
<div class="dyncontent">
<div class="center"><img src="structOgre_1_1ScriptCompiler_1_1Error__inherit__graph.gif" border="0" usemap="#Ogre_1_1ScriptCompiler_1_1Error_inherit__map" alt="Inheritance graph"/></div>
<map name="Ogre_1_1ScriptCompiler_1_1Error_inherit__map" id="Ogre_1_1ScriptCompiler_1_1Error_inherit__map">
<area shape="rect" id="node2" href="classOgre_1_1AllocatedObject.html" title="Superclass for all objects that wish to use custom memory allocators when their new / delete operator..." alt="" coords="29,5,176,35"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<p><a href="structOgre_1_1ScriptCompiler_1_1Error-members.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void * </td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1AllocatedObject.html#a421b197ca3a38da17e2eb1531a645fa2">operator new</a> (size_t sz, const char *<a class="el" href="structOgre_1_1ScriptCompiler_1_1Error.html#ab4f4f5ee6194b95f594c97cc3e674d8a">file</a>, int <a class="el" href="structOgre_1_1ScriptCompiler_1_1Error.html#a4f22509637a1cefc4238e11cd1b078c6">line</a>, const char *func)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">operator new, with debug line info <a href="#a421b197ca3a38da17e2eb1531a645fa2"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void * </td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1AllocatedObject.html#ac4bdf968b7b9af8a5239a27da73d5711">operator new</a> (size_t sz)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void * </td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1AllocatedObject.html#ab78a921e54419be677839cdf15d1f0b8">operator new</a> (size_t sz, void *ptr)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">placement operator new <a href="#ab78a921e54419be677839cdf15d1f0b8"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void * </td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1AllocatedObject.html#a4be37baef81876985aa1071ad5acc6dd">operator new[]</a> (size_t sz, const char *<a class="el" href="structOgre_1_1ScriptCompiler_1_1Error.html#ab4f4f5ee6194b95f594c97cc3e674d8a">file</a>, int <a class="el" href="structOgre_1_1ScriptCompiler_1_1Error.html#a4f22509637a1cefc4238e11cd1b078c6">line</a>, const char *func)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">array operator new, with debug line info <a href="#a4be37baef81876985aa1071ad5acc6dd"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void * </td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1AllocatedObject.html#afa2943846ba6a2b5824a12857139cf5e">operator new[]</a> (size_t sz)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1AllocatedObject.html#a8357fe4fb4849772b94baa4bf47c7ded">operator delete</a> (void *ptr)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1AllocatedObject.html#a1c727e879a260c37b00ce5505fe8e144">operator delete</a> (void *ptr, void *)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1AllocatedObject.html#acb46d4b0a597156d9ba5abc39d127792">operator delete</a> (void *ptr, const char *, int, const char *)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1AllocatedObject.html#a93e6a86dde5483c053ca0f2a85bbfd6c">operator delete[]</a> (void *ptr)</td></tr>
<tr><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classOgre_1_1AllocatedObject.html#a595ea4c05da8aa987d3800e65d23355d">operator delete[]</a> (void *ptr, const char *, int, const char *)</td></tr>
<tr><td colspan="2"><h2><a name="pub-attribs"></a>
Public Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespaceOgre.html#af73bbdc8bed8a3e6fcd56bb8fa188c45">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="structOgre_1_1ScriptCompiler_1_1Error.html#ab4f4f5ee6194b95f594c97cc3e674d8a">file</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespaceOgre.html#af73bbdc8bed8a3e6fcd56bb8fa188c45">String</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="structOgre_1_1ScriptCompiler_1_1Error.html#a0e7fe500e20f60c88b23cc78d62858f5">message</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="structOgre_1_1ScriptCompiler_1_1Error.html#a4f22509637a1cefc4238e11cd1b078c6">line</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespaceOgre.html#adf2a0cf2e77143b5ee1d38a75e289545">uint32</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="structOgre_1_1ScriptCompiler_1_1Error.html#a4fa14edde37f9c211d55a6bbe08e340d">code</a></td></tr>
</table>
<hr/><a name="_details"></a><h2>Detailed Description</h2>
<p>Definition at line <a class="el" href="OgreScriptCompiler_8h_source.html#l00193">193</a> of file <a class="el" href="OgreScriptCompiler_8h_source.html">OgreScriptCompiler.h</a>.</p>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a8357fe4fb4849772b94baa4bf47c7ded"></a><!-- doxytag: member="Ogre::ScriptCompiler::Error::operator delete" ref="a8357fe4fb4849772b94baa4bf47c7ded" args="(void *ptr)" -->
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class Alloc > </div>
<table class="memname">
<tr>
<td class="memname">void <a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject</a>< Alloc >::operator delete </td>
<td>(</td>
<td class="paramtype">void * </td>
<td class="paramname"> <em>ptr</em></td>
<td> ) </td>
<td><code> [inherited]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Definition at line <a class="el" href="OgreMemoryAllocatedObject_8h_source.html#l00095">95</a> of file <a class="el" href="OgreMemoryAllocatedObject_8h_source.html">OgreMemoryAllocatedObject.h</a>.</p>
</div>
</div>
<a class="anchor" id="acb46d4b0a597156d9ba5abc39d127792"></a><!-- doxytag: member="Ogre::ScriptCompiler::Error::operator delete" ref="acb46d4b0a597156d9ba5abc39d127792" args="(void *ptr, const char *, int, const char *)" -->
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class Alloc > </div>
<table class="memname">
<tr>
<td class="memname">void <a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject</a>< Alloc >::operator delete </td>
<td>(</td>
<td class="paramtype">void * </td>
<td class="paramname"> <em>ptr</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname"></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [inherited]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Definition at line <a class="el" href="OgreMemoryAllocatedObject_8h_source.html#l00107">107</a> of file <a class="el" href="OgreMemoryAllocatedObject_8h_source.html">OgreMemoryAllocatedObject.h</a>.</p>
</div>
</div>
<a class="anchor" id="a1c727e879a260c37b00ce5505fe8e144"></a><!-- doxytag: member="Ogre::ScriptCompiler::Error::operator delete" ref="a1c727e879a260c37b00ce5505fe8e144" args="(void *ptr, void *)" -->
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class Alloc > </div>
<table class="memname">
<tr>
<td class="memname">void <a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject</a>< Alloc >::operator delete </td>
<td>(</td>
<td class="paramtype">void * </td>
<td class="paramname"> <em>ptr</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">void * </td>
<td class="paramname"></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [inherited]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Definition at line <a class="el" href="OgreMemoryAllocatedObject_8h_source.html#l00101">101</a> of file <a class="el" href="OgreMemoryAllocatedObject_8h_source.html">OgreMemoryAllocatedObject.h</a>.</p>
</div>
</div>
<a class="anchor" id="a93e6a86dde5483c053ca0f2a85bbfd6c"></a><!-- doxytag: member="Ogre::ScriptCompiler::Error::operator delete[]" ref="a93e6a86dde5483c053ca0f2a85bbfd6c" args="(void *ptr)" -->
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class Alloc > </div>
<table class="memname">
<tr>
<td class="memname">void <a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject</a>< Alloc >::operator delete[] </td>
<td>(</td>
<td class="paramtype">void * </td>
<td class="paramname"> <em>ptr</em></td>
<td> ) </td>
<td><code> [inherited]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Definition at line <a class="el" href="OgreMemoryAllocatedObject_8h_source.html#l00112">112</a> of file <a class="el" href="OgreMemoryAllocatedObject_8h_source.html">OgreMemoryAllocatedObject.h</a>.</p>
</div>
</div>
<a class="anchor" id="a595ea4c05da8aa987d3800e65d23355d"></a><!-- doxytag: member="Ogre::ScriptCompiler::Error::operator delete[]" ref="a595ea4c05da8aa987d3800e65d23355d" args="(void *ptr, const char *, int, const char *)" -->
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class Alloc > </div>
<table class="memname">
<tr>
<td class="memname">void <a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject</a>< Alloc >::operator delete[] </td>
<td>(</td>
<td class="paramtype">void * </td>
<td class="paramname"> <em>ptr</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname">, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname"></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [inherited]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Definition at line <a class="el" href="OgreMemoryAllocatedObject_8h_source.html#l00118">118</a> of file <a class="el" href="OgreMemoryAllocatedObject_8h_source.html">OgreMemoryAllocatedObject.h</a>.</p>
</div>
</div>
<a class="anchor" id="a421b197ca3a38da17e2eb1531a645fa2"></a><!-- doxytag: member="Ogre::ScriptCompiler::Error::operator new" ref="a421b197ca3a38da17e2eb1531a645fa2" args="(size_t sz, const char *file, int line, const char *func)" -->
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class Alloc > </div>
<table class="memname">
<tr>
<td class="memname">void* <a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject</a>< Alloc >::operator new </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"> <em>sz</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname"> <em>file</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>line</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname"> <em>func</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [inherited]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>operator new, with debug line info </p>
<p>Definition at line <a class="el" href="OgreMemoryAllocatedObject_8h_source.html#l00067">67</a> of file <a class="el" href="OgreMemoryAllocatedObject_8h_source.html">OgreMemoryAllocatedObject.h</a>.</p>
</div>
</div>
<a class="anchor" id="ac4bdf968b7b9af8a5239a27da73d5711"></a><!-- doxytag: member="Ogre::ScriptCompiler::Error::operator new" ref="ac4bdf968b7b9af8a5239a27da73d5711" args="(size_t sz)" -->
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class Alloc > </div>
<table class="memname">
<tr>
<td class="memname">void* <a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject</a>< Alloc >::operator new </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"> <em>sz</em></td>
<td> ) </td>
<td><code> [inherited]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Definition at line <a class="el" href="OgreMemoryAllocatedObject_8h_source.html#l00072">72</a> of file <a class="el" href="OgreMemoryAllocatedObject_8h_source.html">OgreMemoryAllocatedObject.h</a>.</p>
</div>
</div>
<a class="anchor" id="ab78a921e54419be677839cdf15d1f0b8"></a><!-- doxytag: member="Ogre::ScriptCompiler::Error::operator new" ref="ab78a921e54419be677839cdf15d1f0b8" args="(size_t sz, void *ptr)" -->
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class Alloc > </div>
<table class="memname">
<tr>
<td class="memname">void* <a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject</a>< Alloc >::operator new </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"> <em>sz</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">void * </td>
<td class="paramname"> <em>ptr</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [inherited]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>placement operator new </p>
<p>Definition at line <a class="el" href="OgreMemoryAllocatedObject_8h_source.html#l00078">78</a> of file <a class="el" href="OgreMemoryAllocatedObject_8h_source.html">OgreMemoryAllocatedObject.h</a>.</p>
</div>
</div>
<a class="anchor" id="afa2943846ba6a2b5824a12857139cf5e"></a><!-- doxytag: member="Ogre::ScriptCompiler::Error::operator new[]" ref="afa2943846ba6a2b5824a12857139cf5e" args="(size_t sz)" -->
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class Alloc > </div>
<table class="memname">
<tr>
<td class="memname">void* <a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject</a>< Alloc >::operator new[] </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"> <em>sz</em></td>
<td> ) </td>
<td><code> [inherited]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Definition at line <a class="el" href="OgreMemoryAllocatedObject_8h_source.html#l00090">90</a> of file <a class="el" href="OgreMemoryAllocatedObject_8h_source.html">OgreMemoryAllocatedObject.h</a>.</p>
</div>
</div>
<a class="anchor" id="a4be37baef81876985aa1071ad5acc6dd"></a><!-- doxytag: member="Ogre::ScriptCompiler::Error::operator new[]" ref="a4be37baef81876985aa1071ad5acc6dd" args="(size_t sz, const char *file, int line, const char *func)" -->
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<class Alloc > </div>
<table class="memname">
<tr>
<td class="memname">void* <a class="el" href="classOgre_1_1AllocatedObject.html">Ogre::AllocatedObject</a>< Alloc >::operator new[] </td>
<td>(</td>
<td class="paramtype">size_t </td>
<td class="paramname"> <em>sz</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname"> <em>file</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"> <em>line</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const char * </td>
<td class="paramname"> <em>func</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [inherited]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>array operator new, with debug line info </p>
<p>Definition at line <a class="el" href="OgreMemoryAllocatedObject_8h_source.html#l00085">85</a> of file <a class="el" href="OgreMemoryAllocatedObject_8h_source.html">OgreMemoryAllocatedObject.h</a>.</p>
</div>
</div>
<hr/><h2>Member Data Documentation</h2>
<a class="anchor" id="a4fa14edde37f9c211d55a6bbe08e340d"></a><!-- doxytag: member="Ogre::ScriptCompiler::Error::code" ref="a4fa14edde37f9c211d55a6bbe08e340d" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="namespaceOgre.html#adf2a0cf2e77143b5ee1d38a75e289545">uint32</a> <a class="el" href="structOgre_1_1ScriptCompiler_1_1Error.html#a4fa14edde37f9c211d55a6bbe08e340d">Ogre::ScriptCompiler::Error::code</a></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Definition at line <a class="el" href="OgreScriptCompiler_8h_source.html#l00197">197</a> of file <a class="el" href="OgreScriptCompiler_8h_source.html">OgreScriptCompiler.h</a>.</p>
</div>
</div>
<a class="anchor" id="ab4f4f5ee6194b95f594c97cc3e674d8a"></a><!-- doxytag: member="Ogre::ScriptCompiler::Error::file" ref="ab4f4f5ee6194b95f594c97cc3e674d8a" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="namespaceOgre.html#af73bbdc8bed8a3e6fcd56bb8fa188c45">String</a> <a class="el" href="structOgre_1_1ScriptCompiler_1_1Error.html#ab4f4f5ee6194b95f594c97cc3e674d8a">Ogre::ScriptCompiler::Error::file</a></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Definition at line <a class="el" href="OgreScriptCompiler_8h_source.html#l00195">195</a> of file <a class="el" href="OgreScriptCompiler_8h_source.html">OgreScriptCompiler.h</a>.</p>
</div>
</div>
<a class="anchor" id="a4f22509637a1cefc4238e11cd1b078c6"></a><!-- doxytag: member="Ogre::ScriptCompiler::Error::line" ref="a4f22509637a1cefc4238e11cd1b078c6" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int <a class="el" href="structOgre_1_1ScriptCompiler_1_1Error.html#a4f22509637a1cefc4238e11cd1b078c6">Ogre::ScriptCompiler::Error::line</a></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Definition at line <a class="el" href="OgreScriptCompiler_8h_source.html#l00196">196</a> of file <a class="el" href="OgreScriptCompiler_8h_source.html">OgreScriptCompiler.h</a>.</p>
</div>
</div>
<a class="anchor" id="a0e7fe500e20f60c88b23cc78d62858f5"></a><!-- doxytag: member="Ogre::ScriptCompiler::Error::message" ref="a0e7fe500e20f60c88b23cc78d62858f5" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="namespaceOgre.html#af73bbdc8bed8a3e6fcd56bb8fa188c45">String</a> <a class="el" href="structOgre_1_1ScriptCompiler_1_1Error.html#a0e7fe500e20f60c88b23cc78d62858f5">Ogre::ScriptCompiler::Error::message</a></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Definition at line <a class="el" href="OgreScriptCompiler_8h_source.html#l00195">195</a> of file <a class="el" href="OgreScriptCompiler_8h_source.html">OgreScriptCompiler.h</a>.</p>
</div>
</div>
<hr/>The documentation for this struct was generated from the following file:<ul>
<li><a class="el" href="OgreScriptCompiler_8h_source.html">OgreScriptCompiler.h</a></li>
</ul>
</div>
<hr>
<p>
Copyright © 2008 Torus Knot Software Ltd<br />
<!--Creative Commons License--><a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-sa/3.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike 3.0 Unported License</a>.<br/>
<!--/Creative Commons License--><!-- <rdf:RDF xmlns="http://web.resource.org/cc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<Work rdf:about="">
<license rdf:resource="http://creativecommons.org/licenses/by-sa/2.5/" />
<dc:type rdf:resource="http://purl.org/dc/dcmitype/Text" />
</Work>
<License rdf:about="http://creativecommons.org/licenses/by-sa/2.5/"><permits rdf:resource="http://web.resource.org/cc/Reproduction"/><permits rdf:resource="http://web.resource.org/cc/Distribution"/><requires rdf:resource="http://web.resource.org/cc/Notice"/><requires rdf:resource="http://web.resource.org/cc/Attribution"/><permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/><requires rdf:resource="http://web.resource.org/cc/ShareAlike"/></License></rdf:RDF> -->
Last modified Wed Nov 3 2010 19:25:01
</p>
</body>
</html>
| ttair/TuxSinbad | Docs/api/html/structOgre_1_1ScriptCompiler_1_1Error.html | HTML | mit | 25,679 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>infotheo: 20 m 17 s</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.11.1 / infotheo - 0.2.1</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
infotheo
<small>
0.2.1
<span class="label label-success">20 m 17 s</span>
</small>
</h1>
<p><em><script>document.write(moment("2021-04-06 21:49:33 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-04-06 21:49:33 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.11.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.11.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.11.1 Official release 4.11.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Reynald Affeldt <reynald.affeldt@aist.go.jp>"
homepage: "https://github.com/affeldt-aist/infotheo"
dev-repo: "git+https://github.com/affeldt-aist/infotheo.git"
bug-reports: "https://github.com/affeldt-aist/infotheo/issues"
license: "LGPL-2.1-or-later"
synopsis: "Discrete probabilities and information theory for Coq"
description: """
Infotheo is a Coq library for reasoning about discrete probabilities,
information theory, and linear error-correcting codes."""
build: [
[make "-j%{jobs}%" ]
[make "-C" "extraction" "tests"] {with-test}
]
install: [make "install"]
depends: [
"coq" { (>= "8.11" & < "8.13~") | (= "dev") }
"coq-mathcomp-ssreflect" { (>= "1.11.0" & < "1.12~") }
"coq-mathcomp-fingroup" { (>= "1.11.0" & < "1.12~") }
"coq-mathcomp-algebra" { (>= "1.11.0" & < "1.12~") }
"coq-mathcomp-solvable" { (>= "1.11.0" & < "1.12~") }
"coq-mathcomp-field" { (>= "1.11.0" & < "1.12~") }
"coq-mathcomp-analysis" { (= "0.3.4") }
]
tags: [
"keyword:information theory"
"keyword:probability"
"keyword:error-correcting codes"
"logpath:infotheo"
]
authors: [
"Reynald Affeldt, AIST"
"Manabu Hagiwara, Chiba U. (previously AIST)"
"Jonas Senizergues, ENS Cachan (internship at AIST)"
"Jacques Garrigue, Nagoya U."
"Kazuhiko Sakaguchi, Tsukuba U."
"Taku Asai, Nagoya U. (M2)"
"Takafumi Saikawa, Nagoya U."
"Naruomi Obata, Titech (M2)"
]
url {
http: "https://github.com/affeldt-aist/infotheo/archive/0.2.1.tar.gz"
checksum: "sha512=d2374a83ea23283b20572fc91105d9e457869294663c1574d920cc65eb4afbd220a57dffed19d0185f760df47ddf84895fce3aec68f2f8654ea1d2eb8cf46af2"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-infotheo.0.2.1 coq.8.11.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 2h opam install -y --deps-only coq-infotheo.0.2.1 coq.8.11.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>45 m 52 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 2h opam install -y -v coq-infotheo.0.2.1 coq.8.11.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>20 m 17 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 67 M</p>
<ul>
<li>28 M <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/toy_examples/expected_value_variance.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/degree_profile.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/degree_profile.glob</code></li>
<li>877 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/convex_choice.vo</code></li>
<li>874 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/ldpc_algo_proof.vo</code></li>
<li>856 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/convex_choice.glob</code></li>
<li>814 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/proba.glob</code></li>
<li>671 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/proba.vo</code></li>
<li>669 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/chap2.glob</code></li>
<li>664 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/jtypes.vo</code></li>
<li>523 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/subgraph_partition.vo</code></li>
<li>486 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/ldpc_algo_proof.glob</code></li>
<li>482 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/chap2.vo</code></li>
<li>479 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/channel_coding_direct.glob</code></li>
<li>449 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/ldpc.glob</code></li>
<li>433 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/hamming_code.vo</code></li>
<li>432 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/channel_coding_direct.vo</code></li>
<li>425 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/convex_stone.glob</code></li>
<li>424 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/fsdist.vo</code></li>
<li>420 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/tanner_partition.vo</code></li>
<li>412 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/fdist.vo</code></li>
<li>411 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/fdist.glob</code></li>
<li>406 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/source_coding_vl_converse.glob</code></li>
<li>401 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/jtypes.glob</code></li>
<li>388 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/repcode.vo</code></li>
<li>380 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/subgraph_partition.glob</code></li>
<li>377 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/linearcode.vo</code></li>
<li>376 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/jfdist.glob</code></li>
<li>375 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/jfdist.vo</code></li>
<li>374 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/necset.vo</code></li>
<li>354 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/convex_stone.vo</code></li>
<li>353 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/hamming.vo</code></li>
<li>342 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/ldpc.vo</code></li>
<li>336 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/ldpc_erasure.vo</code></li>
<li>326 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/reed_solomon.glob</code></li>
<li>320 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/success_decode_bound.vo</code></li>
<li>319 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/ssr_ext.vo</code></li>
<li>318 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/summary_tanner.vo</code></li>
<li>310 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/stopping_set.vo</code></li>
<li>307 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/hamming.glob</code></li>
<li>303 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/linearcode.glob</code></li>
<li>303 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/hamming_code.glob</code></li>
<li>288 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/reed_solomon.vo</code></li>
<li>285 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/bch.vo</code></li>
<li>284 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/necset.glob</code></li>
<li>283 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/source_coding_vl_converse.vo</code></li>
<li>277 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/cyclic_code.vo</code></li>
<li>271 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/tanner_partition.glob</code></li>
<li>267 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/kraft.glob</code></li>
<li>262 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/types.vo</code></li>
<li>256 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/Rbigop.vo</code></li>
<li>252 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/euclid.glob</code></li>
<li>248 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/ssr_ext.glob</code></li>
<li>248 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/convex_fdist.vo</code></li>
<li>240 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/fsdist.glob</code></li>
<li>239 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/poly_decoding.vo</code></li>
<li>234 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/summary_tanner.glob</code></li>
<li>231 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/bch.glob</code></li>
<li>225 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/kraft.vo</code></li>
<li>223 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/stopping_set.glob</code></li>
<li>223 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/ldpc_erasure.glob</code></li>
<li>219 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/euclid.vo</code></li>
<li>217 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/bigop_ext.vo</code></li>
<li>213 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/Rbigop.glob</code></li>
<li>213 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/ssralg_ext.vo</code></li>
<li>210 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/bigop_ext.glob</code></li>
<li>207 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/vandermonde.vo</code></li>
<li>205 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/pinsker.glob</code></li>
<li>202 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/pinsker.vo</code></li>
<li>196 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/ssrR.vo</code></li>
<li>196 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/num_occ.glob</code></li>
<li>190 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/poly_decoding.glob</code></li>
<li>189 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/dft.vo</code></li>
<li>188 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/num_occ.vo</code></li>
<li>185 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/ssrR.glob</code></li>
<li>185 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/decoding.vo</code></li>
<li>183 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/toy_examples/conditional_entropy.vo</code></li>
<li>181 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/types.glob</code></li>
<li>179 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/vandermonde.glob</code></li>
<li>178 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/natbin.vo</code></li>
<li>178 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/cyclic_code.glob</code></li>
<li>175 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/grs.vo</code></li>
<li>171 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/summary.vo</code></li>
<li>171 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/ln_facts.vo</code></li>
<li>169 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/ldpc_algo.vo</code></li>
<li>167 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/Reals_ext.vo</code></li>
<li>165 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/conditional_divergence.vo</code></li>
<li>164 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/channel.vo</code></li>
<li>158 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/graphoid.glob</code></li>
<li>155 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/source_coding_vl_direct.vo</code></li>
<li>153 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/source_coding_vl_direct.glob</code></li>
<li>152 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/convex_fdist.glob</code></li>
<li>152 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/success_decode_bound.glob</code></li>
<li>151 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/dft.glob</code></li>
<li>151 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/ln_facts.glob</code></li>
<li>147 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/ssralg_ext.glob</code></li>
<li>145 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/graphoid.vo</code></li>
<li>140 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/degree_profile.v</code></li>
<li>137 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/natbin.glob</code></li>
<li>135 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/conditional_divergence.glob</code></li>
<li>135 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/Ranalysis_ext.vo</code></li>
<li>133 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/binary_symmetric_channel.vo</code></li>
<li>132 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/logb.vo</code></li>
<li>128 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/string_entropy.vo</code></li>
<li>126 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/pproba.vo</code></li>
<li>125 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/joint_typ_seq.glob</code></li>
<li>122 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/log_sum.vo</code></li>
<li>122 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/checksum.vo</code></li>
<li>121 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/tanner.vo</code></li>
<li>120 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/typ_seq.vo</code></li>
<li>118 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/source_coding_fl_direct.vo</code></li>
<li>118 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/binary_symmetric_channel.glob</code></li>
<li>114 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/joint_typ_seq.vo</code></li>
<li>112 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/decoding.glob</code></li>
<li>112 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/source_coding_fl_converse.vo</code></li>
<li>112 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/error_exponent.vo</code></li>
<li>111 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/partition_inequality.vo</code></li>
<li>110 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/summary.glob</code></li>
<li>106 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/convex_choice.v</code></li>
<li>104 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/Reals_ext.glob</code></li>
<li>103 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/entropy.vo</code></li>
<li>103 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/channel.glob</code></li>
<li>103 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/aep.vo</code></li>
<li>102 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/mceliece.vo</code></li>
<li>99 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/shannon_fano.vo</code></li>
<li>98 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/channel_coding_converse.vo</code></li>
<li>98 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/grs.glob</code></li>
<li>98 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/repcode.glob</code></li>
<li>97 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/error_exponent.glob</code></li>
<li>94 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/binary_entropy_function.vo</code></li>
<li>93 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/source_coding_fl_converse.glob</code></li>
<li>93 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/jensen.vo</code></li>
<li>92 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/divergence.vo</code></li>
<li>91 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/channel_code.vo</code></li>
<li>89 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/ssrZ.vo</code></li>
<li>88 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/toy_examples/expected_value_variance_ordn.vo</code></li>
<li>87 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/erasure_channel.vo</code></li>
<li>85 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/toy_examples/expected_value_variance_tuple.vo</code></li>
<li>85 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/alternant.vo</code></li>
<li>83 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/poly_ext.vo</code></li>
<li>82 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/logb.glob</code></li>
<li>78 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/source_coding_fl_direct.glob</code></li>
<li>78 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/typ_seq.glob</code></li>
<li>77 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/string_entropy.glob</code></li>
<li>77 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/proba.v</code></li>
<li>77 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/source_code.vo</code></li>
<li>76 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/variation_dist.vo</code></li>
<li>76 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/pproba.glob</code></li>
<li>76 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/ssrZ.glob</code></li>
<li>74 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/f2.vo</code></li>
<li>74 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/toy_examples/conditional_entropy.glob</code></li>
<li>67 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/max_subset.vo</code></li>
<li>67 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/ldpc_algo_proof.v</code></li>
<li>67 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/Ranalysis_ext.glob</code></li>
<li>62 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/checksum.glob</code></li>
<li>57 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/log_sum.glob</code></li>
<li>54 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/ldpc_algo.glob</code></li>
<li>52 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/chap2.v</code></li>
<li>50 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/subgraph_partition.v</code></li>
<li>50 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/shannon_fano.glob</code></li>
<li>49 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/binary_entropy_function.glob</code></li>
<li>47 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/necset.v</code></li>
<li>47 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/channel_coding_converse.glob</code></li>
<li>46 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/partition_inequality.glob</code></li>
<li>46 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/jtypes.v</code></li>
<li>46 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/tanner.glob</code></li>
<li>46 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/fdist.v</code></li>
<li>45 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/aep.glob</code></li>
<li>44 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/classical_sets_ext.vo</code></li>
<li>42 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/convex_stone.v</code></li>
<li>38 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/tanner_partition.v</code></li>
<li>38 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/entropy.glob</code></li>
<li>37 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/linearcode.v</code></li>
<li>37 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/jfdist.v</code></li>
<li>36 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/channel_coding_direct.v</code></li>
<li>35 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/hamming_code.v</code></li>
<li>35 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/ssr_ext.v</code></li>
<li>34 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/source_coding_vl_converse.v</code></li>
<li>33 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/ldpc.v</code></li>
<li>33 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/max_subset.glob</code></li>
<li>32 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/ssrR.v</code></li>
<li>32 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/reed_solomon.v</code></li>
<li>31 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/divergence.glob</code></li>
<li>31 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/fsdist.v</code></li>
<li>31 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/hamming.v</code></li>
<li>30 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/Rbigop.v</code></li>
<li>30 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/stopping_set.v</code></li>
<li>29 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/euclid.v</code></li>
<li>29 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/poly_ext.glob</code></li>
<li>29 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/kraft.v</code></li>
<li>28 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/jensen.glob</code></li>
<li>28 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/ldpc_erasure.v</code></li>
<li>27 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/summary_tanner.v</code></li>
<li>26 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/toy_examples/expected_value_variance.glob</code></li>
<li>25 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/ln_facts.v</code></li>
<li>24 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/cyclic_code.v</code></li>
<li>23 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/bch.v</code></li>
<li>23 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/channel_code.glob</code></li>
<li>22 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/f2.glob</code></li>
<li>22 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/natbin.v</code></li>
<li>21 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/types.v</code></li>
<li>20 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/num_occ.v</code></li>
<li>20 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/mceliece.glob</code></li>
<li>20 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/Reals_ext.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/alternant.glob</code></li>
<li>19 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/ssralg_ext.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/pinsker.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/bigop_ext.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/convex_fdist.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/poly_decoding.v</code></li>
<li>17 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/dft.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/vandermonde.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/source_coding_vl_direct.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/classical_sets_ext.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/decoding.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/ssrZ.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/channel.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/toy_examples/expected_value_variance_ordn.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/erasure_channel.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/success_decode_bound.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/summary.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/logb.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/graphoid.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/conditional_divergence.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/joint_typ_seq.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/repcode.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/ldpc_algo.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/toy_examples/expected_value_variance_tuple.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/source_code.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/Ranalysis_ext.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/string_entropy.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/typ_seq.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/error_exponent.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/grs.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/pproba.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/source_coding_fl_direct.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/source_coding_fl_converse.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/log_sum.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/binary_symmetric_channel.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/variation_dist.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/tanner.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/channel_coding_converse.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/checksum.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/shannon_fano.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/entropy.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/partition_inequality.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_modern/max_subset.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/aep.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/binary_entropy_function.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/divergence.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/channel_code.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/alternant.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/f2.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/ecc_classic/mceliece.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/jensen.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/poly_ext.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/toy_examples/expected_value_variance.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/toy_examples/conditional_entropy.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/lib/classical_sets_ext.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/source_code.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/information_theory/erasure_channel.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/probability/variation_dist.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/toy_examples/expected_value_variance_ordn.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.11.1/lib/coq/user-contrib/infotheo/toy_examples/expected_value_variance_tuple.v</code></li>
</ul>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-infotheo.0.2.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.11.1-2.0.7/released/8.11.1/infotheo/0.2.1.html | HTML | mit | 41,675 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="styles/jquery-ui.min.css">
<link href="https://fonts.googleapis.com/css?family=Lora" rel="stylesheet">
<script src="scripts/jquery.js"></script>
<script src="scripts/jquery-ui.min.js"></script>
<script>
$( function() {
var availableTags = [
"Abhijeet ",
"Aranya",
"Ashwati",
"Avinash",
"Ayush",
"Harini",
"Keshav",
"Mike",
"Nirmoh",
"Niranjini",
"Praveen",
"Rajat",
"Samrat",
"Sandeep",
"Srinivas",
"Sudarshan",
"Suyash",
"Uday",
"Utsav",
"Varun",
"Varun 2.0",
"Vasant",
"Venkat",
"Vinod",
"Viswanath",
"Vyas"
];
function split( val ) {
return val.split( /,\s*/ );
}
function extractLast( term ) {
return split( term ).pop();
}
$( "#tags" )
// don't navigate away from the field on tab when selecting an item
.on( "keydown", function( event ) {
if ( event.keyCode === $.ui.keyCode.TAB &&
$( this ).autocomplete( "instance" ).menu.active ) {
event.preventDefault();
}
})
.autocomplete({
minLength: 0,
source: function( request, response ) {
// delegate back to autocomplete, but extract the last term
response( $.ui.autocomplete.filter(
availableTags, extractLast( request.term ) ) );
},
focus: function() {
// prevent value inserted on focus
return false;
},
select: function( event, ui ) {
var terms = split( this.value );
// remove the current input
terms.pop();
// add the selected item
terms.push( ui.item.value );
// add placeholder to get the comma-and-space at the end
terms.push( "" );
this.value = terms.join( ", " );
return false;
}
});
$( "#tags2" )
// don't navigate away from the field on tab when selecting an item
.on( "keydown", function( event ) {
if ( event.keyCode === $.ui.keyCode.TAB &&
$( this ).autocomplete( "instance" ).menu.active ) {
event.preventDefault();
}
})
.autocomplete({
minLength: 0,
source: function( request, response ) {
// delegate back to autocomplete, but extract the last term
response( $.ui.autocomplete.filter(
availableTags, extractLast( request.term ) ) );
},
focus: function() {
// prevent value inserted on focus
return false;
},
select: function( event, ui ) {
var terms = split( this.value );
// remove the current input
terms.pop();
// add the selected item
terms.push( ui.item.value );
// add placeholder to get the comma-and-space at the end
terms.push( "" );
this.value = terms.join( ", " );
return false;
}
});
$( "#tags3" )
// don't navigate away from the field on tab when selecting an item
.on( "keydown", function( event ) {
if ( event.keyCode === $.ui.keyCode.TAB &&
$( this ).autocomplete( "instance" ).menu.active ) {
event.preventDefault();
}
})
.autocomplete({
minLength: 0,
source: function( request, response ) {
// delegate back to autocomplete, but extract the last term
response( $.ui.autocomplete.filter(
availableTags, extractLast( request.term ) ) );
},
focus: function() {
// prevent value inserted on focus
return false;
},
select: function( event, ui ) {
var terms = split( this.value );
// remove the current input
terms.pop();
// add the selected item
terms.push( ui.item.value );
// add placeholder to get the comma-and-space at the end
terms.push( "" );
this.value = terms.join( ", " );
return false;
}
});
$( "#tags4" )
// don't navigate away from the field on tab when selecting an item
.on( "keydown", function( event ) {
if ( event.keyCode === $.ui.keyCode.TAB &&
$( this ).autocomplete( "instance" ).menu.active ) {
event.preventDefault();
}
})
.autocomplete({
minLength: 0,
source: function( request, response ) {
// delegate back to autocomplete, but extract the last term
response( $.ui.autocomplete.filter(
availableTags, extractLast( request.term ) ) );
},
focus: function() {
// prevent value inserted on focus
return false;
},
select: function( event, ui ) {
var terms = split( this.value );
// remove the current input
terms.pop();
// add the selected item
terms.push( ui.item.value );
// add placeholder to get the comma-and-space at the end
terms.push( "" );
this.value = terms.join( ", " );
return false;
}
});
$( "#tags5" )
// don't navigate away from the field on tab when selecting an item
.on( "keydown", function( event ) {
if ( event.keyCode === $.ui.keyCode.TAB &&
$( this ).autocomplete( "instance" ).menu.active ) {
event.preventDefault();
}
})
.autocomplete({
minLength: 0,
source: function( request, response ) {
// delegate back to autocomplete, but extract the last term
response( $.ui.autocomplete.filter(
availableTags, extractLast( request.term ) ) );
},
focus: function() {
// prevent value inserted on focus
return false;
},
select: function( event, ui ) {
var terms = split( this.value );
// remove the current input
terms.pop();
// add the selected item
terms.push( ui.item.value );
// add placeholder to get the comma-and-space at the end
terms.push( "" );
this.value = terms.join( ", " );
return false;
}
});
$( "#tags6" )
// don't navigate away from the field on tab when selecting an item
.on( "keydown", function( event ) {
if ( event.keyCode === $.ui.keyCode.TAB &&
$( this ).autocomplete( "instance" ).menu.active ) {
event.preventDefault();
}
})
.autocomplete({
minLength: 0,
source: function( request, response ) {
// delegate back to autocomplete, but extract the last term
response( $.ui.autocomplete.filter(
availableTags, extractLast( request.term ) ) );
},
focus: function() {
// prevent value inserted on focus
return false;
},
select: function( event, ui ) {
var terms = split( this.value );
// remove the current input
terms.pop();
// add the selected item
terms.push( ui.item.value );
// add placeholder to get the comma-and-space at the end
terms.push( "" );
this.value = terms.join( ", " );
return false;
}
});
} );
</script>
<style>
body{
font-family: 'Lora', serif;
}
</style>
</head>
<body>
<div style="text-align: center;">
<img src="images/cmuqc.png" width="418" height="166">
<h1>SCOREKEEPER</h1>
</div>
<p>
<div class="ui-widget">
<label for="tags">Team 1: </label>
<input id="tags" size="50">
</div>
</p>
<p>
<div class="ui-widget">
<label for="tags2">Team 2: </label>
<input id="tags2" size="50">
</div>
</p>
<p>
<div class="ui-widget">
<label for="tags3">Team 3: </label>
<input id="tags3" size="50">
</div>
</p>
<p>
<div class="ui-widget">
<label for="tags4">Team 4: </label>
<input id="tags4" size="50">
</div>
</p>
<p>
<div class="ui-widget">
<label for="tags5">Team 5: </label>
<input id="tags5" size="50">
</div>
</p>
<p>
<div class="ui-widget">
<label for="tags6">Quizmaster(s): </label>
<input id="tags6" size="50">
</div>
</p>
<hr noshade>
<hr noshade>
<h2>Who won the quiz?</h2>
<div>
<form action="">
<p>
<input type="radio" name="winner" value="team1"> Team 1<br>
</p>
<p>
<input type="radio" name="winner" value="team2"> Team 2<br>
</p>
<p>
<input type="radio" name="winner" value="team3"> Team 3<br>
</p>
<p>
<input type="radio" name="winner" value="team4"> Team 4<br>
</p>
<p>
<input type="radio" name="winner" value="team5"> Team 5
</p>
</form>
</div>
<h2>Who came in second place?</h2>
<div>
<form action="">
<p>
<input type="radio" name="runnerup" value="team1"> Team 1<br>
</p>
<p>
<input type="radio" name="runnerup" value="team2"> Team 2<br>
</p>
<p>
<input type="radio" name="runnerup" value="team3"> Team 3<br>
</p>
<p>
<input type="radio" name="runnerup" value="team4"> Team 4<br>
</p>
<p>
<input type="radio" name="runnerup" value="team5"> Team 5
</p>
</form>
</div>
<h2>Who came in third place?</h2>
<div>
<form action="">
<p>
<input type="radio" name="third" value="team1"> Team 1<br>
</p>
<p>
<input type="radio" name="third" value="team2"> Team 2<br>
</p>
<p>
<input type="radio" name="third" value="team3"> Team 3<br>
</p>
<p>
<input type="radio" name="third" value="team4"> Team 4<br>
</p>
<p>
<input type="radio" name="third" value="team5"> Team 5
</p>
</form>
</div>
</body>
</html> | martinmiggs/cmuqc | index.html | HTML | mit | 9,909 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>demo</title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<style type="text/css">
*{margin: 0; padding: 0;}
canvas{ display: block; } /*防止产生滚动*/
</style>
</head>
<body>
<div id="Stats-output"></div>
<div id="canvas3d"></div>
</body>
<script type="text/javascript" src="./libs/three.min.js"></script>
<script type="text/javascript" src="./libs/Stats.js"></script>
<script type="text/javascript" src="./libs/dat.gui.js"></script>
<script type="text/javascript">
function init() {
var stats = initStats();
var scene = new THREE.Scene();
var camera = new THREE.PerspectiveCamera(45, window.innerWidth / window.innerHeight, 0.1, 1000);
var renderer = new THREE.WebGLRenderer();
renderer.setClearColor(0xEEEEEE, 1.0);
renderer.setSize(window.innerWidth, window.innerHeight);
renderer.shadowMap.enabled = true;
renderer.setPixelRatio( window.devicePixelRatio );
var planeGeometry = new THREE.PlaneGeometry(60, 40, 1, 1);
var planeMaterial = new THREE.MeshLambertMaterial({color: 0xffffff});
var plane = new THREE.Mesh(planeGeometry, planeMaterial);
plane.receiveShadow = true;
plane.rotation.x = -0.5 * Math.PI;
plane.position.x = 0;
plane.position.y = 0;
plane.position.z = 0;
scene.add(plane);
camera.position.x = -50;
camera.position.y = 30;
camera.position.z = 20;
camera.lookAt(new THREE.Vector3(-10, 0, 0));
var ambientLight = new THREE.AmbientLight(0x090909);
scene.add(ambientLight);
var spotLight = new THREE.SpotLight(0xffffff);
spotLight.position.set(-40, 40, 50);
spotLight.castShadow = true;
scene.add(spotLight);
addGeometries(scene);
document.getElementById("canvas3d").appendChild(renderer.domElement);
var step = 0;
render();
function addGeometries(scene) {
var geoms = [];
geoms.push(new THREE.CylinderGeometry(1, 4, 4));
geoms.push(new THREE.BoxGeometry(2, 2, 2));
geoms.push(new THREE.SphereGeometry(2));
geoms.push(new THREE.IcosahedronGeometry(4));
// create a convex shape (a shape without dents)
// using a couple of points
// for instance a cube
var points = [
new THREE.Vector3(2, 2, 2),
new THREE.Vector3(2, 2, -2),
new THREE.Vector3(-2, 2, -2),
new THREE.Vector3(-2, 2, 2),
new THREE.Vector3(2, -2, 2),
new THREE.Vector3(2, -2, -2),
new THREE.Vector3(-2, -2, -2),
new THREE.Vector3(-2, -2, 2)
];
// geoms.push(new THREE.ConvexGeometry(points));
// create a lathgeometry
//http://en.wikipedia.org/wiki/Lathe_(graphics)
var pts = [];//points array - the path profile points will be stored here
var detail = .1;//half-circle detail - how many angle increments will be used to generate points
var radius = 3;//radius for half_sphere
for (var angle = 0.0; angle < Math.PI; angle += detail)//loop from 0.0 radians to PI (0 - 180 degrees)
pts.push(new THREE.Vector3(Math.cos(angle) * radius, 0, Math.sin(angle) * radius));//angle/radius to x,z
geoms.push(new THREE.LatheGeometry(pts, 12));
// create a OctahedronGeometry
geoms.push(new THREE.OctahedronGeometry(3));
// create a geometry based on a function
// geoms.push(new THREE.ParametricGeometry(THREE.ParametricGeometries.mobius3d, 20, 10));
//
geoms.push(new THREE.TetrahedronGeometry(3));
geoms.push(new THREE.TorusGeometry(3, 1, 10, 10));
geoms.push(new THREE.TorusKnotGeometry(3, 0.5, 50, 20));
var j = 0;
for (var i = 0; i < geoms.length; i++) {
var cubeMaterial = new THREE.MeshLambertMaterial({wireframe: true, color: Math.random() * 0xffffff});
var materials = [
new THREE.MeshLambertMaterial({color: Math.random() * 0xffffff, shading: THREE.FlatShading}),
new THREE.MeshBasicMaterial({color: 0x000000, wireframe: true})
];
var mesh = THREE.SceneUtils.createMultiMaterialObject(geoms[i], materials);
mesh.traverse(function (e) {
e.castShadow = true
});
//var mesh = new THREE.Mesh(geoms[i],materials[i]);
//mesh.castShadow=true;
mesh.position.x = -24 + ((i % 4) * 12);
mesh.position.y = 4;
mesh.position.z = -8 + (j * 12);
if ((i + 1) % 4 == 0) j++;
scene.add(mesh);
}
}
function render() {
stats.update();
requestAnimationFrame(render);
renderer.render(scene, camera);
}
function initStats() {
var stats = new Stats();
stats.setMode(0); // 0: fps, 1: ms
// Align top-left
stats.domElement.style.position = 'absolute';
stats.domElement.style.left = '0px';
stats.domElement.style.top = '0px';
document.getElementById("Stats-output").appendChild(stats.domElement);
return stats;
}
}
window.onload = init
</script>
</html> | freezyh/H5 | three/10.html | HTML | mit | 5,872 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NETZWERK wohnen - von Profis für Profis</title>
<link th:href="@{/css/bootstrap.min.css}" rel="stylesheet" />
<link th:href="@{/font-awesome/css/font-awesome.css}" rel="stylesheet" />
<link th:href="@{/css/animate.css}" rel="stylesheet" />
<link th:href="@{/css/style.css}" rel="stylesheet" />
</head>
<body class="gray-bg">
<div class="middle-box text-center animated fadeInDown">
<h1>500</h1>
<h3 class="font-bold">Ups, das hätte nicht passieren sollen!</h3>
<div class="error-desc">
Entschuldige bitte! Wir beheben das - versprochen!
</div>
<a th:unless="${CurrentUser}" th:href="@{/}" class="btn btn-info btn-md m-t-md">
Zurück zur Startseite
</a>
<a th:if="${CurrentUser}" th:href="@{/network}" class="btn btn-info btn-md m-t-md">
Zurück zum Netzwerk
</a>
</div>
</body>
</html>
| NetzwerkWohnen/NWW | src/main/resources/templates/errors/500.html | HTML | mit | 1,081 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<head>
<title></title>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<link type="text/css" rel="stylesheet" href="imagerotator/html/css/zoom_dark.css"/>
<script type="text/javascript" src="imagerotator/html/js/jquery-1.12.4.min.js"></script>
<script type="text/javascript" src="imagerotator/html/js/imagerotator.js"></script>
<script type="text/javascript" src="wr360popup.js"></script>
<style type= "text/css">
html,
body
{
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
.frameContainer
{
width: calc(100% - 10px);
height: calc(100% - 10px);
padding: 5px 0 0 5px;
}
</style>
</head>
<body>
<div class="frameContainer">
<div id="wr360PlayerId20" class="wr360_player">
</div>
</div>
</body>
</html>
| webrotate360/magento2-adhoc | view/frontend/web/frame_zoom_dark.html | HTML | mit | 1,005 |
<ion-view view-title="A propos">
<ion-nav-buttons side="left">
<button menu-toggle="left" class="button button-icon icon ion-navicon"></button>
</ion-nav-buttons>
<ion-content class="padding">
<div class="item item-divider">Le <b>patrimoine remarquable</b> <br />de la communauté d'agglomération<br />version 0.1.151009</div>
<div class="item item-body">
Développé par la <b>Direction de l'Informatique et du Numérique</b> de la Communauté d’Agglomération Sophia Antipolis.
<br />
Ont participé au développement:
<ul>
<li>
• <b>Bruce LANE</b>, chef de projet/développeur
</li>
<li>
• <b>David VINCENDEAU</b>, webmaster/webdesigner
</li>
<li>
• <b>Christophe VESTRI</b>, développeur (http://www.3DVTech.com/)
</li>
<li>
• <b>Edouard KABIA</b>, développeur
</li>
</ul>
<br />
<span id="infos" ng-bind="infos">Informations techniques</span>
</div>
</ion-content>
</ion-view>
| davidvincendeau/PatrimoineCASA | PatrimoineCASA/www/templates/apropos.html | HTML | mit | 1,369 |
<p>Senior Education Advisors</p>
| wcmckee/moejobs-site | cache/posts/1175880.html | HTML | mit | 33 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.11"/>
<title>V8 API Reference Guide for node.js v8.10.0: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">V8 API Reference Guide for node.js v8.10.0
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespacev8.html">v8</a></li><li class="navelem"><a class="el" href="classv8_1_1Eternal.html">Eternal</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">v8::Eternal< T > Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classv8_1_1Eternal.html">v8::Eternal< T ></a>, including all inherited members.</p>
<table class="directory">
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Eternal</b>() (defined in <a class="el" href="classv8_1_1Eternal.html">v8::Eternal< T ></a>)</td><td class="entry"><a class="el" href="classv8_1_1Eternal.html">v8::Eternal< T ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Eternal</b>(Isolate *isolate, Local< S > handle) (defined in <a class="el" href="classv8_1_1Eternal.html">v8::Eternal< T ></a>)</td><td class="entry"><a class="el" href="classv8_1_1Eternal.html">v8::Eternal< T ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Get</b>(Isolate *isolate) const (defined in <a class="el" href="classv8_1_1Eternal.html">v8::Eternal< T ></a>)</td><td class="entry"><a class="el" href="classv8_1_1Eternal.html">v8::Eternal< T ></a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>IsEmpty</b>() const (defined in <a class="el" href="classv8_1_1Eternal.html">v8::Eternal< T ></a>)</td><td class="entry"><a class="el" href="classv8_1_1Eternal.html">v8::Eternal< T ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Set</b>(Isolate *isolate, Local< S > handle) (defined in <a class="el" href="classv8_1_1Eternal.html">v8::Eternal< T ></a>)</td><td class="entry"><a class="el" href="classv8_1_1Eternal.html">v8::Eternal< T ></a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Set</b>(Isolate *isolate, Local< S > handle) (defined in <a class="el" href="classv8_1_1Eternal.html">v8::Eternal< T ></a>)</td><td class="entry"><a class="el" href="classv8_1_1Eternal.html">v8::Eternal< T ></a></td><td class="entry"></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.11
</small></address>
</body>
</html>
| v8-dox/v8-dox.github.io | 2a2c881/html/classv8_1_1Eternal-members.html | HTML | mit | 6,376 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Chapter 18. Boost.Interprocess</title>
<link rel="stylesheet" href="../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="libraries.html" title="Part I. The Boost C++ Libraries (BoostBook Subset)">
<link rel="prev" href="heap/acknowledgements.html" title="Acknowledgements">
<link rel="next" href="interprocess/quick_guide.html" title="Quick Guide for the Impatient">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../boost.png"></td>
<td align="center"><a href="../../index.html">Home</a></td>
<td align="center"><a href="../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="heap/acknowledgements.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="libraries.html"><img src="../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="index.html"><img src="../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="interprocess/quick_guide.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="chapter">
<div class="titlepage"><div>
<div><h2 class="title">
<a name="interprocess"></a>Chapter 18. Boost.Interprocess</h2></div>
<div><div class="author"><h3 class="author">
<span class="firstname">Ion</span> <span class="surname">Gaztanaga</span>
</h3></div></div>
<div><p class="copyright">Copyright © 2005-2015 Ion Gaztanaga</p></div>
<div><div class="legalnotice">
<a name="interprocess.legal"></a><p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></div>
</div></div>
<div class="toc">
<p><b>Table of Contents</b></p>
<dl class="toc">
<dt><span class="section"><a href="interprocess.html#interprocess.intro">Introduction</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="interprocess.html#interprocess.intro.introduction_building_interprocess">Building
Boost.Interprocess</a></span></dt>
<dt><span class="section"><a href="interprocess.html#interprocess.intro.tested_compilers">Tested compilers</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="interprocess/quick_guide.html">Quick Guide for the Impatient</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="interprocess/quick_guide.html#interprocess.quick_guide.qg_memory_pool">Using shared
memory as a pool of unnamed memory blocks</a></span></dt>
<dt><span class="section"><a href="interprocess/quick_guide.html#interprocess.quick_guide.qg_named_interprocess">Creating
named shared memory objects</a></span></dt>
<dt><span class="section"><a href="interprocess/quick_guide.html#interprocess.quick_guide.qg_offset_ptr">Using an offset
smart pointer for shared memory</a></span></dt>
<dt><span class="section"><a href="interprocess/quick_guide.html#interprocess.quick_guide.qg_interprocess_container">Creating
vectors in shared memory</a></span></dt>
<dt><span class="section"><a href="interprocess/quick_guide.html#interprocess.quick_guide.qg_interprocess_map">Creating
maps in shared memory</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="interprocess/some_basic_explanations.html">Some basic explanations</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="interprocess/some_basic_explanations.html#interprocess.some_basic_explanations.processes_and_threads">Processes
And Threads</a></span></dt>
<dt><span class="section"><a href="interprocess/some_basic_explanations.html#interprocess.some_basic_explanations.sharing_information">Sharing
information between processes</a></span></dt>
<dt><span class="section"><a href="interprocess/some_basic_explanations.html#interprocess.some_basic_explanations.persistence">Persistence
Of Interprocess Mechanisms</a></span></dt>
<dt><span class="section"><a href="interprocess/some_basic_explanations.html#interprocess.some_basic_explanations.names">Names Of
Interprocess Mechanisms</a></span></dt>
<dt><span class="section"><a href="interprocess/some_basic_explanations.html#interprocess.some_basic_explanations.constructors_destructors_and_resource_lifetime">Constructors,
destructors and lifetime of Interprocess named resources</a></span></dt>
<dt><span class="section"><a href="interprocess/some_basic_explanations.html#interprocess.some_basic_explanations.permissions">Permissions</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="interprocess/sharedmemorybetweenprocesses.html">Sharing memory
between processes</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="interprocess/sharedmemorybetweenprocesses.html#interprocess.sharedmemorybetweenprocesses.sharedmemory">Shared
memory</a></span></dt>
<dt><span class="section"><a href="interprocess/sharedmemorybetweenprocesses.html#interprocess.sharedmemorybetweenprocesses.mapped_file">Memory
Mapped Files</a></span></dt>
<dt><span class="section"><a href="interprocess/sharedmemorybetweenprocesses.html#interprocess.sharedmemorybetweenprocesses.mapped_region">More
About Mapped Regions</a></span></dt>
<dt><span class="section"><a href="interprocess/sharedmemorybetweenprocesses.html#interprocess.sharedmemorybetweenprocesses.mapped_region_object_limitations">Limitations
When Constructing Objects In Mapped Regions</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="interprocess/offset_ptr.html">Mapping Address Independent Pointer:
offset_ptr</a></span></dt>
<dt><span class="section"><a href="interprocess/synchronization_mechanisms.html">Synchronization
mechanisms</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="interprocess/synchronization_mechanisms.html#interprocess.synchronization_mechanisms.synchronization_mechanisms_overview">Synchronization
mechanisms overview</a></span></dt>
<dt><span class="section"><a href="interprocess/synchronization_mechanisms.html#interprocess.synchronization_mechanisms.mutexes">Mutexes</a></span></dt>
<dt><span class="section"><a href="interprocess/synchronization_mechanisms.html#interprocess.synchronization_mechanisms.conditions">Conditions</a></span></dt>
<dt><span class="section"><a href="interprocess/synchronization_mechanisms.html#interprocess.synchronization_mechanisms.semaphores">Semaphores</a></span></dt>
<dt><span class="section"><a href="interprocess/synchronization_mechanisms.html#interprocess.synchronization_mechanisms.sharable_upgradable_mutexes">Sharable
and Upgradable Mutexes</a></span></dt>
<dt><span class="section"><a href="interprocess/synchronization_mechanisms.html#interprocess.synchronization_mechanisms.lock_conversions">Lock
Transfers Through Move Semantics</a></span></dt>
<dt><span class="section"><a href="interprocess/synchronization_mechanisms.html#interprocess.synchronization_mechanisms.file_lock">File
Locks</a></span></dt>
<dt><span class="section"><a href="interprocess/synchronization_mechanisms.html#interprocess.synchronization_mechanisms.message_queue">Message
Queue</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="interprocess/managed_memory_segments.html">Managed Memory Segments</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="interprocess/managed_memory_segments.html#interprocess.managed_memory_segments.making_ipc_easy">Making
Interprocess Data Communication Easy</a></span></dt>
<dt><span class="section"><a href="interprocess/managed_memory_segments.html#interprocess.managed_memory_segments.managed_shared_memory">Managed
Shared Memory</a></span></dt>
<dt><span class="section"><a href="interprocess/managed_memory_segments.html#interprocess.managed_memory_segments.managed_mapped_files">Managed
Mapped File</a></span></dt>
<dt><span class="section"><a href="interprocess/managed_memory_segments.html#interprocess.managed_memory_segments.managed_memory_segment_features">Managed
Memory Segment Features</a></span></dt>
<dt><span class="section"><a href="interprocess/managed_memory_segments.html#interprocess.managed_memory_segments.managed_memory_segment_advanced_features">Managed
Memory Segment Advanced Features</a></span></dt>
<dt><span class="section"><a href="interprocess/managed_memory_segments.html#interprocess.managed_memory_segments.managed_heap_memory_external_buffer">Managed
Heap Memory And Managed External Buffer</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="interprocess/allocators_containers.html">Allocators, containers
and memory allocation algorithms</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="interprocess/allocators_containers.html#interprocess.allocators_containers.allocator_introduction">Introduction
to Interprocess allocators</a></span></dt>
<dt><span class="section"><a href="interprocess/allocators_containers.html#interprocess.allocators_containers.stl_allocators_segregated_storage">Segregated
storage node allocators</a></span></dt>
<dt><span class="section"><a href="interprocess/allocators_containers.html#interprocess.allocators_containers.stl_allocators_adaptive">Adaptive
pool node allocators</a></span></dt>
<dt><span class="section"><a href="interprocess/allocators_containers.html#interprocess.allocators_containers.containers_explained">Interprocess
and containers in managed memory segments</a></span></dt>
<dt><span class="section"><a href="interprocess/allocators_containers.html#interprocess.allocators_containers.additional_containers">Boost
containers compatible with Boost.Interprocess</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="interprocess/memory_algorithms.html">Memory allocation algorithms</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="interprocess/memory_algorithms.html#interprocess.memory_algorithms.simple_seq_fit">simple_seq_fit:
A simple shared memory management algorithm</a></span></dt>
<dt><span class="section"><a href="interprocess/memory_algorithms.html#interprocess.memory_algorithms.rbtree_best_fit">rbtree_best_fit:
Best-fit logarithmic-time complexity allocation</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="interprocess/streams.html">Direct iostream formatting: vectorstream
and bufferstream</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="interprocess/streams.html#interprocess.streams.vectorstream">Formatting directly
in your character vector: vectorstream</a></span></dt>
<dt><span class="section"><a href="interprocess/streams.html#interprocess.streams.bufferstream">Formatting directly
in your character buffer: bufferstream</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="interprocess/interprocess_smart_ptr.html">Ownership smart pointers</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="interprocess/interprocess_smart_ptr.html#interprocess.interprocess_smart_ptr.intrusive_ptr">Intrusive
pointer</a></span></dt>
<dt><span class="section"><a href="interprocess/interprocess_smart_ptr.html#interprocess.interprocess_smart_ptr.scoped_ptr">Scoped
pointer</a></span></dt>
<dt><span class="section"><a href="interprocess/interprocess_smart_ptr.html#interprocess.interprocess_smart_ptr.shared_ptr">Shared
pointer and weak pointer</a></span></dt>
<dt><span class="section"><a href="interprocess/interprocess_smart_ptr.html#interprocess.interprocess_smart_ptr.unique_ptr">Unique
pointer</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="interprocess/architecture.html">Architecture and internals</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="interprocess/architecture.html#interprocess.architecture.basic_guidelines">Basic guidelines</a></span></dt>
<dt><span class="section"><a href="interprocess/architecture.html#interprocess.architecture.architecture_algorithm_to_managed">From
the memory algorithm to the managed segment</a></span></dt>
<dt><span class="section"><a href="interprocess/architecture.html#interprocess.architecture.allocators_containers">Allocators
and containers</a></span></dt>
<dt><span class="section"><a href="interprocess/architecture.html#interprocess.architecture.performance">Performance of
Boost.Interprocess</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="interprocess/customizing_interprocess.html">Customizing Boost.Interprocess</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="interprocess/customizing_interprocess.html#interprocess.customizing_interprocess.custom_interprocess_alloc">Writing
a new shared memory allocation algorithm</a></span></dt>
<dt><span class="section"><a href="interprocess/customizing_interprocess.html#interprocess.customizing_interprocess.custom_allocators">Building
custom STL compatible allocators for Boost.Interprocess</a></span></dt>
<dt><span class="section"><a href="interprocess/customizing_interprocess.html#interprocess.customizing_interprocess.custom_indexes">Building
custom indexes</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="interprocess/acknowledgements_notes.html">Acknowledgements,
notes and links</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="interprocess/acknowledgements_notes.html#interprocess.acknowledgements_notes.notes_windows">Notes
for Windows users</a></span></dt>
<dt><span class="section"><a href="interprocess/acknowledgements_notes.html#interprocess.acknowledgements_notes.notes_linux">Notes
for Linux users</a></span></dt>
<dt><span class="section"><a href="interprocess/acknowledgements_notes.html#interprocess.acknowledgements_notes.notes_freebsd">Notes
for FreeBSD users</a></span></dt>
<dt><span class="section"><a href="interprocess/acknowledgements_notes.html#interprocess.acknowledgements_notes.thanks_to">Thanks
to...</a></span></dt>
<dt><span class="section"><a href="interprocess/acknowledgements_notes.html#interprocess.acknowledgements_notes.release_notes">Release
Notes</a></span></dt>
<dt><span class="section"><a href="interprocess/acknowledgements_notes.html#interprocess.acknowledgements_notes.books_and_links">Books
and interesting links</a></span></dt>
<dt><span class="section"><a href="interprocess/acknowledgements_notes.html#interprocess.acknowledgements_notes.future_improvements">Future
improvements...</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="interprocess/indexes_reference.html">Indexes and Reference</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="interprocess/indexes_reference.html#interprocess.indexes_reference.index">Indexes</a></span></dt>
<dt><span class="section"><a href="interprocess/indexes_reference.html#boost_interprocess_header_reference">Boost.Interprocess Header Reference</a></span></dt>
</dl></dd>
</dl>
</div>
<div class="section">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="interprocess.intro"></a><a class="link" href="interprocess.html#interprocess.intro" title="Introduction">Introduction</a>
</h2></div></div></div>
<div class="toc"><dl class="toc">
<dt><span class="section"><a href="interprocess.html#interprocess.intro.introduction_building_interprocess">Building
Boost.Interprocess</a></span></dt>
<dt><span class="section"><a href="interprocess.html#interprocess.intro.tested_compilers">Tested compilers</a></span></dt>
</dl></div>
<p>
<span class="bold"><strong>Boost.Interprocess</strong></span> simplifies the use of common
interprocess communication and synchronization mechanisms and offers a wide
range of them:
</p>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
Shared memory.
</li>
<li class="listitem">
Memory-mapped files.
</li>
<li class="listitem">
Semaphores, mutexes, condition variables and upgradable mutex types to
place them in shared memory and memory mapped files.
</li>
<li class="listitem">
Named versions of those synchronization objects, similar to UNIX/Windows
sem_open/CreateSemaphore API.
</li>
<li class="listitem">
File locking.
</li>
<li class="listitem">
Relative pointers.
</li>
<li class="listitem">
Message queues.
</li>
</ul></div>
<p>
<span class="bold"><strong>Boost.Interprocess</strong></span> also offers higher-level
interprocess mechanisms to allocate dynamically portions of a shared memory
or a memory mapped file (in general, to allocate portions of a fixed size memory
segment). Using these mechanisms, <span class="bold"><strong>Boost.Interprocess</strong></span>
offers useful tools to construct C++ objects, including STL-like containers,
in shared memory and memory mapped files:
</p>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
Dynamic creation of anonymous and named objects in a shared memory or memory
mapped file.
</li>
<li class="listitem">
STL-like containers compatible with shared memory/memory-mapped files.
</li>
<li class="listitem">
STL-like allocators ready for shared memory/memory-mapped files implementing
several memory allocation patterns (like pooling).
</li>
</ul></div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="interprocess.intro.introduction_building_interprocess"></a><a class="link" href="interprocess.html#interprocess.intro.introduction_building_interprocess" title="Building Boost.Interprocess">Building
Boost.Interprocess</a>
</h3></div></div></div>
<p>
There is no need to compile <span class="bold"><strong>Boost.Interprocess</strong></span>,
since it's a header only library. Just include your Boost header directory
in your compiler include path.
</p>
<p>
<span class="bold"><strong>Boost.Interprocess</strong></span> depends on <a href="http://www.boost.org/libs/date_time/" target="_top"><span class="bold"><strong>Boost.DateTime</strong></span></a>, which needs separate compilation.
However, the subset used by <span class="bold"><strong>Boost.Interprocess</strong></span>
does not need any separate compilation so the user can define <code class="computeroutput"><span class="identifier">BOOST_DATE_TIME_NO_LIB</span></code> to avoid Boost from
trying to automatically link the <span class="bold"><strong>Boost.DateTime</strong></span>.
</p>
<p>
In POSIX systems, <span class="bold"><strong>Boost.Interprocess</strong></span> uses
pthread system calls to implement classes like mutexes, condition variables,
etc... In some operating systems, these POSIX calls are implemented in separate
libraries that are not automatically linked by the compiler. For example,
in some Linux systems POSIX pthread functions are implemented in <code class="computeroutput"><span class="identifier">librt</span><span class="special">.</span><span class="identifier">a</span></code> library, so you might need to add that
library when linking an executable or shared library that uses <span class="bold"><strong>Boost.Interprocess</strong></span>. If you obtain linking errors related
to those pthread functions, please revise your system's documentation to
know which library implements them.
</p>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="interprocess.intro.tested_compilers"></a><a class="link" href="interprocess.html#interprocess.intro.tested_compilers" title="Tested compilers">Tested compilers</a>
</h3></div></div></div>
<p>
<span class="bold"><strong>Boost.Interprocess</strong></span> has been tested in the
following compilers/platforms:
</p>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
Visual C++ >= 7.1.
</li>
<li class="listitem">
GCC >= 4.1.
</li>
</ul></div>
<div class="warning"><table border="0" summary="Warning">
<tr>
<td rowspan="2" align="center" valign="top" width="25"><img alt="[Warning]" src="../../doc/src/images/warning.png"></td>
<th align="left">Warning</th>
</tr>
<tr><td align="left" valign="top"><p>
GCC < 4.3 and MSVC < 9.0 are deprecated and will be removed in the
next version.
</p></td></tr>
</table></div>
</div>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"><p><small>Last revised: August 05, 2021 at 09:53:22 GMT</small></p></td>
<td align="right"><div class="copyright-footer"></div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="heap/acknowledgements.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="libraries.html"><img src="../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="index.html"><img src="../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="interprocess/quick_guide.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| davehorton/drachtio-server | deps/boost_1_77_0/doc/html/interprocess.html | HTML | mit | 22,063 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="description" />
<meta name="keywords" content="static content generator,static site generator,static site,HTML,web development,.NET,C#,Razor,Markdown,YAML" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/KVLite/assets/img/favicon.ico" type="image/x-icon">
<link rel="icon" href="/KVLite/assets/img/favicon.ico" type="image/x-icon">
<title>PommaLabs.KVLite - Docs</title>
<link href="/KVLite/assets/css/mermaid.css" rel="stylesheet">
<link href="/KVLite/assets/css/highlight.css" rel="stylesheet">
<link href="/KVLite/assets/css/bootstrap/bootstrap.css" rel="stylesheet" />
<link href="/KVLite/assets/css/adminlte/AdminLTE.css" rel="stylesheet" />
<link href="/KVLite/assets/css/theme/theme.css" rel="stylesheet" />
<link href="//fonts.googleapis.com/css?family=Roboto+Mono:400,700|Roboto:400,400i,700,700i" rel="stylesheet">
<link href="/KVLite/assets/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="/KVLite/assets/css/override.css" rel="stylesheet" />
<script src="/KVLite/assets/js/jquery-2.2.3.min.js"></script>
<script src="/KVLite/assets/js/bootstrap.min.js"></script>
<script src="/KVLite/assets/js/app.min.js"></script>
<script src="/KVLite/assets/js/highlight.pack.js"></script>
<script src="/KVLite/assets/js/jquery.slimscroll.min.js"></script>
<script src="/KVLite/assets/js/jquery.sticky-kit.min.js"></script>
<script src="/KVLite/assets/js/mermaid.min.js"></script>
<!--[if lt IE 9]>
<script src="/KVLite/assets/js/html5shiv.min.js"></script>
<script src="/KVLite/assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body class="hold-transition wyam layout-boxed ">
<div class="top-banner"></div>
<div class="wrapper with-container">
<!-- Header -->
<header class="main-header">
<a href="/KVLite/" class="logo">
<span>PommaLabs.KVLite</span>
</a>
<nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button-->
<a href="#" class="sidebar-toggle visible-xs-block" data-toggle="offcanvas" role="button">
<span class="sr-only">Toggle side menu</span>
<i class="fa fa-chevron-circle-right"></i>
</a>
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse">
<span class="sr-only">Toggle side menu</span>
<i class="fa fa-chevron-circle-down"></i>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse pull-left" id="navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="/KVLite/about">About This Project</a></li>
<li class="active"><a href="/KVLite/docs">Docs</a></li>
<li><a href="/KVLite/blog">Blog</a></li>
<li><a href="/KVLite/api">API</a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
<!-- Navbar Right Menu -->
</nav>
</header>
<!-- Left side column. contains the logo and sidebar -->
<aside class="main-sidebar ">
<section class="infobar" data-spy="affix" data-offset-top="60" data-offset-bottom="200">
<div id="infobar-headings"></div>
</section>
<section class="sidebar">
<ul class="sidebar-menu">
<li><a href="/KVLite/docs/command-line">Command Line</a></li>
<li><a href="/KVLite/docs/usage">Usage</a></li>
</ul>
</section>
</aside>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<section class="content-header">
<h1>Docs</h1>
</section>
<section class="content">
<div class="box">
<div class="box-body no-padding">
<table class="table table-striped table-hover two-cols-alt table-responsive">
<tbody>
<tr>
<td><strong><a href="/KVLite/docs/command-line">Command Line</a></strong></td>
<td>
How to use the command line. </td>
</tr>
<tr>
<td><strong><a href="/KVLite/docs/usage">Usage</a></strong></td>
<td>
Library usage instructions. </td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
</div>
<!-- Footer -->
<footer class="main-footer">
</footer>
</div>
<div class="wrapper bottom-wrapper">
<footer class="bottom-footer">
Generated by <a href="https://wyam.io">Wyam</a>
</footer>
</div>
<a href="javascript:" id="return-to-top"><i class="fa fa-chevron-up"></i></a>
<script>
// Close the sidebar if we select an anchor link
$(".main-sidebar a[href^='#']:not('.expand')").click(function(){
$(document.body).removeClass('sidebar-open');
});
$(document).load(function() {
mermaid.initialize(
{
flowchart:
{
htmlLabels: false,
useMaxWidth:false
}
});
mermaid.init(undefined, ".mermaid")
$('svg').addClass('img-responsive');
$('pre code').each(function(i, block) {
hljs.highlightBlock(block);
});
});
hljs.initHighlightingOnLoad();
// Back to top
$(window).scroll(function() {
if ($(this).scrollTop() >= 200) { // If page is scrolled more than 50px
$('#return-to-top').fadeIn(1000); // Fade in the arrow
} else {
$('#return-to-top').fadeOut(1000); // Else fade out the arrow
}
});
$('#return-to-top').click(function() { // When arrow is clicked
$('body,html').animate({
scrollTop : 0 // Scroll to top of body
}, 500);
});
</script>
</body>
</html> | pomma89/KVLite | docs/docs/index.html | HTML | mit | 7,491 |
<a href="../index.html" target="_top">Inspections</a> <a HREF="e1.html" target="_blank">Open source</a>
<hr> <font style="font-weight:bold; color:#005555;">Name</font>
<br> private field <code>Button <b>bonzoidButton</b></code><br>
<br> <font style="font-weight:bold; color:#005555;">Location</font>
<br> class <code><a HREF="e2.html">MainController</a></code>
<code>(application)</code><br><br><br> <b>No problems found</b><br> | blakktux/Natural-Selection | doc/style/e1.html | HTML | mit | 558 |
<html>
<body>
Analyses ternary operators and reports nested usages.
</body>
</html> | ovr/phpinspectionsea-mirror | src/inspectionDescriptions/NestedTernaryOperatorInspection.html | HTML | mit | 83 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="es">
<head>
<!-- Generated by javadoc (1.8.0_05) on Sat Oct 18 14:05:59 CEST 2014 -->
<title>Uses of Class r2b.apps.lib.taskmanager.BaseAsyncTask</title>
<meta name="date" content="2014-10-18">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class r2b.apps.lib.taskmanager.BaseAsyncTask";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../r2b/apps/lib/taskmanager/BaseAsyncTask.html" title="class in r2b.apps.lib.taskmanager">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../overview-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?r2b/apps/lib/taskmanager/class-use/BaseAsyncTask.html" target="_top">Frames</a></li>
<li><a href="BaseAsyncTask.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class r2b.apps.lib.taskmanager.BaseAsyncTask" class="title">Uses of Class<br>r2b.apps.lib.taskmanager.BaseAsyncTask</h2>
</div>
<div class="classUseContainer">No usage of r2b.apps.lib.taskmanager.BaseAsyncTask</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../r2b/apps/lib/taskmanager/BaseAsyncTask.html" title="class in r2b.apps.lib.taskmanager">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../overview-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?r2b/apps/lib/taskmanager/class-use/BaseAsyncTask.html" target="_top">Frames</a></li>
<li><a href="BaseAsyncTask.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| r2bapps/TaskManager | TaskManagerLib/doc/javadoc/r2b/apps/lib/taskmanager/class-use/BaseAsyncTask.html | HTML | mit | 4,425 |
<td-layout #layout>
<td-navigation-drawer
logo="assets:logo" name="Bienvenido" email="{{userEmail}}">
<md-nav-list>
<ng-template let-item let-last="last" ngFor [ngForOf]="routes">
<a md-list-item [routerLink]="[item.route]" (click)="layout.close()"><md-icon>{{item.icon}}</md-icon>{{item.title}}</a>
</ng-template>
<a md-list-item (click)="logout()"><md-icon>exit_to_app</md-icon>Sign out</a>
</md-nav-list>
<md-nav-list td-navigation-drawer-menu>
<a md-list-item (click)="logout()"><md-icon>exit_to_app</md-icon>Sign out</a>
</md-nav-list>
</td-navigation-drawer>
<router-outlet></router-outlet>
</td-layout>
| Jrocam/UnidosEnSalud | src/app/main/main.component.html | HTML | mit | 668 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Animated Form Switching with jQuery</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="description" content="Expand, contract, animate forms with jQuery wihtout leaving the page" />
<meta name="keywords" content="expand, form, css3, jquery, animate, width, height, adapt, unobtrusive javascript"/>
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" type="text/css" href="static/css/style.css" />
<script type=text/javascript src="{{
url_for('static', filename='js/jquery-2.2.1.min.js') }}"></script>
<script type=text/javascript>
$SCRIPT_ROOT = {{ request.script_root|tojson|safe }};
</script>
<script type="text/javascript">
$(function(){
}); </script>
</head>
<body>
<div class="wrapper">
<h1>Login</h1>
<div class="content">
<div id="form_wrapper" class="form_wrapper">
<form class="register">
<h3>Register</h3>
<div class="column">
<div>
<label>Username:</label>
<input type="text"/>
<span class="error">This is an error</span>
</div>
<div>
<label>Email:</label>
<input type="text" />
<span class="error">This is an error</span>
</div>
<div>
<label>Password:</label>
<input type="password" />
<span class="error">This is an error</span>
</div>
</div>
<div class="bottom">
<div class="remember">
<input type="checkbox" />
<span>Send me updates</span>
</div>
<input type="submit" value="Register" />
<a href="index.html" rel="login" class="linkform">You have an account already? Log in here</a>
<div class="clear"></div>
</div>
</form>
<form class="login active" action="/loginup" method="post" enctype="multipart/form-data" >
<h3>Login</h3>
<div>
<label>Username:</label>
<input type="text" name="username"/>
<span class="error">This is an error</span>
</div>
<div>
<label>Password: <a href="forgot_password.html" rel="forgot_password" class="forgot linkform">Forgot your password?</a></label>
<input type="password" name="password"/>
<span class="error">This is an error</span>
</div>
<div class="bottom">
<div class="remember"><input type="checkbox" /><span>Keep me logged in</span></div>
<input type="submit" value="login"/>
<a href="/register" rel="register" class="linkform">You don't have an account yet? Register here</a>
<div class="clear"></div>
</div>
</form>
<form class="forgot_password">
<h3>Forgot Password</h3>
<div>
<label>Username or Email:</label>
<input type="text" />
<span class="error">This is an error</span>
</div>
<div class="bottom">
<input type="submit" value="Send reminder"></input>
<a href="/login" rel="login" class="linkform">Suddenly remebered? Log in here</a>
<a href="/register" rel="register" class="linkform">You don't have an account? Register here</a>
<div class="clear"></div>
</div>
</form>
</div>
<div class="clear"></div>
</div>
</div>
<!-- The JavaScript -->
</body>
</html> | JGX020/picture-search-talk | templates/login.html | HTML | mit | 3,536 |
<!DOCTYPE html>
<head>
<title></title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<main>
<h1>Enumerables</h1>
<h2></h2>
<h4>Right now</h4>
<section>
<p>
each_with_index takes an optional parameter to offset the method from zero, with no starting index.
</p>
</section>
</main>
| papermache/papermache.github.io | blog/t4-enumerable-methods.html | HTML | mit | 354 |
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>File: ftp_sink.rb</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
<script type="text/javascript">
// <![CDATA[
function popupCode( url ) {
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
}
function toggleCode( id ) {
if ( document.getElementById )
elem = document.getElementById( id );
else if ( document.all )
elem = eval( "document.all." + id );
else
return false;
elemStyle = elem.style;
if ( elemStyle.display != "block" ) {
elemStyle.display = "block"
} else {
elemStyle.display = "none"
}
return true;
}
// Make codeblocks hidden by default
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
// ]]>
</script>
</head>
<body>
<div id="fileHeader">
<h1>ftp_sink.rb</h1>
<table class="header-table">
<tr class="top-aligned-row">
<td><strong>Path:</strong></td>
<td>lib/interfaces/ftp_sink.rb
</td>
</tr>
<tr class="top-aligned-row">
<td><strong>Last Update:</strong></td>
<td>Wed Nov 11 19:20:56 +0100 2009</td>
</tr>
</table>
</div>
<!-- banner header -->
<div id="bodyContent">
<div id="contextContent">
<div id="requires-list">
<h3 class="section-bar">Required files</h3>
<div class="name-list">
interfaces/ftp_sink_base
interfaces/ftp_session
</div>
</div>
</div>
</div>
<!-- if includes -->
<div id="section">
<!-- if method_list -->
</div>
<div id="validator-badges">
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
</div>
</body>
</html> | tracksun/interfaces | doc/rdoc/files/lib/interfaces/ftp_sink_rb.html | HTML | mit | 2,228 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN""http://www.w3.org/TR/REC-html40/frameset.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc on Fri Sep 14 18:24:10 EDT 2007 -->
<TITLE>
Xerces2 Implementation: Class CachingParserPool
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
</HEAD>
<BODY BGCOLOR="white">
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_top"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../org/apache/xerces/parsers/BasicParserConfiguration.html"><B>PREV CLASS</B></A>
<A HREF="../../../../org/apache/xerces/parsers/CachingParserPool.ShadowedGrammarPool.html"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="CachingParserPool.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: <A HREF="#inner_class_summary">INNER</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.apache.xerces.parsers</FONT>
<BR>
Class CachingParserPool</H2>
<PRE>
java.lang.Object
|
+--<B>org.apache.xerces.parsers.CachingParserPool</B>
</PRE>
<HR>
<DL>
<DT>public class <B>CachingParserPool</B><DT>extends java.lang.Object</DL>
<P>
A parser pool that enables caching of grammars. The caching parser
pool is constructed with a specific symbol table and grammar pool
that has already been populated with the grammars used by the
application.
<p>
Once the caching parser pool is constructed, specific parser
instances are created by calling the appropriate factory method
on the parser pool.
<p>
<strong>Note:</strong> There is a performance penalty for using
a caching parser pool due to thread safety. Access to the symbol
table and grammar pool must be synchronized to ensure the safe
operation of the symbol table and grammar pool.
<p>
<strong>Note:</strong> If performance is critical, then another
mechanism needs to be used instead of the caching parser pool.
One approach would be to create parser instances that do not
share these structures. Instead, each instance would get its
own copy to use while parsing. This avoids the synchronization
overhead at the expense of more memory and the time required
to copy the structures for each new parser instance. And even
when a parser instance is re-used, there is a potential for a
memory leak due to new symbols being added to the symbol table
over time. In other words, always take caution to make sure
that your application is thread-safe and avoids leaking memory.
<P>
<DL>
<DT><B>Version: </B><DD>$Id: CachingParserPool.java 447239 2006-09-18 05:08:26Z mrglavas $</DD>
<DT><B>Author: </B><DD>Andy Clark, IBM</DD>
</DL>
<HR>
<P>
<!-- ======== INNER CLASS SUMMARY ======== -->
<A NAME="inner_class_summary"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Inner Class Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/parsers/CachingParserPool.ShadowedGrammarPool.html">CachingParserPool.ShadowedGrammarPool</A></B></CODE>
<BR>
Shadowed grammar pool.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/parsers/CachingParserPool.SynchronizedGrammarPool.html">CachingParserPool.SynchronizedGrammarPool</A></B></CODE>
<BR>
Synchronized grammar pool.</TD>
</TR>
</TABLE>
<!-- =========== FIELD SUMMARY =========== -->
<A NAME="field_summary"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Field Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/parsers/CachingParserPool.html#DEFAULT_SHADOW_GRAMMAR_POOL">DEFAULT_SHADOW_GRAMMAR_POOL</A></B></CODE>
<BR>
Default shadow grammar pool (false).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/parsers/CachingParserPool.html#DEFAULT_SHADOW_SYMBOL_TABLE">DEFAULT_SHADOW_SYMBOL_TABLE</A></B></CODE>
<BR>
Default shadow symbol table (false).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/parsers/CachingParserPool.html#fShadowGrammarPool">fShadowGrammarPool</A></B></CODE>
<BR>
Shadow the grammar pool for new parser instances.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/parsers/CachingParserPool.html#fShadowSymbolTable">fShadowSymbolTable</A></B></CODE>
<BR>
Shadow the symbol table for new parser instances.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected org.apache.xerces.xni.grammars.XMLGrammarPool</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/parsers/CachingParserPool.html#fSynchronizedGrammarPool">fSynchronizedGrammarPool</A></B></CODE>
<BR>
Grammar pool.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected <A HREF="../../../../org/apache/xerces/util/SymbolTable.html">SymbolTable</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/parsers/CachingParserPool.html#fSynchronizedSymbolTable">fSynchronizedSymbolTable</A></B></CODE>
<BR>
Symbol table.</TD>
</TR>
</TABLE>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../org/apache/xerces/parsers/CachingParserPool.html#CachingParserPool()">CachingParserPool</A></B>()</CODE>
<BR>
Default constructor.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../org/apache/xerces/parsers/CachingParserPool.html#CachingParserPool(org.apache.xerces.util.SymbolTable, org.apache.xerces.xni.grammars.XMLGrammarPool)">CachingParserPool</A></B>(<A HREF="../../../../org/apache/xerces/util/SymbolTable.html">SymbolTable</A> symbolTable,
org.apache.xerces.xni.grammars.XMLGrammarPool grammarPool)</CODE>
<BR>
Constructs a caching parser pool with the specified symbol table
and grammar pool.</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Method Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/xerces/parsers/DOMParser.html">DOMParser</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/parsers/CachingParserPool.html#createDOMParser()">createDOMParser</A></B>()</CODE>
<BR>
Creates a new DOM parser.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/xerces/parsers/SAXParser.html">SAXParser</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/parsers/CachingParserPool.html#createSAXParser()">createSAXParser</A></B>()</CODE>
<BR>
Creates a new SAX parser.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../org/apache/xerces/util/SymbolTable.html">SymbolTable</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/parsers/CachingParserPool.html#getSymbolTable()">getSymbolTable</A></B>()</CODE>
<BR>
Returns the symbol table.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> org.apache.xerces.xni.grammars.XMLGrammarPool</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/parsers/CachingParserPool.html#getXMLGrammarPool()">getXMLGrammarPool</A></B>()</CODE>
<BR>
Returns the grammar pool.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/apache/xerces/parsers/CachingParserPool.html#setShadowSymbolTable(boolean)">setShadowSymbolTable</A></B>(boolean shadow)</CODE>
<BR>
Sets whether new parser instance receive shadow copies of the
main symbol table.</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TD><B>Methods inherited from class java.lang.Object</B></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<A NAME="field_detail"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Field Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="DEFAULT_SHADOW_SYMBOL_TABLE"><!-- --></A><H3>
DEFAULT_SHADOW_SYMBOL_TABLE</H3>
<PRE>
public static final boolean <B>DEFAULT_SHADOW_SYMBOL_TABLE</B></PRE>
<DL>
<DD>Default shadow symbol table (false).</DL>
<HR>
<A NAME="DEFAULT_SHADOW_GRAMMAR_POOL"><!-- --></A><H3>
DEFAULT_SHADOW_GRAMMAR_POOL</H3>
<PRE>
public static final boolean <B>DEFAULT_SHADOW_GRAMMAR_POOL</B></PRE>
<DL>
<DD>Default shadow grammar pool (false).</DL>
<HR>
<A NAME="fSynchronizedSymbolTable"><!-- --></A><H3>
fSynchronizedSymbolTable</H3>
<PRE>
protected <A HREF="../../../../org/apache/xerces/util/SymbolTable.html">SymbolTable</A> <B>fSynchronizedSymbolTable</B></PRE>
<DL>
<DD>Symbol table. The symbol table that the caching parser pool is
constructed with is automatically wrapped in a synchronized
version for thread-safety.</DL>
<HR>
<A NAME="fSynchronizedGrammarPool"><!-- --></A><H3>
fSynchronizedGrammarPool</H3>
<PRE>
protected org.apache.xerces.xni.grammars.XMLGrammarPool <B>fSynchronizedGrammarPool</B></PRE>
<DL>
<DD>Grammar pool. The grammar pool that the caching parser pool is
constructed with is automatically wrapped in a synchronized
version for thread-safety.</DL>
<HR>
<A NAME="fShadowSymbolTable"><!-- --></A><H3>
fShadowSymbolTable</H3>
<PRE>
protected boolean <B>fShadowSymbolTable</B></PRE>
<DL>
<DD>Shadow the symbol table for new parser instances. If true,
new parser instances use shadow copies of the main symbol
table and are not allowed to add new symbols to the main
symbol table. New symbols are added to the shadow symbol
table and are local to the parser instance.</DL>
<HR>
<A NAME="fShadowGrammarPool"><!-- --></A><H3>
fShadowGrammarPool</H3>
<PRE>
protected boolean <B>fShadowGrammarPool</B></PRE>
<DL>
<DD>Shadow the grammar pool for new parser instances. If true,
new parser instances use shadow copies of the main grammar
pool and are not allowed to add new grammars to the main
grammar pool. New grammars are added to the shadow grammar
pool and are local to the parser instance.</DL>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="CachingParserPool()"><!-- --></A><H3>
CachingParserPool</H3>
<PRE>
public <B>CachingParserPool</B>()</PRE>
<DL>
<DD>Default constructor.</DL>
<HR>
<A NAME="CachingParserPool(org.apache.xerces.util.SymbolTable, org.apache.xerces.xni.grammars.XMLGrammarPool)"><!-- --></A><H3>
CachingParserPool</H3>
<PRE>
public <B>CachingParserPool</B>(<A HREF="../../../../org/apache/xerces/util/SymbolTable.html">SymbolTable</A> symbolTable,
org.apache.xerces.xni.grammars.XMLGrammarPool grammarPool)</PRE>
<DL>
<DD>Constructs a caching parser pool with the specified symbol table
and grammar pool.<DD><DL>
<DT><B>Parameters:</B><DD><CODE>symbolTable</CODE> - The symbol table.<DD><CODE>grammarPool</CODE> - The grammar pool.</DL>
</DD>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Method Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="getSymbolTable()"><!-- --></A><H3>
getSymbolTable</H3>
<PRE>
public <A HREF="../../../../org/apache/xerces/util/SymbolTable.html">SymbolTable</A> <B>getSymbolTable</B>()</PRE>
<DL>
<DD>Returns the symbol table.</DL>
<HR>
<A NAME="getXMLGrammarPool()"><!-- --></A><H3>
getXMLGrammarPool</H3>
<PRE>
public org.apache.xerces.xni.grammars.XMLGrammarPool <B>getXMLGrammarPool</B>()</PRE>
<DL>
<DD>Returns the grammar pool.</DL>
<HR>
<A NAME="setShadowSymbolTable(boolean)"><!-- --></A><H3>
setShadowSymbolTable</H3>
<PRE>
public void <B>setShadowSymbolTable</B>(boolean shadow)</PRE>
<DL>
<DD>Sets whether new parser instance receive shadow copies of the
main symbol table.<DD><DL>
<DT><B>Parameters:</B><DD><CODE>shadow</CODE> - If true, new parser instances use shadow copies
of the main symbol table and are not allowed to
add new symbols to the main symbol table. New
symbols are added to the shadow symbol table and
are local to the parser instance. If false, new
parser instances are allowed to add new symbols
to the main symbol table.</DL>
</DD>
</DL>
<HR>
<A NAME="createDOMParser()"><!-- --></A><H3>
createDOMParser</H3>
<PRE>
public <A HREF="../../../../org/apache/xerces/parsers/DOMParser.html">DOMParser</A> <B>createDOMParser</B>()</PRE>
<DL>
<DD>Creates a new DOM parser.</DL>
<HR>
<A NAME="createSAXParser()"><!-- --></A><H3>
createSAXParser</H3>
<PRE>
public <A HREF="../../../../org/apache/xerces/parsers/SAXParser.html">SAXParser</A> <B>createSAXParser</B>()</PRE>
<DL>
<DD>Creates a new SAX parser.</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_bottom"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../org/apache/xerces/parsers/BasicParserConfiguration.html"><B>PREV CLASS</B></A>
<A HREF="../../../../org/apache/xerces/parsers/CachingParserPool.ShadowedGrammarPool.html"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="CachingParserPool.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: <A HREF="#inner_class_summary">INNER</A> | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->
<HR>
Copyright © 1999-2007 The Apache Software Foundation. All Rights Reserved.
</BODY>
</HTML>
| Baltasarq/Gia | src/JDom/Xerces-J-bin.2.9.1/docs/javadocs/xerces2/org/apache/xerces/parsers/CachingParserPool.html | HTML | mit | 20,691 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>color: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.14.0 / color - 1.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
color
<small>
1.6.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-01 12:01:13 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-01 12:01:13 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 3 Virtual package relying on a GMP lib system installation
coq 8.14.0 Formal proof management system
dune 2.9.1 Fast, portable, and opinionated build system
ocaml 4.07.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.07.1 Official release 4.07.1
ocaml-config 1 OCaml Switch Configuration
ocaml-secondary-compiler 4.08.1-1 OCaml 4.08.1 Secondary Switch Compiler
ocamlfind 1.9.1 A library manager for OCaml
ocamlfind-secondary 1.9.1 Adds support for ocaml-secondary-compiler to ocamlfind
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "frederic.blanqui@inria.fr"
authors: [
"Frédéric Blanqui"
"Adam Koprowski"
"Sébastien Hinderer"
"Pierre-Yves Strub"
"Sidi Ould Biha"
"Solange Coupet-Grimal"
"William Delobel"
"Hans Zantema"
"Stéphane Leroux"
"Léo Ducas"
"Johannes Waldmann"
"Qiand Wang"
"Lianyi Zhang"
"Sorin Stratulat"
]
license: "CeCILL"
homepage: "http://color.inria.fr/"
bug-reports: "https://github.com/fblanqui/color/issues"
build: [make "-j%{jobs}%"]
install: [make "-f" "Makefile.coq" "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/CoLoR"]
depends: [
"ocaml"
"coq" {>= "8.9" & < "8.10~"}
"coq-bignums" {>= "8.9" & < "8.10~"}
]
tags: [
"date:2019-02-11"
"logpath:CoLoR"
"category:Computer Science/Algorithms/Correctness proofs of algorithms"
"category:Computer Science/Data Types and Data Structures"
"category:Computer Science/Lambda Calculi"
"category:Mathematics/Algebra"
"category:Mathematics/Combinatorics and Graph Theory"
"category:Mathematics/Logic/Type theory"
"category:Miscellaneous/Extracted Programs/Type checking unification and normalization"
"keyword:rewriting"
"keyword:termination"
"keyword:lambda calculus"
"keyword:list"
"keyword:multiset"
"keyword:polynomial"
"keyword:vectors"
"keyword:matrices"
"keyword:FSet"
"keyword:FMap"
"keyword:term"
"keyword:context"
"keyword:substitution"
"keyword:universal algebra"
"keyword:varyadic term"
"keyword:string"
"keyword:alpha-equivalence"
"keyword:de Bruijn indices"
"keyword:simple types"
"keyword:matching"
"keyword:unification"
"keyword:relation"
"keyword:ordering"
"keyword:quasi-ordering"
"keyword:lexicographic ordering"
"keyword:ring"
"keyword:semiring"
"keyword:well-foundedness"
"keyword:noetherian"
"keyword:finitely branching"
"keyword:dependent choice"
"keyword:infinite sequences"
"keyword:non-termination"
"keyword:loop"
"keyword:graph"
"keyword:path"
"keyword:transitive closure"
"keyword:strongly connected component"
"keyword:topological ordering"
"keyword:rpo"
"keyword:horpo"
"keyword:dependency pair"
"keyword:dependency graph"
"keyword:semantic labeling"
"keyword:reducibility"
"keyword:Girard"
"keyword:fixpoint theorem"
"keyword:Tarski"
"keyword:pigeon-hole principle"
"keyword:Ramsey theorem"
]
synopsis: "A library on rewriting theory and termination"
flags: light-uninstall
url {
src: "http://files.inria.fr/blanqui/color/color.1.6.0.tar.gz"
checksum: "md5=8cb1be3cb3f3f2e5d1039c33fef4288d"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-color.1.6.0 coq.8.14.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.14.0).
The following dependencies couldn't be met:
- coq-color -> coq < 8.10~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-color.1.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.07.1-2.0.6/released/8.14.0/color/1.6.0.html | HTML | mit | 9,558 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>list-string: 16 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / extra-dev</a></li>
<li class="active"><a href="">8.10.dev / list-string - 2.1.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
list-string
<small>
2.1.0
<span class="label label-success">16 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2020-08-11 14:39:01 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-08-11 14:39:01 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.10.dev Formal proof management system
num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "dev@clarus.me"
homepage: "https://github.com/clarus/coq-list-string"
dev-repo: "git+https://github.com/clarus/coq-list-string.git"
bug-reports: "https://github.com/clarus/coq-list-string/issues"
authors: ["Guillaume Claret"]
license: "MIT"
build: [
["ruby" "pp.rb"]
["./configure.sh"]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
depends: [
"conf-ruby" {build}
"coq-error-handlers"
"coq-list-plus"
"coq" {>= "8.4pl4"}
"ocaml"
]
tags: [
"category:Computer Science/Data Types and Data Structures"
"date:2015-03-23"
"logpath:ListString"
]
synopsis: "Strings implemented as lists"
url {
src: "https://github.com/clarus/coq-list-string/archive/2.1.0.tar.gz"
checksum: "md5=ded335c4340aeae01a80d046ac636f3a"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-list-string.2.1.0 coq.8.10.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 2h opam install -y --deps-only coq-list-string.2.1.0 coq.8.10.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>18 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 2h opam install -y -v coq-list-string.2.1.0 coq.8.10.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>16 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 650 K</p>
<ul>
<li>147 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/All.vo</code></li>
<li>124 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/UnitTests.glob</code></li>
<li>96 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/UnitTests.vo</code></li>
<li>40 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Etc.vo</code></li>
<li>39 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Char.vo</code></li>
<li>35 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Conversion.vo</code></li>
<li>33 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Trim.vo</code></li>
<li>33 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Comparison.vo</code></li>
<li>27 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Case.vo</code></li>
<li>15 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/LString.vo</code></li>
<li>10 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/UnitTests.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Etc.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Char.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Conversion.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Comparison.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Bool.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Char.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Trim.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Etc.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Conversion.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Comparison.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Bool.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Trim.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Case.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/All.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Case.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/Bool.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/All.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/LString.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ListString/LString.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-list-string.2.1.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.06.1-2.0.5/extra-dev/8.10.dev/list-string/2.1.0.html | HTML | mit | 9,859 |
<p>
comp-3372 works!
</p>
| angular/angular-cli-stress-test | src/app/components/comp-3372/comp-3372.component.html | HTML | mit | 28 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_112-google-v7) on Fri Oct 20 16:52:53 PDT 2017 -->
<title>BroadcastReceiverData</title>
<meta name="date" content="2017-10-20">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="BroadcastReceiverData";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/robolectric/manifest/AndroidManifest.html" title="class in org.robolectric.manifest"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../org/robolectric/manifest/ContentProviderData.html" title="class in org.robolectric.manifest"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/robolectric/manifest/BroadcastReceiverData.html" target="_top">Frames</a></li>
<li><a href="BroadcastReceiverData.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#fields.inherited.from.class.org.robolectric.manifest.PackageItemData">Field</a> | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">org.robolectric.manifest</div>
<h2 title="Class BroadcastReceiverData" class="title">Class BroadcastReceiverData</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li><a href="../../../org/robolectric/manifest/PackageItemData.html" title="class in org.robolectric.manifest">org.robolectric.manifest.PackageItemData</a></li>
<li>
<ul class="inheritance">
<li>org.robolectric.manifest.BroadcastReceiverData</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="typeNameLabel">BroadcastReceiverData</span>
extends <a href="../../../org/robolectric/manifest/PackageItemData.html" title="class in org.robolectric.manifest">PackageItemData</a></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="fields.inherited.from.class.org.robolectric.manifest.PackageItemData">
<!-- -->
</a>
<h3>Fields inherited from class org.robolectric.manifest.<a href="../../../org/robolectric/manifest/PackageItemData.html" title="class in org.robolectric.manifest">PackageItemData</a></h3>
<code><a href="../../../org/robolectric/manifest/PackageItemData.html#className">className</a>, <a href="../../../org/robolectric/manifest/PackageItemData.html#metaData">metaData</a></code></li>
</ul>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../org/robolectric/manifest/BroadcastReceiverData.html#BroadcastReceiverData-java.util.Map-org.robolectric.manifest.MetaData-java.util.List-">BroadcastReceiverData</a></span>(java.util.Map<java.lang.String,java.lang.String> attributes,
<a href="../../../org/robolectric/manifest/MetaData.html" title="class in org.robolectric.manifest">MetaData</a> metaData,
java.util.List<<a href="../../../org/robolectric/manifest/IntentFilterData.html" title="class in org.robolectric.manifest">IntentFilterData</a>> intentFilters)</code> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../org/robolectric/manifest/BroadcastReceiverData.html#BroadcastReceiverData-java.lang.String-org.robolectric.manifest.MetaData-">BroadcastReceiverData</a></span>(java.lang.String className,
<a href="../../../org/robolectric/manifest/MetaData.html" title="class in org.robolectric.manifest">MetaData</a> metaData)</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/manifest/BroadcastReceiverData.html#addAction-java.lang.String-">addAction</a></span>(java.lang.String action)</code> </td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>java.util.List<java.lang.String></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/manifest/BroadcastReceiverData.html#getActions--">getActions</a></span>()</code> </td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>java.util.Map<java.lang.String,java.lang.String></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/manifest/BroadcastReceiverData.html#getAllAttributes--">getAllAttributes</a></span>()</code>
<div class="block">Get the map for all attributes defined for the broadcast receiver.</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>java.util.List<<a href="../../../org/robolectric/manifest/IntentFilterData.html" title="class in org.robolectric.manifest">IntentFilterData</a>></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/manifest/BroadcastReceiverData.html#getIntentFilters--">getIntentFilters</a></span>()</code>
<div class="block">Get the intent filters defined for the broadcast receiver.</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/manifest/BroadcastReceiverData.html#getPermission--">getPermission</a></span>()</code> </td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/manifest/BroadcastReceiverData.html#isExported--">isExported</a></span>()</code>
<div class="block">Returns whether this broadcast receiver is exported by checking the XML attribute.</div>
</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/manifest/BroadcastReceiverData.html#setPermission-java.lang.String-">setPermission</a></span>(java.lang.String permission)</code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.org.robolectric.manifest.PackageItemData">
<!-- -->
</a>
<h3>Methods inherited from class org.robolectric.manifest.<a href="../../../org/robolectric/manifest/PackageItemData.html" title="class in org.robolectric.manifest">PackageItemData</a></h3>
<code><a href="../../../org/robolectric/manifest/PackageItemData.html#getClassName--">getClassName</a>, <a href="../../../org/robolectric/manifest/PackageItemData.html#getMetaData--">getMetaData</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="BroadcastReceiverData-java.util.Map-org.robolectric.manifest.MetaData-java.util.List-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>BroadcastReceiverData</h4>
<pre>public BroadcastReceiverData(java.util.Map<java.lang.String,java.lang.String> attributes,
<a href="../../../org/robolectric/manifest/MetaData.html" title="class in org.robolectric.manifest">MetaData</a> metaData,
java.util.List<<a href="../../../org/robolectric/manifest/IntentFilterData.html" title="class in org.robolectric.manifest">IntentFilterData</a>> intentFilters)</pre>
</li>
</ul>
<a name="BroadcastReceiverData-java.lang.String-org.robolectric.manifest.MetaData-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>BroadcastReceiverData</h4>
<pre>public BroadcastReceiverData(java.lang.String className,
<a href="../../../org/robolectric/manifest/MetaData.html" title="class in org.robolectric.manifest">MetaData</a> metaData)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getActions--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getActions</h4>
<pre>public java.util.List<java.lang.String> getActions()</pre>
</li>
</ul>
<a name="addAction-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addAction</h4>
<pre>public void addAction(java.lang.String action)</pre>
</li>
</ul>
<a name="setPermission-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setPermission</h4>
<pre>public void setPermission(java.lang.String permission)</pre>
</li>
</ul>
<a name="getPermission--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPermission</h4>
<pre>public java.lang.String getPermission()</pre>
</li>
</ul>
<a name="getIntentFilters--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getIntentFilters</h4>
<pre>public java.util.List<<a href="../../../org/robolectric/manifest/IntentFilterData.html" title="class in org.robolectric.manifest">IntentFilterData</a>> getIntentFilters()</pre>
<div class="block"><p>Get the intent filters defined for the broadcast receiver.</p></div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>A list of intent filters.</dd>
</dl>
</li>
</ul>
<a name="getAllAttributes--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getAllAttributes</h4>
<pre>public java.util.Map<java.lang.String,java.lang.String> getAllAttributes()</pre>
<div class="block"><p>Get the map for all attributes defined for the broadcast receiver.</p></div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>map of attributes names to values from the manifest.</dd>
</dl>
</li>
</ul>
<a name="isExported--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>isExported</h4>
<pre>public boolean isExported()</pre>
<div class="block"><p>Returns whether this broadcast receiver is exported by checking the XML attribute.</p></div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>true if the broadcast receiver is exported</dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><script type="text/javascript" src="../../../highlight.pack.js"></script>
<script type="text/javascript"><!--
hljs.initHighlightingOnLoad();
//--></script></div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/robolectric/manifest/AndroidManifest.html" title="class in org.robolectric.manifest"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../org/robolectric/manifest/ContentProviderData.html" title="class in org.robolectric.manifest"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/robolectric/manifest/BroadcastReceiverData.html" target="_top">Frames</a></li>
<li><a href="BroadcastReceiverData.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#fields.inherited.from.class.org.robolectric.manifest.PackageItemData">Field</a> | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| robolectric/robolectric.github.io | javadoc/3.5/org/robolectric/manifest/BroadcastReceiverData.html | HTML | mit | 17,150 |
{% extends "omw.html" %}
{% block welcome %}
<!--button onclick="topFunction()" class="back-to-top-button" title="Go to top">Back to the top</button-->
<span class="main-heading"><h3>OMW Search Interface</h3></span>
<aside class="contents-nav" id="search-contents">
<h4>Contents</h4>
<ul class="hide-bullets">
<li><a href="#Introduction"> Introduction </a></li>
<li><a href="#Search-func"> Basic Search Function</a></li>
<ul class="hide-bullets">
<li><a href="#Glob"> Glob Patters </a></li>
<li><a href="#Hints"> Hints (tooltips)</a></li>
</ul>
<li><a href="#Elements"> Elements of a Concept</a></li>
<ul class="hide-bullets">
<li><a href="#Head"> Head</a></li>
<li><a href="#Senses"> Senses</a></li>
<li><a href="#Definitions"> Definitions</a></li>
<li><a href="#Examples"> Examples</a></li>
<li><a href="#Synset-relations"> Synset Relations</a></li>
<li><a href="#Synset-Sources"> Synset Sources</a></li>
</ul>
<li><a href="#Restful"> Restful Interface</a></li>
</ul>
</aside>
<section class="search-page-above-intro">
<hr>
<h4 id="Introduction"> Introduction:</h4>
<p> WordNet is a large, open-source, lexical database of English. Nouns, verbs, adjectives, and adverbs are grouped
into sets of cognitive synonyms (synsets), each expressing a distinct concept. Synsets are interlinked utilizing
conceptual-semantic and lexical relations. </p>
<p>Concepts are abstract ideas or general notions in our minds, we represent them as nodes in the OMW graph which
are linked to synsets in individual wordnets.</p>
</section>
<!--h3>Navigating through the Concept page:</h3-->
<hr>
<h4 id="Search-func">Basic Search Function:</h4>
<img class="border-image" src="../../static/img/docs/search/search1.png">
<br>
<p>The Basic Search function is used to search lemmas, which is present on the head of the concept page. A lemma is
a word you find in the dictionary or wordnet.
In the search function, there are two language select options. You can select the languages in which you want to
search the word in the search bar.
For example, if you choose English & French, and then if you search for a word, it will search that word in both
languages.</p>
<h5 id="Glob">Glob Patterns:</h5>
<p>Glob patterns are used for file path expansion with the help of wildcard characters. <a
href="{{ url_for('omw_doc_glob') }}">See the OMW documentation on Glob</a>.
<ul>
<li><a href="https://www.sqlitetutorial.net/sqlite-glob/"> Learn how to use the SQLite GLOB operator to
determine whether a string matches a specific pattern.</a></li>
</ul>
<h5 id="Hints">Hints (tooltips):</h5>
<p>Many elements have short explanations that will be shown if you hover over them. If you click on them, they will
lead you to more detailed information. For example, if you want to know what hypernym means, you can hover your
pointer over hypernym.
</p>
<img class="border-image" src="../../static/img/docs/search/search6.png">
<p>For obtaining more information, you may click on hypernym.</p>
<hr>
<h4 id="Elements">Elements of a Concept:</h4>
<p>Elements of a concept include head, senses, definitions, examples, synset-relations, and synset-sources. </p>
<hr>
<h5 id="Head"> Head:</h5>
<p> The head section contains lemma, part of speech, core synset symbol (may or may not be present), link to ili
(ili Id) and definition of the lemma.</p>
<img class="border-image" src="../../static/img/docs/search/head.png"><br>
<h6>Part of Speech:</h6>
<p>It implies whether the searched lemma is a noun, adjective, etc.'n' in the image above implies that the lemma is
a noun.</p>
<ul>
<li><a href="https://www.luismc.com/omw/omw/doc/pos"> Parts of Speech: Information for the parts of speech used
by OMW</a></li>
</ul>
<h6>Core synset symbol ✪ : </h6>
<p>You may or may not see a star inscribed in a circle next to the part of speech. Core concepts are those in the
the semi-automatically compiled list of 4,960 core word senses in the Princeton WordNet (approximately the 5,000
most frequently used word senses in the British National Corpus).
</p>
<ul>
<li><a href="https://www.luismc.com/omw/omw/core"> Core synset ✪</a></li>
</ul>
<h6>Link to ili:</h6>
<p>There is a unique ili ID for each word, you may hover it or may click it to get more information.</p>
<h6>Definitions of the lemma:</h6>
<ul>
<li><a href="#Definitions"> Definitions</a></li>
</ul>
<hr>
<h5 id="Senses">Senses: </h5>
<p>The sense is relation to other expressions in the language system. It is one of the meanings of a lemma. Senses
mean all the possible meanings of a lemma. In this Senses section you can look at all the possible meanings of a
lemma. Each sense of a word is in a different synset.</p>
<img class="border-image" src="../../static/img/docs/search/search7.png">
<hr>
<h5 id="Definitions">Definitions: </h5>
<p>In the definitions section, you can see a statement of the exact meaning of a word.</p>
<img class="border-image" src="../../static/img/docs/search/search8.png">
<hr>
<h5 id="Examples">Examples:</h5>
<p>An example of the entered lemma will be listed here. It may or may not be available.</p>
<img class="border-image" src="../../static/img/docs/search/examples.png">
<hr>
<h5 id="Synset-relations">Synset Relations:</h5>
<p>Here you can look up for Part Holonym, Hypernym, Hyponym, Member Holonym, Domain topic, Instance Hyponym, and
other synset relations.
</p>
<img class="border-image" src="../../static/img/docs/search/search9.png">
<br>
<ul>
<li><a href="https://globalwordnet.github.io/gwadoc/"> Relations</a></li>
</ul>
<hr>
<h5 id="Synset-Sources">Synset Sources:</h5>
<p>The wordnets are all developed independently, The Open Multilingual Wordnet provides access to open wordnets in a
variety of languages, all linked to a collaborative Interlingual Index. </p>
<img class="border-image" src="../../static/img/docs/search/search10.png">
<br>
<ul>
<li><a href="https://www.luismc.com/omw/omw/src/pwn/3.0"> Princeton Wordnet</a></li>
<li><a href="https://www.luismc.com/omw/omw/src/ellwn/1.0">Greek Wordnet</a></li>
</ul>
<hr>
<ul>
<li><a href="https://www.luismc.com/omw/"> Open Multilingual Wordnet</a></li>
<li><a href="https://www.luismc.com/omw/omw/doc/wn"> OMW Wordnet Documentation</a></li>
<li><a href="https://www.luismc.com/omw/omw/doc/glossary"> OMW Glossary</a></li>
</ul>
<h4 id="Restful">Restful Interface</h4>
<ul>
<li> Search for an ili_id with this to get the ili record (as html)
<br><code>omw/ili/concepts/ili_id</code>
<br>e.g. {{ ili_link(46593, 'omw/ili/concepts/46593') }}
<li> Search for an ili_id with this to get the concept (as html)
<br><code>omw/concepts/ili/ili_id</code>
<br>e.g. {{ ili_ss_link(46593, 'omw/concepts/46593') }}
<li> Search within a wordnet using it's project, version and synset identifier:
<br><code>omw/src/prj/ver/sysnet_id</code>
<br>e.g. <a href='/omw/src/pwn/3.0/02121620-n'>/omw/src/pwn/3.0/02121620-n</a>
{% with messages = get_flashed_messages() %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
{% endblock %}
| globalwordnet/OMW | omw/templates/doc/search.html | HTML | mit | 7,989 |
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8"/>
<title>
Jazz Team Blog Collaborative Lifecycle Management 6.0 in a nutshell</title></head><body>From:<a href=https://jazz.net/blog/index.php/2015/06/26/collaborative-lifecycle-mangagement-6-0-in-a-nutshell/>https://jazz.net/blog/index.php/2015/06/26/collaborative-lifecycle-mangagement-6-0-in-a-nutshell/</a><br><br><div><p><a rel="attachment wp-att-13334" href="https://jazz.net/blog/index.php/2015/06/26/collaborative-lifecycle-mangagement-6-0-in-a-nutshell/clm-splash-ga2/"><img class="aligncenter size-full wp-image-13334" title="clm-splash-ga2" src="https://jazz.net/blog/wp-content/uploads/2015/06/clm-splash-ga2.png" alt="CLM 6.0 is here!" width="580" height="300"></a></p>
<p>Since <a href="http://www-01.ibm.com/common/ssi/cgi-bin/ssialias?subtype=ca&infotype=an&appname=iSource&supplier=897&letternum=ENUS215-208" target="_blank">our announcement</a> on June 9th, we’ve spent the last couple of weeks here on Jazz.net sharing with all of you more information about the new features and their value. We’re planning on spending some more time in the next couple of weeks continuing that sharing. But today is an exciting day for all of us on the Collaborative Lifecycle Management (CLM) team—<a href="https://jazz.net/downloads/clm/releases/6.0" target="_blank">Version 6.0 is generally available!</a></p>
<p>This is a culmination of a lengthy development cycle for us. If you were following along here on Jazz.net, we developed new capabilities over the course of 11 sprints. Much of that, which you’ll see as you look through the content in v6.0, was required for the effort—from the Jazz Foundation on up—to provide configuration management across the integrated solution. But what you don’t see, or what maybe isn’t immediately apparent, is all the work occurring behind the scenes.</p>
<p>So, to highlight just a few of the changes:</p>
<ul>
<li>During v6.0, we shifted to building twice per day—10 times per week. This allowed us to slow the amount of feature change occurring in just daily builds to ensure a more stable experience.</li>
<li>We expanded our development pipeline to 14 different tests, and those tests run against every build. If you look back as far as five years ago, we had no automated development pipeline. So from zero automated pipeline testing to running 140 pipeline tests (14 tests for 10 builds every week) in five years.</li>
<li>We built a federated environment in which to test configuration management. This distributed environment was built to mimic some of our more complex customer shops and allow us a much greater depth of testing for v6.0 than we’ve had in the past.</li>
</ul>
<p>Feature development included Configuration Management as well as a number of DevOps enhancements.</p>
<p>You’ll see a lot of Configuration Management content on Jazz.net related to CLM v6.0. Rather than try to give it a full summary here, I’ll point you to some key information:</p>
<ul>
<li>We’ve put Configuration Management behind an activation key. The intent here was to ensure you are walking through <a href="https://jazz.net/servlet/clm-cm/request-key" target="_blank">all the considerations related to CM</a> before you turn it on.</li>
<li>If you’re worried that CM is really just for clients who are building complex hardware devices, it’s not. You can use <a href="https://jazz.net/blog/index.php/2015/06/15/configuration-management-%E2%80%93-it%E2%80%99s-not-just-for-building-airplanes-or-cars/" target="_blank">CM in simple scenarios</a> as well.</li>
<li>And finally, of course, once you’ve considered it and understand how you might use it, visit <a href="http://www-01.ibm.com/support/knowledgecenter/SSYMRC_6.0.0/com.ibm.jazz.vvc.doc/topics/c_cm_assess.html?lang=en" target="_blank">Getting Started with Configuration Management</a>.</li>
</ul>
<p>But CM wasn’t the only set of feature work in CLM v6.0. <a href="https://jazz.net/blog/index.php/2015/06/24/introducing-safe%c2%ae-with-the-power-of-ibm-devops/" target="_blank">SAFe 3.0 brings a new template to Rational Team Concert</a> (RTC) and extends a project to the business teams involved in development. You can get out of the box and up and running with the SAFe template, improving agility and predictability with role-based dashboards. Continued scalability improvements to Enterprise Edition, integration with UrbanCode Deploy, Single Sign-On (SSO) for Kerberos and OIDC for all RTC clients are numbered among other enhancements. Finally, our Reporting team improved setup and configuration, simplified the customer experience, integrated reports into QuickPlanner, and have given you “near live” operational reporting.</p>
<p>I urge you to stop by our <a href="https://jazz.net/wiki/bin/view/Deployment/WebHome" target="_blank">Deployment wiki</a>, one of our most popular destinations.</p>
<p>All in all, it’s been a very active release for both Development and Operations, and one we’re very proud of.</p>
<span><img src="https://jazz.net/blog/wp-content/plugins/wp-spamfree/img/wpsf-img.php" width="0" height="0" alt=""></span></div></body></html> | ciandcd/ciandcd-web | content/category/ciandcd/Jazz_Team_Blog__Collaborative_Lifecycle_Management_6.0_in_a_nutshell.html | HTML | mit | 5,384 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<title>Mobile Clinic: <GCDAsyncSocketDelegate> Protocol Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { searchBox.OnSelectItem(0); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="clinicLogo.jpg"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Mobile Clinic
 <span id="projectnumber">1.0</span>
</div>
<div id="projectbrief">Senior Project</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.1.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li class="current"><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="classes.html"><span>Data Structure Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Data Fields</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Data Structures</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Properties</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Pages</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> </div>
<div class="headertitle">
<div class="title"><GCDAsyncSocketDelegate> Protocol Reference</div> </div>
</div><!--header-->
<div class="contents">
<div class="dynheader">
Inheritance diagram for <GCDAsyncSocketDelegate>:</div>
<div class="dyncontent">
<div class="center"><img src="protocol_g_c_d_async_socket_delegate-p__inherit__graph.png" border="0" usemap="#_3_g_c_d_async_socket_delegate_4_inherit__map" alt="Inheritance graph"/></div>
<map name="_3_g_c_d_async_socket_delegate_4_inherit__map" id="_3_g_c_d_async_socket_delegate_4_inherit__map">
</map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a0d54d9aac8393aeeecc045238176b363"><td class="memItemLeft" align="right" valign="top">(dispatch_queue_t) </td><td class="memItemRight" valign="bottom">- <a class="el" href="protocol_g_c_d_async_socket_delegate-p.html#a0d54d9aac8393aeeecc045238176b363">newSocketQueueForConnectionFromAddress:onSocket:</a></td></tr>
<tr class="memitem:ab2d7298dd9a83733f01aa1478dd871c9"><td class="memItemLeft" align="right" valign="top">(void) </td><td class="memItemRight" valign="bottom">- <a class="el" href="protocol_g_c_d_async_socket_delegate-p.html#ab2d7298dd9a83733f01aa1478dd871c9">socket:didAcceptNewSocket:</a></td></tr>
<tr class="memitem:a4824bbcd1a32b7cbe7f83a0500b7195e"><td class="memItemLeft" align="right" valign="top">(void) </td><td class="memItemRight" valign="bottom">- <a class="el" href="protocol_g_c_d_async_socket_delegate-p.html#a4824bbcd1a32b7cbe7f83a0500b7195e">socket:didConnectToHost:port:</a></td></tr>
<tr class="memitem:aa6ff778f4839f3d56e1af84b17cb644b"><td class="memItemLeft" align="right" valign="top">(void) </td><td class="memItemRight" valign="bottom">- <a class="el" href="protocol_g_c_d_async_socket_delegate-p.html#aa6ff778f4839f3d56e1af84b17cb644b">socket:didReadData:withTag:</a></td></tr>
<tr class="memitem:a558a4c265ba64d8ffaaa313c08eeae76"><td class="memItemLeft" align="right" valign="top">(void) </td><td class="memItemRight" valign="bottom">- <a class="el" href="protocol_g_c_d_async_socket_delegate-p.html#a558a4c265ba64d8ffaaa313c08eeae76">socket:didReadPartialDataOfLength:tag:</a></td></tr>
<tr class="memitem:a8735977200e1e4053c82f98c0446ced8"><td class="memItemLeft" align="right" valign="top">(void) </td><td class="memItemRight" valign="bottom">- <a class="el" href="protocol_g_c_d_async_socket_delegate-p.html#a8735977200e1e4053c82f98c0446ced8">socket:didWriteDataWithTag:</a></td></tr>
<tr class="memitem:af78e39423608972a00fca2b59cf504ed"><td class="memItemLeft" align="right" valign="top">(void) </td><td class="memItemRight" valign="bottom">- <a class="el" href="protocol_g_c_d_async_socket_delegate-p.html#af78e39423608972a00fca2b59cf504ed">socket:didWritePartialDataOfLength:tag:</a></td></tr>
<tr class="memitem:a6284c331616614adb74bc00b67ce09cb"><td class="memItemLeft" align="right" valign="top">(NSTimeInterval) </td><td class="memItemRight" valign="bottom">- <a class="el" href="protocol_g_c_d_async_socket_delegate-p.html#a6284c331616614adb74bc00b67ce09cb">socket:shouldTimeoutReadWithTag:elapsed:bytesDone:</a></td></tr>
<tr class="memitem:ada5daa4052d856db91eaa9ef5f185dc1"><td class="memItemLeft" align="right" valign="top">(NSTimeInterval) </td><td class="memItemRight" valign="bottom">- <a class="el" href="protocol_g_c_d_async_socket_delegate-p.html#ada5daa4052d856db91eaa9ef5f185dc1">socket:shouldTimeoutWriteWithTag:elapsed:bytesDone:</a></td></tr>
<tr class="memitem:a9cd0509f9943c157c9bc1051af53334a"><td class="memItemLeft" align="right" valign="top">(void) </td><td class="memItemRight" valign="bottom">- <a class="el" href="protocol_g_c_d_async_socket_delegate-p.html#a9cd0509f9943c157c9bc1051af53334a">socketDidCloseReadStream:</a></td></tr>
<tr class="memitem:a868e659811678341e8dbc1ee3c95b40b"><td class="memItemLeft" align="right" valign="top">(void) </td><td class="memItemRight" valign="bottom">- <a class="el" href="protocol_g_c_d_async_socket_delegate-p.html#a868e659811678341e8dbc1ee3c95b40b">socketDidDisconnect:withError:</a></td></tr>
<tr class="memitem:a7cb78d7e233ff18ad3bd3a5fcf9da17c"><td class="memItemLeft" align="right" valign="top">(void) </td><td class="memItemRight" valign="bottom">- <a class="el" href="protocol_g_c_d_async_socket_delegate-p.html#a7cb78d7e233ff18ad3bd3a5fcf9da17c">socketDidSecure:</a></td></tr>
</table>
<hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="a0d54d9aac8393aeeecc045238176b363"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">- (dispatch_queue_t) newSocketQueueForConnectionFromAddress: </td>
<td></td>
<td class="paramtype">(NSData *) </td>
<td class="paramname"><em>address</em></td>
</tr>
<tr>
<td class="paramkey">onSocket:</td>
<td></td>
<td class="paramtype">(<a class="el" href="interface_g_c_d_async_socket.html">GCDAsyncSocket</a> *) </td>
<td class="paramname"><em>sock</em> </td>
</tr>
<tr>
<td></td>
<td></td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">optional</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This method is called immediately prior to socket:didAcceptNewSocket:. It optionally allows a listening socket to specify the socketQueue for a new accepted socket. If this method is not implemented, or returns NULL, the new accepted socket will create its own default queue.</p>
<p>Since you cannot autorelease a dispatch_queue, this method uses the "new" prefix in its name to specify that the returned queue has been retained.</p>
<p>Thus you could do something like this in the implementation: return dispatch_queue_create("MyQueue", NULL);</p>
<p>If you are placing multiple sockets on the same queue, then care should be taken to increment the retain count each time this method is invoked.</p>
<p>For example, your implementation might look something like this: dispatch_retain(myExistingQueue); return myExistingQueue; </p>
</div>
</div>
<a class="anchor" id="ab2d7298dd9a83733f01aa1478dd871c9"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">- (void) socket: </td>
<td></td>
<td class="paramtype">(<a class="el" href="interface_g_c_d_async_socket.html">GCDAsyncSocket</a> *) </td>
<td class="paramname"><em>sock</em></td>
</tr>
<tr>
<td class="paramkey">didAcceptNewSocket:</td>
<td></td>
<td class="paramtype">(<a class="el" href="interface_g_c_d_async_socket.html">GCDAsyncSocket</a> *) </td>
<td class="paramname"><em>newSocket</em> </td>
</tr>
<tr>
<td></td>
<td></td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">optional</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Called when a socket accepts a connection. Another socket is automatically spawned to handle it.</p>
<p>You must retain the newSocket if you wish to handle the connection. Otherwise the newSocket instance will be released and the spawned connection will be closed.</p>
<p>By default the new socket will have the same delegate and delegateQueue. You may, of course, change this at any time. </p>
</div>
</div>
<a class="anchor" id="a4824bbcd1a32b7cbe7f83a0500b7195e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">- (void) socket: </td>
<td></td>
<td class="paramtype">(<a class="el" href="interface_g_c_d_async_socket.html">GCDAsyncSocket</a> *) </td>
<td class="paramname"><em>sock</em></td>
</tr>
<tr>
<td class="paramkey">didConnectToHost:</td>
<td></td>
<td class="paramtype">(<a class="el" href="class_n_s_string.html">NSString</a> *) </td>
<td class="paramname"><em>host</em></td>
</tr>
<tr>
<td class="paramkey">port:</td>
<td></td>
<td class="paramtype">(uint16_t) </td>
<td class="paramname"><em>port</em> </td>
</tr>
<tr>
<td></td>
<td></td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">optional</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Called when a socket connects and is ready for reading and writing. The host parameter will be an IP address, not a DNS name. </p>
</div>
</div>
<a class="anchor" id="aa6ff778f4839f3d56e1af84b17cb644b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">- (void) socket: </td>
<td></td>
<td class="paramtype">(<a class="el" href="interface_g_c_d_async_socket.html">GCDAsyncSocket</a> *) </td>
<td class="paramname"><em>sock</em></td>
</tr>
<tr>
<td class="paramkey">didReadData:</td>
<td></td>
<td class="paramtype">(NSData *) </td>
<td class="paramname"><em>data</em></td>
</tr>
<tr>
<td class="paramkey">withTag:</td>
<td></td>
<td class="paramtype">(long) </td>
<td class="paramname"><em>tag</em> </td>
</tr>
<tr>
<td></td>
<td></td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">optional</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Called when a socket has completed reading the requested data into memory. Not called if there is an error. </p>
</div>
</div>
<a class="anchor" id="a558a4c265ba64d8ffaaa313c08eeae76"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">- (void) socket: </td>
<td></td>
<td class="paramtype">(<a class="el" href="interface_g_c_d_async_socket.html">GCDAsyncSocket</a> *) </td>
<td class="paramname"><em>sock</em></td>
</tr>
<tr>
<td class="paramkey">didReadPartialDataOfLength:</td>
<td></td>
<td class="paramtype">(NSUInteger) </td>
<td class="paramname"><em>partialLength</em></td>
</tr>
<tr>
<td class="paramkey">tag:</td>
<td></td>
<td class="paramtype">(long) </td>
<td class="paramname"><em>tag</em> </td>
</tr>
<tr>
<td></td>
<td></td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">optional</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Called when a socket has read in data, but has not yet completed the read. This would occur if using readToData: or readToLength: methods. It may be used to for things such as updating progress bars. </p>
</div>
</div>
<a class="anchor" id="a8735977200e1e4053c82f98c0446ced8"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">- (void) socket: </td>
<td></td>
<td class="paramtype">(<a class="el" href="interface_g_c_d_async_socket.html">GCDAsyncSocket</a> *) </td>
<td class="paramname"><em>sock</em></td>
</tr>
<tr>
<td class="paramkey">didWriteDataWithTag:</td>
<td></td>
<td class="paramtype">(long) </td>
<td class="paramname"><em>tag</em> </td>
</tr>
<tr>
<td></td>
<td></td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">optional</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Called when a socket has completed writing the requested data. Not called if there is an error. </p>
</div>
</div>
<a class="anchor" id="af78e39423608972a00fca2b59cf504ed"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">- (void) socket: </td>
<td></td>
<td class="paramtype">(<a class="el" href="interface_g_c_d_async_socket.html">GCDAsyncSocket</a> *) </td>
<td class="paramname"><em>sock</em></td>
</tr>
<tr>
<td class="paramkey">didWritePartialDataOfLength:</td>
<td></td>
<td class="paramtype">(NSUInteger) </td>
<td class="paramname"><em>partialLength</em></td>
</tr>
<tr>
<td class="paramkey">tag:</td>
<td></td>
<td class="paramtype">(long) </td>
<td class="paramname"><em>tag</em> </td>
</tr>
<tr>
<td></td>
<td></td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">optional</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Called when a socket has written some data, but has not yet completed the entire write. It may be used to for things such as updating progress bars. </p>
</div>
</div>
<a class="anchor" id="a6284c331616614adb74bc00b67ce09cb"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">- (NSTimeInterval) socket: </td>
<td></td>
<td class="paramtype">(<a class="el" href="interface_g_c_d_async_socket.html">GCDAsyncSocket</a> *) </td>
<td class="paramname"><em>sock</em></td>
</tr>
<tr>
<td class="paramkey">shouldTimeoutReadWithTag:</td>
<td></td>
<td class="paramtype">(long) </td>
<td class="paramname"><em>tag</em></td>
</tr>
<tr>
<td class="paramkey">elapsed:</td>
<td></td>
<td class="paramtype">(NSTimeInterval) </td>
<td class="paramname"><em>elapsed</em></td>
</tr>
<tr>
<td class="paramkey">bytesDone:</td>
<td></td>
<td class="paramtype">(NSUInteger) </td>
<td class="paramname"><em>length</em> </td>
</tr>
<tr>
<td></td>
<td></td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">optional</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Called if a read operation has reached its timeout without completing. This method allows you to optionally extend the timeout. If you return a positive time interval (> 0) the read's timeout will be extended by the given amount. If you don't implement this method, or return a non-positive time interval (<= 0) the read will timeout as usual.</p>
<p>The elapsed parameter is the sum of the original timeout, plus any additions previously added via this method. The length parameter is the number of bytes that have been read so far for the read operation.</p>
<p>Note that this method may be called multiple times for a single read if you return positive numbers. </p>
</div>
</div>
<a class="anchor" id="ada5daa4052d856db91eaa9ef5f185dc1"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">- (NSTimeInterval) socket: </td>
<td></td>
<td class="paramtype">(<a class="el" href="interface_g_c_d_async_socket.html">GCDAsyncSocket</a> *) </td>
<td class="paramname"><em>sock</em></td>
</tr>
<tr>
<td class="paramkey">shouldTimeoutWriteWithTag:</td>
<td></td>
<td class="paramtype">(long) </td>
<td class="paramname"><em>tag</em></td>
</tr>
<tr>
<td class="paramkey">elapsed:</td>
<td></td>
<td class="paramtype">(NSTimeInterval) </td>
<td class="paramname"><em>elapsed</em></td>
</tr>
<tr>
<td class="paramkey">bytesDone:</td>
<td></td>
<td class="paramtype">(NSUInteger) </td>
<td class="paramname"><em>length</em> </td>
</tr>
<tr>
<td></td>
<td></td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">optional</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Called if a write operation has reached its timeout without completing. This method allows you to optionally extend the timeout. If you return a positive time interval (> 0) the write's timeout will be extended by the given amount. If you don't implement this method, or return a non-positive time interval (<= 0) the write will timeout as usual.</p>
<p>The elapsed parameter is the sum of the original timeout, plus any additions previously added via this method. The length parameter is the number of bytes that have been written so far for the write operation.</p>
<p>Note that this method may be called multiple times for a single write if you return positive numbers. </p>
</div>
</div>
<a class="anchor" id="a9cd0509f9943c157c9bc1051af53334a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">- (void) socketDidCloseReadStream: </td>
<td></td>
<td class="paramtype">(<a class="el" href="interface_g_c_d_async_socket.html">GCDAsyncSocket</a> *) </td>
<td class="paramname"><em>sock</em></td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">optional</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Conditionally called if the read stream closes, but the write stream may still be writeable.</p>
<p>This delegate method is only called if autoDisconnectOnClosedReadStream has been set to NO. See the discussion on the autoDisconnectOnClosedReadStream method for more information. </p>
</div>
</div>
<a class="anchor" id="a868e659811678341e8dbc1ee3c95b40b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">- (void) socketDidDisconnect: </td>
<td></td>
<td class="paramtype">(<a class="el" href="interface_g_c_d_async_socket.html">GCDAsyncSocket</a> *) </td>
<td class="paramname"><em>sock</em></td>
</tr>
<tr>
<td class="paramkey">withError:</td>
<td></td>
<td class="paramtype">(NSError *) </td>
<td class="paramname"><em>err</em> </td>
</tr>
<tr>
<td></td>
<td></td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">optional</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Called when a socket disconnects with or without error.</p>
<p>If you call the disconnect method, and the socket wasn't already disconnected, this delegate method will be called before the disconnect method returns. </p>
</div>
</div>
<a class="anchor" id="a7cb78d7e233ff18ad3bd3a5fcf9da17c"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">- (void) socketDidSecure: </td>
<td></td>
<td class="paramtype">(<a class="el" href="interface_g_c_d_async_socket.html">GCDAsyncSocket</a> *) </td>
<td class="paramname"><em>sock</em></td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">optional</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Called after the socket has successfully completed SSL/TLS negotiation. This method is not called unless you use the provided startTLS method.</p>
<p>If a SSL/TLS negotiation fails (invalid certificate, etc) then the socket will immediately close, and the socketDidDisconnect:withError: delegate method will be called with the specific SSL error code. </p>
</div>
</div>
<hr/>The documentation for this protocol was generated from the following file:<ul>
<li><a class="el" href="_g_c_d_async_socket_8h_source.html">GCDAsyncSocket.h</a></li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Sun Mar 3 2013 20:57:26 for Mobile Clinic by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.1.1
</small></address>
</body>
</html>
| FIU-CIS-SeniorProject/MobileClinic | Source Code/Client/Client Documentation/html/protocol_g_c_d_async_socket_delegate-p.html | HTML | mit | 26,444 |
<!DOCTYPE html><html xmlns:date="http://exslt.org/dates-and-times" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">
<meta charset="utf-8">
<title>FSTestHelper » FSTestHelper</title>
<meta name="author" content="Mike van Riel">
<meta name="description" content="">
<link href="../css/template.css" rel="stylesheet" media="all">
<script src="../js/jquery-1.7.1.min.js" type="text/javascript"></script><script src="../js/jquery-ui-1.8.2.custom.min.js" type="text/javascript"></script><script src="../js/jquery.mousewheel.min.js" type="text/javascript"></script><script src="../js/bootstrap.js" type="text/javascript"></script><script src="../js/template.js" type="text/javascript"></script><script src="../js/prettify/prettify.min.js" type="text/javascript"></script><link rel="shortcut icon" href="../img/favicon.ico">
<link rel="apple-touch-icon" href="../img/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="../img/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="../img/apple-touch-icon-114x114.png">
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner"><div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></a><a class="brand" href="../index.html">FSTestHelper</a><div class="nav-collapse"><ul class="nav">
<li class="dropdown">
<a href="#api" class="dropdown-toggle" data-toggle="dropdown">
API Documentation <b class="caret"></b></a><ul class="dropdown-menu">
<li><a>Packages</a></li>
<li><a href="../packages/Default.html"><i class="icon-folder-open"></i> Default</a></li>
</ul>
</li>
<li class="dropdown" id="charts-menu">
<a href="#charts" class="dropdown-toggle" data-toggle="dropdown">
Charts <b class="caret"></b></a><ul class="dropdown-menu"><li><a href="../graph_class.html"><i class="icon-list-alt"></i> Class hierarchy diagram</a></li></ul>
</li>
<li class="dropdown" id="reports-menu">
<a href="#reports" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b></a><ul class="dropdown-menu">
<li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors
<span class="label label-info">0</span></a></li>
<li><a href="../markers.html"><i class="icon-map-marker"></i> Markers
<ul></ul></a></li>
<li><a href="../deprecated.html"><i class="icon-stop"></i> Deprecated elements
<span class="label label-info">0</span></a></li>
</ul>
</li>
</ul></div>
</div></div>
<div class="go_to_top"><a href="#___" style="color: inherit">Back to top <i class="icon-upload icon-white"></i></a></div>
</div>
<div id="___" class="container">
<noscript><div class="alert alert-warning">
Javascript is disabled; several features are only available
if Javascript is enabled.
</div></noscript>
<div class="row">
<div class="span4">
<div class="btn-group view pull-right" data-toggle="buttons-radio">
<button class="btn details" title="Show descriptions and method names"><i class="icon-list"></i></button><button class="btn simple" title="Show only method names"><i class="icon-align-justify"></i></button>
</div>
<ul class="side-nav nav nav-list">
<li class="nav-header">
<i class="icon-map-marker"></i> Namespaces</li>
<li>
<a href="../namespaces/FSTestHelper.html" title="FSTestHelper"><i class="icon-th"></i>FSTestHelper</a><ul class="nav nav-list nav-namespaces"></ul>
</li>
</ul>
</div>
<div class="span8 namespace-contents">
<ul class="breadcrumb">
<li>
<a href="../index.html"><i class="icon-th"></i></a><span class="divider">\</span>
</li>
<li class="active"><a href="../namespaces/FSTestHelper.html">FSTestHelper</a></li>
</ul>
<div class="namespace-indent">
<h3>
<i class="icon-custom icon-class"></i> Classes and interfaces</h3>
<a name="FSTestHelper" id="FSTestHelper"></a><div class="element ajax clickable class" href="../classes/FSTestHelper.FSTestHelper.html">
<h1>FSTestHelper<a href="../classes/FSTestHelper.FSTestHelper.html">¶</a>
</h1>
<p class="short_description">Helper for tests involving the file system</p>
<div class="details collapse"></div>
<a href="../classes/FSTestHelper.FSTestHelper.html" class="more">« More »</a>
</div>
</div>
</div>
</div>
<div class="row"><footer class="span12">
Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br>
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a8</a> and<br>
generated on 2012-10-04T16:23:56+02:00.<br></footer></div>
</div>
</body>
</html>
| simonjodet/FSTestHelper | doc/namespaces/FSTestHelper.html | HTML | mit | 5,034 |
<!DOCTYPE html>
<?xml version="1.0" encoding="UTF-8"?>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Earth Negotiations Bulletin: ADP 2-10</title>
<link href="../assets/style/bulletin.css" rel="stylesheet" />
</head>
<body>
<h1>Earth Negotiations Bulletin: ADP 2-10</h1>
<p><b>Bonn Climate Change Conference - August 2015</b></p>
<p>31-Aug-15 — <a href="http://www.iisd.ca/vol12/enb12639e.html">original report</a></p>
<div id="section_enb12639e_1">
<h2>A BRIEF HISTORY OF THE UNFCCC AND THE KYOTO PROTOCOL</h2>
<small>HISTORY</small>
<p>The international political response to climate change began with the 1992 adoption of the UNFCCC, which sets out a legal framework for stabilizing atmospheric concentrations of greenhouse gases (GHGs) to avoid “dangerous anthropogenic interference with the climate system.” The Convention, which entered into force on 21 March 1994, has 196 parties.</p>
<p>In December 1997, delegates to the third session of the Conference of the Parties (COP) in Kyoto, Japan, agreed to a protocol to the UNFCCC that committed industrialized countries and countries in transition to a market economy to achieve emissions reduction targets.</p>
<p>These countries, known as Annex I parties under the UNFCCC, agreed to reduce their overall emissions of six GHGs by an average of 5% below 1990 levels in 2008-2012 (the first commitment period), with specific targets varying from country to country.</p>
<p>The Kyoto Protocol entered into force on 16 February 2005 and now has 192 parties.</p>
</div>
<div id="section_enb12639e_10">
<h2>ADP 2-9</h2>
<p>ADP 2-9 convened in June 2015 in Bonn and undertook streamlining and consolidation, clustering and conceptual discussions of the GNT, including on: general/objective; adaptation and loss and damage; mitigation; finance; technology development and transfer; capacity building; transparency; preamble; definitions; time frames; implementation and compliance; and procedural and institutional provisions.</p>
<p>The ADP also discussed workstream 2.</p>
<p>The groups streamlined and/or consolidated options and paragraphs within the text, began the process of clustering options and undertook conceptual discussions.</p>
<p>Under workstream 2, Technical Expert Meetings on energy efficiency in urban environments and renewable energy supply convened.</p>
</div>
<div id="section_enb12639e_11">
<h2>INDC SUBMISSION</h2>
<p>Decisions 1/CP.19 and 1/CP.20 invited parties ready to do so to submit their INDCs in the first quarter of 2015, outlining actions they intend to take to meet the objective of the Convention.</p>
<p>To date, 57 parties have submitted their INDCs.</p>
</div>
<div id="section_enb12639e_12">
<h2>INFORMAL MINISTERIAL CONSULTATIONS</h2>
<p>From 20-21 July 2015, in Paris, France, the incoming French COP Presidency hosted the first in a series of informal ministerial consultations to prepare for COP 21.</p>
<p>The consultations brought together approximately 40 delegations, including 30 ministers, who discussed: the overall balance of the draft climate change agreement; its level of ambition; and the degree of differentiation that should be retained in order to take into account the situation and levels of development of the different UN member states.</p>
<p>During the two-day consultations, participants engaged in a plenary session on the general balance of the draft agreement, and held an exchange of views in two co-facilitated groups on the operationalization of differentiation and on the level of ambition of the agreement.</p>
<p>On the last day, participants convened in plenary to discuss the way forward.</p>
</div>
<div id="section_enb12639e_2">
<h2>LONG-TERM NEGOTIATIONS, 2005-2009</h2>
<p>Convening in Montreal, Canada, in 2005, the first session of the Conference of the Parties serving as the Meeting of the Parties to the Kyoto Protocol (CMP) decided to establish the Ad Hoc Working Group on Annex I Parties’ Further Commitments under the Kyoto Protocol (AWG-KP) in accordance with Protocol Article 3.9, which mandated consideration of Annex I parties’ further commitments at least seven years before the end of the first commitment period.</p>
<p>In December 2007, COP 13 and CMP 3 in Bali, Indonesia, resulted in agreement on the Bali Roadmap on long-term issues.</p>
<p>COP 13 adopted the Bali Action Plan (BAP) and established the Ad Hoc Working Group on Long-term Cooperative Action under the Convention (AWG-LCA), with a mandate to focus on mitigation, adaptation, finance, technology, capacity building and a shared vision for long-term cooperative action.</p>
<p>Negotiations on Annex I parties’ further commitments continued under the AWG-KP.</p>
<p>The deadline for concluding the two-track negotiations was in 2009 in Copenhagen.</p>
</div>
<div id="section_enb12639e_3">
<h2>COPENHAGEN</h2>
<p>The UN Climate Change Conference in Copenhagen, Denmark, took place in December 2009.</p>
<p>The high-profile event was marked by disputes over transparency and process.</p>
<p>Late in the evening of 18 December, these talks resulted in a political agreement, the “Copenhagen Accord,” which was then presented to the COP plenary for adoption.</p>
<p>After 13 hours of debate, delegates ultimately agreed to “take note” of the Copenhagen Accord, and to extend the mandates of the negotiating groups until COP 16 and CMP 6 in 2010.</p>
<p>In 2010, over 140 countries indicated support for the Accord.</p>
<p>More than 80 countries also provided information on their national mitigation targets or actions.</p>
</div>
<div id="section_enb12639e_4">
<h2>CANCUN</h2>
<p>The UN Climate Change Conference in Cancun, Mexico, took place in December 2010, where parties finalized the Cancun Agreements and extended the mandates of the two AWGs for another year.</p>
<p>Under the Convention track, Decision 1/CP.16 recognized the need for deep cuts in global emissions in order to limit the global average temperature rise to 2°C above pre-industrial levels.</p>
<p>Parties agreed to consider the adequacy of the global long-term goal during a 2013-2015 review, which would also consider strengthening the long-term global goal, including in relation to temperature rises of 1.5°C.</p>
<p>Decision 1/CP.16 also addressed other aspects of mitigation, such as: measuring, reporting and verification (MRV); and reducing emissions from deforestation and forest degradation in developing countries, and the role of conservation, sustainable management of forests, and enhancement of forest carbon stocks (REDD+).</p>
<p>The Cancun Agreements also established several new institutions and processes, including the Cancun Adaptation Framework, the Adaptation Committee and the Technology Mechanism, which includes the Technology Executive Committee and the Climate Technology Centre and Network.</p>
<p>The Green Climate Fund (GCF) was created and designated as an operating entity of the Convention’s financial mechanism.</p>
<p>Under the Protocol track, the CMP urged Annex I parties to raise the level of ambition of their emission reductions, and adopted Decision 2/CMP.6 on land use, land-use change and forestry.</p>
</div>
<div id="section_enb12639e_5">
<h2>DURBAN</h2>
<p>The UN Climate Change Conference in Durban, South Africa, took place in November and December 2011.</p>
<p>The Durban outcomes covered a wide range of topics, notably the agreement to establish a second commitment period under the Kyoto Protocol beginning 2013, a decision on long-term cooperative action under the Convention and agreement on the operationalization of the GCF.</p>
<p>Parties also agreed to launch the ADP with a mandate “to develop a protocol, another legal instrument or an agreed outcome with legal force under the Convention applicable to all Parties.” The ADP is scheduled to complete these negotiations by 2015, with the new instrument entering into force in 2020.</p>
<p>In addition, the ADP was mandated to explore actions to close the pre-2020 ambition gap in relation to the 2°C target.</p>
</div>
<div id="section_enb12639e_6">
<h2>DOHA</h2>
<p>The UN Climate Change Conference in Doha, Qatar, took place in November and December 2012.</p>
<p>The conference resulted in a package of decisions, referred to as the “Doha Climate Gateway.” These included amendments to the Kyoto Protocol to establish its second commitment period (2013-2020) and agreement to terminate the AWG-KP’s work.</p>
<p>Parties also agreed to terminate the AWG-LCA and negotiations under the BAP.</p>
<p>A number of issues requiring further consideration were forwarded to the Subsidiary Bodies, such as: the 2013-2015 review of the global goal; developed and developing country mitigation; the Kyoto Protocol’s flexibility mechanisms; national adaptation plans; MRV; market and non-market mechanisms; and REDD+.</p>
</div>
<div id="section_enb12639e_7">
<h2>WARSAW</h2>
<p>The UN Climate Change Conference in Warsaw, Poland, took place in November 2013.</p>
<p>Negotiations focused on the implementation of agreements reached at previous meetings, including pursuing the work of the ADP.</p>
<p>The meeting adopted an ADP decision that, inter alia, invites parties to initiate or intensify domestic preparations for their intended nationally determined contributions (INDCs).</p>
<p>Parties also adopted a decision establishing the Warsaw International Mechanism on Loss and Damage, and the Warsaw REDD+ Framework, comprised of seven decisions on REDD+ finance, institutional arrangements and methodological issues.</p>
</div>
<div id="section_enb12639e_8">
<h2>LIMA</h2>
<p>The UN Climate Change Conference in Lima, Peru, took place in December 2014.</p>
<p>Negotiations in Lima focused on outcomes under the ADP necessary to advance toward an agreement at COP 21 in Paris in 2015, including elaboration of the information and process for submission of INDCs as early as possible in 2015, and progress on elements of a draft negotiating text.</p>
<p>Following lengthy negotiations, COP 20 adopted the “Lima Call for Climate Action,” which sets in motion the negotiations towards a 2015 agreement, including the process for submitting and reviewing INDCs.</p>
<p>The decision also addresses enhancing pre-2020 ambition.</p>
<p>Parties also adopted 19 decisions, 17 under the COP and two under the CMP that, inter alia: help operationalize the Warsaw International Mechanism for Loss and Damage; establish the Lima work programme on gender; and adopt the Lima Ministerial Declaration on Education and Awareness-raising.</p>
<p>The Lima Climate Change Conference was able to lay the groundwork for Paris by capturing progress made in elaborating the elements of a draft negotiating text for the 2015 agreement and adopting a decision on INDCs, including their scope, upfront information, and steps to be taken by the Secretariat after their submission.</p>
</div>
<div id="section_enb12639e_9">
<h2>ADP 2-8</h2>
<p>ADP 2-8 took place in February 2015, in Geneva, Switzerland.</p>
<p>The objective of the session, as mandated by COP 20, was to develop the negotiating text based on the elements for a draft negotiating text annexed to Decision 1/CP.20 (Lima Call for Climate Action).</p>
<p>The GNT (FCCC/ADP/2015/1) adopted at ADP 2-8 serves as the basis for the negotiations of the 2015 agreement.</p>
</div>
<script type="text/javascript" src="../assets/src/bulletin.js"></script>
</body>
</html>
| medialab/climateDebateExplorer | ENB-data/enb_pages/enb12639e.html | HTML | mit | 12,013 |
<!DOCTYPE html>
<html>
<head>
<title>Random CSS Button Generator</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="description"
content="Randomly Generated CSS Buttons for when you need a little inspiration.">
<meta charset="utf-8">
<link rel="stylesheet" href="btn-gen-style.css">
</head>
<body>
<button class="open-code-overlay">{css}</button>
<div class="code-overlay">
<button class="close-code-overlay">CLOSE</button>
<div class="code-block">
<pre>
</pre>
</div>
</div>
<div class="text-block">
<h1 class="title-text">Random CSS Buttons</h1>
<h3>NOTE: As the results are random, some buttons look pretty cool, while others...not so much.</h3>
<h4>more randomness at <a href="http://paintbycode.github.io/gradient-generator/" target="_blank">randomly generated CSS gradients</a></h4>
</div>
<div class="btn-container">
<button class="generated-btn"></button>
</div>
<div class="control-container">
<div class="generate-btn-container">
<img src="img/refresh@2x.png" alt="Refresh results" class="generate"/>
</div>
<div class="switcher">
<input type="radio" id="single-colour" name="colour" checked>
<label for="single-colour">Single</label>
<input type="radio" id="gradient-colour" name="colour">
<label for="gradient-colour">Gradient</label>
</div>
<div class="border-control">
<input type="checkbox" id="hold-border">
<label for="hold-border" class="hold-btn">
<img src="img/unlocked.svg" alt="Unlocked padlock" class="unlocked"/>
<img src="img/locked.svg" alt="Locked padlock" class="locked"/>
Border
</label>
</div>
<div class="box-shadow-control">
<input type="checkbox" id="hold-box-shadow">
<label for="hold-box-shadow" class="hold-btn">
<img src="img/unlocked.svg" alt="Unlocked padlock" class="unlocked"/>
<img src="img/locked.svg" alt="Locked padlock" class="locked"/>
Box Shadow
</label>
</div>
<div class="background-colour-control">
<input type="checkbox" id="hold-bg-colour">
<label for="hold-bg-colour" class="hold-btn">
<img src="img/unlocked.svg" alt="Unlocked padlock" class="unlocked"/>
<img src="img/locked.svg" alt="Locked padlock" class="locked"/>
Background Colour
</label>
</div>
<div class="border-radius-control">
<input type="checkbox" id="hold-border-radius">
<label for="hold-border-radius" class="hold-btn">
<img src="img/unlocked.svg" alt="Unlocked padlock" class="unlocked"/>
<img src="img/locked.svg" alt="Locked padlock" class="locked"/>
Border Radius
</label>
</div>
</div>
<script src="btn-gen.js"></script>
</body>
</html> | paintbycode/button-generator | index.html | HTML | mit | 3,063 |
<!DOCTYPE html>
<html>
<head><meta charset="utf-8" />
<title>Your_first_neural_network</title><script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<style type="text/css">
/*!
*
* Twitter Bootstrap
*
*/
/*!
* Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
display: block;
}
audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline;
}
audio:not([controls]) {
display: none;
height: 0;
}
[hidden],
template {
display: none;
}
a {
background-color: transparent;
}
a:active,
a:hover {
outline: 0;
}
abbr[title] {
border-bottom: 1px dotted;
}
b,
strong {
font-weight: bold;
}
dfn {
font-style: italic;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
mark {
background: #ff0;
color: #000;
}
small {
font-size: 80%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
img {
border: 0;
}
svg:not(:root) {
overflow: hidden;
}
figure {
margin: 1em 40px;
}
hr {
box-sizing: content-box;
height: 0;
}
pre {
overflow: auto;
}
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
color: inherit;
font: inherit;
margin: 0;
}
button {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
button[disabled],
html input[disabled] {
cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
input {
line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
input[type="search"] {
-webkit-appearance: textfield;
box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
legend {
border: 0;
padding: 0;
}
textarea {
overflow: auto;
}
optgroup {
font-weight: bold;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
td,
th {
padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
*,
*:before,
*:after {
background: transparent !important;
color: #000 !important;
box-shadow: none !important;
text-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
.navbar {
display: none;
}
.btn > .caret,
.dropup > .btn > .caret {
border-top-color: #000 !important;
}
.label {
border: 1px solid #000;
}
.table {
border-collapse: collapse !important;
}
.table td,
.table th {
background-color: #fff !important;
}
.table-bordered th,
.table-bordered td {
border: 1px solid #ddd !important;
}
}
@font-face {
font-family: 'Glyphicons Halflings';
src: url('../components/bootstrap/fonts/glyphicons-halflings-regular.eot');
src: url('../components/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.woff') format('woff'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../components/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
content: "\002a";
}
.glyphicon-plus:before {
content: "\002b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
content: "\20ac";
}
.glyphicon-minus:before {
content: "\2212";
}
.glyphicon-cloud:before {
content: "\2601";
}
.glyphicon-envelope:before {
content: "\2709";
}
.glyphicon-pencil:before {
content: "\270f";
}
.glyphicon-glass:before {
content: "\e001";
}
.glyphicon-music:before {
content: "\e002";
}
.glyphicon-search:before {
content: "\e003";
}
.glyphicon-heart:before {
content: "\e005";
}
.glyphicon-star:before {
content: "\e006";
}
.glyphicon-star-empty:before {
content: "\e007";
}
.glyphicon-user:before {
content: "\e008";
}
.glyphicon-film:before {
content: "\e009";
}
.glyphicon-th-large:before {
content: "\e010";
}
.glyphicon-th:before {
content: "\e011";
}
.glyphicon-th-list:before {
content: "\e012";
}
.glyphicon-ok:before {
content: "\e013";
}
.glyphicon-remove:before {
content: "\e014";
}
.glyphicon-zoom-in:before {
content: "\e015";
}
.glyphicon-zoom-out:before {
content: "\e016";
}
.glyphicon-off:before {
content: "\e017";
}
.glyphicon-signal:before {
content: "\e018";
}
.glyphicon-cog:before {
content: "\e019";
}
.glyphicon-trash:before {
content: "\e020";
}
.glyphicon-home:before {
content: "\e021";
}
.glyphicon-file:before {
content: "\e022";
}
.glyphicon-time:before {
content: "\e023";
}
.glyphicon-road:before {
content: "\e024";
}
.glyphicon-download-alt:before {
content: "\e025";
}
.glyphicon-download:before {
content: "\e026";
}
.glyphicon-upload:before {
content: "\e027";
}
.glyphicon-inbox:before {
content: "\e028";
}
.glyphicon-play-circle:before {
content: "\e029";
}
.glyphicon-repeat:before {
content: "\e030";
}
.glyphicon-refresh:before {
content: "\e031";
}
.glyphicon-list-alt:before {
content: "\e032";
}
.glyphicon-lock:before {
content: "\e033";
}
.glyphicon-flag:before {
content: "\e034";
}
.glyphicon-headphones:before {
content: "\e035";
}
.glyphicon-volume-off:before {
content: "\e036";
}
.glyphicon-volume-down:before {
content: "\e037";
}
.glyphicon-volume-up:before {
content: "\e038";
}
.glyphicon-qrcode:before {
content: "\e039";
}
.glyphicon-barcode:before {
content: "\e040";
}
.glyphicon-tag:before {
content: "\e041";
}
.glyphicon-tags:before {
content: "\e042";
}
.glyphicon-book:before {
content: "\e043";
}
.glyphicon-bookmark:before {
content: "\e044";
}
.glyphicon-print:before {
content: "\e045";
}
.glyphicon-camera:before {
content: "\e046";
}
.glyphicon-font:before {
content: "\e047";
}
.glyphicon-bold:before {
content: "\e048";
}
.glyphicon-italic:before {
content: "\e049";
}
.glyphicon-text-height:before {
content: "\e050";
}
.glyphicon-text-width:before {
content: "\e051";
}
.glyphicon-align-left:before {
content: "\e052";
}
.glyphicon-align-center:before {
content: "\e053";
}
.glyphicon-align-right:before {
content: "\e054";
}
.glyphicon-align-justify:before {
content: "\e055";
}
.glyphicon-list:before {
content: "\e056";
}
.glyphicon-indent-left:before {
content: "\e057";
}
.glyphicon-indent-right:before {
content: "\e058";
}
.glyphicon-facetime-video:before {
content: "\e059";
}
.glyphicon-picture:before {
content: "\e060";
}
.glyphicon-map-marker:before {
content: "\e062";
}
.glyphicon-adjust:before {
content: "\e063";
}
.glyphicon-tint:before {
content: "\e064";
}
.glyphicon-edit:before {
content: "\e065";
}
.glyphicon-share:before {
content: "\e066";
}
.glyphicon-check:before {
content: "\e067";
}
.glyphicon-move:before {
content: "\e068";
}
.glyphicon-step-backward:before {
content: "\e069";
}
.glyphicon-fast-backward:before {
content: "\e070";
}
.glyphicon-backward:before {
content: "\e071";
}
.glyphicon-play:before {
content: "\e072";
}
.glyphicon-pause:before {
content: "\e073";
}
.glyphicon-stop:before {
content: "\e074";
}
.glyphicon-forward:before {
content: "\e075";
}
.glyphicon-fast-forward:before {
content: "\e076";
}
.glyphicon-step-forward:before {
content: "\e077";
}
.glyphicon-eject:before {
content: "\e078";
}
.glyphicon-chevron-left:before {
content: "\e079";
}
.glyphicon-chevron-right:before {
content: "\e080";
}
.glyphicon-plus-sign:before {
content: "\e081";
}
.glyphicon-minus-sign:before {
content: "\e082";
}
.glyphicon-remove-sign:before {
content: "\e083";
}
.glyphicon-ok-sign:before {
content: "\e084";
}
.glyphicon-question-sign:before {
content: "\e085";
}
.glyphicon-info-sign:before {
content: "\e086";
}
.glyphicon-screenshot:before {
content: "\e087";
}
.glyphicon-remove-circle:before {
content: "\e088";
}
.glyphicon-ok-circle:before {
content: "\e089";
}
.glyphicon-ban-circle:before {
content: "\e090";
}
.glyphicon-arrow-left:before {
content: "\e091";
}
.glyphicon-arrow-right:before {
content: "\e092";
}
.glyphicon-arrow-up:before {
content: "\e093";
}
.glyphicon-arrow-down:before {
content: "\e094";
}
.glyphicon-share-alt:before {
content: "\e095";
}
.glyphicon-resize-full:before {
content: "\e096";
}
.glyphicon-resize-small:before {
content: "\e097";
}
.glyphicon-exclamation-sign:before {
content: "\e101";
}
.glyphicon-gift:before {
content: "\e102";
}
.glyphicon-leaf:before {
content: "\e103";
}
.glyphicon-fire:before {
content: "\e104";
}
.glyphicon-eye-open:before {
content: "\e105";
}
.glyphicon-eye-close:before {
content: "\e106";
}
.glyphicon-warning-sign:before {
content: "\e107";
}
.glyphicon-plane:before {
content: "\e108";
}
.glyphicon-calendar:before {
content: "\e109";
}
.glyphicon-random:before {
content: "\e110";
}
.glyphicon-comment:before {
content: "\e111";
}
.glyphicon-magnet:before {
content: "\e112";
}
.glyphicon-chevron-up:before {
content: "\e113";
}
.glyphicon-chevron-down:before {
content: "\e114";
}
.glyphicon-retweet:before {
content: "\e115";
}
.glyphicon-shopping-cart:before {
content: "\e116";
}
.glyphicon-folder-close:before {
content: "\e117";
}
.glyphicon-folder-open:before {
content: "\e118";
}
.glyphicon-resize-vertical:before {
content: "\e119";
}
.glyphicon-resize-horizontal:before {
content: "\e120";
}
.glyphicon-hdd:before {
content: "\e121";
}
.glyphicon-bullhorn:before {
content: "\e122";
}
.glyphicon-bell:before {
content: "\e123";
}
.glyphicon-certificate:before {
content: "\e124";
}
.glyphicon-thumbs-up:before {
content: "\e125";
}
.glyphicon-thumbs-down:before {
content: "\e126";
}
.glyphicon-hand-right:before {
content: "\e127";
}
.glyphicon-hand-left:before {
content: "\e128";
}
.glyphicon-hand-up:before {
content: "\e129";
}
.glyphicon-hand-down:before {
content: "\e130";
}
.glyphicon-circle-arrow-right:before {
content: "\e131";
}
.glyphicon-circle-arrow-left:before {
content: "\e132";
}
.glyphicon-circle-arrow-up:before {
content: "\e133";
}
.glyphicon-circle-arrow-down:before {
content: "\e134";
}
.glyphicon-globe:before {
content: "\e135";
}
.glyphicon-wrench:before {
content: "\e136";
}
.glyphicon-tasks:before {
content: "\e137";
}
.glyphicon-filter:before {
content: "\e138";
}
.glyphicon-briefcase:before {
content: "\e139";
}
.glyphicon-fullscreen:before {
content: "\e140";
}
.glyphicon-dashboard:before {
content: "\e141";
}
.glyphicon-paperclip:before {
content: "\e142";
}
.glyphicon-heart-empty:before {
content: "\e143";
}
.glyphicon-link:before {
content: "\e144";
}
.glyphicon-phone:before {
content: "\e145";
}
.glyphicon-pushpin:before {
content: "\e146";
}
.glyphicon-usd:before {
content: "\e148";
}
.glyphicon-gbp:before {
content: "\e149";
}
.glyphicon-sort:before {
content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
content: "\e152";
}
.glyphicon-sort-by-order:before {
content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
content: "\e154";
}
.glyphicon-sort-by-attributes:before {
content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
content: "\e156";
}
.glyphicon-unchecked:before {
content: "\e157";
}
.glyphicon-expand:before {
content: "\e158";
}
.glyphicon-collapse-down:before {
content: "\e159";
}
.glyphicon-collapse-up:before {
content: "\e160";
}
.glyphicon-log-in:before {
content: "\e161";
}
.glyphicon-flash:before {
content: "\e162";
}
.glyphicon-log-out:before {
content: "\e163";
}
.glyphicon-new-window:before {
content: "\e164";
}
.glyphicon-record:before {
content: "\e165";
}
.glyphicon-save:before {
content: "\e166";
}
.glyphicon-open:before {
content: "\e167";
}
.glyphicon-saved:before {
content: "\e168";
}
.glyphicon-import:before {
content: "\e169";
}
.glyphicon-export:before {
content: "\e170";
}
.glyphicon-send:before {
content: "\e171";
}
.glyphicon-floppy-disk:before {
content: "\e172";
}
.glyphicon-floppy-saved:before {
content: "\e173";
}
.glyphicon-floppy-remove:before {
content: "\e174";
}
.glyphicon-floppy-save:before {
content: "\e175";
}
.glyphicon-floppy-open:before {
content: "\e176";
}
.glyphicon-credit-card:before {
content: "\e177";
}
.glyphicon-transfer:before {
content: "\e178";
}
.glyphicon-cutlery:before {
content: "\e179";
}
.glyphicon-header:before {
content: "\e180";
}
.glyphicon-compressed:before {
content: "\e181";
}
.glyphicon-earphone:before {
content: "\e182";
}
.glyphicon-phone-alt:before {
content: "\e183";
}
.glyphicon-tower:before {
content: "\e184";
}
.glyphicon-stats:before {
content: "\e185";
}
.glyphicon-sd-video:before {
content: "\e186";
}
.glyphicon-hd-video:before {
content: "\e187";
}
.glyphicon-subtitles:before {
content: "\e188";
}
.glyphicon-sound-stereo:before {
content: "\e189";
}
.glyphicon-sound-dolby:before {
content: "\e190";
}
.glyphicon-sound-5-1:before {
content: "\e191";
}
.glyphicon-sound-6-1:before {
content: "\e192";
}
.glyphicon-sound-7-1:before {
content: "\e193";
}
.glyphicon-copyright-mark:before {
content: "\e194";
}
.glyphicon-registration-mark:before {
content: "\e195";
}
.glyphicon-cloud-download:before {
content: "\e197";
}
.glyphicon-cloud-upload:before {
content: "\e198";
}
.glyphicon-tree-conifer:before {
content: "\e199";
}
.glyphicon-tree-deciduous:before {
content: "\e200";
}
.glyphicon-cd:before {
content: "\e201";
}
.glyphicon-save-file:before {
content: "\e202";
}
.glyphicon-open-file:before {
content: "\e203";
}
.glyphicon-level-up:before {
content: "\e204";
}
.glyphicon-copy:before {
content: "\e205";
}
.glyphicon-paste:before {
content: "\e206";
}
.glyphicon-alert:before {
content: "\e209";
}
.glyphicon-equalizer:before {
content: "\e210";
}
.glyphicon-king:before {
content: "\e211";
}
.glyphicon-queen:before {
content: "\e212";
}
.glyphicon-pawn:before {
content: "\e213";
}
.glyphicon-bishop:before {
content: "\e214";
}
.glyphicon-knight:before {
content: "\e215";
}
.glyphicon-baby-formula:before {
content: "\e216";
}
.glyphicon-tent:before {
content: "\26fa";
}
.glyphicon-blackboard:before {
content: "\e218";
}
.glyphicon-bed:before {
content: "\e219";
}
.glyphicon-apple:before {
content: "\f8ff";
}
.glyphicon-erase:before {
content: "\e221";
}
.glyphicon-hourglass:before {
content: "\231b";
}
.glyphicon-lamp:before {
content: "\e223";
}
.glyphicon-duplicate:before {
content: "\e224";
}
.glyphicon-piggy-bank:before {
content: "\e225";
}
.glyphicon-scissors:before {
content: "\e226";
}
.glyphicon-bitcoin:before {
content: "\e227";
}
.glyphicon-btc:before {
content: "\e227";
}
.glyphicon-xbt:before {
content: "\e227";
}
.glyphicon-yen:before {
content: "\00a5";
}
.glyphicon-jpy:before {
content: "\00a5";
}
.glyphicon-ruble:before {
content: "\20bd";
}
.glyphicon-rub:before {
content: "\20bd";
}
.glyphicon-scale:before {
content: "\e230";
}
.glyphicon-ice-lolly:before {
content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
content: "\e232";
}
.glyphicon-education:before {
content: "\e233";
}
.glyphicon-option-horizontal:before {
content: "\e234";
}
.glyphicon-option-vertical:before {
content: "\e235";
}
.glyphicon-menu-hamburger:before {
content: "\e236";
}
.glyphicon-modal-window:before {
content: "\e237";
}
.glyphicon-oil:before {
content: "\e238";
}
.glyphicon-grain:before {
content: "\e239";
}
.glyphicon-sunglasses:before {
content: "\e240";
}
.glyphicon-text-size:before {
content: "\e241";
}
.glyphicon-text-color:before {
content: "\e242";
}
.glyphicon-text-background:before {
content: "\e243";
}
.glyphicon-object-align-top:before {
content: "\e244";
}
.glyphicon-object-align-bottom:before {
content: "\e245";
}
.glyphicon-object-align-horizontal:before {
content: "\e246";
}
.glyphicon-object-align-left:before {
content: "\e247";
}
.glyphicon-object-align-vertical:before {
content: "\e248";
}
.glyphicon-object-align-right:before {
content: "\e249";
}
.glyphicon-triangle-right:before {
content: "\e250";
}
.glyphicon-triangle-left:before {
content: "\e251";
}
.glyphicon-triangle-bottom:before {
content: "\e252";
}
.glyphicon-triangle-top:before {
content: "\e253";
}
.glyphicon-console:before {
content: "\e254";
}
.glyphicon-superscript:before {
content: "\e255";
}
.glyphicon-subscript:before {
content: "\e256";
}
.glyphicon-menu-left:before {
content: "\e257";
}
.glyphicon-menu-right:before {
content: "\e258";
}
.glyphicon-menu-down:before {
content: "\e259";
}
.glyphicon-menu-up:before {
content: "\e260";
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html {
font-size: 10px;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px;
line-height: 1.42857143;
color: #000;
background-color: #fff;
}
input,
button,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
a {
color: #337ab7;
text-decoration: none;
}
a:hover,
a:focus {
color: #23527c;
text-decoration: underline;
}
a:focus {
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
figure {
margin: 0;
}
img {
vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
display: block;
max-width: 100%;
height: auto;
}
.img-rounded {
border-radius: 3px;
}
.img-thumbnail {
padding: 4px;
line-height: 1.42857143;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 2px;
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
display: inline-block;
max-width: 100%;
height: auto;
}
.img-circle {
border-radius: 50%;
}
hr {
margin-top: 18px;
margin-bottom: 18px;
border: 0;
border-top: 1px solid #eeeeee;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto;
}
[role="button"] {
cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
font-weight: normal;
line-height: 1;
color: #777777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
margin-top: 18px;
margin-bottom: 9px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
margin-top: 9px;
margin-bottom: 9px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
font-size: 75%;
}
h1,
.h1 {
font-size: 33px;
}
h2,
.h2 {
font-size: 27px;
}
h3,
.h3 {
font-size: 23px;
}
h4,
.h4 {
font-size: 17px;
}
h5,
.h5 {
font-size: 13px;
}
h6,
.h6 {
font-size: 12px;
}
p {
margin: 0 0 9px;
}
.lead {
margin-bottom: 18px;
font-size: 14px;
font-weight: 300;
line-height: 1.4;
}
@media (min-width: 768px) {
.lead {
font-size: 19.5px;
}
}
small,
.small {
font-size: 92%;
}
mark,
.mark {
background-color: #fcf8e3;
padding: .2em;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
.text-justify {
text-align: justify;
}
.text-nowrap {
white-space: nowrap;
}
.text-lowercase {
text-transform: lowercase;
}
.text-uppercase {
text-transform: uppercase;
}
.text-capitalize {
text-transform: capitalize;
}
.text-muted {
color: #777777;
}
.text-primary {
color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
color: #286090;
}
.text-success {
color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
color: #2b542c;
}
.text-info {
color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
color: #245269;
}
.text-warning {
color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
color: #66512c;
}
.text-danger {
color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
color: #843534;
}
.bg-primary {
color: #fff;
background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
background-color: #286090;
}
.bg-success {
background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
background-color: #c1e2b3;
}
.bg-info {
background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
background-color: #afd9ee;
}
.bg-warning {
background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
background-color: #f7ecb5;
}
.bg-danger {
background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
background-color: #e4b9b9;
}
.page-header {
padding-bottom: 8px;
margin: 36px 0 18px;
border-bottom: 1px solid #eeeeee;
}
ul,
ol {
margin-top: 0;
margin-bottom: 9px;
}
ul ul,
ol ul,
ul ol,
ol ol {
margin-bottom: 0;
}
.list-unstyled {
padding-left: 0;
list-style: none;
}
.list-inline {
padding-left: 0;
list-style: none;
margin-left: -5px;
}
.list-inline > li {
display: inline-block;
padding-left: 5px;
padding-right: 5px;
}
dl {
margin-top: 0;
margin-bottom: 18px;
}
dt,
dd {
line-height: 1.42857143;
}
dt {
font-weight: bold;
}
dd {
margin-left: 0;
}
@media (min-width: 541px) {
.dl-horizontal dt {
float: left;
width: 160px;
clear: left;
text-align: right;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.dl-horizontal dd {
margin-left: 180px;
}
}
abbr[title],
abbr[data-original-title] {
cursor: help;
border-bottom: 1px dotted #777777;
}
.initialism {
font-size: 90%;
text-transform: uppercase;
}
blockquote {
padding: 9px 18px;
margin: 0 0 18px;
font-size: inherit;
border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
display: block;
font-size: 80%;
line-height: 1.42857143;
color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
padding-right: 15px;
padding-left: 0;
border-right: 5px solid #eeeeee;
border-left: 0;
text-align: right;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
content: '\00A0 \2014';
}
address {
margin-bottom: 18px;
font-style: normal;
line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
font-family: monospace;
}
code {
padding: 2px 4px;
font-size: 90%;
color: #c7254e;
background-color: #f9f2f4;
border-radius: 2px;
}
kbd {
padding: 2px 4px;
font-size: 90%;
color: #888;
background-color: transparent;
border-radius: 1px;
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
padding: 0;
font-size: 100%;
font-weight: bold;
box-shadow: none;
}
pre {
display: block;
padding: 8.5px;
margin: 0 0 9px;
font-size: 12px;
line-height: 1.42857143;
word-break: break-all;
word-wrap: break-word;
color: #333333;
background-color: #f5f5f5;
border: 1px solid #ccc;
border-radius: 2px;
}
pre code {
padding: 0;
font-size: inherit;
color: inherit;
white-space: pre-wrap;
background-color: transparent;
border-radius: 0;
}
.pre-scrollable {
max-height: 340px;
overflow-y: scroll;
}
.container {
margin-right: auto;
margin-left: auto;
padding-left: 0px;
padding-right: 0px;
}
@media (min-width: 768px) {
.container {
width: 768px;
}
}
@media (min-width: 992px) {
.container {
width: 940px;
}
}
@media (min-width: 1200px) {
.container {
width: 1140px;
}
}
.container-fluid {
margin-right: auto;
margin-left: auto;
padding-left: 0px;
padding-right: 0px;
}
.row {
margin-left: 0px;
margin-right: 0px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
position: relative;
min-height: 1px;
padding-left: 0px;
padding-right: 0px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
float: left;
}
.col-xs-12 {
width: 100%;
}
.col-xs-11 {
width: 91.66666667%;
}
.col-xs-10 {
width: 83.33333333%;
}
.col-xs-9 {
width: 75%;
}
.col-xs-8 {
width: 66.66666667%;
}
.col-xs-7 {
width: 58.33333333%;
}
.col-xs-6 {
width: 50%;
}
.col-xs-5 {
width: 41.66666667%;
}
.col-xs-4 {
width: 33.33333333%;
}
.col-xs-3 {
width: 25%;
}
.col-xs-2 {
width: 16.66666667%;
}
.col-xs-1 {
width: 8.33333333%;
}
.col-xs-pull-12 {
right: 100%;
}
.col-xs-pull-11 {
right: 91.66666667%;
}
.col-xs-pull-10 {
right: 83.33333333%;
}
.col-xs-pull-9 {
right: 75%;
}
.col-xs-pull-8 {
right: 66.66666667%;
}
.col-xs-pull-7 {
right: 58.33333333%;
}
.col-xs-pull-6 {
right: 50%;
}
.col-xs-pull-5 {
right: 41.66666667%;
}
.col-xs-pull-4 {
right: 33.33333333%;
}
.col-xs-pull-3 {
right: 25%;
}
.col-xs-pull-2 {
right: 16.66666667%;
}
.col-xs-pull-1 {
right: 8.33333333%;
}
.col-xs-pull-0 {
right: auto;
}
.col-xs-push-12 {
left: 100%;
}
.col-xs-push-11 {
left: 91.66666667%;
}
.col-xs-push-10 {
left: 83.33333333%;
}
.col-xs-push-9 {
left: 75%;
}
.col-xs-push-8 {
left: 66.66666667%;
}
.col-xs-push-7 {
left: 58.33333333%;
}
.col-xs-push-6 {
left: 50%;
}
.col-xs-push-5 {
left: 41.66666667%;
}
.col-xs-push-4 {
left: 33.33333333%;
}
.col-xs-push-3 {
left: 25%;
}
.col-xs-push-2 {
left: 16.66666667%;
}
.col-xs-push-1 {
left: 8.33333333%;
}
.col-xs-push-0 {
left: auto;
}
.col-xs-offset-12 {
margin-left: 100%;
}
.col-xs-offset-11 {
margin-left: 91.66666667%;
}
.col-xs-offset-10 {
margin-left: 83.33333333%;
}
.col-xs-offset-9 {
margin-left: 75%;
}
.col-xs-offset-8 {
margin-left: 66.66666667%;
}
.col-xs-offset-7 {
margin-left: 58.33333333%;
}
.col-xs-offset-6 {
margin-left: 50%;
}
.col-xs-offset-5 {
margin-left: 41.66666667%;
}
.col-xs-offset-4 {
margin-left: 33.33333333%;
}
.col-xs-offset-3 {
margin-left: 25%;
}
.col-xs-offset-2 {
margin-left: 16.66666667%;
}
.col-xs-offset-1 {
margin-left: 8.33333333%;
}
.col-xs-offset-0 {
margin-left: 0%;
}
@media (min-width: 768px) {
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
float: left;
}
.col-sm-12 {
width: 100%;
}
.col-sm-11 {
width: 91.66666667%;
}
.col-sm-10 {
width: 83.33333333%;
}
.col-sm-9 {
width: 75%;
}
.col-sm-8 {
width: 66.66666667%;
}
.col-sm-7 {
width: 58.33333333%;
}
.col-sm-6 {
width: 50%;
}
.col-sm-5 {
width: 41.66666667%;
}
.col-sm-4 {
width: 33.33333333%;
}
.col-sm-3 {
width: 25%;
}
.col-sm-2 {
width: 16.66666667%;
}
.col-sm-1 {
width: 8.33333333%;
}
.col-sm-pull-12 {
right: 100%;
}
.col-sm-pull-11 {
right: 91.66666667%;
}
.col-sm-pull-10 {
right: 83.33333333%;
}
.col-sm-pull-9 {
right: 75%;
}
.col-sm-pull-8 {
right: 66.66666667%;
}
.col-sm-pull-7 {
right: 58.33333333%;
}
.col-sm-pull-6 {
right: 50%;
}
.col-sm-pull-5 {
right: 41.66666667%;
}
.col-sm-pull-4 {
right: 33.33333333%;
}
.col-sm-pull-3 {
right: 25%;
}
.col-sm-pull-2 {
right: 16.66666667%;
}
.col-sm-pull-1 {
right: 8.33333333%;
}
.col-sm-pull-0 {
right: auto;
}
.col-sm-push-12 {
left: 100%;
}
.col-sm-push-11 {
left: 91.66666667%;
}
.col-sm-push-10 {
left: 83.33333333%;
}
.col-sm-push-9 {
left: 75%;
}
.col-sm-push-8 {
left: 66.66666667%;
}
.col-sm-push-7 {
left: 58.33333333%;
}
.col-sm-push-6 {
left: 50%;
}
.col-sm-push-5 {
left: 41.66666667%;
}
.col-sm-push-4 {
left: 33.33333333%;
}
.col-sm-push-3 {
left: 25%;
}
.col-sm-push-2 {
left: 16.66666667%;
}
.col-sm-push-1 {
left: 8.33333333%;
}
.col-sm-push-0 {
left: auto;
}
.col-sm-offset-12 {
margin-left: 100%;
}
.col-sm-offset-11 {
margin-left: 91.66666667%;
}
.col-sm-offset-10 {
margin-left: 83.33333333%;
}
.col-sm-offset-9 {
margin-left: 75%;
}
.col-sm-offset-8 {
margin-left: 66.66666667%;
}
.col-sm-offset-7 {
margin-left: 58.33333333%;
}
.col-sm-offset-6 {
margin-left: 50%;
}
.col-sm-offset-5 {
margin-left: 41.66666667%;
}
.col-sm-offset-4 {
margin-left: 33.33333333%;
}
.col-sm-offset-3 {
margin-left: 25%;
}
.col-sm-offset-2 {
margin-left: 16.66666667%;
}
.col-sm-offset-1 {
margin-left: 8.33333333%;
}
.col-sm-offset-0 {
margin-left: 0%;
}
}
@media (min-width: 992px) {
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
float: left;
}
.col-md-12 {
width: 100%;
}
.col-md-11 {
width: 91.66666667%;
}
.col-md-10 {
width: 83.33333333%;
}
.col-md-9 {
width: 75%;
}
.col-md-8 {
width: 66.66666667%;
}
.col-md-7 {
width: 58.33333333%;
}
.col-md-6 {
width: 50%;
}
.col-md-5 {
width: 41.66666667%;
}
.col-md-4 {
width: 33.33333333%;
}
.col-md-3 {
width: 25%;
}
.col-md-2 {
width: 16.66666667%;
}
.col-md-1 {
width: 8.33333333%;
}
.col-md-pull-12 {
right: 100%;
}
.col-md-pull-11 {
right: 91.66666667%;
}
.col-md-pull-10 {
right: 83.33333333%;
}
.col-md-pull-9 {
right: 75%;
}
.col-md-pull-8 {
right: 66.66666667%;
}
.col-md-pull-7 {
right: 58.33333333%;
}
.col-md-pull-6 {
right: 50%;
}
.col-md-pull-5 {
right: 41.66666667%;
}
.col-md-pull-4 {
right: 33.33333333%;
}
.col-md-pull-3 {
right: 25%;
}
.col-md-pull-2 {
right: 16.66666667%;
}
.col-md-pull-1 {
right: 8.33333333%;
}
.col-md-pull-0 {
right: auto;
}
.col-md-push-12 {
left: 100%;
}
.col-md-push-11 {
left: 91.66666667%;
}
.col-md-push-10 {
left: 83.33333333%;
}
.col-md-push-9 {
left: 75%;
}
.col-md-push-8 {
left: 66.66666667%;
}
.col-md-push-7 {
left: 58.33333333%;
}
.col-md-push-6 {
left: 50%;
}
.col-md-push-5 {
left: 41.66666667%;
}
.col-md-push-4 {
left: 33.33333333%;
}
.col-md-push-3 {
left: 25%;
}
.col-md-push-2 {
left: 16.66666667%;
}
.col-md-push-1 {
left: 8.33333333%;
}
.col-md-push-0 {
left: auto;
}
.col-md-offset-12 {
margin-left: 100%;
}
.col-md-offset-11 {
margin-left: 91.66666667%;
}
.col-md-offset-10 {
margin-left: 83.33333333%;
}
.col-md-offset-9 {
margin-left: 75%;
}
.col-md-offset-8 {
margin-left: 66.66666667%;
}
.col-md-offset-7 {
margin-left: 58.33333333%;
}
.col-md-offset-6 {
margin-left: 50%;
}
.col-md-offset-5 {
margin-left: 41.66666667%;
}
.col-md-offset-4 {
margin-left: 33.33333333%;
}
.col-md-offset-3 {
margin-left: 25%;
}
.col-md-offset-2 {
margin-left: 16.66666667%;
}
.col-md-offset-1 {
margin-left: 8.33333333%;
}
.col-md-offset-0 {
margin-left: 0%;
}
}
@media (min-width: 1200px) {
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
float: left;
}
.col-lg-12 {
width: 100%;
}
.col-lg-11 {
width: 91.66666667%;
}
.col-lg-10 {
width: 83.33333333%;
}
.col-lg-9 {
width: 75%;
}
.col-lg-8 {
width: 66.66666667%;
}
.col-lg-7 {
width: 58.33333333%;
}
.col-lg-6 {
width: 50%;
}
.col-lg-5 {
width: 41.66666667%;
}
.col-lg-4 {
width: 33.33333333%;
}
.col-lg-3 {
width: 25%;
}
.col-lg-2 {
width: 16.66666667%;
}
.col-lg-1 {
width: 8.33333333%;
}
.col-lg-pull-12 {
right: 100%;
}
.col-lg-pull-11 {
right: 91.66666667%;
}
.col-lg-pull-10 {
right: 83.33333333%;
}
.col-lg-pull-9 {
right: 75%;
}
.col-lg-pull-8 {
right: 66.66666667%;
}
.col-lg-pull-7 {
right: 58.33333333%;
}
.col-lg-pull-6 {
right: 50%;
}
.col-lg-pull-5 {
right: 41.66666667%;
}
.col-lg-pull-4 {
right: 33.33333333%;
}
.col-lg-pull-3 {
right: 25%;
}
.col-lg-pull-2 {
right: 16.66666667%;
}
.col-lg-pull-1 {
right: 8.33333333%;
}
.col-lg-pull-0 {
right: auto;
}
.col-lg-push-12 {
left: 100%;
}
.col-lg-push-11 {
left: 91.66666667%;
}
.col-lg-push-10 {
left: 83.33333333%;
}
.col-lg-push-9 {
left: 75%;
}
.col-lg-push-8 {
left: 66.66666667%;
}
.col-lg-push-7 {
left: 58.33333333%;
}
.col-lg-push-6 {
left: 50%;
}
.col-lg-push-5 {
left: 41.66666667%;
}
.col-lg-push-4 {
left: 33.33333333%;
}
.col-lg-push-3 {
left: 25%;
}
.col-lg-push-2 {
left: 16.66666667%;
}
.col-lg-push-1 {
left: 8.33333333%;
}
.col-lg-push-0 {
left: auto;
}
.col-lg-offset-12 {
margin-left: 100%;
}
.col-lg-offset-11 {
margin-left: 91.66666667%;
}
.col-lg-offset-10 {
margin-left: 83.33333333%;
}
.col-lg-offset-9 {
margin-left: 75%;
}
.col-lg-offset-8 {
margin-left: 66.66666667%;
}
.col-lg-offset-7 {
margin-left: 58.33333333%;
}
.col-lg-offset-6 {
margin-left: 50%;
}
.col-lg-offset-5 {
margin-left: 41.66666667%;
}
.col-lg-offset-4 {
margin-left: 33.33333333%;
}
.col-lg-offset-3 {
margin-left: 25%;
}
.col-lg-offset-2 {
margin-left: 16.66666667%;
}
.col-lg-offset-1 {
margin-left: 8.33333333%;
}
.col-lg-offset-0 {
margin-left: 0%;
}
}
table {
background-color: transparent;
}
caption {
padding-top: 8px;
padding-bottom: 8px;
color: #777777;
text-align: left;
}
th {
text-align: left;
}
.table {
width: 100%;
max-width: 100%;
margin-bottom: 18px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
padding: 8px;
line-height: 1.42857143;
vertical-align: top;
border-top: 1px solid #ddd;
}
.table > thead > tr > th {
vertical-align: bottom;
border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
border-top: 0;
}
.table > tbody + tbody {
border-top: 2px solid #ddd;
}
.table .table {
background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
padding: 5px;
}
.table-bordered {
border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
background-color: #f5f5f5;
}
table col[class*="col-"] {
position: static;
float: none;
display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
position: static;
float: none;
display: table-cell;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
background-color: #ebcccc;
}
.table-responsive {
overflow-x: auto;
min-height: 0.01%;
}
@media screen and (max-width: 767px) {
.table-responsive {
width: 100%;
margin-bottom: 13.5px;
overflow-y: hidden;
-ms-overflow-style: -ms-autohiding-scrollbar;
border: 1px solid #ddd;
}
.table-responsive > .table {
margin-bottom: 0;
}
.table-responsive > .table > thead > tr > th,
.table-responsive > .table > tbody > tr > th,
.table-responsive > .table > tfoot > tr > th,
.table-responsive > .table > thead > tr > td,
.table-responsive > .table > tbody > tr > td,
.table-responsive > .table > tfoot > tr > td {
white-space: nowrap;
}
.table-responsive > .table-bordered {
border: 0;
}
.table-responsive > .table-bordered > thead > tr > th:first-child,
.table-responsive > .table-bordered > tbody > tr > th:first-child,
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
.table-responsive > .table-bordered > thead > tr > td:first-child,
.table-responsive > .table-bordered > tbody > tr > td:first-child,
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
border-left: 0;
}
.table-responsive > .table-bordered > thead > tr > th:last-child,
.table-responsive > .table-bordered > tbody > tr > th:last-child,
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
.table-responsive > .table-bordered > thead > tr > td:last-child,
.table-responsive > .table-bordered > tbody > tr > td:last-child,
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
border-right: 0;
}
.table-responsive > .table-bordered > tbody > tr:last-child > th,
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
.table-responsive > .table-bordered > tbody > tr:last-child > td,
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
border-bottom: 0;
}
}
fieldset {
padding: 0;
margin: 0;
border: 0;
min-width: 0;
}
legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: 18px;
font-size: 19.5px;
line-height: inherit;
color: #333333;
border: 0;
border-bottom: 1px solid #e5e5e5;
}
label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: bold;
}
input[type="search"] {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
margin: 4px 0 0;
margin-top: 1px \9;
line-height: normal;
}
input[type="file"] {
display: block;
}
input[type="range"] {
display: block;
width: 100%;
}
select[multiple],
select[size] {
height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
output {
display: block;
padding-top: 7px;
font-size: 13px;
line-height: 1.42857143;
color: #555555;
}
.form-control {
display: block;
width: 100%;
height: 32px;
padding: 6px 12px;
font-size: 13px;
line-height: 1.42857143;
color: #555555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 2px;
-webkit-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-color ease-in-out .15s, box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
color: #999;
opacity: 1;
}
.form-control:-ms-input-placeholder {
color: #999;
}
.form-control::-webkit-input-placeholder {
color: #999;
}
.form-control::-ms-expand {
border: 0;
background-color: transparent;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
background-color: #eeeeee;
opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
cursor: not-allowed;
}
textarea.form-control {
height: auto;
}
input[type="search"] {
-webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
input[type="date"].form-control,
input[type="time"].form-control,
input[type="datetime-local"].form-control,
input[type="month"].form-control {
line-height: 32px;
}
input[type="date"].input-sm,
input[type="time"].input-sm,
input[type="datetime-local"].input-sm,
input[type="month"].input-sm,
.input-group-sm input[type="date"],
.input-group-sm input[type="time"],
.input-group-sm input[type="datetime-local"],
.input-group-sm input[type="month"] {
line-height: 30px;
}
input[type="date"].input-lg,
input[type="time"].input-lg,
input[type="datetime-local"].input-lg,
input[type="month"].input-lg,
.input-group-lg input[type="date"],
.input-group-lg input[type="time"],
.input-group-lg input[type="datetime-local"],
.input-group-lg input[type="month"] {
line-height: 45px;
}
}
.form-group {
margin-bottom: 15px;
}
.radio,
.checkbox {
position: relative;
display: block;
margin-top: 10px;
margin-bottom: 10px;
}
.radio label,
.checkbox label {
min-height: 18px;
padding-left: 20px;
margin-bottom: 0;
font-weight: normal;
cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
position: absolute;
margin-left: -20px;
margin-top: 4px \9;
}
.radio + .radio,
.checkbox + .checkbox {
margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
position: relative;
display: inline-block;
padding-left: 20px;
margin-bottom: 0;
vertical-align: middle;
font-weight: normal;
cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
margin-top: 0;
margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
cursor: not-allowed;
}
.form-control-static {
padding-top: 7px;
padding-bottom: 7px;
margin-bottom: 0;
min-height: 31px;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
padding-left: 0;
padding-right: 0;
}
.input-sm {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 1px;
}
select.input-sm {
height: 30px;
line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
height: auto;
}
.form-group-sm .form-control {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 1px;
}
.form-group-sm select.form-control {
height: 30px;
line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
height: auto;
}
.form-group-sm .form-control-static {
height: 30px;
min-height: 30px;
padding: 6px 10px;
font-size: 12px;
line-height: 1.5;
}
.input-lg {
height: 45px;
padding: 10px 16px;
font-size: 17px;
line-height: 1.3333333;
border-radius: 3px;
}
select.input-lg {
height: 45px;
line-height: 45px;
}
textarea.input-lg,
select[multiple].input-lg {
height: auto;
}
.form-group-lg .form-control {
height: 45px;
padding: 10px 16px;
font-size: 17px;
line-height: 1.3333333;
border-radius: 3px;
}
.form-group-lg select.form-control {
height: 45px;
line-height: 45px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
height: auto;
}
.form-group-lg .form-control-static {
height: 45px;
min-height: 35px;
padding: 11px 16px;
font-size: 17px;
line-height: 1.3333333;
}
.has-feedback {
position: relative;
}
.has-feedback .form-control {
padding-right: 40px;
}
.form-control-feedback {
position: absolute;
top: 0;
right: 0;
z-index: 2;
display: block;
width: 32px;
height: 32px;
line-height: 32px;
text-align: center;
pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
width: 45px;
height: 45px;
line-height: 45px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
width: 30px;
height: 30px;
line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
color: #3c763d;
}
.has-success .form-control {
border-color: #3c763d;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
border-color: #2b542c;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
color: #3c763d;
border-color: #3c763d;
background-color: #dff0d8;
}
.has-success .form-control-feedback {
color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
color: #8a6d3b;
}
.has-warning .form-control {
border-color: #8a6d3b;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
border-color: #66512c;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
color: #8a6d3b;
border-color: #8a6d3b;
background-color: #fcf8e3;
}
.has-warning .form-control-feedback {
color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
color: #a94442;
}
.has-error .form-control {
border-color: #a94442;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
border-color: #843534;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
color: #a94442;
border-color: #a94442;
background-color: #f2dede;
}
.has-error .form-control-feedback {
color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
top: 23px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
top: 0;
}
.help-block {
display: block;
margin-top: 5px;
margin-bottom: 10px;
color: #404040;
}
@media (min-width: 768px) {
.form-inline .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
.form-inline .form-control-static {
display: inline-block;
}
.form-inline .input-group {
display: inline-table;
vertical-align: middle;
}
.form-inline .input-group .input-group-addon,
.form-inline .input-group .input-group-btn,
.form-inline .input-group .form-control {
width: auto;
}
.form-inline .input-group > .form-control {
width: 100%;
}
.form-inline .control-label {
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .radio,
.form-inline .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
.form-inline .radio label,
.form-inline .checkbox label {
padding-left: 0;
}
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
.form-inline .has-feedback .form-control-feedback {
top: 0;
}
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
margin-top: 0;
margin-bottom: 0;
padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
min-height: 25px;
}
.form-horizontal .form-group {
margin-left: 0px;
margin-right: 0px;
}
@media (min-width: 768px) {
.form-horizontal .control-label {
text-align: right;
margin-bottom: 0;
padding-top: 7px;
}
}
.form-horizontal .has-feedback .form-control-feedback {
right: 0px;
}
@media (min-width: 768px) {
.form-horizontal .form-group-lg .control-label {
padding-top: 11px;
font-size: 17px;
}
}
@media (min-width: 768px) {
.form-horizontal .form-group-sm .control-label {
padding-top: 6px;
font-size: 12px;
}
}
.btn {
display: inline-block;
margin-bottom: 0;
font-weight: normal;
text-align: center;
vertical-align: middle;
touch-action: manipulation;
cursor: pointer;
background-image: none;
border: 1px solid transparent;
white-space: nowrap;
padding: 6px 12px;
font-size: 13px;
line-height: 1.42857143;
border-radius: 2px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
color: #333;
text-decoration: none;
}
.btn:active,
.btn.active {
outline: 0;
background-image: none;
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
cursor: not-allowed;
opacity: 0.65;
filter: alpha(opacity=65);
-webkit-box-shadow: none;
box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
pointer-events: none;
}
.btn-default {
color: #333;
background-color: #fff;
border-color: #ccc;
}
.btn-default:focus,
.btn-default.focus {
color: #333;
background-color: #e6e6e6;
border-color: #8c8c8c;
}
.btn-default:hover {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
color: #333;
background-color: #d4d4d4;
border-color: #8c8c8c;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
background-image: none;
}
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
background-color: #fff;
border-color: #ccc;
}
.btn-default .badge {
color: #fff;
background-color: #333;
}
.btn-primary {
color: #fff;
background-color: #337ab7;
border-color: #2e6da4;
}
.btn-primary:focus,
.btn-primary.focus {
color: #fff;
background-color: #286090;
border-color: #122b40;
}
.btn-primary:hover {
color: #fff;
background-color: #286090;
border-color: #204d74;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
color: #fff;
background-color: #286090;
border-color: #204d74;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
color: #fff;
background-color: #204d74;
border-color: #122b40;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
background-image: none;
}
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus {
background-color: #337ab7;
border-color: #2e6da4;
}
.btn-primary .badge {
color: #337ab7;
background-color: #fff;
}
.btn-success {
color: #fff;
background-color: #5cb85c;
border-color: #4cae4c;
}
.btn-success:focus,
.btn-success.focus {
color: #fff;
background-color: #449d44;
border-color: #255625;
}
.btn-success:hover {
color: #fff;
background-color: #449d44;
border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
color: #fff;
background-color: #449d44;
border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
color: #fff;
background-color: #398439;
border-color: #255625;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
background-image: none;
}
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus {
background-color: #5cb85c;
border-color: #4cae4c;
}
.btn-success .badge {
color: #5cb85c;
background-color: #fff;
}
.btn-info {
color: #fff;
background-color: #5bc0de;
border-color: #46b8da;
}
.btn-info:focus,
.btn-info.focus {
color: #fff;
background-color: #31b0d5;
border-color: #1b6d85;
}
.btn-info:hover {
color: #fff;
background-color: #31b0d5;
border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
color: #fff;
background-color: #31b0d5;
border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
color: #fff;
background-color: #269abc;
border-color: #1b6d85;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
background-image: none;
}
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus {
background-color: #5bc0de;
border-color: #46b8da;
}
.btn-info .badge {
color: #5bc0de;
background-color: #fff;
}
.btn-warning {
color: #fff;
background-color: #f0ad4e;
border-color: #eea236;
}
.btn-warning:focus,
.btn-warning.focus {
color: #fff;
background-color: #ec971f;
border-color: #985f0d;
}
.btn-warning:hover {
color: #fff;
background-color: #ec971f;
border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
color: #fff;
background-color: #ec971f;
border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
color: #fff;
background-color: #d58512;
border-color: #985f0d;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
background-image: none;
}
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus {
background-color: #f0ad4e;
border-color: #eea236;
}
.btn-warning .badge {
color: #f0ad4e;
background-color: #fff;
}
.btn-danger {
color: #fff;
background-color: #d9534f;
border-color: #d43f3a;
}
.btn-danger:focus,
.btn-danger.focus {
color: #fff;
background-color: #c9302c;
border-color: #761c19;
}
.btn-danger:hover {
color: #fff;
background-color: #c9302c;
border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
color: #fff;
background-color: #c9302c;
border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
color: #fff;
background-color: #ac2925;
border-color: #761c19;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
background-image: none;
}
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus {
background-color: #d9534f;
border-color: #d43f3a;
}
.btn-danger .badge {
color: #d9534f;
background-color: #fff;
}
.btn-link {
color: #337ab7;
font-weight: normal;
border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
background-color: transparent;
-webkit-box-shadow: none;
box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
color: #23527c;
text-decoration: underline;
background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
color: #777777;
text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
padding: 10px 16px;
font-size: 17px;
line-height: 1.3333333;
border-radius: 3px;
}
.btn-sm,
.btn-group-sm > .btn {
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 1px;
}
.btn-xs,
.btn-group-xs > .btn {
padding: 1px 5px;
font-size: 12px;
line-height: 1.5;
border-radius: 1px;
}
.btn-block {
display: block;
width: 100%;
}
.btn-block + .btn-block {
margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
width: 100%;
}
.fade {
opacity: 0;
-webkit-transition: opacity 0.15s linear;
-o-transition: opacity 0.15s linear;
transition: opacity 0.15s linear;
}
.fade.in {
opacity: 1;
}
.collapse {
display: none;
}
.collapse.in {
display: block;
}
tr.collapse.in {
display: table-row;
}
tbody.collapse.in {
display: table-row-group;
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition-property: height, visibility;
transition-property: height, visibility;
-webkit-transition-duration: 0.35s;
transition-duration: 0.35s;
-webkit-transition-timing-function: ease;
transition-timing-function: ease;
}
.caret {
display: inline-block;
width: 0;
height: 0;
margin-left: 2px;
vertical-align: middle;
border-top: 4px dashed;
border-top: 4px solid \9;
border-right: 4px solid transparent;
border-left: 4px solid transparent;
}
.dropup,
.dropdown {
position: relative;
}
.dropdown-toggle:focus {
outline: 0;
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
float: left;
min-width: 160px;
padding: 5px 0;
margin: 2px 0 0;
list-style: none;
font-size: 13px;
text-align: left;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 2px;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
background-clip: padding-box;
}
.dropdown-menu.pull-right {
right: 0;
left: auto;
}
.dropdown-menu .divider {
height: 1px;
margin: 8px 0;
overflow: hidden;
background-color: #e5e5e5;
}
.dropdown-menu > li > a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 1.42857143;
color: #333333;
white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
text-decoration: none;
color: #262626;
background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
color: #fff;
text-decoration: none;
outline: 0;
background-color: #337ab7;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
color: #777777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
text-decoration: none;
background-color: transparent;
background-image: none;
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
cursor: not-allowed;
}
.open > .dropdown-menu {
display: block;
}
.open > a {
outline: 0;
}
.dropdown-menu-right {
left: auto;
right: 0;
}
.dropdown-menu-left {
left: 0;
right: auto;
}
.dropdown-header {
display: block;
padding: 3px 20px;
font-size: 12px;
line-height: 1.42857143;
color: #777777;
white-space: nowrap;
}
.dropdown-backdrop {
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
z-index: 990;
}
.pull-right > .dropdown-menu {
right: 0;
left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
border-top: 0;
border-bottom: 4px dashed;
border-bottom: 4px solid \9;
content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
top: auto;
bottom: 100%;
margin-bottom: 2px;
}
@media (min-width: 541px) {
.navbar-right .dropdown-menu {
left: auto;
right: 0;
}
.navbar-right .dropdown-menu-left {
left: 0;
right: auto;
}
}
.btn-group,
.btn-group-vertical {
position: relative;
display: inline-block;
vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
position: relative;
float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
margin-left: -1px;
}
.btn-toolbar {
margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
border-radius: 0;
}
.btn-group > .btn:first-child {
margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.btn-group > .btn-group {
float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
padding-left: 8px;
padding-right: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
padding-left: 12px;
padding-right: 12px;
}
.btn-group.open .dropdown-toggle {
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
-webkit-box-shadow: none;
box-shadow: none;
}
.btn .caret {
margin-left: 0;
}
.btn-lg .caret {
border-width: 5px 5px 0;
border-bottom-width: 0;
}
.dropup .btn-lg .caret {
border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
display: block;
float: none;
width: 100%;
max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
margin-top: -1px;
margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
border-top-right-radius: 2px;
border-top-left-radius: 2px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
border-top-right-radius: 0;
border-top-left-radius: 0;
border-bottom-right-radius: 2px;
border-bottom-left-radius: 2px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.btn-group-justified {
display: table;
width: 100%;
table-layout: fixed;
border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
float: none;
display: table-cell;
width: 1%;
}
.btn-group-justified > .btn-group .btn {
width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
left: auto;
}
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
position: absolute;
clip: rect(0, 0, 0, 0);
pointer-events: none;
}
.input-group {
position: relative;
display: table;
border-collapse: separate;
}
.input-group[class*="col-"] {
float: none;
padding-left: 0;
padding-right: 0;
}
.input-group .form-control {
position: relative;
z-index: 2;
float: left;
width: 100%;
margin-bottom: 0;
}
.input-group .form-control:focus {
z-index: 3;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
height: 45px;
padding: 10px 16px;
font-size: 17px;
line-height: 1.3333333;
border-radius: 3px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
height: 45px;
line-height: 45px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 1px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
height: 30px;
line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
border-radius: 0;
}
.input-group-addon,
.input-group-btn {
width: 1%;
white-space: nowrap;
vertical-align: middle;
}
.input-group-addon {
padding: 6px 12px;
font-size: 13px;
font-weight: normal;
line-height: 1;
color: #555555;
text-align: center;
background-color: #eeeeee;
border: 1px solid #ccc;
border-radius: 2px;
}
.input-group-addon.input-sm {
padding: 5px 10px;
font-size: 12px;
border-radius: 1px;
}
.input-group-addon.input-lg {
padding: 10px 16px;
font-size: 17px;
border-radius: 3px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.input-group-addon:first-child {
border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.input-group-addon:last-child {
border-left: 0;
}
.input-group-btn {
position: relative;
font-size: 0;
white-space: nowrap;
}
.input-group-btn > .btn {
position: relative;
}
.input-group-btn > .btn + .btn {
margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
z-index: 2;
margin-left: -1px;
}
.nav {
margin-bottom: 0;
padding-left: 0;
list-style: none;
}
.nav > li {
position: relative;
display: block;
}
.nav > li > a {
position: relative;
display: block;
padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
text-decoration: none;
background-color: #eeeeee;
}
.nav > li.disabled > a {
color: #777777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
color: #777777;
text-decoration: none;
background-color: transparent;
cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
background-color: #eeeeee;
border-color: #337ab7;
}
.nav .nav-divider {
height: 1px;
margin: 8px 0;
overflow: hidden;
background-color: #e5e5e5;
}
.nav > li > a > img {
max-width: none;
}
.nav-tabs {
border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
float: left;
margin-bottom: -1px;
}
.nav-tabs > li > a {
margin-right: 2px;
line-height: 1.42857143;
border: 1px solid transparent;
border-radius: 2px 2px 0 0;
}
.nav-tabs > li > a:hover {
border-color: #eeeeee #eeeeee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
color: #555555;
background-color: #fff;
border: 1px solid #ddd;
border-bottom-color: transparent;
cursor: default;
}
.nav-tabs.nav-justified {
width: 100%;
border-bottom: 0;
}
.nav-tabs.nav-justified > li {
float: none;
}
.nav-tabs.nav-justified > li > a {
text-align: center;
margin-bottom: 5px;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: 768px) {
.nav-tabs.nav-justified > li {
display: table-cell;
width: 1%;
}
.nav-tabs.nav-justified > li > a {
margin-bottom: 0;
}
}
.nav-tabs.nav-justified > li > a {
margin-right: 0;
border-radius: 2px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
border: 1px solid #ddd;
}
@media (min-width: 768px) {
.nav-tabs.nav-justified > li > a {
border-bottom: 1px solid #ddd;
border-radius: 2px 2px 0 0;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
border-bottom-color: #fff;
}
}
.nav-pills > li {
float: left;
}
.nav-pills > li > a {
border-radius: 2px;
}
.nav-pills > li + li {
margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
color: #fff;
background-color: #337ab7;
}
.nav-stacked > li {
float: none;
}
.nav-stacked > li + li {
margin-top: 2px;
margin-left: 0;
}
.nav-justified {
width: 100%;
}
.nav-justified > li {
float: none;
}
.nav-justified > li > a {
text-align: center;
margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: 768px) {
.nav-justified > li {
display: table-cell;
width: 1%;
}
.nav-justified > li > a {
margin-bottom: 0;
}
}
.nav-tabs-justified {
border-bottom: 0;
}
.nav-tabs-justified > li > a {
margin-right: 0;
border-radius: 2px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
border: 1px solid #ddd;
}
@media (min-width: 768px) {
.nav-tabs-justified > li > a {
border-bottom: 1px solid #ddd;
border-radius: 2px 2px 0 0;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
border-bottom-color: #fff;
}
}
.tab-content > .tab-pane {
display: none;
}
.tab-content > .active {
display: block;
}
.nav-tabs .dropdown-menu {
margin-top: -1px;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.navbar {
position: relative;
min-height: 30px;
margin-bottom: 18px;
border: 1px solid transparent;
}
@media (min-width: 541px) {
.navbar {
border-radius: 2px;
}
}
@media (min-width: 541px) {
.navbar-header {
float: left;
}
}
.navbar-collapse {
overflow-x: visible;
padding-right: 0px;
padding-left: 0px;
border-top: 1px solid transparent;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
-webkit-overflow-scrolling: touch;
}
.navbar-collapse.in {
overflow-y: auto;
}
@media (min-width: 541px) {
.navbar-collapse {
width: auto;
border-top: 0;
box-shadow: none;
}
.navbar-collapse.collapse {
display: block !important;
height: auto !important;
padding-bottom: 0;
overflow: visible !important;
}
.navbar-collapse.in {
overflow-y: visible;
}
.navbar-fixed-top .navbar-collapse,
.navbar-static-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
padding-left: 0;
padding-right: 0;
}
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 340px;
}
@media (max-device-width: 540px) and (orientation: landscape) {
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
max-height: 200px;
}
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
margin-right: 0px;
margin-left: 0px;
}
@media (min-width: 541px) {
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
margin-right: 0;
margin-left: 0;
}
}
.navbar-static-top {
z-index: 1000;
border-width: 0 0 1px;
}
@media (min-width: 541px) {
.navbar-static-top {
border-radius: 0;
}
}
.navbar-fixed-top,
.navbar-fixed-bottom {
position: fixed;
right: 0;
left: 0;
z-index: 1030;
}
@media (min-width: 541px) {
.navbar-fixed-top,
.navbar-fixed-bottom {
border-radius: 0;
}
}
.navbar-fixed-top {
top: 0;
border-width: 0 0 1px;
}
.navbar-fixed-bottom {
bottom: 0;
margin-bottom: 0;
border-width: 1px 0 0;
}
.navbar-brand {
float: left;
padding: 6px 0px;
font-size: 17px;
line-height: 18px;
height: 30px;
}
.navbar-brand:hover,
.navbar-brand:focus {
text-decoration: none;
}
.navbar-brand > img {
display: block;
}
@media (min-width: 541px) {
.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand {
margin-left: 0px;
}
}
.navbar-toggle {
position: relative;
float: right;
margin-right: 0px;
padding: 9px 10px;
margin-top: -2px;
margin-bottom: -2px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 2px;
}
.navbar-toggle:focus {
outline: 0;
}
.navbar-toggle .icon-bar {
display: block;
width: 22px;
height: 2px;
border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
margin-top: 4px;
}
@media (min-width: 541px) {
.navbar-toggle {
display: none;
}
}
.navbar-nav {
margin: 3px 0px;
}
.navbar-nav > li > a {
padding-top: 10px;
padding-bottom: 10px;
line-height: 18px;
}
@media (max-width: 540px) {
.navbar-nav .open .dropdown-menu {
position: static;
float: none;
width: auto;
margin-top: 0;
background-color: transparent;
border: 0;
box-shadow: none;
}
.navbar-nav .open .dropdown-menu > li > a,
.navbar-nav .open .dropdown-menu .dropdown-header {
padding: 5px 15px 5px 25px;
}
.navbar-nav .open .dropdown-menu > li > a {
line-height: 18px;
}
.navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-nav .open .dropdown-menu > li > a:focus {
background-image: none;
}
}
@media (min-width: 541px) {
.navbar-nav {
float: left;
margin: 0;
}
.navbar-nav > li {
float: left;
}
.navbar-nav > li > a {
padding-top: 6px;
padding-bottom: 6px;
}
}
.navbar-form {
margin-left: 0px;
margin-right: 0px;
padding: 10px 0px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
-webkit-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);
margin-top: -1px;
margin-bottom: -1px;
}
@media (min-width: 768px) {
.navbar-form .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
.navbar-form .form-control-static {
display: inline-block;
}
.navbar-form .input-group {
display: inline-table;
vertical-align: middle;
}
.navbar-form .input-group .input-group-addon,
.navbar-form .input-group .input-group-btn,
.navbar-form .input-group .form-control {
width: auto;
}
.navbar-form .input-group > .form-control {
width: 100%;
}
.navbar-form .control-label {
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .radio,
.navbar-form .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
.navbar-form .radio label,
.navbar-form .checkbox label {
padding-left: 0;
}
.navbar-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
.navbar-form .has-feedback .form-control-feedback {
top: 0;
}
}
@media (max-width: 540px) {
.navbar-form .form-group {
margin-bottom: 5px;
}
.navbar-form .form-group:last-child {
margin-bottom: 0;
}
}
@media (min-width: 541px) {
.navbar-form {
width: auto;
border: 0;
margin-left: 0;
margin-right: 0;
padding-top: 0;
padding-bottom: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
}
.navbar-nav > li > .dropdown-menu {
margin-top: 0;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
margin-bottom: 0;
border-top-right-radius: 2px;
border-top-left-radius: 2px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.navbar-btn {
margin-top: -1px;
margin-bottom: -1px;
}
.navbar-btn.btn-sm {
margin-top: 0px;
margin-bottom: 0px;
}
.navbar-btn.btn-xs {
margin-top: 4px;
margin-bottom: 4px;
}
.navbar-text {
margin-top: 6px;
margin-bottom: 6px;
}
@media (min-width: 541px) {
.navbar-text {
float: left;
margin-left: 0px;
margin-right: 0px;
}
}
@media (min-width: 541px) {
.navbar-left {
float: left !important;
float: left;
}
.navbar-right {
float: right !important;
float: right;
margin-right: 0px;
}
.navbar-right ~ .navbar-right {
margin-right: 0;
}
}
.navbar-default {
background-color: #f8f8f8;
border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
color: #777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
color: #5e5e5e;
background-color: transparent;
}
.navbar-default .navbar-text {
color: #777;
}
.navbar-default .navbar-nav > li > a {
color: #777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
color: #333;
background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
color: #555;
background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
color: #ccc;
background-color: transparent;
}
.navbar-default .navbar-toggle {
border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
background-color: #e7e7e7;
color: #555;
}
@media (max-width: 540px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #777;
}
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #333;
background-color: transparent;
}
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #555;
background-color: #e7e7e7;
}
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #ccc;
background-color: transparent;
}
}
.navbar-default .navbar-link {
color: #777;
}
.navbar-default .navbar-link:hover {
color: #333;
}
.navbar-default .btn-link {
color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
color: #ccc;
}
.navbar-inverse {
background-color: #222;
border-color: #080808;
}
.navbar-inverse .navbar-brand {
color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-text {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
color: #fff;
background-color: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
color: #444;
background-color: transparent;
}
.navbar-inverse .navbar-toggle {
border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
background-color: #080808;
color: #fff;
}
@media (max-width: 540px) {
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
border-color: #080808;
}
.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
background-color: #080808;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
color: #9d9d9d;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
color: #fff;
background-color: transparent;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #fff;
background-color: #080808;
}
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #444;
background-color: transparent;
}
}
.navbar-inverse .navbar-link {
color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
color: #fff;
}
.navbar-inverse .btn-link {
color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
color: #444;
}
.breadcrumb {
padding: 8px 15px;
margin-bottom: 18px;
list-style: none;
background-color: #f5f5f5;
border-radius: 2px;
}
.breadcrumb > li {
display: inline-block;
}
.breadcrumb > li + li:before {
content: "/\00a0";
padding: 0 5px;
color: #5e5e5e;
}
.breadcrumb > .active {
color: #777777;
}
.pagination {
display: inline-block;
padding-left: 0;
margin: 18px 0;
border-radius: 2px;
}
.pagination > li {
display: inline;
}
.pagination > li > a,
.pagination > li > span {
position: relative;
float: left;
padding: 6px 12px;
line-height: 1.42857143;
text-decoration: none;
color: #337ab7;
background-color: #fff;
border: 1px solid #ddd;
margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
margin-left: 0;
border-bottom-left-radius: 2px;
border-top-left-radius: 2px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
border-bottom-right-radius: 2px;
border-top-right-radius: 2px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
z-index: 2;
color: #23527c;
background-color: #eeeeee;
border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
z-index: 3;
color: #fff;
background-color: #337ab7;
border-color: #337ab7;
cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
color: #777777;
background-color: #fff;
border-color: #ddd;
cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
padding: 10px 16px;
font-size: 17px;
line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
border-bottom-left-radius: 3px;
border-top-left-radius: 3px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
border-bottom-left-radius: 1px;
border-top-left-radius: 1px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
border-bottom-right-radius: 1px;
border-top-right-radius: 1px;
}
.pager {
padding-left: 0;
margin: 18px 0;
list-style: none;
text-align: center;
}
.pager li {
display: inline;
}
.pager li > a,
.pager li > span {
display: inline-block;
padding: 5px 14px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
text-decoration: none;
background-color: #eeeeee;
}
.pager .next > a,
.pager .next > span {
float: right;
}
.pager .previous > a,
.pager .previous > span {
float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
color: #777777;
background-color: #fff;
cursor: not-allowed;
}
.label {
display: inline;
padding: .2em .6em .3em;
font-size: 75%;
font-weight: bold;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: .25em;
}
a.label:hover,
a.label:focus {
color: #fff;
text-decoration: none;
cursor: pointer;
}
.label:empty {
display: none;
}
.btn .label {
position: relative;
top: -1px;
}
.label-default {
background-color: #777777;
}
.label-default[href]:hover,
.label-default[href]:focus {
background-color: #5e5e5e;
}
.label-primary {
background-color: #337ab7;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
background-color: #286090;
}
.label-success {
background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
background-color: #449d44;
}
.label-info {
background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
background-color: #31b0d5;
}
.label-warning {
background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
background-color: #ec971f;
}
.label-danger {
background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
background-color: #c9302c;
}
.badge {
display: inline-block;
min-width: 10px;
padding: 3px 7px;
font-size: 12px;
font-weight: bold;
color: #fff;
line-height: 1;
vertical-align: middle;
white-space: nowrap;
text-align: center;
background-color: #777777;
border-radius: 10px;
}
.badge:empty {
display: none;
}
.btn .badge {
position: relative;
top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
top: 0;
padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
color: #fff;
text-decoration: none;
cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
color: #337ab7;
background-color: #fff;
}
.list-group-item > .badge {
float: right;
}
.list-group-item > .badge + .badge {
margin-right: 5px;
}
.nav-pills > li > a > .badge {
margin-left: 3px;
}
.jumbotron {
padding-top: 30px;
padding-bottom: 30px;
margin-bottom: 30px;
color: inherit;
background-color: #eeeeee;
}
.jumbotron h1,
.jumbotron .h1 {
color: inherit;
}
.jumbotron p {
margin-bottom: 15px;
font-size: 20px;
font-weight: 200;
}
.jumbotron > hr {
border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron {
border-radius: 3px;
padding-left: 0px;
padding-right: 0px;
}
.jumbotron .container {
max-width: 100%;
}
@media screen and (min-width: 768px) {
.jumbotron {
padding-top: 48px;
padding-bottom: 48px;
}
.container .jumbotron,
.container-fluid .jumbotron {
padding-left: 60px;
padding-right: 60px;
}
.jumbotron h1,
.jumbotron .h1 {
font-size: 59px;
}
}
.thumbnail {
display: block;
padding: 4px;
margin-bottom: 18px;
line-height: 1.42857143;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 2px;
-webkit-transition: border 0.2s ease-in-out;
-o-transition: border 0.2s ease-in-out;
transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
margin-left: auto;
margin-right: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
border-color: #337ab7;
}
.thumbnail .caption {
padding: 9px;
color: #000;
}
.alert {
padding: 15px;
margin-bottom: 18px;
border: 1px solid transparent;
border-radius: 2px;
}
.alert h4 {
margin-top: 0;
color: inherit;
}
.alert .alert-link {
font-weight: bold;
}
.alert > p,
.alert > ul {
margin-bottom: 0;
}
.alert > p + p {
margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
position: relative;
top: -2px;
right: -21px;
color: inherit;
}
.alert-success {
background-color: #dff0d8;
border-color: #d6e9c6;
color: #3c763d;
}
.alert-success hr {
border-top-color: #c9e2b3;
}
.alert-success .alert-link {
color: #2b542c;
}
.alert-info {
background-color: #d9edf7;
border-color: #bce8f1;
color: #31708f;
}
.alert-info hr {
border-top-color: #a6e1ec;
}
.alert-info .alert-link {
color: #245269;
}
.alert-warning {
background-color: #fcf8e3;
border-color: #faebcc;
color: #8a6d3b;
}
.alert-warning hr {
border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
color: #66512c;
}
.alert-danger {
background-color: #f2dede;
border-color: #ebccd1;
color: #a94442;
}
.alert-danger hr {
border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
@keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
.progress {
overflow: hidden;
height: 18px;
margin-bottom: 18px;
background-color: #f5f5f5;
border-radius: 2px;
-webkit-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 {
float: left;
width: 0%;
height: 100%;
font-size: 12px;
line-height: 18px;
color: #fff;
text-align: center;
background-color: #337ab7;
-webkit-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-transition: width 0.6s ease;
-o-transition: width 0.6s ease;
transition: width 0.6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
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: -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);
background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
-webkit-animation: progress-bar-stripes 2s linear infinite;
-o-animation: progress-bar-stripes 2s linear infinite;
animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
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: -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-bar-info {
background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
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: -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-bar-warning {
background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
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: -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-bar-danger {
background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
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: -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);
}
.media {
margin-top: 15px;
}
.media:first-child {
margin-top: 0;
}
.media,
.media-body {
zoom: 1;
overflow: hidden;
}
.media-body {
width: 10000px;
}
.media-object {
display: block;
}
.media-object.img-thumbnail {
max-width: none;
}
.media-right,
.media > .pull-right {
padding-left: 10px;
}
.media-left,
.media > .pull-left {
padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
display: table-cell;
vertical-align: top;
}
.media-middle {
vertical-align: middle;
}
.media-bottom {
vertical-align: bottom;
}
.media-heading {
margin-top: 0;
margin-bottom: 5px;
}
.media-list {
padding-left: 0;
list-style: none;
}
.list-group {
margin-bottom: 20px;
padding-left: 0;
}
.list-group-item {
position: relative;
display: block;
padding: 10px 15px;
margin-bottom: -1px;
background-color: #fff;
border: 1px solid #ddd;
}
.list-group-item:first-child {
border-top-right-radius: 2px;
border-top-left-radius: 2px;
}
.list-group-item:last-child {
margin-bottom: 0;
border-bottom-right-radius: 2px;
border-bottom-left-radius: 2px;
}
a.list-group-item,
button.list-group-item {
color: #555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
color: #333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
text-decoration: none;
color: #555;
background-color: #f5f5f5;
}
button.list-group-item {
width: 100%;
text-align: left;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
background-color: #eeeeee;
color: #777777;
cursor: not-allowed;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
color: #777777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
z-index: 2;
color: #fff;
background-color: #337ab7;
border-color: #337ab7;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
color: #c7ddef;
}
.list-group-item-success {
color: #3c763d;
background-color: #dff0d8;
}
a.list-group-item-success,
button.list-group-item-success {
color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
color: #3c763d;
background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
color: #fff;
background-color: #3c763d;
border-color: #3c763d;
}
.list-group-item-info {
color: #31708f;
background-color: #d9edf7;
}
a.list-group-item-info,
button.list-group-item-info {
color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
color: #31708f;
background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
color: #fff;
background-color: #31708f;
border-color: #31708f;
}
.list-group-item-warning {
color: #8a6d3b;
background-color: #fcf8e3;
}
a.list-group-item-warning,
button.list-group-item-warning {
color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
color: #8a6d3b;
background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
color: #fff;
background-color: #8a6d3b;
border-color: #8a6d3b;
}
.list-group-item-danger {
color: #a94442;
background-color: #f2dede;
}
a.list-group-item-danger,
button.list-group-item-danger {
color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
color: #a94442;
background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
color: #fff;
background-color: #a94442;
border-color: #a94442;
}
.list-group-item-heading {
margin-top: 0;
margin-bottom: 5px;
}
.list-group-item-text {
margin-bottom: 0;
line-height: 1.3;
}
.panel {
margin-bottom: 18px;
background-color: #fff;
border: 1px solid transparent;
border-radius: 2px;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
padding: 15px;
}
.panel-heading {
padding: 10px 15px;
border-bottom: 1px solid transparent;
border-top-right-radius: 1px;
border-top-left-radius: 1px;
}
.panel-heading > .dropdown .dropdown-toggle {
color: inherit;
}
.panel-title {
margin-top: 0;
margin-bottom: 0;
font-size: 15px;
color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
color: inherit;
}
.panel-footer {
padding: 10px 15px;
background-color: #f5f5f5;
border-top: 1px solid #ddd;
border-bottom-right-radius: 1px;
border-bottom-left-radius: 1px;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
border-width: 1px 0;
border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
border-top: 0;
border-top-right-radius: 1px;
border-top-left-radius: 1px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
border-bottom: 0;
border-bottom-right-radius: 1px;
border-bottom-left-radius: 1px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
border-top-width: 0;
}
.list-group + .panel-footer {
border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
padding-left: 15px;
padding-right: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
border-top-right-radius: 1px;
border-top-left-radius: 1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
border-top-left-radius: 1px;
border-top-right-radius: 1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
border-top-left-radius: 1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
border-top-right-radius: 1px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
border-bottom-right-radius: 1px;
border-bottom-left-radius: 1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
border-bottom-left-radius: 1px;
border-bottom-right-radius: 1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
border-bottom-left-radius: 1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
border-bottom-right-radius: 1px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
border-bottom: 0;
}
.panel > .table-responsive {
border: 0;
margin-bottom: 0;
}
.panel-group {
margin-bottom: 18px;
}
.panel-group .panel {
margin-bottom: 0;
border-radius: 2px;
}
.panel-group .panel + .panel {
margin-top: 5px;
}
.panel-group .panel-heading {
border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
border-bottom: 1px solid #ddd;
}
.panel-default {
border-color: #ddd;
}
.panel-default > .panel-heading {
color: #333333;
background-color: #f5f5f5;
border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
color: #f5f5f5;
background-color: #333333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #ddd;
}
.panel-primary {
border-color: #337ab7;
}
.panel-primary > .panel-heading {
color: #fff;
background-color: #337ab7;
border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
color: #337ab7;
background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #337ab7;
}
.panel-success {
border-color: #d6e9c6;
}
.panel-success > .panel-heading {
color: #3c763d;
background-color: #dff0d8;
border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
color: #dff0d8;
background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #d6e9c6;
}
.panel-info {
border-color: #bce8f1;
}
.panel-info > .panel-heading {
color: #31708f;
background-color: #d9edf7;
border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
color: #d9edf7;
background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #bce8f1;
}
.panel-warning {
border-color: #faebcc;
}
.panel-warning > .panel-heading {
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
color: #fcf8e3;
background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #faebcc;
}
.panel-danger {
border-color: #ebccd1;
}
.panel-danger > .panel-heading {
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
color: #f2dede;
background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #ebccd1;
}
.embed-responsive {
position: relative;
display: block;
height: 0;
padding: 0;
overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
position: absolute;
top: 0;
left: 0;
bottom: 0;
height: 100%;
width: 100%;
border: 0;
}
.embed-responsive-16by9 {
padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
padding-bottom: 75%;
}
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: #f5f5f5;
border: 1px solid #e3e3e3;
border-radius: 2px;
-webkit-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-lg {
padding: 24px;
border-radius: 3px;
}
.well-sm {
padding: 9px;
border-radius: 1px;
}
.close {
float: right;
font-size: 19.5px;
font-weight: bold;
line-height: 1;
color: #000;
text-shadow: 0 1px 0 #fff;
opacity: 0.2;
filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
opacity: 0.5;
filter: alpha(opacity=50);
}
button.close {
padding: 0;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
}
.modal-open {
overflow: hidden;
}
.modal {
display: none;
overflow: hidden;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1050;
-webkit-overflow-scrolling: touch;
outline: 0;
}
.modal.fade .modal-dialog {
-webkit-transform: translate(0, -25%);
-ms-transform: translate(0, -25%);
-o-transform: translate(0, -25%);
transform: translate(0, -25%);
-webkit-transition: -webkit-transform 0.3s ease-out;
-moz-transition: -moz-transform 0.3s ease-out;
-o-transition: -o-transform 0.3s ease-out;
transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.modal-open .modal {
overflow-x: hidden;
overflow-y: auto;
}
.modal-dialog {
position: relative;
width: auto;
margin: 10px;
}
.modal-content {
position: relative;
background-color: #fff;
border: 1px solid #999;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 3px;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
background-clip: padding-box;
outline: 0;
}
.modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
background-color: #000;
}
.modal-backdrop.fade {
opacity: 0;
filter: alpha(opacity=0);
}
.modal-backdrop.in {
opacity: 0.5;
filter: alpha(opacity=50);
}
.modal-header {
padding: 15px;
border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
margin-top: -2px;
}
.modal-title {
margin: 0;
line-height: 1.42857143;
}
.modal-body {
position: relative;
padding: 15px;
}
.modal-footer {
padding: 15px;
text-align: right;
border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
margin-left: 5px;
margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
margin-left: 0;
}
.modal-scrollbar-measure {
position: absolute;
top: -9999px;
width: 50px;
height: 50px;
overflow: scroll;
}
@media (min-width: 768px) {
.modal-dialog {
width: 600px;
margin: 30px auto;
}
.modal-content {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.modal-sm {
width: 300px;
}
}
@media (min-width: 992px) {
.modal-lg {
width: 900px;
}
}
.tooltip {
position: absolute;
z-index: 1070;
display: block;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: normal;
letter-spacing: normal;
line-break: auto;
line-height: 1.42857143;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
white-space: normal;
word-break: normal;
word-spacing: normal;
word-wrap: normal;
font-size: 12px;
opacity: 0;
filter: alpha(opacity=0);
}
.tooltip.in {
opacity: 0.9;
filter: alpha(opacity=90);
}
.tooltip.top {
margin-top: -3px;
padding: 5px 0;
}
.tooltip.right {
margin-left: 3px;
padding: 0 5px;
}
.tooltip.bottom {
margin-top: 3px;
padding: 5px 0;
}
.tooltip.left {
margin-left: -3px;
padding: 0 5px;
}
.tooltip-inner {
max-width: 200px;
padding: 3px 8px;
color: #fff;
text-align: center;
background-color: #000;
border-radius: 2px;
}
.tooltip-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
.tooltip.top .tooltip-arrow {
bottom: 0;
left: 50%;
margin-left: -5px;
border-width: 5px 5px 0;
border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
bottom: 0;
right: 5px;
margin-bottom: -5px;
border-width: 5px 5px 0;
border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
bottom: 0;
left: 5px;
margin-bottom: -5px;
border-width: 5px 5px 0;
border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
top: 50%;
left: 0;
margin-top: -5px;
border-width: 5px 5px 5px 0;
border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
top: 50%;
right: 0;
margin-top: -5px;
border-width: 5px 0 5px 5px;
border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
top: 0;
left: 50%;
margin-left: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
top: 0;
right: 5px;
margin-top: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
top: 0;
left: 5px;
margin-top: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000;
}
.popover {
position: absolute;
top: 0;
left: 0;
z-index: 1060;
display: none;
max-width: 276px;
padding: 1px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: normal;
letter-spacing: normal;
line-break: auto;
line-height: 1.42857143;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
white-space: normal;
word-break: normal;
word-spacing: normal;
word-wrap: normal;
font-size: 13px;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 3px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
margin-top: -10px;
}
.popover.right {
margin-left: 10px;
}
.popover.bottom {
margin-top: 10px;
}
.popover.left {
margin-left: -10px;
}
.popover-title {
margin: 0;
padding: 8px 14px;
font-size: 13px;
background-color: #f7f7f7;
border-bottom: 1px solid #ebebeb;
border-radius: 2px 2px 0 0;
}
.popover-content {
padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
position: absolute;
display: block;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
.popover > .arrow {
border-width: 11px;
}
.popover > .arrow:after {
border-width: 10px;
content: "";
}
.popover.top > .arrow {
left: 50%;
margin-left: -11px;
border-bottom-width: 0;
border-top-color: #999999;
border-top-color: rgba(0, 0, 0, 0.25);
bottom: -11px;
}
.popover.top > .arrow:after {
content: " ";
bottom: 1px;
margin-left: -10px;
border-bottom-width: 0;
border-top-color: #fff;
}
.popover.right > .arrow {
top: 50%;
left: -11px;
margin-top: -11px;
border-left-width: 0;
border-right-color: #999999;
border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right > .arrow:after {
content: " ";
left: 1px;
bottom: -10px;
border-left-width: 0;
border-right-color: #fff;
}
.popover.bottom > .arrow {
left: 50%;
margin-left: -11px;
border-top-width: 0;
border-bottom-color: #999999;
border-bottom-color: rgba(0, 0, 0, 0.25);
top: -11px;
}
.popover.bottom > .arrow:after {
content: " ";
top: 1px;
margin-left: -10px;
border-top-width: 0;
border-bottom-color: #fff;
}
.popover.left > .arrow {
top: 50%;
right: -11px;
margin-top: -11px;
border-right-width: 0;
border-left-color: #999999;
border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
content: " ";
right: 1px;
border-right-width: 0;
border-left-color: #fff;
bottom: -10px;
}
.carousel {
position: relative;
}
.carousel-inner {
position: relative;
overflow: hidden;
width: 100%;
}
.carousel-inner > .item {
display: none;
position: relative;
-webkit-transition: 0.6s ease-in-out left;
-o-transition: 0.6s ease-in-out left;
transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
.carousel-inner > .item {
-webkit-transition: -webkit-transform 0.6s ease-in-out;
-moz-transition: -moz-transform 0.6s ease-in-out;
-o-transition: -o-transform 0.6s ease-in-out;
transition: transform 0.6s ease-in-out;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000px;
-moz-perspective: 1000px;
perspective: 1000px;
}
.carousel-inner > .item.next,
.carousel-inner > .item.active.right {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
left: 0;
}
.carousel-inner > .item.prev,
.carousel-inner > .item.active.left {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
left: 0;
}
.carousel-inner > .item.next.left,
.carousel-inner > .item.prev.right,
.carousel-inner > .item.active {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
left: 0;
}
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
display: block;
}
.carousel-inner > .active {
left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
position: absolute;
top: 0;
width: 100%;
}
.carousel-inner > .next {
left: 100%;
}
.carousel-inner > .prev {
left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
left: 0;
}
.carousel-inner > .active.left {
left: -100%;
}
.carousel-inner > .active.right {
left: 100%;
}
.carousel-control {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 15%;
opacity: 0.5;
filter: alpha(opacity=50);
font-size: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
background-color: rgba(0, 0, 0, 0);
}
.carousel-control.left {
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.carousel-control.right {
left: auto;
right: 0;
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.carousel-control:hover,
.carousel-control:focus {
outline: 0;
color: #fff;
text-decoration: none;
opacity: 0.9;
filter: alpha(opacity=90);
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
position: absolute;
top: 50%;
margin-top: -10px;
z-index: 5;
display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
left: 50%;
margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
right: 50%;
margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
width: 20px;
height: 20px;
line-height: 1;
font-family: serif;
}
.carousel-control .icon-prev:before {
content: '\2039';
}
.carousel-control .icon-next:before {
content: '\203a';
}
.carousel-indicators {
position: absolute;
bottom: 10px;
left: 50%;
z-index: 15;
width: 60%;
margin-left: -30%;
padding-left: 0;
list-style: none;
text-align: center;
}
.carousel-indicators li {
display: inline-block;
width: 10px;
height: 10px;
margin: 1px;
text-indent: -999px;
border: 1px solid #fff;
border-radius: 10px;
cursor: pointer;
background-color: #000 \9;
background-color: rgba(0, 0, 0, 0);
}
.carousel-indicators .active {
margin: 0;
width: 12px;
height: 12px;
background-color: #fff;
}
.carousel-caption {
position: absolute;
left: 15%;
right: 15%;
bottom: 20px;
z-index: 10;
padding-top: 20px;
padding-bottom: 20px;
color: #fff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
text-shadow: none;
}
@media screen and (min-width: 768px) {
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
width: 30px;
height: 30px;
margin-top: -10px;
font-size: 30px;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
margin-left: -10px;
}
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
margin-right: -10px;
}
.carousel-caption {
left: 20%;
right: 20%;
padding-bottom: 30px;
}
.carousel-indicators {
bottom: 20px;
}
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after,
.item_buttons:before,
.item_buttons:after {
content: " ";
display: table;
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after,
.item_buttons:after {
clear: both;
}
.center-block {
display: block;
margin-left: auto;
margin-right: auto;
}
.pull-right {
float: right !important;
}
.pull-left {
float: left !important;
}
.hide {
display: none !important;
}
.show {
display: block !important;
}
.invisible {
visibility: hidden;
}
.text-hide {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0;
}
.hidden {
display: none !important;
}
.affix {
position: fixed;
}
@-ms-viewport {
width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
display: none !important;
}
@media (max-width: 767px) {
.visible-xs {
display: block !important;
}
table.visible-xs {
display: table !important;
}
tr.visible-xs {
display: table-row !important;
}
th.visible-xs,
td.visible-xs {
display: table-cell !important;
}
}
@media (max-width: 767px) {
.visible-xs-block {
display: block !important;
}
}
@media (max-width: 767px) {
.visible-xs-inline {
display: inline !important;
}
}
@media (max-width: 767px) {
.visible-xs-inline-block {
display: inline-block !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm {
display: block !important;
}
table.visible-sm {
display: table !important;
}
tr.visible-sm {
display: table-row !important;
}
th.visible-sm,
td.visible-sm {
display: table-cell !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-block {
display: block !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-inline {
display: inline !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-inline-block {
display: inline-block !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md {
display: block !important;
}
table.visible-md {
display: table !important;
}
tr.visible-md {
display: table-row !important;
}
th.visible-md,
td.visible-md {
display: table-cell !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-block {
display: block !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-inline {
display: inline !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-inline-block {
display: inline-block !important;
}
}
@media (min-width: 1200px) {
.visible-lg {
display: block !important;
}
table.visible-lg {
display: table !important;
}
tr.visible-lg {
display: table-row !important;
}
th.visible-lg,
td.visible-lg {
display: table-cell !important;
}
}
@media (min-width: 1200px) {
.visible-lg-block {
display: block !important;
}
}
@media (min-width: 1200px) {
.visible-lg-inline {
display: inline !important;
}
}
@media (min-width: 1200px) {
.visible-lg-inline-block {
display: inline-block !important;
}
}
@media (max-width: 767px) {
.hidden-xs {
display: none !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.hidden-sm {
display: none !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.hidden-md {
display: none !important;
}
}
@media (min-width: 1200px) {
.hidden-lg {
display: none !important;
}
}
.visible-print {
display: none !important;
}
@media print {
.visible-print {
display: block !important;
}
table.visible-print {
display: table !important;
}
tr.visible-print {
display: table-row !important;
}
th.visible-print,
td.visible-print {
display: table-cell !important;
}
}
.visible-print-block {
display: none !important;
}
@media print {
.visible-print-block {
display: block !important;
}
}
.visible-print-inline {
display: none !important;
}
@media print {
.visible-print-inline {
display: inline !important;
}
}
.visible-print-inline-block {
display: none !important;
}
@media print {
.visible-print-inline-block {
display: inline-block !important;
}
}
@media print {
.hidden-print {
display: none !important;
}
}
/*!
*
* Font Awesome
*
*/
/*!
* Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/
/* FONT PATH
* -------------------------- */
@font-face {
font-family: 'FontAwesome';
src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.2.0');
src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
font-weight: normal;
font-style: normal;
}
.fa {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
font-size: 1.33333333em;
line-height: 0.75em;
vertical-align: -15%;
}
.fa-2x {
font-size: 2em;
}
.fa-3x {
font-size: 3em;
}
.fa-4x {
font-size: 4em;
}
.fa-5x {
font-size: 5em;
}
.fa-fw {
width: 1.28571429em;
text-align: center;
}
.fa-ul {
padding-left: 0;
margin-left: 2.14285714em;
list-style-type: none;
}
.fa-ul > li {
position: relative;
}
.fa-li {
position: absolute;
left: -2.14285714em;
width: 2.14285714em;
top: 0.14285714em;
text-align: center;
}
.fa-li.fa-lg {
left: -1.85714286em;
}
.fa-border {
padding: .2em .25em .15em;
border: solid 0.08em #eee;
border-radius: .1em;
}
.pull-right {
float: right;
}
.pull-left {
float: left;
}
.fa.pull-left {
margin-right: .3em;
}
.fa.pull-right {
margin-left: .3em;
}
.fa-spin {
-webkit-animation: fa-spin 2s infinite linear;
animation: fa-spin 2s infinite linear;
}
@-webkit-keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
.fa-rotate-90 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}
.fa-rotate-180 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg);
}
.fa-rotate-270 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
-webkit-transform: rotate(270deg);
-ms-transform: rotate(270deg);
transform: rotate(270deg);
}
.fa-flip-horizontal {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
-webkit-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
transform: scale(-1, 1);
}
.fa-flip-vertical {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
-webkit-transform: scale(1, -1);
-ms-transform: scale(1, -1);
transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
filter: none;
}
.fa-stack {
position: relative;
display: inline-block;
width: 2em;
height: 2em;
line-height: 2em;
vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
position: absolute;
left: 0;
width: 100%;
text-align: center;
}
.fa-stack-1x {
line-height: inherit;
}
.fa-stack-2x {
font-size: 2em;
}
.fa-inverse {
color: #fff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-glass:before {
content: "\f000";
}
.fa-music:before {
content: "\f001";
}
.fa-search:before {
content: "\f002";
}
.fa-envelope-o:before {
content: "\f003";
}
.fa-heart:before {
content: "\f004";
}
.fa-star:before {
content: "\f005";
}
.fa-star-o:before {
content: "\f006";
}
.fa-user:before {
content: "\f007";
}
.fa-film:before {
content: "\f008";
}
.fa-th-large:before {
content: "\f009";
}
.fa-th:before {
content: "\f00a";
}
.fa-th-list:before {
content: "\f00b";
}
.fa-check:before {
content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
content: "\f00d";
}
.fa-search-plus:before {
content: "\f00e";
}
.fa-search-minus:before {
content: "\f010";
}
.fa-power-off:before {
content: "\f011";
}
.fa-signal:before {
content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
content: "\f013";
}
.fa-trash-o:before {
content: "\f014";
}
.fa-home:before {
content: "\f015";
}
.fa-file-o:before {
content: "\f016";
}
.fa-clock-o:before {
content: "\f017";
}
.fa-road:before {
content: "\f018";
}
.fa-download:before {
content: "\f019";
}
.fa-arrow-circle-o-down:before {
content: "\f01a";
}
.fa-arrow-circle-o-up:before {
content: "\f01b";
}
.fa-inbox:before {
content: "\f01c";
}
.fa-play-circle-o:before {
content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
content: "\f01e";
}
.fa-refresh:before {
content: "\f021";
}
.fa-list-alt:before {
content: "\f022";
}
.fa-lock:before {
content: "\f023";
}
.fa-flag:before {
content: "\f024";
}
.fa-headphones:before {
content: "\f025";
}
.fa-volume-off:before {
content: "\f026";
}
.fa-volume-down:before {
content: "\f027";
}
.fa-volume-up:before {
content: "\f028";
}
.fa-qrcode:before {
content: "\f029";
}
.fa-barcode:before {
content: "\f02a";
}
.fa-tag:before {
content: "\f02b";
}
.fa-tags:before {
content: "\f02c";
}
.fa-book:before {
content: "\f02d";
}
.fa-bookmark:before {
content: "\f02e";
}
.fa-print:before {
content: "\f02f";
}
.fa-camera:before {
content: "\f030";
}
.fa-font:before {
content: "\f031";
}
.fa-bold:before {
content: "\f032";
}
.fa-italic:before {
content: "\f033";
}
.fa-text-height:before {
content: "\f034";
}
.fa-text-width:before {
content: "\f035";
}
.fa-align-left:before {
content: "\f036";
}
.fa-align-center:before {
content: "\f037";
}
.fa-align-right:before {
content: "\f038";
}
.fa-align-justify:before {
content: "\f039";
}
.fa-list:before {
content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
content: "\f03b";
}
.fa-indent:before {
content: "\f03c";
}
.fa-video-camera:before {
content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
content: "\f03e";
}
.fa-pencil:before {
content: "\f040";
}
.fa-map-marker:before {
content: "\f041";
}
.fa-adjust:before {
content: "\f042";
}
.fa-tint:before {
content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
content: "\f044";
}
.fa-share-square-o:before {
content: "\f045";
}
.fa-check-square-o:before {
content: "\f046";
}
.fa-arrows:before {
content: "\f047";
}
.fa-step-backward:before {
content: "\f048";
}
.fa-fast-backward:before {
content: "\f049";
}
.fa-backward:before {
content: "\f04a";
}
.fa-play:before {
content: "\f04b";
}
.fa-pause:before {
content: "\f04c";
}
.fa-stop:before {
content: "\f04d";
}
.fa-forward:before {
content: "\f04e";
}
.fa-fast-forward:before {
content: "\f050";
}
.fa-step-forward:before {
content: "\f051";
}
.fa-eject:before {
content: "\f052";
}
.fa-chevron-left:before {
content: "\f053";
}
.fa-chevron-right:before {
content: "\f054";
}
.fa-plus-circle:before {
content: "\f055";
}
.fa-minus-circle:before {
content: "\f056";
}
.fa-times-circle:before {
content: "\f057";
}
.fa-check-circle:before {
content: "\f058";
}
.fa-question-circle:before {
content: "\f059";
}
.fa-info-circle:before {
content: "\f05a";
}
.fa-crosshairs:before {
content: "\f05b";
}
.fa-times-circle-o:before {
content: "\f05c";
}
.fa-check-circle-o:before {
content: "\f05d";
}
.fa-ban:before {
content: "\f05e";
}
.fa-arrow-left:before {
content: "\f060";
}
.fa-arrow-right:before {
content: "\f061";
}
.fa-arrow-up:before {
content: "\f062";
}
.fa-arrow-down:before {
content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
content: "\f064";
}
.fa-expand:before {
content: "\f065";
}
.fa-compress:before {
content: "\f066";
}
.fa-plus:before {
content: "\f067";
}
.fa-minus:before {
content: "\f068";
}
.fa-asterisk:before {
content: "\f069";
}
.fa-exclamation-circle:before {
content: "\f06a";
}
.fa-gift:before {
content: "\f06b";
}
.fa-leaf:before {
content: "\f06c";
}
.fa-fire:before {
content: "\f06d";
}
.fa-eye:before {
content: "\f06e";
}
.fa-eye-slash:before {
content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
content: "\f071";
}
.fa-plane:before {
content: "\f072";
}
.fa-calendar:before {
content: "\f073";
}
.fa-random:before {
content: "\f074";
}
.fa-comment:before {
content: "\f075";
}
.fa-magnet:before {
content: "\f076";
}
.fa-chevron-up:before {
content: "\f077";
}
.fa-chevron-down:before {
content: "\f078";
}
.fa-retweet:before {
content: "\f079";
}
.fa-shopping-cart:before {
content: "\f07a";
}
.fa-folder:before {
content: "\f07b";
}
.fa-folder-open:before {
content: "\f07c";
}
.fa-arrows-v:before {
content: "\f07d";
}
.fa-arrows-h:before {
content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
content: "\f080";
}
.fa-twitter-square:before {
content: "\f081";
}
.fa-facebook-square:before {
content: "\f082";
}
.fa-camera-retro:before {
content: "\f083";
}
.fa-key:before {
content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
content: "\f085";
}
.fa-comments:before {
content: "\f086";
}
.fa-thumbs-o-up:before {
content: "\f087";
}
.fa-thumbs-o-down:before {
content: "\f088";
}
.fa-star-half:before {
content: "\f089";
}
.fa-heart-o:before {
content: "\f08a";
}
.fa-sign-out:before {
content: "\f08b";
}
.fa-linkedin-square:before {
content: "\f08c";
}
.fa-thumb-tack:before {
content: "\f08d";
}
.fa-external-link:before {
content: "\f08e";
}
.fa-sign-in:before {
content: "\f090";
}
.fa-trophy:before {
content: "\f091";
}
.fa-github-square:before {
content: "\f092";
}
.fa-upload:before {
content: "\f093";
}
.fa-lemon-o:before {
content: "\f094";
}
.fa-phone:before {
content: "\f095";
}
.fa-square-o:before {
content: "\f096";
}
.fa-bookmark-o:before {
content: "\f097";
}
.fa-phone-square:before {
content: "\f098";
}
.fa-twitter:before {
content: "\f099";
}
.fa-facebook:before {
content: "\f09a";
}
.fa-github:before {
content: "\f09b";
}
.fa-unlock:before {
content: "\f09c";
}
.fa-credit-card:before {
content: "\f09d";
}
.fa-rss:before {
content: "\f09e";
}
.fa-hdd-o:before {
content: "\f0a0";
}
.fa-bullhorn:before {
content: "\f0a1";
}
.fa-bell:before {
content: "\f0f3";
}
.fa-certificate:before {
content: "\f0a3";
}
.fa-hand-o-right:before {
content: "\f0a4";
}
.fa-hand-o-left:before {
content: "\f0a5";
}
.fa-hand-o-up:before {
content: "\f0a6";
}
.fa-hand-o-down:before {
content: "\f0a7";
}
.fa-arrow-circle-left:before {
content: "\f0a8";
}
.fa-arrow-circle-right:before {
content: "\f0a9";
}
.fa-arrow-circle-up:before {
content: "\f0aa";
}
.fa-arrow-circle-down:before {
content: "\f0ab";
}
.fa-globe:before {
content: "\f0ac";
}
.fa-wrench:before {
content: "\f0ad";
}
.fa-tasks:before {
content: "\f0ae";
}
.fa-filter:before {
content: "\f0b0";
}
.fa-briefcase:before {
content: "\f0b1";
}
.fa-arrows-alt:before {
content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
content: "\f0c1";
}
.fa-cloud:before {
content: "\f0c2";
}
.fa-flask:before {
content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
content: "\f0c5";
}
.fa-paperclip:before {
content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
content: "\f0c7";
}
.fa-square:before {
content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
content: "\f0c9";
}
.fa-list-ul:before {
content: "\f0ca";
}
.fa-list-ol:before {
content: "\f0cb";
}
.fa-strikethrough:before {
content: "\f0cc";
}
.fa-underline:before {
content: "\f0cd";
}
.fa-table:before {
content: "\f0ce";
}
.fa-magic:before {
content: "\f0d0";
}
.fa-truck:before {
content: "\f0d1";
}
.fa-pinterest:before {
content: "\f0d2";
}
.fa-pinterest-square:before {
content: "\f0d3";
}
.fa-google-plus-square:before {
content: "\f0d4";
}
.fa-google-plus:before {
content: "\f0d5";
}
.fa-money:before {
content: "\f0d6";
}
.fa-caret-down:before {
content: "\f0d7";
}
.fa-caret-up:before {
content: "\f0d8";
}
.fa-caret-left:before {
content: "\f0d9";
}
.fa-caret-right:before {
content: "\f0da";
}
.fa-columns:before {
content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
content: "\f0de";
}
.fa-envelope:before {
content: "\f0e0";
}
.fa-linkedin:before {
content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
content: "\f0e4";
}
.fa-comment-o:before {
content: "\f0e5";
}
.fa-comments-o:before {
content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
content: "\f0e7";
}
.fa-sitemap:before {
content: "\f0e8";
}
.fa-umbrella:before {
content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
content: "\f0ea";
}
.fa-lightbulb-o:before {
content: "\f0eb";
}
.fa-exchange:before {
content: "\f0ec";
}
.fa-cloud-download:before {
content: "\f0ed";
}
.fa-cloud-upload:before {
content: "\f0ee";
}
.fa-user-md:before {
content: "\f0f0";
}
.fa-stethoscope:before {
content: "\f0f1";
}
.fa-suitcase:before {
content: "\f0f2";
}
.fa-bell-o:before {
content: "\f0a2";
}
.fa-coffee:before {
content: "\f0f4";
}
.fa-cutlery:before {
content: "\f0f5";
}
.fa-file-text-o:before {
content: "\f0f6";
}
.fa-building-o:before {
content: "\f0f7";
}
.fa-hospital-o:before {
content: "\f0f8";
}
.fa-ambulance:before {
content: "\f0f9";
}
.fa-medkit:before {
content: "\f0fa";
}
.fa-fighter-jet:before {
content: "\f0fb";
}
.fa-beer:before {
content: "\f0fc";
}
.fa-h-square:before {
content: "\f0fd";
}
.fa-plus-square:before {
content: "\f0fe";
}
.fa-angle-double-left:before {
content: "\f100";
}
.fa-angle-double-right:before {
content: "\f101";
}
.fa-angle-double-up:before {
content: "\f102";
}
.fa-angle-double-down:before {
content: "\f103";
}
.fa-angle-left:before {
content: "\f104";
}
.fa-angle-right:before {
content: "\f105";
}
.fa-angle-up:before {
content: "\f106";
}
.fa-angle-down:before {
content: "\f107";
}
.fa-desktop:before {
content: "\f108";
}
.fa-laptop:before {
content: "\f109";
}
.fa-tablet:before {
content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
content: "\f10b";
}
.fa-circle-o:before {
content: "\f10c";
}
.fa-quote-left:before {
content: "\f10d";
}
.fa-quote-right:before {
content: "\f10e";
}
.fa-spinner:before {
content: "\f110";
}
.fa-circle:before {
content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
content: "\f112";
}
.fa-github-alt:before {
content: "\f113";
}
.fa-folder-o:before {
content: "\f114";
}
.fa-folder-open-o:before {
content: "\f115";
}
.fa-smile-o:before {
content: "\f118";
}
.fa-frown-o:before {
content: "\f119";
}
.fa-meh-o:before {
content: "\f11a";
}
.fa-gamepad:before {
content: "\f11b";
}
.fa-keyboard-o:before {
content: "\f11c";
}
.fa-flag-o:before {
content: "\f11d";
}
.fa-flag-checkered:before {
content: "\f11e";
}
.fa-terminal:before {
content: "\f120";
}
.fa-code:before {
content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
content: "\f123";
}
.fa-location-arrow:before {
content: "\f124";
}
.fa-crop:before {
content: "\f125";
}
.fa-code-fork:before {
content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
content: "\f127";
}
.fa-question:before {
content: "\f128";
}
.fa-info:before {
content: "\f129";
}
.fa-exclamation:before {
content: "\f12a";
}
.fa-superscript:before {
content: "\f12b";
}
.fa-subscript:before {
content: "\f12c";
}
.fa-eraser:before {
content: "\f12d";
}
.fa-puzzle-piece:before {
content: "\f12e";
}
.fa-microphone:before {
content: "\f130";
}
.fa-microphone-slash:before {
content: "\f131";
}
.fa-shield:before {
content: "\f132";
}
.fa-calendar-o:before {
content: "\f133";
}
.fa-fire-extinguisher:before {
content: "\f134";
}
.fa-rocket:before {
content: "\f135";
}
.fa-maxcdn:before {
content: "\f136";
}
.fa-chevron-circle-left:before {
content: "\f137";
}
.fa-chevron-circle-right:before {
content: "\f138";
}
.fa-chevron-circle-up:before {
content: "\f139";
}
.fa-chevron-circle-down:before {
content: "\f13a";
}
.fa-html5:before {
content: "\f13b";
}
.fa-css3:before {
content: "\f13c";
}
.fa-anchor:before {
content: "\f13d";
}
.fa-unlock-alt:before {
content: "\f13e";
}
.fa-bullseye:before {
content: "\f140";
}
.fa-ellipsis-h:before {
content: "\f141";
}
.fa-ellipsis-v:before {
content: "\f142";
}
.fa-rss-square:before {
content: "\f143";
}
.fa-play-circle:before {
content: "\f144";
}
.fa-ticket:before {
content: "\f145";
}
.fa-minus-square:before {
content: "\f146";
}
.fa-minus-square-o:before {
content: "\f147";
}
.fa-level-up:before {
content: "\f148";
}
.fa-level-down:before {
content: "\f149";
}
.fa-check-square:before {
content: "\f14a";
}
.fa-pencil-square:before {
content: "\f14b";
}
.fa-external-link-square:before {
content: "\f14c";
}
.fa-share-square:before {
content: "\f14d";
}
.fa-compass:before {
content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
content: "\f153";
}
.fa-gbp:before {
content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
content: "\f158";
}
.fa-won:before,
.fa-krw:before {
content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
content: "\f15a";
}
.fa-file:before {
content: "\f15b";
}
.fa-file-text:before {
content: "\f15c";
}
.fa-sort-alpha-asc:before {
content: "\f15d";
}
.fa-sort-alpha-desc:before {
content: "\f15e";
}
.fa-sort-amount-asc:before {
content: "\f160";
}
.fa-sort-amount-desc:before {
content: "\f161";
}
.fa-sort-numeric-asc:before {
content: "\f162";
}
.fa-sort-numeric-desc:before {
content: "\f163";
}
.fa-thumbs-up:before {
content: "\f164";
}
.fa-thumbs-down:before {
content: "\f165";
}
.fa-youtube-square:before {
content: "\f166";
}
.fa-youtube:before {
content: "\f167";
}
.fa-xing:before {
content: "\f168";
}
.fa-xing-square:before {
content: "\f169";
}
.fa-youtube-play:before {
content: "\f16a";
}
.fa-dropbox:before {
content: "\f16b";
}
.fa-stack-overflow:before {
content: "\f16c";
}
.fa-instagram:before {
content: "\f16d";
}
.fa-flickr:before {
content: "\f16e";
}
.fa-adn:before {
content: "\f170";
}
.fa-bitbucket:before {
content: "\f171";
}
.fa-bitbucket-square:before {
content: "\f172";
}
.fa-tumblr:before {
content: "\f173";
}
.fa-tumblr-square:before {
content: "\f174";
}
.fa-long-arrow-down:before {
content: "\f175";
}
.fa-long-arrow-up:before {
content: "\f176";
}
.fa-long-arrow-left:before {
content: "\f177";
}
.fa-long-arrow-right:before {
content: "\f178";
}
.fa-apple:before {
content: "\f179";
}
.fa-windows:before {
content: "\f17a";
}
.fa-android:before {
content: "\f17b";
}
.fa-linux:before {
content: "\f17c";
}
.fa-dribbble:before {
content: "\f17d";
}
.fa-skype:before {
content: "\f17e";
}
.fa-foursquare:before {
content: "\f180";
}
.fa-trello:before {
content: "\f181";
}
.fa-female:before {
content: "\f182";
}
.fa-male:before {
content: "\f183";
}
.fa-gittip:before {
content: "\f184";
}
.fa-sun-o:before {
content: "\f185";
}
.fa-moon-o:before {
content: "\f186";
}
.fa-archive:before {
content: "\f187";
}
.fa-bug:before {
content: "\f188";
}
.fa-vk:before {
content: "\f189";
}
.fa-weibo:before {
content: "\f18a";
}
.fa-renren:before {
content: "\f18b";
}
.fa-pagelines:before {
content: "\f18c";
}
.fa-stack-exchange:before {
content: "\f18d";
}
.fa-arrow-circle-o-right:before {
content: "\f18e";
}
.fa-arrow-circle-o-left:before {
content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
content: "\f191";
}
.fa-dot-circle-o:before {
content: "\f192";
}
.fa-wheelchair:before {
content: "\f193";
}
.fa-vimeo-square:before {
content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
content: "\f195";
}
.fa-plus-square-o:before {
content: "\f196";
}
.fa-space-shuttle:before {
content: "\f197";
}
.fa-slack:before {
content: "\f198";
}
.fa-envelope-square:before {
content: "\f199";
}
.fa-wordpress:before {
content: "\f19a";
}
.fa-openid:before {
content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
content: "\f19d";
}
.fa-yahoo:before {
content: "\f19e";
}
.fa-google:before {
content: "\f1a0";
}
.fa-reddit:before {
content: "\f1a1";
}
.fa-reddit-square:before {
content: "\f1a2";
}
.fa-stumbleupon-circle:before {
content: "\f1a3";
}
.fa-stumbleupon:before {
content: "\f1a4";
}
.fa-delicious:before {
content: "\f1a5";
}
.fa-digg:before {
content: "\f1a6";
}
.fa-pied-piper:before {
content: "\f1a7";
}
.fa-pied-piper-alt:before {
content: "\f1a8";
}
.fa-drupal:before {
content: "\f1a9";
}
.fa-joomla:before {
content: "\f1aa";
}
.fa-language:before {
content: "\f1ab";
}
.fa-fax:before {
content: "\f1ac";
}
.fa-building:before {
content: "\f1ad";
}
.fa-child:before {
content: "\f1ae";
}
.fa-paw:before {
content: "\f1b0";
}
.fa-spoon:before {
content: "\f1b1";
}
.fa-cube:before {
content: "\f1b2";
}
.fa-cubes:before {
content: "\f1b3";
}
.fa-behance:before {
content: "\f1b4";
}
.fa-behance-square:before {
content: "\f1b5";
}
.fa-steam:before {
content: "\f1b6";
}
.fa-steam-square:before {
content: "\f1b7";
}
.fa-recycle:before {
content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
content: "\f1ba";
}
.fa-tree:before {
content: "\f1bb";
}
.fa-spotify:before {
content: "\f1bc";
}
.fa-deviantart:before {
content: "\f1bd";
}
.fa-soundcloud:before {
content: "\f1be";
}
.fa-database:before {
content: "\f1c0";
}
.fa-file-pdf-o:before {
content: "\f1c1";
}
.fa-file-word-o:before {
content: "\f1c2";
}
.fa-file-excel-o:before {
content: "\f1c3";
}
.fa-file-powerpoint-o:before {
content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
content: "\f1c8";
}
.fa-file-code-o:before {
content: "\f1c9";
}
.fa-vine:before {
content: "\f1ca";
}
.fa-codepen:before {
content: "\f1cb";
}
.fa-jsfiddle:before {
content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
content: "\f1cd";
}
.fa-circle-o-notch:before {
content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
content: "\f1d1";
}
.fa-git-square:before {
content: "\f1d2";
}
.fa-git:before {
content: "\f1d3";
}
.fa-hacker-news:before {
content: "\f1d4";
}
.fa-tencent-weibo:before {
content: "\f1d5";
}
.fa-qq:before {
content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
content: "\f1d9";
}
.fa-history:before {
content: "\f1da";
}
.fa-circle-thin:before {
content: "\f1db";
}
.fa-header:before {
content: "\f1dc";
}
.fa-paragraph:before {
content: "\f1dd";
}
.fa-sliders:before {
content: "\f1de";
}
.fa-share-alt:before {
content: "\f1e0";
}
.fa-share-alt-square:before {
content: "\f1e1";
}
.fa-bomb:before {
content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
content: "\f1e3";
}
.fa-tty:before {
content: "\f1e4";
}
.fa-binoculars:before {
content: "\f1e5";
}
.fa-plug:before {
content: "\f1e6";
}
.fa-slideshare:before {
content: "\f1e7";
}
.fa-twitch:before {
content: "\f1e8";
}
.fa-yelp:before {
content: "\f1e9";
}
.fa-newspaper-o:before {
content: "\f1ea";
}
.fa-wifi:before {
content: "\f1eb";
}
.fa-calculator:before {
content: "\f1ec";
}
.fa-paypal:before {
content: "\f1ed";
}
.fa-google-wallet:before {
content: "\f1ee";
}
.fa-cc-visa:before {
content: "\f1f0";
}
.fa-cc-mastercard:before {
content: "\f1f1";
}
.fa-cc-discover:before {
content: "\f1f2";
}
.fa-cc-amex:before {
content: "\f1f3";
}
.fa-cc-paypal:before {
content: "\f1f4";
}
.fa-cc-stripe:before {
content: "\f1f5";
}
.fa-bell-slash:before {
content: "\f1f6";
}
.fa-bell-slash-o:before {
content: "\f1f7";
}
.fa-trash:before {
content: "\f1f8";
}
.fa-copyright:before {
content: "\f1f9";
}
.fa-at:before {
content: "\f1fa";
}
.fa-eyedropper:before {
content: "\f1fb";
}
.fa-paint-brush:before {
content: "\f1fc";
}
.fa-birthday-cake:before {
content: "\f1fd";
}
.fa-area-chart:before {
content: "\f1fe";
}
.fa-pie-chart:before {
content: "\f200";
}
.fa-line-chart:before {
content: "\f201";
}
.fa-lastfm:before {
content: "\f202";
}
.fa-lastfm-square:before {
content: "\f203";
}
.fa-toggle-off:before {
content: "\f204";
}
.fa-toggle-on:before {
content: "\f205";
}
.fa-bicycle:before {
content: "\f206";
}
.fa-bus:before {
content: "\f207";
}
.fa-ioxhost:before {
content: "\f208";
}
.fa-angellist:before {
content: "\f209";
}
.fa-cc:before {
content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
content: "\f20b";
}
.fa-meanpath:before {
content: "\f20c";
}
/*!
*
* IPython base
*
*/
.modal.fade .modal-dialog {
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
code {
color: #000;
}
pre {
font-size: inherit;
line-height: inherit;
}
label {
font-weight: normal;
}
/* Make the page background atleast 100% the height of the view port */
/* Make the page itself atleast 70% the height of the view port */
.border-box-sizing {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.corner-all {
border-radius: 2px;
}
.no-padding {
padding: 0px;
}
/* Flexible box model classes */
/* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
/* This file is a compatability layer. It allows the usage of flexible box
model layouts accross multiple browsers, including older browsers. The newest,
universal implementation of the flexible box model is used when available (see
`Modern browsers` comments below). Browsers that are known to implement this
new spec completely include:
Firefox 28.0+
Chrome 29.0+
Internet Explorer 11+
Opera 17.0+
Browsers not listed, including Safari, are supported via the styling under the
`Old browsers` comments below.
*/
.hbox {
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-align: stretch;
display: box;
box-orient: horizontal;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: row;
align-items: stretch;
}
.hbox > * {
/* Old browsers */
-webkit-box-flex: 0;
-moz-box-flex: 0;
box-flex: 0;
/* Modern browsers */
flex: none;
}
.vbox {
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: vertical;
-moz-box-align: stretch;
display: box;
box-orient: vertical;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: column;
align-items: stretch;
}
.vbox > * {
/* Old browsers */
-webkit-box-flex: 0;
-moz-box-flex: 0;
box-flex: 0;
/* Modern browsers */
flex: none;
}
.hbox.reverse,
.vbox.reverse,
.reverse {
/* Old browsers */
-webkit-box-direction: reverse;
-moz-box-direction: reverse;
box-direction: reverse;
/* Modern browsers */
flex-direction: row-reverse;
}
.hbox.box-flex0,
.vbox.box-flex0,
.box-flex0 {
/* Old browsers */
-webkit-box-flex: 0;
-moz-box-flex: 0;
box-flex: 0;
/* Modern browsers */
flex: none;
width: auto;
}
.hbox.box-flex1,
.vbox.box-flex1,
.box-flex1 {
/* Old browsers */
-webkit-box-flex: 1;
-moz-box-flex: 1;
box-flex: 1;
/* Modern browsers */
flex: 1;
}
.hbox.box-flex,
.vbox.box-flex,
.box-flex {
/* Old browsers */
/* Old browsers */
-webkit-box-flex: 1;
-moz-box-flex: 1;
box-flex: 1;
/* Modern browsers */
flex: 1;
}
.hbox.box-flex2,
.vbox.box-flex2,
.box-flex2 {
/* Old browsers */
-webkit-box-flex: 2;
-moz-box-flex: 2;
box-flex: 2;
/* Modern browsers */
flex: 2;
}
.box-group1 {
/* Deprecated */
-webkit-box-flex-group: 1;
-moz-box-flex-group: 1;
box-flex-group: 1;
}
.box-group2 {
/* Deprecated */
-webkit-box-flex-group: 2;
-moz-box-flex-group: 2;
box-flex-group: 2;
}
.hbox.start,
.vbox.start,
.start {
/* Old browsers */
-webkit-box-pack: start;
-moz-box-pack: start;
box-pack: start;
/* Modern browsers */
justify-content: flex-start;
}
.hbox.end,
.vbox.end,
.end {
/* Old browsers */
-webkit-box-pack: end;
-moz-box-pack: end;
box-pack: end;
/* Modern browsers */
justify-content: flex-end;
}
.hbox.center,
.vbox.center,
.center {
/* Old browsers */
-webkit-box-pack: center;
-moz-box-pack: center;
box-pack: center;
/* Modern browsers */
justify-content: center;
}
.hbox.baseline,
.vbox.baseline,
.baseline {
/* Old browsers */
-webkit-box-pack: baseline;
-moz-box-pack: baseline;
box-pack: baseline;
/* Modern browsers */
justify-content: baseline;
}
.hbox.stretch,
.vbox.stretch,
.stretch {
/* Old browsers */
-webkit-box-pack: stretch;
-moz-box-pack: stretch;
box-pack: stretch;
/* Modern browsers */
justify-content: stretch;
}
.hbox.align-start,
.vbox.align-start,
.align-start {
/* Old browsers */
-webkit-box-align: start;
-moz-box-align: start;
box-align: start;
/* Modern browsers */
align-items: flex-start;
}
.hbox.align-end,
.vbox.align-end,
.align-end {
/* Old browsers */
-webkit-box-align: end;
-moz-box-align: end;
box-align: end;
/* Modern browsers */
align-items: flex-end;
}
.hbox.align-center,
.vbox.align-center,
.align-center {
/* Old browsers */
-webkit-box-align: center;
-moz-box-align: center;
box-align: center;
/* Modern browsers */
align-items: center;
}
.hbox.align-baseline,
.vbox.align-baseline,
.align-baseline {
/* Old browsers */
-webkit-box-align: baseline;
-moz-box-align: baseline;
box-align: baseline;
/* Modern browsers */
align-items: baseline;
}
.hbox.align-stretch,
.vbox.align-stretch,
.align-stretch {
/* Old browsers */
-webkit-box-align: stretch;
-moz-box-align: stretch;
box-align: stretch;
/* Modern browsers */
align-items: stretch;
}
div.error {
margin: 2em;
text-align: center;
}
div.error > h1 {
font-size: 500%;
line-height: normal;
}
div.error > p {
font-size: 200%;
line-height: normal;
}
div.traceback-wrapper {
text-align: left;
max-width: 800px;
margin: auto;
}
/**
* Primary styles
*
* Author: Jupyter Development Team
*/
body {
background-color: #fff;
/* This makes sure that the body covers the entire window and needs to
be in a different element than the display: box in wrapper below */
position: absolute;
left: 0px;
right: 0px;
top: 0px;
bottom: 0px;
overflow: visible;
}
body > #header {
/* Initially hidden to prevent FLOUC */
display: none;
background-color: #fff;
/* Display over codemirror */
position: relative;
z-index: 100;
}
body > #header #header-container {
padding-bottom: 5px;
padding-top: 5px;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
body > #header .header-bar {
width: 100%;
height: 1px;
background: #e7e7e7;
margin-bottom: -1px;
}
@media print {
body > #header {
display: none !important;
}
}
#header-spacer {
width: 100%;
visibility: hidden;
}
@media print {
#header-spacer {
display: none;
}
}
#ipython_notebook {
padding-left: 0px;
padding-top: 1px;
padding-bottom: 1px;
}
@media (max-width: 991px) {
#ipython_notebook {
margin-left: 10px;
}
}
[dir="rtl"] #ipython_notebook {
float: right !important;
}
#noscript {
width: auto;
padding-top: 16px;
padding-bottom: 16px;
text-align: center;
font-size: 22px;
color: red;
font-weight: bold;
}
#ipython_notebook img {
height: 28px;
}
#site {
width: 100%;
display: none;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
overflow: auto;
}
@media print {
#site {
height: auto !important;
}
}
/* Smaller buttons */
.ui-button .ui-button-text {
padding: 0.2em 0.8em;
font-size: 77%;
}
input.ui-button {
padding: 0.3em 0.9em;
}
span#login_widget {
float: right;
}
span#login_widget > .button,
#logout {
color: #333;
background-color: #fff;
border-color: #ccc;
}
span#login_widget > .button:focus,
#logout:focus,
span#login_widget > .button.focus,
#logout.focus {
color: #333;
background-color: #e6e6e6;
border-color: #8c8c8c;
}
span#login_widget > .button:hover,
#logout:hover {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
span#login_widget > .button:active,
#logout:active,
span#login_widget > .button.active,
#logout.active,
.open > .dropdown-togglespan#login_widget > .button,
.open > .dropdown-toggle#logout {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
span#login_widget > .button:active:hover,
#logout:active:hover,
span#login_widget > .button.active:hover,
#logout.active:hover,
.open > .dropdown-togglespan#login_widget > .button:hover,
.open > .dropdown-toggle#logout:hover,
span#login_widget > .button:active:focus,
#logout:active:focus,
span#login_widget > .button.active:focus,
#logout.active:focus,
.open > .dropdown-togglespan#login_widget > .button:focus,
.open > .dropdown-toggle#logout:focus,
span#login_widget > .button:active.focus,
#logout:active.focus,
span#login_widget > .button.active.focus,
#logout.active.focus,
.open > .dropdown-togglespan#login_widget > .button.focus,
.open > .dropdown-toggle#logout.focus {
color: #333;
background-color: #d4d4d4;
border-color: #8c8c8c;
}
span#login_widget > .button:active,
#logout:active,
span#login_widget > .button.active,
#logout.active,
.open > .dropdown-togglespan#login_widget > .button,
.open > .dropdown-toggle#logout {
background-image: none;
}
span#login_widget > .button.disabled:hover,
#logout.disabled:hover,
span#login_widget > .button[disabled]:hover,
#logout[disabled]:hover,
fieldset[disabled] span#login_widget > .button:hover,
fieldset[disabled] #logout:hover,
span#login_widget > .button.disabled:focus,
#logout.disabled:focus,
span#login_widget > .button[disabled]:focus,
#logout[disabled]:focus,
fieldset[disabled] span#login_widget > .button:focus,
fieldset[disabled] #logout:focus,
span#login_widget > .button.disabled.focus,
#logout.disabled.focus,
span#login_widget > .button[disabled].focus,
#logout[disabled].focus,
fieldset[disabled] span#login_widget > .button.focus,
fieldset[disabled] #logout.focus {
background-color: #fff;
border-color: #ccc;
}
span#login_widget > .button .badge,
#logout .badge {
color: #fff;
background-color: #333;
}
.nav-header {
text-transform: none;
}
#header > span {
margin-top: 10px;
}
.modal_stretch .modal-dialog {
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: vertical;
-moz-box-align: stretch;
display: box;
box-orient: vertical;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: column;
align-items: stretch;
min-height: 80vh;
}
.modal_stretch .modal-dialog .modal-body {
max-height: calc(100vh - 200px);
overflow: auto;
flex: 1;
}
@media (min-width: 768px) {
.modal .modal-dialog {
width: 700px;
}
}
@media (min-width: 768px) {
select.form-control {
margin-left: 12px;
margin-right: 12px;
}
}
/*!
*
* IPython auth
*
*/
.center-nav {
display: inline-block;
margin-bottom: -4px;
}
/*!
*
* IPython tree view
*
*/
/* We need an invisible input field on top of the sentense*/
/* "Drag file onto the list ..." */
.alternate_upload {
background-color: none;
display: inline;
}
.alternate_upload.form {
padding: 0;
margin: 0;
}
.alternate_upload input.fileinput {
text-align: center;
vertical-align: middle;
display: inline;
opacity: 0;
z-index: 2;
width: 12ex;
margin-right: -12ex;
}
.alternate_upload .btn-upload {
height: 22px;
}
/**
* Primary styles
*
* Author: Jupyter Development Team
*/
[dir="rtl"] #tabs li {
float: right;
}
ul#tabs {
margin-bottom: 4px;
}
[dir="rtl"] ul#tabs {
margin-right: 0px;
}
ul#tabs a {
padding-top: 6px;
padding-bottom: 4px;
}
ul.breadcrumb a:focus,
ul.breadcrumb a:hover {
text-decoration: none;
}
ul.breadcrumb i.icon-home {
font-size: 16px;
margin-right: 4px;
}
ul.breadcrumb span {
color: #5e5e5e;
}
.list_toolbar {
padding: 4px 0 4px 0;
vertical-align: middle;
}
.list_toolbar .tree-buttons {
padding-top: 1px;
}
[dir="rtl"] .list_toolbar .tree-buttons {
float: left !important;
}
[dir="rtl"] .list_toolbar .pull-right {
padding-top: 1px;
float: left !important;
}
[dir="rtl"] .list_toolbar .pull-left {
float: right !important;
}
.dynamic-buttons {
padding-top: 3px;
display: inline-block;
}
.list_toolbar [class*="span"] {
min-height: 24px;
}
.list_header {
font-weight: bold;
background-color: #EEE;
}
.list_placeholder {
font-weight: bold;
padding-top: 4px;
padding-bottom: 4px;
padding-left: 7px;
padding-right: 7px;
}
.list_container {
margin-top: 4px;
margin-bottom: 20px;
border: 1px solid #ddd;
border-radius: 2px;
}
.list_container > div {
border-bottom: 1px solid #ddd;
}
.list_container > div:hover .list-item {
background-color: red;
}
.list_container > div:last-child {
border: none;
}
.list_item:hover .list_item {
background-color: #ddd;
}
.list_item a {
text-decoration: none;
}
.list_item:hover {
background-color: #fafafa;
}
.list_header > div,
.list_item > div {
padding-top: 4px;
padding-bottom: 4px;
padding-left: 7px;
padding-right: 7px;
line-height: 22px;
}
.list_header > div input,
.list_item > div input {
margin-right: 7px;
margin-left: 14px;
vertical-align: baseline;
line-height: 22px;
position: relative;
top: -1px;
}
.list_header > div .item_link,
.list_item > div .item_link {
margin-left: -1px;
vertical-align: baseline;
line-height: 22px;
}
.new-file input[type=checkbox] {
visibility: hidden;
}
.item_name {
line-height: 22px;
height: 24px;
}
.item_icon {
font-size: 14px;
color: #5e5e5e;
margin-right: 7px;
margin-left: 7px;
line-height: 22px;
vertical-align: baseline;
}
.item_buttons {
line-height: 1em;
margin-left: -5px;
}
.item_buttons .btn,
.item_buttons .btn-group,
.item_buttons .input-group {
float: left;
}
.item_buttons > .btn,
.item_buttons > .btn-group,
.item_buttons > .input-group {
margin-left: 5px;
}
.item_buttons .btn {
min-width: 13ex;
}
.item_buttons .running-indicator {
padding-top: 4px;
color: #5cb85c;
}
.item_buttons .kernel-name {
padding-top: 4px;
color: #5bc0de;
margin-right: 7px;
float: left;
}
.toolbar_info {
height: 24px;
line-height: 24px;
}
.list_item input:not([type=checkbox]) {
padding-top: 3px;
padding-bottom: 3px;
height: 22px;
line-height: 14px;
margin: 0px;
}
.highlight_text {
color: blue;
}
#project_name {
display: inline-block;
padding-left: 7px;
margin-left: -2px;
}
#project_name > .breadcrumb {
padding: 0px;
margin-bottom: 0px;
background-color: transparent;
font-weight: bold;
}
#tree-selector {
padding-right: 0px;
}
[dir="rtl"] #tree-selector a {
float: right;
}
#button-select-all {
min-width: 50px;
}
#select-all {
margin-left: 7px;
margin-right: 2px;
}
.menu_icon {
margin-right: 2px;
}
.tab-content .row {
margin-left: 0px;
margin-right: 0px;
}
.folder_icon:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f114";
}
.folder_icon:before.pull-left {
margin-right: .3em;
}
.folder_icon:before.pull-right {
margin-left: .3em;
}
.notebook_icon:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f02d";
position: relative;
top: -1px;
}
.notebook_icon:before.pull-left {
margin-right: .3em;
}
.notebook_icon:before.pull-right {
margin-left: .3em;
}
.running_notebook_icon:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f02d";
position: relative;
top: -1px;
color: #5cb85c;
}
.running_notebook_icon:before.pull-left {
margin-right: .3em;
}
.running_notebook_icon:before.pull-right {
margin-left: .3em;
}
.file_icon:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f016";
position: relative;
top: -2px;
}
.file_icon:before.pull-left {
margin-right: .3em;
}
.file_icon:before.pull-right {
margin-left: .3em;
}
#notebook_toolbar .pull-right {
padding-top: 0px;
margin-right: -1px;
}
ul#new-menu {
left: auto;
right: 0;
}
[dir="rtl"] #new-menu {
text-align: right;
}
.kernel-menu-icon {
padding-right: 12px;
width: 24px;
content: "\f096";
}
.kernel-menu-icon:before {
content: "\f096";
}
.kernel-menu-icon-current:before {
content: "\f00c";
}
#tab_content {
padding-top: 20px;
}
#running .panel-group .panel {
margin-top: 3px;
margin-bottom: 1em;
}
#running .panel-group .panel .panel-heading {
background-color: #EEE;
padding-top: 4px;
padding-bottom: 4px;
padding-left: 7px;
padding-right: 7px;
line-height: 22px;
}
#running .panel-group .panel .panel-heading a:focus,
#running .panel-group .panel .panel-heading a:hover {
text-decoration: none;
}
#running .panel-group .panel .panel-body {
padding: 0px;
}
#running .panel-group .panel .panel-body .list_container {
margin-top: 0px;
margin-bottom: 0px;
border: 0px;
border-radius: 0px;
}
#running .panel-group .panel .panel-body .list_container .list_item {
border-bottom: 1px solid #ddd;
}
#running .panel-group .panel .panel-body .list_container .list_item:last-child {
border-bottom: 0px;
}
[dir="rtl"] #running .col-sm-8 {
float: right !important;
}
.delete-button {
display: none;
}
.duplicate-button {
display: none;
}
.rename-button {
display: none;
}
.shutdown-button {
display: none;
}
.dynamic-instructions {
display: inline-block;
padding-top: 4px;
}
/*!
*
* IPython text editor webapp
*
*/
.selected-keymap i.fa {
padding: 0px 5px;
}
.selected-keymap i.fa:before {
content: "\f00c";
}
#mode-menu {
overflow: auto;
max-height: 20em;
}
.edit_app #header {
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
}
.edit_app #menubar .navbar {
/* Use a negative 1 bottom margin, so the border overlaps the border of the
header */
margin-bottom: -1px;
}
.dirty-indicator {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
width: 20px;
}
.dirty-indicator.pull-left {
margin-right: .3em;
}
.dirty-indicator.pull-right {
margin-left: .3em;
}
.dirty-indicator-dirty {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
width: 20px;
}
.dirty-indicator-dirty.pull-left {
margin-right: .3em;
}
.dirty-indicator-dirty.pull-right {
margin-left: .3em;
}
.dirty-indicator-clean {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
width: 20px;
}
.dirty-indicator-clean.pull-left {
margin-right: .3em;
}
.dirty-indicator-clean.pull-right {
margin-left: .3em;
}
.dirty-indicator-clean:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f00c";
}
.dirty-indicator-clean:before.pull-left {
margin-right: .3em;
}
.dirty-indicator-clean:before.pull-right {
margin-left: .3em;
}
#filename {
font-size: 16pt;
display: table;
padding: 0px 5px;
}
#current-mode {
padding-left: 5px;
padding-right: 5px;
}
#texteditor-backdrop {
padding-top: 20px;
padding-bottom: 20px;
}
@media not print {
#texteditor-backdrop {
background-color: #EEE;
}
}
@media print {
#texteditor-backdrop #texteditor-container .CodeMirror-gutter,
#texteditor-backdrop #texteditor-container .CodeMirror-gutters {
background-color: #fff;
}
}
@media not print {
#texteditor-backdrop #texteditor-container .CodeMirror-gutter,
#texteditor-backdrop #texteditor-container .CodeMirror-gutters {
background-color: #fff;
}
}
@media not print {
#texteditor-backdrop #texteditor-container {
padding: 0px;
background-color: #fff;
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
}
}
/*!
*
* IPython notebook
*
*/
/* CSS font colors for translated ANSI colors. */
.ansibold {
font-weight: bold;
}
/* use dark versions for foreground, to improve visibility */
.ansiblack {
color: black;
}
.ansired {
color: darkred;
}
.ansigreen {
color: darkgreen;
}
.ansiyellow {
color: #c4a000;
}
.ansiblue {
color: darkblue;
}
.ansipurple {
color: darkviolet;
}
.ansicyan {
color: steelblue;
}
.ansigray {
color: gray;
}
/* and light for background, for the same reason */
.ansibgblack {
background-color: black;
}
.ansibgred {
background-color: red;
}
.ansibggreen {
background-color: green;
}
.ansibgyellow {
background-color: yellow;
}
.ansibgblue {
background-color: blue;
}
.ansibgpurple {
background-color: magenta;
}
.ansibgcyan {
background-color: cyan;
}
.ansibggray {
background-color: gray;
}
div.cell {
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: vertical;
-moz-box-align: stretch;
display: box;
box-orient: vertical;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: column;
align-items: stretch;
border-radius: 2px;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
border-width: 1px;
border-style: solid;
border-color: transparent;
width: 100%;
padding: 5px;
/* This acts as a spacer between cells, that is outside the border */
margin: 0px;
outline: none;
border-left-width: 1px;
padding-left: 5px;
background: linear-gradient(to right, transparent -40px, transparent 1px, transparent 1px, transparent 100%);
}
div.cell.jupyter-soft-selected {
border-left-color: #90CAF9;
border-left-color: #E3F2FD;
border-left-width: 1px;
padding-left: 5px;
border-right-color: #E3F2FD;
border-right-width: 1px;
background: #E3F2FD;
}
@media print {
div.cell.jupyter-soft-selected {
border-color: transparent;
}
}
div.cell.selected {
border-color: #ababab;
border-left-width: 0px;
padding-left: 6px;
background: linear-gradient(to right, #42A5F5 -40px, #42A5F5 5px, transparent 5px, transparent 100%);
}
@media print {
div.cell.selected {
border-color: transparent;
}
}
div.cell.selected.jupyter-soft-selected {
border-left-width: 0;
padding-left: 6px;
background: linear-gradient(to right, #42A5F5 -40px, #42A5F5 7px, #E3F2FD 7px, #E3F2FD 100%);
}
.edit_mode div.cell.selected {
border-color: #66BB6A;
border-left-width: 0px;
padding-left: 6px;
background: linear-gradient(to right, #66BB6A -40px, #66BB6A 5px, transparent 5px, transparent 100%);
}
@media print {
.edit_mode div.cell.selected {
border-color: transparent;
}
}
.prompt {
/* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
min-width: 14ex;
/* This padding is tuned to match the padding on the CodeMirror editor. */
padding: 0.4em;
margin: 0px;
font-family: monospace;
text-align: right;
/* This has to match that of the the CodeMirror class line-height below */
line-height: 1.21429em;
/* Don't highlight prompt number selection */
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
/* Use default cursor */
cursor: default;
}
@media (max-width: 540px) {
.prompt {
text-align: left;
}
}
div.inner_cell {
min-width: 0;
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: vertical;
-moz-box-align: stretch;
display: box;
box-orient: vertical;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: column;
align-items: stretch;
/* Old browsers */
-webkit-box-flex: 1;
-moz-box-flex: 1;
box-flex: 1;
/* Modern browsers */
flex: 1;
}
/* input_area and input_prompt must match in top border and margin for alignment */
div.input_area {
border: 1px solid #cfcfcf;
border-radius: 2px;
background: #f7f7f7;
line-height: 1.21429em;
}
/* This is needed so that empty prompt areas can collapse to zero height when there
is no content in the output_subarea and the prompt. The main purpose of this is
to make sure that empty JavaScript output_subareas have no height. */
div.prompt:empty {
padding-top: 0;
padding-bottom: 0;
}
div.unrecognized_cell {
padding: 5px 5px 5px 0px;
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-align: stretch;
display: box;
box-orient: horizontal;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: row;
align-items: stretch;
}
div.unrecognized_cell .inner_cell {
border-radius: 2px;
padding: 5px;
font-weight: bold;
color: red;
border: 1px solid #cfcfcf;
background: #eaeaea;
}
div.unrecognized_cell .inner_cell a {
color: inherit;
text-decoration: none;
}
div.unrecognized_cell .inner_cell a:hover {
color: inherit;
text-decoration: none;
}
@media (max-width: 540px) {
div.unrecognized_cell > div.prompt {
display: none;
}
}
div.code_cell {
/* avoid page breaking on code cells when printing */
}
@media print {
div.code_cell {
page-break-inside: avoid;
}
}
/* any special styling for code cells that are currently running goes here */
div.input {
page-break-inside: avoid;
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-align: stretch;
display: box;
box-orient: horizontal;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: row;
align-items: stretch;
}
@media (max-width: 540px) {
div.input {
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: vertical;
-moz-box-align: stretch;
display: box;
box-orient: vertical;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: column;
align-items: stretch;
}
}
/* input_area and input_prompt must match in top border and margin for alignment */
div.input_prompt {
color: #303F9F;
border-top: 1px solid transparent;
}
div.input_area > div.highlight {
margin: 0.4em;
border: none;
padding: 0px;
background-color: transparent;
}
div.input_area > div.highlight > pre {
margin: 0px;
border: none;
padding: 0px;
background-color: transparent;
}
/* The following gets added to the <head> if it is detected that the user has a
* monospace font with inconsistent normal/bold/italic height. See
* notebookmain.js. Such fonts will have keywords vertically offset with
* respect to the rest of the text. The user should select a better font.
* See: https://github.com/ipython/ipython/issues/1503
*
* .CodeMirror span {
* vertical-align: bottom;
* }
*/
.CodeMirror {
line-height: 1.21429em;
/* Changed from 1em to our global default */
font-size: 14px;
height: auto;
/* Changed to auto to autogrow */
background: none;
/* Changed from white to allow our bg to show through */
}
.CodeMirror-scroll {
/* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
/* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
overflow-y: hidden;
overflow-x: auto;
}
.CodeMirror-lines {
/* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
/* we have set a different line-height and want this to scale with that. */
padding: 0.4em;
}
.CodeMirror-linenumber {
padding: 0 8px 0 4px;
}
.CodeMirror-gutters {
border-bottom-left-radius: 2px;
border-top-left-radius: 2px;
}
.CodeMirror pre {
/* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
/* .CodeMirror-lines */
padding: 0;
border: 0;
border-radius: 0;
}
/*
Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
Adapted from GitHub theme
*/
.highlight-base {
color: #000;
}
.highlight-variable {
color: #000;
}
.highlight-variable-2 {
color: #1a1a1a;
}
.highlight-variable-3 {
color: #333333;
}
.highlight-string {
color: #BA2121;
}
.highlight-comment {
color: #408080;
font-style: italic;
}
.highlight-number {
color: #080;
}
.highlight-atom {
color: #88F;
}
.highlight-keyword {
color: #008000;
font-weight: bold;
}
.highlight-builtin {
color: #008000;
}
.highlight-error {
color: #f00;
}
.highlight-operator {
color: #AA22FF;
font-weight: bold;
}
.highlight-meta {
color: #AA22FF;
}
/* previously not defined, copying from default codemirror */
.highlight-def {
color: #00f;
}
.highlight-string-2 {
color: #f50;
}
.highlight-qualifier {
color: #555;
}
.highlight-bracket {
color: #997;
}
.highlight-tag {
color: #170;
}
.highlight-attribute {
color: #00c;
}
.highlight-header {
color: blue;
}
.highlight-quote {
color: #090;
}
.highlight-link {
color: #00c;
}
/* apply the same style to codemirror */
.cm-s-ipython span.cm-keyword {
color: #008000;
font-weight: bold;
}
.cm-s-ipython span.cm-atom {
color: #88F;
}
.cm-s-ipython span.cm-number {
color: #080;
}
.cm-s-ipython span.cm-def {
color: #00f;
}
.cm-s-ipython span.cm-variable {
color: #000;
}
.cm-s-ipython span.cm-operator {
color: #AA22FF;
font-weight: bold;
}
.cm-s-ipython span.cm-variable-2 {
color: #1a1a1a;
}
.cm-s-ipython span.cm-variable-3 {
color: #333333;
}
.cm-s-ipython span.cm-comment {
color: #408080;
font-style: italic;
}
.cm-s-ipython span.cm-string {
color: #BA2121;
}
.cm-s-ipython span.cm-string-2 {
color: #f50;
}
.cm-s-ipython span.cm-meta {
color: #AA22FF;
}
.cm-s-ipython span.cm-qualifier {
color: #555;
}
.cm-s-ipython span.cm-builtin {
color: #008000;
}
.cm-s-ipython span.cm-bracket {
color: #997;
}
.cm-s-ipython span.cm-tag {
color: #170;
}
.cm-s-ipython span.cm-attribute {
color: #00c;
}
.cm-s-ipython span.cm-header {
color: blue;
}
.cm-s-ipython span.cm-quote {
color: #090;
}
.cm-s-ipython span.cm-link {
color: #00c;
}
.cm-s-ipython span.cm-error {
color: #f00;
}
.cm-s-ipython span.cm-tab {
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
background-position: right;
background-repeat: no-repeat;
}
div.output_wrapper {
/* this position must be relative to enable descendents to be absolute within it */
position: relative;
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: vertical;
-moz-box-align: stretch;
display: box;
box-orient: vertical;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: column;
align-items: stretch;
z-index: 1;
}
/* class for the output area when it should be height-limited */
div.output_scroll {
/* ideally, this would be max-height, but FF barfs all over that */
height: 24em;
/* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
width: 100%;
overflow: auto;
border-radius: 2px;
-webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
display: block;
}
/* output div while it is collapsed */
div.output_collapsed {
margin: 0px;
padding: 0px;
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: vertical;
-moz-box-align: stretch;
display: box;
box-orient: vertical;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: column;
align-items: stretch;
}
div.out_prompt_overlay {
height: 100%;
padding: 0px 0.4em;
position: absolute;
border-radius: 2px;
}
div.out_prompt_overlay:hover {
/* use inner shadow to get border that is computed the same on WebKit/FF */
-webkit-box-shadow: inset 0 0 1px #000;
box-shadow: inset 0 0 1px #000;
background: rgba(240, 240, 240, 0.5);
}
div.output_prompt {
color: #D84315;
}
/* This class is the outer container of all output sections. */
div.output_area {
padding: 0px;
page-break-inside: avoid;
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-align: stretch;
display: box;
box-orient: horizontal;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: row;
align-items: stretch;
}
div.output_area .MathJax_Display {
text-align: left !important;
}
div.output_area .rendered_html table {
margin-left: 0;
margin-right: 0;
}
div.output_area .rendered_html img {
margin-left: 0;
margin-right: 0;
}
div.output_area img,
div.output_area svg {
max-width: 100%;
height: auto;
}
div.output_area img.unconfined,
div.output_area svg.unconfined {
max-width: none;
}
/* This is needed to protect the pre formating from global settings such
as that of bootstrap */
.output {
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: vertical;
-moz-box-align: stretch;
display: box;
box-orient: vertical;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: column;
align-items: stretch;
}
@media (max-width: 540px) {
div.output_area {
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: vertical;
-moz-box-align: stretch;
display: box;
box-orient: vertical;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: column;
align-items: stretch;
}
}
div.output_area pre {
margin: 0;
padding: 0;
border: 0;
vertical-align: baseline;
color: black;
background-color: transparent;
border-radius: 0;
}
/* This class is for the output subarea inside the output_area and after
the prompt div. */
div.output_subarea {
overflow-x: auto;
padding: 0.4em;
/* Old browsers */
-webkit-box-flex: 1;
-moz-box-flex: 1;
box-flex: 1;
/* Modern browsers */
flex: 1;
max-width: calc(100% - 14ex);
}
div.output_scroll div.output_subarea {
overflow-x: visible;
}
/* The rest of the output_* classes are for special styling of the different
output types */
/* all text output has this class: */
div.output_text {
text-align: left;
color: #000;
/* This has to match that of the the CodeMirror class line-height below */
line-height: 1.21429em;
}
/* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
div.output_stderr {
background: #fdd;
/* very light red background for stderr */
}
div.output_latex {
text-align: left;
}
/* Empty output_javascript divs should have no height */
div.output_javascript:empty {
padding: 0;
}
.js-error {
color: darkred;
}
/* raw_input styles */
div.raw_input_container {
line-height: 1.21429em;
padding-top: 5px;
}
pre.raw_input_prompt {
/* nothing needed here. */
}
input.raw_input {
font-family: monospace;
font-size: inherit;
color: inherit;
width: auto;
/* make sure input baseline aligns with prompt */
vertical-align: baseline;
/* padding + margin = 0.5em between prompt and cursor */
padding: 0em 0.25em;
margin: 0em 0.25em;
}
input.raw_input:focus {
box-shadow: none;
}
p.p-space {
margin-bottom: 10px;
}
div.output_unrecognized {
padding: 5px;
font-weight: bold;
color: red;
}
div.output_unrecognized a {
color: inherit;
text-decoration: none;
}
div.output_unrecognized a:hover {
color: inherit;
text-decoration: none;
}
.rendered_html {
color: #000;
/* any extras will just be numbers: */
}
.rendered_html em {
font-style: italic;
}
.rendered_html strong {
font-weight: bold;
}
.rendered_html u {
text-decoration: underline;
}
.rendered_html :link {
text-decoration: underline;
}
.rendered_html :visited {
text-decoration: underline;
}
.rendered_html h1 {
font-size: 185.7%;
margin: 1.08em 0 0 0;
font-weight: bold;
line-height: 1.0;
}
.rendered_html h2 {
font-size: 157.1%;
margin: 1.27em 0 0 0;
font-weight: bold;
line-height: 1.0;
}
.rendered_html h3 {
font-size: 128.6%;
margin: 1.55em 0 0 0;
font-weight: bold;
line-height: 1.0;
}
.rendered_html h4 {
font-size: 100%;
margin: 2em 0 0 0;
font-weight: bold;
line-height: 1.0;
}
.rendered_html h5 {
font-size: 100%;
margin: 2em 0 0 0;
font-weight: bold;
line-height: 1.0;
font-style: italic;
}
.rendered_html h6 {
font-size: 100%;
margin: 2em 0 0 0;
font-weight: bold;
line-height: 1.0;
font-style: italic;
}
.rendered_html h1:first-child {
margin-top: 0.538em;
}
.rendered_html h2:first-child {
margin-top: 0.636em;
}
.rendered_html h3:first-child {
margin-top: 0.777em;
}
.rendered_html h4:first-child {
margin-top: 1em;
}
.rendered_html h5:first-child {
margin-top: 1em;
}
.rendered_html h6:first-child {
margin-top: 1em;
}
.rendered_html ul {
list-style: disc;
margin: 0em 2em;
padding-left: 0px;
}
.rendered_html ul ul {
list-style: square;
margin: 0em 2em;
}
.rendered_html ul ul ul {
list-style: circle;
margin: 0em 2em;
}
.rendered_html ol {
list-style: decimal;
margin: 0em 2em;
padding-left: 0px;
}
.rendered_html ol ol {
list-style: upper-alpha;
margin: 0em 2em;
}
.rendered_html ol ol ol {
list-style: lower-alpha;
margin: 0em 2em;
}
.rendered_html ol ol ol ol {
list-style: lower-roman;
margin: 0em 2em;
}
.rendered_html ol ol ol ol ol {
list-style: decimal;
margin: 0em 2em;
}
.rendered_html * + ul {
margin-top: 1em;
}
.rendered_html * + ol {
margin-top: 1em;
}
.rendered_html hr {
color: black;
background-color: black;
}
.rendered_html pre {
margin: 1em 2em;
}
.rendered_html pre,
.rendered_html code {
border: 0;
background-color: #fff;
color: #000;
font-size: 100%;
padding: 0px;
}
.rendered_html blockquote {
margin: 1em 2em;
}
.rendered_html table {
margin-left: auto;
margin-right: auto;
border: 1px solid black;
border-collapse: collapse;
}
.rendered_html tr,
.rendered_html th,
.rendered_html td {
border: 1px solid black;
border-collapse: collapse;
margin: 1em 2em;
}
.rendered_html td,
.rendered_html th {
text-align: left;
vertical-align: middle;
padding: 4px;
}
.rendered_html th {
font-weight: bold;
}
.rendered_html * + table {
margin-top: 1em;
}
.rendered_html p {
text-align: left;
}
.rendered_html * + p {
margin-top: 1em;
}
.rendered_html img {
display: block;
margin-left: auto;
margin-right: auto;
}
.rendered_html * + img {
margin-top: 1em;
}
.rendered_html img,
.rendered_html svg {
max-width: 100%;
height: auto;
}
.rendered_html img.unconfined,
.rendered_html svg.unconfined {
max-width: none;
}
div.text_cell {
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-align: stretch;
display: box;
box-orient: horizontal;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: row;
align-items: stretch;
}
@media (max-width: 540px) {
div.text_cell > div.prompt {
display: none;
}
}
div.text_cell_render {
/*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
outline: none;
resize: none;
width: inherit;
border-style: none;
padding: 0.5em 0.5em 0.5em 0.4em;
color: #000;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
a.anchor-link:link {
text-decoration: none;
padding: 0px 20px;
visibility: hidden;
}
h1:hover .anchor-link,
h2:hover .anchor-link,
h3:hover .anchor-link,
h4:hover .anchor-link,
h5:hover .anchor-link,
h6:hover .anchor-link {
visibility: visible;
}
.text_cell.rendered .input_area {
display: none;
}
.text_cell.rendered .rendered_html {
overflow-x: auto;
overflow-y: hidden;
}
.text_cell.unrendered .text_cell_render {
display: none;
}
.cm-header-1,
.cm-header-2,
.cm-header-3,
.cm-header-4,
.cm-header-5,
.cm-header-6 {
font-weight: bold;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.cm-header-1 {
font-size: 185.7%;
}
.cm-header-2 {
font-size: 157.1%;
}
.cm-header-3 {
font-size: 128.6%;
}
.cm-header-4 {
font-size: 110%;
}
.cm-header-5 {
font-size: 100%;
font-style: italic;
}
.cm-header-6 {
font-size: 100%;
font-style: italic;
}
/*!
*
* IPython notebook webapp
*
*/
@media (max-width: 767px) {
.notebook_app {
padding-left: 0px;
padding-right: 0px;
}
}
#ipython-main-app {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
height: 100%;
}
div#notebook_panel {
margin: 0px;
padding: 0px;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
height: 100%;
}
div#notebook {
font-size: 14px;
line-height: 20px;
overflow-y: hidden;
overflow-x: auto;
width: 100%;
/* This spaces the page away from the edge of the notebook area */
padding-top: 20px;
margin: 0px;
outline: none;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
min-height: 100%;
}
@media not print {
#notebook-container {
padding: 15px;
background-color: #fff;
min-height: 0;
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
}
}
@media print {
#notebook-container {
width: 100%;
}
}
div.ui-widget-content {
border: 1px solid #ababab;
outline: none;
}
pre.dialog {
background-color: #f7f7f7;
border: 1px solid #ddd;
border-radius: 2px;
padding: 0.4em;
padding-left: 2em;
}
p.dialog {
padding: 0.2em;
}
/* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
*/
pre,
code,
kbd,
samp {
white-space: pre-wrap;
}
#fonttest {
font-family: monospace;
}
p {
margin-bottom: 0;
}
.end_space {
min-height: 100px;
transition: height .2s ease;
}
.notebook_app > #header {
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
}
@media not print {
.notebook_app {
background-color: #EEE;
}
}
kbd {
border-style: solid;
border-width: 1px;
box-shadow: none;
margin: 2px;
padding-left: 2px;
padding-right: 2px;
padding-top: 1px;
padding-bottom: 1px;
}
/* CSS for the cell toolbar */
.celltoolbar {
border: thin solid #CFCFCF;
border-bottom: none;
background: #EEE;
border-radius: 2px 2px 0px 0px;
width: 100%;
height: 29px;
padding-right: 4px;
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-align: stretch;
display: box;
box-orient: horizontal;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: row;
align-items: stretch;
/* Old browsers */
-webkit-box-pack: end;
-moz-box-pack: end;
box-pack: end;
/* Modern browsers */
justify-content: flex-end;
display: -webkit-flex;
}
@media print {
.celltoolbar {
display: none;
}
}
.ctb_hideshow {
display: none;
vertical-align: bottom;
}
/* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
Cell toolbars are only shown when the ctb_global_show class is also set.
*/
.ctb_global_show .ctb_show.ctb_hideshow {
display: block;
}
.ctb_global_show .ctb_show + .input_area,
.ctb_global_show .ctb_show + div.text_cell_input,
.ctb_global_show .ctb_show ~ div.text_cell_render {
border-top-right-radius: 0px;
border-top-left-radius: 0px;
}
.ctb_global_show .ctb_show ~ div.text_cell_render {
border: 1px solid #cfcfcf;
}
.celltoolbar {
font-size: 87%;
padding-top: 3px;
}
.celltoolbar select {
display: block;
width: 100%;
height: 32px;
padding: 6px 12px;
font-size: 13px;
line-height: 1.42857143;
color: #555555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 2px;
-webkit-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-color ease-in-out .15s, box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 1px;
width: inherit;
font-size: inherit;
height: 22px;
padding: 0px;
display: inline-block;
}
.celltoolbar select:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.celltoolbar select::-moz-placeholder {
color: #999;
opacity: 1;
}
.celltoolbar select:-ms-input-placeholder {
color: #999;
}
.celltoolbar select::-webkit-input-placeholder {
color: #999;
}
.celltoolbar select::-ms-expand {
border: 0;
background-color: transparent;
}
.celltoolbar select[disabled],
.celltoolbar select[readonly],
fieldset[disabled] .celltoolbar select {
background-color: #eeeeee;
opacity: 1;
}
.celltoolbar select[disabled],
fieldset[disabled] .celltoolbar select {
cursor: not-allowed;
}
textarea.celltoolbar select {
height: auto;
}
select.celltoolbar select {
height: 30px;
line-height: 30px;
}
textarea.celltoolbar select,
select[multiple].celltoolbar select {
height: auto;
}
.celltoolbar label {
margin-left: 5px;
margin-right: 5px;
}
.completions {
position: absolute;
z-index: 110;
overflow: hidden;
border: 1px solid #ababab;
border-radius: 2px;
-webkit-box-shadow: 0px 6px 10px -1px #adadad;
box-shadow: 0px 6px 10px -1px #adadad;
line-height: 1;
}
.completions select {
background: white;
outline: none;
border: none;
padding: 0px;
margin: 0px;
overflow: auto;
font-family: monospace;
font-size: 110%;
color: #000;
width: auto;
}
.completions select option.context {
color: #286090;
}
#kernel_logo_widget {
float: right !important;
float: right;
}
#kernel_logo_widget .current_kernel_logo {
display: none;
margin-top: -1px;
margin-bottom: -1px;
width: 32px;
height: 32px;
}
#menubar {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
margin-top: 1px;
}
#menubar .navbar {
border-top: 1px;
border-radius: 0px 0px 2px 2px;
margin-bottom: 0px;
}
#menubar .navbar-toggle {
float: left;
padding-top: 7px;
padding-bottom: 7px;
border: none;
}
#menubar .navbar-collapse {
clear: left;
}
.nav-wrapper {
border-bottom: 1px solid #e7e7e7;
}
i.menu-icon {
padding-top: 4px;
}
ul#help_menu li a {
overflow: hidden;
padding-right: 2.2em;
}
ul#help_menu li a i {
margin-right: -1.2em;
}
.dropdown-submenu {
position: relative;
}
.dropdown-submenu > .dropdown-menu {
top: 0;
left: 100%;
margin-top: -6px;
margin-left: -1px;
}
.dropdown-submenu:hover > .dropdown-menu {
display: block;
}
.dropdown-submenu > a:after {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: block;
content: "\f0da";
float: right;
color: #333333;
margin-top: 2px;
margin-right: -10px;
}
.dropdown-submenu > a:after.pull-left {
margin-right: .3em;
}
.dropdown-submenu > a:after.pull-right {
margin-left: .3em;
}
.dropdown-submenu:hover > a:after {
color: #262626;
}
.dropdown-submenu.pull-left {
float: none;
}
.dropdown-submenu.pull-left > .dropdown-menu {
left: -100%;
margin-left: 10px;
}
#notification_area {
float: right !important;
float: right;
z-index: 10;
}
.indicator_area {
float: right !important;
float: right;
color: #777;
margin-left: 5px;
margin-right: 5px;
width: 11px;
z-index: 10;
text-align: center;
width: auto;
}
#kernel_indicator {
float: right !important;
float: right;
color: #777;
margin-left: 5px;
margin-right: 5px;
width: 11px;
z-index: 10;
text-align: center;
width: auto;
border-left: 1px solid;
}
#kernel_indicator .kernel_indicator_name {
padding-left: 5px;
padding-right: 5px;
}
#modal_indicator {
float: right !important;
float: right;
color: #777;
margin-left: 5px;
margin-right: 5px;
width: 11px;
z-index: 10;
text-align: center;
width: auto;
}
#readonly-indicator {
float: right !important;
float: right;
color: #777;
margin-left: 5px;
margin-right: 5px;
width: 11px;
z-index: 10;
text-align: center;
width: auto;
margin-top: 2px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
display: none;
}
.modal_indicator:before {
width: 1.28571429em;
text-align: center;
}
.edit_mode .modal_indicator:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f040";
}
.edit_mode .modal_indicator:before.pull-left {
margin-right: .3em;
}
.edit_mode .modal_indicator:before.pull-right {
margin-left: .3em;
}
.command_mode .modal_indicator:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: ' ';
}
.command_mode .modal_indicator:before.pull-left {
margin-right: .3em;
}
.command_mode .modal_indicator:before.pull-right {
margin-left: .3em;
}
.kernel_idle_icon:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f10c";
}
.kernel_idle_icon:before.pull-left {
margin-right: .3em;
}
.kernel_idle_icon:before.pull-right {
margin-left: .3em;
}
.kernel_busy_icon:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f111";
}
.kernel_busy_icon:before.pull-left {
margin-right: .3em;
}
.kernel_busy_icon:before.pull-right {
margin-left: .3em;
}
.kernel_dead_icon:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f1e2";
}
.kernel_dead_icon:before.pull-left {
margin-right: .3em;
}
.kernel_dead_icon:before.pull-right {
margin-left: .3em;
}
.kernel_disconnected_icon:before {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\f127";
}
.kernel_disconnected_icon:before.pull-left {
margin-right: .3em;
}
.kernel_disconnected_icon:before.pull-right {
margin-left: .3em;
}
.notification_widget {
color: #777;
z-index: 10;
background: rgba(240, 240, 240, 0.5);
margin-right: 4px;
color: #333;
background-color: #fff;
border-color: #ccc;
}
.notification_widget:focus,
.notification_widget.focus {
color: #333;
background-color: #e6e6e6;
border-color: #8c8c8c;
}
.notification_widget:hover {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
.notification_widget:active,
.notification_widget.active,
.open > .dropdown-toggle.notification_widget {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
.notification_widget:active:hover,
.notification_widget.active:hover,
.open > .dropdown-toggle.notification_widget:hover,
.notification_widget:active:focus,
.notification_widget.active:focus,
.open > .dropdown-toggle.notification_widget:focus,
.notification_widget:active.focus,
.notification_widget.active.focus,
.open > .dropdown-toggle.notification_widget.focus {
color: #333;
background-color: #d4d4d4;
border-color: #8c8c8c;
}
.notification_widget:active,
.notification_widget.active,
.open > .dropdown-toggle.notification_widget {
background-image: none;
}
.notification_widget.disabled:hover,
.notification_widget[disabled]:hover,
fieldset[disabled] .notification_widget:hover,
.notification_widget.disabled:focus,
.notification_widget[disabled]:focus,
fieldset[disabled] .notification_widget:focus,
.notification_widget.disabled.focus,
.notification_widget[disabled].focus,
fieldset[disabled] .notification_widget.focus {
background-color: #fff;
border-color: #ccc;
}
.notification_widget .badge {
color: #fff;
background-color: #333;
}
.notification_widget.warning {
color: #fff;
background-color: #f0ad4e;
border-color: #eea236;
}
.notification_widget.warning:focus,
.notification_widget.warning.focus {
color: #fff;
background-color: #ec971f;
border-color: #985f0d;
}
.notification_widget.warning:hover {
color: #fff;
background-color: #ec971f;
border-color: #d58512;
}
.notification_widget.warning:active,
.notification_widget.warning.active,
.open > .dropdown-toggle.notification_widget.warning {
color: #fff;
background-color: #ec971f;
border-color: #d58512;
}
.notification_widget.warning:active:hover,
.notification_widget.warning.active:hover,
.open > .dropdown-toggle.notification_widget.warning:hover,
.notification_widget.warning:active:focus,
.notification_widget.warning.active:focus,
.open > .dropdown-toggle.notification_widget.warning:focus,
.notification_widget.warning:active.focus,
.notification_widget.warning.active.focus,
.open > .dropdown-toggle.notification_widget.warning.focus {
color: #fff;
background-color: #d58512;
border-color: #985f0d;
}
.notification_widget.warning:active,
.notification_widget.warning.active,
.open > .dropdown-toggle.notification_widget.warning {
background-image: none;
}
.notification_widget.warning.disabled:hover,
.notification_widget.warning[disabled]:hover,
fieldset[disabled] .notification_widget.warning:hover,
.notification_widget.warning.disabled:focus,
.notification_widget.warning[disabled]:focus,
fieldset[disabled] .notification_widget.warning:focus,
.notification_widget.warning.disabled.focus,
.notification_widget.warning[disabled].focus,
fieldset[disabled] .notification_widget.warning.focus {
background-color: #f0ad4e;
border-color: #eea236;
}
.notification_widget.warning .badge {
color: #f0ad4e;
background-color: #fff;
}
.notification_widget.success {
color: #fff;
background-color: #5cb85c;
border-color: #4cae4c;
}
.notification_widget.success:focus,
.notification_widget.success.focus {
color: #fff;
background-color: #449d44;
border-color: #255625;
}
.notification_widget.success:hover {
color: #fff;
background-color: #449d44;
border-color: #398439;
}
.notification_widget.success:active,
.notification_widget.success.active,
.open > .dropdown-toggle.notification_widget.success {
color: #fff;
background-color: #449d44;
border-color: #398439;
}
.notification_widget.success:active:hover,
.notification_widget.success.active:hover,
.open > .dropdown-toggle.notification_widget.success:hover,
.notification_widget.success:active:focus,
.notification_widget.success.active:focus,
.open > .dropdown-toggle.notification_widget.success:focus,
.notification_widget.success:active.focus,
.notification_widget.success.active.focus,
.open > .dropdown-toggle.notification_widget.success.focus {
color: #fff;
background-color: #398439;
border-color: #255625;
}
.notification_widget.success:active,
.notification_widget.success.active,
.open > .dropdown-toggle.notification_widget.success {
background-image: none;
}
.notification_widget.success.disabled:hover,
.notification_widget.success[disabled]:hover,
fieldset[disabled] .notification_widget.success:hover,
.notification_widget.success.disabled:focus,
.notification_widget.success[disabled]:focus,
fieldset[disabled] .notification_widget.success:focus,
.notification_widget.success.disabled.focus,
.notification_widget.success[disabled].focus,
fieldset[disabled] .notification_widget.success.focus {
background-color: #5cb85c;
border-color: #4cae4c;
}
.notification_widget.success .badge {
color: #5cb85c;
background-color: #fff;
}
.notification_widget.info {
color: #fff;
background-color: #5bc0de;
border-color: #46b8da;
}
.notification_widget.info:focus,
.notification_widget.info.focus {
color: #fff;
background-color: #31b0d5;
border-color: #1b6d85;
}
.notification_widget.info:hover {
color: #fff;
background-color: #31b0d5;
border-color: #269abc;
}
.notification_widget.info:active,
.notification_widget.info.active,
.open > .dropdown-toggle.notification_widget.info {
color: #fff;
background-color: #31b0d5;
border-color: #269abc;
}
.notification_widget.info:active:hover,
.notification_widget.info.active:hover,
.open > .dropdown-toggle.notification_widget.info:hover,
.notification_widget.info:active:focus,
.notification_widget.info.active:focus,
.open > .dropdown-toggle.notification_widget.info:focus,
.notification_widget.info:active.focus,
.notification_widget.info.active.focus,
.open > .dropdown-toggle.notification_widget.info.focus {
color: #fff;
background-color: #269abc;
border-color: #1b6d85;
}
.notification_widget.info:active,
.notification_widget.info.active,
.open > .dropdown-toggle.notification_widget.info {
background-image: none;
}
.notification_widget.info.disabled:hover,
.notification_widget.info[disabled]:hover,
fieldset[disabled] .notification_widget.info:hover,
.notification_widget.info.disabled:focus,
.notification_widget.info[disabled]:focus,
fieldset[disabled] .notification_widget.info:focus,
.notification_widget.info.disabled.focus,
.notification_widget.info[disabled].focus,
fieldset[disabled] .notification_widget.info.focus {
background-color: #5bc0de;
border-color: #46b8da;
}
.notification_widget.info .badge {
color: #5bc0de;
background-color: #fff;
}
.notification_widget.danger {
color: #fff;
background-color: #d9534f;
border-color: #d43f3a;
}
.notification_widget.danger:focus,
.notification_widget.danger.focus {
color: #fff;
background-color: #c9302c;
border-color: #761c19;
}
.notification_widget.danger:hover {
color: #fff;
background-color: #c9302c;
border-color: #ac2925;
}
.notification_widget.danger:active,
.notification_widget.danger.active,
.open > .dropdown-toggle.notification_widget.danger {
color: #fff;
background-color: #c9302c;
border-color: #ac2925;
}
.notification_widget.danger:active:hover,
.notification_widget.danger.active:hover,
.open > .dropdown-toggle.notification_widget.danger:hover,
.notification_widget.danger:active:focus,
.notification_widget.danger.active:focus,
.open > .dropdown-toggle.notification_widget.danger:focus,
.notification_widget.danger:active.focus,
.notification_widget.danger.active.focus,
.open > .dropdown-toggle.notification_widget.danger.focus {
color: #fff;
background-color: #ac2925;
border-color: #761c19;
}
.notification_widget.danger:active,
.notification_widget.danger.active,
.open > .dropdown-toggle.notification_widget.danger {
background-image: none;
}
.notification_widget.danger.disabled:hover,
.notification_widget.danger[disabled]:hover,
fieldset[disabled] .notification_widget.danger:hover,
.notification_widget.danger.disabled:focus,
.notification_widget.danger[disabled]:focus,
fieldset[disabled] .notification_widget.danger:focus,
.notification_widget.danger.disabled.focus,
.notification_widget.danger[disabled].focus,
fieldset[disabled] .notification_widget.danger.focus {
background-color: #d9534f;
border-color: #d43f3a;
}
.notification_widget.danger .badge {
color: #d9534f;
background-color: #fff;
}
div#pager {
background-color: #fff;
font-size: 14px;
line-height: 20px;
overflow: hidden;
display: none;
position: fixed;
bottom: 0px;
width: 100%;
max-height: 50%;
padding-top: 8px;
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
/* Display over codemirror */
z-index: 100;
/* Hack which prevents jquery ui resizable from changing top. */
top: auto !important;
}
div#pager pre {
line-height: 1.21429em;
color: #000;
background-color: #f7f7f7;
padding: 0.4em;
}
div#pager #pager-button-area {
position: absolute;
top: 8px;
right: 20px;
}
div#pager #pager-contents {
position: relative;
overflow: auto;
width: 100%;
height: 100%;
}
div#pager #pager-contents #pager-container {
position: relative;
padding: 15px 0px;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
div#pager .ui-resizable-handle {
top: 0px;
height: 8px;
background: #f7f7f7;
border-top: 1px solid #cfcfcf;
border-bottom: 1px solid #cfcfcf;
/* This injects handle bars (a short, wide = symbol) for
the resize handle. */
}
div#pager .ui-resizable-handle::after {
content: '';
top: 2px;
left: 50%;
height: 3px;
width: 30px;
margin-left: -15px;
position: absolute;
border-top: 1px solid #cfcfcf;
}
.quickhelp {
/* Old browsers */
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-align: stretch;
display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-align: stretch;
display: box;
box-orient: horizontal;
box-align: stretch;
/* Modern browsers */
display: flex;
flex-direction: row;
align-items: stretch;
line-height: 1.8em;
}
.shortcut_key {
display: inline-block;
width: 21ex;
text-align: right;
font-family: monospace;
}
.shortcut_descr {
display: inline-block;
/* Old browsers */
-webkit-box-flex: 1;
-moz-box-flex: 1;
box-flex: 1;
/* Modern browsers */
flex: 1;
}
span.save_widget {
margin-top: 6px;
}
span.save_widget span.filename {
height: 1em;
line-height: 1em;
padding: 3px;
margin-left: 16px;
border: none;
font-size: 146.5%;
border-radius: 2px;
}
span.save_widget span.filename:hover {
background-color: #e6e6e6;
}
span.checkpoint_status,
span.autosave_status {
font-size: small;
}
@media (max-width: 767px) {
span.save_widget {
font-size: small;
}
span.checkpoint_status,
span.autosave_status {
display: none;
}
}
@media (min-width: 768px) and (max-width: 991px) {
span.checkpoint_status {
display: none;
}
span.autosave_status {
font-size: x-small;
}
}
.toolbar {
padding: 0px;
margin-left: -5px;
margin-top: 2px;
margin-bottom: 5px;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.toolbar select,
.toolbar label {
width: auto;
vertical-align: middle;
margin-right: 2px;
margin-bottom: 0px;
display: inline;
font-size: 92%;
margin-left: 0.3em;
margin-right: 0.3em;
padding: 0px;
padding-top: 3px;
}
.toolbar .btn {
padding: 2px 8px;
}
.toolbar .btn-group {
margin-top: 0px;
margin-left: 5px;
}
#maintoolbar {
margin-bottom: -3px;
margin-top: -8px;
border: 0px;
min-height: 27px;
margin-left: 0px;
padding-top: 11px;
padding-bottom: 3px;
}
#maintoolbar .navbar-text {
float: none;
vertical-align: middle;
text-align: right;
margin-left: 5px;
margin-right: 0px;
margin-top: 0px;
}
.select-xs {
height: 24px;
}
.pulse,
.dropdown-menu > li > a.pulse,
li.pulse > a.dropdown-toggle,
li.pulse.open > a.dropdown-toggle {
background-color: #F37626;
color: white;
}
/**
* Primary styles
*
* Author: Jupyter Development Team
*/
/** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot
* of chance of beeing generated from the ../less/[samename].less file, you can
* try to get back the less file by reverting somme commit in history
**/
/*
* We'll try to get something pretty, so we
* have some strange css to have the scroll bar on
* the left with fix button on the top right of the tooltip
*/
@-moz-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@-moz-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/*properties of tooltip after "expand"*/
.bigtooltip {
overflow: auto;
height: 200px;
-webkit-transition-property: height;
-webkit-transition-duration: 500ms;
-moz-transition-property: height;
-moz-transition-duration: 500ms;
transition-property: height;
transition-duration: 500ms;
}
/*properties of tooltip before "expand"*/
.smalltooltip {
-webkit-transition-property: height;
-webkit-transition-duration: 500ms;
-moz-transition-property: height;
-moz-transition-duration: 500ms;
transition-property: height;
transition-duration: 500ms;
text-overflow: ellipsis;
overflow: hidden;
height: 80px;
}
.tooltipbuttons {
position: absolute;
padding-right: 15px;
top: 0px;
right: 0px;
}
.tooltiptext {
/*avoid the button to overlap on some docstring*/
padding-right: 30px;
}
.ipython_tooltip {
max-width: 700px;
/*fade-in animation when inserted*/
-webkit-animation: fadeOut 400ms;
-moz-animation: fadeOut 400ms;
animation: fadeOut 400ms;
-webkit-animation: fadeIn 400ms;
-moz-animation: fadeIn 400ms;
animation: fadeIn 400ms;
vertical-align: middle;
background-color: #f7f7f7;
overflow: visible;
border: #ababab 1px solid;
outline: none;
padding: 3px;
margin: 0px;
padding-left: 7px;
font-family: monospace;
min-height: 50px;
-moz-box-shadow: 0px 6px 10px -1px #adadad;
-webkit-box-shadow: 0px 6px 10px -1px #adadad;
box-shadow: 0px 6px 10px -1px #adadad;
border-radius: 2px;
position: absolute;
z-index: 1000;
}
.ipython_tooltip a {
float: right;
}
.ipython_tooltip .tooltiptext pre {
border: 0;
border-radius: 0;
font-size: 100%;
background-color: #f7f7f7;
}
.pretooltiparrow {
left: 0px;
margin: 0px;
top: -16px;
width: 40px;
height: 16px;
overflow: hidden;
position: absolute;
}
.pretooltiparrow:before {
background-color: #f7f7f7;
border: 1px #ababab solid;
z-index: 11;
content: "";
position: absolute;
left: 15px;
top: 10px;
width: 25px;
height: 25px;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
}
ul.typeahead-list i {
margin-left: -10px;
width: 18px;
}
ul.typeahead-list {
max-height: 80vh;
overflow: auto;
}
ul.typeahead-list > li > a {
/** Firefox bug **/
/* see https://github.com/jupyter/notebook/issues/559 */
white-space: normal;
}
.cmd-palette .modal-body {
padding: 7px;
}
.cmd-palette form {
background: white;
}
.cmd-palette input {
outline: none;
}
.no-shortcut {
display: none;
}
.command-shortcut:before {
content: "(command)";
padding-right: 3px;
color: #777777;
}
.edit-shortcut:before {
content: "(edit)";
padding-right: 3px;
color: #777777;
}
#find-and-replace #replace-preview .match,
#find-and-replace #replace-preview .insert {
background-color: #BBDEFB;
border-color: #90CAF9;
border-style: solid;
border-width: 1px;
border-radius: 0px;
}
#find-and-replace #replace-preview .replace .match {
background-color: #FFCDD2;
border-color: #EF9A9A;
border-radius: 0px;
}
#find-and-replace #replace-preview .replace .insert {
background-color: #C8E6C9;
border-color: #A5D6A7;
border-radius: 0px;
}
#find-and-replace #replace-preview {
max-height: 60vh;
overflow: auto;
}
#find-and-replace #replace-preview pre {
padding: 5px 10px;
}
.terminal-app {
background: #EEE;
}
.terminal-app #header {
background: #fff;
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
}
.terminal-app .terminal {
width: 100%;
float: left;
font-family: monospace;
color: white;
background: black;
padding: 0.4em;
border-radius: 2px;
-webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
}
.terminal-app .terminal,
.terminal-app .terminal dummy-screen {
line-height: 1em;
font-size: 14px;
}
.terminal-app .terminal .xterm-rows {
padding: 10px;
}
.terminal-app .terminal-cursor {
color: black;
background: white;
}
.terminal-app #terminado-container {
margin-top: 20px;
}
/*# sourceMappingURL=style.min.css.map */
</style>
<style type="text/css">
.highlight .hll { background-color: #ffffcc }
.highlight { background: #f8f8f8; }
.highlight .c { color: #408080; font-style: italic } /* Comment */
.highlight .err { border: 1px solid #FF0000 } /* Error */
.highlight .k { color: #008000; font-weight: bold } /* Keyword */
.highlight .o { color: #666666 } /* Operator */
.highlight .ch { color: #408080; font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #BC7A00 } /* Comment.Preproc */
.highlight .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */
.highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */
.highlight .cs { color: #408080; font-style: italic } /* Comment.Special */
.highlight .gd { color: #A00000 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #FF0000 } /* Generic.Error */
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
.highlight .gi { color: #00A000 } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.highlight .gt { color: #0044DD } /* Generic.Traceback */
.highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008000 } /* Keyword.Pseudo */
.highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #B00040 } /* Keyword.Type */
.highlight .m { color: #666666 } /* Literal.Number */
.highlight .s { color: #BA2121 } /* Literal.String */
.highlight .na { color: #7D9029 } /* Name.Attribute */
.highlight .nb { color: #008000 } /* Name.Builtin */
.highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */
.highlight .no { color: #880000 } /* Name.Constant */
.highlight .nd { color: #AA22FF } /* Name.Decorator */
.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
.highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #0000FF } /* Name.Function */
.highlight .nl { color: #A0A000 } /* Name.Label */
.highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
.highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #19177C } /* Name.Variable */
.highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #666666 } /* Literal.Number.Bin */
.highlight .mf { color: #666666 } /* Literal.Number.Float */
.highlight .mh { color: #666666 } /* Literal.Number.Hex */
.highlight .mi { color: #666666 } /* Literal.Number.Integer */
.highlight .mo { color: #666666 } /* Literal.Number.Oct */
.highlight .sa { color: #BA2121 } /* Literal.String.Affix */
.highlight .sb { color: #BA2121 } /* Literal.String.Backtick */
.highlight .sc { color: #BA2121 } /* Literal.String.Char */
.highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */
.highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
.highlight .s2 { color: #BA2121 } /* Literal.String.Double */
.highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
.highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */
.highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
.highlight .sx { color: #008000 } /* Literal.String.Other */
.highlight .sr { color: #BB6688 } /* Literal.String.Regex */
.highlight .s1 { color: #BA2121 } /* Literal.String.Single */
.highlight .ss { color: #19177C } /* Literal.String.Symbol */
.highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #0000FF } /* Name.Function.Magic */
.highlight .vc { color: #19177C } /* Name.Variable.Class */
.highlight .vg { color: #19177C } /* Name.Variable.Global */
.highlight .vi { color: #19177C } /* Name.Variable.Instance */
.highlight .vm { color: #19177C } /* Name.Variable.Magic */
.highlight .il { color: #666666 } /* Literal.Number.Integer.Long */
</style>
<style type="text/css">
/* Temporary definitions which will become obsolete with Notebook release 5.0 */
.ansi-black-fg { color: #3E424D; }
.ansi-black-bg { background-color: #3E424D; }
.ansi-black-intense-fg { color: #282C36; }
.ansi-black-intense-bg { background-color: #282C36; }
.ansi-red-fg { color: #E75C58; }
.ansi-red-bg { background-color: #E75C58; }
.ansi-red-intense-fg { color: #B22B31; }
.ansi-red-intense-bg { background-color: #B22B31; }
.ansi-green-fg { color: #00A250; }
.ansi-green-bg { background-color: #00A250; }
.ansi-green-intense-fg { color: #007427; }
.ansi-green-intense-bg { background-color: #007427; }
.ansi-yellow-fg { color: #DDB62B; }
.ansi-yellow-bg { background-color: #DDB62B; }
.ansi-yellow-intense-fg { color: #B27D12; }
.ansi-yellow-intense-bg { background-color: #B27D12; }
.ansi-blue-fg { color: #208FFB; }
.ansi-blue-bg { background-color: #208FFB; }
.ansi-blue-intense-fg { color: #0065CA; }
.ansi-blue-intense-bg { background-color: #0065CA; }
.ansi-magenta-fg { color: #D160C4; }
.ansi-magenta-bg { background-color: #D160C4; }
.ansi-magenta-intense-fg { color: #A03196; }
.ansi-magenta-intense-bg { background-color: #A03196; }
.ansi-cyan-fg { color: #60C6C8; }
.ansi-cyan-bg { background-color: #60C6C8; }
.ansi-cyan-intense-fg { color: #258F8F; }
.ansi-cyan-intense-bg { background-color: #258F8F; }
.ansi-white-fg { color: #C5C1B4; }
.ansi-white-bg { background-color: #C5C1B4; }
.ansi-white-intense-fg { color: #A1A6B2; }
.ansi-white-intense-bg { background-color: #A1A6B2; }
.ansi-bold { font-weight: bold; }
</style>
<style type="text/css">
/* Overrides of notebook CSS for static HTML export */
body {
overflow: visible;
padding: 8px;
}
div#notebook {
overflow: visible;
border-top: none;
}
@media print {
div.cell {
display: block;
page-break-inside: avoid;
}
div.output_wrapper {
display: block;
page-break-inside: avoid;
}
div.output {
display: block;
page-break-inside: avoid;
}
}
</style>
<!-- Custom stylesheet, it must be in the same directory as the html file -->
<link rel="stylesheet" href="custom.css">
<!-- Loading mathjax macro -->
<!-- Load mathjax -->
<script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML"></script>
<!-- MathJax configuration -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
processEscapes: true,
processEnvironments: true
},
// Center justify equations in code and markdown cells. Elsewhere
// we use CSS to left justify single line equations in code cells.
displayAlign: 'center',
"HTML-CSS": {
styles: {'.MathJax_Display': {"margin": 0}},
linebreaks: { automatic: true }
}
});
</script>
<!-- End of mathjax configuration --></head>
<body>
<div tabindex="-1" id="notebook" class="border-box-sizing">
<div class="container" id="notebook-container">
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h1 id="Your-first-neural-network">Your first neural network<a class="anchor-link" href="#Your-first-neural-network">¶</a></h1><p>In this project, you'll build your first neural network and use it to predict daily bike rental ridership. We've provided some of the code, but left the implementation of the neural network up to you (for the most part). After you've submitted this project, feel free to explore the data and the model more.</p>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [2]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="o">%</span><span class="k">matplotlib</span> inline
<span class="o">%</span><span class="k">config</span> InlineBackend.figure_format = 'retina'
<span class="kn">import</span> <span class="nn">numpy</span> <span class="k">as</span> <span class="nn">np</span>
<span class="kn">import</span> <span class="nn">pandas</span> <span class="k">as</span> <span class="nn">pd</span>
<span class="kn">import</span> <span class="nn">matplotlib.pyplot</span> <span class="k">as</span> <span class="nn">plt</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h2 id="Load-and-prepare-the-data">Load and prepare the data<a class="anchor-link" href="#Load-and-prepare-the-data">¶</a></h2><p>A critical step in working with neural networks is preparing the data correctly. Variables on different scales make it difficult for the network to efficiently learn the correct weights. Below, we've written the code to load and prepare the data. You'll learn more about this soon!</p>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [3]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">data_path</span> <span class="o">=</span> <span class="s1">'Bike-Sharing-Dataset/hour.csv'</span>
<span class="n">rides</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">read_csv</span><span class="p">(</span><span class="n">data_path</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [4]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">rides</span><span class="o">.</span><span class="n">head</span><span class="p">()</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[4]:</div>
<div class="output_html rendered_html output_subarea output_execute_result">
<div>
<style>
.dataframe thead tr:only-child th {
text-align: right;
}
.dataframe thead th {
text-align: left;
}
.dataframe tbody tr th {
vertical-align: top;
}
</style>
<table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>instant</th>
<th>dteday</th>
<th>season</th>
<th>yr</th>
<th>mnth</th>
<th>hr</th>
<th>holiday</th>
<th>weekday</th>
<th>workingday</th>
<th>weathersit</th>
<th>temp</th>
<th>atemp</th>
<th>hum</th>
<th>windspeed</th>
<th>casual</th>
<th>registered</th>
<th>cnt</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>1</td>
<td>2011-01-01</td>
<td>1</td>
<td>0</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>6</td>
<td>0</td>
<td>1</td>
<td>0.24</td>
<td>0.2879</td>
<td>0.81</td>
<td>0.0</td>
<td>3</td>
<td>13</td>
<td>16</td>
</tr>
<tr>
<th>1</th>
<td>2</td>
<td>2011-01-01</td>
<td>1</td>
<td>0</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>6</td>
<td>0</td>
<td>1</td>
<td>0.22</td>
<td>0.2727</td>
<td>0.80</td>
<td>0.0</td>
<td>8</td>
<td>32</td>
<td>40</td>
</tr>
<tr>
<th>2</th>
<td>3</td>
<td>2011-01-01</td>
<td>1</td>
<td>0</td>
<td>1</td>
<td>2</td>
<td>0</td>
<td>6</td>
<td>0</td>
<td>1</td>
<td>0.22</td>
<td>0.2727</td>
<td>0.80</td>
<td>0.0</td>
<td>5</td>
<td>27</td>
<td>32</td>
</tr>
<tr>
<th>3</th>
<td>4</td>
<td>2011-01-01</td>
<td>1</td>
<td>0</td>
<td>1</td>
<td>3</td>
<td>0</td>
<td>6</td>
<td>0</td>
<td>1</td>
<td>0.24</td>
<td>0.2879</td>
<td>0.75</td>
<td>0.0</td>
<td>3</td>
<td>10</td>
<td>13</td>
</tr>
<tr>
<th>4</th>
<td>5</td>
<td>2011-01-01</td>
<td>1</td>
<td>0</td>
<td>1</td>
<td>4</td>
<td>0</td>
<td>6</td>
<td>0</td>
<td>1</td>
<td>0.24</td>
<td>0.2879</td>
<td>0.75</td>
<td>0.0</td>
<td>0</td>
<td>1</td>
<td>1</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h2 id="Checking-out-the-data">Checking out the data<a class="anchor-link" href="#Checking-out-the-data">¶</a></h2><p>This dataset has the number of riders for each hour of each day from January 1 2011 to December 31 2012. The number of riders is split between casual and registered, summed up in the <code>cnt</code> column. You can see the first few rows of the data above.</p>
<p>Below is a plot showing the number of bike riders over the first 10 days or so in the data set. (Some days don't have exactly 24 entries in the data set, so it's not exactly 10 days.) You can see the hourly rentals here. This data is pretty complicated! The weekends have lower over all ridership and there are spikes when people are biking to and from work during the week. Looking at the data above, we also have information about temperature, humidity, and windspeed, all of these likely affecting the number of riders. You'll be trying to capture all this with your model.</p>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [5]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">rides</span><span class="p">[:</span><span class="mi">24</span><span class="o">*</span><span class="mi">10</span><span class="p">]</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span><span class="n">x</span><span class="o">=</span><span class="s1">'dteday'</span><span class="p">,</span> <span class="n">y</span><span class="o">=</span><span class="s1">'cnt'</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[5]:</div>
<div class="output_text output_subarea output_execute_result">
<pre><matplotlib.axes._subplots.AxesSubplot at 0x118f973c8></pre>
</div>
</div>
<div class="output_area">
<div class="prompt"></div>
<div class="output_png output_subarea ">
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAvgAAAIPCAYAAAAGtapCAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz
AAAWJQAAFiUBSVIk8AAAIABJREFUeJzsvXmUZFd95/m9sWRmVdaiKpWghJCQhYVZbMxieYA5xwZs
Y9HjNsyYNrSPGWDaeMAYNxj3TI+Nu3G78fE50DbeABt70PHQbsAwwIDBdrOIxSwCCbNJSGgp7Vvt
WZlZmbHc+SPjRdx7494XLzLu9iK+n3PqZFQuES8iXrz3e9/7/X1/QkoJQgghhBBCyHzQSL0BhBBC
CCGEEH+wwCeEEEIIIWSOYIFPCCGEEELIHMECnxBCCCGEkDmCBT4hhBBCCCFzBAt8QgghhBBC5ggW
+IQQQgghhMwRLPAJIYQQQgiZI1jgE0IIIYQQMkewwCeEEEIIIWSOYIFPCCGEEELIHMECnxBCCCGE
kDmCBT4hhBBCCCFzBAt8QgghhBBC5ggW+IQQQgghhMwRLPAJIYQQQgiZI1qpNyB3hBB3ADgA4Fji
TSGEEEIIIfPL5QDOSim/b9Y7YoE/mQN79uw5/IQnPOFw6g0hhBBCCCHzyU033YTNzU0v98UCfzLH
nvCEJxy+/vrrU28HIYQQQgiZU57+9KfjhhtuOObjvujBJ4QQQgghZI5ggU8IIYQQQsgcwQKfEEII
IYSQOYIFPiGEEEIIIXMEC3xCCCGEEELmCBb4hBBCCCGEzBEs8AkhhBBCCJkjmINPCCGEEDIH9Pt9
nDx5Emtra9ja2oKUMvUmLSxCCCwvL2P//v04fPgwGo24mjoLfEIIIYSQmtPv93H33XdjY2Mj9aYQ
AFJKnD9/HufPn8f6+jouvfTSqEU+C3xCCCGEkJpz8uRJbGxsoNVq4ejRo1hdXY2uGpMR/X4f6+vr
eOCBB7CxsYGTJ0/iyJEj0R6f7zwhhBBCSM1ZW1sDABw9ehT79+9ncZ+YRqOB/fv34+jRowBG70+0
x4/6aIQQQgghxDtbW1sAgNXV1cRbQlSK96N4f2LBAp8QQgghpOYUDbVU7vNCCAEA0RueuRcQQggh
hBASgKLAjw0LfEIIIYQQQuYIFviEEEKiwmxuQggJCwt8Qggh0XjbJ2/BVW/+JP76S8dSbwohhMwt
LPAJIYRE4Xynhz/7zK04fm4bf/yp76XeHEIImYprrrkGQghcc801qTdlIizwCSGERGGr20ent2PP
OXu+m3hrCCFkfmGBTwghJAr9/sh73+vTh08IIQUPnT2Pk+vb3u6PBT4hhJAodI0Cn822hJBQXHfd
dXjxi1+MSy65BMvLy7j44ovxvOc9D+9///sBAMeOHYMQAi9/+ctx7NgxvOQlL8GRI0ewsrKCH/mR
H8HHPvYx7f6e/exn4xWveAUA4BWveAWEEMN/x44dm3l7bz++jvtOb858PwUtb/dECCGElNA3Cvpe
X6LVTJMRTQiZX971rnfh1a9+NZrNJn72Z38WV155JR566CF87Wtfw9vf/nb8/M///PB377zzTvzo
j/4orrjiCrz0pS/FyZMn8b73vQ8veMEL8MlPfhLPec5zAAAvf/nLccEFF+AjH/kIXvCCF+ApT3nK
8D4uuOCCmbe573lVkwU+IYSQKJi2nG5fotVMtDGEkLnkxhtvxK/8yq/gwIED+PznP48nPelJ2s/v
uece7f/XXnst3vSmN+E//sf/OPzeL/zCL+Dqq6/GW97yFq3AB4CPfOQjeOELXzj8vy+6LPAJIYTU
EbPApw+fkHhc/u//LvUmVObY7/9Pu/7bd7zjHeh2u/jt3/7tseIeAB796Edr/3/MYx6DN77xjdr3
fvqnfxqXXXYZrrvuul1vx7T0PFsW6cEnhBASBdOi41uxIoSQL3/5ywCA5z//+ZV+/ylPeQqazfGl
xEsvvRSnTp3yum1l+LbosMAnhBASBbOgp4JPCPHN6dOnAQCXXHJJpd93+edbrRb6/b637ZoELTqE
EEJqialQdSOePAlZdGaxvdSJomC/99578fjHPz7x1lSHCj4hhJBaYnpMqeATQnzzjGc8AwDwiU98
wvt9F1aeXq/n/b7pwSeEkAnceN9ZnN7wNzCE+GEsRafHAp8Q4pdXv/rVaLVa+N3f/V3ceOONYz83
U3Sm4cILLwQA3HXXXbu+Dxe+BQ9adAghc8Vff+kY/sNHvoP9yy184d8/Fwf3tFNvEhlgOnLYZEsI
8c0Tn/hEvP3tb8erXvUqPPWpT8ULXvACXHnllThx4gS++tWv4sCBA/jMZz6zq/t+5jOfib179+Jt
b3sbTpw4gaNHjwIAXvva1+LgwYMzbTcLfEIIKeEz330IALC21cVXbj+B5z3paOItIgXjFh168Akh
/nnlK1+JH/zBH8Rb3/pWXHvttfjwhz+MI0eO4MlPfjJ+6Zd+adf3e+jQIXzwgx/E7/zO7+Caa67B
+vo6AOAXf/EXWeATQkhIVFV4fbubcEuIiVnQU8EnhITimc98Jj74wQ86f3755ZdDlvjer732Wuv3
r776alx99dWzbt4Yvgt8evAJIXOFepA8t+W/EYrsnp5p0VlAD/6ZzQ5+/xPfxV9+/vbS4oIQslj4
brKlgk8ImSu0Av88Ffyc4CRb4D1fvhPv/OxtAIAnXHwA/+P3H0m8RYSQHGBMJiGElKBOS13fYoGf
E5xkCxw7vj68fYdymxCy2Pg+HrLAJ4TMFbpFhwV+TlDB15fhu6ZniRCysNCDTwghJai2bir4eTGW
g7+AKTrqMvwirmAQQuyYK5yzwgKfEDJX9Jmiky1U8PWivrOATcaEEDu06BBCSAnqQXKNTbZZYaZE
LKKC3adFh5CFompaFptsCSGkBE3Bp0UnK8wTWG8BFeyepuCzwCf+EEIAAPoLaH3LmaLAL94fF1Tw
CSGkhJ6WosMc/Jyggq/PAugs4PMn4VheXgaA4XRVkgfF+1G8Py6o4BNCSAl9puhkC5tsadEh4di/
fz8A4IEHHsDa2hr6/T6HqSVCSol+v4+1tTU88MADAEbvjwsOuiKEkBI0BZ9NtlnBJlvTorN4z5+E
4/Dhw1hfX8fGxgbuueee1JtDFPbu3YvDhw+X/o7vFU0W+ISQucKcZCulnOh9JHEYU/AXsMBVFXx6
8IlPGo0GLr30Upw8eRJra2vY2tqigp8QIQSWl5exf/9+HD58GI1GuWnGt0WHBT4hZK4wc8a3un2s
tJsJt4gUmDnPi6jgqxc1i3iBQ8LSaDRw5MgRHDlyJPWmkCnxfb1PDz4hZK4wfYxM0skH8wS2kE22
qoK/gD0IhBA7Pc/Hg2AFvhDiQiHELwkhPiSEuFUIsSmEOCOE+IIQ4t8IIayPLYR4lhDi40KIk4O/
+aYQ4nVCCKcEJ4R4mRDiOiHEucFjXCuE+JlQz40Qki9mEckknXwwL758n9DqgLbCRAWfEDLAd5Nt
SAX/XwF4F4D/AcBXALwNwAcB/CCAvwTwfmEYY4UQLwDwOQA/BuBDAP4UwBKAPwTwXtuDCCHeCuAa
ABcPHu89AH4IwEeFEL/q+0kRQvLGtIEwSScfesbV16Ir+IuYIkQIsePbohPSg38LgJ8F8HdSyuFm
CyF+E8B1AH4OwP+CnaIfQogD2CnQewCeLaX82uD7vw3g0wBeJIR4iZTyvcp9PQvAGwDcBuAqKeWp
wfffAuB6AG8VQnxMSnks4PMkhGSE6etmgZ8PpmC9iB58VcHf7i7e8yeE2KmNRUdK+Wkp5UfV4n7w
/QcAvHPw32crP3oRgIsAvLco7ge/fx7AGwf/fbXxMK8afH1zUdwP/uYYgD8DsAzgFbM9E0JInTCT
COjBzwfzvaGCTwWfELLDvDTZdgZf1TPvcwdf/97y+58DsAHgWUIIdRRY2d98wvgdQsgCYPoYqeDn
w7gHfwELfOUkTg8+IaTAtJfOSvSYTCFEC8D/OvivWpj/wODrLebfSCm7Qog7ADwJwBUAbhJCrAK4
BMA5KeX9lof63uDr4ypu1/WOHz2+yt8TQvLALBqp4OcDc/D1ZXjm4BNCCnyvaKZQ8H8fO422H5dS
/oPy/YODr2ccf1d8/4Jd/j4hZAFgk22+jE+yXbwCt2fMaSCEEKDmg66EEL+GnabY7wJ4aczHnoSU
8um27w+U/adF3hxCyC4xiyYW+PkwpuAvYIGrPmUq+ISQAt+WxWgK/iCy8o8A3AjgOVLKk8avFIr7
Qdgpvn96l79PCJlzpJQwbYy06OQDJ9nqz7mzgBYlQoidWlp0hBCvA/AnAL6NneL+Acuv3Tz4OuaZ
H/j2vw87Tbm3A4CUch3AvQD2CSEuttzflYOvY55+Qsh8YisYz3HQVTaY788iFriaRYcKPiFkgO8m
2+AFvhDi/8TOoKp/xk5x/5DjVz89+Hq15Wc/BmAvgC9KKbcq/s3zjd8hhMw5tkmAVPDzgZNs9ZP4
IlqUCCF2amXRGQyp+n3sDJ36CSnl8ZJf/wCA4wBeIoT4EeU+VgD858F/32H8TZGn/1tCiEPK31wO
4DUAtgC8e4anQAipEbZ6kQV+PvR69ODrFp3Fu8AhhNjxXeAHa7IVQrwMwH/CzmTazwP4NSGE+WvH
pJTXAICU8qwQ4pXYKfSvFUK8F8BJ7EzD/YHB99+n/rGU8otCiD8A8OsAvimE+ACAJQAvBnAYwGs5
xZaQxcGm4LPJNh+Yg88CnxBipzYFPnY88wDQBPA6x+98FsA1xX+klB8WQvw4gN8C8HMAVgDcip0C
/o+lHD97SynfIIT4FnYU+18G0AdwA4C3SCk/5uepEELqgN2Dn0+BL6XEZ295GH0p8ezHPQKNxpjo
Mddwkq0xyXYBexAIIXZqU+BLKd8E4E27+Lt/AvAvpvyba6BcKBBCFhNbjnBOFp3Pfe84Xv7urwIA
/uKlT8fznnQ08RbFhQo+FXxCiB3bCvQspBh0RQghQbBbdPJJ0fn6XadGt+9evARfs55dRAW/z0FX
hBALtWqyJYSQmOSu4Kvbt4jqtfn+LGKKjnoRSgWfEFLAAp8QQhzYFPzNTi+bYrq74PYMU7FeRA+6
ek3T6UlYWssIIQsIC3xCCHHgOkDm0mirDzlavMKOk2zZh0AIsVO7QVeEEBILl+MjF5uOVuAvoj1l
wVN0pJQL/xoQQuz4PhawwCeEzA2uFIJcCnzdorN4hd2iq9e2p7uIVi1CyDi2HrJZYIFPCJkb6mXR
WbzCbjwHf7FeA9v+uYgXeoSQcRiTSQghDlwexvVMojK1BJWA6vWdJ9bxqZsezE4dXvQmW9v+uYgX
eoSQcXwfD0NOsiWEkKi4DpDntjqRt8ROrxdewT+1vo3n/eHnsNXt43U/eSVe95OPC/I4u2HRJ9la
FfwFew0IIXbYZEsIIQ5cB8hchl11I6TofPPeM9jq7lw8fOF7x4M8xm5ZdA++bQmeCj4hBGBMJiGE
OHEdIHNpsu1HsOiow6NObWwHeYzdsugJMrYmOnrwCSEAC3xCCHHialLKpcm2G6HJVl0ZOL2RhzWp
YDwHf7HUa9sFTW59EoTkwNeOncQr//pr+H9vuCf1pkTDd5MtPfiEkLnBFTOWi4KvFrShLDqqCnR6
swMpJYQQQR5rWsznTAV/8RqNCanCf/rYjfjmPWfwuVsexk898ZHYv9JOvUnBoYJPCCEOco/JVIu5
TiD1Wi2ae32JtUyeO8BJtjaFLsR+sLndwy/+5Vdw9ds+h1sfOuf9/gkJzf1nzgMAtrr97FYiQ8EC
nxBCHORu0VEL3BgKPgCcXs/n5DjmwV8w9dp2Ag/xGvz3mx7EF249ju8+sIa/+cpd3u+fkND0DaFi
EWCBTwghDlxiaC4WHX2SbXgFH8ir0dasZRflxF1g2z9D9GKc3Rxd1J3ezOf9J6QqWr/SghwnGJNJ
CCEOVAVftZ1nM+gqwknLbFzNqcBf+Bx8ywl8O0CB39MuJBfrNSbzQV87Vi5GI7rv4yELfELI3KCe
FPYtjzIEcrHo9GKk6JgWnYz8q+a2LVqKTiyLjrZS1F2s15jMBzFmhuREvy/hWcBngU8ImR/UAuqA
krqQS4EfY9l5zINPBT8brAV+gIsc9cKJMZykjqirXYtg5fMdkQmwwCeEzBHqQfLgnlGBn4sHvxdB
lTJPhqcyUvAXfpJtpEFX6oVTCAsQIaGJYWfMiRDHQhb4hJC5QVWID+zJ3KITyJ5SKwV/AZbeVWxN
dCEU9p7yum7TokNqhpRSO44tghDgu8EWYIFPCJkjVIVYHYyyvtWFDHAAnZYYzY/jKTr5KviL0jxX
kMSDTwWf1AzzYxKqXyknQqxSsMAnhMwNagG10m5iqbVziOtL4Hwn/UlCbxyLo+DnlKJjbltfuqcP
zyOxBl0xRYfUGfPCfxEsOiGOgyzwCSFzg1rYNEV+STpa82Ogk5apCOeUomNTsEM0l+WK7SROBZ8Q
HfOadxEsOvTgE0JICepBstEQWGqODnE5FDoxYjJzzsG3FvgLcPIusDfZhk3RoQef1I1FVPBZ4BNC
SAlqo1JTCLRbo2lXuRX4oewp5snwTEYKvq2RbBFO3gVM0SFkMqaCvwgefMZkEkJICep5oNkQaDdU
BT99IWkWs6H91wCwttXN4uIGcCj4GbwvsbCdxEMULz1adEiNoYLvBxb4hJBonN7Yxgeuvwf3n9kM
cv9qAdVoCLQzs+jEiIm0nQxz8eHHGvSUK1YFP/AqTg4XtoRMwyLOywjxHFuTf4UQQvzw+vf9Mz5z
88O4/MK9+PQbno1GQ0z+oylQC+gcLTpm8R2iwLedKE5vbOOi/cveH2taFt2Db7UoBc7B79CDT2qG
eUyggr87qOATQqJx/Z2nAADHTmzgxLr/5k8tRach0MrMomMexENYdGyKeC5Z+FaLygKcvAtstXyI
56/e51YGF7aETIMpfJjBAb44tb6Nt/zDd/G3X7s7yP1PQ4hBV1TwCSHR0HLgAxy01YNkQ2SYomMO
eoqk4OeSpGN7yxdJwbc91xApN1oca68PKSWE8LtaRkgozGI3lDjzzs/dhj//7O0AgMcfPYAfevTB
II9TBQ66IoTUGn3QU9jittlAdhYds6E0TETi+OuaS5LOoiv49hShEKs4o8eRcrEuokj9MY8Jofbf
Ox5eH97+7gNngzxGVWjRIYTUGtVvHKS4NZpsVYtOiAuKaRnz4EeIyQTyUPCllA4PfvoLr1jY3psY
qzg52NMIqcpYGEGgAl/9nJzZTCuChDgMssAnhESh35dQj9MhDtpjTbaKRSeHPPBxi04cBT8HD77r
7V6k4tM29yB0Dj6Qx75PSFXGFfww+6/6OGcTF/ghVvJY4BNCojCWAR+kuB3dbjYElnKz6ERQVu0x
mekVfNcS9CLZR2LFhI7vZ+n3fUKqEitFR32c06kVfA66IoTUlbHhJSGsCUaTbU4WHZtFJURxaxsc
lYNFx3UCWyQPvq0HIUTxPabgMyqT1IixAj/QsTsni06I58gCnxASBVOtDpKiY8Rk5mTRsQ85Cl/c
AXlYdNwK/uIUn7EsOuZrSgWf1IkYvUpAXgW+7eJ/VljgE0KiEMOeoh4kc7PoWBNkIhR3QB4pOq4T
WOqVlZjY94EAF3kR0poICYW52hfOgz+639QFPptsCSG1xSxkwsdk5mXRsfqvI9gzgEwsOvTgW1+D
IM3mRoG03V2c15jUH/NYvQgKPptsCSG1pRNhiqtW4BspOqlVTNtJynxNfGArmE9vdCADLAFPg+sk
vUgefOs+EOEiL/W+T8g0jCn4gcQZ9XOSepWTTbaEkNpiHqRDK/iNhtAGXaX24FvV20gK/navj43t
nvfHmoaYCv637z2DV7/nerz3uru83/csWPswIuTgp973CZmGVB78lCJIiI8oC3xCSBRMxT5Ecauq
IE0BtDOy6NjV2zgKPpDepuP04Ac4ef/ex2/CJ779AH7zQ9/CPac2vN//brFOso3hwWeKDqkR44Ou
wuy/6rGy25dJRZAQfQYs8AkhURgrOgLbU8wUndQ2hVQZ6AWnEy9Bx0zReeDMeQA7w7W+dc8Z7/e/
W2y7IBV8QnTGB12FV/CBtD58KviEkNoynoMfVsE3LTqpJ6bam2zDFnf7llvD26kVfFcdH0LBV1eL
bn5wzfv97xargh8kKtWMyVycPgdSf2Ll4JvHnqQFPj34hJC6MpaMEDpFRwjNopOjgh+6wfLCfUvD
26kVfFchG0KdU/etWzIq8FN58FPv+4RMQ4yBgLb7TXmMpEWHEFJbxlTFIPaU0e1GQ6DdzCcH36ZU
h1Cv1RPFkX3Lw9unUyv4EXPw1df15gdyL/A5yZYQlfFzBS06u4EFPiEkCjEUfL3JVqClefBTW3TG
j+ChU3SOKAp+6mm2rqcaxKKiPNixExs430mbIFSQwqYF0INP6kW8QVf645xNWOC7UsZmgQU+ISQK
MbK5zSbbpayabMe/F9qecXh1pOCnPHkB7mX2EKsY6n32+hK3P7zu/TF2g3WSbRAPPi06pL7EEIOA
8QuHlAp+iOMgC3xCSBTMIiOIPaW0yTa1Rcei4AdRr0evwf6VUZPtZmIV22XRCe3BB4DvPZSHTcem
0kXx4NOiQ2rEuILPJtvd0Jr8K4QQMjvjyQgBUnSMJluRUQ5+igZLNUVnM/GgK+ck2yAefH3fysWH
H82Db9xnansaIdOQYtAVAJzeTNenFMKiwwKfEBIFs8gIXdw2G0BTWaRM7UOO5b9WT4Y5KfjuHPyw
rwGQT5KO1aJDDz4hGikGXQHAmc1ukMepQoiLGBb4hJAojCn4AQ7aWpNtowHFgp/cohNv0NXoPvev
tIe3U05pBEpSdDyf2Hp9CfOhcsnCt1p0InjwmaJD6sSYgh/Mg5+PRYdNtoSQ2jI+6Cq8gt/KyKJj
K2RDrGJ0M7XoxJpka7touvvkJta30qlzBTYFX0r/qxjMwSd1JkYOvpRy7j34LPAJIVGIYdFRD9gN
IdBu5mPRsSk0IeLf1JPhgYwsOi6FyreC77qQ+95D57w+zm5wFSo+C3Bb4cICn9SJ8dXeEJHK499L
mTQW4iKGBT4hJApmMRveoiOwlFWKTvwmW92ik1bBdilUvk9srgL/lgwabWMU+LaHYJMtqRPjTbYh
bGzj95lyGCALfEJIbYneZCtEVhadeB58xaKzko9Fx5mi47vAd7ymOfjwncO+PO6btuefevWKkGkY
a7INMRTR8pE4e74LGcAqUwXm4BNCaosZ3RcmJnN0u9HQLTqpFfwYKTqmPSOnFB2XRce7gu+4vxyS
dFyNxj4bbW2vJ5tsSZ0wP8NhkrbGPxO9vsS5RL06bLIlhNSWGNnGvRKLTmoVM4ZFR32IhgBWl0YF
fuoUHeckW8+vgfo6i9Hbn0UWfozXwL6fscAn9SHGoCvXfaZqtGWTLSGktsRo/FMP2o0FtOio99dq
NLDcGj3/rW4/2ETIKrgn2Xp+DZT96uIDK8PbJ9bT+WsLXCdxn/tmz3JfLPBJnYghBrnuM1mBTwWf
EFJXxi06IZIRdAW/3crHomMr5n2/BnpMqECjIbCn3Rx+L6VNx/Xydzyf2NRVkZV2Ew1RPL4MYgub
BtcyvM/VJVvhst1lky2pD+Me/LBikMqZDRb4hBAyFTGSEcwm23ZTTdFJW+TYFGzfFx1do8AHgL1L
SoGf0Kbjer9tivMsmBc5y63R88/RprXzfZ8pOlTwSb2JYuekgk8IIX4w1erQKTqNBtBuZKTgW56v
9ymuvfECf6WdR4Efa5Kt+j63mg0stxWbUidPBT+0B59NtqROxBh0xQKfEEI8YSaFxMjBz8miYzuA
h1TwWxYFf6OTLgtffapq86tvD37PeA3MPoSUuDz4PvcDevBJ3Ykx6Co7Dz6bbAkhdcUsPOLk4I8q
yeRNtpYDeGgPPpCPRUdVr5eU+NKQOfitpsCSUuCnVrLdg67C5uCzwCd1IkZMpktYSFXgMyaTEFJb
xnyVIXLw1ZhIIwd/u9dPNsQESJGis1Pg78mkwFcvcNSi2/fJWy2W242G5sHf6iaeBeBM0Qmcg89J
tqRGmMVuiAtUl7BwOlGBz0FXhJDaYh6kQzdONYVAsyGGSnaox6yKTa33vYqhPf9Bg7GaopMyC199
7dWi23sfwliTbUYWHYuFCvCbJMQcfFJ34ij4eVl0qOATQmqLeUANbtEZFFC52HRs6q1vBV8vIHcO
73uX8phm29cK/JAKvm7R0Qv81NN8R7fV7Qqt4LPAJ3XCPFZ2+9L76qvruHN2jjz4rcm/QgipE9+4
+zQ++o37hif1x1y4ihdfdSlWl9N+3M2CPoxFZ7zAX2o2hsrtdq+PPWha/zY0NmU1hgc/G4uO6sFv
hfPgmyr5UkYKvnpBt9JuYn3wfvj14DNFh9Qb2z7cl4CSeuz1MRpiZO9MpeCHWF1mgU/IHLGx3cVL
/+orOHteT0s5t9XFr/3ElYm2agdTrQ5u0RkUuO1WA9ja+V5KJTNVio5u0UmXoqNefKlNtr5TdNRi
udVsYFl52VMX+Godvxwo4cn2elLBJ3XCtg93+300G/7EGfV4fGjv0nDSNS06hJAsue/05lhxDwA3
3nc2wdbomAV9iKJDy8EXeVl0ouTgT0rRSZgD71TwPb8n6oVk27ToZJSDv9xW+xA8TrK1vJ5U8Emd
sAYS+D5OKPd3aHVpePv0HE2ypYJPyBzhWupP7T0Gxi05IYrtnsWioybpJFXwI8RkWhV8zaKTTsHv
RvLg6xc5DShvf/LPQc/xGvi06NhXipiiQ+qDPXHM7z6srigeVgr8s+c76PclGg2PfqAKcNAVIaQU
V8F4PrFyCYxvW4hBV2aKDqCrxdtJLTr2ZedQj9GwWnQyabJth/Pg6zGZQrMDpVay1aJCU/ADe/Bp
0SF1wlbs+i6ATcFh36BHTUpgbSu+EMJBV4TUnF5fBm10NKfFFqRWLgGbRcf/AU0tIgchMvlYdCIv
O9sm2aZM0ek5PPghL3KaDaFdTCT34Cv7wEorzGvgUj9DeHwJCYH1WBnwONFqCBxYGRlaUiTpUMEn
pMasne/guf/lWlz15k/iS7edCPIYWgGhFDZZKPhmk20ID37GFh1bgeV7e+wpOkpMZiYKfkgP/liT
bUYpOj27VdHPAAAgAElEQVSHgu9zZcG1IpJy9YqQabBFCntX8Hv6sXKlrQ7Ei/9ZYYFPSI259uaH
ceeJDZzb6uKDN9wT5DHUgnGfEouZhYJvFHI+h/sUqNcQRZNtOxOLjl2VCunB33neuVh09Em2o23y
f+I2m2zzmWTr8uD73A9cqUS06ZC6YA0kCBwpvBQo1Wo32+OLoAW+EOJFQog/EUJ8XghxVgghhRDv
cfzu5YOfu/69t+RxXiaEuE4IcU4IcUYIca0Q4mfCPTNCpkdVT0MpqepBcFUr8NOf3M0iJpqCn4lF
J0YyxOQUnZQ5+KPbIZtsuyUn7tQefGeB7/Gz4LpYYKMtqQv2oYCej5VSF0PaiXt16pii80YAPwzg
HIB7ADy+wt98A8CHLd//tu2XhRBvBfCGwf2/C8ASgJcA+KgQ4rVSyj/dxXYT4h31ABVKSVZtMKqC
n4VFx3jOfQnvaQW2JttcLDrWdBPPvtLJKTopC/zRcw056Eq9v3ZmFh3VpqRaAkKn6Ow8RvpjACFV
sB0TfM/LyE7Br+Ek29djp/C+FcCPA/hMhb/5Zynlm6rcuRDiWdgp7m8DcJWU8tTg+28BcD2Atwoh
PialPDb9phPiF7X4DnUA6TgV/AwsOo4Cd9nT8BLT495ojFt0civwpdz5ftPTRY7ZYAroCv5GJ11M
pvrS64Ouwq5i5JSDr57EV9phmmxdq0KpVy8IqUqMmEwzkKCtjMlN8Vmp3aArKeVnpJTfkzLApckO
rxp8fXNR3A8e9xiAPwOwDOAVgR6bkKlQDyihCk31MTQPfhYKfliLis2eA+gWnZQ2Bbd1wmeCyuh2
qzkek5m0yVZtMA2UIAPor2e7IbRm1tQXurpNKa6CzyZbUhdi2xkbDaH1BaX4rISY7J5jk+2jhBD/
uxDiNwdfn1zyu88dfP17y88+YfwOIUlRDyidbphCUy2WVOV2u9dPHpNns6N4LfAt9hwgH4uO6/X3
eWDvagr+oMk2G4uOPUUnZDpGq9nAcjMji47jIsfnfhnjQpKQkERR8A07Y+p5GXX04O+Gnxr8GyKE
uBbAy6SUdynfWwVwCYBzUsr7LffzvcHXxwXaTkKmQi1wQykEqhK41GxgqdUYHqy2e32seLLD7IbQ
HnS1eGoo0kUuFh3XCcpng2XPOGkBwF4lJnMjyxz8sE22ag5+apuK3mQbZtCVM0UnkKhAiG/sg648
e/CNFd+llmLRSXCesDUWz0pOBf4GgN/FToPt7YPvPRnAmwA8B8CnhBBPkVKuD352cPD1jOP+iu9f
UOXBhRDXO35UpTGYkIn0Ilh0tOEdzR3/cVHUnO/0tMa+2AS36FgiIoF8LDru5kefCr4lBz+XmEzl
eapFd8/zezIek6kq+KktOvbXwKsHnxYdUnOiWHSUz4Op4KcQgubaoiOlfEhK+R+klDdIKU8P/n0O
wPMAfAXA9wP4pbRbScjuUXPfYzTZtpqN5MM7VGzP2efroGfgj27nYtFxFXGhppgWCv5Ku4HCsbTd
7QdZCq6CNuRJVa+DKvgNIwc/JwVf3S+ZokNIgS1RJmycbvqYzNo12fpAStkF8JeD//6Y8qNCoT8I
O8X3T1d8nKfb/gH47tQbTYiFnpaiE8iDbzYYKkXE+YT2DCC8r9LVZNtqqjn4KVN07N/3qUypr2eR
IiSE0BttE+0Hrkm2/k/cuoK/lG2KjtpkG+YiTyW1PYmQqlhXe4OmbenHpO0EK70hYjKzL/AHPDz4
ulp8Y2DVuRfAPiHExZa/uXLw9ZbA20ZIJbQc/EAnW61xqAYKvt8BP+MRkYCu4Kc4cBfEmDBqLjsX
6DadNFGZbg++51kAWvydnoOf2qai5+Crg67CXOSpUMEndcEuBoWbGZKDgu/bqgjUp8B/xuDr7cb3
Pz34erXlb55v/A4hSYkRk6lbdPJS8K05+B4ParpFZ1Tcph5gUuBssvWaomNfxVCTdM5vp3kNNPtQ
UwxtQ8XAM1+Y6Ri6RSfxKpbDphRDwWeBT+qCTc0OGZPZMla7kxT486zgCyGeJoQY2x4hxE9gZ2AW
ALzH+PE7B19/SwhxSPmbywG8BsAWgHd731hCdoEWkxksB1+16OSl4NsKWa/+c5dFp5GHRceVkhCq
uFOfdw7DrswmaO198Vngq6sYTT1FJ6VFR0oJdRcIlSTkbrJlig6pB/YUnZAWnQwm2QZ4yKApOkKI
FwJ44eC/RwdfnymEuGZw+7iU8jcGt/8AwJVCiC9iZ/otsJOiU+TY/7aU8ovq/UspvyiE+AMAvw7g
m0KIDwBYAvBiAIcBvJZTbEkuqAcN32rE8DEynuJpK679KviK/9yRg5+yyHG95z5PXOayc0EOSTqm
57XZEMP3P9xroKdjpLzI1QbriHDxre6YTCr4pB7EyME3xRCJtJNsfceAAuFjMp8C4GXG964Y/AOA
OwEUBf7/A+B/BnAVduw1bQAPAng/gD+VUn7e9gBSyjcIIb6FHcX+lwH0AdwA4C1Syo/5eyqEzIZ6
QAnlBS6LCExp0en3JWzH51AZ8KqCn1qZKYgRk+lS8HWLTqImW6lfgO1Eme68HzsrOX4iXNULqXaz
kU0Ovnnhoce3MiaTkILYHvxGQ2jnjDQKfs1y8KWUb8JOjn2V3/0rAH+1y8e5BsA1u/lbQmLRjWHR
ybTJNob/PHeLjrp9rYYYPne/jcb210AbdpWFgq+fUP0q+HqjcS4e/LELnGaYJltXsx49+KQuRMnB
N44TrcQrfSHSi7Px4BMy76iFXF+GuWLXE0TyUfBd6ovfHHzdAlGg5+CnTNGxRyT6vMjpV1DwU02z
VV/6RkOE8+Abzbz6oKs8VnB2CgpFMQz0/BWnGmMySW2I4cEfs/IlTtvyvUIBsMAnJBpmERNCUdMz
wPNR8F2FtVfl0qHgtzOJSVSf63Ig25B20mraYzKTWXSMAjeYgm/EZC5lUuBrKU8NgXZDVfDDWNX2
aFn7bLIl9cCaouO5wDePR8uqEJRk0JX/+2SBT0gkzGI2RLFZFpOZ0p7gKuBCTXHVmmxzsei4FHyv
Hnx7Dr6WopMoB1+bUyBCKvjG0ntDDFd0en2ZbB8wL0DbrfAe/D2BhmkREgopZXwFv9nQPo8phKC5
jskkZN4ZU/ADqARmTOayqtwmTNFxFVWhcvBdg66SWnTUDHR1yJHHixxnik4GFh1TwVZXGHwOedEU
/GYDQug+/FSrOFoPwrDJeIdQF3nqhSQtOqQOxJrjYH4el5rpLoZdFzWzwgKfkEiYMVghik3Tf7yS
iYLvbrINn4MfKo5wWtQDuD7kKEKKTgYWHfP90Qpcj/tBx/gMAMgiC19rsm0ItDUPfiAFf4kKPqkX
LiU7pILfMj6PsS+GQzTYAizwCYlGDA++ep/NhshIwY8bEakV+Injzwq6mrIaXsFvOC066VN0GoZF
x+fJ22ZTyiELv2sq+KFSdBwWHcZkkjrgtnOGy8Efb7KNu9KrngPUxvhZYYFPSCRiePDHMsAzUfBd
CqXPwkZVSJuOQVcpLTrqS6A32YaJSNRTdJSYzFQWHUPBb4by4BtNtoCh4Cf6HPSNgkK/8AyTokMF
n9QNV4EfcpJtq2kU+JGPEfrp0V+FzwKfkEiYSm3oFJ2WoeDnEhGoEqzJNkOLjvpcVYuOz4scVw5+
DhYdM8JVjYkMNcl2aNFppfeim4qhfuHp8XPQsyv4nS5TdEj+JFPw1YnnkY8Rqi3Jo4DPAp+QWIw3
2fo/4XYMBX8lkxx8VwHjt8nWoeBnYtHRU3TCWHSqpeikV/AbQmhNwH4V/PHXIIcs/LEeBOUCJ9Sw
M6bokLrhLPA9779mqtdSoFXVKmghA7ToEFI/zANXCIuOueyYi4LvUqljTHFtJzxwq7hiMkPZMzQF
P4MUHVMxCzVh2LzIBWBk4ae36DSEYR0L1IOgvu9bLPBJDUhh0TFX1KjgE0KmwizkQjfZthqGBz/p
JNvwy649I6WkIFQhOS3qc1Xfl1BDjtSUmhwsOrqCjWAefFuztf45yETBD7Rfdl0XkozJJDUgxrnC
vD/Tgx97tUs9ZrHJlpAaMh6TGcKDr6qXIptJtu4cfH/bpFt0Rt/XlJkMFfzQxS1gWHQ6aQZd6Qp2
uBQdrQ/F4sFPpWSbKULq+9OX/l4D9yRbFvgkf9Io+I2kSVv6c2OTLSG1w7SpBCnwVQXfSNFJ6cF3
qjIRYjJTKjMqbotOKAU/Lw9+11hdCJaiY1nFyELBN/ZPIfTGPl/7gfr89y6FsYIREooYgQzm47TG
YjJp0SGETIFZxGwHbrJtNTJS8F3TCT0etM0mzoJcLDr6oKswGej6+PXR81b3g81UTbZayhEMBd+j
RUWbZDvIwc/Ag2+7ANUabUMo+EvMwSf1wjXoyudxEjBmhgS62K6Kemz0WeG3Jv8KIcQHpjIRPCaz
qdsAUimXgLuw9qvgj25rTbYZ5OBLKd3e6EBRobqCPzrUb6Zqsh3LwQ9zkaN+rtpDBT/9ha45BwAI
c/HpWilKFQ9KyDSkiMlsNYUWxhD7s6I+N58KPgt8QiJhFvRhLDq6PUGpH3A+5aCrCCk6ribblEuv
Beq5aSdBRVGvvSr4+iTjghwsOtoFWNBJtpYm23a6k3eB+fyBMBef9OCTOhPLg28mjqVU8H0/twJa
dAiJRAwFX1WDx5psEyr4rgOYz3hAVw5+Dhad8YjIMBnwrhSd5VZjmM6w3e0HO6GU0TcuwELYU8yV
kqxy8C2D2NTXIIQHf89SHv0nhFQlloLfN44Tbe2zKHXbTGDUY6PwGKPDAp+QSJgn2BCJLj3Nf2w0
2SZU8F0NUqEiInPLwR/PXA4zfEtXpUbfF0Joam4Km45pHwqh4OtJNaNCOgcPvmbRsSj4vmxKWg5+
oHkLhITCreD7HnRV3vQec7VX/eyzyZaQGjKm4AdQElVFvG022SZU8N0WnUA5+IoKkuqgraL1RjQa
aAUo7IDx6DcV3aYTPyrTVLBDTLLVs63VFYz0nwPbBag+7Mq/gk8PPqkbzkAGzxeoPYudMVXiWt/R
WDwrLPAJiYR54Iodk7nV7UEGOpBMQj2YqtsUzKKjHNlysOiotVtD6Nvks8m2a6QoqaiJKimSdLQC
d8yD7+c10BtsR/e/nEEfhtWio+2bYT34TNEhdSCFB781vOAefR5jXhBz0BUhNSdOga8nA7SajeHB
qy/TLdOrj6sWmqGabFV1eGf5dee2z4FC06CnGzWCWDMAt00JQHqLjpmiEzgisuko8LNQ8Aeb1gqR
g+/4rNGDT+pAihSd4nyxlMjO6fu5FbDAJyQCUsqxA1cID77WZGsb8pPIf6wW8qF8wS4FXwhhpJXE
L3TGmmy14tanB1+1ApkK/ig0LUWSToxJtur+1NYsOuk/A7YL0KUAvRjOFB1adEgNiOXBt0UKa1PP
I35etCZbTrIlpF7YrtBDK/ijiMDRSf58IvXS5Qv2WdyaFhAV1a6RpMA3GizVhBufFzllCv7exMOu
xnPw9dQKL4/hVPAzyMG3XIBqvRgB+hBW2GRLaoZ6nFgKtNIJ2I8VeqRyvGOkdlFDiw4h9cKmSvhW
1MyIwMJPuJKBeuks8L022Y5uN4ziNnWSjnnhpXo9Q9mUWkaTbUoPfr8vobZ/mH0IQTz4qoKfQw6+
ZdCVlqbkabu0FB1jkm2qHhxCquLq1/JtYzFTdAAjkCHApHkXmgff4/2ywCckAjEUfFvsF6Ar+KnU
S92iE8Yuo6UimAq+pgSltegUvRHD7fGZg69eSDRNi46SohPZg28Wt0LESNFxePBTWXQMixJgpuj4
fw3aSg+O+TNCckQ9PKsX5mE9+DYFP1GTrcf7ZYFPSARsRaVvD74rQUXLwk/QXAmUWXR82lNGt017
imrRSZEmYlp0QlmGbMkQBSst1aoVucC32Kc0BT9ABry6DyxlMOiqb1XwlQLfm4Kv7wOpfMWE7Ab1
M6wq6t5z8NXEOYuCH9PKSYsOITUmjoLvsifkoODbG/98qunmpFSV1BYdUy1Si89YKTorihq2FbnA
19+bna/NAMqy1mSrTfJNn4Ov2bSExaITYJJtyKFqhIRA3X+XA9k5gZ1EtQLbBXeymEw22RJSL2wH
J+8FvhGRWZCdgr8UpvGvtMk2sUXH9OC3AlgzgAkKfsJm64kKfsyYzAwm2Q5z8APsB6aCn8p2QMhu
UPdf9XPrPwdfHz4IJLTocNAVIfXFlhbju8DvWA5YgF7Y5eDBV60ioVJ0TAW/ldqiU6Kqem2yrZiD
n9SiYylu/Sn46iqWPUUn3aCr0W2rJcDDZ9OM4202zIhYevBJ3rgK/JAe/OJ0qRX4HHRFCKmCTX3w
3aXf1TLAXUN+0iv4e5bCRJ/1pVvBTzXApEBPt9FjMn2+Bl2HBx3QLTqxB11ZC/wAKTq2ZAzA8OCn
GnRlU/A1m9Ls22W+zkLoCj6z8Enu6AV+GDFo5/7GE8eWsrDo+IMFPiERsBWVsSw6WSj4anSfms0d
KgffOLJphVQSBV8vvDVfdLDXICOLjqXBNIQHX/8MuAZdZZCDX3jwNUvA7K+B7QJH8xXTokMyRz2G
qRenvhrxAXtsr/l4MftV+rToEFJfrDn4kSw6yxmol2rhFS4Hv6TJNnGRoyccNXR7ilcF352Drw08
i+xDV69hiohI9SLUl79WbzRXVrHUBuMMYjJtuds+Ljxzms5JyG5Qj+OhLDrmiqqwNL3H/Kyo5wDh
0aPDAp+QCNiK+aAKfkNV8JUm20TFTcdR4Pu0y9gU0oKcLDqNRpgGU5cqVbCSsNk6moKvFdH2FJ1U
Ra7WZGtpNPZxPLAP72GKDqkPmkUnUA6+a6UzlYLPJltCaozVg++50FQPSLo9IX1EYM9h0fHbZDu6
bdpT0lt0dGW9HSBv2UzQMZUgddBV7P2g1xs/oYbIwdf6UDLLwe9aLGS+41snKfhssiW54/TgB5oX
op4r1M9KzONEnx58QuqLNQff8wFEPTC6mmxTxWSqEYChLDq2QUIFIQrqaTBPKKo9xZcyVea/B/T0
ouhNtlYFP8AkW+W9dcdkprrIHV9d8D3wTG+yHjxG4n2fkGnQPPjaoCuPCr5FcADSxWRqxz+m6BBS
L2zqQ8hBV7pFJ4MmW+W5qik6Pl+DsgLXdzPjtPSNbVOHMPl6DUxfqclKLjGZFnuKr5WcrnaRO3qN
Ww0xtCz1+jLJKk7fpuB7Lr5tCn6q6D9CdkM3gkXHda5c1mJr450nVHGKCj4hNSNKk22lBJH0DYZ6
Dn6gJltz0FVii06pgu/pgsOlShVovRhJJ9mG9OCrNrXR/Qshkmfh9ywxrr6brc2BakD6BnNCpiHG
oCt9RXH0GPpnJd4xUs/BZ5MtIbXCNqXStx/WlYOfMh6xwNVk2+tLSE8NRqZKrpLapmAqq7pFx5d6
be/BKMh6km0AD765D6TOwlf3z8aw+PY7gE29kCr2saUWm2xJfXDFZHY9nitsK13m48XsV/E9pbeA
BT4hEbAN8vGtplWKyUyk4JvKqp4eEsCDbir4iVN0ukZxp1t0/Jy4JnrwEyr4tinDoVN02mZMaGIf
vk3B1wqYCDn4LPBJ7piBBOpxwlucrkMISBUpy0FXhNQY28k7VkzmslbYpc/B38mB969gl+bge25m
nJa+oRg1FE844OfEZabomOTiwbelu3ibZKs22Tb11yB1Fr66240m2Yb34LcT+YoJ2Q2mUBFCCKgS
kxlTBNBiMtlkS0i9iJGi0+3Z/ceq5z2dgq9bB0wF2wdlk2xTq5g2ZVXzX3s4cWkqucXHqRX4kRVs
28VXeAXfKPATZ+Gb04wB/xYd9UK6YVklSPX5J6QqZuJWiJkhLjEkWQ5+jwo+IbXFWuD7zsHXimjF
otNOa00AjIuPsSZTTwp+SYGb2qKjFXfF1MSAQ45azbwUfH0I2c7XICduR6M5oEfuJbHoKA9pU9d9
WHR6ln1g33Jr+L31bRb4JG9iKPiuSOWlVBYdpugQUl9sRex2r++tach8DLV4VBX8VDn4Znyhb/Ua
mJCDn9iioxV3zTAJKjaFWMWcZOtz35uEbUlcO3H7arItsSmltujYJtn6Xlmy5eCrBf65892ZH4OQ
kJhW0xBDCl0e/GQKvpaDzxQdQmqFq4j1m+2bs4Jv5sD7L7hLm2yTp+iU2zM6Hjzokzz4rWZj+P2+
jBuZaIswVfdRH88fcNvUAKPJNkEviu0iR93GUJNs1QJ/7Xxn5scgJCTmhXArwLArlwefTbaEkKlx
HZh8FpuumMzlVgYxmUoB124K7+o1YG9iHD6m57SSadGL751t8a1g6xdR9kP7nkRRmTbrSDvALIBO
3/0aLLfSDnyz9SEseVfwxwuXfStKgb9FBZ/kTVniWpB5GRlMsu0FWk1lgU9IBFxLiz5TLbqOmMyV
xNYEYDz6LESKTt8SQzh6TL/NjNNi6w9Q3yPv/muLgg8Ay+pU44h2rUnP398qjt2mBqRLyCjoW1aY
NA++h8+BbR/YT4sOqRHqocD04IdW8JN58NUmW6boEFIvXMqDz2JTn2RrV/BTWBMAm0UndIqOu7hL
PujKomD7tujYPPiAmYUf73Ww9UdoCn6EJtvU8yBsKU+aRcfDxf4kBf8cFXySOWYgQQgF3xScCtSh
cFTwCSGVcCm0fi06qg3G5cFPo+B3jG1rBbBn9Ety8H2r5dMyMSbTwzZpU0ydBb4alRlTwR/dblo8
+N6a58qabFNbdCyrGJrn10sO/rj1QGuyZYFPMqdMwQ+RuKYr+KNjREwhqK958NlkS0itcCkPXgt8
x0ErBwXfVLBDNFiWN9mmtejY7Bn6NF+/GehVFPzNiJGJtkm2IaYZlzbZJm42V1U6ax+Cj1UcSx/G
/hVadEh9MAMJ2gES11znyraq4Ec8RqjbQ4sOITXDNanTZ4GvqeRqTKZqy8hAwW8ZKTr+mmyrWnTy
UPDbntMhbDYgkz2JsvAnTlj19DnolCj4qfy1BZMUfB8WHXuKTnv4PTbZktxRD88pPfgxzxN9WnQI
qS+ug8W2zyZbh//YPGj5OkhOg158mhadAE22pRadxB58S0SiF/XWkoFukmqarS1BJoQHv1fmwc8o
Bz9GVGpzcN9U8EmdMBX8MCk6diEgi5hMKviE1IsoMZkOBVcIkbzB0FRWNeUyiCqj/0wrpBIU+F2L
RcV3o3GlFJ1EQ8+sFqUgCr49/g5Ib1WzWch8r2LY9oG9S81h0bDZ6SXZ/wmpijnoSlfww3rwlxMl
bfmch6PCAp+QCLjUuWBNtoaCu9JOW9x0DYtOiOmEao3cMD34Wr5x/BUMWwOs70bjrsUCYqKn6KSx
6FhTdALYtEoHXSWx6IxuNyw2Jd/7QPE6CyG0Rtt12nRIxowNugqcuKYeJ1KlrbHJlpAa03NZdCIo
+EDa4qbfl1AFimbDaLL1laJT4sFvJ7bo2BpgfTcaV1HwV1J58G2TbNX3xNskW3v8HaB/BlJ48G1z
GlqeV5ZsKTqAnoW/RpsOyRjzPKZ+RnzZS9XjjSqGJLPoqE+LFh1C6oU7Rcefmqw1sjbdCn7Mwg7Q
n3u7KSCE8J4eAtibGNXHLUiTg6/7SgF4bzS2+a9NUk2y7VvsU/p7IiE9NJqZzdwqqW1qNnXdd+Ov
/hij+2YWPqkLPWMfbgbw4LvEkFQKvnp+8Fjfs8AnJAauIrbjUSVQi0RzimdKBb9rKW5D5NKXpei0
E6fo9CwWHf/+a3dxW5DKomMrPIXwn5BhNnOrpM7Bt60wtTxHALoKF2bhk7pg9qq0AnjwXRfCZkNv
39MFxSS0JluP98sCn5AIxGiy7VgK6YLlRIUdYCj4g4Opb2sCoBfRZRad1JNsixNK27NlpFoOfiIF
X44r+ID/LPxOmU0tdQ7+hD6EkLMQ9q2MojKZpENyxvycNAOIQX3HhbAQQlPxY81M0R6GFh1C6oUz
JtNrk61qhTEsOgnVSz2+czxBxteya7/MotPyf0ExDXrhtfPVtz1jag9+1Em24/5zwFjF8NKH4F7F
0F/v+BYdWx+CmaQ0q03JtQ9oHnwq+CRjzAI/dEymaWdc9jxdugq6RYdNtoTUClfOrU+7iGqFKVcv
Iyv4PXVlYVzB95eiU6Lge04rmRZ923a2xbdSZHsME9WqlXqSLeA/SadT1mSbWMG3WXQaRgzgrAWM
q3BhFj6pC2avSivEvIyyqecJmvFDnZJY4BMSAfXApDY6+p1k6y5uVlpprBnAeJPtztew0WdjB+1G
fFVGxaas+k51qaLg71lSV3Ii5uBbEmQAw4PuxaJScpGbOgffYVPyeZFji2MFdA/+2vnOTI9BSEjM
gXDhPfjulb5Yq719hwA4KyzwCYmAWnjsXQpT4PcshXRBWgV/3KKjL7t6mmSrqcT6z1SLToqIRGuC
imcFv5IHP9GFnktZVpvBfQw8K7vIUS+oYtqTClwWMp8Xn/o+wBQdUj/GB12FCGRwW/lSnCu6TNEh
pL6oBY7qg/Z5ACmNyUyo4OvTRQuLTgAFv6JFJ0mTraX4Tu7BTzzJFvCv4HfK+lBSD3tzqIZtj9F8
rsJlH3PwSU0oU/D9WXRGt00PfhoFP8z9ssCfA7a7fXz59hM4vbGdelOIA7eC79GDXxaTmVDBtxWe
YaaYjm6bFp2lxEOObBcfvoeqVMnBTzfJdnRbLW5bRhb+7I/jvsjTnnuKJlvHtulTnT168NUmWyr4
pCaY+3AziAe/pBk/QSCFpuB79Oi0Jv8KyZ3f+eh38F+/chceeWAZn/s/nqN5TUkeuBR8nwqB3mTr
zgCPruBbVhZCTDE1lR+VpQArBtNgu8jx3mRbKQd/tB9sJp5kC5hpSh4UfOU+xmxq6mcgYoNxgWv/
9Lm65LqI2LfMmExSD8xmdFWs6nk6X7py8AFgSTlusMmWJOXhtS2876t3AwAePLuFm+5fS7xFxEYv
QoHfsXjdC1JO8TQ9lYB/5RYoV2+XjOgzH1NTp6Gr9QdYCnzfCr5DBUqWg+9Sr9X9oDv7e+LyoANm
RMK75dsAACAASURBVGjiHHwtKtRfhGvXYdOiB5/UBfM41gwQqVwWyLCUYCii1mTr8X5Z4NecD339
Hm2nP762lXBriAu18FAtOl5z8EuXHZWDlodCahq0omOYouM/JrNvKaLV/6uPGTtJxzZYxb+CPzkm
M49JtiFz8N19CKmee4FamzScCr6/HPymy4PPAp9kzFgOvnLc9jHtGrCfkwp8Wyen3R4OuiIAACnl
UL0vOH6OBX6OqMW3FpPpsdjulsRk6gp2uhz84STbEKqMI4qxwHdT6zR0LVOGlwN68M2TVoHWaBrx
NXDbU3zn4KsWnRIFv9OLvopTadjXzAq+/SJfz8FnTCbJl/FJtv49+K4VRcBU8BPEZHq8Xxb4NeaG
u07htofXte89TAU/S7Qc/EAxmXpxk0+TqU299WlLKCiz6ABpBpgU2Io73+/JpOcPGB78RIOutBQd
LQIv7GvQbjaGRW9fxu/FcG2bz8+CaxVHLfCZokNyxrSZ+WxCdz2GinrBHUsEUcUpn022LPBrjKne
A1Twc0U9MIUadKXZEwz1MsWyY4FNWW4FmCzbdzRyFqRstO1ZXgPvKTqWXgeTlURZ8K5JtpoH34M6
V3aRC6RrMgbKpvn62y9d+4Bq0aEHn+SMdhxvCE0E8DXoqrRfy7N1ctrt8QkL/JpybquLj33z/rHv
Hz/HqMwcUT/AaoHv8wDSKSnwUhy0CroW24S6fT6818BkBTvlKoZNWfW9FNyz2IBM1NWjqDn4mn1q
9P225xz8sgmVgO7D34pd4DumzLY89qO4PgOrS6MCf2O7F6ygIGRWtGnUhgffl0XHZpksUK2TnVgK
Pi06ROXj37wfG4MldvVkQYtOnqhFbLAc/L7bf6wXt+mabG0Z8D4UfCml3sRoOUrqFzmR+xAmWXR8
FPiOAlLFHHgWy4deJQPex2dBfZ3NzwCQNi7WOcm26W8/cPVhNBqCKj6pBepx3PTg+7ownWTlK0ii
4LPJlnzh1uPD2y986iXD27To5IkWk6kW+B4Vgm7FmMz4Cr5adI3HZPrIP9fsD8LuY1xK4K0ssJ1Q
fG9PlRSdRkMkeR1c2+Z7wrCp/ploKxixB75VyMGf9WK3rHBhgU/qgKmu+xYBgPK0rRRNtlTwicZd
JzeGt3/yCY8Y3n6YBX6WaDGZwXLwx9NqCvQEmdjqtVp0jafoeJlgWjLkqmA5E4tOcXHjPQe/ggcf
0Kcax7Lp6IXn6Ps+L/T6fTmm/pmkjMqMk4PvvsDRsvDZaEsyRT0MjCv44QddpehX05psPZb4LPBr
yj2nRgX+D15ycHgwXzvfTZLxTMrRYjKD5eArB60Msn0LbIWn7xx89bhva7Ddecw8Cvxi+3xfcFRJ
0QHSDLtyTrL12WBqqHK2VRzVohQzRQgw5zSMvq82nM/aaFy2iqMr+IzKJHmiKfhC6IEMASw6ZQp+
rBXOPi06pGBjuztspm01BC4+uAcX7lsa/pw2nfyIMcm2TMFN2mSrqoq2FB0PB+0qCn6KCYUFtlg2
317PKjn4gN7kHUsMcOVO+8zBnzYmNPY0W9c+uuSxqa8s/o9RmSR3zF4q06ITYtCVORQxhUWnS4sO
Kbjn1Obw9qMu2INmQ+DIvuXh95ikkx8dbZJty/r9mR+jYpNt7Em2WrrPYLvaDX+2BKB89HhByiZb
qwffe4pOVQU/flRmzzhpF+gDz2Z7Dcr2/4JcLDqNQBadsn1AG3ZFDz7JEFsvVYhBV70yMUydeJ5C
wfdI0AJfCPEiIcSfCCE+L4Q4K4SQQoj3TPibZwkhPi6EOCmE2BRCfFMI8TohRLPkb14mhLhOCHFO
CHFGCHGtEOJn/D+jPLhb8d9fengPAOgFPpN0ssMVk+lzyFMhEApRnu27FVnBty2H+s7B75coMgUp
J9lG8eAbS9suklh0HLF0Wg6+zwz4CpN8Uxb4ekymP4tO2SqeatGhgk9yRF+BGo9U9mHnBMpXfJM0
2WqDrvzdb2gF/40AfhXAUwDcO+mXhRAvAPA5AD8G4EMA/hTAEoA/BPBex9+8FcA1AC4G8C4A7wHw
QwA+KoT41ZmfQYZoBf6hvQCAi/arCj4L/NxQDxSaB99ToalFZFoSVFIWtx0t2WRw0PY84Ghai07s
FB1rTKbn96Sygp/Ah+5uMPWXg1/WYFqgFvhbEWMybdaDAp8WnfIUnfbwdt2bbLu9Pt744W/hFe++
TjsfknrTtxzHgyj4FSfZxjpX6had+jTZvh7A4wAcAPDqsl8UQhzAToHeA/BsKeW/kVL+O+xcHHwJ
wIuEEC8x/uZZAN4A4DYAT5ZSvl5K+RoATwdwEsBbhRCXe31GGXC3YtG59PBOga8q+MzCz4/QCv4k
9VJv6EyXAV/YEdSLED9NthUK/IQXObYTl38Fv5oHfzmFRUdtgnbm4M9Y4PfG1T8T1aITc5Kt1kNn
xLhqCuWMNiVbv0uBmqKzVnOLzvu+djfe8+W78JmbH8Yffep7qTeHeGLSzJQQHvwcJtnW0qIjpfyM
lPJ7sto0lRcBuAjAe6WUX1Pu4zx2VgKA8YuEVw2+vllKeUr5m2MA/gzAMoBX7HLzs0VVLB59qLDo
sMk2V6SU2gFlT4BBV5MiElMM7yiwqYotj82VgKHgV/DgR2+ytaxiaHn03j347kO7rmJHarJ1vD8t
jyk6lZpsW2ksOmU9Im2P+2XZPrB/eX5iMt//1buHt7967GTCLSE+sQk1YRR89yRbXQiKc56oq0Vn
Gp47+Pr3lp99DsAGgGcJIZaV75f9zSeM35kbbAq+btFhk21OmI1DywE8fpMaDH2rxdOgWXSKJlvN
ohPHnrKUcBVD2wca49vT6c0+VbZqDv6eJB58V4KMP/VamwNRyYMf73OgXuCYPSI+G87LUnS0HPwa
x2R+94Gz+MY9Z4b/v/PEBkWtOcGmrAdJ0enlo+D3lf4537Qm/0o0fmDw9RbzB1LKrhDiDgBPAnAF
gJuEEKsALgFwTkp5v+X+inW7x1V5cCHE9Y4fPb7K38dCSol7bB58WnSyxWwc8j29E5hs0UmrXisW
neFB23eT7ei2S7xeSrmKIfV9ABgNcSkapLt96SxMKz3GblJ0kgy6siv4s+4HukXJvhOkmmRbquB7
PB4swiTb9ynqfcE/33UaP/nERybYGuKTSQq+r/Nl33I8LvDZE1OFKv1juyUnBf/g4OsZx8+L71+w
y9+fC85sdob+yT3t5tCac4RNttlieqNDeMFtjawqKRV82wCutu+IyCktOilTdFwNlrNuk34RUS1F
J5YP3VngexxDX2UFQ109i2rRKTmJh7LolCn4dU3R2er28KGvj+d1fP3uU5bfJnXDFkagns9iePBj
21mrCjO7IScFPylSyqfbvj9Q9p8WeXOc3H1yZM959KE9w2YtrcmWBX5W9IzlwHbLX1FTMKnBMmWD
qeo/L5prfWZ/A6YFJr8C33VCWWo1hkX2dreP1eWxP535MUxynWQbssG0IFVMpnkMUPHZaFyagz8H
Cv5/v/FBnN4YtxfdcOfpBFtDfDOxXyvyJNsYMZlVZrjslpwU/EJxP+j4efH94pM87e/PBXefUjPw
9w5vX7CnPfxArJ3vRs94Jm66hj8+jEWnPCLQtKfM6veeBtvFx3JTafT0UGy7mjhV2p6bWqtieizV
t8en37PXL1/FKVhJoGK7Uo685uBXaDJO5cGPlbttyxEv2L8yismsq4Kv2nNectWlw9vfuOe0N3WX
pMNa4Ef24GvniQhCUFnfzKzkVODfPPg65pkXQrQAfB+ALoDbAUBKuY6dbP19QoiLLfd35eDrmKe/
zugZ+HuGtxsNwSSdTDGVVT0WT3qJyNKjKMc/1g3jcWN60G355N4jIksO2AXLiab5mtYZNSLR58pK
ldcAAFYS+ND1Anf0fTUu1WdMZtvx/FNNstUGsQlTwffXh9Cz2OEKtCbbGhb4J85t4Qu3HgewkzTy
q8/9fhw9sAIA2Nju4eYH1lJuHvGArdgNnYNf2mQbocDXwgFafkvynAr8Tw++Xm352Y8B2Avgi1JK
tXIt+5vnG78zF7gUfMCYZssknWwwD1pC6D58HykyVaZ4pmq01betMbYtVVYUvnbsJF7zX2/Ax79l
66c3UkqqePB7aRosTfuQXwW/Wg6+GhUZa9hT36Gu63Gpsxb4ky06e1JZdBwXOIBuV5t1HyibZlz3
Jtv7z5wfroRd+Yh9ePShvXjaY0YtdvTh1x/bvJCW55kpQPlQvBApd6XbUjH9bDfkVOB/AMBxAC8R
QvxI8U0hxAqA/zz47zuMv3nn4OtvCSEOKX9zOYDXANgC8O5A25sE3YNfUuAzSScbbIVH26M1AdAv
Elz2jFQe9I7lANZsiKFVpUiQKeM3P/Qt/N237se/+9tvWKevVorJTNSHULYE67XJdhce/FiTbG3N
c4CRIDOjOldmTylIZtGpmKLjVcGfkKITarhOKNSG8OK5PPXS4WmfPvw5wLYK2Qxg0XFNlQbiT7LV
4339luRBm2yFEC8E8MLBf48Ovj5TCHHN4PZxKeVvAICU8qwQ4pXYKfSvFUK8FzvTaH8WOxGaHwDw
PvX+pZRfFEL8AYBfB/BNIcQHACwBeDGAwwBeOxh6NTfoCv4e7WcXMUknS2yFR7vVAAbFVafb3xnJ
NstjqPYEl4KfqMDtOZofl1qNYZHV6fWdBzcpJW57eB0AsL7dw4n1LTx6Sb+47ZXkjKuPVxD3+cdZ
DnYV0SYrSSbZjs8BAPR9dWYFv1KTbaJJto5JvoDfmMyyi8lmQ2DvUhMbg+PO+nZX8+XnzoZyMbp3
aad0oYI/X9gU/HaAJttuiSAWu8nWnN9x3uN9h07ReQqAlxnfu2LwDwDuBPAbxQ+klB8WQvw4gN8C
8HMAVgDcip0C/o9tE3GllG8QQnwLO4r9LwPoA7gBwFuklB/z+3TS0u9L3GMZclVwhFn4WWLr2Pfd
aGublGqSTMF3KKtLzVGBv93tY+/S2J8CAM5udrXXcMOiOmsWEEdtm2IEOVA9scGnRad6ik6CSbZa
TKbHHPxKMZk5WHTMAt/fap6W1mP5IOxbbg0/P+e26lXgb26PbEXFPIMnPeog2k2BTk/i9ofXcXpj
Gxe4DiQke2xJYCEUfPVzYp4uNctcFAW/vH9uFoJadKSUb5JSipJ/l1v+5p+klP9CSnlISrlHSvlD
Uso/lFI6j8ZSymuklFdJKVellPullD8+b8U9sBN/WexwB/e0ccA4OLPJNk/UAr44WPkeutSp4L/W
HzNecdM1FIrh9ijFVtmB9MS6vi+vW/zDVYpbfek1ZopQ1bHo4RVsIINJtsrqgpaiE9miEyMho6BX
sg/EUvCBejfa6gr+zvu40m7iiRcfGH7/63fTplNn7Ck6/qJ0R/dTMugqshBkm/Tui5w8+GQCWoKO
Yc8BTIsOm2xzwdb86NuDPykmE9APXHGLG3uD5XLF7Tm5ru/LVg/+1E22MWMyR7fLhhzF8uAvZzTJ
Vvefz/b8O1WabJcSKfjqPpBoki2g+/DXatZoayvwAeDJjx7ZdL73IJN06oxNCGhqNr7wKTqxe5TU
z/zSDJPMbbDArxGa/95osAWAi2jRyRK9ybQY9OTXotOxJNWYpErR6TgSfqqmh5wwCvx1q0VndNtV
3C1rannEFYwyv6fHlZwqCjaQxqKjXryo+6EWGRtwimtBihkAQHlB0fJYwJTta0C6QV8+UIutPe3R
hcojFGHrlGUIFqkPttVOM1baB2VTv/cttYYBEOvbveA2HX1ODBX8heXY8VGBf9nh8QL/yJw22Z49
38HffOUufPveM5N/OUMmefC95MBrw7TyarLVtk314FdUr08ZBf7GtsWiM62Cn2gFw6y5ln0q+FVz
8FvxLTrbyrap+2HL5wVOhYtcTZ2L2WRbsn+2Pb0G/b7U0kFsu4BmUYqYIuQDl4J/werImnp6gyvX
dcYm1Pic9FxQ1qvSaAitj+P0Zth9ymyy9QkL/Bpx+/H14e0rLlod+7nWZDtHBf7v/d1N+M0PfQs/
/+dfGiv26oDNG9323Knfq6DepipwXept1bQCU8Gf2GRbJUUnWZNtid9z1gK/RJVSSZGio66YqM9Z
T8gI6z8HxmMyY010LlPwfb0GZQPVClKtYPhgozPeZAsAh/aOetFOrVPBrzPq/l9cCKvnSl8WnUmJ
Yxco+9SZwKtCtW2yJX657aFzw9uPvWjf2M8v2NNGsa+une96GwqRmuvv3Ik/29ju4ab7zybemunp
Wiw6S75z8CsMumonarJ1FvgVVxRMD/7EJtuMFfzSJluPFp0yBT+FD119bnqB7zFFp0KTcbMhtII6
Vi9KWYyrZtebofm7Sg+GdoET0abmg02Hgn9IUVtPUcG38uDZ83jT//cd/Lfr7kq9KaX0LSKF70AK
YPJnRd+nwhb4eghFjXLwiT/6fYk7NAV/vMBvNAT2LbWGzVPntrpzERl2enP0ATPV3DpgO5iEjMls
Z6bgq0WUerCuuj1TN9lWSNGJOsm3bMhRy18kWxUPOpDGouNSqfRm81mbbKv3IHR6O8fIrU5fK3pD
URbjqg/72v1rUG0FQ1Xw6yUAOS06itp6mh58K2/9h5vxt9ffAwB42mWH8ANH9yfeIju2QVemnVVK
aV2dmupxSibZAjtiaUHoi8ZOhYCM3UIFvybcf/b80DN6aG8bh1fthfsBZcdcq1kMmoszaoFfQ+uR
zWPny3c7fIwqMZmaRSVegaurt/aYzK2Zm2wrKPjJBn2VKfij12CWAldKubtJthEU/F5/tG1C6Ccx
PQJv1ibbaifKFCp2WQO0r4ucKj0Yc9NkuzTSJqngT+aGu0ZDwG5/+FzJb6bFNi+j2RDa/jzrcUJK
WTrJFoDuwQ9e4CviR4sWnYVE/VDa1PuC/UrO8dnz9Vczznf0Lva5VPB9NNlWWOZbTlTg6jFgTeV2
NfV62iZbV3FTNZbTN7aY1AJf0aXmPlamcJmNvf0ZT5iT2DZWcIQjB39Wi06VJCnAmGYbIQYP0C9A
xwfr+LHo6BalyU3G9VPwR5/7vW27Ref0ZidaX0Vd6PT6uPPEKKDjXMbxqC6b4ZLHFe8qx0qtryO4
B19dfaeCv5Do/vvxBtsCtcCfBwVfVe+Beub722KwVCXbTw7+lE2mNWqyNS06tiZbPammyvOPGZPp
TlDx9Z5U9d8DO69PzJkIZoGvEioDvrJFKdJ+UHYB2vLVZFvFg1/nJluHRWel3Rjuz9vdftR0pDpw
98kN7fhg62HKBdfMFJ/TZSc12ALAodV4q0JdNtmS2x4e+e9tDbYF6ujxeSzw62jRsfn9vOfgV2gw
TFXgztpka06ytSn42tKuo7bLI0VH37hlT9tUpclYZU9Eq4arwRbwG4GnDXsriZtLoWL3yi7yPK2s
VfHgL9e5ybajWnRGz0MIEVVxrRtq7QDkreD3HL0qPo/dVS6EY6bobPcmr7ztFhb4NeH247uw6GzW
/0BnNk3V0aIzsXHIS5OtogI4Ggx9P2ZVqij4rsJmY7s7VoTZFHz1+efWZFs5RSdwcaei2VRSFvge
U3Q6FV+DmBc3BTZvcYH2Gsxgl5o2RafeOfh6Pojmw6/hOSIktxme+3Nb+V7YdZ0Kvr9jd5Vj5QV7
Yir4nGS78Nz2kKrguy06BzQFv/4F/nwo+OPFd8gUnWoKfsQC3zHIo4oqc8JiydqwnKB0Bd/+/Hey
wXduq42foamagT7Le6L+bZVGrZjNlq4LPMDw1s6Yg9+zWOFsLGtJMpEsOspTG0tS8tRkO32KTr6F
ng1XTCbAJJ0yzKbanC06fcc+rNk5Zzx3aYEMjnNlXA8+J9kuNOe2unjg7HkAOzv9pZYptgXz7sG3
FXy507UcULQcfC+TbCf7+PQ84TjFbb8vtQOYug1Vpvna1JN1W5OtWkA5ihshRJIkHdv49QI1SWiW
4k69mFePAS5UH3poD36npAHcb5PtLlJ0ohX4JTn4DV2d3G2TaDUPfn1TdFRr3h6jwGeSjhvTopNz
gd91fE58rj5XUvBjpuj03cfHWWGBXwPuUD6gj7lwb+lOoHnwM/4gV8Us8Ne2urU7MfUsXfK+mxyr
HLRSKPjqwctMUKmk4FuW23ebgz/2mLEK/JImKl/bo17M71ueXODHVLHLmmzVfbXb331xC0zRZJvY
g29uW8NTDGCVadb1TtEpU/DjFWR1w1Twc/bg2wZdAdXEoKqU9cMUHFqNqOB31fMDLToLR1X/PTB/
HnyzwAfGU1Vyx+Yr9H2i7VRo1DHjEWNQZs+oEtt50rJiY1Pwq+TgA0ZUZqRpvq5BX4BxoTeDMqWe
tHNT8LdK9gEhxFiRv1sqx2QmSJKZdAHqw6aj/p3rIlez6NSoybbXl9p+pO6/gG6poEVnxMn17bEC
1Xb8zAVXGlzVxLVKj1FhXsYh44IxZPRqlwr+YqNHZJYX+PM26OqMRY2pm01Hj8ncOaD4Hrajq8ST
m0y3IxW3pf7rChcctos5mwe/6pCnFBYd9bUu86DPpuCrFp12yW/ukIuCD/iz6XQrWnRUe0e0JtsJ
F6CmTWc3qNaUg3vsF3l1HXSlJei0m2MXMBcwRceKbajVuYzrAlczumZpndHK16vgwV9pN4cXw52e
tAY7+GK7YvrXbmCBXwNuOz6y6FxR0mALzN+gK5uCf3y9Xo22tsJj2bOKWObzLkhhT3E12FbdHptF
Z6PTG1NUylJKVNqt2QupaVGf27K5iuHpPTmrnLT3V7HoJPLgmxc4gF7czuKvtc2bsKFfXMe36Nj2
z7YHhfLBs6Pj4iMPrFh/R1XwYw57m5WyBluAFh0XZoIOkLdFxzXPI5RFx2VlA+Il6XQdPWo+YIFf
A6ZS8Oe8yRaouYLfsCj4Xiw6k2MylzxGjVWlTMGv0jhli7wzl+uL7xVkp+BXfQ1m2B5Vlatk0Uml
4FsKfF3BD9+HoFp0Yk2y1Sw6FgVfsynt8rP54CCIAXAX+Mutenrw1ffJbLAF2GTr4najwRYA1jOO
yXQdx0MNxCs7V8RKZqoaDrAbWOBnTr8vccfxahGZgDnoaj4V/LpFZdri+/Q8ah8WnTxjMjX1dhcN
pq65B2ZhNqmAmuYxfVPmQfflLV3TCvwKFp1WvDz0slUcYHIO/MNrW5U8sGrP0QGHRQVIM+xJs+hY
zro+CpgqBb7v404sNjqj/dum4HPQlR2bgp9zio5rYJ/PQVdVJtkC8S4aNXGuQsTxNLDAz5x7T28O
C4QLV5e0pUgbukUn3w9yVawFfs2abDuWxiHNouOhyOhUsCf4Tu6pgl7c6ifmpQoK/kmHHctsFJtU
QI22IUEfQolFxdeJS72Y3zelgr8VuMjVLTrjxdlSSXH7zs/ehqve/En83Du+qL3HNlRL4sE97ouc
PQmGPfUmWMh8XOjpBf6y9XfqmoO/oSn44/s3LTp2bAr+ue1u0KbRWXBZdHyuvFZV8GMl6WgxwiWW
od3AAj9z7ju9Obx92YXu/PuCeR90BQDHa6fgjy/B+bbo9DSLTgUFP9IkW59NturB2Gx6KhskpD1m
M8FFjvL+LpurGL4sOlOm6MS0apSlCAHlTbbv/+rdAIAb7jqNmx9cK30c9VhxoGQVI0WjqSsdpEBd
mt+tfa6aBz9+/4EPNA9+u1zBPz0H6XFV2Or2cO3NDzkn9253+7jz5Mbw/8XqmZT2aeA54Bp05WsY
HGAPvbAR66JRXX1vt2jRWSjUE/cFJapUwd6l5vAEcr7T9zIlNRVSyrnw4Nvi+3wraVr0V5VBV5Gs
CVqDqbFdVRpM1dWaiw+OipaxAn8XOfjR+hCUz+CyUZyEyMGvYtGJqeBP9OBrMZn6a6AWaw+tlV/Y
qxadg3vLCvz4Krb6GpgRj4B/i87RKgV+TRV8m0VHXbE5s9mJNqU6Jf/2v/0zXv7ur+Ilf/Fla+/K
XSfXh6/DJRfs0V6jXG06rkFXPmMyK3vw98Ty4Fdr+t0NLPAzR2scq3DiFkJoDWZ1brTd7PSsRdiJ
mqXo2Ibc+D7R6hcR+Xjwt0vUiUkrCp1ef7j/NgTwqIN7hj/bME5Qm4plZ8Wi8A0fM3WTbclFziwr
Cqo9ZdoUndAKvt6HYcuAt190SSm1ov14SYHf6fWxPigChQD2WWwcBer+sRmpyFUvoqxJQjMqlP2+
1C6ALtrvsOgY6V25WjVMyqbYAjuiRrFyJeV8zICZxD/dehwAcPODa7jV4rVXJ9hecdEqVpXjQq5J
OpUGXXmMySxrao3nwWcO/sKiTqOtMqES0Jfo62zTUdV71XVRNwXfmoPvucDShmXkmqJjHLwmJcio
S8+H9i5p3nJTwVf3iQtX3X0qSS5yKqbozKJMTT3oKtMUHfU12Oz0tM9OmTVPFTIOrLRLV3H05x6/
F2V5ooI//WfzxPr2sHC5YG/beZHbajaGRU1fxjsOzMqkmExgsZJ0pJTYUD6337737NjvqA22j71o
H1aVi95ck3RcVjafMZnqubIskCFFig4n2S4Y08bf7fzeaMc8u5nnlXoV1AJfVW9PnAs7Wc43thx8
3xMlc1XwyzLQy5orAd2ec3h1SVPuzCbb48rvHtlnVy/Nbchu2FfEFB0tTSXwvjDZomMvbs3Vx7IC
v2qCDpDGpqIV+O3yi5zdRIVWsecU+B6yFwPdomN/fxcpSWer29eU6O/cd2bsd9QG28detKoJhLkq
+D3HPJdQFp0yD36sC0ZVxKCCv2Cc25pu6R0ws/Dre6BTr5ovPrgyVG62e31tZSN3dM+fLSbTg4Jf
IUs3RZNtaYrOhAuOk0aBv6oU+OMK/qj4u3BfiYKfwKKj2TN2ERVahXOala+KRSeigj9hCbrtKG5N
m8XDJRYdVQwoS9AB0jSaqpGU5rAzoNpMiDLUAv8REwv8+iXpaJNsHQr+IiXpmMe/71RQ8NXjQq4e
fFfalCYGzazgj5+PbcRK0VGP+5xku2BMe+IGDAW/xh5886StFm51sul0tCv0QUym9ybbCjGZqS6P
ewAAIABJREFUmfnPJ8V2mgq+qtyVWnSqKvgJ+hBM9dbXe6JeyFez6ERU8CdNsnXk4JuTuI+XfObV
3y1L0AF0e1ysLPhJFh11P9jNoKsH1IhMh//e9vixYkJnRfXg21J0ACNJZ84V/A1jBfPG+89qCTRS
Sk3Bv+KifbXw4McYdOVK6jGJlqKjbA8n2S4Yu/Hgz4uCP1bgr45OXHUadmVbdgzaZFtBwY8VEakX
d/p2LU9YUTg1VuArCr7yuZBSao3XlT34WfQhqAkycizrvd+XE/ePXl8OG0yB8gbTgqgK/sSYTPvJ
27QXlll0plPwlUm2SQr86n0IVVEjMo8enD8Ff2PCJFtAL8jm3YNvChzntrpaJOaJ9e3hZ2J1qYlH
HljGvuWm9vs54mqAVQMatnwOusoiRWdyAt5uYYGfObvz4M/HsCvdV9vGEUXBL1PzcqNricHSmmw9
FNvdCp34kzzvIZilyVZV8C9cXdIUKLWgPXu+O7zA2bfcyi5Fp2ySrRDCOfBrq9vDz/zJF/DDv/OP
+Ptv3++8/3OGCFDWYFoQ06YyyYOvzm1QPyvjCn6ZB19vsi0jjQdfsehYPPizWnQemsqiEy9ByReb
FTz4sZoic8BmsVF9+KZ6L4QwmmzzrAu0mEzhsuj4S9Epm5miCgVnz4eLXtUm2dKis1joJ+/JzXPA
TjFcMC8K/gV7DQW/RlGZXYsq0W4KFHVNry+jNA5l12Q70YM/eo9NBV+Nxazqv6/ymCGYVOC6eiOu
u+Mkbrz/LLa6ffzF52533v+09hxALzJD21T0mMwJDabKapcpTpxY33Y2oJ6Zosl2T4ICd3uCRaft
0aIz/022TNHZtAyqUpN0dP/9KgDoAkmmBX7fcR7z2WSrKfglBXWr2Ri6IaS0D930AWMyF5i1XXnw
5yMHX1Vh6uzBtx1QhBBelcROlZjM3CbZTlhRUJtsDxkFvqrgm0p/Gbpanoc9w3XRoZ5Qbrp/zakg
re1ilW/Z8wpSGZNjMu0pOmaTrZTASUfhpqr9UzXZZmLRmTUHX59iW+7Bn1+LzgIp+JYCX1fwRwX+
FRftA6AfG87lGpPpUPB9xmTaJsu7OLQa/qKxyur7bmGBnznm8nsV1CbbeVHwdwr8enrwtQ+wUnzv
Zqm815f4u2/ej09/90HjMSYr+OrBrNeXUaY96had2VJ01KV5VcHSFfzy4ia1gj+pwVL93Q3lJLzZ
6eGO4+PDbIDdHSNWIir4E5tsG/bi1rToAMDxNftJ9oxh5yvDHC5m9j2EQG1mtXvwlYucXWyPatF5
5CQFP+KQM19sdpQmWyr4Y022AHDjfWeH8dG3aRGZOwV+LRR8OW5nBfw22ap/XubBB+I02lbpn9st
LPAzRx/gslgKvlngax789focwF1NPeZUySp86Ov34jV/cwP+t2u+hk/dNCryq+TgCyGiF7hbVS06
loO2qsId2ruE1WVVwR/t12o/xpEpLDrRhn1NKHBd74mZ9f+d+8aj8ADTolPNxqclqQRX8MtznlsO
e4pthofLh392iibbRkNEbzjXPfjlF3nTxgBudXvDVayGKJ8DAaRZwZiV6S069RW2qmA22QI7K5mF
VUtX8MctOrk22eqDrkbf97n6PJWCr85WWA9v0bGdH2aBBX7mqDn4u4vJrO+BbjcpOmvnO/gv/3gz
/vLzt2czDKtnickEzKjCaifar95xcnj7A9ffM7zd1Q5a7o/18ozNfNOiFqxmA5E5WddUUlUV7oK9
bexpKzGZW6qCr1p0yosbtcCMliQ0IUXGdfIyT+Lfvnd8mA2wO4tOVgq+ak/pT1DwHZ97TcGvMugr
YooQYDRa2y5yGvY+hCqo8wEu2r88UZX0HdEbA3XFTj0OqKgWnTMb2/j2vWfw2x/+Nr58+4ng2xcb
lwL/nXvPYqvbw12DRB0hgO87slPg1yFFx+VHX5rRwqZSNUUHMJJ0InjwfSv41c4GJAmdXn+4hNoQ
enNYGQfmRME3VbnV5dEH0+bB7/UlXv2eG/CFW48DAB5z4Sp+6omPDL+hE1AtOuoBZXkXFp2HlQLn
s7c8jPOdHhpCaCfAsmEZS60GMLiLGAr+don3WAiBdlMMlfTtXh8rjdFrYir4qmVnQ1my1yIya9hk
6/KXmidxt4K/mwI/pgdfUa+tg65cCv74CdU17EptyJ1k0QF2fNzF38RoNJ00ybY9w8qS7r8vt+cA
aQZ9zUolBV/xSz98bgsv/vMvYX27h49+8z58+f/6idJ0rbpha7IFgG/fdwaXXbgXRQ376EN7hs+7
Dik66nlQfb/8evCnKPAjWHTUY16bCv7isG54a0VJpJOK7sHP84NcBfWK+eBeo8nWYtH5o0/eMizu
AeCGu06F3cCK6Ck6qgd/eiXtobWR13Zju4cv3XYCn/7ug8MC4uKDK6UTj2M32k5afnQ12m5u94bP
aanZwN6lpj7oyqXgT7AnTMreD4E2yXaKFJ2xaZWKx1ZFL/CrWnTS5ODbTmDqZ0LdB2zHrmoWnekG
fcXwoU81yXbKAubBKfz3QJpBX7NSpcBfXWoOFdBObzQb4vRGx7n6VVfUJtsiJQfYOUZo9pwj+4a3
62DRUS+21c+JT2ulLbbaRYy+jm1Hj54PWOBnzG5O3MB8DLqSUo5ZdA4bHzZVGf/0dx/EH3/6Vu0+
7jqxgRxwNcDuptntobN6gfOPNz6I93317uH/X/T0R5deCMZWsKeKiFR+17TnCCGMFB3Vgz96TY5M
k6ITKSKwbBUDMGxTJQr+mc0O7jm1Ofb3mge/cpNtPA++ekK22VPMYV8FdouOI0VniiZbwPzsRVbw
bTGZM1h09AK//AIXqGeKjhqL60rREUJoiqtKLmKPL9Qm2x/9vguHt7982wl8/a7Tw/8XDbaAvrpn
9vfkwlYVBX/WSbayuoJ/aFXx4Afq6+g6LLw+YIGfMbtJxwAMD76lUa0OrG/3hktpK+0GlltNtJoN
HB4UcFKOVPzj57bw+vd9Y+w+jp1YH/teCrqOpp5pT7S9vhxTMD/x7fvx2VseHv7/Xz390tL78LnU
WQXNf920NBc61Gu1wC9UFHWJecMRk3k4R4vOLptsbY10NpuOdpyoaNFpNfzOYShjckymOujKPckW
sCv4phhQyYMfeZptSIuOmoH/yP1TWnRqkKIjpcRGR1Xw3fu42hSpoha984B6bHjKpQdxxcBnv7bV
xf/9T3cMf3aFou7rKTp5XtipCr76GfV53rLNpXER2qLTN9LsJl1wTAsL/IzZTQY+sPPBKK4Et3v9
2qg0Kq7R84/YP1KoCj/uJ298cPj7aorKnSc2smi01YdQOWIyK6jJJ9e3YSbond7oDL/3rMdeiMsu
3Ft6H7EnuZY12QLu4lb13xfNc6pyt7HdG763WkzmhCbb2Ck6/b6cqGBXTdEB9Kzrgt2s9JlzGEKq
+NuOxrkCdZl8u2SSLWD34G92esOT9nKrUclrvRw5SWbLYT0oaDmiQk0eWjs/tiqrruo98mCVAr9e
Cv5Wt4/iML7UapQWQUeV5/+sx46U7RvuOpXFucAXqoK/utzCv/3JK4f/V483qoKvioTnMrXu6nGy
o8+ozynsakrVNE22IQZdqaECS81GZRt2VVjgZ4yWoDOFgi+EqL0P/8yGvcC/SCnwCz/6fadHtoWX
XHXZ8LU6t9W1evVj48q5nVZJU/33Nl58Vbl6D8T34G/tssHUtOgUf19cJPT6Etu9Prq9/nDpVAi3
gjfp8UKhr2DYD+BLjuXnDYvKZlPw1YJvmuNErLjESRaltkXBP9/pWd8fm4I/TQZ+gRpYsBVYxe5N
eZHnKmA+e8vDeMbvfQrP+L1Pace8qT34NZtkW8V/X/DqH38srjiyin/5w4/CX73sKqwOfv/Bs1u4
/0z58bNOqAr86lIL//LJj8IPPHL/2O+p/vxl5eJou9ePtoI5DXqcrMuDP9t2nzMujsrQopkDrHpU
ibeeBRb4GbObdAzb79fRh396Uynw9oxUea3AHyhXDxoK1mMUFfvODGw6riW4aZW0hxT10iyWD6y0
8NNPOjrxPmJbVKZpst1yKPhqo5PZaHvSsPK0LMWT9nhq/nmMmNAKGcdtx8nLpuDbmgV3MysDiNdo
O+k10HLwB58VVb1Xn9PJ9e2xAW2qlWdSBn5BTBXbvMCxXeSpqxhdx8rSh79+L/pyx774SWUGxgPT
evBrNuhKVav3Tlidedb3H8Gnf+PZ+JN//VTsWWrihy+9YPizefLhbxqTfRsNgdf/1JXa7+xfbmnn
SyHE8IIHyDNJ57xDwdcnPc+2EqM+70l1lRrJ6koumoWQU2wBFvhZc26KHdGk7sOuXE1zj1A8pkXB
+6CibB89sILLLxypFseOp2+01Tz4yoFqecpGP9We8BOPf4RWpLzwqZdUsyZEVvAnNpg6itvTmoI/
KvBXjUZbPQO/3H8PxLcoTZpgam7T1gQP/kNrW2MrObttxo9m0ZmQAW+bUqk+pwv3LQ9XZvpSn3AM
uC8GyoipYk/6DAB6AeP6XN5/ZqTaqxfAqkXnaAUFv245+GYxOw1Pu+zQ8PY8+fDVi/+iN+mnn3QU
T3rUgeH3r3jEvrGLSfX4kGOSzlYED75qT1ot6ecA9BUjNZrZF7p9kQr+QqHuiNMsvQPA/uV6D7ua
xoP/wBldwcpNwXfHZE5XYKkF/mWH9w4V+2ZD4F//6GWVtiXrJlvNoqMq+KP3Xz3Bb273jIjMyQW+
doETwZ5QRcF3evCVE/CjFG+xadPZTZMtEE/B14bXTLToDBT8Tb1oV6ezmj58l52vDFXF/v/Ze+8w
Sa7y7Ps+nSbnsDObc9CutNKu4ionkgELLAHG2CTbJJtoMI6Y9wO/BhuZYBuwsfmwAZOTAWMJySgL
pN1V2l1pg7RpNk6enu7pWO8fPVX9nJrq7grnVFf1nN916dKE3pnungrPuc/93E86K/c8qDXFFrDX
G0ItJvr1cS5XMP7+sQiz9frD1mTLW3Sc3QcvWdmYCj73nszbSBhj+OCLNxlfv3x1z4J/V2kaeBCg
VjbGeDFApDDl5HrZmpB7neAy8CUo+GrQVYDhU3TsK3MA0NkSbgW/YoHfudCDT60rS8wKfgCiMguV
YjKdWnTIVvxARxPefv06bFzSgW3LurBluLPKvyxT1ybbWI0m2xopOoApCSJbMA25qm1P8LvJtlaC
DGBedFgr+Jet6cUPnzgFANh/aho3bho0vsfFZDop8AOi4HP2lPndrmnTrkRrIoZD50r53mYfPqfg
B9CiU2uKLWC26Cz8W2iaZlng0+tkd2vCVpOemwna9STlQcG/hCj4+pRXq5jSsMHZlsh7csOmQXzx
t3fi6OgsXn/FQtGHT9IJVl1gbkSnx7LVLp9bOGdEDeGUF5TEv1/cFFsJCr4q8AOM2xQdwDzsqnEU
/IF2WuBnkMkXjC37CAP624On4OcqxmQ6s+jQhcxgZzN62hJ4143rHT0Xkc1KdqhV3FVacFil6ACm
LdNsnstFr5WBD9R5DkCF4s5qkaNpGqewXbqqxyjwnzszY3xd0zTXvTrNPij4xaJWM+c5ZuGv5S16
MURJATyazOBz9xzC3hOT+OCLN1W8VlSjOeGfRadS4yCF9xgvPC4nUjnuWNJfc6XzpBp+/N1Fks5Z
F7N26G1LYHVfK46OpZAtFLHv1DRn2wkrtAHfvKtRrReLOgGCJvxVmmILmPqUvFp0SIFfq8mW6/nK
lZLbRCbd5JSCv3hxstI0E3YP/iS37V5+LYPEY3p+JsP5Twc6mhCNMKzuD5iCX6nJlrvROrPoDNhQ
q60I2qArOyk6dAS9ucmWi8i08Z6IHJhiBzsKvtUiZy7HRwNesLTLeMzBs+UCP5MvGgV0IhpxpE42
+ZAkYydFyKq45X31ce7v/rVfHsfuYxPG4y9d1cs91g5+NppWahyk8Arlwp0l6r8HyrYkrlfF9u5F
mC06ztX3HSt7jPvA3uOToS/wzYt/J+8J9ZwHLQt/rsq0Zzs9KnZJOhBOoxGGRCyC7HxUayZftNXr
ZhfOvih4ii2gPPiBhou/86DgT0vIb5UN760uF26DHbyCbxURN9jRZGzBT6VzUgZU2EXT+Ii8eAUP
vnMF33uB70+KDIkHrDXkiTwf6qumhYt5mq1TD77fC5xa+eeA9fYz30QXxcYl5TzrI+eTloWw00Z8
usCUZdWw04NglSBDk3E6W+Lo7yj/bfXiHgCeOD7JJW7ZT9Ghixv/LDpOjgHK6Um+sdpQ8NMuFHyf
ZwB4hbPoxJ1rko3mw8/ki8bsk0Q04kj5pXVE8Cw6lRX8hGkB7GWmQZIsbOwIp62m+Ssi4Tz4FhZW
r6gCP8B4SdGhaRLTIVTwqc+WNti1NcWMJJVsvmj4coFygc8YC4wPnyb6MQZEKll0ahSbmqZx6Sl0
oeME/z34pMB11GRbKUWHjy3jPPg1hlwB9e1BcNJka96C72iOY1l3C4DSDe7oaMl65iVKt8kHJdfO
67dS8GfmKjfZUmYyeS46lPYeVaOFWGVE37TN2FnkxSwajSmnp60LfL7BuPYCFzD1H4TAg5/2qOBT
H/5+izkSYcOqwdYu3LCrgBX4dLHZbNrpYowJi8qk84VqWXQAPpo1JdiHTwWQmFLwFxdeUnQ6Qz7o
6nySWm/4GxfN9n2a3NxpBnRQfPg0ItO8BUdvtLVUxJlM3ijCmuMRx8eDju8WnRoKrlU6QrGomZoH
rVN0ZrMF3oNvR8E3WXRkT7fMcK+/doKKrmLRSDY9+YKq+M/N23ScbDeb8UXBrzHJuPT16jn4Hc1x
7pw388SJcvyhXQW/ixxTk5J3ODkFv8L2fi3r2BmzRcdQ8BcOhKvFYrPo0HvBqcl06CfaOpkLYIYf
3BSsuoA/T2rYOV3uPucLReOYZ8ze8WRObhNJ3mRhFI0q8APMjLAc/PBZdEY5vzmf7Uyz8Kl6t4R8
PShZ+FSNM4/FbnKg4FP//WBHs+tGn7qm6FgUeFbPZ3ouZ+x8dDTFuAs7vUGlMnnHKTqRiDglyA5u
m2xnLZroNpJJlQfnG205Bd9h0pYfhV6tQWcAP+jKsB5xFp1Y1Z4T+je068Gnu0KyLXxOZyHkCkWc
mZrDQ4dHjQLAPIU1PT/pd7KCla0azQ7nb9Qbml7iNEUHKC0QdStGxvSehRFewXdWF1DFOhmwmMxq
Cj5gCohwee+i19X2RMzWfZTr+xJc4KtJtosYXsF3dvPuCLGCn84WMDt/IiWikQXb7gNEqX/2dLnh
cAnJCl9FCvxj4/VU8GkGPn8CO7nR0mZit/YcwN8UnXyh7BWNMFhOmbVqsqUZ+N1t/HFvTjVw6sEH
Fqr4MrEz5KjJ4j1IZa0U/HKBryv4biMyzc9HVqFnZ4ETjyy0p5ibbM0WnW3LrGNh7cZk0ujVCdkF
vkOLzmgyg5d/7gH81pd+iY/95AAAftaHzlQ658qD38TtHDa+gg8AQ+TecMq0GxI2qPLe5vD94Cw6
AasLuCbbGgq+23vXTMZ5X2OLRA8+TdhTk2wXGW4H2AAmBT8TLsVilEtGWZjtTAtcWqAt6aQKPrXo
1FPBr5xz68Siw/nvXTbYApWbWmWQq9Fgu+D5GAW+dQY+wN/gx5IZ44KbiEZsJ03FfbQp2WqwjC30
oFsp+JuGiIJ/ttR7MuPhGuHHJFsuA76CRSnGWXR0BZ/Ptu9vTxgWrP72BP7m1RdZ/iy7Fh06PE22
ossfA7UtOmenM4b17L+fOQ1goYIPAFPpLO/Bb7W3wC1ljJc+zhaKXMpXEEmRa2OLw0FXOrTAt1os
hQkvk33bA52DX/08ESHMcAq+zfsFN+xK8DTbnA0LoxdUTGZAKRQ1o3hhzJvXTnYTmWhoWoyV97aS
H5eOaV9FojLr6cHnIzLNHnz7FgkREZmAvxYdp/YUvbitNpmUNtmeGC8rcVYLwUrU7T2oaM8oHweW
Cv78DWb9YDsYAzQNODo2i7lcgduds2tP0fFFwec8ptZ/H8scfNPrikUj+OJvX4ofP3UKd+xcgc1D
HWhLRI2dPuOxNgv87hZq0ZFb4GdreIuByjf3s9MZnJ/JLIjJBHQF33lMJmMMTbGIcc3J5AuOJ8T6
Cddk6zKicJgU+FaLpTBBj/k2h383zqIT4JjMZksFn0RlurxuO22wBSSn6BTl5uArBT+gcOp9Isal
r9ihNRHclXotKiXo6FAPPoU22Q53NhsF1WgyW7c+hGpDfvgUneoXjvOmIVduiVs0dMoiUyi/JlsN
poXaCj5VrI6Pl3dm7NpzzL9TfoFP3wP7uxizFj7b5njU6C3RNODwuaQni44fCn7OxgKHNp9bpejo
r2vnqh585BVbccHSTkQiDBcs5W06jNmfF9LRHIN+SU1m8lKPA6cxmWYePjJqKQCUIoCdW3SAcDXa
Vpra6oThrhbj47Ar+CkPPQmhVvAFTCF3kzpGo1nFe/DpDr8q8BcNXm7cAL86TQVspV4LvsBfWLhZ
edATsQin9kYiDCt762/TqdZky8XV1bToVN/VsIuV31sWvIJvvUC1UtOpB7/HVLTQnSnqpbUTkWn8
Th9tSuZBT3afT6qCz5ZL0jkz4ylpy8nx5xZbOfgWEZHmHHwrtpLhX0CpuLcrhEQijG+0Tcvz4Wds
LPKqNdj9/MA5y68vKPBtxmQC4Wq0TXmwpOgMN5AHPyVIwZ8NWJNtpqaC792D79miI7HJVoZFRxX4
AcWL/x7gi4LZbD5U0WCjMzT60J5FZ6hzYbIMLfBPjNepwCdNNNWbbKtfsKgH30uB72eTrdsM+MkK
GfgAvzNFD+kbNg3Yfl7Bs+gs3FXhFHzymjfRJJ2zMyZFyqlFR76Cz6co2cjBLxaRzReRnr/ZR1jl
RsKtJgXfrj1Hp9snH37GxiTbahF5v3iuQoGfynFxsl2OFHz5iztRpCucC05oJA8+Vd6d5+CXHx+8
Jtvq54mImMygWXTUJNtFihdlDiht9+jbwUUt+NuwlPPJ6sWslYK/xKLxdHlPeVv2xES9Cnwag1XN
g+/AoiOowJde3NpQb60VfGrRMafoLLzwX72+D79z1Wrbz8tPBd9Og6X1oKuFKToAsHGIT9LxMgyv
yYciL2djB4PLwS9o/JCrlnjF3opty3gF326DrQ6XpDMrU8F3btGh1/xKKWhjs1nj7x9xYE8CwmXR
Sedoga8sOl5ShWgaX9AGXdGdLisFX8S9a8ZFXUXPlbTgXQ8awqEm2S4i+HQMZzcunSBvx1WjloLf
05pYoIZb+dJX9FAFvz7bsvyYdf5i3GTyw1fbZTlnysF3i58Rkbm8sxSdnOHBJxadtsoKPlDaufns
6y5ZYH+qRpAVfCNFx4aCf+hskouTdLrT1+RgB8ktGRuvn0vRKRQXNNhWYv1gO/cznTYZ06ZUmcOu
nMZkAsA7bli34BoH8LsZ1HbY1RJ31KfV5KD/p954SY3RGe7mm2zDtKNtJuVhRyPIg67oNajZopna
6jrpFGrRsSuIyFTwszQHXyn4i4ckN8DG3bYkPTCDdjJXo1aTbSTCFij7Q1YFfm/9FXyqxJrVlkiE
WU4xNZPJFwwLQTTC0Ntm32trxl8Fn3iPHfjPp7jGQf619rUljIi/WIThH39rh60BVxV/p48xmU5s
SlY5+ACwur/NsLSMTKa5Iq/TcZOtv5Ns7eTg54qa7f6jeDSCzWRHw6mC79ewK1uTbCPlmNd4lOG1
l63ABrKY06FRqceI7dB8ntSCTjEOukVHRA5+R1PMWBylcwXO2hQ2rBK27EI9+7PZAooBikittRDm
BxTWyaIj+FzJ29jl9oIq8AMK58F3WeDzHfPBvohTaIE/0GF94zIX+NYWnfp78LmGKIu/o50bLbXn
9LUlHKnVZqwGS8nCVnFbw6Jjjv7raUvgfbdsxOahDnzmdZdg56oex8+LX1TIPS9s2ZRsTrIFSn+/
dQPlRluaJOTUg8+l6EibZFt7F2eBgp+2p+ADvA/fPBCvFtT+NeGbB9/6PYhEGP7i5Rdg69JOfPxV
F6K/vQnbli4c5rVpqPy14yT+1+nixo+/vQgePDSKcXI9aI27uxcyxjgffpijMr0o+JEIk1qweqGW
gi/i3uWmrqKzF8Q32Vbu0RNBcMNvFzmcB99Fky1g3loKj4LPZ75b21HMPvQllgp+ucA/OZGGpmm2
s9JFMVsj0qw5HjUsCWabxJHzSfx8/1mMTJbtRV6GXAHWsZSysNNgabWDMcml6Cxc4L375g14980b
XD8vflEhV8HiMtDt7GJY5uDz5//OVT149swM97WWeJQrYOzAW8RkKfjOEmRyBY2fYlujaL9iTR/+
81cnAIBb+NiB2r9kTrO1Y9EBgNdctgKvuWyF8fnWpZ349m7+MXTHYsJlRCYQ/CbbZCaP//Nf+/Ct
x08aX2tLRLndLKcMd7XgyPnSoujM1By2DFtPQw46XGyoi/ejqyVuLBImZrOuBUTRcJNsLc4TXghx
d91OerboCB50VZCbgx+Mv6xiATMCFHx+qEU4Cvx0tmD4jxPRSMUb/IDJh25V4He1xNHZHMP0XB6Z
fBHnkxlP/nU3pLlIM+sCX4de4JKZPG7//MMLlEWvz59eOHM++s8rFTY1Ffw2d/0n1fA1JtPlLgaf
g88fN++5ZQMYA0Ym0sbPvX3nCscedD8aLe3EhJpz8LkptjVe0yu3L8Xx8RSSmTxef8VKR8+NS9GZ
lenBr91obcVWUxMxwBf4FLtDrnSczOCoBx/78X6uuO9qieNvb7/IU1Z4owy74nf3nBf4Szqbjdd/
emqOE8LqCT1Panrw3Sr4RDywGzHa4leKjppku3jwmoMP8AdwWKbZUntOtemkdhR8oKTi7zs1DaDU
aOt3gV+pWVKHU9LIjfbpk1OWtoFLVzu3pFD8LG7t2DPMTbaZfME4VmMR5rr/pBp+NtnaUW9rpuiY
jpvBjmZ87LYLPT83bpKtDx78uA0FP180K/jVC9dIhLnezaG58XIV/NqTbK3YMtxpTC7CT9J6AAAg
AElEQVQGSsVcpWLMsUXHhwZrLxwgO1QvumAJPvaqbZ6v3XyBH94sfK+xoUu7m/FEadMrUO9D7Um2
3pts3cSPt3IpOuGaZKsK/ICSdDFxzUxrgDvmK3E+aW+gkx0PPlBK0tEL/JMTKVeebS9Ua7IFKquo
z48mjY8vGO7EDZsGsLqvDa+8eKmn5+NrgoyLJlvzZE4Zlip/J9k6VPD1QVcCGgtr4YcPm26lVzoG
qPe0UNS4Bki31z47UA++zBSdrE2Ljpn2phjW9LXh+dGSrWSoq7miFafLaZNtwC06dOjR+27dKESY
GSJRmaFW8KvY9+ww1BnMyFAnk2zd5+C7GXQlTyil9wcZk2xVgR9Q+GYQlzGZtGM+LAX+TPUEHR2q
4Hc0xyoqGVySTh0abWkTk3WTrbVF58i5cgPdyy4cwh/c5N5zTokHrbg1PZ/JKgk6ouB/Z/CabDVN
42/ikjyyfiv4lV4/YwzxKDN2fMZn7Vt0vFCXFB2HSRkXLO00Cvzhrma0xKPce6XjxaIja8iZF9Kc
mitmgTvcIMOuvE72DapVifPg11Dw3TfZklhh2022RMEXnaJTpBZGlYO/aPA6yRYw5+AHT6Wxgo/I
rFzg0YbC4SrNhSt665uFTxV8cw4+UHnYEFXw1zpsHqyGnzn4tppsTRftagk6ouDzlP1rsq2kYEcj
zEhG0rTStm3Ko8/WDr4o+DZeP8BnQI+Ra4DT6bRO6GmrR4qOs78lHea1tKsFjDFLO47TJtsmB0P2
6kG6yvwQt/BZ+MGxpjilUoSuXYYCalWaq6Hg00FQbq/btH/BtkVHZpNtvvIgTBGoAj+guJm4ZqYt
hCk6tYZc6Wxb2oXLVvcgGmH47SpTTLlhV3XIwudjMu1bdI6cLxf4TtNBqpHwscnWTkymWZWhSqov
Cn4AmmwBvvhNZQrG84pGmGPV1y5mBV/G8J+czZxn6sM/OUFSozxMba5Fj0nBlzX8yG6KjhWv3rEM
Ax1NaE1EjYQdq0WPtxSd4Cn4tfzYbhju5C06YR12laoQoWuXpd3B3MnI1Pibi7CXJl3UVTIHXeWK
tUUwLyiLTkDxMoJepzWEOfijNj34kQjDt952FWYy+arb+PUedlUrs5jfKi89di5XMIqcCANW9YlL
OeCiEWUXtzaKuyZTsc1NsXVYtNjFznAxUdhNUEnEIsb2L93FaE1EpUW7xqIRxCIM+aIGTSu9/04V
5lrYXeDQmxu10lXbnfNKczyK5ngEc7kicgUNs9mClMhAtyk6QKmh+pEP34RMvmjsyFrtbHW1OB10
FWwFv1Ymuhs6W2JoiUeRzpUa+afn8o6bk+uN2b7nZncvqL0IjlJ0XNy7MvmycBJzIJxwFh3hKTq0
yVZZdBYNblaaZtrD2GRr04MPlLy7tTy6dNjVqck5bnKcH9S6GFsNujo6NmskZyzvaRV2gwMWqiAy
VSy6/Wg3A54Wtz0eJvZWw89hX7YVfPI92vDpponOCbK92NmCPYWKNtrSiGCn2f5OoUk6snz4blN0
dGLRCGe3FGHRsRIWgkKhqBnHDWPOdz0qwRgLvQ8/ky9CD15JRCOuVN/BjiZjGvj5ZMZ1Io1oMjVy
8Gn/mJvnbLbn2BVOEtGIYaHMFzWh94y8zeujW1SBH1CEKPjcWOpwFPi8B9/79nxzPGrsBBSKmu+K
hRMFX1etnj9fbrBdN9Am9PlEIowrpmR60LkUHZsNpuNJUuBLsug0xfwr8O02WNLF3yky2MzNIBsn
NFksMEViZxcHsL65dTTFHE/ndQqXhS/Jh1+rcHGKZYHvuMk2uBYdzp4TE7uDFXYfvtcGW6B0rg3M
31s1DTg7HYyFzlwNBT/usX+MiqZOhBPGmLSoTNmTbFWBH0CKRY0r8N2qeO2ht+iIKfBW9NTPplOr
Icoqru7IOTkNtjpeL5R2cTPk6Qy52VSKPvUKv6iof4oOAKwkzeAHTk8bH/uq4Eso9Gw32VpsT8tW
7wF+ESkrC9+LRccKqwLfcQ5+gJtsaVKJ2yK2EkGNiLTLLFcXeJjq2x2896HWQthrvPFMxn38Ljfs
KidOLOUsOhJ6rVSBH0DooJeOphgiLld2Mru/ZTFKFNyBdjE3eJqkc9LnJJ1aaSiWCv4oVfDFF/h+
NdraSdGJRSPQD++ixqvXQxWGl3mFn4hY/xQdgO+z2H+qXODLStDRoZYRGVYNO9OMAevjw5cCX3KS
jqZptprNnWAu5juaYo4TOIKcgy8jQUeHWnROBaSwdQJd/LR66BcZ7gxeVGYtBZ/GSHq26Dh872Q1
2nKTbCOqwF8UcI2GHnzI1LeZDIGCn84WjJ2LRDSCzhYx6uXyuir4Diw68wUWTdBZK9iiA/iXIuPG
nnGCJqjIKvB9TNHhElSq+K9X95X/zpyCLykD33hOkiea2lnkAdbb0zIbbHVkZ+HzPQjlOFQvmIda
dbloRg/yJFu754wbhjgPfvgsOrM1BifaZShgvQi5QhGF+eaCaIRZXiv4SbbOhRmage/0utpC7t0i
LTp51WS7+BifFdNoSA/iMCj41J7T154Q5r3kojJ9HnZVq8nW7IHWNI2z6EhR8H1qMs3ma08xBfiC
mzZZ+2LR8bPJtqqCXy7wqbIoW8Fvlqzg243JtLqhD5O0D1lQ7/rErHgFX7Q9B1io4DttsAVMOfgB
a7JNZ8vvmWgFn/Z1yZx9IIu0oAnX/E5G/Rc6dnqV7FpLdx8bx+//++P43p6T3Ne56HGHFh1pCj6J
yVSTbBcJE6TA7/UQFUg9emHw4J+3GZHpFG7Y1YR/FzNN00wX5NpNtudmMsZQss7mWNVhX27hojJl
Fvg2i7umWAQzpq+1JaLSGixpoT0jMV0qXygnXkRY9Qv46gpRqLI9+PwCU26Kjt0cfB0/FHwuCz8t
QcH3MMW2EgsKfIcRmUCwm2w5D77gAp/uCk+nw1fg04GVXq4NQVPw52xMLrYjzBw+N4Pf/tdfIZUt
4H+fO4er1/djyfxOMK2BOjxZdER68O0JQG5RCn4AGRcUFcjn4IdAwXcQkemEein42UIR+fkKLx5l
lgUO3+RYWNBgKyMD3a+YyKzNAT9WF7Ylkuw5ALBusLwrsvf4hLE1LBq7xS1QWoRa/allp+jIjkvk
LTqVj2Ur/6kfHnzZKTqi/ffAwgLflUXHdN0JEnaKPbfQWOXpueDfE83Q4tJLA/LS7mBl4dtR8Gvl
4M9m8nj7V/cYCnuuoGH3sQnj+54sOpJSdKhFx0rk8ErgCnzG2FHGmFbhvzMV/s0uxthPGWPjjLE0
Y+wpxth7GWNy746SoAq+l6hALtopV5BWyIhijLzuPoEZ6MPdzUYj57mZjHRbhg5tsK2kRHFKWr6A
I5IbbAG+0HhhdBYnJfUl2PVfWxU+g5LsOQCwtr/NsP/MzOWx79SUlN9j154DlAqZYYtFjfQUHdke
/II9Bdvq5kaLEFlYpehMpXMoCrpWio7IBKwUfG8FfuCabP0q8EOo4KdEKfid4VPw41UKfE3T8OHv
PY3DRCADgD20wPcwW0iWRcfunBC3BNWiMwXg0xZfT5q/wBj7dQDfBTAH4JsAxgG8AsDfA7gawB3y
nqYcqDew10OhG4kwtCaixgGZzsmZ1CiKWS77X5w9Ix6NoLMlbih003M5oTsElUiRi1YlxcBcYPEK
vvgGW4AvqN/19T0AgNsuXopPv+4Sob/HSwa6rAQdoJRrvGtdP76/dwQA8PCRMVy0vFv47+EHHNUu
VFb1tS1I9pCeg+9jik4iWvm1WNmX6pGi88/3H8Ff//RZ7FjZje+8fZfrBDMdGR58s+fejQefG7Dn
k+BhlzmJMZnUojMzF74Cn94jvbw3dIf03ExpAKQMD7hd5mwshKtZdL6/dwT/9eSpBf9m74lJ42Ma
NOI8JpP0MwpcEC/WJttJTdP+yuK/v6MPYox1AvgXAAUAN2ia9lZN0z4I4GIAjwC4nTH2Ov+fvjdE
KfiAadhVwG06nDohuLChqteUT8pNykbigVlJkx2RCVgXzz944pTw98Wugm1V/Mu06ADAVev6jI8f
PjIm5Xc4UfABYHX/Qh9+6BV8uosTq3wDS5hubm2JqGOfrBu6iH/99GQan/n5IQDAnuOTOHjO3Bni
HK9TbK0Q48EProLPD7oSW6JQgWsmkxe2U+MXou6RiVjEELmKWmlnu57YEUNoAZw1pej89zNlc8fL
LhwyPn56ZMq4Bnmx6ND7d1qSB1/GAiuoBb5dbgcwAOAbmqY9rn9R07Q5AH8+/+k76vHEvEA9+L1t
3pTsdnIRCHqBzyfOiL25021sWRMrzdSKyAQW5lHzCTpyFPw/uGk9rlnfj7UDbVw8YVLw8UEvwtUU
fGuLjtwCfxcp8B97YVyKbcvuFFudlb0L/95+5uDLKPTsNpHFTB78oa5mKf0nZnqI+k0b3AFgSsB1
QoZFpzke5c4Zrx58Pb0rKKQFTGutRCwaMYp8TQOSIUiXo9i5p9hlaXdwsvDtLOo4i47pek1F0Tde
tdoYHJjNF7F/PnY4mDn4i1PBb2KMvYEx9qeMsfcwxm6s4Ke/af7/P7P43v0AUgB2Mcbk+zEEQg/W
boEKvsgDUwbUsy5awe9s8d97WSsiE+BvtGem5jAyP+gpHmVYWSFZxStbhjvx1d+9Avd+4AZuwFJK
dIFvs8HQqvCTadEBgOU9rcZNIJ0r4MmTkzX+hXPsvn4dqyQd2Tn4fJOt5Em2Djz4fvjvgeoTYGcF
FH8yLDoA/7zdePCj8/ZNoKTgTqeDU+imyU6S6BQdgLdnhM2Hn7JxT7HLEDfsqr5RmfQ8sZOiY/bg
T5K/Y3drAjtWli2Xug+fJqY5LfBbOAVfDbryyhCA/wDwcZS8+PcCOMQYu970uE3z/z9o/gGapuUB
vIBSn8HaWr+QMbbb6j8Amz28DldMcAq+twKfFsqiFVrRyFTw62PRqZ1ZTBV86r/eurRLaEFQiXZu
GJroAr/8+p1bdOSvya9aS2w6h8XbdJyk6AB8Fr6O9Bz8mFwF320fhuwFnk4sGkFnBT/ujICUFae7
OHbhCnyXItCy7voNAKwG58eWUODzjbbBvieaoSq0V/vecICiMu3sdCWq5ODTXfnu1jguWdljfK77
8JOk58JxDn5cjoKfpwW+YDsaEMwC/8sAbkapyG8DcCGALwJYDeC/GWPbyWO75v9fKQZD/7r4DjqJ
cJNsPSr4YRp2xSn4ggubuhT4NsaKVyriL1npzyErc4fHSQ6+GdkefADYtZ768EeF/3ynGeir6qDg
N0lU8ItFjd+CrqJQmSfZ+pGBr1MpiljE7BBZU1kvX9MLoJTnvXm4w9XP4OaD+DwAsBpzEnPwAVMW
fggabVPZPD7xs2fxxn/7Fe4/dN74utcG/KGu4ERl0v6fiik6MWuLjqZpmCIzLLpa4thBCnxdwfdm
0ZFzn6TXR6tp3l4JXKSKpmkfNX3pGQBvZ4wlAXwAwF8BeJWE37vT6uvzKv4O0b+vEoWixo1Md5OQ
QKGr/GTAh11xCr7gwoa+j/Vosq20YKl006cXKJm0SezRsGvPsErRkRmTqUMV/L3HJ5HOFoR6fmlx
Z0fBb2uKYaCjiZvmK92DL1HBp1Ma41FWNZHG3GA27JNFBygp4MfGFha4tCnPLZmcHIvOn//aFly+
uhfblnVxirQTVvQEU8HnB12J1yDp+yVil0Y23919Ep//xZEFX/eq4FMPft0VfBszUyo12aayBaNQ
bo5H0ByPYvNwB5rjEczlihiZTOPc9By3Q+3JopMTc8xomma6Ri4OBb8SX5j//3Xka7pC3wVr9K+L
N9hKYjqdM6ZfdjTHPP/RaQEn2mMtGj7jV56C71eT7aytJtv6KvhUIRbhOaZQdcKJRaenNe6LPWmw
sxnr54deZQtFbiiKCJym6AALffjSJ9maJimLxMnrNzeY+RGRqVPJw54MsEWnNRHDbZcsM45fN/AK
fn092BSZg66A+vRjeeHI+dkFX+ttS+Cy+V0ct1Ab3Kk6e/DtKPiVBl1x/vv5RKl4NIKLlhEf/vFJ
LhY1CE22haIGjUw6j0pQ8MNU4Ot7U9So+tz8/zeaH8wYiwFYAyAP4Hm5T00c4wL994ApJjPgTbaz
mcby4KftNNlaFLKDHU2cP1YmfIyqYIuOyyZbP+w5OlTFl1rg2yzuzD586ZNsyfMSnYPPR2RWf/3m
FB0/LTp0Jga9TojY8cw63MXxk+V0wnegFHzSZCthB4trsg2BRYcqz2++ejW+8pbL8cCHbvQ802aY
WHROjKfqmqRErz3NFXZtKuXgV3I8UJFs7/EJrv5xPMlWQoGfL9IEHTnXhmBdcapz5fz/abF+7/z/
X2Lx+OsAtAJ4WNO0+oa8OoAerF7994BcC4ZoGi0H384FJR5lMC/cL1nZ7UtEIMDHqIru0bBd4Mfq
V+BvHCr7l0VP9OV7EOwdz34r+FyKjmAF3+4ODrAwI3+40z+LzmsvW4HO5hjW9Lfh965dY3xdiEVH
koIvghW9fIEXFGhKiYydvLA12dL79o6VPbh+44CQ3pzlPS3GrInRZBYnJ+qn4s/ZsLJVmmRL42zp
fZ422j5waBSF+YI6EYs4XmxTIUxUio7sKbZAwAp8xtgWxtiCKAnG2GoA/zD/6VfJt74DYBTA6xhj
l5LHNwP42Pynn5fyZCUxPitmiq2OTAuGaFISU3TqsS3L5TlX2HZkjC3YkvTLfw/w77PIHg1N0/gL
WJUGy4UFvn+ptsvJTonobWo3xZ1ZwZfRZEhp8knBr3VDpcdHayLKNULK5vI1vXj8z2/FvR+4nnv/
RaRKyYrJFAG16JycSAcmC58ehzIU/LA12XrxjlcjEmHYvoKo3Cfq52TmbVnW1wrahJovasaQMj4i
s3yfp1GZehY+AFcD9HiLjpg6SvYUWyBgBT6A1wI4wxj7CWPsnxhjn2CMfQfAAQDrAfwUgDHNVtO0
aQC/ByAK4BeMsS8xxj4J4AkAV6G0APim3y/CCyKn2AK8ApgKepOtxBx8Ou3RNwWfNtlWeT3mAv8S
Hwt8WT0avDpRvcHSrO76FZEI8HnrpybFNpplXFh0VpMCszURrfq+iaBZpge/YC8mFeBz8P0ackVJ
xCJgjJliYwWn6ARMwe9sjhuKZyZf5Jq764kdYcQLvIIf/AKf3kecxjvWwiovvh7YWQgzxnibzvw9
hovIJPf5wc5m3L5z+YKf4+Y9pMehKAVf9hRbIHgF/v8C+DGAdQBeD+D9AK4H8CCANwJ4uaZpWfoP
NE37wfxj7gfwGwD+EEBu/t++TguKLGGTcc6i4y1BB+BXnkG26BSKmpGewJi1N90LdNrjZDpb5ZHi
SHETGStfVKgPOhZhuHBZpZ5x8fA7POIWgE4aLM3Fr+wpthSaJDEymRY6ut5Nk+3agTajyLTKxReN
zBQdJwscukXtp//eDL35JwWou1yKjoREGK9wNp2A+PDTNtRcL9Dd3DCk6IjMvjdjlRdfD+wo+IB1
oy29n5tTB//Pr2/FpiV8jKyb95BT8AVdJ+1O+fZCoGIyNU27D8B9Lv7dQwBeJv4Z+Q8dclUpn9kJ
7SGx6NCLemtcvHJZlxz8bO2YTIBXUbcMd0rZlq5EG9dkK+744PzXNYq7eir4Hc1xdDbHMD2XRzZf
xNhsFgMdYixCTnPwgdKC67O/eTF+8tQZ/M5Vq4Q8j2rInGTr5Big2+9DPvrvzXDXSyEKfnAtOgCw
oqcVz4yU7AsnxtPYKf+Qq4n0HHyq4C9iiw4AXEwsOvtPTWEuV5CSXFQL7jyp8vuplUW/vnAefFOB
35qI4fNv2IFX/sNDxvvoRsGXkYPPZeAvEovOoodadISk6DSJPzBlQO0hojPwgVKBrcdQzeWKwv3G
VtiJyQT4C9oOn+IxdWR4CwFn/ut6NtkCvE1nZFKcD99Nig4A3LR5CT71mu2cP1YWvEVHoge/hkK1
jexaXeEx/s8Loic7B9miAwRz2JWdyEQvhDlFR7R1tactgbX9pZ3CXEHDvlOVZobKZc7GJFvAutG2
kkVHZ+1AO/7ujouMzzcPOR8M1xyPQHcNZvNFo2HXC3kfmmwDpeAr+CZbMR788gVBxA1LFnwxLP6i
zhhDV0sc4/MLqKl0DoMdcpWKlI2YTIAf5uKn/x4QX9DocBGJDi06fjbZAqU0iWfPzAAATk2mOVXL
C9SDHsTiDjA32crLwa91DOxa14cvvGEn0rk8XnHRUqHPwwn0fJgRYdHJB9yiE8BhV/7m4Af3ngiU
wgr4Xi7xJdslK3vw/Ggpa3/PsUnsXOX/Atvuos4qKrOaRUfnJduG8dW3XoGDZ2fwustXOH5+jDG0
xKOGSJrK5tHhcsCcDu1TkzHFFlAKfuCYEOzBpxeEIDfZyszA1+n2OUnHbuzntRsGAJR2bK7fOCD9
eVFk7fBwDZYOFPxohKGv3d8Cn1PwBUbFUf910DLQdejNNJXNC1GmdDiPaY3XzxjDS7YN4VWXLJfW
cGYHc0+K1xYuWZNsRbE8gMOuuEm2MlJ0QqTgZ/JFIy89FmFShAIuL/5EfRpt7e500Z1A6ybbyjXT
NRv68ZZr1riuL6hIJ6LRNu/AwugWpeAHjAnBg644j3WAPfgyp9jqdPo8zZYuqKo12b73lg24ZkM/
VvW2Cum7cEKbpCbsjKMppuXvD7Q3SZnoV41lsiw6PjRReYUWUKPJLH7j8w/jk7dfhI1LnG9jm3GT
IlRv9IxsfRt+Llf0VGQG3qITsGFXmqbxTbYS3jOqvM7M5aFpmu+pTXYxJ+jIeJ40lnnPsfo02mZs
KvhWFh3aU2f24ItE9LCrnFLwFx9cTKYQD344UnTo4kOGBx/wv9HWbpMtYwyXre71NT1Gp01wU6EO
bSCqVdjQ7/ttzwH88uAHT70FSufEtRv6jc+fODGJX/vsA/iffWc8/+wwLHCsoDnZMx6HXQW9yXY5
seicnprjfMH1IFsoQt80iUeZlN2cRCxiNO8Wilqge9NkJujobFzSbqjTZ6bncFrwPBA78JNsHVp0
qIIvwNZcida42N3uXEFNsl1UFIoaP7ShynaTXdolxSCKJpWRr+D7WeBrGn/jkGU78oqsHR4nDab0
okwtA36xrIdm4de/ydZv/vWNl+F9t2w0EipyBQ1fffSY55+bC8nrNyNy0Rv0Y6A5HsXgfGpUoajh
9JTYWRBOmcvKbbDVCUujLV1gik7Q0YlFI9i+nObh+6/i85NsqzXZ0hQdCw++gJqpElTBT+e83ytz
i22S7WJnKp0z1IvO5pgQ9aIpFkGEdH/n6qzQVGJW4hRbHT8L/GyB904G8eYO8Ds8KQGeYx0nhc2u
dX24Zcsg1g204W3XrRXy+52wrFtOgZ8p2Ltp1ZtELIL33LIBX3rjZcbXxpLeZ0WEVcHnGs895qS7
mWbsN0FK0klLjsjUCUujrczhjxTqw3/82Li031OJOZsKPi2Es3kNc7mCsTiIR5mUgA6dVsEWnXyR
HwYpg2BecQLIVDqHn+8/KyRZoRLjgiMygZL9IwyNtimJUWA6tMNetgc/LTkVSBTxaMQowAtFTViS
Cm2yraVOxKMRfOmNl+GeD9yAi5b7GxMKlHz/+gV2IpUTFhcahiZbyhoyWEvEAphL0YkF0+NsBc3J
9m7RIR78AKboAMFK0pGdoKMTlkZb2Qk6OpetLifnfG/PiO/vScamgk+vo7lCkffftySk9lKILvCz
eZqDrxT8uvLaLz6C3/33x/HOr+2R9jsmBQ+50glDo63dzHgv+Kngz3IJOsG05+jIaLR1M8W1XkQi
DMNd4lX8rIMUmSAg+vzgj4HgLnLNiBx2FXQPPmBW8OubpFMfBT+4BT6NLu5wMaDJLtds6MeqvtJx
MJXO4V8feEHa77LCroLPpejkiyb/vTx7DsAHZQhJ0SnKv0cG/64TAPJFzcjJfuDQqLTikFPwBTaL
uG201TQNP3xiBF95+KjwIThm7DakesHPi3qavB4/J9O6QcaUvrAlqCztLjc4nxQUlZml6m3AFzlA
qYDQBbBkJu+54TJsCxwdfjaERwXfpjJZT4KUpMMl6Ei8boZlmi2n4Evs44pHI3jvLRuMz//1wRe4
wA/Z8Ck69gddUVFUpv8eAFrjElN0lEWnfhRN2dD7T01L+T00IlNkN7jbRtuHDo/hPd94Ah/50T58
/ZfHhT0fK6hS1ggpOn6kH4hCxrCrnA8ZvyJZ1l0uck5Nimk0DHqDpZlIhJkKH2/HQthevw616CQ9
K/jBjskEgOW95d2rA6enhfXhuGFOckSmDlXDZzwe5zJJ+mTRAYBXbl+G9YPtxu/94v3PS/19Opqm
cQp+tZ2uOE3RKRT5UBLpCr7Yqe8qRScgmIe/yBrnTKfY9raJO1g575iDAu6XL4wZHz8zIneEtR8K
frevFp0QKfhNYi9cAF/cBbWwoSwjCv7IpBgVM1sIvj3DjMhFMN9kGyIPvqwmW4mWEy9cMNxpLMAO
nk3ingPn6vZc5iQPudIJo0VHVoqOTjTC8L5bNhqff+Xhozg/k5H6O4GF0ajV5qAkOAVfw1SK9+DL
RPSgKz5FRyn4daOgmQt8OQq+Hx58Jwrt0bFyoTPpo2ddmoJPm2ylW3Tkx36Kgj8+xFh0qD1Fljoh
Ej4qc3Eq+IDYAj+sMZlCLTohWOh2tybwhitWGZ9/6u6DC3at/SJNYjKlevAF7lTJxK8mW52XbhvC
luFOACW71A+fGJH+O530qSRIs342X+QjMiUr+OYp117JKwU/GPin4Mvx4NMD81cvjOPln3sAr/+X
R/Hkiep5t8fGZo2P6eJDBlyKTgPk4PuxYBEFTS1yssNTjbBFJHLDrgR58MPWhwDw54jXcz5sx4CO
qCbbfKFo3DsiTN60ShG844Z1RkF94PQ0fiZg0JkbfEvRaSEpOqZ7wX/+6jiu/pt78fd3H5T2++1C
BZd2iU22OpEIw20XLzU+Fzn4rxL839z+1POSB1/s3KBq9BHR9dyMdxGIn2SrCsBbD3IAACAASURB
VPy6YS7wD59LCtmiMSPLg08LuC89+AKeGZnGw0fG8Kp/eggf/8l+y9eiaRpeGCUFvp8FcQOk6NBC
uTWgW/M6fMqSKAU/XMWtjGm2YXsPAH6Xy7NFh4vJDMfrB/gC34s/26xMyozw88pARxPeuGu18fmd
dx9ccN/zg7RvMZnWTbbFooa//skBjEym8Zl7DmHP8Qlpz8EOs5xFx5/7yEBHeZq4iHkYteAb0au/
xgUFvo8e/KGuso3zjICBcJwHX1KMcHiuunXEfKErasCzZ8TbdGTk4AOVC+aiBvzLAy/gtn98aMHN
fDKV425uU5Jz4zkPvqQLWUs8anjdsvmi1GSgVIhiMt2mLFUjG7om23KBf2Z6znOCDBCuqFCdLoHe
5NAq+M1iLDph28F523VrjcXN4XNJ/PipU74/BydqrhcqNdmenEhjhlwD77yrviq+Xyk6lL52UuDP
yvfgO5kVQc+jTL7Ie/AFiqJW0ChlMQU+EUCUgl8/zB58QI4Pn2439QhcjZoLTMaAi1eUBwo9d3YG
H/z2k1x6wlFizwFKCr7MdAU6gEuWgs8Y4xpxZKr4KW4yb8AVfM5bKGjIE7loh6G4aY5HjS3YQlHD
OQHNZVyjcUCHHJkRucsVtgJXR5RFJ2yN5j1tCbz56tXG5/cfHPX9OczVOQf/ubMz3OMePDyKR46M
oV7M+Nhkq0OtKH4o+HM0ItOxgu9fTCZV8E9PzXmuh/Jck60q8OuGVcORDB8+v90kssmWP2nee/NG
fP+du/DRV241vnbX/rP4ZxKLdWyMTxIpFDVhEYpWzPqg4ANAF/FeypxmmwrJJFuAV4ZETTqmP8ev
G5NX+EZb7zadTAgVbJEFfqoOxYkI6IJ3xsM1LwxTbM3QSdITkvuurPBt0FWFJtuDpgIfAO68+7m6
RYf63WQLAP1EwR/1w6LjRMEnaTNmD36X5AK/szlm1FLpXEFAyhidZKssOnXDyosoWsEvFjWuqU3k
wapPqAOAGzYN4A9vWg/GGN64azWn2HziZ88aaoVZwQckF8Q+KPiAfz78lA89BaJok5CDT29MQX/9
Oks6ywqNVwVf07TQW3S8nu+zPp3ToqH2jaSHIUhhmGJrhu4c16XAJyk69Wiyfe7MwgL/saMTuP+Q
/7sZgMmD70OTLcDbg8dnM9ITlZwo+HQnMFfQfJ1kyxhboOJ7Ie+DABSOu06dsSrwnz09w3movJLM
5qH/mrZEVOiW9i1bluBDL9mEt1+/Dp/7zUsQIWkOf/LSLdi5qgdAyZP/x999CpqmLVDwAXkFsaZp
nIIvU/H2q8DnC9xg39zbBA/wAEw7MgF//Tqy/OfxKOPOuSAj8vzwa1dONG2CLDphmGJrhhZJMgWd
StCBR35OstUVeqrgX7S8y/j4C784Iu25VCNZh53QRCyCzvnFRFGTH7BBFXwnKTrZfJG7RnVLzsEH
xPrw1STbgGDlwc8Wijh8Linsd0yl5NhzACAWjeCdN6zHh1+6GR3N/Co3EYvgH1+/Ax3zF4/j4ykc
Ppf0VcHP5IvG4iYRi0jNTfdNwc+FJyazVXC+L2Ca5Bvw168jcnx9GNV7QOwwuHrYC0QgarIzN+wu
4ElaOvTeUw8Ffy7rj0WnOR41zstcQcNcrohcoYgj58v39L959UXGx7KisWtRr3OI2nTGknIbbedc
puiksnnj/GSM33mThUgFP1dUOfiBgCr46wbajI9F2nT89JKZGepqxtXr+43PHz4yZqng04YWkcz6
kIGvQ29gUgt8H1+TV9olpOiEUb0VOsU1pA2mnUIVfDrsLZwF/mw279qiUA97hVfMCzy/ozLTPqXo
ALxNZ2Yuh6Ojs0Z04bLuFmwZ7jCew/RcXnq0splCUePeDz/jlvvay/dJ2T58J8lJVCyhz6urJe7L
LulSrsD31qdFBwGqSbZ1hF7kdq0rF8LPjIhb1fs5kc2KXev7jI/v2n+Gi+zUkaXg++lX5woYiQoV
LW5kjlwXQavkJtuw+K95X663hU6YejAoIm1K3CI3JIs8AIhGmKEeaxq/G+eEZAibjGPRiKGEalqp
8PUTv1J0gIU7djRBZ+OSdjDGsLyn3L92Ynyh6CWTpEkk8tPm19fmX1Sms0m25ZL1POmTkp2gozNE
LDqePfhKwQ8G1KJz1bpyIWzVkOMWP5tFrNhFXtdDh61jwWQpGH6qvdVU2mJRE9ZQlA6Rekmfn6gm
2zAWNyIV/DC+foAfdOXFe1ssar4Mr5MFl4XvcthVWI+BHs6m42+B71eKDgB0cOd7HgfJ/XzjUAcA
YAVJ1jo54W+BX88dIKrgy47KdDvJlk6TlZ2BrzMscNhVlvPgqwK/fszXfM3xCFb3lS06owK9afRm
2uVDs4iZdQPt3AQ7K7yOrq+En2kblYq4Z89M44r/ew9uufM+IZ7DMFlU6PMT1WQbpjkAOiI9+LMh
Va/bEzHoQmEqW3AdJGC2WkRD0mSs0yHAh08XBmEq8LvrmKSTpn5s6Qo+2bEzKfiblswX+L1UwRcz
4dou9exh6fPRg08V/FrJSdTKQi06/in44iw6fIqOsujUnc7mOLeytbKxuIXaReqh4DPGOBVfh97o
ZCn4fkyx1alU4H/5waM4P5PB86Oz+OnTpz3/njRn0Qn2zb1NRpNtiCb56lD1WqSCH5bXDwCRCBOy
k0EXuGEqbnVERMcmQ+jBB/g+JVmiTiUy9bLopHM4eLbcYLtRL/CpRcdnBb+eO0D91IMvsM6xgt4r
ay3qaEgItU77VTMtNVl0vMxHyNEcfDXJtv50tcRN25dZYZYOzqLjc5OtjlWBfyGJCpPlwfdTwe+u
UMQ9S9Sb8wK2JP1sHPYKVdhFNNnmCkWjyTQaYaGJCDTf8L0QVnsGIMaqFNYMfB0uSWfRWXSIgj9b
R4uO5Osm7bk5MZ4ykuMYA9YPtgMAVvS2cI/xEy6JzOdziPPgS1bw6XnSUeM82bmqB9dvHFjwdb9q
ps6WmLHwTGUL3JA0p9Dd0bike2Q47rwBobMljkSs3IRU1MSp2vwU23oV+P0LvrZ9RXmyoaw83JSP
mel0DPeJidIWW7Go4RAp8L0235Zy/cNT4HBNttmC50Ur32AbBWPhsGdwDaYeLtxAeCMiAVEFfvgs
WhTOg7/ILDpUxJKdgW6GqrmyU3So/eaz9xyGLsau7mszrCJck+2EvxadZKb83vtv0fHPg8+dJzV2
uhKxCL78psvw16+6kFsMrOlvq/KvxMEYE+bD5wp8SRZGVeA7QL/x0SJxTND2FR+T6b8HHyhd8JaT
piIA2E5Gl0/JUvBpMSz5Qraqr81YgZ+fyeDczBxGJtNc6onXm9pcrmhsHzbFIoGPSaSpIQCvorkh
GVJ7BlX0vFt0/B9QIwo+acrd+0DPp7C9fkBMFn54LTp02JW/Fh0/U3Red9lKDM1Pr6YNjxuXtBsf
00XAyYmUJ0uGU+g1xI+Mdwq16IiqcSrhdKcrEmF4/RUrcff7r8ebr16NN+1ajdsvXSHzKXKI8uHn
iUVHKfgBQG/K6WkT78OfqnNMpg616cQiDFuXdhqfy8rB9zMzPhph2DLcYXy+79T0gjQkr1YkGi3n
94XZLW0Cs/BTIVVvW+JRo4krmy9yxYZTZkNqzwAkKPghe/2A2aLj7j0Iax+G2YbqJ3ToUa2GS6/0
tiXwj7+1AzGTeqo32AKlc0G/78/lijgv2a5CqWejPrXoiAwTsWLG5UJ4qKsZH3nFVvzVK7f6eo0V
NeyKm2SrFPz6Y6XgjwvKiK13TKYOtems6G3ltuqkefB9trNsXVruK9h/appLTwC8q7fU3mGeHBxU
RDbahrHBFihtv4ry4YfZolOpT8UJfJNteBZ5OrTQcHs+OPEWBwk+Rcc/i06hqBlKOmPwpXdn56oe
/NmvbeG+pkdk6tQrSaeeC8SulriRfDUzl0cmLyZ8wQq6gA7DeWJutHULbbJVOfgBQN+67uUKfAke
/DpZdADghk0DxgLm5s2DaCEjvTMeVc1K+D0QZ9uy8q7EMyNTOCi4wOdu7CFR8OnCyquCzzcYh+P1
6/A+fPfHAadKhazAFaHgh3HQGYUqgjMu+zHCOMkWqF+KDpeHHvOvd+dNu1bj1ZcsA1BqML7a1ItG
k3T8zMLnjh+fz6FIhJnqHHnHQdisbEOcB9/9go/z4Esq8IP/bgaILqPAL29fiVDwNU3jvK71VPC7
WxP46XuuxeFzSVy5tg+MMXS1xo2pcZOpHIa6xBYs9VTw952aXmAj8XpToxadsNgz2gQm6YQ1Ax4w
D79ZnAo+LfDd7tqZp3CGDXreuj0faPNgmBa6Pa3e//5u8DNBh8IYw6desx2vvWwFVvW1cRZcoH5J
OvW+hvS1JYz7/lgyi+Gulhr/wh1ha0YflmDRiUvKwQ/+uxkg9O170U226VzB2JpsikWkew9rsaSz
GUs6ywdxdwsp8NNZbgUrAj9z8AFgw5J2xCIM+aKG4+OpBf63qXQOxaLmejT4zFz4FHx6A0l5tOik
QpQgZIZT8NPuFzr1vjl7QYiCnw3v6wfE5ODPhHAnDzCl6PhY4PMKvr/mAsYYrli7MCYaqJ9FZ6bO
fTz97U0ASrvbMn343P2yKfiWVlEefHptlWXlVRYdB+gWHdFNtkHx31eiW7Ki43dmdlMsagwyAYC8
KRayqPEXV6fwikTw/p5WcE22HqfZhrW5EOCnW3pR8MPqvwbEFPg0ASRsxwDg3aKjaVpoF3mVJtme
m5njhguJhivwA7TrYzXsaiqdkzb4UafeFi8/ojKLRY1PXQvBQph68N3GZBaLGnf8yKr7VIHvAD1G
r09mgV9H/30laGynjAKfz8H35wSn6UBWeIkEnQ5hio5ID76fcw1EI8qDPxviArezxXujMT0GwpSk
pEPPWzfnQzpXgF4LN8Ui0jy2Mmhvihm7mqlsAZl8AV95+Cgu//g9eOln7pfWcJnOkgSdWHCOGc6i
M5HCI0fGcNnHf45r/uZeHD43U+VfeqPe1xBu2JWgMBEzqVzBmD/Qmogajb1Bprs1bjSAJzN5zpJr
l5m5vHF96GiKqSbbINBl2WQroMAn8ZNddZpiWw0+VUP8Sp7Pwffnwr5tWVfV73uJBKWKX2dICnze
c+wxBz/j31wD0YjIgAfCbdGhIoOISbZhe/2Ad4tOMoQ2PR3G2IJd26/98hgA4ODZJB59flzK753L
18eDXws67OrU5Bw+8qNnkM0XMZPJ4ydPnZH2e5N1btT3Q8EPm/8eEDPsiu6MdbfJq/lUge8A3YMv
usCnhURXEC06ApruqpGqQ+pKLQXfy+sMWyoAwKusInPww5wgIy5FJxzHgA69Brld6IY5SQnwPugq
zDY1gE/SGU1mcHS03Fx66Kwc1ZpOsZU95MoJzfEoBjpKanahqOHg2aTxvVOT8jz59RYJ6LCrUVkF
PpnWG5Z7JcD78EdcHANcgS/RtaEKfAfo6l6facqb1+l2fERmAAt87oYvw6JDPfj+XNi3DHfCnMK2
kjRTeXmd/KCr4P09rZCVgx+2Jls+B19Uk21wihU7CBl0RS06IXv9AK+6ey3ww7bAA/gknX0j09yk
V/NgQFHQFJ3meLBKkxU91gkyboo7uyTrvEj2w6LDN9iG5zxZ3ddmfPzMyJTjf+9X32WwzqIAw1j5
AGyJRw0PVjZf9FwQBb3JtktyqsJsHRI32ppiWNNfPkkZAy5d1WN8PuUhKjOUKTpkYZXy2GS72Ivb
YlHjFq1hU7DbiBd2Lld05bmmrz+MBS69Dk2nc45FnLAX+FTBf/wYb8kxzw0RBddkGyAFH+CTdCgy
Ffx6z1PxxaITwt1uALhiba/x8cNHxhz/e6rg09Qq0agC3yYdTTEjNpExxjfaejz46TZ4t8Q/tlu6
W+R68PmhOP5d2Gke/qreVm7bTZhFJyQ391YBsYA69WiaFoXeSA+4t+jMmpqM3cat1gvGmOeFDl3k
hbHJti0RNVTsTL7I2TLsEEZvMYUq+I8fm+C+d/BsEkUJaTq0wA+SRQcAlldR8L3u4FsRhBSmUkxm
iTFJMZlhPU+uWlsehvb4sQnHA0DphOgepeDXH7M3vpesbsc9DkbiPPhBt+gIVvCz+aKx/RvxaTy5
zjbiw9+wpEOYFWmaU/CD9/e0gl5cUx6bbMPcYCnEnhLi16/T7TFJhy5ywnTj1mGM4ap15Vz0h4+M
Ovr3YVUmdajQ9Pz5We576VwBJyfEK9fUgx80BZ/aN3ta48aOZyZfFDILx8xcrmikrCTqlMJEew1H
BViRrZgJYaQ0UPLgrx0oOQCy+SL2HJ+o8S94qENApqirCnybdJoKNZHTbP3IQ/VCt8SYzLTJyuDX
eHIAePn2pcaF+vady4W9TurBD0uKDtdk69WiE+IhR5wH36WCzzWOhez163R6bKxP+TzbQgZXrSur
dE634WdDuItHqXUfek6CTWcuX/b5BylFBwBu3DRo2GT+5KVbOMuODJtOEHaBWxNRoxcimy963tm1
IqzD4ADgKjIY7RGH1wel4AcMs7LOTbP1atEJeA4+H5MptsCvZzPesu4WPPKnN+OhD9+EF28d4nZp
vFiRuG3HkFy0uCZbjxdyPkElWDfqWnQJiMkM+5AnwPtORjLEfRg6u4iC/+jzY46GPIU5RQmo7QuW
4cMPsoI/2NmM+z94I+7/4I14zWUrsKy7bNkZkbCbEYQ+ppIVmdp0xO9UhDlOdpcHAWBCKfjBwqzg
0wug16jMyYAr+Fxsnkc7kpl6+7U7m+PGxVpUHOhMCC069L1PeU3RCXEOPr3JzGTyrrzGQbg5e8VL
gZ8vFJGZV2MZC56f2i5r+9uwpLNU4MzM5bHvlP20jLB6i3VqqYoyCvy5AKfoAKUJ9iv7Ssr9Ulrg
S1fw63cP6ecSA8X78MO823klabR98sSkI2FMpegEjAUKfru4Ap/6sYLowe9oihmpGrPZArJkK9Ur
9ECvt9pNV9JuPfi5QtGIe2MsPAo2bS49N5Px5Lfk/Nchs2fEohHjRqNpvBJrl6DcnL3gpcCfraPt
TiSMMW4b3olKN9tAHnydGGkWlxGVeXSs7PUPujCyrMfPAr9+95DBznLwxIHT4v/mYe5V6Wtvwuah
DgBAvqjhsaP2B8CpFJ2AQQsgQOywq6Ar+CJSNSpBm7Xotmc9ENFMbPbehqW4WdrVYhS247NZnJ12
p9ZoGh8RGTQvrR1o34SrBtOA3Jy94OVcoLtyYUzQobjdhp+pcwKKV6yKjl3ry+/F8+dnkSuIE3rm
cgXcf7DcyEwXVkGEKvgyPPj1TtDRoTa1u/efFf7zZ0K+00WvD058+JOcB18V+HXHrKyLKvAz+YJR
EEUjLLAHuayozBPj5QmJlbKG/aLL9BrdqNj0gmW2dQWZSIThguFyqpCb4R1AKVVC9yonohEkfExF
EkWnUP95MM/nWtCIvBMTqSqPXAi1aAX1emYXmqTz2AvjtncvaYEWpgE+OlZC08XLu7B0Pko4Wyji
2Njsgse45aHDo8bO59r+NqwfbBf2s2WwrNvbJNNanJmeMz6WWQDW4tYLlhgfP3JkTHijbb2z/r2y
a527HT5qde5uUxadutNZrcnWQ4E/ZZpiG1TFt0tSVCYtHipNC/SL5ng5NSBX0Fx50ae5KbbhumBt
XVYu8Pedmnb1MxrBf07PdTdJOkFIwPDKFrLY2+/wWOAy8EN6DOis6G3Fit7SdSmdK+Cpk5O2/l2Y
rQeAdYG/brAdG+ctCQDw3BlnswGqQdVhWlQGlWXdNEVnrsoj3XGQWKA2LKnfYmd5T6txLcgWirjv
ufNCf34ypDGZOpev7YXuXHvm1JStYAY6HDUaYVIFAFXg20SWgs9l4AfQnqNDFfy//ukBvPNru/GT
p057/rknxsvqx/I6K/iAKRLUjXob4i1HOvjrGQcNhRS6KAprPGIXlwHvXLEKyva6Fy4gMyIOnUs6
GuQyG+JBZ1bsWuvcpkOvA2E8Bppi0QX2qnUD7di0hBT4ghpti0UNPz9wzvg8DAX+QEeT0ZMwPpvl
EoBEQN9b+p7XA/r3uHv/GaE/O+wWnc7mOC5c3g2g1LP16Au1rw+cei9Z1FUFvk0W5uCLKfAnTQp+
UKFNV3uOT+KnT5/Bu7+xFycdbt+b4RX8ABT4HhODZkIc+7V1qXvVVqcR4hG5LHxXHvzwx2S2N8Ww
pr80yKVQ1Bw1VaYa4PVTdq3n4zLtkAy5RQdYaA1Z09+GjaTYPCio0XbviUmMzk9K7WtL4JKVPUJ+
rkyiEYZhSTYdTePPt411LvBfRAr8e589J7T3IuwWHYC36djx4U/4lKADqALfNuYm287muJEsk8zk
kcm7W8HzcUnBy8DXsVJVCkUNu485m+BGyReKOD1V3t6sNA7cT7zmoM9kqEUnuAs2K9YPthue+ZHJ
NCZcLFxTIR5ypdMl0KIT1uIO4Bd8Tixbsw3UZAsAF6/oNj4+dM6eLSXsFh2ALz6Gu5rR1hTDJmLR
uffZc7jmE/fi1//hQfzS5sLHCmrPuXnLoHFfDTpLu+Q02o4ms0YR2JaI1j18YuvSTqP3Ynouj8de
sJ8WU4uZEFtadXY5nHjtV4IOoAp825gtOpEI4/44E7PufOnm7Zqg8rILh3H3+67DF96wE6/cvtT4
uluvNgCcnpozGjIHO5oCMdyEU/C9WnRCdsGKRyNG7Bfg7m/LDXkKqT2DLubdNNk2gkUHcG/ZaqQm
W6DkQ05ES7fK8zMZW4u+RtjFodfCtQOl3Zz1g+2G5zhbKOLkRBpPnpzCx396wPXvuYvYPm69YMj1
z/EbWVGZdMbAhiUdiNR5wcMYwy1E4LtLUJqOpmkNEUhw6apexKOlv9HBs0mcn6meQDfp05ArQBX4
trFKROEbbd3FCtICIsgefKB0sXnJtiG87MLyRdht2goQrAQdHerBd1PcTYfYogPwRZ2TwT46qUz4
1Vveg784p7gCwDaXTdd8TGb4zgEz0Qgz7EpAKSKyGsWiqXAJ6XtAi491A6VGz+Z4FG/atWbBYw+c
nnZl3ThyPmm8n83xCK4hUZxBZ5mkqExqz6m3/16H9+Gf9TQnRSedK0CfI9gcjyAeDWc52pKIcray
R2rsZvERmcqiU3fWD7ZznnsdET58zqLTElyLDoUvAqddn+xBStDR8ZqFH9aYTB1qy3jGhYJPhxyF
Vb2lfzevMZlhfQ8A/jx/9vQ08jYLuEZZ4FB0BRsAjtSw6ZgtSmGxnJjRbRkAOGvOX77iAjz+57fg
gQ/diOH5x+QKGo6OOo/NpKks124YCNXcDFrgj0zIUvCDERd6xZo+w244Mpnm5te4JewJOhQnPnzq
we+xqCtFogp8GzTHo4hZrC6FFPhpul0TjoN8eU+LMQxoKp1zvT1JE3SCouBzcaAu8v7DPHobALYt
86bgN0JEIh+TuThTdIDS9U0v8jL5Io7UUK51aJJSmF8/RVewAeD50RoFfoNYlN5w5SpcvKIb128c
wKsuWcZ9r7+9CSt6WzlLn5tUHZpKdN3GAfdPtg7QYVciLTpcgs5QMBT8RCzCxSgfFJCgNNMADbY6
/MCr6j58atExW79Fowp8D4go8A8TNWigo6nKI4MDY4z354648+EHLUEHMFl0PCr4YbxobR7qMBTH
F0ZnuWLVDo0Qkeh1anOjFHgAcAF3nttb8HELnBApstXgFfzqCx1ukR/Ca4DOqr42/OBdV+Mrb7m8
otWK5uI7TdXJF4pccy5VQcMA9eCfmhJT4Guaxr2PQbHoAHyaj4iI1DBHSpu5eEW3MUPn6Fiq6oJP
NdmGBK8F/lyugD3HyoNTLl0d/HgwHT5S0Z0Pn3rwl/c2nkUnbCk6QGm3at18MaNpJW+tExohIpE2
2Xr14If9xuXGh8/t4oR0kWfGiYIf9mxvJ3jJxd93atpQcZd0NmEt6XMIAzRF5/RkOTDCCyOTacPm
2N0aD5ToJzoitZHOk0QsgstW9xqfV7PpTCgPfjgY7CyffDTu0S67j00gO+9rXT/YjsGO5hr/IjhQ
K4cbrzYAnCA+vuAo+B4tOg1w0dpm6rFwQrLBmmydKviNkgyh4yZJZ7YBLTpUwT86mqraj9BIOzi1
4Iq+s84m21J7zq51/YGd4l6JlkTUCNrIF7Wa6Sl2oNaXjUs6AvWebOLsWN6nGDfKTpfOVTbjMlWK
TkhYTopSqkbbhR4EYdue5DOynSv4c7mCcUGMRpjRrFVvujwq+NMNkOtLp5g+7TAlqRFy8LlBVw5z
8DP5oqHkJaIRY65AWKEK/oFT0yjaUClnG7DJtqM5jsF5NVWPh6xE2PtwnEBjM4+OzTqaeEzvf1eF
7P6nQ3347/r6Hhw+503Zfu5MuXAOkj0HADYOlp/PkXNJ2033leB2uxvgPKE+/EerKPhcik6bUvAD
C01+cdNVzisY4brArR1oNzxnZ6czjtULOgF3aXezZRNzPaArajf+67Cn6ADARcvLg32eODFZ5ZEL
aYT879ZE1BhDP5crOhpi12gJMkOdzYYVcSaTx3EbQkYjKviAfZtOchEp+M3xKFb1lS19h20OAsvm
i3j8aHlIYtjufzp0YbL72ARe9pkH8Z3dJ13/PE7BD0iDrU5XaxxDnSUhLlso4uiYtyn2jTDFlrJt
aach6JyamqvYw8dbdJSCH1iW9bRA30E7PZV2lAM8M5fDUydL6ihjpRiqMBGNMGwZdq/icwk6AbHn
ACaLjgsFvxEmWF64rMsocA+fSzpa6PBNtuEscBljnE3n7JT9xWujJOjolBrqne3opBogA94Ku422
ybnGsh7UYiOJcnzOpjf7yZOTSM+r/St7W7nd8DDxwRdvwrtv3mBcL7OFIv7s+0+7EoeAYGbgU7im
ao+NtmEeCmlFLBrBhsHyuXDQYjdH0zSVohMWmmJRLJn3zRc1Z8MuHjs6bmzlXzDcKT0PVQZevNpB
TNABSuqtPpUunSs42nI2+6/Dqkq0JKLc4s2Jit8ITbYAb1P6xcFztv9dMVeVSgAAIABJREFUIzXY
6mx3uKMz2wB9GFbYV/Ab7xioxqYlzou+hw+Hd/eaEo9G8P5bN+LH776Gi5R90uHOJ1BKFTp8vnxc
bQxIBj5lk4vFXCX48yScu91muKQhi/cnmckjP1/3tcSjaI7LvT6qAt8jK0j6C1Wla9EIFzgvPnx+
im0wEnQAXb0tL7acpKiksgVj0RbmyXwAcMnKclG39/hElUfyNMIETwB4kWlyo10ascGSHgt7bBwL
jTDszArbCn6DLHLtstFFFn4j+O8pm4c6cQu5Ztg5T8zsOT6JbL7kAljS2SS9AdMNG10s5iox0wC7
3WZqvT9+TrEFVIHvGao+U1W6FuYEgTBCEzaeHplyNNE2iEOudGhU5n0Hz1d5JE8jKRI7yOjtvccd
KPh0imeIPej0Zv3IkTHbW+60wbJRiruLV5QL/H0j0zV7EhrlGDBjX8EPf6O9EzY5jE9MZwvcNaUR
CnzALIo4V/C/9fgJ4+ObNg8KeU6i2eRxsBkl2WBNtgCwaaj6DseEjwk6gCrwPbO813mSzsRsFgfO
lCwt0QjDZWt6a/yLYLJxqN1oKjkxnsaDh6tPcKPQxVDQ/Jc00eeD33kK7/zabltNxDPEe9sZ8hu7
WcG3k54CNI56O9zVggvno2DzRQ2/eM6eTacRGyz72puwuq90jmYLReyvYsfL5AvIFUrHSizCkAjx
LpaZZd0taJq/3o0ms5yXltIIUblOWN3fZtgaT03N1UyeevLkZGjjoavBiyL2r5lA6d7xk6dOG5+/
5tIVQp+bKNYPtht9h0dHnaUmmaH3y0Y5T8wKvln0nPAxQQdQBb5naJLOCZtJOo8+Pwb9737R8q7Q
HtxNsSju2Lnc+Pzv7jpoS8XXNC2wFh0AeN+tG7kBIz99+gze8KVf1mying75FFvKyt5WI+N5ei6P
50erT+/UaST/9a0ubDqNGBEJAJeQ4mVPFXXS3IMRpBxvr0QiDGvIMKYj563PicVm0YlHI9zuxqEa
yi61r1y6KjzDHWuxsrfVSJwqXTPtZ8X/+KnTRtPxxiXt3K5ZkGhNxLByXtQsasCR8+7z8BshkMLM
su4WI1xiIpXD+SQvDPqZgQ+oAt8zK1wo+Pc8W1YDrw6pPUfnD25ab6j4T56YxD0HaiudJZWndHK3
N8Uw0B6caX1ASYn5+fuux2uJivLc2Rl8+/Hq8WeNlArAGHPsvS4WNaSIgh/2KaYv2lou8O977rzh
j61Go6Xo6Oyw2ZPRCClK1VhHUjKer1DccBadBjoGqsE3F1Yv+qh9hV5jwg5jjDtPqi2EzXzzsbI9
5zWXrgj0wliUD7+RJtnqMMb4pCHTuaA8+CFjOZeFX7vALxQ13EsK/Ju3BNNrZ5fhrhb81hUrjc/v
vPtgza1JWiBsX9EVyItZV2scn7j9IvzRizYaX/vcvYeqbknygzvC7cEHeNXWjqc0Rd6blngU0Ujw
/q5O2LSkw9hdmsnk8ejzlYeX6HApSg1y0wLsHwuNMAehGuuIgl8p851rtA75Qt8u1Jv97JnKFi5N
07jrP7W1NAKXmGw6djh4dsZIp4pHGV69Y3mNf1FfNjlYzFWjERLnrODeH9MCiPPgtygFP/AMd7UY
GbijySzXYGbF7mMTGJ8t/ZEHO5q4CLqw8o4b1qFlPu5p/+lp/GzfmaqP33OMKDgrgn2Bf8s1a9A/
v8NwemoO3/jV8YqPnWmAKbYUp0k6qQazpzDGcOuWIePzv/jhM/itLz2K935jL0YqROLSXZxGKnA3
D3UYg+1GJtM4Oz1n+bhZrsG2cV6/Do2PfezouOVjkg26i1MNmqj22NHK14qTE2mMJkv3v47mGGft
aQTcNNp+i6j3t16wxLD5BBWqUO8/7Swem8IX+OEXxHQ2Vmk6pwp+t1Lwg080wrhx1bUm2t69v1z8
3nLBEkRCrnICwGBHM964a7Xx+Z13HzTiIq3Ye4IoOKuCvcBpTcTwzhvWGZ//w/8eQTprreI3mqdw
+/JuYwz9c2dnuNdnxWwD2XN0qA//2FgKDx0eww+eOIW/+MEzlo/nLCoNVNzFohFuwnGlBR/nwW9A
i84Va8uJL0+enLI8J2YaMB2kFpeu7jWErgOnpw0Rywy1+l28orsh7n8U8zVzpkbDcaGo4QdPjBif
B7W5lkIV6vsPnse7vrbH8SR7TdNMYkjjXCuqJQ0dIsOvZE+xBVSBLwQ+C7+yTUfTNNxFmvVo8RB2
3nbdWsNHd/hcEj96csTycZl8AftGyqv+iwOu4APA669YaYzoHk1m8O+PHLV8HN9kG35Foq0phk1D
JWVO01BzeEsj+s8vW92Dbcs6F3z9F8+dw+mphYv5RkzR0bETndro6nVvW8JQ8QtFzVLFb8TzoBbt
TTFsJ42hup1tz/EJvPxzD+AjP3wGhaJm8t8H/9rvFPM1U59WX4m9xyeMHY3+9iZcu2FA+nP0yvrB
dm5i60+ePo1b7rwPT9d4rZRMvmgMfErEImiKNU6BTxX8Q2dnDMvy7mPjeGh+/hFjwE4fGsxVgS8A
Lgu/SoF/6FwSx8ZK329LREM74MqKnrYE3nrNGuPzT//8kGXqzL5T00ZE2pr+tsBvRwJAczyKP7x5
vfH5F+47YqnMNFJMpg5tGvvhE9aLNh2usGkQ9TYWjeC779iFb/7+lfjqW68wLspFDfiORdN1Ixd3
dpquUw3eZAvwgwkfOcL3ZZyZmjPSUGIRFvokKSfQ9+XhI6PQNA0f+NaTeGZkGl955Bi+t+ckd9zs
aKAGWwp3nhyrbm2k6Vy3bBkMRd9SNMLw7bdfxSXoTaVz+MsfWe9qWtHIu1z97QmjrpnNFgw756fu
Omg85raLl2E16eeRhSrwBcAl6VSx6NCT+fpNAw21agWAt167Bl0tJeX62FgK39uzsACiF7xLAhoF
ZsUdO1cYOzUTqRy+/NDRBY9pxPzrV2xfanz83T0jeKFKXCa9aDeS/7opFsUVa/twzYZ+/M5Vq4yv
f3v3yQUN5ckG60Og0MLlqZNTllY1Lia1gY4BirmQpXxnd9lPffma3kAGCMjiqrX0fRnDr14Y564X
n/75IW6GQlCjIL2yg4uUtV/gh2lHv7s1gb+9Yzv+462XGzMQ9h6frBmRqsNl4DeIGKbDGON2OA6e
ncHDR0aN4abRCMN7bt7gy3NRBb4AaJJONQW/Ue05Op3Ncfz+dWuNzz97z+EFUy/3EpvHJSHKQE7E
InjPzeVEnX+5//kFg25mGsyiAwBXru3D1etLN+5CUcNnfn7Q8nGZfAGfu/eQ8XnQok9F8eKtQ8bu
zPHxFB59gVdwkw2WpEQZ7GjGqvmBV5l8EX/+g2cWzL2gk597ffCY1oPL1/QaSuu+U9PGdaBY1PAt
sqvz2suC76cWyY5VPUZk8vPnZ/EP/3uY+/7IZNqwZawdaPMlB7weUOvFA4dGK9YEh88ljfkiLfEo
rl4fvsjsazcMcLUMjfvcf2oa50zN+NNzOdx38Dx3nWgUMYxCffh37TuLT/7sOePzO3Yu90W9Bxqk
wGeMLWeM/Rtj7BRjLMMYO8oY+zRjzJcKspaCXyhq+NIDzxse5miE4cZN4Y7HrMSbdq02BiSNTKbx
B1/fy53ke0Oq4APAbRcvxdqB0ok5k8njXx543viepmk4N1N+nY2QoqPz/ls3GR//8MlTltnHH/vx
ATw578GMRRjecOXKBY9pBJrjUdx2yTLjc5qAsfvYODehudEUfAB41w1lq9p395zEN8jr33t8Aj+f
n4PBGPDy7cO+Pz8/6GiOG1OONQ149PmSD//RF8ZwfL6Y62yO4cVbhyr+jEakOR7FzpV8cVuJRovH
pKzpb8Pl89Pp80UNn7nnkOXjqHp/3cZ+NMfDeb24gzQGf3/vCLL5Ij75s2fxss8+gJvvvA/7TpXu
CxOzWbzycw/ijf/2K3z0v/Yb/6YRC3zqw//m4yeMGNRENII/9Em9BxqgwGeMrQOwG8CbAfwKwN8D
eB7AewA8whiTbnSnHvyT4ylO1Xr2zDRe/fmH8bGfHDC+ds36/oZVL9qaYngHSZ25e/9Z3HLnffjW
YydwZmoOp6ZKRXBLPIrNZJUbBmLRCN57S1nF//JDRzE6P6num4+d4AabrCSLvrCzc1UPbtpcWpBq
GnDnXbyK//29J/Efjx4zPv+Tl21pyAY6HZp08d/PnMHn7jmED33nSdz+hUeMXZxohHHTkBuFOy5d
jt8gOd0f+eE+Q7i48+7ycfGKi5Zi89DC5uRGgffhlwpZutj79YuXhbZg84JVX9n6wXYjalinkQZc
WfGBW8v3ie/tOWk58ZUm6t16QXgXg9dtGMBwVymEYmw2iz/53tP4p18cAVDa1X7HV/dgMpXFe7/5
BI6OLdzNoMPjGoVKDbS/efkKLCOpi7IJfYEP4J8ADAJ4t6Zpt2ma9mFN025CqdDfBODjsp9Af3vC
yIGfyeQxlc4hky/gzrsP4uWffZBLH9k81IGPv2qb7KdUV9589Rpu+NX0XB4f+u5TeM0XHzG+dtHy
LsSi4Tv8Xn7hsBETlsoWcMcXHsHXf3kcf/mjfcZjXr3DnwYaP3k/uWH9bN8ZvPs/9+LEeAof/a99
eP+3njS+92sXDuMtV6+uwzP0j23Luozc70y+iE/dfRDfevwk9HV9WyKKv7vjooaxaVEYY/jYbduM
xXm2UMTr/vlR/MUPnjEU2wgD3nuLfypVPdhFJpA/fGQMU+kc/vuZcsG22Ow5OrvWLyzwX3/5Srzr
xnXc1xpZwQdKcarXbigdI0Wt1H9AOT+TMeyqEQZDQAkj0QjD7aTh9rum3rvj4ym85NMPcLacazf0
48ZNA/jtK1fh3Tc13rViy3An/ubVF+LmzYO4cdMAbtw0gDftWo0/fulmX58HM3sow8S8en8YwFEA
6zRNK5LvdQA4DYABGNQ0rXJ3YPXfsXvHjh07du/eXfVxt955Hw7NTza8dkM/RibTeP58+VcmohH8
4U3r8bbr1xk+xUbnocOj+JPvPW1sW1PeccM6/PFL/D3YRXHPgbN461cet/ze5qEOfP+dV6OlAdMz
3vX1PfjJU6crfn/tQBt++K6rG7KwNfPtx0/gg995asHXb9g0gI+/6kJfVZp68MLoLF75uQcxY5ED
f/vO5fi7O7bX4Vn5RzpbwPaP3mUkgu1c1YPd8/bDC4Y78dP3XFvPp1c3coUitn/0LqTmG7AT0Qh+
+ac3oyURxa1/fx9OjKexrLsF93/oxlAkxnjhiROTuO0fHzI+f8nWIUTmb/3npjN4fP54uWJNL775
tqvq8RSFcXwshev+9n+5r/W1JTBmMQ/h7devw4d9LnTDxM6dO7Fnz549mqbt9Pqzwm5+unH+/3fR
4h4ANE2bYYw9BOBFAK4EcI/MJ7Kit9Uo8M3ewx0ru/HJ2y/C+sFwWVK8cvX6fvzPe6/DnXc/h399
8AXQwJGw+e8pN29Zgk/efhH+v//azxU4HU0xfP4NOxuyuAeAT/zGRWiKRfC9PQvjMq/d0I+/vX37
oijugVIRm4hFjH4EBoadq3pww6aBRZGcsqa/Df/5+1fij779JJ4l0xpjPiZE1JOWRBSXrOzGL18o
+e93k96ixareA0A8GsHla3rxi+dKau2tW5egZ74n6+u/eyX+Z98Z3LJlScMX90ApJeiWLYNGX0ql
Ce+NELixsq8Vu9b1GUkxTbEI/v2tl+P7e0bwpQdfMB535dpe/NGLNlb6MQrBhF1K1rv/rKM9AH1f
TPoR9ZJtCz10rYko/uoVF+Dbb9+16Ip7nZZEFH/2axfge++82rC29Lc3YVcIEwMor7l0Be5+//W4
ZUtpazURjeBTr9mONQ1mzaG0N8Vw52suxpfffBmWznsuu1ri+NQd2/Hvb7kcQ/NfWwwwxvDrFy/D
B1+8GR988Wb80Ys34cbNg4uiuNfZtqwLP/qDa/D+WzcaUXlvuWYNFzrQyNxhMXV0SWcTbrt4mcWj
Fw+6XSMWYfhdMhtlRW8rfvfatQ1nX6zGH714E5rjlcuszuYYXkmiiMPMO25YhwgrWY4+/qoLsXVp
F/74pZuN+NRl3S343G/uCKU1N6yE3aLzzwB+D8DvaZr2JYvvfxzAnwL4U03T/m+Nn1XJg7N5x44d
rbUsOpqmYd+paWOQVTTCcOnqngXNRYuZXKGIvccnsWGw3VB1wo6maTh4NonmeASr+hbPjSudLWDv
8QlsXdqFrtbFodorKnN6Ko1jYylctrp3UaizQOncf3pkCifGS8lp0Qhw6epedc0H8MzIFFoTUawd
aLwGSqecGE/h6ZEpmEutyPw008HOxhFGDp9LAtA4QTNXKOKxF8bVvcImyqITQBhj2LasC9vm49MU
C9G3bxsJxhiXebtYaElEQ78LoxDHcFcLhrsau+/ADGMMFy3vxkXLw2s3lIW6D5ZZ0du6aHa11lsk
4sSjEXWvqBNhL/Cn5v9f6Wqif32ywvcNKq2W5pX9Hc6fmkKhUCgUCoVC4T9hN0Pp48Eqeez1bq9K
Hn2FQqFQKBQKhaKhCHuBr+cyvYgxxr2W+ZjMqwGkADzq9xNTKBQKhUKhUCjqQagLfE3TjgC4C8Bq
AO8yffujANoA/IfbDHyFQqFQKBQKhSJshN2DDwDvBPAwgM8yxm4GcADAFShl5B8E8Gd1fG4KhUKh
UCgUCoWvhFrBBwwV/1IA/z9Khf0HAKwD8BkAV2qaNla/Z6dQKBQKhUKhUPhLIyj40DTtBIA31/t5
KBQKhUKhUCgU9Sb0Cr5CoVAoFAqFQqEoowp8hUKhUCgUCoWigVAFvkKhUCgUCoVC0UCoAl+hUCgU
CoVCoWggVIGvUCgUCoVCoVA0EKrAVygUCoVCoVAoGghV4CsUCoVCoVAoFA2EKvAVCoVCoVAoFIoG
QhX4CoVCoVAoFApFA8E0Tav3cwg0jLGxlpaW3i1bttT7qSgUCoVCoVAoGpQDBw4gnU6Pa5rW5/Vn
qQK/BoyxDIAogCfr/VwUoWDz/P+freuzUIQFdbwonKCOF4UT1PESPlYDmNY0bY3XHxTz/lwanmcA
QNO0nfV+IorgwxjbDajjRWEPdbwonKCOF4UT1PGyuFEefIVCoVAoFAqFooFQBb5CoVAoFAqFQtFA
qAJfoVAoFAqFQqFoIFSBr1AoFAqFQqFQNBCqwFcoFAqFQqFQKBoIFZOpUCgUCoVCoVA0EErBVygU
CoVCoVAoGghV4CsUCoVCoVAoFA2EKvAVCoVCoVAoFP+vvfsPlqus7zj+/pAElF8hkCJIyFx+ClSp
0lQgEU1CG0BFQqVOp5WaCIJYfoSBThUqXGsROv0FxkFQJOlIIS0gUloUkXCFkJFC20CLJsRIoOFH
EgQikISQ5Ns/nmcny3L25t79cXfvuZ/XzM7JPuc55/nu3u/efPfc55xjJeIC38zMzMysRFzgm5mZ
mZmViAt8MzMzM7MScYFvZmZmZlYiTRf4kvaSdKakOyT9QtIGSeskLZJ0hqTCMSRNlnS3pJfyNo9L
miNpVEHfCZIulXRrHmOrpJB0cD9xfVDSlZJ+IOmF3H9Vk6/1nZK+ImmZpI2S1kj6F0mH1+l/mqS5
kh6U9Oscw01NxjBB0o2SnpP0hqSVkq6WNK6g7xhJF0iaJ2mJpE05hjObiaEZzpeuzpf9JV0r6eH8
HryRt3tQ0mxJY5qJpcH4nS/dmy89ecx6jwXNxNJg/M6X7s2X+dvJl5B0XzPxNBC/86VL8yX3303S
FZKW5phflnSPpOObiWPEiIimHsDngQCeA/4JuBK4EXglt99GvqFW1TanAJuB14DvAH8DLM39by0Y
Y2ZetxVYAbycnx/cT1xX5z6bgCX536uaeJ07AYvyfh4B/hq4GXgTeB04umCbyrivAj/P/76piRgO
Albn/XwfuApYmJ8vBfaq6b9HXhfAC8Az+d9nNvtzd76UMl+mAuuAHwHXAV8Drq/Km4XAaOeL8yX3
78nrlgC9BY/ThjJXnC9dny8z6+RJb34fA7jY+eJ8yf3HAU/k9f+b35MbgLW57YyhzJXh+GjFB2Q6
cDKwQ037PmwrDD5Z1b47sAZ4A5hU1f4OYHHu/4c1+5oAHAfsnp/3DeAD8n7gA8CO+XmzH5AvVT7A
1a81f9gjJ2LtezANOAQQqXhq9gNyT97HeTXtf5/br6tp3xE4Cdg3P++l8wW+86W782WHgv2MAe7P
23zK+eJ8ye09uX3+UOaE82V45ks/+9kDWJ9/BuOdL86X3H5Nbr+dqgNLwN75Z7MemDCU+TLcHu3d
OVySf0Bzq9o+m9v+saD/9LzuJ9vZ73Y/IAXbNPwByQn+dN7HAQXrH8jrpvWzj6Y+IKRvvwE8VfBB
3I10NOF1YJd+9tFLhwt858vwyZeabS7I+7u003nifOmOfKELC3znS/fmSz/7Oi/v65ZO54jzpXvy
hW1fsH6zYH9z8rrLOp0n3fxo90m2b+bl5qq26Xn5w4L+D5C+lU2WtFM7Axukg4CJwJMR8VTB+h/k
5fSCda0yLS9/FBFbq1dExKvAQ8DOwDFtjKHdnC+t07J8yfNKP5qfPt7KIJvkfGmdZvLl3ZLOlnRJ
Xh7Zxjib4XxpnVb+f/S5vPxW68JrCedL6zSSL/vk5S8L9ldp81z8frStwJc0GviT/LT6w/CevHyy
dpuI2Ez6hjcaOLBdsTWgbszZ8rw8tOQxtI3zpXtikDReUm8+Ieta0vzIGcDNEXFX60MdPOdLV8Xw
e6RzNq7Iy8ck3S9pYmtDbJzzpTtjkHQs8D5S8Xl/i2JrmvOlK2J4MS8PKOhfeX/fU7DOsnYewb8K
eC9wd0TcU9U+Ni/X1dmu0r5HuwJrQDfE3A0xtJPzpXtiGA9cDlwGnEM6AvS3wKwWxtcs50vnY1gP
fBX4bdIJceOAj5DO15gK3Cdpl5ZH2hjnS3fGcFZefrvpiFrL+dL5GP49L79SfXUiSb8BXJifFl59
x5LR7dippPOBi0hH/k5vxxitJqm3oHl+RKwcovF7KCigIqJ3KMbvJOdLQ+P30KZ8iYilaQiNAvYD
TgX+EviQpI9FxEvNjtEM50tD4/fQ4nyJiDWkL4HVHpA0g3TFjqOBM0kny3WM86Wh8Xto8/9HksYC
nyJdKWZ+q/bbLOdLQ+P30Pp8uQw4ATgNWJIvoboL6cTgZ0nTjrbW39xaXuBLOpf0C/1nwPEFxUDl
m9pYilXaX2l1bNtxeUFbH7CSoYm5p04MvXnZre9bU5wvDeupE0NvXjYdQ0RsIZ3odI2k1cAtpEL/
3EHG2jLOl4b11ImhNy9bFkNEbJZ0A6nA/zAdLPCdLw3rqRNDb162IoZPk+ZdL4iIF/vpN2ScLw3r
qRNDb14OOoaIeF7S7wBfBj4OfIE0beefST+j5aQrGlkdLS3wJc0B/oF0zdLj8xGeWsuASaS5Vv9Z
s/1o0nyrzRSfWNE2EaF+Vi/Ly3pz1A7Jy3rzywYyfh/pbPeOxTDUnC/DKl8qJ2JNHWD/lnO+DKt8
WZuXHZui43zp+nypnFx7/cAjax/nS/flS0SsJh1QestBJUmVE4IfGVSgI0zL5uBL+nPSh2MJ6XJL
9b5ZLczLEwvWfZj0jX5xRLzRqthaYAXpSOahkopO+DgpLxcWrGuVyglIM2rvridpN2AKaU7sT9sY
Q8s4X4DhlS/75eXmfnu1ifMFGF75UrkaxpAWOhXOF6CL80XS0cBvkU6u7WtjnAPifAG6OF8KVE6A
vrk14ZVUK661SfoTSgCPAntup+/upKM7A75RRME++hjC68jm7Qd9o4ia7afS4RuL0CXXwXe+dGe+
AEcBowr2sytwb97mCueL86UqX4pujHY8sDFvM9n54nwp2PY7uc9FQ50fzpfhkS+kA9C7FuzndNLc
+4f6i9mPSLdgboakz5BOkNkCzKX4LOmVETG/apuZpFtAbwQWAC8BnyBd8ug20t0y3xKYpPlVT08E
3gV8j3QbZYAbImJRVf/DgC9WbfMZ0jfEW6vaLo4Bzv3L17VdCEwm/SK4j3SSxx+QThKaHhEP12wz
k3SbakjXdD2BdETrwdz2YkRcPJDx8/4OIv0S2Ru4k3T76KNJ15h9kvSf6a9qtvkicFh++n7SUZPF
bLss1aKIuGGgMTTL+dK9+SLp+6QjKYvZdqfA/UlHePbI7SdExGsDjaFZzpeuzpc+0p/WFwOrcvOR
bLue9pcj4q8GOn4rOF+6N1+qttsdeI40RXjCQF9zOzhfujdfJO0KrCYdXFpBKuqnAMfmbX83Ip4b
6PgjUrPfENh2VLi/R1/BdlOAu4GXgQ3A/5AuffS2I4i5//bGmFXTf+oAtukZ5GvdmXSS4XLSN/i1
pA/cEQ2+NysbeL/3B+YBz5M+mE8DVwPj6vTv204M89vxzdH5MvzyBfgYcBPpl+060o1e1gA/Jl3O
bvRgx3e+lDpfzgD+jXQi32s55mdIJ8EdN9S54nzp7nyp2uacPF7H71zrfOnefAHGkP7Ss4x0l9vX
SVOoLgF27nTuDIdH00fwzczMzMyse7TzRldmZmZmZjbEXOCbmZmZmZWIC3wzMzMzsxJxgW9mZmZm
ViIu8M3MzMzMSsQFvpmZmZlZibjANzMzMzMrERf4ZmZmZmYl4gLfzMzMzKxEXOCbmZmZmZWIC3wz
MzMzsxJxgW9mNsJIWilp5Ugd38ys7Fzgm5mNcJJmSQpJszodi5mZNc8FvpmZmZlZibjANzMzMzMr
ERf4ZmYlpORcSU9I2ijpWUnfkDS2pl8fMC8/nZen6lQePVX9Rkv6gqSfSvq1pPWS/juP8bb/SwY6
flX/sZL+TNJCSaskbZK0VtK/Sjq2pu+4PP4KSaqzv7vya5g0qDfOzKwEFBGdjsHMzFpM0jXA+cDz
wG3Am8ApwMvAfsCmiOjJ8+5n5nV3AkuqdnN1RLwiaQxwF3ACsAzoAzYC04AjgZsi4vRGxq/qfwzw
QH6syP0mAp8AdgJOjogfVvW/EZgNzIiIe2vG3h94ClgSES7wzWwMVTl8AAADxElEQVTEcYFvZlYy
kiYDD5EK5Q9GxEu5/R3A/cAxwNOVAjsX+fOA2RExv2B/vcDlwDeAORGxJbePAr4FfBaYGRF3NjJ+
XjcWGBMRL9aMPQH4D2BdRBxe1T4JeAS4PSJOqxPvWRHx7QG/cWZmJeEpOmZm5TM7L6+oFNcAEbER
+NJgdpSn35wHvABcWCnu8/62ABcBAfxxM+NHxLra4j63ryL9BeAwSROr2h8FHgVOkbRPVbyjgDOA
V4FbBvNazczKYnSnAzAzs5Y7Ki9/UrBuEbCloL2eQ4E9geXAX9SZ8r4BOLzqeUPjS5oCXAAcC+wN
7FjTZT/gmarn1wI3kv6C8LXc9lFgAvDNiHit8BWZmZWcC3wzs/KpnMi6unZFRGyW9LYj5f3YKy8P
IU17qWfXZsaXdCrpSP1G4F7S9J7Xga3AVOAjpLn41RYAfwd8TtJVEbEVOCuvu76fWM3MSs0FvplZ
+azLy3cBv6xeIWk0MB5YNch93RERv9/G8b8KbAImRcTPa7a5nlTgv0VEbJA0H7gQmCHpCeAk4OGI
eGyAsZqZlY7n4JuZlc9/5eXbimLgQ8ComrbKlJnadoClwCvAMflqOu0YH+Bg4GcFxf0OeZt6vkk6
B+Bs0tz7UfjovZmNcC7wzczKZ35eXippz0pjvorNlQX9f5WXE2tXRMRmYC6wL/B1Se+s7SNpX0lH
NDE+wErgEEnvruovoBc4os42RMRy4D7g48DnSV9GFtTrb2Y2EvgymWZmJSTp66Sr32z3OvSSxpGm
zGwGvku6Yg7A3IhYl4/c30a6Jv2zwMK83Js0N38KcGlEXNXI+Ln/2cB1wBrg9tx/Cqm4/zFwMjAt
IvoKXuupwPeqYj5/8O+YmVl5uMA3MyuhfPT7T/PjQNJR+juAS4DHAGoK7BNJJ9G+D9glNx8QESur
9vdpYBbwAdJJtWtJN5S6G/huRPxfo+PnbWYBc0hfGjYADwKXAZ/MsdUr8EeRvpSMB94bEU8M+I0y
MyshF/hmZjasSToQ+AXwUEQc1+l4zMw6zXPwzcxsuLsYEOlOu2ZmI56P4JuZ2bCT72r7R6TpPLOB
x4Gj8rXwzcxGNF8H38zMhqMDSVfkWU+6MdY5Lu7NzBIfwTczMzMzKxHPwTczMzMzKxEX+GZmZmZm
JeIC38zMzMysRFzgm5mZmZmViAt8MzMzM7MScYFvZmZmZlYiLvDNzMzMzErEBb6ZmZmZWYm4wDcz
MzMzKxEX+GZmZmZmJeIC38zMzMysRFzgm5mZmZmViAt8MzMzM7MS+X/IzNoeXik6hgAAAABJRU5E
rkJggg==
"
width=380
height=263
>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h3 id="Dummy-variables">Dummy variables<a class="anchor-link" href="#Dummy-variables">¶</a></h3><p>Here we have some categorical variables like season, weather, month. To include these in our model, we'll need to make binary dummy variables. This is simple to do with Pandas thanks to <code>get_dummies()</code>.</p>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [6]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">dummy_fields</span> <span class="o">=</span> <span class="p">[</span><span class="s1">'season'</span><span class="p">,</span> <span class="s1">'weathersit'</span><span class="p">,</span> <span class="s1">'mnth'</span><span class="p">,</span> <span class="s1">'hr'</span><span class="p">,</span> <span class="s1">'weekday'</span><span class="p">]</span>
<span class="k">for</span> <span class="n">each</span> <span class="ow">in</span> <span class="n">dummy_fields</span><span class="p">:</span>
<span class="n">dummies</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">get_dummies</span><span class="p">(</span><span class="n">rides</span><span class="p">[</span><span class="n">each</span><span class="p">],</span> <span class="n">prefix</span><span class="o">=</span><span class="n">each</span><span class="p">,</span> <span class="n">drop_first</span><span class="o">=</span><span class="kc">False</span><span class="p">)</span>
<span class="n">rides</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">concat</span><span class="p">([</span><span class="n">rides</span><span class="p">,</span> <span class="n">dummies</span><span class="p">],</span> <span class="n">axis</span><span class="o">=</span><span class="mi">1</span><span class="p">)</span>
<span class="n">fields_to_drop</span> <span class="o">=</span> <span class="p">[</span><span class="s1">'instant'</span><span class="p">,</span> <span class="s1">'dteday'</span><span class="p">,</span> <span class="s1">'season'</span><span class="p">,</span> <span class="s1">'weathersit'</span><span class="p">,</span>
<span class="s1">'weekday'</span><span class="p">,</span> <span class="s1">'atemp'</span><span class="p">,</span> <span class="s1">'mnth'</span><span class="p">,</span> <span class="s1">'workingday'</span><span class="p">,</span> <span class="s1">'hr'</span><span class="p">]</span>
<span class="n">data</span> <span class="o">=</span> <span class="n">rides</span><span class="o">.</span><span class="n">drop</span><span class="p">(</span><span class="n">fields_to_drop</span><span class="p">,</span> <span class="n">axis</span><span class="o">=</span><span class="mi">1</span><span class="p">)</span>
<span class="n">data</span><span class="o">.</span><span class="n">head</span><span class="p">()</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[6]:</div>
<div class="output_html rendered_html output_subarea output_execute_result">
<div>
<style>
.dataframe thead tr:only-child th {
text-align: right;
}
.dataframe thead th {
text-align: left;
}
.dataframe tbody tr th {
vertical-align: top;
}
</style>
<table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>yr</th>
<th>holiday</th>
<th>temp</th>
<th>hum</th>
<th>windspeed</th>
<th>casual</th>
<th>registered</th>
<th>cnt</th>
<th>season_1</th>
<th>season_2</th>
<th>...</th>
<th>hr_21</th>
<th>hr_22</th>
<th>hr_23</th>
<th>weekday_0</th>
<th>weekday_1</th>
<th>weekday_2</th>
<th>weekday_3</th>
<th>weekday_4</th>
<th>weekday_5</th>
<th>weekday_6</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>0</td>
<td>0</td>
<td>0.24</td>
<td>0.81</td>
<td>0.0</td>
<td>3</td>
<td>13</td>
<td>16</td>
<td>1</td>
<td>0</td>
<td>...</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>1</td>
</tr>
<tr>
<th>1</th>
<td>0</td>
<td>0</td>
<td>0.22</td>
<td>0.80</td>
<td>0.0</td>
<td>8</td>
<td>32</td>
<td>40</td>
<td>1</td>
<td>0</td>
<td>...</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>1</td>
</tr>
<tr>
<th>2</th>
<td>0</td>
<td>0</td>
<td>0.22</td>
<td>0.80</td>
<td>0.0</td>
<td>5</td>
<td>27</td>
<td>32</td>
<td>1</td>
<td>0</td>
<td>...</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>1</td>
</tr>
<tr>
<th>3</th>
<td>0</td>
<td>0</td>
<td>0.24</td>
<td>0.75</td>
<td>0.0</td>
<td>3</td>
<td>10</td>
<td>13</td>
<td>1</td>
<td>0</td>
<td>...</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>1</td>
</tr>
<tr>
<th>4</th>
<td>0</td>
<td>0</td>
<td>0.24</td>
<td>0.75</td>
<td>0.0</td>
<td>0</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>0</td>
<td>...</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>1</td>
</tr>
</tbody>
</table>
<p>5 rows × 59 columns</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h3 id="Scaling-target-variables">Scaling target variables<a class="anchor-link" href="#Scaling-target-variables">¶</a></h3><p>To make training the network easier, we'll standardize each of the continuous variables. That is, we'll shift and scale the variables such that they have zero mean and a standard deviation of 1.</p>
<p>The scaling factors are saved so we can go backwards when we use the network for predictions.</p>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [7]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">quant_features</span> <span class="o">=</span> <span class="p">[</span><span class="s1">'casual'</span><span class="p">,</span> <span class="s1">'registered'</span><span class="p">,</span> <span class="s1">'cnt'</span><span class="p">,</span> <span class="s1">'temp'</span><span class="p">,</span> <span class="s1">'hum'</span><span class="p">,</span> <span class="s1">'windspeed'</span><span class="p">]</span>
<span class="c1"># Store scalings in a dictionary so we can convert back later</span>
<span class="n">scaled_features</span> <span class="o">=</span> <span class="p">{}</span>
<span class="k">for</span> <span class="n">each</span> <span class="ow">in</span> <span class="n">quant_features</span><span class="p">:</span>
<span class="n">mean</span><span class="p">,</span> <span class="n">std</span> <span class="o">=</span> <span class="n">data</span><span class="p">[</span><span class="n">each</span><span class="p">]</span><span class="o">.</span><span class="n">mean</span><span class="p">(),</span> <span class="n">data</span><span class="p">[</span><span class="n">each</span><span class="p">]</span><span class="o">.</span><span class="n">std</span><span class="p">()</span>
<span class="n">scaled_features</span><span class="p">[</span><span class="n">each</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span><span class="n">mean</span><span class="p">,</span> <span class="n">std</span><span class="p">]</span>
<span class="n">data</span><span class="o">.</span><span class="n">loc</span><span class="p">[:,</span> <span class="n">each</span><span class="p">]</span> <span class="o">=</span> <span class="p">(</span><span class="n">data</span><span class="p">[</span><span class="n">each</span><span class="p">]</span> <span class="o">-</span> <span class="n">mean</span><span class="p">)</span><span class="o">/</span><span class="n">std</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h3 id="Splitting-the-data-into-training,-testing,-and-validation-sets">Splitting the data into training, testing, and validation sets<a class="anchor-link" href="#Splitting-the-data-into-training,-testing,-and-validation-sets">¶</a></h3><p>We'll save the data for the last approximately 21 days to use as a test set after we've trained the network. We'll use this set to make predictions and compare them with the actual number of riders.</p>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [8]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># Save data for approximately the last 21 days </span>
<span class="n">test_data</span> <span class="o">=</span> <span class="n">data</span><span class="p">[</span><span class="o">-</span><span class="mi">21</span><span class="o">*</span><span class="mi">24</span><span class="p">:]</span>
<span class="c1"># Now remove the test data from the data set </span>
<span class="n">data</span> <span class="o">=</span> <span class="n">data</span><span class="p">[:</span><span class="o">-</span><span class="mi">21</span><span class="o">*</span><span class="mi">24</span><span class="p">]</span>
<span class="c1"># Separate the data into features and targets</span>
<span class="n">target_fields</span> <span class="o">=</span> <span class="p">[</span><span class="s1">'cnt'</span><span class="p">,</span> <span class="s1">'casual'</span><span class="p">,</span> <span class="s1">'registered'</span><span class="p">]</span>
<span class="n">features</span><span class="p">,</span> <span class="n">targets</span> <span class="o">=</span> <span class="n">data</span><span class="o">.</span><span class="n">drop</span><span class="p">(</span><span class="n">target_fields</span><span class="p">,</span> <span class="n">axis</span><span class="o">=</span><span class="mi">1</span><span class="p">),</span> <span class="n">data</span><span class="p">[</span><span class="n">target_fields</span><span class="p">]</span>
<span class="n">test_features</span><span class="p">,</span> <span class="n">test_targets</span> <span class="o">=</span> <span class="n">test_data</span><span class="o">.</span><span class="n">drop</span><span class="p">(</span><span class="n">target_fields</span><span class="p">,</span> <span class="n">axis</span><span class="o">=</span><span class="mi">1</span><span class="p">),</span> <span class="n">test_data</span><span class="p">[</span><span class="n">target_fields</span><span class="p">]</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<p>We'll split the data into two sets, one for training and one for validating as the network is being trained. Since this is time series data, we'll train on historical data, then try to predict on future data (the validation set).</p>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [9]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="c1"># Hold out the last 60 days or so of the remaining data as a validation set</span>
<span class="n">train_features</span><span class="p">,</span> <span class="n">train_targets</span> <span class="o">=</span> <span class="n">features</span><span class="p">[:</span><span class="o">-</span><span class="mi">60</span><span class="o">*</span><span class="mi">24</span><span class="p">],</span> <span class="n">targets</span><span class="p">[:</span><span class="o">-</span><span class="mi">60</span><span class="o">*</span><span class="mi">24</span><span class="p">]</span>
<span class="n">val_features</span><span class="p">,</span> <span class="n">val_targets</span> <span class="o">=</span> <span class="n">features</span><span class="p">[</span><span class="o">-</span><span class="mi">60</span><span class="o">*</span><span class="mi">24</span><span class="p">:],</span> <span class="n">targets</span><span class="p">[</span><span class="o">-</span><span class="mi">60</span><span class="o">*</span><span class="mi">24</span><span class="p">:]</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h2 id="Time-to-build-the-network">Time to build the network<a class="anchor-link" href="#Time-to-build-the-network">¶</a></h2><p>Below you'll build your network. We've built out the structure and the backwards pass. You'll implement the forward pass through the network. You'll also set the hyperparameters: the learning rate, the number of hidden units, and the number of training passes.</p>
<p><img src="assets/neural_network.png" width=300px></p>
<p>The network has two layers, a hidden layer and an output layer. The hidden layer will use the sigmoid function for activations. The output layer has only one node and is used for the regression, the output of the node is the same as the input of the node. That is, the activation function is $f(x)=x$. A function that takes the input signal and generates an output signal, but takes into account the threshold, is called an activation function. We work through each layer of our network calculating the outputs for each neuron. All of the outputs from one layer become inputs to the neurons on the next layer. This process is called <em>forward propagation</em>.</p>
<p>We use the weights to propagate signals forward from the input to the output layers in a neural network. We use the weights to also propagate error backwards from the output back into the network to update our weights. This is called <em>backpropagation</em>.</p>
<blockquote><p><strong>Hint:</strong> You'll need the derivative of the output activation function ($f(x) = x$) for the backpropagation implementation. If you aren't familiar with calculus, this function is equivalent to the equation $y = x$. What is the slope of that equation? That is the derivative of $f(x)$.</p>
</blockquote>
<p>Below, you have these tasks:</p>
<ol>
<li>Implement the sigmoid function to use as the activation function. Set <code>self.activation_function</code> in <code>__init__</code> to your sigmoid function.</li>
<li>Implement the forward pass in the <code>train</code> method.</li>
<li>Implement the backpropagation algorithm in the <code>train</code> method, including calculating the output error.</li>
<li>Implement the forward pass in the <code>run</code> method.</li>
</ol>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [10]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="k">class</span> <span class="nc">NeuralNetwork</span><span class="p">(</span><span class="nb">object</span><span class="p">):</span>
<span class="k">def</span> <span class="nf">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">input_nodes</span><span class="p">,</span> <span class="n">hidden_nodes</span><span class="p">,</span> <span class="n">output_nodes</span><span class="p">,</span> <span class="n">learning_rate</span><span class="p">):</span>
<span class="c1"># Set number of nodes in input, hidden and output layers.</span>
<span class="bp">self</span><span class="o">.</span><span class="n">input_nodes</span> <span class="o">=</span> <span class="n">input_nodes</span>
<span class="bp">self</span><span class="o">.</span><span class="n">hidden_nodes</span> <span class="o">=</span> <span class="n">hidden_nodes</span>
<span class="bp">self</span><span class="o">.</span><span class="n">output_nodes</span> <span class="o">=</span> <span class="n">output_nodes</span>
<span class="c1"># Initialize weights</span>
<span class="bp">self</span><span class="o">.</span><span class="n">weights_input_to_hidden</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">random</span><span class="o">.</span><span class="n">normal</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">input_nodes</span><span class="o">**-</span><span class="mf">0.5</span><span class="p">,</span>
<span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">input_nodes</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">hidden_nodes</span><span class="p">))</span>
<span class="bp">self</span><span class="o">.</span><span class="n">weights_hidden_to_output</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">random</span><span class="o">.</span><span class="n">normal</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">hidden_nodes</span><span class="o">**-</span><span class="mf">0.5</span><span class="p">,</span>
<span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">hidden_nodes</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">output_nodes</span><span class="p">))</span>
<span class="bp">self</span><span class="o">.</span><span class="n">lr</span> <span class="o">=</span> <span class="n">learning_rate</span>
<span class="c1">#### TODO: Set self.activation_function to your implemented sigmoid function ####</span>
<span class="c1">#</span>
<span class="c1"># Note: in Python, you can define a function with a lambda expression,</span>
<span class="c1"># as shown below.</span>
<span class="bp">self</span><span class="o">.</span><span class="n">activation_function</span> <span class="o">=</span> <span class="k">lambda</span> <span class="n">x</span> <span class="p">:</span> <span class="mi">1</span> <span class="o">/</span> <span class="p">(</span><span class="mi">1</span> <span class="o">+</span> <span class="n">np</span><span class="o">.</span><span class="n">exp</span><span class="p">(</span><span class="o">-</span><span class="n">x</span><span class="p">))</span> <span class="c1"># Replace 0 with your sigmoid calculation.</span>
<span class="c1">### If the lambda code above is not something you're familiar with,</span>
<span class="c1"># You can uncomment out the following three lines and put your </span>
<span class="c1"># implementation there instead.</span>
<span class="c1">#</span>
<span class="c1">#def sigmoid(x):</span>
<span class="c1"># return 0 # Replace 0 with your sigmoid calculation here</span>
<span class="c1">#self.activation_function = sigmoid</span>
<span class="k">def</span> <span class="nf">train</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">features</span><span class="p">,</span> <span class="n">targets</span><span class="p">):</span>
<span class="sd">''' Train the network on batch of features and targets. </span>
<span class="sd"> </span>
<span class="sd"> Arguments</span>
<span class="sd"> ---------</span>
<span class="sd"> </span>
<span class="sd"> features: 2D array, each row is one data record, each column is a feature</span>
<span class="sd"> targets: 1D array of target values</span>
<span class="sd"> </span>
<span class="sd"> '''</span>
<span class="n">n_records</span> <span class="o">=</span> <span class="n">features</span><span class="o">.</span><span class="n">shape</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span>
<span class="n">delta_weights_i_h</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">zeros</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">weights_input_to_hidden</span><span class="o">.</span><span class="n">shape</span><span class="p">)</span>
<span class="n">delta_weights_h_o</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">zeros</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">weights_hidden_to_output</span><span class="o">.</span><span class="n">shape</span><span class="p">)</span>
<span class="k">for</span> <span class="n">X</span><span class="p">,</span> <span class="n">y</span> <span class="ow">in</span> <span class="nb">zip</span><span class="p">(</span><span class="n">features</span><span class="p">,</span> <span class="n">targets</span><span class="p">):</span>
<span class="c1">#### Implement the forward pass here ####</span>
<span class="c1">### Forward pass ###</span>
<span class="c1"># TODO: Hidden layer - Replace these values with your calculations.</span>
<span class="n">hidden_inputs</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">dot</span><span class="p">(</span><span class="n">X</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">weights_input_to_hidden</span><span class="p">)</span>
<span class="n">hidden_outputs</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">activation_function</span><span class="p">(</span><span class="n">hidden_inputs</span><span class="p">)</span>
<span class="c1"># TODO: Output layer - Replace these values with your calculations.</span>
<span class="n">final_inputs</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">dot</span><span class="p">(</span><span class="n">hidden_outputs</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">weights_hidden_to_output</span><span class="p">)</span>
<span class="n">final_outputs</span> <span class="o">=</span> <span class="n">final_inputs</span>
<span class="c1">#### Implement the backward pass here ####</span>
<span class="c1">### Backward pass ###</span>
<span class="c1"># TODO: Output error - Replace this value with your calculations.</span>
<span class="c1"># TODO: Calculate the hidden layer's contribution to the error</span>
<span class="n">error</span> <span class="o">=</span> <span class="n">y</span> <span class="o">-</span> <span class="n">final_outputs</span>
<span class="n">output_error_term</span> <span class="o">=</span> <span class="n">error</span>
<span class="n">hidden_error</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">dot</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">weights_hidden_to_output</span><span class="p">,</span> <span class="n">output_error_term</span><span class="p">)</span>
<span class="n">hidden_error_term</span> <span class="o">=</span> <span class="n">hidden_error</span> <span class="o">*</span> <span class="n">hidden_outputs</span> <span class="o">*</span> <span class="p">(</span><span class="mi">1</span> <span class="o">-</span> <span class="n">hidden_outputs</span><span class="p">)</span>
<span class="c1"># Weight step (input to hidden)</span>
<span class="n">delta_weights_i_h</span> <span class="o">+=</span> <span class="n">hidden_error_term</span> <span class="o">*</span> <span class="n">X</span><span class="p">[:,</span> <span class="kc">None</span><span class="p">]</span>
<span class="c1"># Weight step (hidden to output)</span>
<span class="n">delta_weights_h_o</span> <span class="o">+=</span> <span class="n">output_error_term</span> <span class="o">*</span> <span class="n">hidden_outputs</span><span class="p">[:,</span> <span class="kc">None</span><span class="p">]</span>
<span class="c1"># TODO: Update the weights - Replace these values with your calculations.</span>
<span class="c1"># update hidden-to-output weights with gradient descent step</span>
<span class="bp">self</span><span class="o">.</span><span class="n">weights_hidden_to_output</span> <span class="o">+=</span> <span class="bp">self</span><span class="o">.</span><span class="n">lr</span> <span class="o">*</span> <span class="n">delta_weights_h_o</span> <span class="o">/</span> <span class="nb">len</span><span class="p">(</span><span class="n">targets</span><span class="p">)</span>
<span class="c1"># update input-to-hidden weights with gradient descent step</span>
<span class="bp">self</span><span class="o">.</span><span class="n">weights_input_to_hidden</span> <span class="o">+=</span> <span class="bp">self</span><span class="o">.</span><span class="n">lr</span> <span class="o">*</span> <span class="n">delta_weights_i_h</span> <span class="o">/</span> <span class="nb">len</span><span class="p">(</span><span class="n">targets</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">run</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">features</span><span class="p">):</span>
<span class="sd">''' Run a forward pass through the network with input features </span>
<span class="sd"> </span>
<span class="sd"> Arguments</span>
<span class="sd"> ---------</span>
<span class="sd"> features: 1D array of feature values</span>
<span class="sd"> '''</span>
<span class="c1">#### Implement the forward pass here ####</span>
<span class="c1"># TODO: Hidden layer - replace these values with the appropriate calculations.</span>
<span class="n">hidden_inputs</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">dot</span><span class="p">(</span><span class="n">features</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">weights_input_to_hidden</span><span class="p">)</span>
<span class="n">hidden_outputs</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">activation_function</span><span class="p">(</span><span class="n">hidden_inputs</span><span class="p">)</span>
<span class="c1"># TODO: Output layer - Replace these values with the appropriate calculations.</span>
<span class="n">final_inputs</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">dot</span><span class="p">(</span><span class="n">hidden_outputs</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">weights_hidden_to_output</span><span class="p">)</span>
<span class="n">final_outputs</span> <span class="o">=</span> <span class="n">final_inputs</span>
<span class="k">return</span> <span class="n">final_outputs</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [11]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="k">def</span> <span class="nf">MSE</span><span class="p">(</span><span class="n">y</span><span class="p">,</span> <span class="n">Y</span><span class="p">):</span>
<span class="k">return</span> <span class="n">np</span><span class="o">.</span><span class="n">mean</span><span class="p">((</span><span class="n">y</span><span class="o">-</span><span class="n">Y</span><span class="p">)</span><span class="o">**</span><span class="mi">2</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h2 id="Unit-tests">Unit tests<a class="anchor-link" href="#Unit-tests">¶</a></h2><p>Run these unit tests to check the correctness of your network implementation. This will help you be sure your network was implemented correctly befor you starting trying to train it. These tests must all be successful to pass the project.</p>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [12]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="kn">import</span> <span class="nn">unittest</span>
<span class="n">inputs</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">array</span><span class="p">([[</span><span class="mf">0.5</span><span class="p">,</span> <span class="o">-</span><span class="mf">0.2</span><span class="p">,</span> <span class="mf">0.1</span><span class="p">]])</span>
<span class="n">targets</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">array</span><span class="p">([[</span><span class="mf">0.4</span><span class="p">]])</span>
<span class="n">test_w_i_h</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">array</span><span class="p">([[</span><span class="mf">0.1</span><span class="p">,</span> <span class="o">-</span><span class="mf">0.2</span><span class="p">],</span>
<span class="p">[</span><span class="mf">0.4</span><span class="p">,</span> <span class="mf">0.5</span><span class="p">],</span>
<span class="p">[</span><span class="o">-</span><span class="mf">0.3</span><span class="p">,</span> <span class="mf">0.2</span><span class="p">]])</span>
<span class="n">test_w_h_o</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">array</span><span class="p">([[</span><span class="mf">0.3</span><span class="p">],</span>
<span class="p">[</span><span class="o">-</span><span class="mf">0.1</span><span class="p">]])</span>
<span class="k">class</span> <span class="nc">TestMethods</span><span class="p">(</span><span class="n">unittest</span><span class="o">.</span><span class="n">TestCase</span><span class="p">):</span>
<span class="c1">##########</span>
<span class="c1"># Unit tests for data loading</span>
<span class="c1">##########</span>
<span class="k">def</span> <span class="nf">test_data_path</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="c1"># Test that file path to dataset has been unaltered</span>
<span class="bp">self</span><span class="o">.</span><span class="n">assertTrue</span><span class="p">(</span><span class="n">data_path</span><span class="o">.</span><span class="n">lower</span><span class="p">()</span> <span class="o">==</span> <span class="s1">'bike-sharing-dataset/hour.csv'</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">test_data_loaded</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="c1"># Test that data frame loaded</span>
<span class="bp">self</span><span class="o">.</span><span class="n">assertTrue</span><span class="p">(</span><span class="nb">isinstance</span><span class="p">(</span><span class="n">rides</span><span class="p">,</span> <span class="n">pd</span><span class="o">.</span><span class="n">DataFrame</span><span class="p">))</span>
<span class="c1">##########</span>
<span class="c1"># Unit tests for network functionality</span>
<span class="c1">##########</span>
<span class="k">def</span> <span class="nf">test_activation</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="n">network</span> <span class="o">=</span> <span class="n">NeuralNetwork</span><span class="p">(</span><span class="mi">3</span><span class="p">,</span> <span class="mi">2</span><span class="p">,</span> <span class="mi">1</span><span class="p">,</span> <span class="mf">0.5</span><span class="p">)</span>
<span class="c1"># Test that the activation function is a sigmoid</span>
<span class="bp">self</span><span class="o">.</span><span class="n">assertTrue</span><span class="p">(</span><span class="n">np</span><span class="o">.</span><span class="n">all</span><span class="p">(</span><span class="n">network</span><span class="o">.</span><span class="n">activation_function</span><span class="p">(</span><span class="mf">0.5</span><span class="p">)</span> <span class="o">==</span> <span class="mi">1</span><span class="o">/</span><span class="p">(</span><span class="mi">1</span><span class="o">+</span><span class="n">np</span><span class="o">.</span><span class="n">exp</span><span class="p">(</span><span class="o">-</span><span class="mf">0.5</span><span class="p">))))</span>
<span class="k">def</span> <span class="nf">test_train</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="c1"># Test that weights are updated correctly on training</span>
<span class="n">network</span> <span class="o">=</span> <span class="n">NeuralNetwork</span><span class="p">(</span><span class="mi">3</span><span class="p">,</span> <span class="mi">2</span><span class="p">,</span> <span class="mi">1</span><span class="p">,</span> <span class="mf">0.5</span><span class="p">)</span>
<span class="n">network</span><span class="o">.</span><span class="n">weights_input_to_hidden</span> <span class="o">=</span> <span class="n">test_w_i_h</span><span class="o">.</span><span class="n">copy</span><span class="p">()</span>
<span class="n">network</span><span class="o">.</span><span class="n">weights_hidden_to_output</span> <span class="o">=</span> <span class="n">test_w_h_o</span><span class="o">.</span><span class="n">copy</span><span class="p">()</span>
<span class="n">network</span><span class="o">.</span><span class="n">train</span><span class="p">(</span><span class="n">inputs</span><span class="p">,</span> <span class="n">targets</span><span class="p">)</span>
<span class="bp">self</span><span class="o">.</span><span class="n">assertTrue</span><span class="p">(</span><span class="n">np</span><span class="o">.</span><span class="n">allclose</span><span class="p">(</span><span class="n">network</span><span class="o">.</span><span class="n">weights_hidden_to_output</span><span class="p">,</span>
<span class="n">np</span><span class="o">.</span><span class="n">array</span><span class="p">([[</span> <span class="mf">0.37275328</span><span class="p">],</span>
<span class="p">[</span><span class="o">-</span><span class="mf">0.03172939</span><span class="p">]])))</span>
<span class="bp">self</span><span class="o">.</span><span class="n">assertTrue</span><span class="p">(</span><span class="n">np</span><span class="o">.</span><span class="n">allclose</span><span class="p">(</span><span class="n">network</span><span class="o">.</span><span class="n">weights_input_to_hidden</span><span class="p">,</span>
<span class="n">np</span><span class="o">.</span><span class="n">array</span><span class="p">([[</span> <span class="mf">0.10562014</span><span class="p">,</span> <span class="o">-</span><span class="mf">0.20185996</span><span class="p">],</span>
<span class="p">[</span><span class="mf">0.39775194</span><span class="p">,</span> <span class="mf">0.50074398</span><span class="p">],</span>
<span class="p">[</span><span class="o">-</span><span class="mf">0.29887597</span><span class="p">,</span> <span class="mf">0.19962801</span><span class="p">]])))</span>
<span class="k">def</span> <span class="nf">test_run</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="c1"># Test correctness of run method</span>
<span class="n">network</span> <span class="o">=</span> <span class="n">NeuralNetwork</span><span class="p">(</span><span class="mi">3</span><span class="p">,</span> <span class="mi">2</span><span class="p">,</span> <span class="mi">1</span><span class="p">,</span> <span class="mf">0.5</span><span class="p">)</span>
<span class="n">network</span><span class="o">.</span><span class="n">weights_input_to_hidden</span> <span class="o">=</span> <span class="n">test_w_i_h</span><span class="o">.</span><span class="n">copy</span><span class="p">()</span>
<span class="n">network</span><span class="o">.</span><span class="n">weights_hidden_to_output</span> <span class="o">=</span> <span class="n">test_w_h_o</span><span class="o">.</span><span class="n">copy</span><span class="p">()</span>
<span class="bp">self</span><span class="o">.</span><span class="n">assertTrue</span><span class="p">(</span><span class="n">np</span><span class="o">.</span><span class="n">allclose</span><span class="p">(</span><span class="n">network</span><span class="o">.</span><span class="n">run</span><span class="p">(</span><span class="n">inputs</span><span class="p">),</span> <span class="mf">0.09998924</span><span class="p">))</span>
<span class="n">suite</span> <span class="o">=</span> <span class="n">unittest</span><span class="o">.</span><span class="n">TestLoader</span><span class="p">()</span><span class="o">.</span><span class="n">loadTestsFromModule</span><span class="p">(</span><span class="n">TestMethods</span><span class="p">())</span>
<span class="n">unittest</span><span class="o">.</span><span class="n">TextTestRunner</span><span class="p">()</span><span class="o">.</span><span class="n">run</span><span class="p">(</span><span class="n">suite</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt"></div>
<div class="output_subarea output_stream output_stderr output_text">
<pre>.....
----------------------------------------------------------------------
Ran 5 tests in 0.005s
OK
</pre>
</div>
</div>
<div class="output_area">
<div class="prompt output_prompt">Out[12]:</div>
<div class="output_text output_subarea output_execute_result">
<pre><unittest.runner.TextTestResult run=5 errors=0 failures=0></pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h2 id="Training-the-network">Training the network<a class="anchor-link" href="#Training-the-network">¶</a></h2><p>Here you'll set the hyperparameters for the network. The strategy here is to find hyperparameters such that the error on the training set is low, but you're not overfitting to the data. If you train the network too long or have too many hidden nodes, it can become overly specific to the training set and will fail to generalize to the validation set. That is, the loss on the validation set will start increasing as the training set loss drops.</p>
<p>You'll also be using a method know as Stochastic Gradient Descent (SGD) to train the network. The idea is that for each training pass, you grab a random sample of the data instead of using the whole data set. You use many more training passes than with normal gradient descent, but each pass is much faster. This ends up training the network more efficiently. You'll learn more about SGD later.</p>
<h3 id="Choose-the-number-of-iterations">Choose the number of iterations<a class="anchor-link" href="#Choose-the-number-of-iterations">¶</a></h3><p>This is the number of batches of samples from the training data we'll use to train the network. The more iterations you use, the better the model will fit the data. However, if you use too many iterations, then the model with not generalize well to other data, this is called overfitting. You want to find a number here where the network has a low training loss, and the validation loss is at a minimum. As you start overfitting, you'll see the training loss continue to decrease while the validation loss starts to increase.</p>
<h3 id="Choose-the-learning-rate">Choose the learning rate<a class="anchor-link" href="#Choose-the-learning-rate">¶</a></h3><p>This scales the size of weight updates. If this is too big, the weights tend to explode and the network fails to fit the data. A good choice to start at is 0.1. If the network has problems fitting the data, try reducing the learning rate. Note that the lower the learning rate, the smaller the steps are in the weight updates and the longer it takes for the neural network to converge.</p>
<h3 id="Choose-the-number-of-hidden-nodes">Choose the number of hidden nodes<a class="anchor-link" href="#Choose-the-number-of-hidden-nodes">¶</a></h3><p>The more hidden nodes you have, the more accurate predictions the model will make. Try a few different numbers and see how it affects the performance. You can look at the losses dictionary for a metric of the network performance. If the number of hidden units is too low, then the model won't have enough space to learn and if it is too high there are too many options for the direction that the learning can take. The trick here is to find the right balance in number of hidden units you choose.</p>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [48]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="kn">import</span> <span class="nn">sys</span>
<span class="c1">### Set the hyperparameters here ###</span>
<span class="n">iterations</span> <span class="o">=</span> <span class="mi">3000</span>
<span class="n">learning_rate</span> <span class="o">=</span> <span class="mf">0.6</span>
<span class="n">hidden_nodes</span> <span class="o">=</span> <span class="mi">17</span>
<span class="n">output_nodes</span> <span class="o">=</span> <span class="mi">1</span>
<span class="n">N_i</span> <span class="o">=</span> <span class="n">train_features</span><span class="o">.</span><span class="n">shape</span><span class="p">[</span><span class="mi">1</span><span class="p">]</span>
<span class="n">network</span> <span class="o">=</span> <span class="n">NeuralNetwork</span><span class="p">(</span><span class="n">N_i</span><span class="p">,</span> <span class="n">hidden_nodes</span><span class="p">,</span> <span class="n">output_nodes</span><span class="p">,</span> <span class="n">learning_rate</span><span class="p">)</span>
<span class="n">losses</span> <span class="o">=</span> <span class="p">{</span><span class="s1">'train'</span><span class="p">:[],</span> <span class="s1">'validation'</span><span class="p">:[]}</span>
<span class="k">for</span> <span class="n">ii</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="n">iterations</span><span class="p">):</span>
<span class="c1"># Go through a random batch of 128 records from the training data set</span>
<span class="n">batch</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">random</span><span class="o">.</span><span class="n">choice</span><span class="p">(</span><span class="n">train_features</span><span class="o">.</span><span class="n">index</span><span class="p">,</span> <span class="n">size</span><span class="o">=</span><span class="mi">128</span><span class="p">)</span>
<span class="n">X</span><span class="p">,</span> <span class="n">y</span> <span class="o">=</span> <span class="n">train_features</span><span class="o">.</span><span class="n">ix</span><span class="p">[</span><span class="n">batch</span><span class="p">]</span><span class="o">.</span><span class="n">values</span><span class="p">,</span> <span class="n">train_targets</span><span class="o">.</span><span class="n">ix</span><span class="p">[</span><span class="n">batch</span><span class="p">][</span><span class="s1">'cnt'</span><span class="p">]</span>
<span class="n">network</span><span class="o">.</span><span class="n">train</span><span class="p">(</span><span class="n">X</span><span class="p">,</span> <span class="n">y</span><span class="p">)</span>
<span class="c1"># Printing out the training progress</span>
<span class="n">train_loss</span> <span class="o">=</span> <span class="n">MSE</span><span class="p">(</span><span class="n">network</span><span class="o">.</span><span class="n">run</span><span class="p">(</span><span class="n">train_features</span><span class="p">)</span><span class="o">.</span><span class="n">T</span><span class="p">,</span> <span class="n">train_targets</span><span class="p">[</span><span class="s1">'cnt'</span><span class="p">]</span><span class="o">.</span><span class="n">values</span><span class="p">)</span>
<span class="n">val_loss</span> <span class="o">=</span> <span class="n">MSE</span><span class="p">(</span><span class="n">network</span><span class="o">.</span><span class="n">run</span><span class="p">(</span><span class="n">val_features</span><span class="p">)</span><span class="o">.</span><span class="n">T</span><span class="p">,</span> <span class="n">val_targets</span><span class="p">[</span><span class="s1">'cnt'</span><span class="p">]</span><span class="o">.</span><span class="n">values</span><span class="p">)</span>
<span class="n">sys</span><span class="o">.</span><span class="n">stdout</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="s2">"</span><span class="se">\r</span><span class="s2">Progress: </span><span class="si">{:2.1f}</span><span class="s2">"</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="mi">100</span> <span class="o">*</span> <span class="n">ii</span><span class="o">/</span><span class="nb">float</span><span class="p">(</span><span class="n">iterations</span><span class="p">))</span> \
<span class="o">+</span> <span class="s2">"% ... Training loss: "</span> <span class="o">+</span> <span class="nb">str</span><span class="p">(</span><span class="n">train_loss</span><span class="p">)[:</span><span class="mi">5</span><span class="p">]</span> \
<span class="o">+</span> <span class="s2">" ... Validation loss: "</span> <span class="o">+</span> <span class="nb">str</span><span class="p">(</span><span class="n">val_loss</span><span class="p">)[:</span><span class="mi">5</span><span class="p">])</span>
<span class="n">sys</span><span class="o">.</span><span class="n">stdout</span><span class="o">.</span><span class="n">flush</span><span class="p">()</span>
<span class="n">losses</span><span class="p">[</span><span class="s1">'train'</span><span class="p">]</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">train_loss</span><span class="p">)</span>
<span class="n">losses</span><span class="p">[</span><span class="s1">'validation'</span><span class="p">]</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">val_loss</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt"></div>
<div class="output_subarea output_stream output_stdout output_text">
<pre>Progress: 100.0% ... Training loss: 0.068 ... Validation loss: 0.159</pre>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [49]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">plt</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span><span class="n">losses</span><span class="p">[</span><span class="s1">'train'</span><span class="p">],</span> <span class="n">label</span><span class="o">=</span><span class="s1">'Training loss'</span><span class="p">)</span>
<span class="n">plt</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span><span class="n">losses</span><span class="p">[</span><span class="s1">'validation'</span><span class="p">],</span> <span class="n">label</span><span class="o">=</span><span class="s1">'Validation loss'</span><span class="p">)</span>
<span class="n">plt</span><span class="o">.</span><span class="n">legend</span><span class="p">()</span>
<span class="n">plt</span><span class="o">.</span><span class="n">ylim</span><span class="p">(</span><span class="n">ymax</span><span class="o">=</span><span class="mf">0.5</span><span class="p">,</span> <span class="n">ymin</span><span class="o">=</span><span class="mi">0</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt output_prompt">Out[49]:</div>
<div class="output_text output_subarea output_execute_result">
<pre>(0, 0.5)</pre>
</div>
</div>
<div class="output_area">
<div class="prompt"></div>
<div class="output_png output_subarea ">
<img src="data:image/png;base64,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
"
width=373
height=252
>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h2 id="Check-out-your-predictions">Check out your predictions<a class="anchor-link" href="#Check-out-your-predictions">¶</a></h2><p>Here, use the test data to view how well your network is modeling the data. If something is completely wrong here, make sure each step in your network is implemented correctly.</p>
</div>
</div>
</div>
<div class="cell border-box-sizing code_cell rendered">
<div class="input">
<div class="prompt input_prompt">In [50]:</div>
<div class="inner_cell">
<div class="input_area">
<div class=" highlight hl-ipython3"><pre><span></span><span class="n">fig</span><span class="p">,</span> <span class="n">ax</span> <span class="o">=</span> <span class="n">plt</span><span class="o">.</span><span class="n">subplots</span><span class="p">(</span><span class="n">figsize</span><span class="o">=</span><span class="p">(</span><span class="mi">8</span><span class="p">,</span><span class="mi">4</span><span class="p">))</span>
<span class="n">mean</span><span class="p">,</span> <span class="n">std</span> <span class="o">=</span> <span class="n">scaled_features</span><span class="p">[</span><span class="s1">'cnt'</span><span class="p">]</span>
<span class="n">predictions</span> <span class="o">=</span> <span class="n">network</span><span class="o">.</span><span class="n">run</span><span class="p">(</span><span class="n">test_features</span><span class="p">)</span><span class="o">.</span><span class="n">T</span><span class="o">*</span><span class="n">std</span> <span class="o">+</span> <span class="n">mean</span>
<span class="n">ax</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span><span class="n">predictions</span><span class="p">[</span><span class="mi">0</span><span class="p">],</span> <span class="n">label</span><span class="o">=</span><span class="s1">'Prediction'</span><span class="p">)</span>
<span class="n">ax</span><span class="o">.</span><span class="n">plot</span><span class="p">((</span><span class="n">test_targets</span><span class="p">[</span><span class="s1">'cnt'</span><span class="p">]</span><span class="o">*</span><span class="n">std</span> <span class="o">+</span> <span class="n">mean</span><span class="p">)</span><span class="o">.</span><span class="n">values</span><span class="p">,</span> <span class="n">label</span><span class="o">=</span><span class="s1">'Data'</span><span class="p">)</span>
<span class="n">ax</span><span class="o">.</span><span class="n">set_xlim</span><span class="p">(</span><span class="n">right</span><span class="o">=</span><span class="nb">len</span><span class="p">(</span><span class="n">predictions</span><span class="p">))</span>
<span class="n">ax</span><span class="o">.</span><span class="n">legend</span><span class="p">()</span>
<span class="n">dates</span> <span class="o">=</span> <span class="n">pd</span><span class="o">.</span><span class="n">to_datetime</span><span class="p">(</span><span class="n">rides</span><span class="o">.</span><span class="n">ix</span><span class="p">[</span><span class="n">test_data</span><span class="o">.</span><span class="n">index</span><span class="p">][</span><span class="s1">'dteday'</span><span class="p">])</span>
<span class="n">dates</span> <span class="o">=</span> <span class="n">dates</span><span class="o">.</span><span class="n">apply</span><span class="p">(</span><span class="k">lambda</span> <span class="n">d</span><span class="p">:</span> <span class="n">d</span><span class="o">.</span><span class="n">strftime</span><span class="p">(</span><span class="s1">'%b </span><span class="si">%d</span><span class="s1">'</span><span class="p">))</span>
<span class="n">ax</span><span class="o">.</span><span class="n">set_xticks</span><span class="p">(</span><span class="n">np</span><span class="o">.</span><span class="n">arange</span><span class="p">(</span><span class="nb">len</span><span class="p">(</span><span class="n">dates</span><span class="p">))[</span><span class="mi">12</span><span class="p">::</span><span class="mi">24</span><span class="p">])</span>
<span class="n">_</span> <span class="o">=</span> <span class="n">ax</span><span class="o">.</span><span class="n">set_xticklabels</span><span class="p">(</span><span class="n">dates</span><span class="p">[</span><span class="mi">12</span><span class="p">::</span><span class="mi">24</span><span class="p">],</span> <span class="n">rotation</span><span class="o">=</span><span class="mi">45</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="output_wrapper">
<div class="output">
<div class="output_area">
<div class="prompt"></div>
<div class="output_png output_subarea ">
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA+0AAAIgCAYAAADwRojNAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz
AAAWJQAAFiUBSVIk8AAAIABJREFUeJzsnXm4HFWd/t/Ty71JyE1CDCFhUVBZHQRZZY8BFDdQcSSK
IozoT8cBHJgZYcSHMOLyKCIgoowicUQBDatAUFACBJBsyiIQ1gAJZM9N7n67qs7vj+6+XXXq1E2d
rlO3q7vfz/Pk6b7dVdWnl6qc97zfRUgpQQghhBBCCCGEkOyRa/QACCGEEEIIIYQQooeinRBCCCGE
EEIIySgU7YQQQgghhBBCSEahaCeEEEIIIYQQQjIKRTshhBBCCCGEEJJRKNoJIYQQQgghhJCMQtFO
CCGEEEIIIYRkFIp2QgghhBBCCCEko1C0E0IIIYQQQgghGYWinRBCCCGEEEIIySgU7YQQQgghhBBC
SEahaCeEEEIIIYQQQjIKRTshhBBCCCGEEJJRKNoJIYQQQgghhJCMQtFOCCGEEEIIIYRklEKjB5AV
hBCvAJgEYGWDh0IIIYQQQgghxC67Adgqpdy90QMxhaK9xqTx48dP3WeffaY2eiCEEEIIIYQQQuzx
7LPPYmBgoNHDqAuK9hor99lnn6nLli1r9DgIIYQQQgghhFjkoIMOwvLly1c2ehz1wJx2QgghhBBC
CCEko1C0E0IIIYQQQgghGYWinRBCCCGEEEIIySgU7YQQQgghhBBCSEahaCeEEEIIIYQQQjIKRTsh
hBBCCCGEEJJRKNoJIYQQQgghhJCMwj7thBBCCCGEkACe52HTpk3o6enB0NAQpJSNHhIhIwgh0NnZ
ia6uLkydOhW5XGt70RTthBBCCCGEkBE8z8Prr7+O/v7+Rg+FEC1SSgwODmJwcBB9fX3YddddW1q4
U7QTQgghhBBCRti0aRP6+/tRKBQwY8YMbLfddi0tiEjz4Xke+vr6sGbNGvT392PTpk2YNm1ao4eV
Gjz7CCGEEEIIISP09PQAAGbMmIGuri4KdpI5crkcurq6MGPGDAC132yrwjOQEEIIIYQQMsLQ0BAA
YLvttmvwSAgZnepvtPqbbVUo2gkhhBBCCCEjVIvO0WEnWUcIAQAtXyiRZyIhhBBCCCGEkKajKtpb
HYp2QgghhBBCCCEko1C0E0IIIYQQQgghGYWivV3p2wi8+GfAdRo9EkIIIYQQQgghEVC0tyPOMPCz
I4EbPgHce0GjR0MIIYQQQggxZOXKlRBC4Iwzzgg8fsYZZ0AIgZUrV6byugsXLoQQAnPnzk3l+CQM
RXs7svFFoOfN8v2VDzd2LIQQQgghhGQUIUTgXz6fx7Rp0zB79mz89re/bfTwUiFqMYA0jkKjB0Aa
gHRr9z03ejtCCCGEEEIILr74YgBAqVTCc889hzvuuAMPPPAAli5dissvv7zBowvy3e9+FxdccAF2
3nnnVI5/6KGH4tlnn8W0adNSOT4JQ9HejviFuvQaNw5CCCGEEEKaADUU/M9//jNOOOEEXHHFFTjn
nHOw2267NWRcOmbOnImZM2emdvwJEyZg7733Tu34JAzD49sRv1CnaCeEEEIIIcSI4447DnvvvTek
lFiyZAmAYFj5888/j1NPPRXTp09HLpfDwoULR/bdtGkTLrzwQuyzzz4YP348Jk+ejOOOOw5/+tOf
tK/V09OD8847D7vssgvGjRuHvffeG5dffjk8Tz+PHy2nffHixTj11FOx8847o7OzEzNnzsT73/9+
/O53vwNQXpzYfffdAQC/+tWvAqkB8+bNAzB6TvsLL7yA008/HTvvvDM6Ojqw00474fTTT8cLL7wQ
2nbu3LkQQmDhwoWYP38+Dj30UEyYMAFTp07FnDlzsHr16qiPv+2g096OULQTQgghhBCSCCklgHLe
u5+XXnoJhx12GPbcc0+cdtppGBgYwKRJkwAAr776KmbNmoWVK1fi6KOPxoknnoi+vj7cddddOPHE
E3Httdfii1/84sixhoaGcNxxx2HJkiXYf//9cdppp6G7uxvf+ta38OCDDxqN9+c//zm+8pWvIJ/P
46STTsIee+yBdevWYenSpbjmmmvwqU99CrNmzUJ3dzeuvPJK7L///vjYxz42sv8BBxww6vGXLFmC
448/Hj09PTjppJOw77774rnnnsMNN9yAO+64A/fffz8OOeSQ0H7XXHMN7rzzTpx00kk49thj8fjj
j+Pmm2/GE088gb///e/o7Ow0ep+tCEV7O0LRTgghhBBC6mS3C+5u9BBis/J7H07luPfffz9WrFgB
IURIiC5atAgXXnghvvOd74T2+/znP49XX30VN954I+bMmTPyeHd3N2bNmoVzzjkHJ510EnbccUcA
wA9/+EMsWbIEn/jEJ/D73/8euVw5UPqCCy7AQQcdFHu8zzzzDP71X/8VkyZNwsMPP4x3vetdgedX
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
YII=
"
width=502
height=272
>
</div>
</div>
</div>
</div>
</div>
<div class="cell border-box-sizing text_cell rendered">
<div class="prompt input_prompt">
</div>
<div class="inner_cell">
<div class="text_cell_render border-box-sizing rendered_html">
<h2 id="OPTIONAL:-Thinking-about-your-results(this-question-will-not-be-evaluated-in-the-rubric).">OPTIONAL: Thinking about your results(this question will not be evaluated in the rubric).<a class="anchor-link" href="#OPTIONAL:-Thinking-about-your-results(this-question-will-not-be-evaluated-in-the-rubric).">¶</a></h2><p>Answer these questions about your results. How well does the model predict the data? Where does it fail? Why does it fail where it does?</p>
<blockquote><p><strong>Note:</strong> You can edit the text in this cell by double clicking on it. When you want to render the text, press control + enter</p>
</blockquote>
<h4 id="Your-answer-below">Your answer below<a class="anchor-link" href="#Your-answer-below">¶</a></h4>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
| gronnbeck/udacity-deep-learning | first-neural-network/Your_first_neural_network.html | HTML | mit | 613,057 |
<!-- #docplaster -->
<!-- #docregion -->
<h1>Structural Directives</h1>
<p>Conditional display of hero</p>
<blockquote>
<!-- #docregion asterisk -->
<div *ngIf="hero" class="name">{{hero.name}}</div>
<!-- #enddocregion asterisk -->
</blockquote>
<p>List of heroes</p>
<ul>
<li *ngFor="let hero of heroes">{{hero.name}}</li>
</ul>
<hr>
<h2 id="ngIf">NgIf</h2>
<p *ngIf="true">
Expression is true and ngIf is true.
This paragraph is in the DOM.
</p>
<p *ngIf="false">
Expression is false and ngIf is false.
This paragraph is not in the DOM.
</p>
<p [style.display]="'block'">
Expression sets display to "block".
This paragraph is visible.
</p>
<p [style.display]="'none'">
Expression sets display to "none".
This paragraph is hidden but still in the DOM.
</p>
<h4>NgIf with template</h4>
<p><ng-template> element</p>
<!-- #docregion ngif-template -->
<ng-template [ngIf]="hero">
<div class="name">{{hero.name}}</div>
</ng-template>
<!-- #enddocregion ngif-template -->
<hr>
<h2 id="ng-container"><ng-container></h2>
<h4>*ngIf with a <ng-container></h4>
<button (click)="hero = hero ? null : heroes[0]">Toggle hero</button>
<!-- #docregion ngif-ngcontainer -->
<p>
I turned the corner
<ng-container *ngIf="hero">
and saw {{hero.name}}. I waved
</ng-container>
and continued on my way.
</p>
<!-- #enddocregion ngif-ngcontainer -->
<p>
I turned the corner
<span *ngIf="hero">
and saw {{hero.name}}. I waved
</span>
and continued on my way.
</p>
<p><i><select> with <span></i></p>
<div>
Pick your favorite hero
(<label><input type="checkbox" checked (change)="showSad = !showSad">show sad</label>)
</div>
<select [(ngModel)]="hero">
<span *ngFor="let h of heroes">
<span *ngIf="showSad || h.emotion !== 'sad'">
<option [ngValue]="h">{{h.name}} ({{h.emotion}})</option>
</span>
</span>
</select>
<p><i><select> with <ng-container></i></p>
<!-- #docregion select-ngcontainer -->
<div>
Pick your favorite hero
(<label><input type="checkbox" checked (change)="showSad = !showSad">show sad</label>)
</div>
<select [(ngModel)]="hero">
<ng-container *ngFor="let h of heroes">
<ng-container *ngIf="showSad || h.emotion !== 'sad'">
<option [ngValue]="h">{{h.name}} ({{h.emotion}})</option>
</ng-container>
</ng-container>
</select>
<!-- #enddocregion select-ngcontainer -->
<br><br>
<hr>
<h2 id="ngFor">NgFor</h2>
<div class="box">
<p class="code"><div *ngFor="let hero of heroes; let i=index; let odd=odd; trackBy: trackById" [class.odd]="odd"></p>
<!--#docregion inside-ngfor -->
<div *ngFor="let hero of heroes; let i=index; let odd=odd; trackBy: trackById" [class.odd]="odd">
({{i}}) {{hero.name}}
</div>
<!--#enddocregion inside-ngfor -->
<p class="code"><ng-template ngFor let-hero [ngForOf]="heroes" let-i="index" let-odd="odd" [ngForTrackBy]="trackById"/></p>
<!--#docregion inside-ngfor -->
<ng-template ngFor let-hero [ngForOf]="heroes" let-i="index" let-odd="odd" [ngForTrackBy]="trackById">
<div [class.odd]="odd">({{i}}) {{hero.name}}</div>
</ng-template>
<!--#enddocregion inside-ngfor -->
</div>
<hr>
<h2 id="ngSwitch">NgSwitch</h2>
<div>Pick your favorite hero</div>
<p>
<label *ngFor="let h of heroes">
<input type="radio" name="heroes" [(ngModel)]="hero" [value]="h">{{h.name}}
</label>
<label><input type="radio" name="heroes" (click)="hero = null">None of the above</label>
</p>
<h4>NgSwitch</h4>
<div [ngSwitch]="hero?.emotion">
<app-happy-hero *ngSwitchCase="'happy'" [hero]="hero"></app-happy-hero>
<app-sad-hero *ngSwitchCase="'sad'" [hero]="hero"></app-sad-hero>
<app-confused-hero *ngSwitchCase="'confused'" [hero]="hero"></app-confused-hero>
<app-unknown-hero *ngSwitchDefault [hero]="hero"></app-unknown-hero>
</div>
<h4>NgSwitch with <ng-template></h4>
<div [ngSwitch]="hero?.emotion">
<ng-template [ngSwitchCase]="'happy'">
<app-happy-hero [hero]="hero"></app-happy-hero>
</ng-template>
<ng-template [ngSwitchCase]="'sad'">
<app-sad-hero [hero]="hero"></app-sad-hero>
</ng-template>
<ng-template [ngSwitchCase]="'confused'">
<app-confused-hero [hero]="hero"></app-confused-hero>
</ng-template >
<ng-template ngSwitchDefault>
<app-unknown-hero [hero]="hero"></app-unknown-hero>
</ng-template>
</div>
<hr>
<h2><ng-template></h2>
<!-- #docregion template-tag -->
<p>Hip!</p>
<ng-template>
<p>Hip!</p>
</ng-template>
<p>Hooray!</p>
<!-- #enddocregion template-tag -->
<hr>
<h2 id="appUnless">UnlessDirective</h2>
<!-- #docregion toggle-info -->
<p>
The condition is currently
<span [ngClass]="{ 'a': !condition, 'b': condition, 'unless': true }">{{condition}}</span>.
<button
(click)="condition = !condition"
[ngClass] = "{ 'a': condition, 'b': !condition }" >
Toggle condition to {{condition ? 'false' : 'true'}}
</button>
</p>
<!-- #enddocregion toggle-info -->
<!-- #docregion appUnless-->
<p *appUnless="condition" class="unless a">
(A) This paragraph is displayed because the condition is false.
</p>
<p *appUnless="!condition" class="unless b">
(B) Although the condition is true,
this paragraph is displayed because appUnless is set to false.
</p>
<!-- #enddocregion appUnless-->
<h4>UnlessDirective with template</h4>
<!-- #docregion appUnless-1 -->
<p *appUnless="condition">Show this sentence unless the condition is true.</p>
<!-- #enddocregion appUnless-1 -->
<p *appUnless="condition" class="code unless">
(A) <p *appUnless="condition" class="code unless">
</p>
<ng-template [appUnless]="condition">
<p class="code unless">
(A) <ng-template [appUnless]="condition">
</p>
</ng-template>
| alxhub/angular | aio/content/examples/structural-directives/src/app/app.component.html | HTML | mit | 5,736 |
<!DOCTYPE html>
<!--[if IE 7]>
<html class="ie ie7" lang="en-US">
<![endif]-->
<!--[if IE 8]>
<html class="ie ie8" lang="en-US">
<![endif]-->
<!--[if !(IE 7) | !(IE 8) ]><!-->
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="icon" href="/static/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="/static/bower_components/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="/static/css/appcrm.css">
<title>Edit Student Info</title>
</head>
<body class="ac-body">
<header class="ac-header navbar navbar-default">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle collapsed" type="button" data-toggle="collapse" data-target=".ac-navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">
<img src="/static/imgs/app_logo_h30.png" alt="app crm brand" />
</a>
</div>
<nav class="collapse navbar-collapse ac-navbar-collapse" role="navigation">
<ul class="nav navbar-nav navbar-left">
<li class="active"><a href="javascript:void(0)">所有学生</a> </li>
<li><a href="javascript:void(0)">销售跟踪</a> </li>
<li><a href="javascript:void(0)">语言考试跟踪</a> </li>
<li><a href="javascript:void(0)">申请跟踪</a> </li>
<li><a href="javascript:void(0)">系统配置</a> </li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="javascript:void(0)">
<img src="/static/imgs/avatar_20x20.jpg" class="avatar_20" alt="user avatar" />
samhwang1990
</a>
</li>
<li><a href="javascript:void(0)">消息提醒</a> </li>
<li><a href="javascript:void(0)">登出</a> </li>
</ul>
</nav>
</div>
</header>
<div class="ac-main">
<article class="ac-info-jumbotron">
<div class="container">
<div class="row">
<div class="col-sm-12 ac-col-center"><h1>学生销售信息</h1></div>
<div class="ac-info-p col-xs-8 col-sm-3 ac-col-center text-left">
<p>姓 名:黄志源</p>
<p>居住城市:广州</p>
<p>性 别:男</p>
<p>电 话:13580324390</p>
</div>
<div class="ac-info-controls">
<a href="javascript:void(0)" class="ac-btn ac-btn-success">查看个人主页</a>
</div>
</div>
</div>
</article>
</div>
<footer class="ac-footer">
<div class="container">
<p>Designed and built with all the lovely <a href="http://www.appedu.org" target="_blank">appers</a>.</p>
<p>Copyright @ 2014-2015</p>
<p><a class="beian_link" href="http://www.miibeian.gov.cn/" target="_blank">粤ICP备14010098号</a></p>
</div>
</footer>
<script type="text/javascript" src="/static/bower_components/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="/static/bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
</body>
</html> | SamHwang1990/app_crm_re | public/design/page/saleMgr/frame.html | HTML | mit | 3,594 |
<md-dialog aria-label="License" style="min-width:50%" >
<md-toolbar>
<div class="md-toolbar-tools" style="background-color: #0570c0;">
<h2>Confirm</h2>
<span flex></span>
<md-button class="md-icon-button" ng-click="closeDialog()">
<md-icon md-svg-src="close" style="fill:white;" aria-label="Close dialog"></md-icon>
</md-button>
</div>
</md-toolbar>
<md-dialog-content hide-xs show-gt-xs style="min-width: 470px;padding-bottom: 0px;" layout="column" class="md-padding">
<!-- Starting of tags Div -->
<div hide-xs hide-sm layout="column" flex-gt-sm="30" flex-order-xs="2" flex-order-sm="2">
<md-card flex="100" style="margin-top: 0;">
<md-card-content>
<span style="font-size: 14px;color: rgba(0,0,0,.6);" class="md-body-1">Add or change tags (up to 5) so your story reaches more people:</span>
<md-chips name="skills" md-separator-keys="customKeys" ng-model="tags" md-autocomplete-snap md-transform-chip="transformChip($chip)" md-max-chips="5" readonly="readonly" md-removable="removable" md-require-match="autocompleteDemoRequireMatch">
<md-autocomplete md-selected-item="selectedItem" md-search-text="searchText" md-items="item in querySearch(searchText)" md-item-text="item.name" placeholder="Add Tags..">
<span md-highlight-text="searchText">{{item.name}}</span>
</md-autocomplete>
<md-chip-template custom-chip class="your-custom-chip">
<span><strong>{{$chip.name}}</strong></span>
</md-chip-template>
</md-chips>
</md-card-content>
</md-card>
</div>
<!-- Tags Ends Here -->
<!-- Select list for License / Drop down list for license -->
<div ng-controller="SelectLicenseController" class="md -flex-100" ng-cloak>
<div >
<md-card flex="100" style="margin-top: 0;">
<md-card-content>
<h1 class="md-title">Select an appropriate license </h1>
<div layout="row">
<md-input-container>
<label>Licenses</label>
<md-select ng-model="selectedLicensces"
md-on-close="clearSearchTerm()"
data-md-container-class="selectdemoSelectHeader"
multiple>
<md-select-header class="demo-select-header">
<input ng-model="searchTerm"
type="search"
placeholder="Select a License"
class="demo-header-searchbox md-text">
</md-select-header>
<md-optgroup label="licenses">
<md-option ng-value="license" ng-repeat="license in licenses |
filter:searchTerm">{{license}}</md-option>
</md-optgroup>
</md-select>
</md-input-container>
</div>
</md-card-content>
</md-card>
</div>
</div>
<!-- Drop down ends here -->
<!-- Publish Button -->
<md-button class="md-secondary md-primary md-raised" ng-click="publish()" ng-hide="loading" type="button">Publish
</md-button>
</md-dialog-content>
</md-dialog>
| razrdroid/webapp | src/app/views/partials/license.html | HTML | mit | 3,354 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_51) on Mon Sep 09 11:47:06 EDT 2013 -->
<TITLE>
Uses of Class com.sleepycat.persist.model.AnnotationModel (Oracle - Berkeley DB Java API)
</TITLE>
<META NAME="date" CONTENT="2013-09-09">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../style.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.sleepycat.persist.model.AnnotationModel (Oracle - Berkeley DB Java API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/sleepycat/persist/model/AnnotationModel.html" title="class in com.sleepycat.persist.model"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 5.3.28</font></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?com/sleepycat/persist/model//class-useAnnotationModel.html" target="_top"><B>FRAMES</B></A>
<A HREF="AnnotationModel.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>com.sleepycat.persist.model.AnnotationModel</B></H2>
</CENTER>
No usage of com.sleepycat.persist.model.AnnotationModel
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/sleepycat/persist/model/AnnotationModel.html" title="class in com.sleepycat.persist.model"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Berkeley DB</b><br><font size="-1"> version 5.3.28</font></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?com/sleepycat/persist/model//class-useAnnotationModel.html" target="_top"><B>FRAMES</B></A>
<A HREF="AnnotationModel.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<font size=1>Copyright (c) 1996, 2013 Oracle and/or its affiliates. All rights reserved.</font>
</BODY>
</HTML>
| iadix/iadixcoin | db-5.3.28.NC/docs/java/com/sleepycat/persist/model/class-use/AnnotationModel.html | HTML | mit | 6,229 |
<div class="footer">
<p>Adapted from <a href="http://lanyon.getpoole.com" target="_blank">Lanyon</a>, Hosted on <a href="https://github.com/johnhatvani/johnhatvani.github.io" target="_blank">GitHub</a> · © John Hatvani</p>
<div class="container" style="font-size:1.5em">
<a href="{{ site.twitter }}" target="_blank" class="socicon socicon-twitter"></a>
<a href="{{ site.linkedin }}" target="_blank" class="socicon socicon-linkedin"></a>
<a href="{{ site.github }}" target="_blank"class="socicon socicon-github"></a>
<a href="{{ site.stackoverflow }}" target="_blank" class="socicon socicon-stackoverflow"></a>
</div>
</div>
| johnhatvani/johnhatvani.github.io | _includes/footer.html | HTML | mit | 678 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./2a15521621f45790cc934f87ad7575081650f47e8e470954f7f0b0c721ee582c.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html> | simonmysun/praxis | TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/6d3849d0bb2b38b2d2c1b839e664aaa854ab6beadb6153f3d9ba2bed298cbf80.html | HTML | mit | 550 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Class template char_decorator_terminal</title>
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="../../../index.html" title="Chapter 1. Boost.Log v2">
<link rel="up" href="../../../expressions.html#header.boost.log.expressions.formatters.char_decorator_hpp" title="Header <boost/log/expressions/formatters/char_decorator.hpp>">
<link rel="prev" href="pattern_replacer/string_lengths.html" title="Struct string_lengths">
<link rel="next" href="char_decorator_actor.html" title="Class template char_decorator_actor">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr><td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../boost.png"></td></tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="pattern_replacer/string_lengths.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../expressions.html#header.boost.log.expressions.formatters.char_decorator_hpp"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="char_decorator_actor.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.log.expressions.char_decorator_terminal"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Class template char_decorator_terminal</span></h2>
<p>boost::log::expressions::char_decorator_terminal</p>
</div>
<h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
<div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="../../../expressions.html#header.boost.log.expressions.formatters.char_decorator_hpp" title="Header <boost/log/expressions/formatters/char_decorator.hpp>">boost/log/expressions/formatters/char_decorator.hpp</a>>
</span><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> SubactorT<span class="special">,</span> <span class="keyword">typename</span> ImplT<span class="special">></span>
<span class="keyword">class</span> <a class="link" href="char_decorator_terminal.html" title="Class template char_decorator_terminal">char_decorator_terminal</a> <span class="special">{</span>
<span class="keyword">public</span><span class="special">:</span>
<span class="comment">// types</span>
<span class="keyword">typedef</span> <span class="keyword">void</span> <a name="boost.log.expressions.char_decorator_terminal._is_boost_log_terminal"></a><span class="identifier">_is_boost_log_terminal</span><span class="special">;</span> <span class="comment">// Internal typedef for type categorization. </span>
<span class="keyword">typedef</span> <span class="identifier">ImplT</span> <a name="boost.log.expressions.char_decorator_terminal.impl_type"></a><span class="identifier">impl_type</span><span class="special">;</span> <span class="comment">// Implementation type. </span>
<span class="keyword">typedef</span> <span class="identifier">impl_type</span><span class="special">::</span><span class="identifier">char_type</span> <a name="boost.log.expressions.char_decorator_terminal.char_type"></a><span class="identifier">char_type</span><span class="special">;</span> <span class="comment">// Character type. </span>
<span class="keyword">typedef</span> <span class="identifier">impl_type</span><span class="special">::</span><span class="identifier">string_type</span> <a name="boost.log.expressions.char_decorator_terminal.string_type"></a><span class="identifier">string_type</span><span class="special">;</span> <span class="comment">// String type. </span>
<span class="keyword">typedef</span> <span class="identifier">basic_formatting_ostream</span><span class="special"><</span> <span class="identifier">char_type</span> <span class="special">></span> <a name="boost.log.expressions.char_decorator_terminal.stream_type"></a><span class="identifier">stream_type</span><span class="special">;</span> <span class="comment">// Stream type. </span>
<span class="keyword">typedef</span> <span class="identifier">SubactorT</span> <a name="boost.log.expressions.char_decorator_terminal.subactor_type"></a><span class="identifier">subactor_type</span><span class="special">;</span> <span class="comment">// Adopted actor type. </span>
<span class="keyword">typedef</span> <span class="identifier">string_type</span> <a name="boost.log.expressions.char_decorator_terminal.result_type"></a><span class="identifier">result_type</span><span class="special">;</span> <span class="comment">// Result type definition. </span>
<span class="comment">// <a class="link" href="char_decorator_terminal.html#boost.log.expressions.char_decorator_terminalconstruct-copy-destruct">construct/copy/destruct</a></span>
<a class="link" href="char_decorator_terminal.html#idp20612544-bb"><span class="identifier">char_decorator_terminal</span></a><span class="special">(</span><span class="identifier">subactor_type</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">impl_type</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<a class="link" href="char_decorator_terminal.html#idp20614640-bb"><span class="identifier">char_decorator_terminal</span></a><span class="special">(</span><a class="link" href="char_decorator_terminal.html" title="Class template char_decorator_terminal">char_decorator_terminal</a> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<a class="link" href="char_decorator_terminal.html#idp20616320-bb"><span class="identifier">char_decorator_terminal</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span>
<span class="comment">// <a class="link" href="char_decorator_terminal.html#idp20602048-bb">public member functions</a></span>
<span class="identifier">subactor_type</span> <span class="keyword">const</span> <span class="special">&</span> <a class="link" href="char_decorator_terminal.html#idp20602608-bb"><span class="identifier">get_subactor</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">impl_type</span> <span class="keyword">const</span> <span class="special">&</span> <a class="link" href="char_decorator_terminal.html#idp20604560-bb"><span class="identifier">get_impl</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> ContextT<span class="special">></span> <span class="identifier">result_type</span> <a class="link" href="char_decorator_terminal.html#idp20606512-bb"><span class="keyword">operator</span><span class="special">(</span><span class="special">)</span></a><span class="special">(</span><span class="identifier">ContextT</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> ContextT<span class="special">></span> <span class="identifier">result_type</span> <a class="link" href="char_decorator_terminal.html#idp20609312-bb"><span class="keyword">operator</span><span class="special">(</span><span class="special">)</span></a><span class="special">(</span><span class="identifier">ContextT</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="special">}</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idp85943312"></a><h2>Description</h2>
<p>Character decorator terminal class. This formatter allows to modify strings generated by other formatters on character level. The most obvious application of decorators is replacing a certain set of characters with decorated equivalents to satisfy requirements of text-based sinks.</p>
<p>The <code class="computeroutput"><a class="link" href="char_decorator_terminal.html" title="Class template char_decorator_terminal">char_decorator_terminal</a></code> class aggregates the formatter being decorated, and a set of string pairs that are used as decorations. All decorations are applied sequentially. The <code class="computeroutput"><a class="link" href="char_decorator_terminal.html" title="Class template char_decorator_terminal">char_decorator_terminal</a></code> class is a formatter itself, so it can be used to construct more complex formatters, including nesting decorators. </p>
<div class="refsect2">
<a name="idp85947456"></a><h3>
<a name="boost.log.expressions.char_decorator_terminalconstruct-copy-destruct"></a><code class="computeroutput">char_decorator_terminal</code>
public
construct/copy/destruct</h3>
<div class="orderedlist"><ol class="orderedlist" type="1">
<li class="listitem">
<pre class="literallayout"><a name="idp20612544-bb"></a><span class="identifier">char_decorator_terminal</span><span class="special">(</span><span class="identifier">subactor_type</span> <span class="keyword">const</span> <span class="special">&</span> sub<span class="special">,</span> <span class="identifier">impl_type</span> <span class="keyword">const</span> <span class="special">&</span> impl<span class="special">)</span><span class="special">;</span></pre>
<p>Initializing constructor. </p>
</li>
<li class="listitem">
<pre class="literallayout"><a name="idp20614640-bb"></a><span class="identifier">char_decorator_terminal</span><span class="special">(</span><a class="link" href="char_decorator_terminal.html" title="Class template char_decorator_terminal">char_decorator_terminal</a> <span class="keyword">const</span> <span class="special">&</span> that<span class="special">)</span><span class="special">;</span></pre>
<p>Copy constructor </p>
</li>
<li class="listitem"><pre class="literallayout"><a name="idp20616320-bb"></a><span class="identifier">char_decorator_terminal</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre></li>
</ol></div>
</div>
<div class="refsect2">
<a name="idp85968176"></a><h3>
<a name="idp20602048-bb"></a><code class="computeroutput">char_decorator_terminal</code> public member functions</h3>
<div class="orderedlist"><ol class="orderedlist" type="1">
<li class="listitem">
<pre class="literallayout"><span class="identifier">subactor_type</span> <span class="keyword">const</span> <span class="special">&</span> <a name="idp20602608-bb"></a><span class="identifier">get_subactor</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p>
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term">Returns:</span></p></td>
<td><p>Adopted subactor </p></td>
</tr></tbody>
</table></div>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">impl_type</span> <span class="keyword">const</span> <span class="special">&</span> <a name="idp20604560-bb"></a><span class="identifier">get_impl</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p>
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term">Returns:</span></p></td>
<td><p>Implementation </p></td>
</tr></tbody>
</table></div>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> ContextT<span class="special">></span> <span class="identifier">result_type</span> <a name="idp20606512-bb"></a><span class="keyword">operator</span><span class="special">(</span><span class="special">)</span><span class="special">(</span><span class="identifier">ContextT</span> <span class="keyword">const</span> <span class="special">&</span> ctx<span class="special">)</span><span class="special">;</span></pre>
<p>Invokation operator </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> ContextT<span class="special">></span> <span class="identifier">result_type</span> <a name="idp20609312-bb"></a><span class="keyword">operator</span><span class="special">(</span><span class="special">)</span><span class="special">(</span><span class="identifier">ContextT</span> <span class="keyword">const</span> <span class="special">&</span> ctx<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p>Invokation operator </p>
</li>
</ol></div>
</div>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2007-2016 Andrey Semashev<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>).
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="pattern_replacer/string_lengths.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../expressions.html#header.boost.log.expressions.formatters.char_decorator_hpp"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="char_decorator_actor.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| calvinfarias/IC2015-2 | BOOST/boost_1_61_0/libs/log/doc/html/boost/log/expressions/char_decorator_terminal.html | HTML | mit | 15,056 |
<html>
<body>
<h2>HW10</h2>
<p>
<li><a href="hw10.pdf">hw10.pdf</a></li>
<li><a href="hw10.tex">hw10.tex</a></li>
</p>
</body>
</html>
| saketkc/hatex | 2016_Spring/MATH-542/HW10/index.html | HTML | mit | 145 |
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<title>Simple Invoicing - Built with AngularJS</title>
<meta charset='utf-8'>
<meta name="description" content="AngularJS and Angular Code Example for creating Invoices and Invoicing Application">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<style>
/*MAGO-INVOICE*/
body{
zoom: 74%;
}
.slide-down-enter,
.slide-down-leave
{
-webkit-transition:200ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
-moz-transition:200ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
-ms-transition:200ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
-o-transition:200ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
transition:200ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
display:block;
overflow:hidden;
position:relative;
}
.items-table .row {
border-bottom:1px solid #ddd;
line-height:3em;
}
.items-table .row:last-child {
border-bottom:none;
line-height:3em;
}
.slide-down-enter.slide-down-enter-active,
.slide-down-leave {
opacity:1;
height:46px;
}
.slide-down-leave.slide-down-leave-active,
.slide-down-enter {
opacity:0;
height:0px;
}
.invoice-number-container * {
font-weight:bold;
}
.items-table .row:nth-child(even) {
background:#f9f9f9;
}
.items-table input {
line-height:1.5em;
}
.actions {
padding-top:1em;
}
input:focus {
outline: 0;
}
.heading {
background-color:#357EBD;
color:#FFF;
margin-bottom:1em;
text-align:center;
line-height:2.5em;
}
.branding {
padding-bottom:2em;
border-bottom:1px solid #ddd;
}
.logo-container {
text-align:right;
}
.infos .right {
text-align:right;
}
.infos .right input {
text-align:right;
}
.infos .input-container {
padding:3px 0;
}
.header.row {
font-weight:bold;
border-bottom:1px solid #ddd;
border-top:1px solid #ddd;
}
input, textarea{
border: 1px solid #FFF;
}
.container input:hover, .container textarea:hover,
.table-striped > tbody > tr:nth-child(2n+1) > td input:hover,
.container input:focus, .container textarea:focus,
.table-striped > tbody > tr:nth-child(2n+1) > td input:focus{
border: 1px solid #CCC;
}
.table-striped > tbody > tr:nth-child(2n+1) > td input{
background-color: #F9F9F9;
border: 1px solid #F9F9F9;
}
@media print {
.noPrint {
display:none;
}
}
body{
padding:20px;
}
.infos input{
width: 300px;
}
.align-right input{
text-align:right;
width: 300px;
}
div.container{
width: 800px;
}
#imgInp{
display: none;
}
.copy {
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
width: 100%;
margin: 40px 0 20px 0;
font-size: 10px;
color: rgba(0, 0, 0, 0.5);
text-align: center;
color: #404040;
cursor: default;
line-height: 1.4em;
}
.copy .love {
display: inline-block;
position: relative;
color: #ce0c15;
}
img#company_logo{
margin-top: -60px;
margin-bottom: -100px;
}
.input-container{
font-weight: bold;
}
.col-md-12.footer {
margin-top: 154px;
font-weight: bold;
font-size: 10px;
}
.move{
margin-bottom: 3px;
margin-top: 5px;
font-size: 15px;
}
/*./MAGO-INVOICE*/ </style>
</head>
<body>
<div class="container" width="800px">
<div class="row">
<div class="col-xs-12 heading">
PACKAGE INVOICE
</div>
</div><!-- row -->
<div class="row branding">
<div class="col-xs-6">
<div class="invoice-number-container">
<label for="invoice-number">Invoice #</label><input type="text" id="invoice-number" ng-model="invoice.invoice_number" />
</div>
</div>
<div class="col-xs-6 logo-container">
<input type="file" id="imgInp" />
<img id="company_logo" src="{{ image }}" alt="your image" width="300" />
</div>
</div><!-- row branding -->
<div class="row infos" ng-controller="InvoiceCtrl">
<div class="col-xs-6">
<div class="input-container"><i class="fa fa-address-card fa-md"></i> Name/Lastname:<br/>
<p class="move"><i class="fa fa-angle-double-right fa-lg"></i> {{ firstname }} {{ lastname }}</p>
</div>
<div class="input-container"><i class="fa fa-map-marker fa-md"></i> Address:<br/>
<p class="move"><i class="fa fa-angle-double-right fa-lg"></i> {{ address }}</p>
</div>
<div class="input-container"><i class="fa fa-phone fa-md"></i> Distributor:<br/>
<p class="move"><i class="fa fa-angle-double-right fa-lg"></i> {{ distributorname }}</p>
</div>
<div class="input-container"><i class="fa fa-user fa-mdmd"></i> User Type:<br/>
<p class="move"><i class="fa fa-angle-double-right fa-lg"></i> {{ user_type }}</p>
</div>
</div>
<div class="col-xs-6 right">
<div class="input-container">{{ info0 }}</div>
<div class="input-container">{{ info1 }}</div>
<div class="input-container">{{ info2 }}</div>
<div class="input-container">{{ info3 }}</div>
<div class="input-container">{{ info4 }}</div>
<div class="input-container">{{ info5 }}</div>
<div class="input-container">{{ info6 }}</div>
</div>
</div><br/><!-- row infos -->
<div class="items-table" ng-controller="InvoiceCtrl">
<div class="row header">
<div class="col-xs-4">Product</div>
<div class="col-xs-4">Sale Date</div>
<div class="col-xs-4">Sale Type</div>
</div>
<div class="row invoice-item">
<div class="col-xs-4 input-container">
{{ product }}
</div>
<div class="col-xs-4 input-container">
{{ saledate }}
</div>
<div class="col-xs-2 input-container">
{{ sale_type }}
</div>
</div>
</div>
</div>
</body></html> | MAGOWARE/backoffice-administration | modules/mago/server/templates/salesreport-invoice.html | HTML | mit | 7,325 |
<h1>Angular Reading List</h1>
<div class="row" ng-controller="ReadingListCotroller as readingListCtrl">
<buttom class="btn btn-default" ng-click="reviewFormCtrl.showForm = !reviewFormCtrl.showForm">{{reviewFormCtrl.showForm ? "Cancel" : "Click here to add a new review"}}</buttom>
<hr/>
<review-form books="readingListCtrl.books" genres="readingListCtrl.genres" ng-show="reviewFormCtrl.showForm"></review-form>
<hr/>
<ul class="list-unstyled col-sm-8">
<li class="book row" ng-repeat="book in readingListCtrl.books">
<book-cover></book-cover>
<div class="col-sm-9">
<h3><a href="http://images.amazon.com/images/P/{{book.isbn}}.01.ZTZZZZZZ.jpg" alt="Cover of the {{book.title}}" class="full"></a>{{book.title}}</h3>
<cite>Written by {{book.author}}</cite>
<p>{{book.review}}</p>
<!--put genres code here -->
<book-genres genres="book.genres"></book-genres>
</div>
</li>
</ul>
</hr/>
</hr/>
</div>
| oanaOM/diveIntoAngu | app/partials/app.html | HTML | mit | 987 |
<ion-view>
<ion-content>
<section class="video-wrapper">
<video id="video" preload="auto" webkit-playsinline loop autoplay>
<source src="{{result}}" type="video/mp4">
</video>
</section>
</ion-content>
<section class="challenge-wrapper">
<div class="challenge-content">
<div class="challenge">
<h2 class="challenge-title">de opdracht:</h2>
<p class="challenge-current">{{currentChallenge}}</p>
</div>
</div>
</section>
<section class="buttons-wrapper">
<div class="buttons-content">
<div class="button-item">
<button id="record-video" class="button" ng-click="restartVideo()">
<img class="icon" src="img/buttons/button_video.svg" alt="Record video">
</button>
<p class="button-caption">record new video</p>
</div>
<div class="button-item">
<button id="challenge-friend" class="button" ng-click="uploadVideo()">
<img class="icon" src="img/buttons/button_trophy.svg" alt="Challenge your friends">
</button>
<p class="button-caption">challenge your friends</p>
</div>
</div>
</section>
</ion-view>
| Team-Plofpigeon/vavio-application | VavioHTML5/www/templates/finished-challenge.html | HTML | mit | 1,183 |
<!DOCTYPE html>
<html lang="ko-kr">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="generator" content="Hugo 0.15" />
<title>#Ludens</title>
<meta property="og:site_name" content="#Ludens" />
<meta property="og:locale" content="ko-kr" />
<meta property="og:url" content="http://ludens.kr/tags/ebb288ec97ad/" />
<meta property="fb:pages" content="1707155736233413"/>
<meta property="fb:admins" content="100001662925065"/>
<meta property="fb:app_id" content="326482430777833"/>
<meta property="fb:article_style" content="default" />
<meta name="twitter:site" content="@ludensk" />
<meta name="twitter:creator" content="@ludensk" />
<meta name="google-site-verification" content="RPY_1Z0am0hoduGzENYtuwF3BBoE0x5l3UxhUplLWPU" />
<meta name="naver-site-verification" content="f84c50bc744edf7a543994325914265117555d53" />
<meta name="p:domain_verify" content="381496f2247c95edc614061bacd92e08" />
<meta name="msvalidate.01" content="9137E6F3A8C1C4AE6DC4809DEDB06FD9" />
<meta property="og:title" content="번역" />
<meta property="og:type" content="website" />
<meta name="description" content="페이스북부터 심리학 그리고 워드프레스까지 온갖 잡지식을 가끔씩 끄적이고 있습니다." />
<meta name="twitter:card" content="summary" />
<link rel="author" href="humans.txt" />
<link rel="me" href="https://twitter.com/ludensk" />
<link rel="me" href="https://google.com/+ludensk" />
<link rel="me" href="https://github.com/ludens" />
<link rel="pingback" href="https://webmention.io/ludens.kr/xmlrpc" />
<link rel="webmention" href="https://webmention.io/ludens.kr/webmention" />
<link href="https://plus.google.com/+ludensk" rel="publisher">
<link rel="canonical" href="http://ludens.kr/tags/ebb288ec97ad/" />
<link rel="alternate" type="application/rss+xml" title="#Ludens" href="http://ludens.kr/rss/" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="#Ludens">
<meta name="mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#111111">
<meta name="msapplication-navbutton-color" content="#111111">
<meta name="msapplication-TileColor" content="#111111">
<meta name="application-name" content="#Ludens">
<meta name="msapplication-tooltip" content="페이스북부터 심리학 그리고 워드프레스까지 온갖 잡지식을 가끔씩 끄적이고 있습니다.">
<meta name="msapplication-starturl" content="/">
<meta http-equiv="cleartype" content="on">
<meta name="msapplication-tap-highlight" content="no">
<link rel="apple-touch-icon" sizes="57x57" href="http://ludens.kr/favicon/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="http://ludens.kr/favicon/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="http://ludens.kr/favicon/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="http://ludens.kr/favicon/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="http://ludens.kr/favicon/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="http://ludens.kr/favicon/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="http://ludens.kr/favicon/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="http://ludens.kr/favicon/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="http://ludens.kr/favicon/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="http://ludens.kr/favicon/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="http://ludens.kr/favicon/favicon-194x194.png" sizes="194x194">
<link rel="icon" type="image/png" href="http://ludens.kr/favicon/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="http://ludens.kr/favicon/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="http://ludens.kr/favicon/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="http://ludens.kr/favicon/manifest.json">
<link rel="mask-icon" href="http://ludens.kr/favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
<link rel="stylesheet" href="http://ludens.kr/css/pure/pure-min.css" />
<link rel="stylesheet" href="http://ludens.kr/css/pure/grids-responsive-min.css" />
<link rel='stylesheet' href='http://ludens.kr/font/fonts.css'>
<link rel="stylesheet" href="http://ludens.kr/font/font-awesome.min.css">
<link rel="stylesheet" href="http://ludens.kr/css/style.css"/>
<script src="http://ludens.kr/js/jquery-2.2.1.min.js"></script>
</head>
<body>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '326482430777833',
xfbml : true,
version : 'v2.6'
});
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/ko_KR/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<header class="pure-g">
<div class="pure-u-1 pure-u-sm-1-3 center">
<h1><a href="http://ludens.kr">#LUDENS</a></h1>
</div>
<nav class="pure-u-1 pure-u-sm-2-3 center">
<a href="http://ludens.kr/" class="home" title="Home">HOME</a>
<a href="http://ludens.kr/categories/" class="category" title="Category">CATEGORY</a>
<a href="http://ludens.kr/post/" class="archive" title="Archive">ARCHIVE</a>
<a href="http://ludens.kr/tags/" class="tag" title="Tag">TAG</a>
<a href="http://ludens.kr/guestbook/" class="guestbook" title="Guestbook">GUESTBOOK</a>
</nav>
</header>
<main class="list mainWrap">
<h2 class="ellipsis"><small>Posts about </small>번역</h2>
<h3 id="2015">2015</h3>
<div class="pure-g">
<div class="pure-u-1 pure-u-sm-1-2">
<a href="http://ludens.kr/post/naver-search-on-ios-with-bang/" class="cover" style="background-image: url('/images/old/cfile4.uf.2617914255D1F6DC3890C1.jpg');"></a>
<div class="category ubuntu300 grey">
<a class="grey" href="http://ludens.kr/categories/ios" title="iOS">iOS</a>
at <time datetime="17 Aug 2015 87:00">2015/8/17</time>
</div>
<h3 class="ellipsis margintop0"><a href="http://ludens.kr/post/naver-search-on-ios-with-bang/" title="아이폰/아이패드 사파리에서 바로 네이버 검색하기 (with !Bang)">아이폰/아이패드 사파리에서 바로 네이버 검색하기 (with !Bang)</a></h3>
</div>
</div>
<h3 id="2014">2014</h3>
<div class="pure-g">
<div class="pure-u-1 pure-u-sm-1-2">
<a href="http://ludens.kr/post/where-did-hiv-aids-come-from/" class="cover" style="background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/a/a1/AIDS_march_2_1990_aids_protest_Evansdale.jpg/800px-AIDS_march_2_1990_aids_protest_Evansdale.jpg');"></a>
<div class="category ubuntu300 grey">
<a class="grey" href="http://ludens.kr/categories/health" title="health">health</a>
at <time datetime="16 Aug 2014 87:00">2014/8/16</time>
</div>
<h3 class="ellipsis margintop0"><a href="http://ludens.kr/post/where-did-hiv-aids-come-from/" title="HIV(AIDS)는 어디서 왔을까?">HIV(AIDS)는 어디서 왔을까?</a></h3>
</div>
<div class="pure-u-1 pure-u-sm-1-2">
<a href="http://ludens.kr/post/why-i-accept-all-linkedin-contact-requests/" class="cover" style="background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Linkedin_Chocolates.jpg/1024px-Linkedin_Chocolates.jpg');"></a>
<div class="category ubuntu300 grey">
<a class="grey" href="http://ludens.kr/categories/social" title="social">social</a>
at <time datetime="16 Jan 2014 17:00">2014/1/16</time>
</div>
<h3 class="ellipsis margintop0"><a href="http://ludens.kr/post/why-i-accept-all-linkedin-contact-requests/" title="링크드인 1촌 신청을 전부 수락하는 이유">링크드인 1촌 신청을 전부 수락하는 이유</a></h3>
</div>
<div class="pure-u-1 pure-u-sm-1-2">
<a href="http://ludens.kr/post/urls-for-people-not-computers/" class="cover" style="background-image: url('http://www.thebluediamondgallery.com/pictures/website.jpg');"></a>
<div class="category ubuntu300 grey">
<a class="grey" href="http://ludens.kr/categories/web" title="Web">Web</a>
at <time datetime="8 Jan 2014 17:00">2014/1/8</time>
</div>
<h3 class="ellipsis margintop0"><a href="http://ludens.kr/post/urls-for-people-not-computers/" title="컴퓨터가 아닌, 사람을 위한 URL">컴퓨터가 아닌, 사람을 위한 URL</a></h3>
</div>
</div>
<h3 id="2013">2013</h3>
<div class="pure-g">
<div class="pure-u-1 pure-u-sm-1-2">
<a href="http://ludens.kr/post/sidebar-is-garbage-in-your-blog/" class="cover" style="background-image: url('https://i.ytimg.com/vi/LyQ6JwNQTT0/maxresdefault.jpg');"></a>
<div class="category ubuntu300 grey">
<a class="grey" href="http://ludens.kr/categories/blog" title="blog">blog</a>
at <time datetime="23 Dec 2013 127:00">2013/12/23</time>
</div>
<h3 class="ellipsis margintop0"><a href="http://ludens.kr/post/sidebar-is-garbage-in-your-blog/" title="블로그의 쓰레기, 사이드바">블로그의 쓰레기, 사이드바</a></h3>
</div>
<div class="pure-u-1 pure-u-sm-1-2">
<a href="http://ludens.kr/post/wordpress-faq/" class="cover" style="background-image: url('/images/old/cfile22.uf.266F8C3751211126154760.png');"></a>
<div class="category ubuntu300 grey">
<a class="grey" href="http://ludens.kr/categories/wordpress" title="wordpress">wordpress</a>
at <time datetime="18 Feb 2013 27:00">2013/2/18</time>
</div>
<h3 class="ellipsis margintop0"><a href="http://ludens.kr/post/wordpress-faq/" title="워드프레스 자주 묻는 질문: 60문 60답">워드프레스 자주 묻는 질문: 60문 60답</a></h3>
</div>
</div>
<h3 id="2012">2012</h3>
<div class="pure-g">
<div class="pure-u-1 pure-u-sm-1-2">
<a href="http://ludens.kr/post/wordpress-vs-drupal/" class="cover" style="background-image: url('/images/old/cfile22.uf.1927D34D505DE9B81A2C63.jpg');"></a>
<div class="category ubuntu300 grey">
<a class="grey" href="http://ludens.kr/categories/wordpress" title="wordpress">wordpress</a>
at <time datetime="24 Sep 2012 97:00">2012/9/24</time>
</div>
<h3 class="ellipsis margintop0"><a href="http://ludens.kr/post/wordpress-vs-drupal/" title="WordPress vs Drupal">WordPress vs Drupal</a></h3>
</div>
<div class="pure-u-1 pure-u-sm-1-2">
<a href="http://ludens.kr/post/business-card-design-hints/" class="cover" style="background-image: url('/images/old/cfile3.uf.113D1B3F4FDC982425DDD5.jpg');"></a>
<div class="category ubuntu300 grey">
<a class="grey" href="http://ludens.kr/categories/design" title="design">design</a>
at <time datetime="17 Jun 2012 67:00">2012/6/17</time>
</div>
<h3 class="ellipsis margintop0"><a href="http://ludens.kr/post/business-card-design-hints/" title="명함디자인시 꼭 알아야할 7가지 주의사항들">명함디자인시 꼭 알아야할 7가지 주의사항들</a></h3>
</div>
<div class="pure-u-1 pure-u-sm-1-2">
<a href="http://ludens.kr/post/opera-mini-90-percent-data-savings/" class="cover" style="background-image: url('/images/old/cfile1.uf.1249EF484F51B44223F297.jpg');"></a>
<div class="category ubuntu300 grey">
<a class="grey" href="http://ludens.kr/categories/opera" title="opera">opera</a>
at <time datetime="3 Mar 2012 37:00">2012/3/3</time>
</div>
<h3 class="ellipsis margintop0"><a href="http://ludens.kr/post/opera-mini-90-percent-data-savings/" title="오페라미니는 어떻게 스마트폰 데이터를 90%나 절약할까?">오페라미니는 어떻게 스마트폰 데이터를 90%나 절약할까?</a></h3>
</div>
</div>
</main>
<footer>
<div class="footerWrap pure-g">
<div class="pure-u-1 pure-u-md-2-5 copyright center">
ⓒ 2016 Ludens | Published with <a class="black dotline" href="http://gohugo.io" target="_blank" rel="nofollow">Hugo</a>
</div>
<nav class="pure-u-1 pure-u-md-3-5 center">
<a href="https://twitter.com/ludensk" class="twitter" title="Twitter"><i class='fa fa-twitter-square'></i></a>
<a href="https://fb.com/ludensk" class="facebook" title="Facebook"><i class='fa fa-facebook-square'></i></a>
<a href="https://instagr.am/ludensk" class="instagram" title="Instagram"><i class='fa fa-instagram'></i></a>
<a href="https://pinterest.com/ludensk" class="pinterest" title="Pinterest"><i class='fa fa-pinterest-square'></i></a>
<a href="https://www.youtube.com/user/ludensk" class="youtube" title="YouTube"><i class='fa fa-youtube-square'></i></a>
<a href="https://ludensk.tumblr.com" class="tumblr" title="Tumblr"><i class='fa fa-tumblr-square'></i></a>
<a href="https://linkedin.com/in/ludensk" class="linkedin" title="LinkedIn"><i class='fa fa-linkedin-square'></i></a>
<a href="https://github.com/ludens" class="github" title="GitHub"><i class='fa fa-github-square'></i></a>
<a href="http://ludens.kr/rss/" class="rss" title="RSS"><i class='fa fa-rss-square'></i></a>
</nav>
</div>
</footer>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-29269230-1', 'auto');
ga('send', 'pageview');
</script>
<script type="text/javascript" src="//wcs.naver.net/wcslog.js"></script>
<script type="text/javascript">
if(!wcs_add) var wcs_add = {};
wcs_add["wa"] = "123cefa73667c5c";
wcs_do();
</script>
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,document,'script','//connect.facebook.net/en_US/fbevents.js');
fbq('init','1143503702345044');
fbq('track',"PageView");
</script>
<noscript><img height="1" width="1" style="display:none" src="//www.facebook.com/tr?id=1143503702345044&ev=PageView&noscript=1" /></noscript>
<script src="//twemoji.maxcdn.com/twemoji.min.js"></script>
<script>var emoji=document.getElementsByClassName("emoji");twemoji.parse(emoji[0],{size:16});</script>
<script src="http://ludens.kr/js/jquery.keep-ratio.min.js"></script>
<script type="text/javascript">
$(function() {
$('.kofic-poster').keepRatio({ ratio: 27/40, calculate: 'height' });
$('.articleWrap .cover, .post_latest .cover,.articleWrap header figure').keepRatio({ ratio: 12/5, calculate: 'height' });
if ($(window).width() >= 568) {
$('.futher .cover,.error .cover,.post_two .cover,.list .cover').keepRatio({ ratio: 4/3, calculate: 'height' });
$('.categories .cover').keepRatio({ ratio: 1/1, calculate: 'height' });
}
else {
$('.futher .cover,.error .cover,.post_two .cover,.list .cover,.categories .cover').keepRatio({ ratio: 12/5, calculate: 'height' });
}
});
</script>
</body>
</html> | ludens/ludens.kr | tags/번역/index.html | HTML | mit | 16,085 |
<!DOCTYPE html>
<html>
<head>
<title>{% if page.title %}{{ page.title }} – {% endif %}{{ site.name }} – {{ site.description }}</title>
{% include meta.html %}
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/style.css" />
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/style-on-print.css" media="print" />
<link rel="alternate" type="application/rss+xml" title="{{ site.name }} - {{ site.description }}" href="{{ site.baseurl }}/feed.xml" />
<meta charset="utf-8">
{% include analytics.html %}
</head>
<body>
<div class="wrapper-masthead">
<div class="container">
<header class="masthead clearfix">
<a href="{{ site.baseurl }}/" class="site-avatar"><img src="{{ site.avatar }}" /></a>
<div class="site-info">
<h1 class="site-name"><a href="{{ site.baseurl }}/">{{ site.name }}</a></h1>
<p class="site-description">{{ site.description }}</p>
</div>
<nav>
<a href="{{ site.baseurl }}/">Blog</a>
<a href="{{ site.baseurl }}/archive">Archive</a>
<a href="{{ site.baseurl }}/projects">Projects</a>
<a href="{{ site.baseurl }}/about">About</a>
</nav>
</header>
</div>
</div>
<div id="main" role="main" class="container">
{{ content }}
</div>
<div class="wrapper-footer">
<div class="container">
<footer class="footer">
{% include svg-icons.html %}
</footer>
</div>
</div>
</body>
</html>
| adorow/adorow.github.io | _layouts/default.html | HTML | mit | 1,694 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_19) on Fri Oct 29 16:39:46 MSD 2010 -->
<TITLE>
org.apache.poi.openxml4j.opc.internal.unmarshallers Class Hierarchy (POI API Documentation)
</TITLE>
<META NAME="date" CONTENT="2010-10-29">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="org.apache.poi.openxml4j.opc.internal.unmarshallers Class Hierarchy (POI API Documentation)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../org/apache/poi/openxml4j/opc/internal/signature/package-tree.html"><B>PREV</B></A>
<A HREF="../../../../../../../org/apache/poi/openxml4j/opc/signature/package-tree.html"><B>NEXT</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/poi/openxml4j/opc/internal/unmarshallers/package-tree.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
Hierarchy For Package org.apache.poi.openxml4j.opc.internal.unmarshallers
</H2>
</CENTER>
<DL>
<DT><B>Package Hierarchies:</B><DD><A HREF="../../../../../../../overview-tree.html">All Packages</A></DL>
<HR>
<H2>
Class Hierarchy
</H2>
<UL>
<LI TYPE="circle">java.lang.Object<UL>
<LI TYPE="circle">org.apache.poi.openxml4j.opc.internal.unmarshallers.<A HREF="../../../../../../../org/apache/poi/openxml4j/opc/internal/unmarshallers/PackagePropertiesUnmarshaller.html" title="class in org.apache.poi.openxml4j.opc.internal.unmarshallers"><B>PackagePropertiesUnmarshaller</B></A> (implements org.apache.poi.openxml4j.opc.internal.<A HREF="../../../../../../../org/apache/poi/openxml4j/opc/internal/PartUnmarshaller.html" title="interface in org.apache.poi.openxml4j.opc.internal">PartUnmarshaller</A>)
<LI TYPE="circle">org.apache.poi.openxml4j.opc.internal.unmarshallers.<A HREF="../../../../../../../org/apache/poi/openxml4j/opc/internal/unmarshallers/UnmarshallContext.html" title="class in org.apache.poi.openxml4j.opc.internal.unmarshallers"><B>UnmarshallContext</B></A></UL>
</UL>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../org/apache/poi/openxml4j/opc/internal/signature/package-tree.html"><B>PREV</B></A>
<A HREF="../../../../../../../org/apache/poi/openxml4j/opc/signature/package-tree.html"><B>NEXT</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/poi/openxml4j/opc/internal/unmarshallers/package-tree.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright 2010 The Apache Software Foundation or
its licensors, as applicable.</i>
</BODY>
</HTML>
| nimbleapps/export_to_spreadsheet | lib/apache-poi/docs/apidocs/org/apache/poi/openxml4j/opc/internal/unmarshallers/package-tree.html | HTML | mit | 7,412 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_65) on Fri Dec 06 02:55:13 GMT 2013 -->
<TITLE>
data.system Class Hierarchy
</TITLE>
<META NAME="date" CONTENT="2013-12-06">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="data.system Class Hierarchy";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../data/request/package-tree.html"><B>PREV</B></A>
<A HREF="../../data/trainnetwork/package-tree.html"><B>NEXT</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html?data/system/package-tree.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
Hierarchy For Package data.system
</H2>
</CENTER>
<DL>
<DT><B>Package Hierarchies:</B><DD><A HREF="../../overview-tree.html">All Packages</A></DL>
<HR>
<H2>
Class Hierarchy
</H2>
<UL>
<LI TYPE="circle">java.lang.Object<UL>
<LI TYPE="circle">data.system.<A HREF="../../data/system/NodeInfo.html" title="class in data.system"><B>NodeInfo</B></A> (implements java.io.Serializable)
<UL>
<LI TYPE="circle">data.system.<A HREF="../../data/system/ClusterInfo.html" title="class in data.system"><B>ClusterInfo</B></A></UL>
<LI TYPE="circle">data.system.<A HREF="../../data/system/RouteToCompany.html" title="class in data.system"><B>RouteToCompany</B></A> (implements java.util.Map.Entry<K,V>, java.io.Serializable)
<LI TYPE="circle">data.system.<A HREF="../../data/system/Ticket.html" title="class in data.system"><B>Ticket</B></A></UL>
</UL>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../data/request/package-tree.html"><B>PREV</B></A>
<A HREF="../../data/trainnetwork/package-tree.html"><B>NEXT</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html?data/system/package-tree.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
| balazspete/multi-hop-train-journey-booking | doc/data/system/package-tree.html | HTML | mit | 6,306 |
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang=""> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Søknad om reisestipend {{ application_year }}</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<style>
body {
padding-bottom: 20px;
}
.btn.align-with-input { margin-top: 25px; }
</style>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<div class="container">
<h1>Administrer studieforbund</h1>
</div>
</div>
<div class="container">
{% if learning_association %}
<form method="post">
<div class="form-group">
<label for="name">Navn:</label>
<input type="text" name="name" id="name" value="{{learning_association.name|e}}" class="form-control" />
</div>
<div class="form-group">
<label for="email">Epostadresse:</label>
<input type="email" name="email" id="email" value="{{learning_association.email|e}}" class="form-control" />
</div>
<div class="form-group">
<div class="checkbox">
<label>
<input type="checkbox" name="active" id="active" value="true" {%- if learning_association.active %}checked="checked"{%- endif %} />
Aktiv
</label>
</div>
</div>
<div class="form-group">
<button class="btn btn-success">Lagre</button>
</div>
</form>
{% else %}
<p><a href="/admin?sf=new" class="btn btn-success">Nytt studieforbund</a></p>
{% endif %}
{% if learning_associations %}
<table class="table">
<thead>
<tr><th>Navn</th><th>Epostadresse</th><th>Aktiv?</th></tr>
</thead>
<tbody>
{% for item in learning_associations %}
<tr>
<td><a href="/admin?sf={{item.key.id()}}">{{item.name}}</a></td>
<td>{{item.email}}</td>
<td>{{item.active}}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}
<hr>
<footer>
<p>© <a href="http://www.vofo.no">Voksenopplæringsforbundet</a></p>
</footer>
</div> <!-- /container -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</body>
</html>
| vofo-no/reisestipend | templates/admin_form.html | HTML | mit | 3,307 |
<!-- google analytics snnipet-->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-83147911-1', 'auto');
ga('send', 'pageview');
</script>
<!-- end snnipet-->
<br>
<div class="panel panel-default" style="opacity: 0.8;">
<div class="panel-heading">
<h1 class="panel-title">Desarrollo de Aplicaciones Móviles</h1>
</div>
<div class="panel-body">
<div class="panel-body"><img src="images/appsmoviles.jpg" class="img-responsive" style="height: 30%; width:30%" alt="Image"></div>
<div class="well lineaborde">
Ofrecemos soluciones empresariales de gran calidad y excelentes precios en el desarrollo de Aplicaciones Móviles para los Sistemas Operativos: iOS y Android
Desarrollamos apps móviles para todo tipo y tamaño de empresas y negocios que desean crecer y generar nuevas oportunidades de crecimiento e incrementar sus ventas
</div>
</div>
</div>
<br>
| whuera/WebMobilPymes | android.html | HTML | mit | 1,235 |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="{{ site.url }}/assets/js/vendor/jquery-1.9.1.min.js"><\/script>')</script>
<script src="{{ site.url }}/assets/js/scripts.min.js"></script>
{% if site.owner.google.analytics %}
<!-- Asynchronous Google Analytics snippet -->
<script>
var _gaq = _gaq || [];
var pluginUrl =
'//www.google-analytics.com/plugins/ga/inpage_linkid.js';
_gaq.push(['_require', 'inpage_linkid', pluginUrl]);
_gaq.push(['_setAccount', '{{ site.owner.google.analytics }}']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
{% endif %}
{% if page.comments %}
{% include _disqus_comments.html %}
{% endif %}
| mycpuorg/mycpuorg.github.io | _includes/_scripts.html | HTML | mit | 1,174 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./2428f031fe0c8a1628ee05f3bf24288495020f90638bda7ce70a5dc5bdf93b21.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html> | simonmysun/praxis | TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/619a0dde4725fd4331b72f6e564e860e4ae7759645de10eab187c592ec1a2b4e.html | HTML | mit | 550 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./115d32b5c653e537be0cedcbfd41829f588ed96f6bf821cd516e58f8324b1cd8.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html> | simonmysun/praxis | TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/cfeffdc7566c5bad563b392f2601e04364f76822e50e11298584fce616e7efa3.html | HTML | mit | 550 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="Source to the Rust file `/home/rose/.cargo/registry/src/github.com-1ecc6299db9ec823/spin-0.4.3/src/once.rs`.">
<meta name="keywords" content="rust, rustlang, rust-lang">
<title>once.rs.html -- source</title>
<link rel="stylesheet" type="text/css" href="../../rustdoc.css">
<link rel="stylesheet" type="text/css" href="../../main.css">
</head>
<body class="rustdoc">
<!--[if lte IE 8]>
<div class="warning">
This old browser is unsupported and will most likely display funky
things.
</div>
<![endif]-->
<nav class="sidebar">
</nav>
<nav class="sub">
<form class="search-form js-only">
<div class="search-container">
<input class="search-input" name="search"
autocomplete="off"
placeholder="Click or press ‘S’ to search, ‘?’ for more options…"
type="search">
</div>
</form>
</nav>
<section id='main' class="content source"><pre class="line-numbers"><span id="1"> 1</span>
<span id="2"> 2</span>
<span id="3"> 3</span>
<span id="4"> 4</span>
<span id="5"> 5</span>
<span id="6"> 6</span>
<span id="7"> 7</span>
<span id="8"> 8</span>
<span id="9"> 9</span>
<span id="10"> 10</span>
<span id="11"> 11</span>
<span id="12"> 12</span>
<span id="13"> 13</span>
<span id="14"> 14</span>
<span id="15"> 15</span>
<span id="16"> 16</span>
<span id="17"> 17</span>
<span id="18"> 18</span>
<span id="19"> 19</span>
<span id="20"> 20</span>
<span id="21"> 21</span>
<span id="22"> 22</span>
<span id="23"> 23</span>
<span id="24"> 24</span>
<span id="25"> 25</span>
<span id="26"> 26</span>
<span id="27"> 27</span>
<span id="28"> 28</span>
<span id="29"> 29</span>
<span id="30"> 30</span>
<span id="31"> 31</span>
<span id="32"> 32</span>
<span id="33"> 33</span>
<span id="34"> 34</span>
<span id="35"> 35</span>
<span id="36"> 36</span>
<span id="37"> 37</span>
<span id="38"> 38</span>
<span id="39"> 39</span>
<span id="40"> 40</span>
<span id="41"> 41</span>
<span id="42"> 42</span>
<span id="43"> 43</span>
<span id="44"> 44</span>
<span id="45"> 45</span>
<span id="46"> 46</span>
<span id="47"> 47</span>
<span id="48"> 48</span>
<span id="49"> 49</span>
<span id="50"> 50</span>
<span id="51"> 51</span>
<span id="52"> 52</span>
<span id="53"> 53</span>
<span id="54"> 54</span>
<span id="55"> 55</span>
<span id="56"> 56</span>
<span id="57"> 57</span>
<span id="58"> 58</span>
<span id="59"> 59</span>
<span id="60"> 60</span>
<span id="61"> 61</span>
<span id="62"> 62</span>
<span id="63"> 63</span>
<span id="64"> 64</span>
<span id="65"> 65</span>
<span id="66"> 66</span>
<span id="67"> 67</span>
<span id="68"> 68</span>
<span id="69"> 69</span>
<span id="70"> 70</span>
<span id="71"> 71</span>
<span id="72"> 72</span>
<span id="73"> 73</span>
<span id="74"> 74</span>
<span id="75"> 75</span>
<span id="76"> 76</span>
<span id="77"> 77</span>
<span id="78"> 78</span>
<span id="79"> 79</span>
<span id="80"> 80</span>
<span id="81"> 81</span>
<span id="82"> 82</span>
<span id="83"> 83</span>
<span id="84"> 84</span>
<span id="85"> 85</span>
<span id="86"> 86</span>
<span id="87"> 87</span>
<span id="88"> 88</span>
<span id="89"> 89</span>
<span id="90"> 90</span>
<span id="91"> 91</span>
<span id="92"> 92</span>
<span id="93"> 93</span>
<span id="94"> 94</span>
<span id="95"> 95</span>
<span id="96"> 96</span>
<span id="97"> 97</span>
<span id="98"> 98</span>
<span id="99"> 99</span>
<span id="100">100</span>
<span id="101">101</span>
<span id="102">102</span>
<span id="103">103</span>
<span id="104">104</span>
<span id="105">105</span>
<span id="106">106</span>
<span id="107">107</span>
<span id="108">108</span>
<span id="109">109</span>
<span id="110">110</span>
<span id="111">111</span>
<span id="112">112</span>
<span id="113">113</span>
<span id="114">114</span>
<span id="115">115</span>
<span id="116">116</span>
<span id="117">117</span>
<span id="118">118</span>
<span id="119">119</span>
<span id="120">120</span>
<span id="121">121</span>
<span id="122">122</span>
<span id="123">123</span>
<span id="124">124</span>
<span id="125">125</span>
<span id="126">126</span>
<span id="127">127</span>
<span id="128">128</span>
<span id="129">129</span>
<span id="130">130</span>
<span id="131">131</span>
<span id="132">132</span>
<span id="133">133</span>
<span id="134">134</span>
<span id="135">135</span>
<span id="136">136</span>
<span id="137">137</span>
<span id="138">138</span>
<span id="139">139</span>
<span id="140">140</span>
<span id="141">141</span>
<span id="142">142</span>
<span id="143">143</span>
<span id="144">144</span>
<span id="145">145</span>
<span id="146">146</span>
<span id="147">147</span>
<span id="148">148</span>
<span id="149">149</span>
<span id="150">150</span>
<span id="151">151</span>
<span id="152">152</span>
<span id="153">153</span>
<span id="154">154</span>
<span id="155">155</span>
<span id="156">156</span>
<span id="157">157</span>
<span id="158">158</span>
<span id="159">159</span>
<span id="160">160</span>
<span id="161">161</span>
<span id="162">162</span>
<span id="163">163</span>
<span id="164">164</span>
<span id="165">165</span>
<span id="166">166</span>
<span id="167">167</span>
<span id="168">168</span>
<span id="169">169</span>
<span id="170">170</span>
<span id="171">171</span>
<span id="172">172</span>
<span id="173">173</span>
<span id="174">174</span>
<span id="175">175</span>
<span id="176">176</span>
<span id="177">177</span>
<span id="178">178</span>
<span id="179">179</span>
<span id="180">180</span>
<span id="181">181</span>
<span id="182">182</span>
<span id="183">183</span>
<span id="184">184</span>
<span id="185">185</span>
<span id="186">186</span>
<span id="187">187</span>
<span id="188">188</span>
<span id="189">189</span>
<span id="190">190</span>
<span id="191">191</span>
<span id="192">192</span>
<span id="193">193</span>
<span id="194">194</span>
<span id="195">195</span>
<span id="196">196</span>
<span id="197">197</span>
<span id="198">198</span>
<span id="199">199</span>
<span id="200">200</span>
<span id="201">201</span>
<span id="202">202</span>
<span id="203">203</span>
<span id="204">204</span>
<span id="205">205</span>
<span id="206">206</span>
<span id="207">207</span>
<span id="208">208</span>
<span id="209">209</span>
<span id="210">210</span>
<span id="211">211</span>
<span id="212">212</span>
<span id="213">213</span>
<span id="214">214</span>
<span id="215">215</span>
<span id="216">216</span>
<span id="217">217</span>
<span id="218">218</span>
<span id="219">219</span>
<span id="220">220</span>
<span id="221">221</span>
<span id="222">222</span>
<span id="223">223</span>
<span id="224">224</span>
<span id="225">225</span>
<span id="226">226</span>
<span id="227">227</span>
<span id="228">228</span>
<span id="229">229</span>
<span id="230">230</span>
<span id="231">231</span>
<span id="232">232</span>
<span id="233">233</span>
<span id="234">234</span>
<span id="235">235</span>
<span id="236">236</span>
<span id="237">237</span>
<span id="238">238</span>
<span id="239">239</span>
</pre><pre class='rust '>
<span class='kw'>use</span> <span class='ident'>core</span>::<span class='ident'>cell</span>::<span class='ident'>UnsafeCell</span>;
<span class='kw'>use</span> <span class='ident'>core</span>::<span class='ident'>sync</span>::<span class='ident'>atomic</span>::{<span class='ident'>AtomicUsize</span>, <span class='ident'>Ordering</span>};
<span class='kw'>use</span> <span class='ident'>util</span>::<span class='ident'>cpu_relax</span>;
<span class='doccomment'>/// A synchronization primitive which can be used to run a one-time global</span>
<span class='doccomment'>/// initialization. Unlike its std equivalent, this is generalized so that The</span>
<span class='doccomment'>/// closure returns a value and it is stored. Once therefore acts something like</span>
<span class='doccomment'>/// 1a future, too.</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// # Examples</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// ```</span>
<span class='doccomment'>/// #![feature(const_fn)]</span>
<span class='doccomment'>/// use spin;</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// static START: spin::Once<()> = spin::Once::new();</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// START.call_once(|| {</span>
<span class='doccomment'>/// // run initialization here</span>
<span class='doccomment'>/// });</span>
<span class='doccomment'>/// ```</span>
<span class='kw'>pub</span> <span class='kw'>struct</span> <span class='ident'>Once</span><span class='op'><</span><span class='ident'>T</span><span class='op'>></span> {
<span class='ident'>state</span>: <span class='ident'>AtomicUsize</span>,
<span class='ident'>data</span>: <span class='ident'>UnsafeCell</span><span class='op'><</span><span class='prelude-ty'>Option</span><span class='op'><</span><span class='ident'>T</span><span class='op'>>></span>, <span class='comment'>// TODO remove option and use mem::uninitialized</span>
}
<span class='comment'>// Same unsafe impls as `std::sync::RwLock`, because this also allows for</span>
<span class='comment'>// concurrent reads.</span>
<span class='kw'>unsafe</span> <span class='kw'>impl</span><span class='op'><</span><span class='ident'>T</span>: <span class='ident'>Sync</span> <span class='op'>+</span> <span class='ident'>Sync</span><span class='op'>></span> <span class='ident'>Sync</span> <span class='kw'>for</span> <span class='ident'>Once</span><span class='op'><</span><span class='ident'>T</span><span class='op'>></span> {}
<span class='kw'>unsafe</span> <span class='kw'>impl</span><span class='op'><</span><span class='ident'>T</span>: <span class='ident'>Sync</span> <span class='op'>+</span> <span class='ident'>Sync</span><span class='op'>></span> <span class='ident'>Send</span> <span class='kw'>for</span> <span class='ident'>Once</span><span class='op'><</span><span class='ident'>T</span><span class='op'>></span> {}
<span class='comment'>// Four states that a Once can be in, encoded into the lower bits of `state` in</span>
<span class='comment'>// the Once structure.</span>
<span class='kw'>const</span> <span class='ident'>INCOMPLETE</span>: <span class='ident'>usize</span> <span class='op'>=</span> <span class='number'>0x0</span>;
<span class='kw'>const</span> <span class='ident'>RUNNING</span>: <span class='ident'>usize</span> <span class='op'>=</span> <span class='number'>0x1</span>;
<span class='kw'>const</span> <span class='ident'>COMPLETE</span>: <span class='ident'>usize</span> <span class='op'>=</span> <span class='number'>0x2</span>;
<span class='attribute'>#[<span class='ident'>cfg</span>(<span class='ident'>feature</span> <span class='op'>=</span> <span class='string'>"core_intrinsics"</span>)]</span>
<span class='attribute'>#[<span class='ident'>inline</span>(<span class='ident'>always</span>)]</span>
<span class='kw'>fn</span> <span class='ident'>unreachable</span>() <span class='op'>-></span> <span class='op'>!</span> {
<span class='kw'>unsafe</span> { ::<span class='ident'>core</span>::<span class='ident'>intrinsics</span>::<span class='ident'>unreachable</span>() }
}
<span class='attribute'>#[<span class='ident'>cfg</span>(<span class='ident'>not</span>(<span class='ident'>feature</span> <span class='op'>=</span> <span class='string'>"core_intrinsics"</span>))]</span>
<span class='attribute'>#[<span class='ident'>inline</span>(<span class='ident'>always</span>)]</span>
<span class='kw'>fn</span> <span class='ident'>unreachable</span>() <span class='op'>-></span> <span class='op'>!</span> {
<span class='macro'>unreachable</span><span class='macro'>!</span>()
}
<span class='kw'>impl</span><span class='op'><</span><span class='ident'>T</span><span class='op'>></span> <span class='ident'>Once</span><span class='op'><</span><span class='ident'>T</span><span class='op'>></span> {
<span class='doccomment'>/// Creates a new `Once` value.</span>
<span class='kw'>pub</span> <span class='kw'>const</span> <span class='kw'>fn</span> <span class='ident'>new</span>() <span class='op'>-></span> <span class='ident'>Once</span><span class='op'><</span><span class='ident'>T</span><span class='op'>></span> {
<span class='ident'>Once</span> {
<span class='ident'>state</span>: <span class='ident'>AtomicUsize</span>::<span class='ident'>new</span>(<span class='ident'>INCOMPLETE</span>),
<span class='ident'>data</span>: <span class='ident'>UnsafeCell</span>::<span class='ident'>new</span>(<span class='prelude-val'>None</span>),
}
}
<span class='kw'>fn</span> <span class='ident'>force_get</span><span class='op'><</span><span class='lifetime'>'a</span><span class='op'>></span>(<span class='kw-2'>&</span><span class='lifetime'>'a</span> <span class='self'>self</span>) <span class='op'>-></span> <span class='kw-2'>&</span><span class='lifetime'>'a</span> <span class='ident'>T</span> {
<span class='kw'>match</span> <span class='kw'>unsafe</span> { <span class='kw-2'>&</span><span class='op'>*</span><span class='self'>self</span>.<span class='ident'>data</span>.<span class='ident'>get</span>() }.<span class='ident'>as_ref</span>() {
<span class='prelude-val'>None</span> <span class='op'>=></span> <span class='ident'>unreachable</span>(),
<span class='prelude-val'>Some</span>(<span class='ident'>p</span>) <span class='op'>=></span> <span class='ident'>p</span>,
}
}
<span class='doccomment'>/// Performs an initialization routine once and only once. The given closure</span>
<span class='doccomment'>/// will be executed if this is the first time `call_once` has been called,</span>
<span class='doccomment'>/// and otherwise the routine will *not* be invoked.</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// This method will block the calling thread if another initialization</span>
<span class='doccomment'>/// routine is currently running.</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// When this function returns, it is guaranteed that some initialization</span>
<span class='doccomment'>/// has run and completed (it may not be the closure specified). The</span>
<span class='doccomment'>/// returned pointer points to the return value of when of those</span>
<span class='doccomment'>/// initialization closures.</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// # Examples</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// ```</span>
<span class='doccomment'>/// #![feature(const_fn)]</span>
<span class='doccomment'>/// use spin;</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// static INIT: spin::Once<usize> = spin::Once::new();</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// fn get_cached_val() -> usize {</span>
<span class='doccomment'>/// *INIT.call_once(expensive_computation)</span>
<span class='doccomment'>/// }</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// fn expensive_computation() -> usize {</span>
<span class='doccomment'>/// // ...</span>
<span class='doccomment'>/// # 2</span>
<span class='doccomment'>/// }</span>
<span class='doccomment'>/// ```</span>
<span class='kw'>pub</span> <span class='kw'>fn</span> <span class='ident'>call_once</span><span class='op'><</span><span class='lifetime'>'a</span>, <span class='ident'>F</span><span class='op'>></span>(<span class='kw-2'>&</span><span class='lifetime'>'a</span> <span class='self'>self</span>, <span class='ident'>builder</span>: <span class='ident'>F</span>) <span class='op'>-></span> <span class='kw-2'>&</span><span class='lifetime'>'a</span> <span class='ident'>T</span>
<span class='kw'>where</span> <span class='ident'>F</span>: <span class='ident'>FnOnce</span>() <span class='op'>-></span> <span class='ident'>T</span>
{
<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>status</span> <span class='op'>=</span> <span class='self'>self</span>.<span class='ident'>state</span>.<span class='ident'>load</span>(<span class='ident'>Ordering</span>::<span class='ident'>SeqCst</span>);
<span class='kw'>if</span> <span class='ident'>status</span> <span class='op'>==</span> <span class='ident'>INCOMPLETE</span> {
<span class='ident'>status</span> <span class='op'>=</span> <span class='self'>self</span>.<span class='ident'>state</span>.<span class='ident'>compare_and_swap</span>(<span class='ident'>INCOMPLETE</span>,
<span class='ident'>RUNNING</span>,
<span class='ident'>Ordering</span>::<span class='ident'>SeqCst</span>);
<span class='kw'>if</span> <span class='ident'>status</span> <span class='op'>==</span> <span class='ident'>INCOMPLETE</span> { <span class='comment'>// We init</span>
<span class='kw'>unsafe</span> { <span class='op'>*</span><span class='self'>self</span>.<span class='ident'>data</span>.<span class='ident'>get</span>() <span class='op'>=</span> <span class='prelude-val'>Some</span>(<span class='ident'>builder</span>()) };
<span class='ident'>status</span> <span class='op'>=</span> <span class='ident'>COMPLETE</span>;
<span class='self'>self</span>.<span class='ident'>state</span>.<span class='ident'>store</span>(<span class='ident'>status</span>, <span class='ident'>Ordering</span>::<span class='ident'>SeqCst</span>);
<span class='comment'>// This next line is strictly an optomization</span>
<span class='kw'>return</span> <span class='self'>self</span>.<span class='ident'>force_get</span>();
}
}
<span class='kw'>loop</span> {
<span class='kw'>match</span> <span class='ident'>status</span> {
<span class='ident'>INCOMPLETE</span> <span class='op'>=></span> <span class='macro'>unreachable</span><span class='macro'>!</span>(),
<span class='ident'>RUNNING</span> <span class='op'>=></span> { <span class='comment'>// We spin</span>
<span class='ident'>cpu_relax</span>();
<span class='ident'>status</span> <span class='op'>=</span> <span class='self'>self</span>.<span class='ident'>state</span>.<span class='ident'>load</span>(<span class='ident'>Ordering</span>::<span class='ident'>SeqCst</span>)
},
<span class='ident'>COMPLETE</span> <span class='op'>=></span> <span class='kw'>return</span> <span class='self'>self</span>.<span class='ident'>force_get</span>(),
_ <span class='op'>=></span> <span class='ident'>unreachable</span>(),
}
}
}
<span class='doccomment'>/// Returns a pointer iff the `Once` was previously initialized</span>
<span class='kw'>pub</span> <span class='kw'>fn</span> <span class='ident'>try</span><span class='op'><</span><span class='lifetime'>'a</span><span class='op'>></span>(<span class='kw-2'>&</span><span class='lifetime'>'a</span> <span class='self'>self</span>) <span class='op'>-></span> <span class='prelude-ty'>Option</span><span class='op'><</span><span class='kw-2'>&</span><span class='lifetime'>'a</span> <span class='ident'>T</span><span class='op'>></span> {
<span class='kw'>match</span> <span class='self'>self</span>.<span class='ident'>state</span>.<span class='ident'>load</span>(<span class='ident'>Ordering</span>::<span class='ident'>SeqCst</span>) {
<span class='ident'>COMPLETE</span> <span class='op'>=></span> <span class='prelude-val'>Some</span>(<span class='self'>self</span>.<span class='ident'>force_get</span>()),
_ <span class='op'>=></span> <span class='prelude-val'>None</span>,
}
}
<span class='doccomment'>/// Like try, but will spin if the `Once` is in the process of being</span>
<span class='doccomment'>/// initialized</span>
<span class='kw'>pub</span> <span class='kw'>fn</span> <span class='ident'>wait</span><span class='op'><</span><span class='lifetime'>'a</span><span class='op'>></span>(<span class='kw-2'>&</span><span class='lifetime'>'a</span> <span class='self'>self</span>) <span class='op'>-></span> <span class='prelude-ty'>Option</span><span class='op'><</span><span class='kw-2'>&</span><span class='lifetime'>'a</span> <span class='ident'>T</span><span class='op'>></span> {
<span class='kw'>loop</span> {
<span class='kw'>match</span> <span class='self'>self</span>.<span class='ident'>state</span>.<span class='ident'>load</span>(<span class='ident'>Ordering</span>::<span class='ident'>SeqCst</span>) {
<span class='ident'>INCOMPLETE</span> <span class='op'>=></span> <span class='kw'>return</span> <span class='prelude-val'>None</span>,
<span class='ident'>RUNNING</span> <span class='op'>=></span> <span class='ident'>cpu_relax</span>(), <span class='comment'>// We spin</span>
<span class='ident'>COMPLETE</span> <span class='op'>=></span> <span class='kw'>return</span> <span class='prelude-val'>Some</span>(<span class='self'>self</span>.<span class='ident'>force_get</span>()),
_ <span class='op'>=></span> <span class='ident'>unreachable</span>(),
}
}
}
}
<span class='attribute'>#[<span class='ident'>cfg</span>(<span class='ident'>test</span>)]</span>
<span class='kw'>mod</span> <span class='ident'>tests</span> {
<span class='kw'>use</span> <span class='ident'>std</span>::<span class='ident'>prelude</span>::<span class='ident'>v1</span>::<span class='op'>*</span>;
<span class='kw'>use</span> <span class='ident'>std</span>::<span class='ident'>sync</span>::<span class='ident'>mpsc</span>::<span class='ident'>channel</span>;
<span class='kw'>use</span> <span class='ident'>std</span>::<span class='ident'>thread</span>;
<span class='kw'>use</span> <span class='kw'>super</span>::<span class='ident'>Once</span>;
<span class='attribute'>#[<span class='ident'>test</span>]</span>
<span class='kw'>fn</span> <span class='ident'>smoke_once</span>() {
<span class='kw'>static</span> <span class='ident'>O</span>: <span class='ident'>Once</span><span class='op'><</span>()<span class='op'>></span> <span class='op'>=</span> <span class='ident'>Once</span>::<span class='ident'>new</span>();
<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>a</span> <span class='op'>=</span> <span class='number'>0</span>;
<span class='ident'>O</span>.<span class='ident'>call_once</span>(<span class='op'>||</span> <span class='ident'>a</span> <span class='op'>+=</span> <span class='number'>1</span>);
<span class='macro'>assert_eq</span><span class='macro'>!</span>(<span class='ident'>a</span>, <span class='number'>1</span>);
<span class='ident'>O</span>.<span class='ident'>call_once</span>(<span class='op'>||</span> <span class='ident'>a</span> <span class='op'>+=</span> <span class='number'>1</span>);
<span class='macro'>assert_eq</span><span class='macro'>!</span>(<span class='ident'>a</span>, <span class='number'>1</span>);
}
<span class='attribute'>#[<span class='ident'>test</span>]</span>
<span class='kw'>fn</span> <span class='ident'>smoke_once_value</span>() {
<span class='kw'>static</span> <span class='ident'>O</span>: <span class='ident'>Once</span><span class='op'><</span><span class='ident'>usize</span><span class='op'>></span> <span class='op'>=</span> <span class='ident'>Once</span>::<span class='ident'>new</span>();
<span class='kw'>let</span> <span class='ident'>a</span> <span class='op'>=</span> <span class='ident'>O</span>.<span class='ident'>call_once</span>(<span class='op'>||</span> <span class='number'>1</span>);
<span class='macro'>assert_eq</span><span class='macro'>!</span>(<span class='op'>*</span><span class='ident'>a</span>, <span class='number'>1</span>);
<span class='kw'>let</span> <span class='ident'>b</span> <span class='op'>=</span> <span class='ident'>O</span>.<span class='ident'>call_once</span>(<span class='op'>||</span> <span class='number'>2</span>);
<span class='macro'>assert_eq</span><span class='macro'>!</span>(<span class='op'>*</span><span class='ident'>b</span>, <span class='number'>1</span>);
}
<span class='attribute'>#[<span class='ident'>test</span>]</span>
<span class='kw'>fn</span> <span class='ident'>stampede_once</span>() {
<span class='kw'>static</span> <span class='ident'>O</span>: <span class='ident'>Once</span><span class='op'><</span>()<span class='op'>></span> <span class='op'>=</span> <span class='ident'>Once</span>::<span class='ident'>new</span>();
<span class='kw'>static</span> <span class='kw-2'>mut</span> <span class='ident'>run</span>: <span class='ident'>bool</span> <span class='op'>=</span> <span class='bool-val'>false</span>;
<span class='kw'>let</span> (<span class='ident'>tx</span>, <span class='ident'>rx</span>) <span class='op'>=</span> <span class='ident'>channel</span>();
<span class='kw'>for</span> _ <span class='kw'>in</span> <span class='number'>0</span>..<span class='number'>10</span> {
<span class='kw'>let</span> <span class='ident'>tx</span> <span class='op'>=</span> <span class='ident'>tx</span>.<span class='ident'>clone</span>();
<span class='ident'>thread</span>::<span class='ident'>spawn</span>(<span class='kw'>move</span><span class='op'>||</span> {
<span class='kw'>for</span> _ <span class='kw'>in</span> <span class='number'>0</span>..<span class='number'>4</span> { <span class='ident'>thread</span>::<span class='ident'>yield_now</span>() }
<span class='kw'>unsafe</span> {
<span class='ident'>O</span>.<span class='ident'>call_once</span>(<span class='op'>||</span> {
<span class='macro'>assert</span><span class='macro'>!</span>(<span class='op'>!</span><span class='ident'>run</span>);
<span class='ident'>run</span> <span class='op'>=</span> <span class='bool-val'>true</span>;
});
<span class='macro'>assert</span><span class='macro'>!</span>(<span class='ident'>run</span>);
}
<span class='ident'>tx</span>.<span class='ident'>send</span>(()).<span class='ident'>unwrap</span>();
});
}
<span class='kw'>unsafe</span> {
<span class='ident'>O</span>.<span class='ident'>call_once</span>(<span class='op'>||</span> {
<span class='macro'>assert</span><span class='macro'>!</span>(<span class='op'>!</span><span class='ident'>run</span>);
<span class='ident'>run</span> <span class='op'>=</span> <span class='bool-val'>true</span>;
});
<span class='macro'>assert</span><span class='macro'>!</span>(<span class='ident'>run</span>);
}
<span class='kw'>for</span> _ <span class='kw'>in</span> <span class='number'>0</span>..<span class='number'>10</span> {
<span class='ident'>rx</span>.<span class='ident'>recv</span>().<span class='ident'>unwrap</span>();
}
}
<span class='attribute'>#[<span class='ident'>test</span>]</span>
<span class='kw'>fn</span> <span class='ident'>try</span>() {
<span class='kw'>static</span> <span class='ident'>INIT</span>: <span class='ident'>Once</span><span class='op'><</span><span class='ident'>usize</span><span class='op'>></span> <span class='op'>=</span> <span class='ident'>Once</span>::<span class='ident'>new</span>();
<span class='macro'>assert</span><span class='macro'>!</span>(<span class='ident'>INIT</span>.<span class='ident'>try</span>().<span class='ident'>is_none</span>());
<span class='ident'>INIT</span>.<span class='ident'>call_once</span>(<span class='op'>||</span> <span class='number'>2</span>);
<span class='macro'>assert_eq</span><span class='macro'>!</span>(<span class='ident'>INIT</span>.<span class='ident'>try</span>().<span class='ident'>map</span>(<span class='op'>|</span><span class='ident'>r</span><span class='op'>|</span> <span class='op'>*</span><span class='ident'>r</span>), <span class='prelude-val'>Some</span>(<span class='number'>2</span>));
}
<span class='attribute'>#[<span class='ident'>test</span>]</span>
<span class='kw'>fn</span> <span class='ident'>try_no_wait</span>() {
<span class='kw'>static</span> <span class='ident'>INIT</span>: <span class='ident'>Once</span><span class='op'><</span><span class='ident'>usize</span><span class='op'>></span> <span class='op'>=</span> <span class='ident'>Once</span>::<span class='ident'>new</span>();
<span class='macro'>assert</span><span class='macro'>!</span>(<span class='ident'>INIT</span>.<span class='ident'>try</span>().<span class='ident'>is_none</span>());
<span class='ident'>thread</span>::<span class='ident'>spawn</span>(<span class='kw'>move</span><span class='op'>||</span> {
<span class='ident'>INIT</span>.<span class='ident'>call_once</span>(<span class='op'>||</span> <span class='kw'>loop</span> { });
});
<span class='macro'>assert</span><span class='macro'>!</span>(<span class='ident'>INIT</span>.<span class='ident'>try</span>().<span class='ident'>is_none</span>());
}
<span class='attribute'>#[<span class='ident'>test</span>]</span>
<span class='kw'>fn</span> <span class='ident'>wait</span>() {
<span class='kw'>static</span> <span class='ident'>INIT</span>: <span class='ident'>Once</span><span class='op'><</span><span class='ident'>usize</span><span class='op'>></span> <span class='op'>=</span> <span class='ident'>Once</span>::<span class='ident'>new</span>();
<span class='macro'>assert</span><span class='macro'>!</span>(<span class='ident'>INIT</span>.<span class='ident'>wait</span>().<span class='ident'>is_none</span>());
<span class='ident'>INIT</span>.<span class='ident'>call_once</span>(<span class='op'>||</span> <span class='number'>3</span>);
<span class='macro'>assert_eq</span><span class='macro'>!</span>(<span class='ident'>INIT</span>.<span class='ident'>wait</span>().<span class='ident'>map</span>(<span class='op'>|</span><span class='ident'>r</span><span class='op'>|</span> <span class='op'>*</span><span class='ident'>r</span>), <span class='prelude-val'>Some</span>(<span class='number'>3</span>));
}
}
</pre>
</section>
<section id='search' class="content hidden"></section>
<section class="footer"></section>
<aside id="help" class="hidden">
<div>
<h1 class="hidden">Help</h1>
<div class="shortcuts">
<h2>Keyboard Shortcuts</h2>
<dl>
<dt>?</dt>
<dd>Show this help dialog</dd>
<dt>S</dt>
<dd>Focus the search field</dd>
<dt>⇤</dt>
<dd>Move up in search results</dd>
<dt>⇥</dt>
<dd>Move down in search results</dd>
<dt>⏎</dt>
<dd>Go to active search result</dd>
<dt>+</dt>
<dd>Collapse/expand all sections</dd>
</dl>
</div>
<div class="infos">
<h2>Search Tricks</h2>
<p>
Prefix searches with a type followed by a colon (e.g.
<code>fn:</code>) to restrict the search to a given type.
</p>
<p>
Accepted types are: <code>fn</code>, <code>mod</code>,
<code>struct</code>, <code>enum</code>,
<code>trait</code>, <code>type</code>, <code>macro</code>,
and <code>const</code>.
</p>
<p>
Search functions by type signature (e.g.
<code>vec -> usize</code> or <code>* -> vec</code>)
</p>
</div>
</div>
</aside>
<script>
window.rootPath = "../../";
window.currentCrate = "spin";
window.playgroundUrl = "";
</script>
<script src="../../jquery.js"></script>
<script src="../../main.js"></script>
<script defer src="../../search-index.js"></script>
</body>
</html> | alchemy-os/alchemy | docs/src/spin/once.rs.html | HTML | mit | 33,526 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.