hexsha stringlengths 40 40 | size int64 5 1.05M | ext stringclasses 98
values | lang stringclasses 21
values | max_stars_repo_path stringlengths 3 945 | max_stars_repo_name stringlengths 4 118 | max_stars_repo_head_hexsha stringlengths 40 78 | max_stars_repo_licenses listlengths 1 10 | max_stars_count int64 1 368k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 3 945 | max_issues_repo_name stringlengths 4 118 | max_issues_repo_head_hexsha stringlengths 40 78 | max_issues_repo_licenses listlengths 1 10 | max_issues_count int64 1 134k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 3 945 | max_forks_repo_name stringlengths 4 135 | max_forks_repo_head_hexsha stringlengths 40 78 | max_forks_repo_licenses listlengths 1 10 | max_forks_count int64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 5 1.05M | avg_line_length float64 1 1.03M | max_line_length int64 2 1.03M | alphanum_fraction float64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
f6f6ef46c471cb72481478d06bec25d1fa895176 | 5,514 | swift | Swift | OntheMap/OntheMap/Controllers/ListViewController.swift | abhilashkhare/OntheMap | b8106d3bf787ee6099734c48bad812f255669c63 | [
"Apache-2.0"
] | null | null | null | OntheMap/OntheMap/Controllers/ListViewController.swift | abhilashkhare/OntheMap | b8106d3bf787ee6099734c48bad812f255669c63 | [
"Apache-2.0"
] | null | null | null | OntheMap/OntheMap/Controllers/ListViewController.swift | abhilashkhare/OntheMap | b8106d3bf787ee6099734c48bad812f255669c63 | [
"Apache-2.0"
] | null | null | null |
//ListViewController.swift
//OntheMap
//Created by Abhilash Khare on 2/13/18.
//Copyright © 2018 Abhilash Khare. All rights reserved.
import UIKit
import Foundation
class ListViewController: UIViewController, UITableViewDelegate , UITableViewDataSource {
@IBOutlet var tableView : UITableView?
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(true)
self.tabBarController?.tabBar.isHidden = false
displayList()
}
func displayList()
{
ParseClient.sharedInstance().getStudentsInformation({(success, data, error) in
performUIUpdatesOnMain {
if(error != nil)
{
print ("Error loading student data")
self.displayAlert("Error", error!, "Cancel")
}
else
{
let studentsArray = data!["results"] as? [[String : AnyObject]]
for student in studentsArray!
{
sharedData.sharedInstance.studentLocations.append(studentInformation(dictionary : student))
}
if sharedData.sharedInstance.studentLocations.count != 0
{
print("count")
print(sharedData.sharedInstance.studentLocations.count)
performUIUpdatesOnMain {
self.tableView?.reloadData()
}
}
}
}
})
}
@IBAction func refresh(_ sender : Any) {
displayList()
}
@IBAction func addLocation(_ sender: Any) {
if(userInformation.objectID == nil){
let controller = self.storyboard?.instantiateViewController(withIdentifier: "AddLocationViewController") as! AddLocationViewController
self.present(controller, animated: true, completion: nil)
} else {
displayAlertPop("User has already posted a student location. Would you like to OverWrite their location?")
}
}
@IBAction func logOut(_ sender : Any)
{
performUIUpdatesOnMain {
UdacityClient.sharedInstance().logOutFunction { (data, error) in
if error != nil
{
let alert = UIAlertController(title:"Log off Error", message: "Could not log out", preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "Log off Error", style: .default, handler: { (action) in
alert.dismiss(animated: true, completion: nil)
}))
} else {
print("Log off successful")
performUIUpdatesOnMain {
self.dismiss(animated: true, completion: nil)
}
}
}
}
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return sharedData.sharedInstance.studentLocations.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "ListCellOTM") as! ListCellOTM
let info = sharedData.sharedInstance.studentLocations[(indexPath as NSIndexPath).row]
tableView.rowHeight = 70
if let firstname = info.firstName,let lastname = info.lastName{
cell.name.text = "\(firstname)"+" "+"\(lastname)"
cell.URL.text = info.mediaURL
}
return cell
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let info = sharedData.sharedInstance.studentLocations[(indexPath as NSIndexPath).row ]
let url = URL( string : info.mediaURL!)
if url?.scheme != "https"
{
displayAlert("","Invalid URL","Dismiss")
} else {
UIApplication.shared.open(url!)
}
tableView.deselectRow(at: indexPath, animated: true)
}
func displayAlertPop( _ message : String)
{
let alert = UIAlertController(title: title, message: message, preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "Overwrite", style: .default, handler: { (action) in
let controller = self.storyboard?.instantiateViewController(withIdentifier: "AddLocationViewController") as! AddLocationViewController
self.navigationController?.pushViewController(controller, animated: true)
}))
alert.addAction(UIAlertAction(title: "Cancel", style: .default, handler: { (action) in
alert.dismiss(animated: true, completion: nil)
}))
self.present(alert, animated: true, completion: nil)
}
func displayAlert(_ title : String, _ message : String , _ action : String)
{
let alert = UIAlertController(title: title, message: message, preferredStyle: .alert)
alert.addAction(UIAlertAction(title: action, style: .default, handler: {action in alert.dismiss(animated: true, completion: nil)}))
self.present(alert, animated: true, completion: nil)
}
}
| 35.805195 | 146 | 0.560029 |
9c13ac4cc2876d0e6de860a0cd87200ed5b34869 | 936 | js | JavaScript | src/common/actions/regOptionsActions.js | Popov85/ratos3-frontend | 017a433f89faed10733c3d961f93e0fb0a9bfe59 | [
"MIT"
] | null | null | null | src/common/actions/regOptionsActions.js | Popov85/ratos3-frontend | 017a433f89faed10733c3d961f93e0fb0a9bfe59 | [
"MIT"
] | null | null | null | src/common/actions/regOptionsActions.js | Popov85/ratos3-frontend | 017a433f89faed10733c3d961f93e0fb0a9bfe59 | [
"MIT"
] | null | null | null | import appAPI from "../_api/appAPI";
const LOADING_REG_OPTIONS = "LOADING_REG_OPTIONS";
const LOADING_REG_OPTIONS_FAILURE = "LOADING_REG_OPTIONS_FAILURE";
const SET_REG_OPTIONS = "SET_REG_OPTIONS";
export const loading = isLoading => ({type: LOADING_REG_OPTIONS, isLoading});
export const loadingFailure = error => ({type: LOADING_REG_OPTIONS_FAILURE, error});
export const setRegOptions = regOptions=> ({type: SET_REG_OPTIONS, payload: regOptions});
export const getRegOptions = () => {
return (dispatch) => {
dispatch(loading(true));
appAPI.fetchRegOptions().then(result => {
//console.log("Result (regOptions) = ", result.data);
dispatch(setRegOptions(result.data));
}).catch(e => {
console.log("Error loading RegOptions!", e);
dispatch(loadingFailure(new Error("Failed to load RegOptions")));
}).finally(() => dispatch(loading(false)));
}
}
| 40.695652 | 89 | 0.674145 |
56b1dcc8b3bf033957358fd7299a6e2210a855ef | 688 | ts | TypeScript | server/src/routes.ts | ThaiMedeiros/ecoleta | 947aa27b4c2040fa529a0c909f5d748023f58f4b | [
"MIT"
] | null | null | null | server/src/routes.ts | ThaiMedeiros/ecoleta | 947aa27b4c2040fa529a0c909f5d748023f58f4b | [
"MIT"
] | 2 | 2022-02-27T05:56:20.000Z | 2022-02-27T06:09:55.000Z | server/src/routes.ts | ThaiMedeiros/ecoleta | 947aa27b4c2040fa529a0c909f5d748023f58f4b | [
"MIT"
] | null | null | null | import express from "express";
//importando os controladores
import PointsController from "./controllers/PointsController";
import ItemsController from "./controllers/ItemsController";
const routes = express.Router();
//criando instâncias dos recursos (controllers)
const pointsController = new PointsController();
const itemsController = new ItemsController();
routes.get("/items", itemsController.index); //buscar todos os itens
//pontos de coleta
routes.post("/points", pointsController.create); //cadastrar
routes.get("/points", pointsController.index); //listar todos os pontos
routes.get("/points/:id", pointsController.show); //listar ponto específico
export default routes;
| 32.761905 | 75 | 0.78343 |
99cb7dcf48068c135f6aaab025cdc769811c5bdb | 1,873 | swift | Swift | Example/TSWebView/MainViewController.swift | tsleedev/TSWebView | 15d31ed610548707c8a208076db448914da3dfa8 | [
"MIT"
] | null | null | null | Example/TSWebView/MainViewController.swift | tsleedev/TSWebView | 15d31ed610548707c8a208076db448914da3dfa8 | [
"MIT"
] | null | null | null | Example/TSWebView/MainViewController.swift | tsleedev/TSWebView | 15d31ed610548707c8a208076db448914da3dfa8 | [
"MIT"
] | null | null | null | //
// MainViewController.swift
// TSWebView
//
// Created by TAE SU LEE on 2021/07/08.
//
import UIKit
enum WebViewType {
case storyboard
case codeBase
case opensource
}
extension WebViewType {
var title: String {
switch self {
case .storyboard:
return "Make by Storyboard"
case .codeBase:
return "Make by CodeBase"
case .opensource:
return "Make by Opensource"
}
}
}
class MainViewController: UIViewController {
@IBOutlet private weak var tableView: UITableView!
private let types: [WebViewType] = [.storyboard, .codeBase, .opensource]
override func viewDidLoad() {
super.viewDidLoad()
title = "TSWebView"
}
}
// MARK: - UITableViewDataSource
extension MainViewController: UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return types.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
cell.textLabel?.text = types[indexPath.row].title
return cell
}
}
// MARK: - UITableViewDelegate
extension MainViewController: UITableViewDelegate {
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
tableView.deselectRow(at: indexPath, animated: true)
let type = types[indexPath.row]
switch type {
case .storyboard:
performSegue(withIdentifier: "storyboard", sender: nil)
case .codeBase:
let destination = CodeBaseWebViewController()
navigationController?.pushViewController(destination, animated: true)
case .opensource:
break
}
}
}
| 26.380282 | 100 | 0.647624 |
7695a4b79096d1cc55fb5130d31af1f8def0d68f | 2,871 | kt | Kotlin | app/src/main/java/com/he/fastandroid/ui/activity/MainActivity.kt | tianhe-github/FastAndroid | 482c1a80468b07a4b947b64138cf8d8c16292a81 | [
"Apache-2.0"
] | null | null | null | app/src/main/java/com/he/fastandroid/ui/activity/MainActivity.kt | tianhe-github/FastAndroid | 482c1a80468b07a4b947b64138cf8d8c16292a81 | [
"Apache-2.0"
] | null | null | null | app/src/main/java/com/he/fastandroid/ui/activity/MainActivity.kt | tianhe-github/FastAndroid | 482c1a80468b07a4b947b64138cf8d8c16292a81 | [
"Apache-2.0"
] | null | null | null | package com.he.fastandroid.ui.activity
import android.os.Bundle
import androidx.lifecycle.lifecycleScope
import androidx.navigation.fragment.NavHostFragment
import androidx.navigation.ui.NavigationUI
import com.he.common.base.BaseActivity
import com.he.fastandroid.MyApplication
import com.he.fastandroid.R
import com.he.fastandroid.remote.Service
import com.he.fastandroid.room.AppDatabase
import com.he.http.requestApi
import com.shuyu.gsyvideoplayer.GSYVideoManager
import kotlinx.android.synthetic.main.activity_main.*
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
/**
* Created by Liam.Zheng on 2020/10/16
*
* Des:
*/
class MainActivity : BaseActivity() {
override fun getlayoutId(): Int {
return R.layout.activity_main
}
override fun initView(savedInstanceState: Bundle?) {
if (savedInstanceState == null) {
setupBottomNavigationBar()
} // Else, need to wait for onRestoreInstanceState
}
override fun initData() {
lifecycleScope.launch {
val dao = AppDatabase.getInstance(this@MainActivity).userDao()
val user = dao.findByName(MyApplication.instance.spUserName)
if (user.userPortrai.isNullOrEmpty()) {
requestApi({
Service.apiService.getRandPortrait()
}, {
if (it.isOk()) {
user.userPortrai = it.pic_url
launch(Dispatchers.IO) {
dao.update(user)
}
}
})
}
}
}
override fun onRestoreInstanceState(savedInstanceState: Bundle) {
super.onRestoreInstanceState(savedInstanceState)
// Now that BottomNavigationBar has restored its instance state
// and its selectedItemId, we can proceed with setting up the
// BottomNavigationBar with Navigation
setupBottomNavigationBar()
}
/**
* Called on first creation and when restoring state.
*/
private fun setupBottomNavigationBar() {
navigation.itemIconTintList = null
val navHostFragment =
supportFragmentManager.findFragmentById(R.id.nav_host_fragment) as NavHostFragment
val navController = navHostFragment.navController
NavigationUI.setupWithNavController(navigation, navController)
}
override fun onBackPressed() {
if (GSYVideoManager.backFromWindowFull(this)) {
return;
}
super.onBackPressed()
}
override fun onPause() {
super.onPause()
GSYVideoManager.onPause()
}
override fun onResume() {
super.onResume()
GSYVideoManager.onResume()
}
override fun onDestroy() {
super.onDestroy()
GSYVideoManager.releaseAllVideos()
}
}
| 29.90625 | 94 | 0.64542 |
6807f85419d496f0e54c51ea97e87fd023b0c7c2 | 1,205 | kt | Kotlin | SimpleLogin/app/src/main/java/io/simplelogin/android/utils/extension/Context.kt | Stjinchan/Simple-Login-Android | 285bd9564d35a8d58a106a933b437873ce0a2d2a | [
"Apache-2.0"
] | null | null | null | SimpleLogin/app/src/main/java/io/simplelogin/android/utils/extension/Context.kt | Stjinchan/Simple-Login-Android | 285bd9564d35a8d58a106a933b437873ce0a2d2a | [
"Apache-2.0"
] | null | null | null | SimpleLogin/app/src/main/java/io/simplelogin/android/utils/extension/Context.kt | Stjinchan/Simple-Login-Android | 285bd9564d35a8d58a106a933b437873ce0a2d2a | [
"Apache-2.0"
] | null | null | null | package io.simplelogin.android.utils.extension
import android.content.Context
import android.content.pm.PackageManager
import android.util.DisplayMetrics
import android.widget.Toast
import io.simplelogin.android.utils.enums.SLError
fun Context.toastShortly(text: String): Toast {
val toast = Toast.makeText(this, text, Toast.LENGTH_SHORT)
toast.show()
return toast
}
fun Context.toastLongly(text: String): Toast {
val toast = Toast.makeText(this, text, Toast.LENGTH_LONG)
toast.show()
return toast
}
fun Context.toastThrowable(throwable: Throwable) {
toastShortly(throwable.localizedMessage)
}
fun Context.toastError(error: SLError) = toastLongly(error.description)
fun Context.toastUpToDate() = toastShortly("You are up to date")
fun Context.getVersionName(): String {
val packageInfo = packageManager.getPackageInfo(packageName, PackageManager.GET_ACTIVITIES)
return packageInfo.versionName
}
fun Context.dpToPixel(dp: Float): Float =
dp * (resources.displayMetrics.densityDpi.toFloat() / DisplayMetrics.DENSITY_DEFAULT)
fun Context.pixelsToDp(px: Float): Float =
px / (resources.displayMetrics.densityDpi.toFloat() / DisplayMetrics.DENSITY_DEFAULT)
| 30.897436 | 95 | 0.777593 |
ddc238b767782c8fd6d77f8289ef9470454045ea | 3,093 | php | PHP | resources/views/dashboard/notice-category/index.blade.php | Rakesh-Bhatt/notice-board | 5533162634bee2a641cf8dba411a217071f47117 | [
"MIT"
] | null | null | null | resources/views/dashboard/notice-category/index.blade.php | Rakesh-Bhatt/notice-board | 5533162634bee2a641cf8dba411a217071f47117 | [
"MIT"
] | null | null | null | resources/views/dashboard/notice-category/index.blade.php | Rakesh-Bhatt/notice-board | 5533162634bee2a641cf8dba411a217071f47117 | [
"MIT"
] | null | null | null | @include('dashboard.header')
<div class="breadcrumbs">
</div>
<div class="content">
<div class="animated fadeIn">
<div class="row">
<center>
<small><a href="{{route('notice-category.create')}}" class="btn btn-primary float-right">Create</a></small>
</center>
@if(session()->has('status'))
<div class="alert alert-warning alert-dismissible fade show" role="alert">
<strong>Can not Delete!!!</strong> {{session()->get('status')}}
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
@endif
<div class="col-md-12">
<div class="card">
<div class="card-header">
<strong class="card-title">Data Table</strong>
</div>
<div class="card-body">
<table id="bootstrap-data-table" class="table table-striped table-bordered">
<thead>
<tr>
<th>S.N.</th>
<th>Title</th>
<th>Created At</th>
<th>Action</th>
</tr>
</thead>
<tbody>
@foreach($data as $key => $value)
<tr>
<td>{{$data->firstItem() + $key}}</td>
<td>{{$value->title}}</td>
<td>{{date('M d, Y', strtotime($value->created_at))}}</td>
<td><div class="btn btn-info"><a href="{{route('notice-category.edit', $value->id)}}"><i class="fa fa-edit">Edit</i></div>
<form action="{{route('notice-category.destroy', $value->id)}}" method="post" class="d-inline">
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger" onclick="return confirm('Are you sure to delete?')"><i class="fa fa-trash-o"></i>Delete</button>
</form></div>
</td>
</tr>
@endforeach
</tbody>
</table>
<div class="justify-content-center">
@if(class_basename($data) !== 'Collection')
{{$data->links()}}
@endif
</div>
</div>
</div>
</div>
</div>
</div>
</div><!-- .content -->
<div class="clearfix"></div>
@include('dashboard.footer') | 47.584615 | 185 | 0.365341 |
fb0304c169f26467a98921c5035818c2ee3e7952 | 3,799 | go | Go | cmd/deploy.go | kylegc/appsody-cli | 31bdc506d7ef3ca08a1e61e97456617faec9e6cd | [
"Apache-2.0"
] | null | null | null | cmd/deploy.go | kylegc/appsody-cli | 31bdc506d7ef3ca08a1e61e97456617faec9e6cd | [
"Apache-2.0"
] | null | null | null | cmd/deploy.go | kylegc/appsody-cli | 31bdc506d7ef3ca08a1e61e97456617faec9e6cd | [
"Apache-2.0"
] | null | null | null | // Copyright © 2019 NAME HERE <EMAIL ADDRESS>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package cmd
import (
"os"
"strconv"
"github.com/spf13/cobra"
)
var namespace, tag string
var push bool
var deployCmd = &cobra.Command{
Use: "deploy",
Short: "Build and deploy your appsody project on a local Kubernetes cluster",
Long: `This command extracts the code from your project, builds a local Docker image for deployment,
generates a KNative serving deployment manifest (yaml) file, and deploys your image as a KNative
service in your local cluster.`,
Run: func(cmd *cobra.Command, args []string) {
// Extract code and build the image
buildCmd.Run(cmd, args)
//Generate the KNative yaml
//Get the container port first
port, err := getEnvVarInt("PORT")
if err != nil {
//try and get the exposed ports and use the first one
Warning.log("Could not detect a container port (PORT env var).")
portsStr := getExposedPorts()
if len(portsStr) == 0 {
//No ports exposed
Warning.log("This container exposes no ports. The service will not be accessible.")
port = 0 //setting this to 0
} else {
portStr := portsStr[0]
Warning.log("Picking the first exposed port as the KNative service port. This may not be the correct port.")
port, err = strconv.Atoi(portStr)
if err != nil {
Warning.log("The exposed port is not a valid integer. The service will not be accessible.")
port = 0
}
}
}
//Get the KNative template file
knativeTempl := getKNativeTemplate()
//Get the project name and make it the KNative service name
serviceName := getProjectName()
//Deploy image name is also project name
deployImage := getProjectName()
//Tagging the image if necessary and using the tag as the deployImage for KNative
if tag != "" {
err = DockerTag(deployImage, tag)
if err != nil {
Error.log("Tagging the image failed - exiting. Error: ", err)
os.Exit(1)
}
deployImage = tag
}
//Generating the KNative yaml file
Debug.logf("Calling GenKnativeYaml with parms: %s %d %s %s \n", knativeTempl, port, serviceName, deployImage)
yamlFileName, err := GenKnativeYaml(knativeTempl, port, serviceName, deployImage)
if err != nil {
Error.log("Could not generate the KNative YAML file: ", err)
os.Exit(1)
}
Info.log("Generated KNative serving deploy file: ", yamlFileName)
// Pushing the docker image if necessary
if push {
err = DockerPush(deployImage)
if err != nil {
Error.log("Could not push the docker image - exiting. Error: ", err)
}
}
err = KubeApply(yamlFileName)
// Performing the kubectl apply
if err != nil {
Error.log("Failed to deploy to your Kubernetes cluster: ", err)
} else {
Info.log("Deployment succeeded - check the Kubernetes pods for progress.")
}
},
}
func init() {
rootCmd.AddCommand(deployCmd)
deployCmd.PersistentFlags().StringVarP(&namespace, "namespace", "n", "", "Target namespace in your Kubernetes cluster")
deployCmd.PersistentFlags().StringVarP(&tag, "tag", "t", "", "Docker image name and optionally a tag in the 'name:tag' format")
deployCmd.PersistentFlags().BoolVar(&push, "push", false, "Push this image to an external Docker registry. Assumes that you have previously successfully done docker login")
}
| 36.180952 | 173 | 0.705975 |
df79090d38354d6d83c921d01f8ed888d44ffc23 | 55 | rb | Ruby | lib/cocoapods-protected-dependencies.rb | Itaybre/cocoapods-protected-dependencies | b27a2d36396c75a0ae49e73194d0c90160bcd42c | [
"MIT"
] | 2 | 2021-02-16T19:18:34.000Z | 2021-02-17T12:41:05.000Z | lib/cocoapods-protected-dependencies.rb | Itaybre/cocoapods-protected-dependencies | b27a2d36396c75a0ae49e73194d0c90160bcd42c | [
"MIT"
] | null | null | null | lib/cocoapods-protected-dependencies.rb | Itaybre/cocoapods-protected-dependencies | b27a2d36396c75a0ae49e73194d0c90160bcd42c | [
"MIT"
] | null | null | null | require 'cocoapods-protected-dependencies/gem_version'
| 27.5 | 54 | 0.872727 |
0e4803b6270df28b395e18d8e9883ec8e3a730ea | 271 | html | HTML | sample/before.html | yury-tyshkevich/htmldiff.js | ef625497e3cbdef9a47d8590250692f8a49c754a | [
"MIT"
] | 15 | 2018-04-21T06:12:40.000Z | 2022-01-25T01:18:11.000Z | sample/before.html | yury-tyshkevich/htmldiff.js | ef625497e3cbdef9a47d8590250692f8a49c754a | [
"MIT"
] | 2 | 2021-03-03T19:43:49.000Z | 2022-01-19T16:34:59.000Z | sample/before.html | yury-tyshkevich/htmldiff.js | ef625497e3cbdef9a47d8590250692f8a49c754a | [
"MIT"
] | 8 | 2018-09-16T22:46:23.000Z | 2022-03-30T09:42:38.000Z | <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta charset="utf-8"/>
</head>
<body>
<p>This is some text.</p>
<figure>
<img src="before.png" alt="This is an image" />
<figcaption>This is an image</figcaption>
</figure>
</body>
</html>
| 15.941176 | 53 | 0.642066 |
bde22e39fe97683211c2dab2d01874e220bc7be7 | 12,651 | swift | Swift | PLRelational/Tests/QueryOptimizerTests.swift | plausiblelabs/plrelational | d904ea052b4e2b2db720733d3e63089c7d99e49b | [
"MIT"
] | 75 | 2017-08-10T21:21:13.000Z | 2022-02-06T15:34:02.000Z | PLRelational/Tests/QueryOptimizerTests.swift | plausiblelabs/plrelational | d904ea052b4e2b2db720733d3e63089c7d99e49b | [
"MIT"
] | 2 | 2019-11-22T19:30:47.000Z | 2019-11-22T19:31:28.000Z | PLRelational/Tests/QueryOptimizerTests.swift | plausiblelabs/plrelational | d904ea052b4e2b2db720733d3e63089c7d99e49b | [
"MIT"
] | 1 | 2017-08-23T06:06:23.000Z | 2017-08-23T06:06:23.000Z | //
// Copyright (c) 2017 Plausible Labs Cooperative, Inc.
// All rights reserved.
//
import XCTest
@testable import PLRelational
class QueryOptimizerTests: XCTestCase {
func testEquijoinOptimization() {
let instrumented = InstrumentedSelectableRelation(scheme: ["n"], values: [
["n": 1],
["n": 2],
["n": 3],
["n": 4],
["n": 5],
["n": 6],
["n": 7],
["n": 8],
["n": 9],
["n": 10],
])
AssertEqual(instrumented, MakeRelation(["n"], [1], [2], [3], [4], [5], [6], [7], [8], [9], [10]))
XCTAssertEqual(instrumented.rowsProvided, 10)
instrumented.rowsProvided = 0
AssertEqual(instrumented.join(MakeRelation(["n", "m"], [1, 2])), MakeRelation(["n", "m"], [1, 2]))
XCTAssertEqual(instrumented.rowsProvided, 1)
instrumented.rowsProvided = 0
}
func testEquijoinOptimizationInfiniteLoop() {
let r1 = InstrumentedSelectableRelation(scheme: ["n"], values: [["n": 1]])
let r2 = InstrumentedSelectableRelation(scheme: ["n"], values: [["n": 1]])
let r = r1.renameAttributes(["n": "m"]).join(r2.renameAttributes(["n": "m"]))
AssertEqual(r, MakeRelation(["m"], [1]))
}
func testEquijoinOptimizationWithRename() {
let instrumented = InstrumentedSelectableRelation(scheme: ["n"], values: [
["n": 1],
["n": 2],
["n": 3],
["n": 4],
["n": 5],
["n": 6],
["n": 7],
["n": 8],
["n": 9],
["n": 10],
])
AssertEqual(instrumented.renameAttributes(["n": "a"]).join(MakeRelation(["a", "b"], [1, 2])), MakeRelation(["a", "b"], [1, 2]))
XCTAssertEqual(instrumented.rowsProvided, 1)
instrumented.rowsProvided = 0
}
func testSimpleMultipleEquijoinOptimization() {
let instrumented = InstrumentedSelectableRelation(scheme: ["n"], values: [
["n": 1],
["n": 2],
["n": 3],
["n": 4],
["n": 5],
["n": 6],
["n": 7],
["n": 8],
["n": 9],
["n": 10],
])
let toJoin1 = MakeRelation(["n"], [2])
let toJoin2 = MakeRelation(["n"], [3])
let joined1 = instrumented.join(toJoin1)
let joined2 = instrumented.join(toJoin2)
let final = joined1.union(joined2)
AssertEqual(final, MakeRelation(["n"], [2], [3]))
XCTAssertEqual(instrumented.rowsProvided, 2)
}
func testLessSimpleMultipleEquijoinOptimization() {
let instrumented = InstrumentedSelectableRelation(scheme: ["n"], values: [
["n": 1],
["n": 2],
["n": 3],
["n": 4],
["n": 5],
["n": 6],
["n": 7],
["n": 8],
["n": 9],
["n": 10],
])
let renamed = instrumented.renameAttributes(["n": "m"])
let toJoin1 = MakeRelation(["m"], [2])
let toJoin2 = MakeRelation(["m"], [3])
let joined1 = renamed.join(toJoin1)
let joined2 = renamed.join(toJoin2)
let final = joined1.union(joined2)
AssertEqual(final, MakeRelation(["m"], [2], [3]))
XCTAssertEqual(instrumented.rowsProvided, 2)
}
func testEvenLessSimpleMultipleEquijoinOptimization() {
let instrumented = InstrumentedSelectableRelation(scheme: ["n"], values: [
["n": 1],
["n": 2],
["n": 3],
["n": 4],
["n": 5],
["n": 6],
["n": 7],
["n": 8],
["n": 9],
["n": 10],
])
let renamed = instrumented.renameAttributes(["n": "m"])
let unioned = renamed.union(MakeRelation(["m"], [11]))
let toJoin1 = MakeRelation(["m"], [2])
let toJoin2 = MakeRelation(["m"], [3])
let joined1 = unioned.join(toJoin1)
let joined2 = unioned.join(toJoin2)
let final = joined1.union(joined2)
AssertEqual(final, MakeRelation(["m"], [2], [3]))
XCTAssertEqual(instrumented.rowsProvided, 2)
}
func testMultipleEquijoinOptimization() {
let instrumented = InstrumentedSelectableRelation(scheme: ["n"], values: [
["n": 1],
["n": 2],
["n": 3],
["n": 4],
["n": 5],
["n": 6],
["n": 7],
["n": 8],
["n": 9],
["n": 10],
])
let toUnion = MakeRelation(["n"], [11])
let toSubtract = MakeRelation(["n"], [1])
let combined = instrumented.union(toUnion).difference(toSubtract)
let toJoin1 = MakeRelation(["n"], [2])
let toJoin2 = MakeRelation(["m"], [3])
let joined1 = combined.join(toJoin1)
let joined2 = combined.renameAttributes(["n": "m"]).join(toJoin2)
let final = joined1.union(joined2.renameAttributes(["m": "n"]))
AssertEqual(final, MakeRelation(["n"], [2], [3]))
XCTAssertEqual(instrumented.rowsProvided, 2)
}
func testSelectOptimization() {
let instrumented = InstrumentedSelectableRelation(scheme: ["n"], values: [
["n": 1],
["n": 2],
["n": 3],
["n": 4],
["n": 5],
["n": 6],
["n": 7],
["n": 8],
["n": 9],
["n": 10],
])
let toUnion = MakeRelation(["n"], [11])
let toSubtract = MakeRelation(["n"], [1])
let combined = instrumented.union(toUnion).difference(toSubtract)
let selected1 = combined.select(Attribute("n") *== 2)
let selected2 = combined.select(Attribute("n") *== 3)
let final = selected1.union(selected2)
AssertEqual(final, MakeRelation(["n"], [2], [3]))
XCTAssertEqual(instrumented.rowsProvided, 2)
}
func testJoinedJoinOptimization() {
func makeR(size: Int) -> InstrumentedSelectableRelation {
return InstrumentedSelectableRelation(scheme: ["n"], values: Set((0 ..< size).map({ ["n": RelationValue.integer(Int64($0))] })))
}
let small = makeR(size: 1)
let medium = makeR(size: 10)
let large = makeR(size: 100)
// The naive method of running sources in order of their original size will run
// small, medium, large. This will cause medium to iterate its whole content
// because no select gets pushed down to it. A select does get pushed down
// to large, so it really should go first. This test ensures that the system
// notices this and runs small, large, medium, which is more efficient.
let r = small.join(large).join(medium)
AssertEqual(r, makeR(size: 1))
XCTAssertEqual(small.rowsProvided, 1)
XCTAssertEqual(medium.rowsProvided, 1)
XCTAssertEqual(large.rowsProvided, 1)
}
func testJoinDerivativeOptimization() {
let rm = InstrumentedSelectableRelation(scheme: ["m"], values: Set((1 ... 20).map({ ["m": $0] })))
.setDebugName("rm")
let rn = InstrumentedSelectableRelation(scheme: ["n"], values: Set((10 ... 30).map({ ["n": $0] })))
.setDebugName("rn")
let joined = rm.equijoin(rn, matching: ["m": "n"])
.setDebugName("joined")
let differentiator = RelationDifferentiator(relation: joined)
let derivative = differentiator.computeDerivative()
derivative.addChange(RelationChange(
added: MakeRelation(["m"], [1], [10]),
removed: MakeRelation(["m"], [0], [21])), toVariable: rm)
derivative.addChange(RelationChange(
added: MakeRelation(["n"], [20], [30]),
removed: MakeRelation(["n"], [9], [31])), toVariable: rn)
AssertEqual(derivative.change.added, MakeRelation(["m", "n"], [10, 10], [20, 20]))
AssertEqual(derivative.change.removed, MakeRelation(["m", "n"], [9, 9], [21, 21]))
XCTAssertEqual(rm.rowsProvided, 2)
XCTAssertEqual(rn.rowsProvided, 2)
}
func testJoinedJoinWithOneRelationOptimization() {
let instrumented = InstrumentedSelectableRelation(scheme: ["n"], values: Set((0 ..< 100).map({ ["n": $0] }))).setDebugName("instrumented")
let tiny = MakeRelation(["n"], [1]).setDebugName("tiny")
let selected = instrumented.select(Attribute("n") *< 10).setDebugName("selected")
let j1 = tiny.join(selected).setDebugName("j1")
let j2 = j1.join(instrumented).setDebugName("j2")
j2.asyncAllRows({
XCTAssertNil($0.err)
XCTAssertEqual($0.ok, [["n": 1]])
CFRunLoopStop(CFRunLoopGetCurrent())
XCTAssertEqual(instrumented.rowsProvided, 11)
})
CFRunLoopRunOrFail()
j2.asyncAllRows({
XCTAssertNil($0.err)
XCTAssertEqual($0.ok, [["n": 1]])
CFRunLoopStop(CFRunLoopGetCurrent())
XCTAssertEqual(instrumented.rowsProvided, 22)
})
CFRunLoopRunOrFail()
j2.asyncAllRows({
XCTAssertNil($0.err)
XCTAssertEqual($0.ok, [["n": 1]])
CFRunLoopStop(CFRunLoopGetCurrent())
XCTAssertEqual(instrumented.rowsProvided, 33)
})
CFRunLoopRunOrFail()
}
func testCachedJoinedJoinWithOneRelationOptimization() {
let instrumented = InstrumentedSelectableRelation(scheme: ["n"], values: Set((0 ..< 100).map({ ["n": $0] }))).setDebugName("instrumented")
let tiny = MakeRelation(["n"], [1]).setDebugName("tiny")
let selected = instrumented.select(Attribute("n") *< 10).setDebugName("selected")
// TODO: eventually it would be nice if the direct version of the multiple join
// would be fast on its own. For now, we need this cache to make it fast. When
// we get to fixing the direct case, we can take the cache out.
let cached = selected.cache(upTo: .max).setDebugName("cached")
let j1 = tiny.join(cached).setDebugName("j1")
let j2 = j1.join(instrumented).setDebugName("j2")
j2.asyncAllRows({
XCTAssertNil($0.err)
XCTAssertEqual($0.ok, [["n": 1]])
CFRunLoopStop(CFRunLoopGetCurrent())
XCTAssertEqual(instrumented.rowsProvided, 11)
})
CFRunLoopRunOrFail()
j2.asyncAllRows({
XCTAssertNil($0.err)
XCTAssertEqual($0.ok, [["n": 1]])
CFRunLoopStop(CFRunLoopGetCurrent())
XCTAssertEqual(instrumented.rowsProvided, 12)
})
CFRunLoopRunOrFail()
j2.asyncAllRows({
XCTAssertNil($0.err)
XCTAssertEqual($0.ok, [["n": 1]])
CFRunLoopStop(CFRunLoopGetCurrent())
XCTAssertEqual(instrumented.rowsProvided, 13)
})
CFRunLoopRunOrFail()
}
}
private class InstrumentedSelectableRelation: Relation {
var scheme: Scheme
var values: Set<Row>
var debugName: String?
var rowsProvided = 0
func addChangeObserver(_ observer: RelationObserver, kinds: [RelationObservationKind]) -> (() -> Void) {
return {}
}
func update(_ query: SelectExpression, newValues: Row) -> Result<Void, RelationError> {
return .Ok(())
}
func contains(_ row: Row) -> Result<Bool, RelationError> {
return .Ok(values.contains(row))
}
private func filteredValues(_ expression: SelectExpression) -> [Row] {
return values.filter({ expression.valueWithRow($0).boolValue })
}
var contentProvider: RelationContentProvider {
return .efficientlySelectableGenerator({ expression in
let filtered = self.filteredValues(expression)
let mapped = filtered.map({ row -> Result<Set<Row>, RelationError> in
self.rowsProvided += 1
return .Ok([row])
})
return AnyIterator(mapped.makeIterator())
}, approximateCount: {
Double(self.filteredValues($0).count)
})
}
init(scheme: Scheme, values: Set<Row>) {
self.scheme = scheme
self.values = values
}
}
| 35.436975 | 146 | 0.528575 |
45680465348a3f9bdf04c949769f56e913b81685 | 5,157 | rs | Rust | src/stream/channel.rs | hgallagher1993/futures-rs | 1b05e0e20ee95eb00d3f476700a678af32d5c225 | [
"Apache-2.0",
"MIT"
] | null | null | null | src/stream/channel.rs | hgallagher1993/futures-rs | 1b05e0e20ee95eb00d3f476700a678af32d5c225 | [
"Apache-2.0",
"MIT"
] | null | null | null | src/stream/channel.rs | hgallagher1993/futures-rs | 1b05e0e20ee95eb00d3f476700a678af32d5c225 | [
"Apache-2.0",
"MIT"
] | null | null | null | use std::sync::Arc;
use std::sync::atomic::{AtomicBool, Ordering};
use {Future, Poll, Async};
use slot::{Slot, Token};
use stream::Stream;
use task;
/// Creates an in-memory channel implementation of the `Stream` trait.
///
/// This method creates a concrete implementation of the `Stream` trait which
/// can be used to send values across threads in a streaming fashion. This
/// channel is unique in that it implements back pressure to ensure that the
/// sender never outpaces the receiver. The `Sender::send` method will only
/// allow sending one message and the next message can only be sent once the
/// first was consumed.
///
/// The `Receiver` returned implements the `Stream` trait and has access to any
/// number of the associated combinators for transforming the result.
pub fn channel<T, E>() -> (Sender<T, E>, Receiver<T, E>) {
let inner = Arc::new(Inner {
slot: Slot::new(None),
receiver_gone: AtomicBool::new(false),
});
let sender = Sender {
inner: inner.clone(),
};
let receiver = Receiver {
inner: inner,
on_full_token: None,
};
(sender, receiver)
}
/// The transmission end of a channel which is used to send values.
///
/// This is created by the `channel` method in the `stream` module.
pub struct Sender<T, E> {
inner: Arc<Inner<T, E>>,
}
/// A future returned by the `Sender::send` method which will resolve to the
/// sender once it's available to send another message.
#[must_use = "futures do nothing unless polled"]
pub struct FutureSender<T, E> {
sender: Option<Sender<T, E>>,
data: Option<Result<T, E>>,
on_empty_token: Option<Token>,
}
/// The receiving end of a channel which implements the `Stream` trait.
///
/// This is a concrete implementation of a stream which can be used to represent
/// a stream of values being computed elsewhere. This is created by the
/// `channel` method in the `stream` module.
#[must_use = "streams do nothing unless polled"]
pub struct Receiver<T, E> {
inner: Arc<Inner<T, E>>,
on_full_token: Option<Token>,
}
struct Inner<T, E> {
slot: Slot<Message<Result<T, E>>>,
receiver_gone: AtomicBool,
}
enum Message<T> {
Data(T),
Done,
}
pub struct SendError<T, E>(Result<T, E>);
impl<T, E> Stream for Receiver<T, E> {
type Item = T;
type Error = E;
fn poll(&mut self) -> Poll<Option<T>, E> {
if let Some(token) = self.on_full_token.take() {
self.inner.slot.cancel(token);
}
match self.inner.slot.try_consume() {
Ok(Message::Data(Ok(e))) => Ok(Async::Ready(Some(e))),
Ok(Message::Data(Err(e))) => Err(e),
Ok(Message::Done) => Ok(Async::Ready(None)),
Err(..) => {
let task = task::park();
self.on_full_token = Some(self.inner.slot.on_full(move |_| {
task.unpark();
}));
Ok(Async::NotReady)
}
}
}
}
impl<T, E> Drop for Receiver<T, E> {
fn drop(&mut self) {
self.inner.receiver_gone.store(true, Ordering::SeqCst);
if let Some(token) = self.on_full_token.take() {
self.inner.slot.cancel(token);
}
self.inner.slot.on_full(|slot| {
drop(slot.try_consume());
});
}
}
impl<T, E> Sender<T, E> {
/// Sends a new value along this channel to the receiver.
///
/// This method consumes the sender and returns a future which will resolve
/// to the sender again when the value sent has been consumed.
pub fn send(self, t: Result<T, E>) -> FutureSender<T, E> {
FutureSender {
sender: Some(self),
data: Some(t),
on_empty_token: None,
}
}
}
impl<T, E> Drop for Sender<T, E> {
fn drop(&mut self) {
self.inner.slot.on_empty(None, |slot, _none| {
slot.try_produce(Message::Done).ok().unwrap();
});
}
}
impl<T, E> Future for FutureSender<T, E> {
type Item = Sender<T, E>;
type Error = SendError<T, E>;
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
let data = self.data.take().expect("cannot poll FutureSender twice");
let sender = self.sender.take().expect("cannot poll FutureSender twice");
if let Some(token) = self.on_empty_token.take() {
sender.inner.slot.cancel(token);
}
if sender.inner.receiver_gone.load(Ordering::SeqCst) {
return Err(SendError(data))
}
match sender.inner.slot.try_produce(Message::Data(data)) {
Ok(()) => Ok(Async::Ready(sender)),
Err(e) => {
let task = task::park();
let token = sender.inner.slot.on_empty(None, move |_slot, _item| {
task.unpark();
});
self.on_empty_token = Some(token);
self.data = Some(match e.into_inner() {
Message::Data(data) => data,
Message::Done => panic!(),
});
self.sender = Some(sender);
Ok(Async::NotReady)
}
}
}
}
| 31.638037 | 82 | 0.581152 |
2902bf65661f72c92c5756784b297b1e16c0475d | 1,438 | py | Python | tests/manual_print_lcd.py | LeonardoSanBenitez/computers-networks-final-project | b89a2e2351023977231493b2e8b9a1dd5e0ce334 | [
"MIT"
] | 1 | 2020-10-11T17:55:06.000Z | 2020-10-11T17:55:06.000Z | tests/manual_print_lcd.py | LeonardoSanBenitez/computers-networks-final-project | b89a2e2351023977231493b2e8b9a1dd5e0ce334 | [
"MIT"
] | null | null | null | tests/manual_print_lcd.py | LeonardoSanBenitez/computers-networks-final-project | b89a2e2351023977231493b2e8b9a1dd5e0ce334 | [
"MIT"
] | null | null | null | from subprocess import Popen, PIPE
from time import sleep
from datetime import datetime
import board
import digitalio
import adafruit_character_lcd.character_lcd as characterlcd
import os
path_img = 'assets/'
path_log = 'assets/log/log.txt'
# Modify this if you have a different sized character LCD
lcd_columns = 16
lcd_rows = 2
# compatible with all versions of RPI as of Jan. 2019
lcd_rs = digitalio.DigitalInOut(board.D16)
lcd_en = digitalio.DigitalInOut(board.D12)
lcd_d4 = digitalio.DigitalInOut(board.D25)
lcd_d5 = digitalio.DigitalInOut(board.D24)
lcd_d6 = digitalio.DigitalInOut(board.D23)
lcd_d7 = digitalio.DigitalInOut(board.D18)
# Initialise the lcd class
lcd = characterlcd.Character_LCD_Mono(lcd_rs, lcd_en, lcd_d4, lcd_d5,
lcd_d6, lcd_d7, lcd_columns, lcd_rows)
lcd.clear()
sleep(2)
print("LCD init OK\n")
while True:
# Last image name
list_of_videos = [path_img + i for i in os.listdir(path_img)] # List videos
list_of_videos.sort(key=os.path.getctime) # Sort by creation time
lcd_line_1 = list_of_videos[-1][len(path_img):len(path_img)+15] + '\n' # take the last, remove path, crop to 16
# Last temperature from log
f = open(path_log, "r")
lcd_line_2 = f.readline()[:16]
f.close()
# combine both lines into one update to the display
lcd.clear()
lcd.message = lcd_line_1 + lcd_line_2
#print("LCD update OK")
sleep(2)
| 28.76 | 115 | 0.716968 |
0a2168102155ef3ac42cc02b01c79ce2d2a58152 | 321 | h | C | UnitTestApp/SFUnitTest/SFUnitTest/iMASMainViewController.h | andrassomogyi/securefoundation | d42e410b601a12bb70cad1b885f5de260e643bea | [
"Apache-2.0"
] | 37 | 2015-01-05T16:52:43.000Z | 2019-11-27T20:18:02.000Z | UnitTestApp/SFUnitTest/SFUnitTest/iMASMainViewController.h | andrassomogyi/securefoundation | d42e410b601a12bb70cad1b885f5de260e643bea | [
"Apache-2.0"
] | 4 | 2015-07-01T13:36:32.000Z | 2017-10-04T18:34:51.000Z | UnitTestApp/SFUnitTest/SFUnitTest/iMASMainViewController.h | andrassomogyi/securefoundation | d42e410b601a12bb70cad1b885f5de260e643bea | [
"Apache-2.0"
] | 6 | 2016-01-19T20:11:57.000Z | 2021-08-04T17:31:03.000Z | //
// iMASMainViewController.h
// SFUnitTest
//
// Created by Ganley, Gregg on 9/13/13.
// Copyright (c) 2013 MITRE Corp. All rights reserved.
//
#import "iMASFlipsideViewController.h"
@interface iMASMainViewController : UIViewController <iMASFlipsideViewControllerDelegate>
- (IBAction)showInfo:(id)sender;
@end
| 20.0625 | 89 | 0.750779 |
d4e4f7c00d2debef24e5b66460c5de471e0e11b5 | 5,045 | swift | Swift | EmonCMSiOS/Helpers/Rx/UIControl+Combine.swift | emoncms/emoncms-ios | 890938b23e8d0471727c074852bb46dc1769fa69 | [
"MIT"
] | 14 | 2016-12-22T04:42:11.000Z | 2022-02-10T18:52:18.000Z | EmonCMSiOS/Helpers/Rx/UIControl+Combine.swift | emoncms/emoncms-ios | 890938b23e8d0471727c074852bb46dc1769fa69 | [
"MIT"
] | 55 | 2016-11-11T10:55:38.000Z | 2020-11-30T20:49:14.000Z | EmonCMSiOS/Helpers/Rx/UIControl+Combine.swift | emoncms/emoncms-ios | 890938b23e8d0471727c074852bb46dc1769fa69 | [
"MIT"
] | 9 | 2016-12-01T16:58:14.000Z | 2022-02-10T18:52:30.000Z | //
// UIControl+Combine.swift
// EmonCMSiOS
//
// Created by Matt Galloway on 11/08/2019.
// Copyright © 2019 Matt Galloway. All rights reserved.
//
// TAKEN FROM: https://www.avanderlee.com/swift/custom-combine-publisher/
import Combine
import UIKit
protocol CombineCompatible {}
/// A custom subscription to capture UIControl target events.
final class UIControlSubscription<SubscriberType: Subscriber>: Subscription where SubscriberType.Input == UIControl {
private var subscriber: SubscriberType?
private let control: UIControl
init(subscriber: SubscriberType, control: UIControl, event: UIControl.Event) {
self.subscriber = subscriber
self.control = control
control.addTarget(self, action: #selector(self.eventHandler), for: event)
}
func request(_ demand: Subscribers.Demand) {
// We do nothing here as we only want to send events when they occur.
// See, for more info: https://developer.apple.com/documentation/combine/subscribers/demand
}
func cancel() {
self.subscriber = nil
}
@objc private func eventHandler() {
_ = self.subscriber?.receive(self.control)
}
}
/// A custom `Publisher` to work with our custom `UIControlSubscription`.
struct UIControlPublisher: Publisher {
typealias Output = UIControl
typealias Failure = Never
let control: UIControl
let controlEvents: UIControl.Event
init(control: UIControl, events: UIControl.Event) {
self.control = control
self.controlEvents = events
}
func receive<S>(subscriber: S) where S: Subscriber, S.Failure == UIControlPublisher.Failure,
S.Input == UIControlPublisher.Output
{
let subscription = UIControlSubscription(subscriber: subscriber, control: control, event: controlEvents)
subscriber.receive(subscription: subscription)
}
}
/// Extending the `UIControl` types to be able to produce a `UIControl.Event` publisher.
extension UIControl {
func publisher(for events: UIControl.Event) -> UIControlPublisher {
return UIControlPublisher(control: self, events: events)
}
}
final class UIBarButtonItemSubscription<SubscriberType: Subscriber>: Subscription
where SubscriberType.Input == UIBarButtonItem
{
private var subscriber: SubscriberType?
private let control: UIBarButtonItem
init(subscriber: SubscriberType, control: UIBarButtonItem) {
self.subscriber = subscriber
self.control = control
control.target = self
control.action = #selector(self.eventHandler)
}
func request(_ demand: Subscribers.Demand) {
// We do nothing here as we only want to send events when they occur.
// See, for more info: https://developer.apple.com/documentation/combine/subscribers/demand
}
func cancel() {
self.subscriber = nil
}
@objc private func eventHandler() {
_ = self.subscriber?.receive(self.control)
}
}
struct UIBarButtonItemPublisher: Publisher {
typealias Output = UIBarButtonItem
typealias Failure = Never
let control: UIBarButtonItem
init(control: UIBarButtonItem) {
self.control = control
}
func receive<S>(subscriber: S) where S: Subscriber, S.Failure == UIBarButtonItemPublisher.Failure,
S.Input == UIBarButtonItemPublisher.Output
{
let subscription = UIBarButtonItemSubscription(subscriber: subscriber, control: control)
subscriber.receive(subscription: subscription)
}
}
extension UIBarButtonItem {
func publisher() -> UIBarButtonItemPublisher {
return UIBarButtonItemPublisher(control: self)
}
}
final class UIGestureRecognizerSubscription<SubscriberType: Subscriber, Recognizer: UIGestureRecognizer>: Subscription
where SubscriberType.Input == Recognizer
{
private var subscriber: SubscriberType?
private let control: Recognizer
init(subscriber: SubscriberType, control: Recognizer) {
self.subscriber = subscriber
self.control = control
control.addTarget(self, action: #selector(self.eventHandler))
}
func request(_ demand: Subscribers.Demand) {
// We do nothing here as we only want to send events when they occur.
// See, for more info: https://developer.apple.com/documentation/combine/subscribers/demand
}
func cancel() {
self.subscriber = nil
}
@objc private func eventHandler() {
_ = self.subscriber?.receive(self.control)
}
}
struct UIGestureRecognizerPublisher<Recognizer: UIGestureRecognizer>: Publisher {
typealias Output = Recognizer
typealias Failure = Never
let control: Recognizer
init(control: Recognizer) {
self.control = control
}
func receive<S>(subscriber: S) where S: Subscriber, S.Failure == UIGestureRecognizerPublisher.Failure,
S.Input == UIGestureRecognizerPublisher.Output
{
let subscription = UIGestureRecognizerSubscription(subscriber: subscriber, control: control)
subscriber.receive(subscription: subscription)
}
}
extension UIGestureRecognizer: CombineCompatible {}
extension CombineCompatible where Self: UIGestureRecognizer {
func publisher() -> UIGestureRecognizerPublisher<Self> {
return UIGestureRecognizerPublisher(control: self)
}
}
| 29.676471 | 118 | 0.74668 |
816a409cf9cd20601c66ed6aac4121bdc072a2cc | 2,729 | sql | SQL | geolocated_events.sql | mirkolai/show-geolocated-events | 310ce105fb7ea878fb5fa2e49da1321a2f71cf86 | [
"Apache-2.0"
] | null | null | null | geolocated_events.sql | mirkolai/show-geolocated-events | 310ce105fb7ea878fb5fa2e49da1321a2f71cf86 | [
"Apache-2.0"
] | null | null | null | geolocated_events.sql | mirkolai/show-geolocated-events | 310ce105fb7ea878fb5fa2e49da1321a2f71cf86 | [
"Apache-2.0"
] | null | null | null | SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `geolocated_events`
--
-- --------------------------------------------------------
--
-- Struttura della tabella `events`
--
CREATE TABLE IF NOT EXISTS `events` (
`lat` double NOT NULL,
`lon` double NOT NULL,
`date` datetime NOT NULL,
`count` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`lat`,`lon`,`date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dump dei dati per la tabella `events`
--
INSERT INTO `events` (`lat`, `lon`, `date`, `count`) VALUES
(45.05, 7.68, '2015-07-30 02:00:00', 30),
(45.06, 7.71, '2015-07-30 10:00:00', 60),
(45.07, 7.69, '2015-07-30 21:00:00', 70),
(45.08, 7.69, '2015-07-30 15:00:00', 20),
(45.06, 7.69, '2015-07-30 11:00:00', 30),
(45.11, 7.7, '2015-07-30 07:00:00', 14),
(45.07, 7.68, '2015-07-30 12:00:00', 40),
(45.07, 7.65, '2015-07-30 04:00:00', 40),
(45.1, 7.7, '2015-07-30 08:00:00', 50),
(45.09, 7.63, '2015-07-30 03:00:00', 30),
(45.11, 7.65, '2015-07-29 15:00:00', 40),
(45.06, 7.7, '2015-07-29 02:00:00', 20),
(45.04, 7.63, '2015-07-29 00:00:00', 10),
(45.07, 7.68, '2015-07-29 09:00:00', 40),
(45.07, 7.67, '2015-07-29 01:00:00', 20),
(45.07, 7.69, '2015-07-29 10:00:00', 50),
(45.06, 7.68, '2015-07-29 07:00:00', 30),
(45.08, 7.68, '2015-07-29 04:00:00', 10),
(45.07, 7.7, '2015-07-29 05:00:00', 20),
(45.07, 7.66, '2015-07-29 11:00:00', 30),
(45.03, 7.61, '2015-07-29 12:00:00', 60),
(45.06, 7.66, '2015-07-29 13:00:00', 16),
(45.1, 7.7, '2015-07-29 12:00:00', 10),
(45.05, 7.68, '2015-07-29 14:00:00', 60),
(45.07, 7.65, '2015-07-29 16:00:00', 30),
(45.05, 7.69, '2015-07-29 08:00:00', 10),
(45.06, 7.65, '2015-07-29 03:00:00', 10),
(45.08, 7.69, '2015-07-29 20:00:00', 10),
(45.09, 7.66, '2015-07-30 17:00:00', 30),
(45.06, 7.68, '2015-07-30 14:00:00', 70),
(45.07, 7.66, '2015-07-30 13:00:00', 30),
(45.06, 7.66, '2015-07-30 20:00:00', 10),
(45.07, 7.7, '2015-07-29 18:00:00', 20),
(45.06, 7.62, '2015-07-29 19:00:00', 20),
(45.06, 7.7, '2015-07-29 23:00:00', 30),
(45.07, 7.67, '2015-07-29 22:00:00', 10),
(45.07, 7.63, '2015-07-29 17:00:00', 40),
(45.06, 7.72, '2015-07-30 16:00:00', 20),
(45.08, 7.68, '2015-07-30 01:00:00', 20),
(45.05, 7.69, '2015-07-30 18:00:00', 10),
(45.07, 7.64, '2015-07-30 22:00:00', 50),
(45.06, 7.65, '2015-07-30 00:00:00', 20);
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
| 34.544304 | 67 | 0.58996 |
f5e17b07ea0a5faaea50b5e9018be5f9c2e28ddb | 22,888 | asm | Assembly | avx2/zuc_avx2.asm | kevintraynor/intel-ipsec-mb | 5d5dc8686a2d748453115efc236e7cf56f1ba3fc | [
"BSD-3-Clause"
] | null | null | null | avx2/zuc_avx2.asm | kevintraynor/intel-ipsec-mb | 5d5dc8686a2d748453115efc236e7cf56f1ba3fc | [
"BSD-3-Clause"
] | null | null | null | avx2/zuc_avx2.asm | kevintraynor/intel-ipsec-mb | 5d5dc8686a2d748453115efc236e7cf56f1ba3fc | [
"BSD-3-Clause"
] | null | null | null | ;;
;; Copyright (c) 2020, Intel Corporation
;;
;; Redistribution and use in source and binary forms, with or without
;; modification, are permitted provided that the following conditions are met:
;;
;; * Redistributions of source code must retain the above copyright notice,
;; this list of conditions and the following disclaimer.
;; * Redistributions in binary form must reproduce the above copyright
;; notice, this list of conditions and the following disclaimer in the
;; documentation and/or other materials provided with the distribution.
;; * Neither the name of Intel Corporation nor the names of its contributors
;; may be used to endorse or promote products derived from this software
;; without specific prior written permission.
;;
;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
;; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
;; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
;; DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
;; FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
;; SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
;; CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
;; OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
;; OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
;;
%include "include/os.asm"
%include "include/reg_sizes.asm"
%include "include/zuc_sbox.inc"
section .data
default rel
align 32
EK_d:
dw 0x44D7, 0x26BC, 0x626B, 0x135E, 0x5789, 0x35E2, 0x7135, 0x09AF,
dw 0x4D78, 0x2F13, 0x6BC4, 0x1AF1, 0x5E26, 0x3C4D, 0x789A, 0x47AC
align 32
mask31:
dd 0x7FFFFFFF, 0x7FFFFFFF, 0x7FFFFFFF, 0x7FFFFFFF,
dd 0x7FFFFFFF, 0x7FFFFFFF, 0x7FFFFFFF, 0x7FFFFFFF,
align 32
swap_mask:
db 0x03, 0x02, 0x01, 0x00, 0x07, 0x06, 0x05, 0x04
db 0x0b, 0x0a, 0x09, 0x08, 0x0f, 0x0e, 0x0d, 0x0c
db 0x03, 0x02, 0x01, 0x00, 0x07, 0x06, 0x05, 0x04
db 0x0b, 0x0a, 0x09, 0x08, 0x0f, 0x0e, 0x0d, 0x0c
align 32
S1_S0_shuf:
db 0x00, 0x02, 0x04, 0x06, 0x08, 0x0A, 0x0C, 0x0E, 0x01, 0x03, 0x05, 0x07, 0x09, 0x0B, 0x0D, 0x0F
db 0x00, 0x02, 0x04, 0x06, 0x08, 0x0A, 0x0C, 0x0E, 0x01, 0x03, 0x05, 0x07, 0x09, 0x0B, 0x0D, 0x0F
align 32
S0_S1_shuf:
db 0x01, 0x03, 0x05, 0x07, 0x09, 0x0B, 0x0D, 0x0F, 0x00, 0x02, 0x04, 0x06, 0x08, 0x0A, 0x0C, 0x0E,
db 0x01, 0x03, 0x05, 0x07, 0x09, 0x0B, 0x0D, 0x0F, 0x00, 0x02, 0x04, 0x06, 0x08, 0x0A, 0x0C, 0x0E,
align 32
rev_S1_S0_shuf:
db 0x00, 0x08, 0x01, 0x09, 0x02, 0x0A, 0x03, 0x0B, 0x04, 0x0C, 0x05, 0x0D, 0x06, 0x0E, 0x07, 0x0F
db 0x00, 0x08, 0x01, 0x09, 0x02, 0x0A, 0x03, 0x0B, 0x04, 0x0C, 0x05, 0x0D, 0x06, 0x0E, 0x07, 0x0F
align 32
rev_S0_S1_shuf:
db 0x08, 0x00, 0x09, 0x01, 0x0A, 0x02, 0x0B, 0x03, 0x0C, 0x04, 0x0D, 0x05, 0x0E, 0x06, 0x0F, 0x07
db 0x08, 0x00, 0x09, 0x01, 0x0A, 0x02, 0x0B, 0x03, 0x0C, 0x04, 0x0D, 0x05, 0x0E, 0x06, 0x0F, 0x07
section .text
align 64
%define MASK31 ymm12
%define OFS_R1 (16*(4*8))
%define OFS_R2 (OFS_R1 + (4*8))
%define OFS_X0 (OFS_R2 + (4*8))
%define OFS_X1 (OFS_X0 + (4*8))
%define OFS_X2 (OFS_X1 + (4*8))
%define OFS_X3 (OFS_X2 + (4*8))
%ifidn __OUTPUT_FORMAT__, win64
%define XMM_STORAGE 16*10
%define GP_STORAGE 8*8
%else
%define XMM_STORAGE 0
%define GP_STORAGE 6*8
%endif
%define VARIABLE_OFFSET XMM_STORAGE + GP_STORAGE
%define GP_OFFSET XMM_STORAGE
%macro FUNC_SAVE 0
mov r11, rsp
sub rsp, VARIABLE_OFFSET
and rsp, ~15
%ifidn __OUTPUT_FORMAT__, win64
; xmm6:xmm15 need to be maintained for Windows
vmovdqa [rsp + 0*16], xmm6
vmovdqa [rsp + 1*16], xmm7
vmovdqa [rsp + 2*16], xmm8
vmovdqa [rsp + 3*16], xmm9
vmovdqa [rsp + 4*16], xmm10
vmovdqa [rsp + 5*16], xmm11
vmovdqa [rsp + 6*16], xmm12
vmovdqa [rsp + 7*16], xmm13
vmovdqa [rsp + 8*16], xmm14
vmovdqa [rsp + 9*16], xmm15
mov [rsp + GP_OFFSET + 48], rdi
mov [rsp + GP_OFFSET + 56], rsi
%endif
mov [rsp + GP_OFFSET], r12
mov [rsp + GP_OFFSET + 8], r13
mov [rsp + GP_OFFSET + 16], r14
mov [rsp + GP_OFFSET + 24], r15
mov [rsp + GP_OFFSET + 32], rbx
mov [rsp + GP_OFFSET + 40], r11 ;; rsp pointer
%endmacro
%macro FUNC_RESTORE 0
%ifidn __OUTPUT_FORMAT__, win64
vmovdqa xmm6, [rsp + 0*16]
vmovdqa xmm7, [rsp + 1*16]
vmovdqa xmm8, [rsp + 2*16]
vmovdqa xmm9, [rsp + 3*16]
vmovdqa xmm10, [rsp + 4*16]
vmovdqa xmm11, [rsp + 5*16]
vmovdqa xmm12, [rsp + 6*16]
vmovdqa xmm13, [rsp + 7*16]
vmovdqa xmm14, [rsp + 8*16]
vmovdqa xmm15, [rsp + 9*16]
mov rdi, [rsp + GP_OFFSET + 48]
mov rsi, [rsp + GP_OFFSET + 56]
%endif
mov r12, [rsp + GP_OFFSET]
mov r13, [rsp + GP_OFFSET + 8]
mov r14, [rsp + GP_OFFSET + 16]
mov r15, [rsp + GP_OFFSET + 24]
mov rbx, [rsp + GP_OFFSET + 32]
mov rsp, [rsp + GP_OFFSET + 40]
%endmacro
;;
;; make_u31()
;;
%macro make_u31 4
%define %%Rt %1
%define %%Ke %2
%define %%Ek %3
%define %%Iv %4
xor %%Rt, %%Rt
shrd %%Rt, %%Iv, 8
shrd %%Rt, %%Ek, 15
shrd %%Rt, %%Ke, 9
%endmacro
;
; bits_reorg8()
;
; params
; %1 - round number
; rax - LFSR pointer
; uses
;
; return
;
%macro bits_reorg8 1
;
; ymm15 = LFSR_S15
; ymm14 = LFSR_S14
; ymm11 = LFSR_S11
; ymm9 = LFSR_S9
; ymm7 = LFSR_S7
; ymm5 = LFSR_S5
; ymm2 = LFSR_S2
; ymm0 = LFSR_S0
;
vmovdqa ymm15, [rax + ((15 + %1) % 16)*32]
vmovdqa ymm14, [rax + ((14 + %1) % 16)*32]
vmovdqa ymm11, [rax + ((11 + %1) % 16)*32]
vmovdqa ymm9, [rax + (( 9 + %1) % 16)*32]
vmovdqa ymm7, [rax + (( 7 + %1) % 16)*32]
vmovdqa ymm5, [rax + (( 5 + %1) % 16)*32]
vmovdqa ymm2, [rax + (( 2 + %1) % 16)*32]
vmovdqa ymm0, [rax + (( 0 + %1) % 16)*32]
vpxor ymm1, ymm1
vpslld ymm15, 1
vpblendw ymm3, ymm14, ymm1, 0xAA
vpblendw ymm15, ymm3, ymm15, 0xAA
vmovdqa [rax + OFS_X0], ymm15 ; BRC_X0
vpslld ymm11, 16
vpsrld ymm9, 15
vpor ymm11, ymm9
vmovdqa [rax + OFS_X1], ymm11 ; BRC_X1
vpslld ymm7, 16
vpsrld ymm5, 15
vpor ymm7, ymm5
vmovdqa [rax + OFS_X2], ymm7 ; BRC_X2
vpslld ymm2, 16
vpsrld ymm0, 15
vpor ymm2, ymm0
vmovdqa [rax + OFS_X3], ymm2 ; BRC_X3
%endmacro
;
; rot_mod32()
;
; uses ymm7
;
%macro rot_mod32 3
vpslld %1, %2, %3
vpsrld ymm7, %2, (32 - %3)
vpor %1, ymm7
%endmacro
;
; nonlin_fun8()
;
; params
; %1 == 1, then calculate W
; uses
;
; return
; ymm0 = W value, updates F_R1[] / F_R2[]
;
%macro nonlin_fun8 1
%if (%1 == 1)
vmovdqa ymm0, [rax + OFS_X0]
vpxor ymm0, [rax + OFS_R1]
vpaddd ymm0, [rax + OFS_R2] ; W = (BRC_X0 ^ F_R1) + F_R2
%endif
vmovdqa ymm1, [rax + OFS_R1]
vmovdqa ymm2, [rax + OFS_R2]
vpaddd ymm1, [rax + OFS_X1] ; W1 = F_R1 + BRC_X1
vpxor ymm2, [rax + OFS_X2] ; W2 = F_R2 ^ BRC_X2
vpslld ymm3, ymm1, 16
vpsrld ymm4, ymm1, 16
vpslld ymm5, ymm2, 16
vpsrld ymm6, ymm2, 16
vpor ymm1, ymm3, ymm6
vpor ymm2, ymm4, ymm5
rot_mod32 ymm3, ymm1, 2
rot_mod32 ymm4, ymm1, 10
rot_mod32 ymm5, ymm1, 18
rot_mod32 ymm6, ymm1, 24
vpxor ymm1, ymm3
vpxor ymm1, ymm4
vpxor ymm1, ymm5
vpxor ymm1, ymm6 ; XMM1 = U = L1(P)
rot_mod32 ymm3, ymm2, 8
rot_mod32 ymm4, ymm2, 14
rot_mod32 ymm5, ymm2, 22
rot_mod32 ymm6, ymm2, 30
vpxor ymm2, ymm3
vpxor ymm2, ymm4
vpxor ymm2, ymm5
vpxor ymm2, ymm6 ; XMM2 = V = L2(Q)
; Shuffle U and V to have all S0 lookups in XMM1 and all S1 lookups in XMM2
; Compress all S0 and S1 input values in each register
vpshufb ymm1, [rel S0_S1_shuf] ; S0: Bytes 0-7,16-23 S1: Bytes 8-15,24-31
vpshufb ymm2, [rel S1_S0_shuf] ; S1: Bytes 0-7,16-23 S0: Bytes 8-15,24-31
vshufpd ymm3, ymm1, ymm2, 0xA ; All S0 input values
vshufpd ymm4, ymm2, ymm1, 0xA ; All S1 input values
; Compute S0 and S1 values
S0_comput_AVX2 ymm3, ymm1, ymm2
S1_comput_AVX2 ymm4, ymm1, ymm2, ymm5
; Need to shuffle back ymm1 & ymm2 before storing output
; (revert what was done before S0 and S1 computations)
vshufpd ymm1, ymm3, ymm4, 0xA
vshufpd ymm2, ymm4, ymm3, 0xA
vpshufb ymm1, [rel rev_S0_S1_shuf]
vpshufb ymm2, [rel rev_S1_S0_shuf]
vmovdqa [rax + OFS_R1], ymm1
vmovdqa [rax + OFS_R2], ymm2
%endmacro
;
; store_kstr8()
;
; params
;
; uses
; ymm0 as input
; return
;
%macro store_kstr8 0
vpxor ymm0, [rax + OFS_X3]
mov rcx, [rsp]
mov rdx, [rsp + 8]
mov r8, [rsp + 16]
mov r9, [rsp + 24]
vpextrd r15d, xmm0, 3
vpextrd r14d, xmm0, 2
vpextrd r13d, xmm0, 1
vpextrd r12d, xmm0, 0
mov [r9], r15d
mov [r8], r14d
mov [rdx], r13d
mov [rcx], r12d
add rcx, 4
add rdx, 4
add r8, 4
add r9, 4
mov [rsp], rcx
mov [rsp + 8], rdx
mov [rsp + 16], r8
mov [rsp + 24], r9
vextracti128 xmm0, ymm0, 1
mov rcx, [rsp + 32]
mov rdx, [rsp + 40]
mov r8, [rsp + 48]
mov r9, [rsp + 56]
vpextrd r15d, xmm0, 3
vpextrd r14d, xmm0, 2
vpextrd r13d, xmm0, 1
vpextrd r12d, xmm0, 0
mov [r9], r15d
mov [r8], r14d
mov [rdx], r13d
mov [rcx], r12d
add rcx, 4
add rdx, 4
add r8, 4
add r9, 4
mov [rsp + 32], rcx
mov [rsp + 40], rdx
mov [rsp + 48], r8
mov [rsp + 56], r9
%endmacro
;
; add_mod31()
; add two 32-bit args and reduce mod (2^31-1)
; params
; %1 - arg1/res
; %2 - arg2
; uses
; ymm2
; return
; %1
%macro add_mod31 2
vpaddd %1, %2
vpsrld ymm2, %1, 31
vpand %1, MASK31
vpaddd %1, ymm2
%endmacro
;
; rot_mod31()
; rotate (mult by pow of 2) 32-bit arg and reduce mod (2^31-1)
; params
; %1 - arg
; %2 - # of bits
; uses
; ymm2
; return
; %1
%macro rot_mod31 2
vpslld ymm2, %1, %2
vpsrld %1, %1, (31 - %2)
vpor %1, ymm2
vpand %1, MASK31
%endmacro
;
; lfsr_updt8()
;
; params
; %1 - round number
; uses
; ymm0 as input (ZERO or W)
; return
;
%macro lfsr_updt8 1
;
; ymm1 = LFSR_S0
; ymm4 = LFSR_S4
; ymm10 = LFSR_S10
; ymm13 = LFSR_S13
; ymm15 = LFSR_S15
;
vpxor ymm3, ymm3
vmovdqa ymm1, [rax + (( 0 + %1) % 16)*32]
vmovdqa ymm4, [rax + (( 4 + %1) % 16)*32]
vmovdqa ymm10, [rax + ((10 + %1) % 16)*32]
vmovdqa ymm13, [rax + ((13 + %1) % 16)*32]
vmovdqa ymm15, [rax + ((15 + %1) % 16)*32]
; Calculate LFSR feedback
add_mod31 ymm0, ymm1
rot_mod31 ymm1, 8
add_mod31 ymm0, ymm1
rot_mod31 ymm4, 20
add_mod31 ymm0, ymm4
rot_mod31 ymm10, 21
add_mod31 ymm0, ymm10
rot_mod31 ymm13, 17
add_mod31 ymm0, ymm13
rot_mod31 ymm15, 15
add_mod31 ymm0, ymm15
vmovdqa [rax + (( 0 + %1) % 16)*32], ymm0
; LFSR_S16 = (LFSR_S15++) = eax
%endmacro
;
; key_expand_8()
;
%macro key_expand_8 2
movzx r8d, byte [rdi + (%1 + 0)]
movzx r9d, word [rbx + ((%1 + 0)*2)]
movzx r10d, byte [rsi + (%1 + 0)]
make_u31 r11d, r8d, r9d, r10d
mov [rax + (((%1 + 0)*32)+(%2*4))], r11d
movzx r12d, byte [rdi + (%1 + 1)]
movzx r13d, word [rbx + ((%1 + 1)*2)]
movzx r14d, byte [rsi + (%1 + 1)]
make_u31 r15d, r12d, r13d, r14d
mov [rax + (((%1 + 1)*32)+(%2*4))], r15d
%endmacro
MKGLOBAL(asm_ZucInitialization_8_avx2,function,internal)
asm_ZucInitialization_8_avx2:
%ifdef LINUX
%define pKe rdi
%define pIv rsi
%define pState rdx
%else
%define pKe rcx
%define pIv rdx
%define pState r8
%endif
FUNC_SAVE
lea rax, [pState] ; load pointer to LFSR
push pState ; Save LFSR Pointer to stack
; setup the key pointer for first buffer key expand
mov rbx, [pKe] ; load the pointer to the array of keys into rbx
push pKe ; save rdi (key pointer) to the stack
lea rdi, [rbx] ; load the pointer to the first key into rdi
; setup the IV pointer for first buffer key expand
mov rcx, [pIv] ; load the pointer to the array of IV's
push pIv ; save the IV pointer to the stack
lea rsi, [rcx] ; load the first IV pointer
lea rbx, [EK_d] ; load D variables
; Expand key packet 1
key_expand_8 0, 0
key_expand_8 2, 0
key_expand_8 4, 0
key_expand_8 6, 0
key_expand_8 8, 0
key_expand_8 10, 0
key_expand_8 12, 0
key_expand_8 14, 0
;; Expand keys for packets 2-7
%assign idx 1
%rep 6
pop rdx ; get IV array pointer from Stack
mov rcx, [rdx+8*idx] ; load offset to next IV in array
lea rsi, [rcx] ; load pointer to next IV
pop rbx ; get Key array pointer from Stack
mov rcx, [rbx+8*idx] ; load offset to next key in array
lea rdi, [rcx] ; load pointer to next Key
push rbx ; save Key pointer
push rdx ; save IV pointer
lea rbx, [EK_d]
; Expand key packet N
key_expand_8 0, idx
key_expand_8 2, idx
key_expand_8 4, idx
key_expand_8 6, idx
key_expand_8 8, idx
key_expand_8 10, idx
key_expand_8 12, idx
key_expand_8 14, idx
%assign idx (idx + 1)
%endrep
; Expand eighth packet key
pop rdx ; get IV array pointer from Stack
mov rcx, [rdx+56] ; load offset to IV 8 in array
lea rsi, [rcx] ; load pointer to IV 8
pop rbx ; get Key array pointer from Stack
mov rcx, [rbx+56] ; load offset to key 8 in array
lea rdi, [rcx] ; load pointer to Key 8
lea rbx, [EK_d]
; Expand key packet 8
key_expand_8 0, 7
key_expand_8 2, 7
key_expand_8 4, 7
key_expand_8 6, 7
key_expand_8 8, 7
key_expand_8 10, 7
key_expand_8 12, 7
key_expand_8 14, 7
; Load read-only registers
vmovdqa ymm12, [rel mask31]
; Shift LFSR 32-times, update state variables
%assign N 0
%rep 32
pop rdx
lea rax, [rdx]
push rdx
bits_reorg8 N
nonlin_fun8 1
vpsrld ymm0,1 ; Shift out LSB of W
pop rdx
lea rax, [rdx]
push rdx
lfsr_updt8 N ; W (ymm0) used in LFSR update - not set to zero
%assign N N+1
%endrep
; And once more, initial round from keygen phase = 33 times
pop rdx
lea rax, [rdx]
push rdx
bits_reorg8 0
nonlin_fun8 0
pop rdx
lea rax, [rdx]
vpxor ymm0, ymm0
lfsr_updt8 0
FUNC_RESTORE
ret
;
; Generate N*4 bytes of keystream
; for 8 buffers (where N is number of rounds)
;
%macro KEYGEN_8_AVX2 1
%define %%NUM_ROUNDS %1 ; [in] Number of 4-byte rounds
%ifdef LINUX
%define pState rdi
%define pKS rsi
%else
%define pState rcx
%define pKS rdx
%endif
FUNC_SAVE
; Store 8 keystream pointers on the stack
sub rsp, 8*8
mov r12, [pKS]
mov r13, [pKS + 8]
mov r14, [pKS + 16]
mov r15, [pKS + 24]
mov [rsp], r12
mov [rsp + 8], r13
mov [rsp + 16], r14
mov [rsp + 24], r15
mov r12, [pKS + 32]
mov r13, [pKS + 40]
mov r14, [pKS + 48]
mov r15, [pKS + 56]
mov [rsp + 32], r12
mov [rsp + 40], r13
mov [rsp + 48], r14
mov [rsp + 56], r15
; Load state pointer in RAX
mov rax, pState
; Load read-only registers
vmovdqa ymm12, [rel mask31]
; Generate 64B of keystream in 16 rounds
%assign N 1
%rep %%NUM_ROUNDS
bits_reorg8 N
nonlin_fun8 1
store_kstr8
vpxor ymm0, ymm0
lfsr_updt8 N
%assign N N+1
%endrep
;; Restore rsp pointer to value before pushing keystreams
add rsp, 8*8
FUNC_RESTORE
%endmacro
;;
;; void asm_ZucGenKeystream64B_8_avx2(state8_t *pSta, u32* pKeyStr[8])
;;
;; WIN64
;; RCX - pSta
;; RDX - pKeyStr
;;
;; LIN64
;; RDI - pSta
;; RSI - pKeyStr
;;
MKGLOBAL(asm_ZucGenKeystream64B_8_avx2,function,internal)
asm_ZucGenKeystream64B_8_avx2:
KEYGEN_8_AVX2 16
ret
;;
;; void asm_ZucGenKeystream8B_8_avx2(state8_t *pSta, u32* pKeyStr[8])
;;
;; WIN64
;; RCX - pSta
;; RDX - pKeyStr
;;
;; LIN64
;; RDI - pSta
;; RSI - pKeyStr
;;
MKGLOBAL(asm_ZucGenKeystream8B_8_avx2,function,internal)
asm_ZucGenKeystream8B_8_avx2:
KEYGEN_8_AVX2 2
ret
;;
;; void asm_ZucCipher64B_8_avx2(state4_t *pSta, u32 *pKeyStr[8], u64 *pIn[8],
;; u64 *pOut[8], u64 bufOff);
;;
;; WIN64
;; RCX - pSta
;; RDX - pKeyStr
;; R8 - pIn
;; R9 - pOut
;; rsp+40 - bufOff
;;
;; LIN64
;; RDI - pSta
;; RSI - pKeyStr
;; RDX - pIn
;; RCX - pOut
;; R8 - bufOff
;;
MKGLOBAL(asm_ZucCipher64B_8_avx2,function,internal)
asm_ZucCipher64B_8_avx2:
%ifdef LINUX
%define pState rdi
%define pKS rsi
%define pIn rdx
%define pOut rcx
%define bufOff r8
%else
%define pState rcx
%define pKS rdx
%define pIn r8
%define pOut r9
%define bufOff r10
%endif
;; Store parameter from stack in register
%ifndef LINUX
mov bufOff, [rsp + 40]
%endif
FUNC_SAVE
; Store 8 keystream pointers and input registers in the stack
sub rsp, 12*8
mov r12, [pKS]
mov r13, [pKS + 8]
mov r14, [pKS + 16]
mov r15, [pKS + 24]
mov [rsp], r12
mov [rsp + 8], r13
mov [rsp + 16], r14
mov [rsp + 24], r15
mov r12, [pKS + 32]
mov r13, [pKS + 40]
mov r14, [pKS + 48]
mov r15, [pKS + 56]
mov [rsp + 32], r12
mov [rsp + 40], r13
mov [rsp + 48], r14
mov [rsp + 56], r15
mov [rsp + 64], pKS
mov [rsp + 72], pIn
mov [rsp + 80], pOut
mov [rsp + 88], bufOff
; Load state pointer in RAX
mov rax, pState
; Load read-only registers
vmovdqa ymm12, [rel mask31]
; Generate 64B of keystream in 16 rounds
%assign N 1
%rep 16
bits_reorg8 N
nonlin_fun8 1
store_kstr8
vpxor ymm0, ymm0
lfsr_updt8 N
%assign N N+1
%endrep
;; Restore input parameters
mov pKS, [rsp + 64]
mov pIn, [rsp + 72]
mov pOut, [rsp + 80]
mov bufOff, [rsp + 88]
;; Restore rsp pointer to value before pushing keystreams
;; and input parameters
add rsp, 12*8
%assign off 0
%rep 2
;; XOR Input buffer with keystream in rounds of 32B
;; Read all 8 streams
mov r12, [pIn]
mov r13, [pIn + 8]
mov r14, [pIn + 16]
mov r15, [pIn + 24]
vmovdqu ymm0, [r12 + bufOff + off]
vmovdqu ymm1, [r13 + bufOff + off]
vmovdqu ymm2, [r14 + bufOff + off]
vmovdqu ymm3, [r15 + bufOff + off]
mov r12, [pIn + 32]
mov r13, [pIn + 40]
mov r14, [pIn + 48]
mov r15, [pIn + 56]
vmovdqu ymm4, [r12 + bufOff + off]
vmovdqu ymm5, [r13 + bufOff + off]
vmovdqu ymm6, [r14 + bufOff + off]
vmovdqu ymm7, [r15 + bufOff + off]
;; Read all 8 keystreams
mov r12, [pKS]
mov r13, [pKS + 8]
mov r14, [pKS + 16]
mov r15, [pKS + 24]
vmovdqa ymm8, [r12 + off]
vmovdqa ymm9, [r13 + off]
vmovdqa ymm10, [r14 + off]
vmovdqa ymm11, [r15 + off]
mov r12, [pKS + 32]
mov r13, [pKS + 40]
mov r14, [pKS + 48]
mov r15, [pKS + 56]
vmovdqa ymm12, [r12 + off]
vmovdqa ymm13, [r13 + off]
vmovdqa ymm14, [r14 + off]
vmovdqa ymm15, [r15 + off]
vpshufb ymm8, [rel swap_mask]
vpshufb ymm9, [rel swap_mask]
vpshufb ymm10, [rel swap_mask]
vpshufb ymm11, [rel swap_mask]
vpshufb ymm12, [rel swap_mask]
vpshufb ymm13, [rel swap_mask]
vpshufb ymm14, [rel swap_mask]
vpshufb ymm15, [rel swap_mask]
;; XOR Input with Keystream and write output for all 8 buffers
vpxor ymm8, ymm0
vpxor ymm9, ymm1
vpxor ymm10, ymm2
vpxor ymm11, ymm3
vpxor ymm12, ymm4
vpxor ymm13, ymm5
vpxor ymm14, ymm6
vpxor ymm15, ymm7
mov r12, [pOut]
mov r13, [pOut + 8]
mov r14, [pOut + 16]
mov r15, [pOut + 24]
vmovdqu [r12 + bufOff + off], ymm8
vmovdqu [r13 + bufOff + off], ymm9
vmovdqu [r14 + bufOff + off], ymm10
vmovdqu [r15 + bufOff + off], ymm11
mov r12, [pOut + 32]
mov r13, [pOut + 40]
mov r14, [pOut + 48]
mov r15, [pOut + 56]
vmovdqu [r12 + bufOff + off], ymm12
vmovdqu [r13 + bufOff + off], ymm13
vmovdqu [r14 + bufOff + off], ymm14
vmovdqu [r15 + bufOff + off], ymm15
%assign off (off + 32)
%endrep
FUNC_RESTORE
ret
;----------------------------------------------------------------------------------------
;----------------------------------------------------------------------------------------
%ifdef LINUX
section .note.GNU-stack noalloc noexec nowrite progbits
%endif
| 26.187643 | 103 | 0.53989 |
4122f4c136258215c7f900a0fcaa45d5d6492759 | 391 | h | C | include/fast_io_i18n/lc_numbers/boolalpha.h | clayne/fast_io | 1d7e12ea551d87e187a5a8881d9227ba3ea3b8a0 | [
"MIT"
] | 157 | 2021-07-12T07:19:15.000Z | 2022-02-16T02:22:45.000Z | include/fast_io_i18n/lc_numbers/boolalpha.h | clayne/fast_io | 1d7e12ea551d87e187a5a8881d9227ba3ea3b8a0 | [
"MIT"
] | 7 | 2021-08-02T05:06:23.000Z | 2021-12-26T10:32:18.000Z | include/fast_io_i18n/lc_numbers/boolalpha.h | clayne/fast_io | 1d7e12ea551d87e187a5a8881d9227ba3ea3b8a0 | [
"MIT"
] | 17 | 2022-02-19T20:16:18.000Z | 2022-03-29T20:50:49.000Z | #pragma once
namespace fast_io
{
template<std::integral char_type,manipulators::scalar_flags flags>
requires (flags.alphabet)
inline constexpr basic_io_scatter_t<char_type> print_scatter_define(basic_lc_all<char_type> const* __restrict all,manipulators::scalar_manip_t<flags,bool> val) noexcept
{
if(val.reference)
return all->messages.yesstr;
else
return all->messages.nostr;
}
}
| 23 | 168 | 0.803069 |
55994005309f0b47ac62b371bc75c9b33c08490e | 1,257 | html | HTML | Lesson07/02_testing/front/app/partials/album_view_partial.html | ronnel169/AngularJSLiveLessons | cef58c015affd54f775a5415d81fa4799aa76f1e | [
"Apache-2.0"
] | 57 | 2015-01-08T03:40:56.000Z | 2021-11-12T00:26:09.000Z | Lesson07/02_testing/front/app/partials/album_view_partial.html | leojim/AngularJSLiveLessons | cef58c015affd54f775a5415d81fa4799aa76f1e | [
"Apache-2.0"
] | 2 | 2015-12-21T22:40:42.000Z | 2016-08-01T12:42:32.000Z | Lesson07/02_testing/front/app/partials/album_view_partial.html | leojim/AngularJSLiveLessons | cef58c015affd54f775a5415d81fa4799aa76f1e | [
"Apache-2.0"
] | 60 | 2015-01-15T07:55:19.000Z | 2022-01-20T10:35:59.000Z |
<div style="width: 1000px; margin: 0 auto; padding-top 20px">
<div style="float: right">
<a href="/index.html#/albums"> Back to Albums </a>
</div>
<div class="alert alert-danger" ng-show="page_load_error"> {{ page_load_error }} </div>
<h3> {{ album.title }} ({{ album.name }}) </h3>
<div class="alert alert-danger" ng-show="load_error_text"> {{ load_error_text }}</div>
<div class="panel panel-default" style="width: 990px; background-color: #fafafa">
<div class="panel-body">
{{ album.description }}
</div>
</div>
<div class="photo thumbnail" style="width: 240px; height: 250px; overflow: hidden; background-color: #f8f8f8; float: left; margin-right: 10px" ng-repeat="photo in album.photos">
<div style="width: 230px; height: 180px; overflow: hidden">
<a href="/index.html#/album/{{album_name}}/photo/{{photo.filename}}">
<img ng-src="/media/{{album_name}}/thumb/{{photo.filename}}"/>
</a>
</div>
<p style="padding: 5px 2px">
{{ photo.description }}
</p>
</div>
<div style="clear: left"></div>
<p>
<a href="index.html#/album/{{album_name}}/upload">
<button type="button" class="btn btn-success">Add files to this album</button>
</a>
</p>
</div>
| 29.928571 | 179 | 0.615752 |
9d1d3af05b1201bf8fdb71958a3ac12e6cc54ccc | 1,359 | html | HTML | prescription/prescription_app/templates/prescription_app/edit_profile.html | parthapaulpartha/Online_prescription | e2f66cb843a32af038298e45cd0dcfcac9520bd6 | [
"bzip2-1.0.6"
] | 1 | 2019-12-01T16:58:21.000Z | 2019-12-01T16:58:21.000Z | prescription/prescription_app/templates/prescription_app/edit_profile.html | parthapaulpartha/Online_prescription | e2f66cb843a32af038298e45cd0dcfcac9520bd6 | [
"bzip2-1.0.6"
] | null | null | null | prescription/prescription_app/templates/prescription_app/edit_profile.html | parthapaulpartha/Online_prescription | e2f66cb843a32af038298e45cd0dcfcac9520bd6 | [
"bzip2-1.0.6"
] | null | null | null | {% extends 'base.html' %}}
{% load crispy_forms_tags %}
{% block head %}
{% load staticfiles %}
{% endblock %}
{% block body %}
<div class="container">
<div style="margin-top:20px"></div>
<div class="row">
<div class='col-3'></div>
<div class="col-6">
<div class="card rounded-0">
<div class="card-header">
<h3 class="mb-0">Update profile</h3>
</div>
<div class="card-body">
<form class="site-form" method="post" enctype="multipart/form-data">
{% csrf_token %}
{{ form_u|crispy }}
<button type="submit" class="btn btn-info"> Submit </button><br><br>
</form>
<a href="/prescription/change_password">
<button type="button" class="btn btn-success">Change Password</button>
</a>
</div>
</div>
</div>
</div>
</div><br>
{% endblock %}
| 35.763158 | 110 | 0.348786 |
174198ed34e4e43c4cb923877b0d0eac64703f90 | 7,296 | html | HTML | src/app/modules/report-element/components/report-time-select.component.html | vjcspy/retail-cloud | 1ebdcdc4a45cdac415918cdb945a5f877be5af2f | [
"MIT"
] | 1 | 2017-06-02T03:59:31.000Z | 2017-06-02T03:59:31.000Z | src/app/modules/report-element/components/report-time-select.component.html | vjcspy/retail-cloud | 1ebdcdc4a45cdac415918cdb945a5f877be5af2f | [
"MIT"
] | 3 | 2017-02-28T08:42:59.000Z | 2018-04-20T07:15:34.000Z | src/app/modules/report-element/components/report-time-select.component.html | vjcspy/retail-cloud | 1ebdcdc4a45cdac415918cdb945a5f877be5af2f | [
"MIT"
] | 1 | 2018-01-19T08:27:10.000Z | 2018-01-19T08:27:10.000Z | <!--<div class="date-range-wrap">-->
<i class="icon-date-time"></i>
<input class="form-control txt-date-range" type="text" name="daterange" value="{{convertCurrentDateDisplay(model['current_dateStart'])}} - {{convertCurrentDateDisplay(model['current_dateEnd'])}}"/>
<div class="date-range-content" [hidden]="!modelData['openDateFilter']" #dateTimeElem>
<ul class="nav nav-tabs date-selector-tabs" role="tablist">
<li [ngClass]="{active :modelData['dateTimeState'] =='compare'}"
(click)="current_state = 'compare'">
<a href="#Compare-dates" aria-controls="Compare-Dates" role="tab" data-toggle="tab">
Compare Date
</a>
</li>
<li [ngClass]="{active : modelData['dateTimeState'] == 'ranger'}"
(click)="current_state = 'ranger'" name="daterange">
<a href="#Date-range" aria-controls="Date-range" role="tab" data-toggle="tab">
Date Range
</a>
</li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<div role="tabpanel" class="tab-pane compare-date-panel" id="Compare-dates"
[ngClass]="{'active':modelData['dateTimeState'] =='compare'}">
<form action="">
<ul class="nav nav-tabs " role="tablist">
<li [ngClass]="{active : modelData['compare_value'] == 'year'}">
<a href="#tab-year" aria-controls="tab-year" role="tab" data-toggle="tab">
Year
</a>
</li>
<li [ngClass]="{active : modelData['compare_value'] == 'quarter'}">
<a href="#tab-quarter" aria-controls="tab-quarter" role="tab" data-toggle="tab">
Quarter
</a>
</li>
<li [ngClass]="{active : modelData['compare_value'] == 'month'}">
<a href="#tab-month" aria-controls="tab-month" role="tab" data-toggle="tab">
Month
</a>
</li>
<li [ngClass]="{active : modelData['compare_value'] == 'week'}">
<a href="#tab-week" aria-controls="tab-week" role="tab" data-toggle="tab">
Week
</a>
</li>
<li [ngClass]="{active : modelData['compare_value'] == 'day'}">
<a href="#tab-day" aria-controls="tab-day" role="tab" data-toggle="tab">
Day
</a>
</li>
<li [ngClass]="{active : modelData['compare_value'] == 'hour'}">
<a href="#tab-hour" aria-controls="tab-hour" role="tab" data-toggle="tab">
Hour
</a>
</li>
</ul>
<div class="tab-content">
<div role="tabpanel" class="tab-pane" [ngClass]="{active:modelData['compare_value'] == 'year'}" id="tab-year">
<date-compare-item [value]="'year'" [label]="'Year'" [(model)]="period_data">
</date-compare-item>
</div>
<div role="tabpanel" class="tab-pane" [ngClass]="{active:modelData['compare_value'] == 'quarter'}" id="tab-quarter">
<date-compare-item [value]="'quarter'" [label]="'Quarter'" [(model)]="period_data">
</date-compare-item>
</div>
<div role="tabpanel" class="tab-pane" [ngClass]="{active:modelData['compare_value'] == 'month'}" id="tab-month">
<date-compare-item [value]="'month'" [label]="'Month'" [(model)]="period_data">
</date-compare-item>
</div>
<div role="tabpanel" class="tab-pane" [ngClass]="{active:modelData['compare_value'] == 'week'}" id="tab-week">
<date-compare-item [value]="'week'" [label]="'Week'" [(model)]="period_data">
</date-compare-item>
</div>
<div role="tabpanel" class="tab-pane" [ngClass]="{active:modelData['compare_value'] == 'day'}" id="tab-day">
<date-compare-item [value]="'day'" [label]="'Day'" [(model)]="period_data">
</date-compare-item>
</div>
<div role="tabpanel" class="tab-pane" [ngClass]="{active:modelData['compare_value'] == 'hour'}" id="tab-hour">
<date-compare-item [value]="'hour'" [label]="'Hour'" [(model)]="period_data">
</date-compare-item>
</div>
</div>
<div class="clearfix group-btn line-top">
<div class="pull-left">
<span class="date-value">
<!--1st Jan 2017 - 31st Dec 2020-->
{{convertDisplay(period_data['dateStart'])}} - {{convertDisplay(period_data['dateEnd'])}}
</span>
</div>
<div class="pull-right">
<!--<button class="btn btn-primary" [ngClass]="checkData()" type="button" (click)="getSaleReport()">Apply-->
<button class="btn btn-primary" type="button" (click)="getSaleReport('compare')">Apply
</button>
</div>
</div>
</form>
</div>
<div role="tabpanel" class="tab-pane date-range-panel" style="padding: 0px;" id="Date-range"
[ngClass]="{'active':modelData['dateTimeState'] =='ranger'}">
<!--<form action="">-->
<div id="dateRangerTable">
<input id="dateRangerr" #dateRangerr hidden="true"/>
</div>
<div class="clearfix group-btn line-top">
<div class="pull-left">
<span class="date-value">
<!--1st Jan 2017 - 31st Dec 2020-->
{{convertDisplay(dateTimeRanger['startDate'])}} - {{convertDisplay(dateTimeRanger['endDate'])}}
</span>
</div>
<div class="pull-right">
<!--<button class="btn btn-primary" [ngClass]="checkData()" type="button" (click)="getSaleReport()">Apply-->
<button class="btn btn-primary" type="button" (click)="getSaleReport('ranger')">Apply
</button>
</div>
</div>
<!--</form>-->
</div>
</div>
</div>
<!--</div>-->
| 56.55814 | 201 | 0.42585 |
f76e29c67efab65055199ad51707a5c82220076c | 5,549 | c | C | normalizer.c | TopalSolcan/f3-tur3s | c0194bf8bd7fb006a30b9a8244e6274b435205e3 | [
"Apache-2.0"
] | 1 | 2022-02-01T13:16:17.000Z | 2022-02-01T13:16:17.000Z | normalizer.c | TopalSolcan/f3-tur3s | c0194bf8bd7fb006a30b9a8244e6274b435205e3 | [
"Apache-2.0"
] | null | null | null | normalizer.c | TopalSolcan/f3-tur3s | c0194bf8bd7fb006a30b9a8244e6274b435205e3 | [
"Apache-2.0"
] | null | null | null | #include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <sys/types.h>
#include <dirent.h>
#include <string.h>
#include <errno.h>
#define oklidBoyutu 3
#define LINESIZE 100000
#define OZELLIK_SAYISI 17
typedef struct
{
double ozellik[OZELLIK_SAYISI];
} OZELLIK_MIN;
typedef struct
{
double ozellik[OZELLIK_SAYISI];
} OZELLIK_MAX;
void dosyaErr(FILE *);
void doubleMErr(double **);
void doubleDErr(double *);
int atlamaMik;
int kontrolAdet;
//global olamaz bu buyuk ihtimal
double normalizeYap(double sayi, double min, double max)
{
double nSayi = (sayi-min)/(max-min);
return nSayi;
}
void normalize(double *tmp, OZELLIK_MIN fMin, OZELLIK_MAX fMax, FILE **fWrite)
{
double normalizeDeger;
int i;
for(i = 0; i < OZELLIK_SAYISI; i++)
{
normalizeDeger = normalizeYap(tmp[i],fMin.ozellik[i],fMax.ozellik[i]);
// printf("%lf,",normalizeDeger);
// printf("\n%lf,%lf,%lf,%lf,",tmp[i],fMin.ozellik[i],fMax.ozellik[i],normalizeDeger);
fprintf(*fWrite, "%lf,", normalizeDeger);
}
}
int main()
{
OZELLIK_MIN *fMin;
OZELLIK_MAX *fMax;
int i,j,k,y;
double isaret = 1.0;
double tmpDeger;
double dDonustur;
char test_trainAdi[2][100];
char *tur[] = {"TRAIN.arff","TEST.arff"};
char min_maxYAZ[50];
FILE *fRead1;
FILE *fWrite1;
int degerlerMin_MaxBoyut = 12;
int adimSayisi;
int sayac;
char tmpSatir[LINESIZE];
char label[100];
double tmpDouble[OZELLIK_SAYISI];
fMax = (OZELLIK_MAX *) malloc(degerlerMin_MaxBoyut*sizeof(OZELLIK_MAX));
fMin = (OZELLIK_MIN *) malloc(degerlerMin_MaxBoyut*sizeof(OZELLIK_MIN));
//burda fmin fmax okuması yap. fread ile
printf("Min Max degerlerinin oldugu dosyayi giriniz: ");
scanf("%s",min_maxYAZ);
fRead1 = fopen(min_maxYAZ, "rb");
fread(fMin, degerlerMin_MaxBoyut, sizeof(OZELLIK_MIN), fRead1 );
fread(fMax, degerlerMin_MaxBoyut, sizeof(OZELLIK_MAX), fRead1 );
fclose(fRead1);
printf("Train edilecek dosya adini giriniz: ");
scanf("%s",test_trainAdi[0]);
printf("Test edilecek dosya adini giriniz: ");
scanf("%s",test_trainAdi[1]);
adimSayisi = degerlerMin_MaxBoyut*OZELLIK_SAYISI;
for(k = 0; k < 2; k++)
{
fRead1 = fopen(test_trainAdi[k], "r");
//strcat(test_trainAdi[k],tur[k]);
fWrite1 = fopen(tur[k], "w");
fgets(tmpSatir, LINESIZE, fRead1);
fputs(tmpSatir,fWrite1);
//printf("%s",line);
// fputc('\n',fWrite);
fgets(tmpSatir, LINESIZE, fRead1);
fputs(tmpSatir,fWrite1);
for(i=0; i<adimSayisi; i++)
{
fgets(tmpSatir, LINESIZE, fRead1);
printf("%s",tmpSatir);
fputs(tmpSatir,fWrite1);
}
fgets(tmpSatir, LINESIZE, fRead1);
printf("%s",tmpSatir);
fputs(tmpSatir,fWrite1);
//fputc("\n",fWrite);
fgets(tmpSatir, LINESIZE, fRead1);
fputs(tmpSatir,fWrite1);
fgets(tmpSatir, LINESIZE, fRead1);
fputs(tmpSatir,fWrite1);
while(fgets(tmpSatir,LINESIZE,fRead1))
{
j = 0;
sayac = 0;
//printf("%s\n",tmpSatir);
while(sayac<adimSayisi)
{
if(tmpSatir[j]==',')
{
sayac++;
}
j++;
}
i=0;
while(tmpSatir[j])
{
label[i]=tmpSatir[j];
//printf("%c",tmpSatir[j]);
i++;
j++;
}
label[i]=0;
//printf("\n%s",tmpSatir);
j=0;
for(i=0; i<degerlerMin_MaxBoyut; i++)
{
for(y=0; y<OZELLIK_SAYISI; y++)
{
isaret = 1.0;
tmpDeger = 0.0;
dDonustur = 1.0;
if(tmpSatir[j]== '-')
{
isaret = -1.0;
j++;
}
while(tmpSatir[j] != ',' && tmpSatir[j] != '.')
{
tmpDeger *= 10;
tmpDeger += (tmpSatir[j] - '0');
j++;
}
if(tmpSatir[j] != ',')
j++;
while(tmpSatir[j] != ',')
{
dDonustur *= 10;
tmpDeger = tmpDeger + (tmpSatir[j] - '0')/dDonustur;
j++;
}
// printf("%f,",tmpDeger*isaret);
tmpDouble[y] = tmpDeger*isaret;
j++;
}
normalize(tmpDouble,fMin[i],fMax[i],&fWrite1);
}
fprintf(fWrite1,"%s",label);
// putc('\n',fWrite1);
}
fclose(fWrite1);
fclose(fRead1);
}
//i=1;
free(fMin);
free(fMax);
return 0;
}
/********************************************************/
void dosyaErr(FILE *f)
{
if(!f)
{
printf("Dosya Bulunamadi");
exit(0);
}
}
void doubleMErr(double **d)
{
if(!d)
{
printf("Matris Olusturulamadi");
exit(0);
}
}
void doubleDErr(double *d)
{
if(!d)
{
printf("Alan Olusturulamadi");
exit(0);
}
}
/*******************************************************************/
| 19.747331 | 94 | 0.475401 |
e95a5372d9434b5f6b835d1169fcae94e57d2dc2 | 1,926 | rb | Ruby | lib/loan_creator/timetable.rb | Mziserman/loan-creator | a30324939030e31c9e72245a6b934f4373cf8aba | [
"MIT"
] | null | null | null | lib/loan_creator/timetable.rb | Mziserman/loan-creator | a30324939030e31c9e72245a6b934f4373cf8aba | [
"MIT"
] | null | null | null | lib/loan_creator/timetable.rb | Mziserman/loan-creator | a30324939030e31c9e72245a6b934f4373cf8aba | [
"MIT"
] | null | null | null | # coding: utf-8
module LoanCreator
class Timetable
# Used to calculate next term's date (see ActiveSupport#advance)
PERIODS = {
month: {months: 1},
quarter: {months: 3},
semester: {months: 6},
year: {years: 1}
}
attr_reader :terms, :starts_on, :period, :starting_index #, :interests_start_date
def initialize(starts_on:, period:, interests_start_date: nil, starting_index: 1)
raise ArgumentError.new(:period) unless PERIODS.keys.include?(period)
@terms = []
@starts_on = (starts_on.is_a?(Date) ? starts_on : Date.parse(starts_on))
@period = period
@starting_index = starting_index
if interests_start_date
@interests_start_date = (interests_start_date.is_a?(Date) ? interests_start_date : Date.parse(interests_start_date))
end
end
def <<(term)
raise ArgumentError.new('LoanCreator::Term expected') unless term.is_a?(LoanCreator::Term)
term.index ||= autoincrement_index
term.due_on ||= date_for(term.index)
@terms << term
self
end
def to_csv(header: true)
output = []
output << terms.first.to_h.keys.join(',') if header
terms.each { |t| output << t.to_csv }
output
end
def term(index)
@terms.find { |term| term.index == index }
end
private
def autoincrement_index
@current_index = (@current_index.nil? ? @starting_index : @current_index + 1)
end
def date_for(index)
@_dates ||= Hash.new do |dates, index|
dates[index] =
if index < 1
dates[index + 1].advance(PERIODS.fetch(period).transform_values {|n| -n})
elsif index == 1
starts_on
else
dates[index - 1].advance(PERIODS.fetch(period))
end
end
@_dates[index]
end
def reset_dates
@_dates = nil
end
end
end
| 26.75 | 124 | 0.602804 |
2c68e07db1a060261ae2a570962e79bf764ac082 | 75 | sql | SQL | src/test/resources/sql/select/c0c2b6b0.sql | Shuttl-Tech/antlr_psql | fcf83192300abe723f3fd3709aff5b0c8118ad12 | [
"MIT"
] | 66 | 2018-06-15T11:34:03.000Z | 2022-03-16T09:24:49.000Z | src/test/resources/sql/select/c0c2b6b0.sql | Shuttl-Tech/antlr_psql | fcf83192300abe723f3fd3709aff5b0c8118ad12 | [
"MIT"
] | 13 | 2019-03-19T11:56:28.000Z | 2020-08-05T04:20:50.000Z | src/test/resources/sql/select/c0c2b6b0.sql | Shuttl-Tech/antlr_psql | fcf83192300abe723f3fd3709aff5b0c8118ad12 | [
"MIT"
] | 28 | 2019-01-05T19:59:02.000Z | 2022-03-24T11:55:50.000Z | -- file:numeric.sql ln:664 expect:true
SELECT '-Infinity'::float4::numeric
| 25 | 38 | 0.746667 |
ddcc5ae49b73f239125f6d751ef1c117a5f628eb | 9,024 | go | Go | bfd/server/bfdControl.go | learnopx/opx-flxl3 | 1880e4ec6223bb7fb5d56cf11f7966a2969443e1 | [
"Apache-2.0"
] | null | null | null | bfd/server/bfdControl.go | learnopx/opx-flxl3 | 1880e4ec6223bb7fb5d56cf11f7966a2969443e1 | [
"Apache-2.0"
] | null | null | null | bfd/server/bfdControl.go | learnopx/opx-flxl3 | 1880e4ec6223bb7fb5d56cf11f7966a2969443e1 | [
"Apache-2.0"
] | 1 | 2018-12-17T02:06:36.000Z | 2018-12-17T02:06:36.000Z | //
//Copyright [2016] [SnapRoute Inc]
//
//Licensed under the Apache License, Version 2.0 (the "License");
//you may not use this file except in compliance with the License.
//You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// _______ __ __________ ___ _______.____ __ ____ __ .___________. ______ __ __
// | ____|| | | ____\ \ / / / |\ \ / \ / / | | | | / || | | |
// | |__ | | | |__ \ V / | (----` \ \/ \/ / | | `---| |----`| ,----'| |__| |
// | __| | | | __| > < \ \ \ / | | | | | | | __ |
// | | | `----.| |____ / . \ .----) | \ /\ / | | | | | `----.| | | |
// |__| |_______||_______/__/ \__\ |_______/ \__/ \__/ |__| |__| \______||__| |__|
//
package server
import (
"bytes"
"crypto/md5"
"crypto/sha1"
"encoding/binary"
"errors"
"fmt"
"time"
)
type BfdSessionState int
const (
STATE_ADMIN_DOWN BfdSessionState = 0
STATE_DOWN BfdSessionState = 1
STATE_INIT BfdSessionState = 2
STATE_UP BfdSessionState = 3
)
func (server *BFDServer) ConvertBfdSessionStateValToStr(state BfdSessionState) string {
var stateStr string
switch state {
case STATE_ADMIN_DOWN:
stateStr = "admin_down"
case STATE_DOWN:
stateStr = "down"
case STATE_INIT:
stateStr = "init"
case STATE_UP:
stateStr = "up"
}
return stateStr
}
type BfdSessionEvent int
const (
REMOTE_DOWN BfdSessionEvent = 1
REMOTE_INIT BfdSessionEvent = 2
REMOTE_UP BfdSessionEvent = 3
TIMEOUT BfdSessionEvent = 4
ADMIN_DOWN BfdSessionEvent = 5
ADMIN_UP BfdSessionEvent = 6
REMOTE_ADMIN_DOWN BfdSessionEvent = 7
)
type BfdDiagnostic int
const (
DIAG_NONE BfdDiagnostic = 0 // No Diagnostic
DIAG_TIME_EXPIRED BfdDiagnostic = 1 // Control Detection Time Expired
DIAG_ECHO_FAILED BfdDiagnostic = 2 // Echo Function Failed
DIAG_NEIGHBOR_SIGNAL_DOWN BfdDiagnostic = 3 // Neighbor Signaled Session Down
DIAG_FORWARD_PLANE_RESET BfdDiagnostic = 4 // Forwarding Plane Reset
DIAG_PATH_DOWN BfdDiagnostic = 5 // Path Down
DIAG_CONCAT_PATH_DOWN BfdDiagnostic = 6 // Concatenated Path Down
DIAG_ADMIN_DOWN BfdDiagnostic = 7 // Administratively Down
DIAG_REV_CONCAT_PATH_DOWN BfdDiagnostic = 8 // Reverse Concatenated Path Down
)
func (server *BFDServer) ConvertBfdSessionDiagValToStr(diag BfdDiagnostic) string {
var diagStr string
switch diag {
case DIAG_NONE:
diagStr = "None"
case DIAG_TIME_EXPIRED:
diagStr = "Control detection timer expired"
case DIAG_ECHO_FAILED:
diagStr = "Echo function failed"
case DIAG_NEIGHBOR_SIGNAL_DOWN:
diagStr = "Neighbor signaled session down"
case DIAG_FORWARD_PLANE_RESET:
diagStr = "Forwarding plane reset"
case DIAG_PATH_DOWN:
diagStr = "Path down"
case DIAG_CONCAT_PATH_DOWN:
diagStr = "Concatanated path down"
case DIAG_ADMIN_DOWN:
diagStr = "Administratively down"
case DIAG_REV_CONCAT_PATH_DOWN:
diagStr = "Reverse concatenated path down"
}
return diagStr
}
type BfdControlPacket struct {
Version uint8
Diagnostic BfdDiagnostic
State BfdSessionState
Poll bool
Final bool
ControlPlaneIndependent bool
AuthPresent bool
Demand bool
Multipoint bool // Must always be false
DetectMult uint8
MyDiscriminator uint32
YourDiscriminator uint32
DesiredMinTxInterval time.Duration
RequiredMinRxInterval time.Duration
RequiredMinEchoRxInterval time.Duration
AuthHeader *BfdAuthHeader
}
// Constants
const (
DEFAULT_BFD_VERSION = 1
DEFAULT_DETECT_MULTI = 3
DEFAULT_DESIRED_MIN_TX_INTERVAL = 250000
DEFAULT_REQUIRED_MIN_RX_INTERVAL = 250000
DEFAULT_REQUIRED_MIN_ECHO_RX_INTERVAL = 0
DEFAULT_CONTROL_PACKET_LEN = 24
DEST_PORT = 3784
SRC_PORT = 49152
DEST_PORT_LAG = 6784
SRC_PORT_LAG = 49153
STARTUP_TX_INTERVAL = 2000000
STARTUP_RX_INTERVAL = 2000000
TX_JITTER = 10 //Timer will be running at 0 to 10% less than TX_INTERVAL
)
// Flags in BFD Control packet
const (
BFD_MP = 0x01 // Multipoint
BFD_DEMAND = 0x02 // Demand mode
BFD_AUTH_PRESENT = 0x04 // Authentication present
BFD_CP_INDEPENDENT = 0x08 // Control plane independent
BFD_FINAL = 0x10 // Final message, response to Poll
BFD_POLL = 0x20 // Poll message
)
/*
* Create a control packet
*/
func (p *BfdControlPacket) CreateBfdControlPacket() ([]byte, error) {
//var auth []byte
//var err error
var authLength uint8
buf := bytes.NewBuffer([]uint8{})
flags := uint8(0)
length := uint8(DEFAULT_CONTROL_PACKET_LEN)
binary.Write(buf, binary.BigEndian, (p.Version<<5 | (uint8(p.Diagnostic) & 0x1f)))
if p.Poll {
flags |= BFD_POLL
}
if p.Final {
flags |= BFD_FINAL
}
if p.ControlPlaneIndependent {
flags |= BFD_CP_INDEPENDENT
}
if p.AuthPresent && (p.AuthHeader != nil) {
flags |= BFD_AUTH_PRESENT
/*
auth, err = p.AuthHeader.createBfdAuthHeader()
if err != nil {
return nil, err
}
*/
authLength = p.AuthHeader.getBfdAuthenticationLength()
length += authLength
//length += uint8(len(auth))
}
if p.Demand {
flags |= BFD_DEMAND
}
if p.Multipoint {
flags |= BFD_MP
}
binary.Write(buf, binary.BigEndian, (uint8(p.State)<<6 | flags))
binary.Write(buf, binary.BigEndian, p.DetectMult)
binary.Write(buf, binary.BigEndian, length)
binary.Write(buf, binary.BigEndian, p.MyDiscriminator)
binary.Write(buf, binary.BigEndian, p.YourDiscriminator)
binary.Write(buf, binary.BigEndian, uint32(p.DesiredMinTxInterval))
binary.Write(buf, binary.BigEndian, uint32(p.RequiredMinRxInterval))
binary.Write(buf, binary.BigEndian, uint32(p.RequiredMinEchoRxInterval))
if authLength > 0 {
binary.Write(buf, binary.BigEndian, p.AuthHeader.Type)
binary.Write(buf, binary.BigEndian, authLength)
binary.Write(buf, binary.BigEndian, p.AuthHeader.AuthKeyID)
if p.AuthHeader.Type != BFD_AUTH_TYPE_SIMPLE {
binary.Write(buf, binary.BigEndian, uint8(0))
binary.Write(buf, binary.BigEndian, p.AuthHeader.SequenceNumber)
}
copiedBuf := bytes.NewBuffer(buf.Bytes())
switch p.AuthHeader.Type {
case BFD_AUTH_TYPE_SIMPLE:
binary.Write(buf, binary.BigEndian, p.AuthHeader.AuthData)
case BFD_AUTH_TYPE_KEYED_MD5, BFD_AUTH_TYPE_METICULOUS_MD5:
var authData [16]byte
binary.Write(copiedBuf, binary.BigEndian, p.AuthHeader.AuthData)
authData = md5.Sum(copiedBuf.Bytes())
binary.Write(buf, binary.BigEndian, authData)
fmt.Println("MD5 sum ", authData)
case BFD_AUTH_TYPE_KEYED_SHA1, BFD_AUTH_TYPE_METICULOUS_SHA1:
var authData [20]byte
binary.Write(copiedBuf, binary.BigEndian, p.AuthHeader.AuthData)
authData = sha1.Sum(copiedBuf.Bytes())
binary.Write(buf, binary.BigEndian, authData)
fmt.Println("SHA1 sum ", authData)
}
}
return buf.Bytes(), nil
}
/*
* Decode the control packet
*/
func DecodeBfdControlPacket(data []byte) (*BfdControlPacket, error) {
var err error
packet := &BfdControlPacket{}
packet.Version = uint8((data[0] & 0xE0) >> 5)
packet.Diagnostic = BfdDiagnostic(data[0] & 0x1F)
packet.State = BfdSessionState((data[1] & 0xD0) >> 6)
// bit flags
packet.Poll = (data[1]&0x20 != 0)
packet.Final = (data[1]&0x10 != 0)
packet.ControlPlaneIndependent = (data[1]&0x08 != 0)
packet.AuthPresent = (data[1]&0x04 != 0)
packet.Demand = (data[1]&0x02 != 0)
packet.Multipoint = (data[1]&0x01 != 0)
packet.DetectMult = uint8(data[2])
length := uint8(data[3]) // No need to store this
if uint8(len(data)) != length {
err = errors.New("Packet length mis-match!")
return nil, err
}
packet.MyDiscriminator = binary.BigEndian.Uint32(data[4:8])
packet.YourDiscriminator = binary.BigEndian.Uint32(data[8:12])
packet.DesiredMinTxInterval = time.Duration(binary.BigEndian.Uint32(data[12:16]))
packet.RequiredMinRxInterval = time.Duration(binary.BigEndian.Uint32(data[16:20]))
packet.RequiredMinEchoRxInterval = time.Duration(binary.BigEndian.Uint32(data[20:24]))
if packet.AuthPresent {
if len(data) > 24 {
packet.AuthHeader, err = decodeBfdAuthHeader(data[24:])
} else {
err = errors.New("Header flag set, but packet too short!")
}
}
return packet, err
}
| 32.113879 | 108 | 0.659131 |
478047c6ab70747de77a294e5c0e47b8d2ade962 | 5,980 | html | HTML | homework-09/index.html | caeledon/goit-fe-course | 112d94b1bdbc8d86213d6767da6303c1790f3564 | [
"Unlicense"
] | null | null | null | homework-09/index.html | caeledon/goit-fe-course | 112d94b1bdbc8d86213d6767da6303c1790f3564 | [
"Unlicense"
] | null | null | null | homework-09/index.html | caeledon/goit-fe-course | 112d94b1bdbc8d86213d6767da6303c1790f3564 | [
"Unlicense"
] | null | null | null | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/style.css">
<title>URLAUBSGLÜCK-Bootstap</title>
</head>
<body>
<div class="cover-wrapper">
<header class="header">
<div class="container">
<div class="row justify-content-center justify-content-md-between">
<div class="col-12 col-md-4">
<h1 class="page-title text-center">
URLAUBSGLÜCK
</h1>
</div>
<div class="col-12 col-md-4 text-center order-first order-md-2">
<nav class="navigation">
<button class="nav-button">Log in</button>
<button class="nav-button">Sign up</button>
</nav>
</div>
</div>
</div>
</header>
<section class="cover">
<div class="container">
<div class="row justify-content-md-center">
<div class="col-md-10 col-lg-12">
<h3 class="cover-container__title text-center">Share your holiday dreams</h3>
</div>
<div class="col-md-8 col-lg-12">
<p class="cover-container__subtitle text-center">And find the perfect partner to fullfill it</p>
</div>
<div class="col-12">
<div class="holiday-partner-btn text-center">
<button class="button">Find your holiday partner</button>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="team-wrapper">
<section class="team">
<div class="container">
<div class="row justify-content-md-center">
<div class="col-md-8 col-lg-12">
<div class="row">
<div class="col-12">
<div class="row">
<div class="col-12">
<h3 class="team-title text-center">Meet a partner for your best holiday</h3>
</div>
</div>
</div>
<div class="cards col-12 col-md-6 col-lg-3 order-md-1 text-center">
<div class="team-item">
<figure class="partners-avatar bradley">
<img src="./images/bradley.png" alt="Bradley Hunter" class="avatar" width="121" height="120">
</figure>
<h4 class="name">Bradley Hunter</h4>
<p class="information">Based in Chicago. I love playing tennis and loud music.</p>
</div>
</div>
<div class="cards col-12 col-md-6 col-lg-3 order-md-3 text-center">
<div class="team-item">
<figure class="partners-avatar lucas">
<img src="./images/lucas.png" alt="Lucas Marsha" class="avatar" width="121" height="120">
</figure>
<h4 class="name">Lucas Marsha</h4>
<p class="information">I get my inspiration from nature and objects around me. I have a passion to colours, typography and skateboards.</p>
</div>
</div>
<div class="cards col-12 col-md-6 col-lg-3 order-md-2 text-center">
<div class="team-item">
<figure class="partners-avatar walker">
<img src="./images/walker.png" alt="Heather Walker" class="avatar" width="121" height="120">
</figure>
<h4 class="name">Heather Walker</h4>
<p class="information">I'm a happy person that loves cats and climbing on mountains.</p>
</div>
</div>
<div class="cards col-12 col-md-6 col-lg-3 order-md-4 text-center">
<div class="team-item">
<figure class="partners-avatar hanter">
<img src="./images/hanter.png" alt="Bradley Hunter" class="avatar" width="121" height="120">
</figure>
<h4 class="name">Bradley Hunter</h4>
<p class="information">Based in Chicago. I love playing tennis and loud music.</p>
</div>
</div>
<div class="partner-review text-center col-12 order-md-5">
<button class="partner-review__button">See other partners</button>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</body>
</html> | 55.37037 | 215 | 0.424415 |
f1d57c61dd4f3992129e43f3089086d11ffbb0f2 | 335 | rb | Ruby | config/routes.rb | kevellis124/rails-states-countries | 1c3de7f0cc7ed1613534fd807437e6e6da0cb28d | [
"MIT"
] | null | null | null | config/routes.rb | kevellis124/rails-states-countries | 1c3de7f0cc7ed1613534fd807437e6e6da0cb28d | [
"MIT"
] | null | null | null | config/routes.rb | kevellis124/rails-states-countries | 1c3de7f0cc7ed1613534fd807437e6e6da0cb28d | [
"MIT"
] | null | null | null | # frozen_string_literal: true
Rails.application.routes.draw do
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
get "/", to: "application#main_view", as: :main_view
post "/pick-country", to: "application#pick_country", as: :pick_country
root to: "application#main_view"
end
| 33.5 | 101 | 0.749254 |
4888ddd55f41b6d0e7c5c0458b1371f7f24f40c6 | 465 | kt | Kotlin | app/src/main/java/com/ashraf/movie/discovery/details/MovieDetailsState.kt | ashraf-atef/Movie-App2.0.0 | 404335d17764b1d69607c7702d61ae7b64ffa900 | [
"MIT"
] | 1 | 2020-10-03T20:51:39.000Z | 2020-10-03T20:51:39.000Z | app/src/main/java/com/ashraf/movie/discovery/details/MovieDetailsState.kt | ashraf-atef/Movie-App2.0.0 | 404335d17764b1d69607c7702d61ae7b64ffa900 | [
"MIT"
] | null | null | null | app/src/main/java/com/ashraf/movie/discovery/details/MovieDetailsState.kt | ashraf-atef/Movie-App2.0.0 | 404335d17764b1d69607c7702d61ae7b64ffa900 | [
"MIT"
] | null | null | null | package com.ashraf.movie.discovery.details
import com.airbnb.mvrx.Async
import com.airbnb.mvrx.MvRxState
import com.airbnb.mvrx.Uninitialized
import com.ashraf.movie.discovery.data.local.Movie
data class MovieDetailsState(
val title: String,
val photos: List<String> = listOf(),
val photosPageRequest: Async<List<String>> = Uninitialized,
val movie: Async<Movie> = Uninitialized
): MvRxState {
constructor(args: MovieArgs) : this(args.title)
} | 31 | 63 | 0.76129 |
907d77c5621de728c428431322b165b35ea81ad7 | 3,371 | py | Python | src/fidesops/schemas/policy.py | eastandwestwind/fidesops | 93e2881c0fdc30075b7cc22024965d18cec0bdea | [
"Apache-2.0"
] | null | null | null | src/fidesops/schemas/policy.py | eastandwestwind/fidesops | 93e2881c0fdc30075b7cc22024965d18cec0bdea | [
"Apache-2.0"
] | null | null | null | src/fidesops/schemas/policy.py | eastandwestwind/fidesops | 93e2881c0fdc30075b7cc22024965d18cec0bdea | [
"Apache-2.0"
] | null | null | null | from typing import Dict, List, Optional, Union
from fidesops.schemas.shared_schemas import FidesOpsKey
from fidesops.models.policy import (
ActionType,
DataCategory,
)
from fidesops.schemas.api import BulkResponse, BulkUpdateFailed
from fidesops.schemas.base_class import BaseSchema
from fidesops.schemas.masking.masking_configuration import FormatPreservationConfig
from fidesops.schemas.storage.storage import StorageDestinationResponse
class PolicyMaskingSpec(BaseSchema):
"""Models the masking strategy definition int the policy document"""
strategy: str
configuration: Dict[str, Union[str, FormatPreservationConfig]]
class PolicyMaskingSpecResponse(BaseSchema):
"""
The schema to use when returning a masking strategy via the API. This schema omits other
potentially sensitive fields in the masking configuration, for example the encryption
algorithm.
"""
strategy: str
class RuleTarget(BaseSchema):
"""An external representation of a Rule's target DataCategory within a Fidesops Policy"""
name: Optional[str]
key: Optional[FidesOpsKey]
data_category: DataCategory
class Config:
"""Populate models with the raw value of enum fields, rather than the enum itself"""
use_enum_values = True
class RuleBase(BaseSchema):
"""An external representation of a Rule within a Fidesops Policy"""
name: str
key: Optional[FidesOpsKey]
action_type: ActionType
class Config:
"""Populate models with the raw value of enum fields, rather than the enum itself"""
use_enum_values = True
class RuleCreate(RuleBase):
"""
The schema to use when creating a Rule. This schema accepts a storage_destination_key
over a composite object.
"""
storage_destination_key: Optional[FidesOpsKey]
masking_strategy: Optional[PolicyMaskingSpec]
class RuleResponse(RuleBase):
"""
The schema to use when returning a Rule via the API. This schema uses a censored version
of the `PolicyMaskingSpec` that omits the configuration to avoid exposing secrets.
"""
storage_destination: Optional[StorageDestinationResponse]
masking_strategy: Optional[PolicyMaskingSpecResponse]
class Rule(RuleBase):
"""A representation of a Rule that features all storage destination data."""
storage_destination: Optional[StorageDestinationResponse]
masking_strategy: Optional[PolicyMaskingSpec]
class Policy(BaseSchema):
"""An external representation of a Fidesops Policy"""
name: str
key: Optional[FidesOpsKey]
class PolicyResponse(Policy):
"""A holistic view of a Policy record, including all foreign keys by default."""
rules: Optional[List[RuleResponse]]
class BulkPutRuleTargetResponse(BulkResponse):
"""Schema with mixed success/failure responses for Bulk Create/Update of RuleTarget responses."""
succeeded: List[RuleTarget]
failed: List[BulkUpdateFailed]
class BulkPutRuleResponse(BulkResponse):
"""Schema with mixed success/failure responses for Bulk Create/Update of Rule responses."""
succeeded: List[RuleResponse]
failed: List[BulkUpdateFailed]
class BulkPutPolicyResponse(BulkResponse):
"""Schema with mixed success/failure responses for Bulk Create/Update of Policy responses."""
succeeded: List[PolicyResponse]
failed: List[BulkUpdateFailed]
| 29.060345 | 101 | 0.753782 |
e3d63b918e52e782ac18264812f012b911de72eb | 465 | go | Go | input/util.go | potatoattack/stream_exporter | 889de55b9b8719b877ab60597868f9833ced9dae | [
"MIT"
] | 31 | 2017-01-04T00:19:14.000Z | 2022-03-30T20:16:59.000Z | input/util.go | potatoattack/stream_exporter | 889de55b9b8719b877ab60597868f9833ced9dae | [
"MIT"
] | 9 | 2017-10-12T10:51:37.000Z | 2019-06-23T06:41:36.000Z | input/util.go | potatoattack/stream_exporter | 889de55b9b8719b877ab60597868f9833ced9dae | [
"MIT"
] | 12 | 2017-10-12T08:45:16.000Z | 2021-06-01T10:55:10.000Z | package input
import (
"bytes"
"fmt"
"io"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/common/expfmt"
"github.com/prometheus/common/log"
)
func writeMetrics(w io.Writer) {
metfam, err := prometheus.DefaultGatherer.Gather()
if err != nil {
log.Fatal(err)
}
out := &bytes.Buffer{}
for _, met := range metfam {
if _, err := expfmt.MetricFamilyToText(out, met); err != nil {
log.Fatal(err)
}
}
fmt.Fprintln(w, out)
}
| 17.884615 | 64 | 0.673118 |
9d32e7e1a0706f317112dcf30192539a6e490e2d | 9,138 | html | HTML | src/app/task/edit-vote/edit-vote.component.html | grassrootza/grassroot-frontend | 88b7a7f2c15198019d90688e9959be2c653a640e | [
"BSD-3-Clause"
] | 3 | 2018-02-04T14:06:38.000Z | 2021-03-25T02:25:44.000Z | src/app/task/edit-vote/edit-vote.component.html | grassrootza/grassroot-frontend | 88b7a7f2c15198019d90688e9959be2c653a640e | [
"BSD-3-Clause"
] | 3 | 2018-01-29T15:22:42.000Z | 2018-11-01T21:33:42.000Z | src/app/task/edit-vote/edit-vote.component.html | grassrootza/grassroot-frontend | 88b7a7f2c15198019d90688e9959be2c653a640e | [
"BSD-3-Clause"
] | 1 | 2018-12-12T11:24:32.000Z | 2018-12-12T11:24:32.000Z | <div class="container primary-container">
<!-- <div class="row mb-3">
<div class="col-12">
<a (click)="routeToParent()" href="#" class="grassroot-breadcrumb"><i class="fas fa-arrow-left"></i>
{{ (returnToGroup ? 'general.breadcrumb.group' : 'general.breadcrumb.home') | translate }}</a>
</div>
</div> -->
<div class="card">
<div class="card-body" [formGroup]="editVoteForm">
<div class="row"><div class="col-md-12 col-sm-12" *ngIf="!vote"><h3>Loading ...</h3></div></div>
<ng-container *ngIf="vote">
<div class="row">
<div class="col-md-12 col-sm-12">
<h3>
<img src="assets/icon_vote.png"/>
VOTE: {{ vote.title }}
</h3>
</div>
</div>
<div class="row">
<div class="col-md-12 col-sm-12">
<p class="task-field-para">
<span class="task-field-name">Group: </span> {{vote.parentName}}
</p>
<p class="task-field-para">
<span class="task-field-name">Closes: </span> {{vote.deadlineDate | date: 'hh:mm a on dd MMM yy'}}
</p>
<p class="task-field-para" *ngIf="vote.description">
<span class="task-field-name">Description: </span> {{vote.description}}
</p>
<p class="task-field-para" *ngIf="vote.hasResponded">
<span class="task-field-name">You voted: </span> {{ vote.userResponse | titlecase }}
</p>
</div>
</div>
<div class="row mb-3">
<div class="col-md-3 col-sm-12">Vote end date:</div>
<div class="col-md-3 col-sm-12">
<div class="input-group">
<input class="form-control" placeholder="yyyy-mm-dd" id="vote-end-date"
formControlName="date" name="edp" ngbDatepicker #d="ngbDatepicker">
<div class="input-group-append">
<button type="button" [ngClass]="{'btn': true, 'calendar-disabled': !changingDate, 'calendar-button': changingDate}"
(click)="d.toggle()" type="button">
<i class="far fa-calendar"></i>
</button>
</div>
</div>
</div>
<div class="col-md-3">
<ngb-timepicker formControlName="time" [spinners]="false"></ngb-timepicker>
</div>
<div class="col-md-3">
<button type="button" *ngIf="!changingDate" (click)="toggleChangingDate()" class="btn btn-lg btn-secondary float-right">Change</button>
<button type="button" *ngIf="changingDate" (click)="setUpClosingDateTime()" class="btn btn-lg btn-secondary float-right">Revert</button>
</div>
</div>
<div class="row mb-3" *ngIf="options">
<div class="col-md-3 col-sm-12">
<span class="task-field-name">Primary options</span> (separate with new line):
</div>
<div class="col-md-9 col-sm-12">
<textarea class="form-control" formControlName="primary-options" rows="{{ options.length }}">{{ options.join('\n') }}</textarea>
</div>
</div>
<div class="row" *ngIf="vote.voteResults">
<div class="col-sm-12">
<div class="card-header responses-header">
<div class="row">
<div class="col-sm-3">
<span class="responses-title">Vote results</span>
</div>
<div class="col-sm-7"></div>
<div class="col-sm-2 text-right">
<i class="fas fa-users"></i> {{ totalMembers }}</div>
</div>
</div>
<div class="card-body">
<div class="row" *ngFor="let option of results">
<div class="col-sm-3">
{{ option.name }}
</div>
<div class="col-sm-7">
<div class="progress">
<div class="progress-bar progress-bar-striped bg-success" role="progressbar"
[style.width]="option.percent + '%'"
[attr.aria-valuenow]="option.percent" aria-valuemin="0" aria-valuemax="100">
{{ option.percent}}%
</div>
</div>
</div>
<div class="col-sm-2 text-right">
{{ option.rawCount }}
</div>
</div>
</div>
</div>
</div>
<div *ngIf="massVote && promptLanguagesLoaded" class="form-group row mt-3">
<div class="col-sm-2 col-form-label text-md-right text-sm-left">
<label for="vote-special-form">Extra language prompts (optional)</label>
</div>
<div class="col-sm-8">
<ngb-tabset class="content-tabset" #t="ngbTabset">
<ngb-tab *ngFor="let language of languages" [id]="'opening-' + language.threeDigitCode">
<ng-template ngbTabTitle>
{{ language.shortName }}
</ng-template>
<ng-template ngbTabContent>
<textarea class="form-control boxsizingBorder" rows="2" formControlName="opening-{{ language.twoDigitCode }}"></textarea>
</ng-template>
</ngb-tab>
</ngb-tabset>
</div>
</div>
<div *ngIf="massVote && postVotePromptsLoaded" class="form-group row">
<div class="col-sm-2 col-form-label text-md-right text-sm-left">
<label for="vote-special-form">Post vote prompts (optional)</label>
</div>
<div class="col-sm-8">
<ngb-tabset class="content-tabset" #t="ngbTabset">
<ngb-tab *ngFor="let language of languages" [id]="'post-' + language.threeDigitCode">
<ng-template ngbTabTitle>
{{ language.shortName }}
</ng-template>
<ng-template ngbTabContent>
<textarea class="form-control boxsizingBorder" rows="2" formControlName="post-{{ language.twoDigitCode }}"></textarea>
</ng-template>
</ngb-tab>
</ngb-tabset>
</div>
<div class="col-sm-2">
<button type="button" (click)="clearPostVotePrompts()" class="btn btn-lg btn-secondary float-right">Clear</button>
</div>
</div>
<div *ngIf="massVote && multiLanguageOptionsLoaded" class="form-group row">
<div class="col-sm-2 col-form-label text-md-right text-sm-left">
<label for="vote-special-form">Multilingual options (optional, separate options with new line)</label>
</div>
<div class="col-sm-8">
<ngb-tabset class="content-tabset" #t="ngbTabset">
<ngb-tab *ngFor="let language of languages" [id]="'options-' + language.threeDigitCode">
<ng-template ngbTabTitle>
{{ language.shortName }}
</ng-template>
<ng-template ngbTabContent>
<textarea class="form-control boxsizingBorder" rows="{{ options.length }}" formControlName="options-{{ language.twoDigitCode }}"></textarea>
</ng-template>
</ngb-tab>
</ngb-tabset>
</div>
<div class="col-sm-2">
<button type="button" class="btn btn-lg btn-secondary float-right">Clear</button>
</div>
</div>
<div *ngIf="massVote" class="form-group row">
<div class="col-sm-3 col-form-label text-md-right text-sm-left">
<label for="vote-special-form">Final options</label>
</div>
<div class="col-sm-3">
<label for="randomize">
<input type="checkbox" class="form-check-input" id="randomize"
formControlName="randomize">
Randomize options
</label>
</div>
<div class="col-sm-3">
<label for="preClosed">
<input type="checkbox" class="form-check-input" id="preClosed"
formControlName="preClosed">
Stop taking votes
</label>
</div>
<div class="col-sm-3">
<label for="noChange">
<input type="checkbox" class="form-check-input" id="noChanged"
formControlName="noChange">
User can't change vote
</label>
</div>
</div>
<div class="form-row">
<div class="col-sm-12">
<button type="button" (click)="saveUpdatedDetails()" class="btn btn-lg btn-primary float-right save-button"> {{ 'action.save' |
translate }}
</button>
<button type="button" (click)="closeVote()" class="btn btn-lg btn-secondary float-right mr-3">Close vote</button>
</div>
</div>
</ng-container>
</div>
</div>
</div> | 45.014778 | 158 | 0.502736 |
d0ac324144936c7643d4366e09895694dff297c4 | 1,012 | css | CSS | client/src/pages/Profile.css | echo1826/Sheltered | fe741beb9b2e051a6785050b1860696a7a4b5c12 | [
"MIT"
] | 4 | 2021-11-30T01:23:59.000Z | 2021-12-02T19:45:57.000Z | client/src/pages/Profile.css | echo1826/Sheltered | fe741beb9b2e051a6785050b1860696a7a4b5c12 | [
"MIT"
] | 8 | 2021-12-08T18:32:52.000Z | 2022-02-05T02:45:16.000Z | client/src/pages/Profile.css | echo1826/Sheltered | fe741beb9b2e051a6785050b1860696a7a4b5c12 | [
"MIT"
] | 3 | 2022-01-31T21:53:40.000Z | 2022-03-30T22:43:45.000Z | .userProfile {
padding-bottom: 35px;
}
h1{
font-family: 'Source Sans Pro', sans-serif;
font-size: 35px;
text-align: center;
}
.avatar{
display:flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
margin-left: 3%;
}
.profileDogs {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
margin-top: 10px;
}
.dogCard {
width: 250px;
background-color: #F2F2F2;
border: 1px solid;
border-radius: 15px;
object-fit: cover;
position: relative;
margin: 25px;
box-shadow: 4px 4px 4px rgb(195, 195, 195);
justify-content: center;
align-items: center;
text-align: center;
padding: 5px;
}
.profileLink {
text-decoration: none;
display: flex;
justify-content: center;
}
.dogImage {
object-fit: cover;
box-shadow: 4px 4px 4px rgb(195, 195, 195);
width: 100px;
height: 100px;
margin: auto;
}
.profileBtn:hover {
border: solid 1px #000;
} | 17.152542 | 47 | 0.618577 |
81b5cfd638a60c14a4bf3bb9d7c8d6543a3da3ee | 49,863 | swift | Swift | Sources/Soto/Services/DirectConnect/DirectConnect_API.swift | brokenhandsio/soto | 94eac08d348c8c5d6e8c97c86437c037483dbb82 | [
"Apache-2.0"
] | null | null | null | Sources/Soto/Services/DirectConnect/DirectConnect_API.swift | brokenhandsio/soto | 94eac08d348c8c5d6e8c97c86437c037483dbb82 | [
"Apache-2.0"
] | null | null | null | Sources/Soto/Services/DirectConnect/DirectConnect_API.swift | brokenhandsio/soto | 94eac08d348c8c5d6e8c97c86437c037483dbb82 | [
"Apache-2.0"
] | null | null | null | //===----------------------------------------------------------------------===//
//
// This source file is part of the Soto for AWS open source project
//
// Copyright (c) 2017-2021 the Soto project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of Soto project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
// THIS FILE IS AUTOMATICALLY GENERATED by https://github.com/soto-project/soto/tree/main/CodeGenerator. DO NOT EDIT.
@_exported import SotoCore
/// Service object for interacting with AWS DirectConnect service.
///
/// AWS Direct Connect links your internal network to an AWS Direct Connect location over a standard Ethernet fiber-optic cable. One end of the cable is connected to your router, the other to an AWS Direct Connect router. With this connection in place, you can create virtual interfaces directly to the AWS cloud (for example, to Amazon EC2 and Amazon S3) and to Amazon VPC, bypassing Internet service providers in your network path. A connection provides access to all AWS Regions except the China (Beijing) and (China) Ningxia Regions. AWS resources in the China Regions can only be accessed through locations associated with those Regions.
public struct DirectConnect: AWSService {
// MARK: Member variables
/// Client used for communication with AWS
public let client: AWSClient
/// Service configuration
public let config: AWSServiceConfig
// MARK: Initialization
/// Initialize the DirectConnect client
/// - parameters:
/// - client: AWSClient used to process requests
/// - region: Region of server you want to communicate with. This will override the partition parameter.
/// - partition: AWS partition where service resides, standard (.aws), china (.awscn), government (.awsusgov).
/// - endpoint: Custom endpoint URL to use instead of standard AWS servers
/// - timeout: Timeout value for HTTP requests
public init(
client: AWSClient,
region: SotoCore.Region? = nil,
partition: AWSPartition = .aws,
endpoint: String? = nil,
timeout: TimeAmount? = nil,
byteBufferAllocator: ByteBufferAllocator = ByteBufferAllocator(),
options: AWSServiceConfig.Options = []
) {
self.client = client
self.config = AWSServiceConfig(
region: region,
partition: region?.partition ?? partition,
amzTarget: "OvertureService",
service: "directconnect",
serviceProtocol: .json(version: "1.1"),
apiVersion: "2012-10-25",
endpoint: endpoint,
serviceEndpoints: ["us-gov-east-1": "directconnect.us-gov-east-1.amazonaws.com", "us-gov-west-1": "directconnect.us-gov-west-1.amazonaws.com"],
errorType: DirectConnectErrorType.self,
timeout: timeout,
byteBufferAllocator: byteBufferAllocator,
options: options
)
}
// MARK: API Calls
/// Accepts a proposal request to attach a virtual private gateway or transit gateway to a Direct Connect gateway.
public func acceptDirectConnectGatewayAssociationProposal(_ input: AcceptDirectConnectGatewayAssociationProposalRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<AcceptDirectConnectGatewayAssociationProposalResult> {
return self.client.execute(operation: "AcceptDirectConnectGatewayAssociationProposal", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Deprecated. Use AllocateHostedConnection instead. Creates a hosted connection on an interconnect. Allocates a VLAN number and a specified amount of bandwidth for use by a hosted connection on the specified interconnect. Intended for use by AWS Direct Connect Partners only.
@available(*, deprecated, message: "AllocateConnectionOnInterconnect is deprecated.")
public func allocateConnectionOnInterconnect(_ input: AllocateConnectionOnInterconnectRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<Connection> {
return self.client.execute(operation: "AllocateConnectionOnInterconnect", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Creates a hosted connection on the specified interconnect or a link aggregation group (LAG) of interconnects. Allocates a VLAN number and a specified amount of capacity (bandwidth) for use by a hosted connection on the specified interconnect or LAG of interconnects. AWS polices the hosted connection for the specified capacity and the AWS Direct Connect Partner must also police the hosted connection for the specified capacity. Intended for use by AWS Direct Connect Partners only.
public func allocateHostedConnection(_ input: AllocateHostedConnectionRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<Connection> {
return self.client.execute(operation: "AllocateHostedConnection", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Provisions a private virtual interface to be owned by the specified AWS account. Virtual interfaces created using this action must be confirmed by the owner using ConfirmPrivateVirtualInterface. Until then, the virtual interface is in the Confirming state and is not available to handle traffic.
public func allocatePrivateVirtualInterface(_ input: AllocatePrivateVirtualInterfaceRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<VirtualInterface> {
return self.client.execute(operation: "AllocatePrivateVirtualInterface", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Provisions a public virtual interface to be owned by the specified AWS account. The owner of a connection calls this function to provision a public virtual interface to be owned by the specified AWS account. Virtual interfaces created using this function must be confirmed by the owner using ConfirmPublicVirtualInterface. Until this step has been completed, the virtual interface is in the confirming state and is not available to handle traffic. When creating an IPv6 public virtual interface, omit the Amazon address and customer address. IPv6 addresses are automatically assigned from the Amazon pool of IPv6 addresses; you cannot specify custom IPv6 addresses.
public func allocatePublicVirtualInterface(_ input: AllocatePublicVirtualInterfaceRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<VirtualInterface> {
return self.client.execute(operation: "AllocatePublicVirtualInterface", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Provisions a transit virtual interface to be owned by the specified AWS account. Use this type of interface to connect a transit gateway to your Direct Connect gateway. The owner of a connection provisions a transit virtual interface to be owned by the specified AWS account. After you create a transit virtual interface, it must be confirmed by the owner using ConfirmTransitVirtualInterface. Until this step has been completed, the transit virtual interface is in the requested state and is not available to handle traffic.
public func allocateTransitVirtualInterface(_ input: AllocateTransitVirtualInterfaceRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<AllocateTransitVirtualInterfaceResult> {
return self.client.execute(operation: "AllocateTransitVirtualInterface", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Associates an existing connection with a link aggregation group (LAG). The connection is interrupted and re-established as a member of the LAG (connectivity to AWS is interrupted). The connection must be hosted on the same AWS Direct Connect endpoint as the LAG, and its bandwidth must match the bandwidth for the LAG. You can re-associate a connection that's currently associated with a different LAG; however, if removing the connection would cause the original LAG to fall below its setting for minimum number of operational connections, the request fails. Any virtual interfaces that are directly associated with the connection are automatically re-associated with the LAG. If the connection was originally associated with a different LAG, the virtual interfaces remain associated with the original LAG. For interconnects, any hosted connections are automatically re-associated with the LAG. If the interconnect was originally associated with a different LAG, the hosted connections remain associated with the original LAG.
public func associateConnectionWithLag(_ input: AssociateConnectionWithLagRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<Connection> {
return self.client.execute(operation: "AssociateConnectionWithLag", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Associates a hosted connection and its virtual interfaces with a link aggregation group (LAG) or interconnect. If the target interconnect or LAG has an existing hosted connection with a conflicting VLAN number or IP address, the operation fails. This action temporarily interrupts the hosted connection's connectivity to AWS as it is being migrated. Intended for use by AWS Direct Connect Partners only.
public func associateHostedConnection(_ input: AssociateHostedConnectionRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<Connection> {
return self.client.execute(operation: "AssociateHostedConnection", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Associates a MAC Security (MACsec) Connection Key Name (CKN)/ Connectivity Association Key (CAK) pair with an AWS Direct Connect dedicated connection. You must supply either the secretARN, or the CKN/CAK (ckn and cak) pair in the request. For information about MAC Security (MACsec) key considerations, see MACsec pre-shared CKN/CAK key considerations in the AWS Direct Connect User Guide.
public func associateMacSecKey(_ input: AssociateMacSecKeyRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<AssociateMacSecKeyResponse> {
return self.client.execute(operation: "AssociateMacSecKey", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Associates a virtual interface with a specified link aggregation group (LAG) or connection. Connectivity to AWS is temporarily interrupted as the virtual interface is being migrated. If the target connection or LAG has an associated virtual interface with a conflicting VLAN number or a conflicting IP address, the operation fails. Virtual interfaces associated with a hosted connection cannot be associated with a LAG; hosted connections must be migrated along with their virtual interfaces using AssociateHostedConnection. To reassociate a virtual interface to a new connection or LAG, the requester must own either the virtual interface itself or the connection to which the virtual interface is currently associated. Additionally, the requester must own the connection or LAG for the association.
public func associateVirtualInterface(_ input: AssociateVirtualInterfaceRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<VirtualInterface> {
return self.client.execute(operation: "AssociateVirtualInterface", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Confirms the creation of the specified hosted connection on an interconnect. Upon creation, the hosted connection is initially in the Ordering state, and remains in this state until the owner confirms creation of the hosted connection.
public func confirmConnection(_ input: ConfirmConnectionRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<ConfirmConnectionResponse> {
return self.client.execute(operation: "ConfirmConnection", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Accepts ownership of a private virtual interface created by another AWS account. After the virtual interface owner makes this call, the virtual interface is created and attached to the specified virtual private gateway or Direct Connect gateway, and is made available to handle traffic.
public func confirmPrivateVirtualInterface(_ input: ConfirmPrivateVirtualInterfaceRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<ConfirmPrivateVirtualInterfaceResponse> {
return self.client.execute(operation: "ConfirmPrivateVirtualInterface", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Accepts ownership of a public virtual interface created by another AWS account. After the virtual interface owner makes this call, the specified virtual interface is created and made available to handle traffic.
public func confirmPublicVirtualInterface(_ input: ConfirmPublicVirtualInterfaceRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<ConfirmPublicVirtualInterfaceResponse> {
return self.client.execute(operation: "ConfirmPublicVirtualInterface", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Accepts ownership of a transit virtual interface created by another AWS account. After the owner of the transit virtual interface makes this call, the specified transit virtual interface is created and made available to handle traffic.
public func confirmTransitVirtualInterface(_ input: ConfirmTransitVirtualInterfaceRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<ConfirmTransitVirtualInterfaceResponse> {
return self.client.execute(operation: "ConfirmTransitVirtualInterface", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Creates a BGP peer on the specified virtual interface. You must create a BGP peer for the corresponding address family (IPv4/IPv6) in order to access AWS resources that also use that address family. If logical redundancy is not supported by the connection, interconnect, or LAG, the BGP peer cannot be in the same address family as an existing BGP peer on the virtual interface. When creating a IPv6 BGP peer, omit the Amazon address and customer address. IPv6 addresses are automatically assigned from the Amazon pool of IPv6 addresses; you cannot specify custom IPv6 addresses. For a public virtual interface, the Autonomous System Number (ASN) must be private or already on the allow list for the virtual interface.
public func createBGPPeer(_ input: CreateBGPPeerRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<CreateBGPPeerResponse> {
return self.client.execute(operation: "CreateBGPPeer", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Creates a connection between a customer network and a specific AWS Direct Connect location. A connection links your internal network to an AWS Direct Connect location over a standard Ethernet fiber-optic cable. One end of the cable is connected to your router, the other to an AWS Direct Connect router. To find the locations for your Region, use DescribeLocations. You can automatically add the new connection to a link aggregation group (LAG) by specifying a LAG ID in the request. This ensures that the new connection is allocated on the same AWS Direct Connect endpoint that hosts the specified LAG. If there are no available ports on the endpoint, the request fails and no connection is created.
public func createConnection(_ input: CreateConnectionRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<Connection> {
return self.client.execute(operation: "CreateConnection", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Creates a Direct Connect gateway, which is an intermediate object that enables you to connect a set of virtual interfaces and virtual private gateways. A Direct Connect gateway is global and visible in any AWS Region after it is created. The virtual interfaces and virtual private gateways that are connected through a Direct Connect gateway can be in different AWS Regions. This enables you to connect to a VPC in any Region, regardless of the Region in which the virtual interfaces are located, and pass traffic between them.
public func createDirectConnectGateway(_ input: CreateDirectConnectGatewayRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<CreateDirectConnectGatewayResult> {
return self.client.execute(operation: "CreateDirectConnectGateway", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Creates an association between a Direct Connect gateway and a virtual private gateway. The virtual private gateway must be attached to a VPC and must not be associated with another Direct Connect gateway.
public func createDirectConnectGatewayAssociation(_ input: CreateDirectConnectGatewayAssociationRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<CreateDirectConnectGatewayAssociationResult> {
return self.client.execute(operation: "CreateDirectConnectGatewayAssociation", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Creates a proposal to associate the specified virtual private gateway or transit gateway with the specified Direct Connect gateway. You can associate a Direct Connect gateway and virtual private gateway or transit gateway that is owned by any AWS account.
public func createDirectConnectGatewayAssociationProposal(_ input: CreateDirectConnectGatewayAssociationProposalRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<CreateDirectConnectGatewayAssociationProposalResult> {
return self.client.execute(operation: "CreateDirectConnectGatewayAssociationProposal", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Creates an interconnect between an AWS Direct Connect Partner's network and a specific AWS Direct Connect location. An interconnect is a connection that is capable of hosting other connections. The AWS Direct Connect partner can use an interconnect to provide AWS Direct Connect hosted connections to customers through their own network services. Like a standard connection, an interconnect links the partner's network to an AWS Direct Connect location over a standard Ethernet fiber-optic cable. One end is connected to the partner's router, the other to an AWS Direct Connect router. You can automatically add the new interconnect to a link aggregation group (LAG) by specifying a LAG ID in the request. This ensures that the new interconnect is allocated on the same AWS Direct Connect endpoint that hosts the specified LAG. If there are no available ports on the endpoint, the request fails and no interconnect is created. For each end customer, the AWS Direct Connect Partner provisions a connection on their interconnect by calling AllocateHostedConnection. The end customer can then connect to AWS resources by creating a virtual interface on their connection, using the VLAN assigned to them by the AWS Direct Connect Partner. Intended for use by AWS Direct Connect Partners only.
public func createInterconnect(_ input: CreateInterconnectRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<Interconnect> {
return self.client.execute(operation: "CreateInterconnect", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Creates a link aggregation group (LAG) with the specified number of bundled physical dedicated connections between the customer network and a specific AWS Direct Connect location. A LAG is a logical interface that uses the Link Aggregation Control Protocol (LACP) to aggregate multiple interfaces, enabling you to treat them as a single interface. All connections in a LAG must use the same bandwidth (either 1Gbps or 10Gbps) and must terminate at the same AWS Direct Connect endpoint. You can have up to 10 dedicated connections per LAG. Regardless of this limit, if you request more connections for the LAG than AWS Direct Connect can allocate on a single endpoint, no LAG is created. You can specify an existing physical dedicated connection or interconnect to include in the LAG (which counts towards the total number of connections). Doing so interrupts the current physical dedicated connection, and re-establishes them as a member of the LAG. The LAG will be created on the same AWS Direct Connect endpoint to which the dedicated connection terminates. Any virtual interfaces associated with the dedicated connection are automatically disassociated and re-associated with the LAG. The connection ID does not change. If the AWS account used to create a LAG is a registered AWS Direct Connect Partner, the LAG is automatically enabled to host sub-connections. For a LAG owned by a partner, any associated virtual interfaces cannot be directly configured.
public func createLag(_ input: CreateLagRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<Lag> {
return self.client.execute(operation: "CreateLag", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Creates a private virtual interface. A virtual interface is the VLAN that transports AWS Direct Connect traffic. A private virtual interface can be connected to either a Direct Connect gateway or a Virtual Private Gateway (VGW). Connecting the private virtual interface to a Direct Connect gateway enables the possibility for connecting to multiple VPCs, including VPCs in different AWS Regions. Connecting the private virtual interface to a VGW only provides access to a single VPC within the same Region. Setting the MTU of a virtual interface to 9001 (jumbo frames) can cause an update to the underlying physical connection if it wasn't updated to support jumbo frames. Updating the connection disrupts network connectivity for all virtual interfaces associated with the connection for up to 30 seconds. To check whether your connection supports jumbo frames, call DescribeConnections. To check whether your virtual interface supports jumbo frames, call DescribeVirtualInterfaces.
public func createPrivateVirtualInterface(_ input: CreatePrivateVirtualInterfaceRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<VirtualInterface> {
return self.client.execute(operation: "CreatePrivateVirtualInterface", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Creates a public virtual interface. A virtual interface is the VLAN that transports AWS Direct Connect traffic. A public virtual interface supports sending traffic to public services of AWS such as Amazon S3. When creating an IPv6 public virtual interface (addressFamily is ipv6), leave the customer and amazon address fields blank to use auto-assigned IPv6 space. Custom IPv6 addresses are not supported.
public func createPublicVirtualInterface(_ input: CreatePublicVirtualInterfaceRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<VirtualInterface> {
return self.client.execute(operation: "CreatePublicVirtualInterface", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Creates a transit virtual interface. A transit virtual interface should be used to access one or more transit gateways associated with Direct Connect gateways. A transit virtual interface enables the connection of multiple VPCs attached to a transit gateway to a Direct Connect gateway. If you associate your transit gateway with one or more Direct Connect gateways, the Autonomous System Number (ASN) used by the transit gateway and the Direct Connect gateway must be different. For example, if you use the default ASN 64512 for both your the transit gateway and Direct Connect gateway, the association request fails. Setting the MTU of a virtual interface to 8500 (jumbo frames) can cause an update to the underlying physical connection if it wasn't updated to support jumbo frames. Updating the connection disrupts network connectivity for all virtual interfaces associated with the connection for up to 30 seconds. To check whether your connection supports jumbo frames, call DescribeConnections. To check whether your virtual interface supports jumbo frames, call DescribeVirtualInterfaces.
public func createTransitVirtualInterface(_ input: CreateTransitVirtualInterfaceRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<CreateTransitVirtualInterfaceResult> {
return self.client.execute(operation: "CreateTransitVirtualInterface", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Deletes the specified BGP peer on the specified virtual interface with the specified customer address and ASN. You cannot delete the last BGP peer from a virtual interface.
public func deleteBGPPeer(_ input: DeleteBGPPeerRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<DeleteBGPPeerResponse> {
return self.client.execute(operation: "DeleteBGPPeer", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Deletes the specified connection. Deleting a connection only stops the AWS Direct Connect port hour and data transfer charges. If you are partnering with any third parties to connect with the AWS Direct Connect location, you must cancel your service with them separately.
public func deleteConnection(_ input: DeleteConnectionRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<Connection> {
return self.client.execute(operation: "DeleteConnection", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Deletes the specified Direct Connect gateway. You must first delete all virtual interfaces that are attached to the Direct Connect gateway and disassociate all virtual private gateways associated with the Direct Connect gateway.
public func deleteDirectConnectGateway(_ input: DeleteDirectConnectGatewayRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<DeleteDirectConnectGatewayResult> {
return self.client.execute(operation: "DeleteDirectConnectGateway", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Deletes the association between the specified Direct Connect gateway and virtual private gateway. We recommend that you specify the associationID to delete the association. Alternatively, if you own virtual gateway and a Direct Connect gateway association, you can specify the virtualGatewayId and directConnectGatewayId to delete an association.
public func deleteDirectConnectGatewayAssociation(_ input: DeleteDirectConnectGatewayAssociationRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<DeleteDirectConnectGatewayAssociationResult> {
return self.client.execute(operation: "DeleteDirectConnectGatewayAssociation", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Deletes the association proposal request between the specified Direct Connect gateway and virtual private gateway or transit gateway.
public func deleteDirectConnectGatewayAssociationProposal(_ input: DeleteDirectConnectGatewayAssociationProposalRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<DeleteDirectConnectGatewayAssociationProposalResult> {
return self.client.execute(operation: "DeleteDirectConnectGatewayAssociationProposal", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Deletes the specified interconnect. Intended for use by AWS Direct Connect Partners only.
public func deleteInterconnect(_ input: DeleteInterconnectRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<DeleteInterconnectResponse> {
return self.client.execute(operation: "DeleteInterconnect", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Deletes the specified link aggregation group (LAG). You cannot delete a LAG if it has active virtual interfaces or hosted connections.
public func deleteLag(_ input: DeleteLagRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<Lag> {
return self.client.execute(operation: "DeleteLag", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Deletes a virtual interface.
public func deleteVirtualInterface(_ input: DeleteVirtualInterfaceRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<DeleteVirtualInterfaceResponse> {
return self.client.execute(operation: "DeleteVirtualInterface", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Deprecated. Use DescribeLoa instead. Gets the LOA-CFA for a connection. The Letter of Authorization - Connecting Facility Assignment (LOA-CFA) is a document that your APN partner or service provider uses when establishing your cross connect to AWS at the colocation facility. For more information, see Requesting Cross Connects at AWS Direct Connect Locations in the AWS Direct Connect User Guide.
@available(*, deprecated, message: "DescribeConnectionLoa is deprecated.")
public func describeConnectionLoa(_ input: DescribeConnectionLoaRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<DescribeConnectionLoaResponse> {
return self.client.execute(operation: "DescribeConnectionLoa", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Displays the specified connection or all connections in this Region.
public func describeConnections(_ input: DescribeConnectionsRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<Connections> {
return self.client.execute(operation: "DescribeConnections", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Deprecated. Use DescribeHostedConnections instead. Lists the connections that have been provisioned on the specified interconnect. Intended for use by AWS Direct Connect Partners only.
@available(*, deprecated, message: "DescribeConnectionsOnInterconnect is deprecated.")
public func describeConnectionsOnInterconnect(_ input: DescribeConnectionsOnInterconnectRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<Connections> {
return self.client.execute(operation: "DescribeConnectionsOnInterconnect", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Describes one or more association proposals for connection between a virtual private gateway or transit gateway and a Direct Connect gateway.
public func describeDirectConnectGatewayAssociationProposals(_ input: DescribeDirectConnectGatewayAssociationProposalsRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<DescribeDirectConnectGatewayAssociationProposalsResult> {
return self.client.execute(operation: "DescribeDirectConnectGatewayAssociationProposals", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Lists the associations between your Direct Connect gateways and virtual private gateways and transit gateways. You must specify one of the following: A Direct Connect gateway The response contains all virtual private gateways and transit gateways associated with the Direct Connect gateway. A virtual private gateway The response contains the Direct Connect gateway. A transit gateway The response contains the Direct Connect gateway. A Direct Connect gateway and a virtual private gateway The response contains the association between the Direct Connect gateway and virtual private gateway. A Direct Connect gateway and a transit gateway The response contains the association between the Direct Connect gateway and transit gateway.
public func describeDirectConnectGatewayAssociations(_ input: DescribeDirectConnectGatewayAssociationsRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<DescribeDirectConnectGatewayAssociationsResult> {
return self.client.execute(operation: "DescribeDirectConnectGatewayAssociations", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Lists the attachments between your Direct Connect gateways and virtual interfaces. You must specify a Direct Connect gateway, a virtual interface, or both. If you specify a Direct Connect gateway, the response contains all virtual interfaces attached to the Direct Connect gateway. If you specify a virtual interface, the response contains all Direct Connect gateways attached to the virtual interface. If you specify both, the response contains the attachment between the Direct Connect gateway and the virtual interface.
public func describeDirectConnectGatewayAttachments(_ input: DescribeDirectConnectGatewayAttachmentsRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<DescribeDirectConnectGatewayAttachmentsResult> {
return self.client.execute(operation: "DescribeDirectConnectGatewayAttachments", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Lists all your Direct Connect gateways or only the specified Direct Connect gateway. Deleted Direct Connect gateways are not returned.
public func describeDirectConnectGateways(_ input: DescribeDirectConnectGatewaysRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<DescribeDirectConnectGatewaysResult> {
return self.client.execute(operation: "DescribeDirectConnectGateways", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Lists the hosted connections that have been provisioned on the specified interconnect or link aggregation group (LAG). Intended for use by AWS Direct Connect Partners only.
public func describeHostedConnections(_ input: DescribeHostedConnectionsRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<Connections> {
return self.client.execute(operation: "DescribeHostedConnections", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Deprecated. Use DescribeLoa instead. Gets the LOA-CFA for the specified interconnect. The Letter of Authorization - Connecting Facility Assignment (LOA-CFA) is a document that is used when establishing your cross connect to AWS at the colocation facility. For more information, see Requesting Cross Connects at AWS Direct Connect Locations in the AWS Direct Connect User Guide.
@available(*, deprecated, message: "DescribeInterconnectLoa is deprecated.")
public func describeInterconnectLoa(_ input: DescribeInterconnectLoaRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<DescribeInterconnectLoaResponse> {
return self.client.execute(operation: "DescribeInterconnectLoa", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Lists the interconnects owned by the AWS account or only the specified interconnect.
public func describeInterconnects(_ input: DescribeInterconnectsRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<Interconnects> {
return self.client.execute(operation: "DescribeInterconnects", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Describes all your link aggregation groups (LAG) or the specified LAG.
public func describeLags(_ input: DescribeLagsRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<Lags> {
return self.client.execute(operation: "DescribeLags", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Gets the LOA-CFA for a connection, interconnect, or link aggregation group (LAG). The Letter of Authorization - Connecting Facility Assignment (LOA-CFA) is a document that is used when establishing your cross connect to AWS at the colocation facility. For more information, see Requesting Cross Connects at AWS Direct Connect Locations in the AWS Direct Connect User Guide.
public func describeLoa(_ input: DescribeLoaRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<Loa> {
return self.client.execute(operation: "DescribeLoa", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Lists the AWS Direct Connect locations in the current AWS Region. These are the locations that can be selected when calling CreateConnection or CreateInterconnect.
public func describeLocations(logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<Locations> {
return self.client.execute(operation: "DescribeLocations", path: "/", httpMethod: .POST, serviceConfig: self.config, logger: logger, on: eventLoop)
}
/// Describes the tags associated with the specified AWS Direct Connect resources.
public func describeTags(_ input: DescribeTagsRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<DescribeTagsResponse> {
return self.client.execute(operation: "DescribeTags", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Lists the virtual private gateways owned by the AWS account. You can create one or more AWS Direct Connect private virtual interfaces linked to a virtual private gateway.
public func describeVirtualGateways(logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<VirtualGateways> {
return self.client.execute(operation: "DescribeVirtualGateways", path: "/", httpMethod: .POST, serviceConfig: self.config, logger: logger, on: eventLoop)
}
/// Displays all virtual interfaces for an AWS account. Virtual interfaces deleted fewer than 15 minutes before you make the request are also returned. If you specify a connection ID, only the virtual interfaces associated with the connection are returned. If you specify a virtual interface ID, then only a single virtual interface is returned. A virtual interface (VLAN) transmits the traffic between the AWS Direct Connect location and the customer network.
public func describeVirtualInterfaces(_ input: DescribeVirtualInterfacesRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<VirtualInterfaces> {
return self.client.execute(operation: "DescribeVirtualInterfaces", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Disassociates a connection from a link aggregation group (LAG). The connection is interrupted and re-established as a standalone connection (the connection is not deleted; to delete the connection, use the DeleteConnection request). If the LAG has associated virtual interfaces or hosted connections, they remain associated with the LAG. A disassociated connection owned by an AWS Direct Connect Partner is automatically converted to an interconnect. If disassociating the connection would cause the LAG to fall below its setting for minimum number of operational connections, the request fails, except when it's the last member of the LAG. If all connections are disassociated, the LAG continues to exist as an empty LAG with no physical connections.
public func disassociateConnectionFromLag(_ input: DisassociateConnectionFromLagRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<Connection> {
return self.client.execute(operation: "DisassociateConnectionFromLag", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Removes the association between a MAC Security (MACsec) security key and an AWS Direct Connect dedicated connection.
public func disassociateMacSecKey(_ input: DisassociateMacSecKeyRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<DisassociateMacSecKeyResponse> {
return self.client.execute(operation: "DisassociateMacSecKey", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Lists the virtual interface failover test history.
public func listVirtualInterfaceTestHistory(_ input: ListVirtualInterfaceTestHistoryRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<ListVirtualInterfaceTestHistoryResponse> {
return self.client.execute(operation: "ListVirtualInterfaceTestHistory", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Starts the virtual interface failover test that verifies your configuration meets your resiliency requirements by placing the BGP peering session in the DOWN state. You can then send traffic to verify that there are no outages. You can run the test on public, private, transit, and hosted virtual interfaces. You can use ListVirtualInterfaceTestHistory to view the virtual interface test history. If you need to stop the test before the test interval completes, use StopBgpFailoverTest.
public func startBgpFailoverTest(_ input: StartBgpFailoverTestRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<StartBgpFailoverTestResponse> {
return self.client.execute(operation: "StartBgpFailoverTest", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Stops the virtual interface failover test.
public func stopBgpFailoverTest(_ input: StopBgpFailoverTestRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<StopBgpFailoverTestResponse> {
return self.client.execute(operation: "StopBgpFailoverTest", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Adds the specified tags to the specified AWS Direct Connect resource. Each resource can have a maximum of 50 tags. Each tag consists of a key and an optional value. If a tag with the same key is already associated with the resource, this action updates its value.
public func tagResource(_ input: TagResourceRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<TagResourceResponse> {
return self.client.execute(operation: "TagResource", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Removes one or more tags from the specified AWS Direct Connect resource.
public func untagResource(_ input: UntagResourceRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<UntagResourceResponse> {
return self.client.execute(operation: "UntagResource", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Updates the AWS Direct Connect dedicated connection configuration. You can update the following parameters for a connection: The connection name The connection's MAC Security (MACsec) encryption mode.
public func updateConnection(_ input: UpdateConnectionRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<Connection> {
return self.client.execute(operation: "UpdateConnection", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Updates the specified attributes of the Direct Connect gateway association. Add or remove prefixes from the association.
public func updateDirectConnectGatewayAssociation(_ input: UpdateDirectConnectGatewayAssociationRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<UpdateDirectConnectGatewayAssociationResult> {
return self.client.execute(operation: "UpdateDirectConnectGatewayAssociation", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Updates the attributes of the specified link aggregation group (LAG). You can update the following LAG attributes: The name of the LAG. The value for the minimum number of connections that must be operational for the LAG itself to be operational. The LAG's MACsec encryption mode. AWS assigns this value to each connection which is part of the LAG. The tags If you adjust the threshold value for the minimum number of operational connections, ensure that the new value does not cause the LAG to fall below the threshold and become non-operational.
public func updateLag(_ input: UpdateLagRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<Lag> {
return self.client.execute(operation: "UpdateLag", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
/// Updates the specified attributes of the specified virtual private interface. Setting the MTU of a virtual interface to 9001 (jumbo frames) can cause an update to the underlying physical connection if it wasn't updated to support jumbo frames. Updating the connection disrupts network connectivity for all virtual interfaces associated with the connection for up to 30 seconds. To check whether your connection supports jumbo frames, call DescribeConnections. To check whether your virtual q interface supports jumbo frames, call DescribeVirtualInterfaces.
public func updateVirtualInterfaceAttributes(_ input: UpdateVirtualInterfaceAttributesRequest, logger: Logger = AWSClient.loggingDisabled, on eventLoop: EventLoop? = nil) -> EventLoopFuture<VirtualInterface> {
return self.client.execute(operation: "UpdateVirtualInterfaceAttributes", path: "/", httpMethod: .POST, serviceConfig: self.config, input: input, logger: logger, on: eventLoop)
}
}
extension DirectConnect {
/// Initializer required by `AWSService.with(middlewares:timeout:byteBufferAllocator:options)`. You are not able to use this initializer directly as there are no public
/// initializers for `AWSServiceConfig.Patch`. Please use `AWSService.with(middlewares:timeout:byteBufferAllocator:options)` instead.
public init(from: DirectConnect, patch: AWSServiceConfig.Patch) {
self.client = from.client
self.config = from.config.with(patch: patch)
}
}
| 132.968 | 1,467 | 0.779436 |
581d5acf1303ad20c0b368d10d902f3da7e9c269 | 147 | h | C | vis_classic/LogBarTable.h | WACUP/vis_classic | 1e16c248b06d85625d5f7a47c218e29f9d27378e | [
"MIT"
] | 6 | 2018-11-11T06:51:20.000Z | 2022-02-12T17:59:17.000Z | vis_classic/LogBarTable.h | WACUP/vis_classic | 1e16c248b06d85625d5f7a47c218e29f9d27378e | [
"MIT"
] | null | null | null | vis_classic/LogBarTable.h | WACUP/vis_classic | 1e16c248b06d85625d5f7a47c218e29f9d27378e | [
"MIT"
] | null | null | null | void LogBarValueTable(unsigned int nFftSize, unsigned int nSampleRate, unsigned int nLastBarCutHz, unsigned int nBars, unsigned int *pnBarTable);
| 73.5 | 146 | 0.829932 |
e554b8385c960287feaa53ddaf71ac2cedadc0f5 | 1,883 | ts | TypeScript | solutions/day03.ts | GiyoMoon/aoc2021 | 83d7e9018ed3b628353bc9a0a37b70a1462ecd74 | [
"Unlicense"
] | null | null | null | solutions/day03.ts | GiyoMoon/aoc2021 | 83d7e9018ed3b628353bc9a0a37b70a1462ecd74 | [
"Unlicense"
] | 1 | 2022-02-03T11:04:17.000Z | 2022-02-03T11:04:17.000Z | solutions/day03.ts | GiyoMoon/aoc2021 | 83d7e9018ed3b628353bc9a0a37b70a1462ecd74 | [
"Unlicense"
] | null | null | null | export default class Day3 {
private _binaryInput: string[];
public solve(input: string): { part1: any, part2: any; } {
this._binaryInput = input.split('\n');
// part 1
let bitCounts = new Array(this._binaryInput[0].length).fill(0);
this._binaryInput.forEach((bit) => {
const dArray = bit.split('');
dArray.forEach((bit, i) => {
if (bit === '1') {
bitCounts[i] += 1;
};
});
});
const inputCount = this._binaryInput.length;
let gamma = '';
let epsilon = '';
bitCounts.forEach((b) => {
if (b >= inputCount / 2) {
gamma += '1';
epsilon += '0';
} else {
gamma += '0';
epsilon += '1';
}
});
const part1Result = parseInt(gamma, 2) * parseInt(epsilon, 2);
// part 2
const generatorRating = this._getRating(1);
const scrubberRating = this._getRating(0);
const part2Result = parseInt(generatorRating, 2) * parseInt(scrubberRating, 2);
return { part1: part1Result, part2: part2Result };
}
private _getRating(lookingFor: number) {
let filteredInput = [...this._binaryInput];
for (let i = 0; filteredInput.length > 1; i++) {
const mostCommon = this._getMostCommonBit(filteredInput, i, lookingFor);
filteredInput = filteredInput.filter(v => {
const vArray = v.split('');
return vArray[i] === mostCommon;
});
}
return filteredInput[0];
}
private _getMostCommonBit(numbers: string[], index: number, lookingFor: number) {
const totalNumbers = numbers.length;
let bits = 0;
numbers.forEach(n => {
if (n[index] === '1') {
bits++;
};
});
let number;
if (lookingFor === 1) {
number = bits >= totalNumbers / 2 ? 1 : 0;
} else {
number = bits >= totalNumbers / 2 ? 0 : 1;
}
return number.toString();
}
}
| 25.445946 | 83 | 0.560807 |
643f5031c12fbe271e5d8702698430ae506699c7 | 843 | swift | Swift | ModelingAndBinding-Starter/ModelingAndBinding/Post.swift | SmallwolfiOS/IGListKit-Binding-Guide | c0a9c4b3553364887f0ab0989c1fb0086d543ff0 | [
"MIT"
] | null | null | null | ModelingAndBinding-Starter/ModelingAndBinding/Post.swift | SmallwolfiOS/IGListKit-Binding-Guide | c0a9c4b3553364887f0ab0989c1fb0086d543ff0 | [
"MIT"
] | null | null | null | ModelingAndBinding-Starter/ModelingAndBinding/Post.swift | SmallwolfiOS/IGListKit-Binding-Guide | c0a9c4b3553364887f0ab0989c1fb0086d543ff0 | [
"MIT"
] | null | null | null | //
// Post.swift
// ModelingAndBinding
//
// Created by 马海平 on 2021/5/24.
// Copyright © 2021 Ryan Nystrom. All rights reserved.
//
import Foundation
import IGListKit
final class Post : ListDiffable {
let username : String
let timestamp: String
let imageURL: URL
let likes: Int
let comments: [Comment]
init(username: String, timestamp: String, imageURL: URL, likes: Int, comments: [Comment]) {
self.username = username
self.timestamp = timestamp
self.imageURL = imageURL
self.likes = likes
self.comments = comments
}
// MARK: ListDiffable
func diffIdentifier() -> NSObjectProtocol {
// 1
return (username + timestamp) as NSObjectProtocol
}
// 2
func isEqual(toDiffableObject object: ListDiffable?) -> Bool {
return true
}
}
| 22.184211 | 95 | 0.639383 |
1632750e17d2195855b8a96aea4496fc5e9e2cdb | 1,511 | ts | TypeScript | src/sagas/spotifyFetch.ts | eivhyl/spotify-organizer | c028aaa86eae03a85445ae8d7daed2fd7a19b56c | [
"MIT"
] | 2 | 2017-10-11T22:24:44.000Z | 2018-01-24T15:30:05.000Z | src/sagas/spotifyFetch.ts | eivhyl/spotify-organizer | c028aaa86eae03a85445ae8d7daed2fd7a19b56c | [
"MIT"
] | 2 | 2017-08-15T22:29:15.000Z | 2017-08-21T21:27:31.000Z | src/sagas/spotifyFetch.ts | eivhyl/spotify-organizer | c028aaa86eae03a85445ae8d7daed2fd7a19b56c | [
"MIT"
] | null | null | null | import { SagaIterator } from 'redux-saga'
import { call, put, select } from 'typed-redux-saga'
import { Actions } from '~/actions'
import { loginLink } from '~/consts'
import { State } from '~/types'
import { sleep } from '~/utils'
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-constraint
export function* spotifyFetch<T extends unknown> (
url: string,
options: RequestInit = {},
apiToken?: string
): SagaIterator<T | null> {
const userToken = yield* select((state: State) => state.user && state.user.token)
const token = apiToken || userToken || localStorage.getItem('token')
if (!token) {
throw new Error(`${spotifyFetch.name}:Token not found`)
}
const headers = new Headers({ Authorization: `Bearer ${token}` })
const response = yield* call(fetch, `https://api.spotify.com/v1/${url}`, { headers, ...options })
let body = null
if (response.status !== 204) {
body = yield* call(response.json.bind(response))
}
switch (response.status) {
case 200:
case 304:
return body as T
case 204:
return null
case 401:
yield* put(Actions.logout())
setTimeout(() => window.open(loginLink(), '_self'), 5000)
break
case 429: {
const waitTime = Number.parseInt(response.headers.get('Retry-After') || '10', 10)
yield* put(Actions.startTimer(waitTime))
yield* call(sleep, waitTime * 1000)
const next = yield* call(spotifyFetch, url, options, token)
return next as T | null
}
default:
throw new Error(body.error.message)
}
return null
}
| 29.057692 | 98 | 0.677035 |
9b9e618a216cb0685c5b97bc9681f980c465311b | 912 | js | JavaScript | ntut/ex6.js | Dancore/scripts | 08d4eb0cc50720180b7d63cdd57266838607cd87 | [
"MIT"
] | null | null | null | ntut/ex6.js | Dancore/scripts | 08d4eb0cc50720180b7d63cdd57266838607cd87 | [
"MIT"
] | null | null | null | ntut/ex6.js | Dancore/scripts | 08d4eb0cc50720180b7d63cdd57266838607cd87 | [
"MIT"
] | null | null | null | var crypto = require('crypto')
//var path = require('path')
//var express = require('express')
var app = require('express')()
app.listen(process.argv[2])
app.put('/message/:id', function(req, res) {
var h = crypto.createHash('sha1')
.update(new Date().toDateString() + req.params.id)
.digest('hex')
res.send(h)
});
app.get('/', function(req, res) {
res.send("<a href='/form'>form</a>")
});
/*
Create an Express.js server that processes PUT '/message/:id' requests, e.g., PUT '/message/526aa677a8ceb64569c9d4fb'
As the response of this request return id SHA1 hashed with a date:
require('crypto')
.createHash('sha1')
.update(new Date().toDateString() + id)
.digest('hex')
-----------------------------
HINTS
To handle PUT requests use:
app.put('/path/:NAME', function(req, res){...});
To extract parameters from within the request handlers, use:
req.params.NAME
*/
| 20.266667 | 117 | 0.633772 |
39d5fbbc837d350355c44821a318222dae808961 | 3,614 | java | Java | jp/cssj/homare/impl/a/c/d/f.java | MewX/contendo-viewer-v1.6.3 | 69fba3cea4f9a43e48f43148774cfa61b388e7de | [
"Apache-2.0"
] | 2 | 2021-07-16T10:43:25.000Z | 2021-12-15T13:54:10.000Z | jp/cssj/homare/impl/a/c/d/f.java | MewX/contendo-viewer-v1.6.3 | 69fba3cea4f9a43e48f43148774cfa61b388e7de | [
"Apache-2.0"
] | 1 | 2021-10-12T22:24:55.000Z | 2021-10-12T22:24:55.000Z | jp/cssj/homare/impl/a/c/d/f.java | MewX/contendo-viewer-v1.6.3 | 69fba3cea4f9a43e48f43148774cfa61b388e7de | [
"Apache-2.0"
] | null | null | null | /* */ package jp.cssj.homare.impl.a.c.d;
/* */
/* */ import java.net.URI;
/* */ import jp.cssj.homare.css.c.d;
/* */ import jp.cssj.homare.css.c.j;
/* */ import jp.cssj.homare.css.c.l;
/* */ import jp.cssj.homare.css.c.o;
/* */ import jp.cssj.homare.css.e.a;
/* */ import jp.cssj.homare.css.e.c;
/* */ import jp.cssj.homare.css.f.C;
/* */ import jp.cssj.homare.css.f.E;
/* */ import jp.cssj.homare.css.f.aa;
/* */ import jp.cssj.homare.css.f.ad;
/* */ import jp.cssj.homare.css.f.i;
/* */ import jp.cssj.homare.css.f.n;
/* */ import jp.cssj.homare.impl.a.c.g;
/* */ import jp.cssj.homare.impl.a.c.h;
/* */ import jp.cssj.homare.impl.a.c.j;
/* */ import jp.cssj.homare.impl.a.c.k;
/* */ import jp.cssj.homare.impl.a.c.l;
/* */ import jp.cssj.homare.impl.a.c.m;
/* */ import jp.cssj.homare.impl.a.c.n;
/* */ import jp.cssj.homare.impl.a.c.o;
/* */ import jp.cssj.homare.impl.a.c.q;
/* */ import jp.cssj.homare.impl.a.c.r;
/* */ import jp.cssj.homare.impl.a.c.s;
/* */ import jp.cssj.homare.ua.m;
/* */ import jp.cssj.sakae.sac.css.LexicalUnit;
/* */
/* */ public class f
/* */ extends d
/* */ {
/* 33 */ public static final o a = (o)new f();
/* */
/* */ protected f() {
/* 36 */ super("border"); } public void a(LexicalUnit lu, m ua, URI uri, d.a primitives) throws l {
/* */ E e;
/* */ i i;
/* */ n n;
/* 40 */ if (lu.getLexicalUnitType() == 12) {
/* 41 */ primitives.a(l.a, (ad)C.a);
/* 42 */ primitives.a((j)k.a, (ad)C.a);
/* 43 */ primitives.a(j.a, (ad)C.a);
/* 44 */ primitives.a(s.a, (ad)C.a);
/* 45 */ primitives.a(r.a, (ad)C.a);
/* 46 */ primitives.a(q.a, (ad)C.a);
/* 47 */ primitives.a(o.a, (ad)C.a);
/* 48 */ primitives.a(n.a, (ad)C.a);
/* 49 */ primitives.a(m.a, (ad)C.a);
/* 50 */ primitives.a(h.a, (ad)C.a);
/* 51 */ primitives.a((j)g.a, (ad)C.a);
/* 52 */ primitives.a(jp.cssj.homare.impl.a.c.f.a, (ad)C.a);
/* */
/* */ return;
/* */ }
/* 56 */ ad width = null;
/* 57 */ ad styleValue = null;
/* 58 */ ad color = null;
/* 59 */ for (; lu != null; lu = lu.getNextLexicalUnit()) {
/* 60 */ if (width == null) {
/* 61 */ e = a.a(ua, lu);
/* 62 */ if (e != null) {
/* */ continue;
/* */ }
/* */ }
/* 66 */ if (styleValue == null) {
/* 67 */ i = a.a(lu);
/* 68 */ if (i != null) {
/* */ continue;
/* */ }
/* */ }
/* 72 */ if (color == null) {
/* 73 */ if (c.a(lu)) {
/* 74 */ aa aa = aa.a;
/* */ } else {
/* 76 */ n = c.a(ua, lu);
/* */ }
/* 78 */ if (n != null) {
/* */ continue;
/* */ }
/* */ }
/* 82 */ throw new l();
/* */ }
/* */
/* 85 */ primitives.a(l.a, (ad)e);
/* 86 */ primitives.a(s.a, (ad)e);
/* 87 */ primitives.a(o.a, (ad)e);
/* 88 */ primitives.a(h.a, (ad)e);
/* 89 */ primitives.a((j)k.a, (ad)i);
/* 90 */ primitives.a(r.a, (ad)i);
/* 91 */ primitives.a(n.a, (ad)i);
/* 92 */ primitives.a((j)g.a, (ad)i);
/* 93 */ primitives.a(j.a, (ad)n);
/* 94 */ primitives.a(q.a, (ad)n);
/* 95 */ primitives.a(m.a, (ad)n);
/* 96 */ primitives.a(jp.cssj.homare.impl.a.c.f.a, (ad)n);
/* */ }
/* */ }
/* Location: /mnt/r/ConTenDoViewer.jar!/jp/cssj/homare/impl/a/c/d/f.class
* Java compiler version: 8 (52.0)
* JD-Core Version: 1.1.3
*/ | 34.75 | 103 | 0.446873 |
165b21a6a61d95057b06a4fa4d2fb2ffb0cc1283 | 77 | ts | TypeScript | _posts/test-ts.ts | yuccie/promise | 3ff33b53c3024ac7b2dd602d5b907b56b637d46f | [
"CC-BY-4.0"
] | null | null | null | _posts/test-ts.ts | yuccie/promise | 3ff33b53c3024ac7b2dd602d5b907b56b637d46f | [
"CC-BY-4.0"
] | 1 | 2020-06-14T13:41:18.000Z | 2020-06-14T13:41:18.000Z | _posts/test-ts.ts | yuccie/promise | 3ff33b53c3024ac7b2dd602d5b907b56b637d46f | [
"CC-BY-4.0"
] | 1 | 2019-05-20T09:13:03.000Z | 2019-05-20T09:13:03.000Z | enum Color {Red = 1, Green, Blue}
let c: Color = Color.Green;
console.log(c); | 25.666667 | 33 | 0.675325 |
74bc524e6928c391f5254f2758457f17570a3d30 | 1,045 | kt | Kotlin | libraries/stdlib/common/test/jsCollectionFactories.kt | sschuberth/kotlin | 2a0b7e293fce018778310e4d45199e97d76d2fcb | [
"Apache-2.0"
] | null | null | null | libraries/stdlib/common/test/jsCollectionFactories.kt | sschuberth/kotlin | 2a0b7e293fce018778310e4d45199e97d76d2fcb | [
"Apache-2.0"
] | null | null | null | libraries/stdlib/common/test/jsCollectionFactories.kt | sschuberth/kotlin | 2a0b7e293fce018778310e4d45199e97d76d2fcb | [
"Apache-2.0"
] | null | null | null | /*
* Copyright 2010-2017 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package test.collections.js
// TODO: These have actuals only in JVM tests, and in JS they are in stdlib
public expect fun <V> stringMapOf(vararg pairs: Pair<String, V>): HashMap<String, V>
public expect fun <V> linkedStringMapOf(vararg pairs: Pair<String, V>): LinkedHashMap<String, V>
public expect fun stringSetOf(vararg elements: String): HashSet<String>
public expect fun linkedStringSetOf(vararg elements: String): LinkedHashSet<String>
| 43.541667 | 96 | 0.758852 |
5c6e339ab9d0c72d8cea145deca6f06ccbf77743 | 377 | c | C | 004MCU2/016RTC/Core/Src/it.c | igor-almeida-github/meus-projetos-com-microcontroladores-ARM | b5ecbc52ff9d1e665fe5c6b381938ad58f710c20 | [
"MIT"
] | null | null | null | 004MCU2/016RTC/Core/Src/it.c | igor-almeida-github/meus-projetos-com-microcontroladores-ARM | b5ecbc52ff9d1e665fe5c6b381938ad58f710c20 | [
"MIT"
] | null | null | null | 004MCU2/016RTC/Core/Src/it.c | igor-almeida-github/meus-projetos-com-microcontroladores-ARM | b5ecbc52ff9d1e665fe5c6b381938ad58f710c20 | [
"MIT"
] | null | null | null | /*
* it.c
*
* Created on: Jul 6, 2021
* Author: igor
*/
#include "stm32f4xx_hal.h"
extern RTC_HandleTypeDef hrtc;
void SysTick_Handler(void){
HAL_IncTick();
HAL_SYSTICK_IRQHandler();
}
void EXTI0_IRQHandler(void){
// Button pressed interrupt handler
HAL_GPIO_EXTI_IRQHandler(GPIO_PIN_0);
}
void RTC_Alarm_IRQHandler(void){
HAL_RTC_AlarmIRQHandler(&hrtc);
}
| 15.708333 | 38 | 0.732095 |
905fba1e97ed2cc13e9e6abb7cb754f1154f2ab0 | 429 | py | Python | hard-gists/814599/snippet.py | jjhenkel/dockerizeme | eaa4fe5366f6b9adf74399eab01c712cacaeb279 | [
"Apache-2.0"
] | 21 | 2019-07-08T08:26:45.000Z | 2022-01-24T23:53:25.000Z | hard-gists/814599/snippet.py | jjhenkel/dockerizeme | eaa4fe5366f6b9adf74399eab01c712cacaeb279 | [
"Apache-2.0"
] | 5 | 2019-06-15T14:47:47.000Z | 2022-02-26T05:02:56.000Z | hard-gists/814599/snippet.py | jjhenkel/dockerizeme | eaa4fe5366f6b9adf74399eab01c712cacaeb279 | [
"Apache-2.0"
] | 17 | 2019-05-16T03:50:34.000Z | 2021-01-14T14:35:12.000Z |
from MySQLdb.cursors import SSDictCursor
def iterate_query(query, connection, arraysize=1):
c = connection.cursor(cursorclass=SSDictCursor)
c.execute(query)
while True:
nextrows = c.fetchmany(arraysize)
if not nextrows:
break
for row in nextrows:
yield row
c.close()
results = iterate_query(SQL, conn, arraysize=100)
for row_dict in results:
print row_dict
| 22.578947 | 51 | 0.666667 |
d8bfd3595c7d4ae37cc5727d374c7e59cf659ff5 | 20,794 | sql | SQL | APEX/f402/application/pages/page_00024.sql | jariolaine/APEX-Blog | 46ddc7ab5d336690a90ddf7f21b6da0f041e61fc | [
"MIT"
] | null | null | null | APEX/f402/application/pages/page_00024.sql | jariolaine/APEX-Blog | 46ddc7ab5d336690a90ddf7f21b6da0f041e61fc | [
"MIT"
] | null | null | null | APEX/f402/application/pages/page_00024.sql | jariolaine/APEX-Blog | 46ddc7ab5d336690a90ddf7f21b6da0f041e61fc | [
"MIT"
] | null | null | null | prompt --application/pages/page_00024
begin
-- Manifest
-- PAGE: 00024
-- Manifest End
wwv_flow_api.component_begin (
p_version_yyyy_mm_dd=>'2021.10.15'
,p_release=>'21.2.6'
,p_default_workspace_id=>18303204396897713
,p_default_application_id=>402
,p_default_id_offset=>0
,p_default_owner=>'BLOG_040000'
);
wwv_flow_api.create_page(
p_id=>24
,p_user_interface_id=>wwv_flow_api.id(8571044485518264)
,p_name=>'Post Tags'
,p_alias=>'POST-TAGS'
,p_page_mode=>'MODAL'
,p_step_title=>'Post Tags'
,p_autocomplete_on_off=>'OFF'
,p_javascript_code=>wwv_flow_string.join(wwv_flow_t_varchar2(
'blog.admin.dialogIG.initOnPageLoad({',
' regionID: "tags"',
' ,sequenceField: "DISPLAY_SEQ"',
'});'))
,p_step_template=>wwv_flow_api.id(8456403392518180)
,p_page_template_options=>'#DEFAULT#:t-Dialog--noPadding'
,p_protection_level=>'C'
,p_last_updated_by=>'LAINFJAR'
,p_last_upd_yyyymmddhh24miss=>'20220507104043'
);
wwv_flow_api.create_page_plug(
p_id=>wwv_flow_api.id(12514339082984049)
,p_plug_name=>'Tags'
,p_region_name=>'tags'
,p_region_template_options=>'#DEFAULT#:margin-bottom-none'
,p_plug_template=>wwv_flow_api.id(8495746153518209)
,p_plug_display_sequence=>10
,p_include_in_reg_disp_sel_yn=>'Y'
,p_query_type=>'SQL'
,p_plug_source=>wwv_flow_string.join(wwv_flow_t_varchar2(
'select v1.id as id',
' ,v1.tag_id as tag_id',
' ,v1.post_id as post_id',
' ,v1.row_version as row_version',
' ,v1.created_on as created_on',
' ,v1.created_by as created_by',
' ,v1.changed_on as changed_on',
' ,v1.changed_by as changed_by',
' ,v1.is_active as is_active',
' ,v1.display_seq as display_seq',
' ,v1.tag as tag',
'from blog_v_all_post_tags v1',
'where 1 = 1',
'and v1.post_id = :P24_POST_ID'))
,p_plug_source_type=>'NATIVE_IG'
,p_plug_query_options=>'DERIVED_REPORT_COLUMNS'
,p_prn_units=>'INCHES'
,p_prn_paper_size=>'LETTER'
,p_prn_width=>11
,p_prn_height=>8.5
,p_prn_orientation=>'HORIZONTAL'
,p_prn_page_header=>'Tags'
,p_prn_page_header_font_color=>'#000000'
,p_prn_page_header_font_family=>'Helvetica'
,p_prn_page_header_font_weight=>'normal'
,p_prn_page_header_font_size=>'12'
,p_prn_page_footer_font_color=>'#000000'
,p_prn_page_footer_font_family=>'Helvetica'
,p_prn_page_footer_font_weight=>'normal'
,p_prn_page_footer_font_size=>'12'
,p_prn_header_bg_color=>'#EEEEEE'
,p_prn_header_font_color=>'#000000'
,p_prn_header_font_family=>'Helvetica'
,p_prn_header_font_weight=>'bold'
,p_prn_header_font_size=>'10'
,p_prn_body_bg_color=>'#FFFFFF'
,p_prn_body_font_color=>'#000000'
,p_prn_body_font_family=>'Helvetica'
,p_prn_body_font_weight=>'normal'
,p_prn_body_font_size=>'10'
,p_prn_border_width=>.5
,p_prn_page_header_alignment=>'CENTER'
,p_prn_page_footer_alignment=>'CENTER'
,p_prn_border_color=>'#666666'
);
wwv_flow_api.create_region_column(
p_id=>wwv_flow_api.id(13625530959077815)
,p_name=>'ID'
,p_source_type=>'DB_COLUMN'
,p_source_expression=>'ID'
,p_data_type=>'NUMBER'
,p_is_query_only=>false
,p_item_type=>'NATIVE_HIDDEN'
,p_display_sequence=>30
,p_attribute_01=>'Y'
,p_use_as_row_header=>false
,p_enable_sort_group=>false
,p_is_primary_key=>true
,p_duplicate_value=>true
,p_include_in_export=>false
);
wwv_flow_api.create_region_column(
p_id=>wwv_flow_api.id(13625698195077816)
,p_name=>'ROW_VERSION'
,p_source_type=>'DB_COLUMN'
,p_source_expression=>'ROW_VERSION'
,p_data_type=>'NUMBER'
,p_is_query_only=>false
,p_item_type=>'NATIVE_HIDDEN'
,p_display_sequence=>60
,p_attribute_01=>'Y'
,p_use_as_row_header=>false
,p_enable_sort_group=>false
,p_is_primary_key=>false
,p_duplicate_value=>true
,p_include_in_export=>false
);
wwv_flow_api.create_region_column(
p_id=>wwv_flow_api.id(13625777165077817)
,p_name=>'CREATED_ON'
,p_source_type=>'DB_COLUMN'
,p_source_expression=>'CREATED_ON'
,p_data_type=>'TIMESTAMP_LTZ'
,p_is_query_only=>true
,p_item_type=>'NATIVE_DISPLAY_ONLY'
,p_heading=>'Created'
,p_heading_alignment=>'LEFT'
,p_display_sequence=>70
,p_value_alignment=>'LEFT'
,p_attribute_02=>'VALUE'
,p_attribute_05=>'PLAIN'
,p_format_mask=>'&G_USER_DATE_TIME_FORMAT.'
,p_enable_filter=>true
,p_filter_is_required=>false
,p_filter_date_ranges=>'ALL'
,p_filter_lov_type=>'DISTINCT'
,p_use_as_row_header=>false
,p_enable_sort_group=>true
,p_enable_control_break=>true
,p_enable_hide=>true
,p_is_primary_key=>false
,p_include_in_export=>true
);
wwv_flow_api.create_region_column(
p_id=>wwv_flow_api.id(13625889279077818)
,p_name=>'CREATED_BY'
,p_source_type=>'DB_COLUMN'
,p_source_expression=>'CREATED_BY'
,p_data_type=>'VARCHAR2'
,p_is_query_only=>true
,p_item_type=>'NATIVE_DISPLAY_ONLY'
,p_heading=>'Created By'
,p_heading_alignment=>'LEFT'
,p_display_sequence=>80
,p_value_alignment=>'LEFT'
,p_attribute_02=>'VALUE'
,p_attribute_05=>'PLAIN'
,p_enable_filter=>true
,p_filter_operators=>'C:S:CASE_INSENSITIVE:REGEXP'
,p_filter_is_required=>false
,p_filter_text_case=>'MIXED'
,p_filter_lov_type=>'NONE'
,p_use_as_row_header=>false
,p_enable_sort_group=>false
,p_enable_hide=>true
,p_is_primary_key=>false
,p_include_in_export=>true
);
wwv_flow_api.create_region_column(
p_id=>wwv_flow_api.id(13625906051077819)
,p_name=>'CHANGED_ON'
,p_source_type=>'DB_COLUMN'
,p_source_expression=>'CHANGED_ON'
,p_data_type=>'TIMESTAMP_LTZ'
,p_is_query_only=>true
,p_item_type=>'NATIVE_DISPLAY_ONLY'
,p_heading=>'Changed'
,p_heading_alignment=>'LEFT'
,p_display_sequence=>90
,p_value_alignment=>'LEFT'
,p_attribute_02=>'VALUE'
,p_attribute_05=>'PLAIN'
,p_format_mask=>'&G_USER_DATE_TIME_FORMAT.'
,p_enable_filter=>true
,p_filter_is_required=>false
,p_filter_date_ranges=>'ALL'
,p_filter_lov_type=>'DISTINCT'
,p_use_as_row_header=>false
,p_enable_sort_group=>true
,p_enable_control_break=>true
,p_enable_hide=>true
,p_is_primary_key=>false
,p_include_in_export=>true
);
wwv_flow_api.create_region_column(
p_id=>wwv_flow_api.id(13626069536077820)
,p_name=>'CHANGED_BY'
,p_source_type=>'DB_COLUMN'
,p_source_expression=>'CHANGED_BY'
,p_data_type=>'VARCHAR2'
,p_is_query_only=>true
,p_item_type=>'NATIVE_DISPLAY_ONLY'
,p_heading=>'Changed By'
,p_heading_alignment=>'LEFT'
,p_display_sequence=>100
,p_value_alignment=>'LEFT'
,p_attribute_02=>'VALUE'
,p_attribute_05=>'PLAIN'
,p_enable_filter=>true
,p_filter_operators=>'C:S:CASE_INSENSITIVE:REGEXP'
,p_filter_is_required=>false
,p_filter_text_case=>'MIXED'
,p_filter_lov_type=>'NONE'
,p_use_as_row_header=>false
,p_enable_sort_group=>false
,p_enable_hide=>true
,p_is_primary_key=>false
,p_include_in_export=>true
);
wwv_flow_api.create_region_column(
p_id=>wwv_flow_api.id(13626167207077821)
,p_name=>'IS_ACTIVE'
,p_source_type=>'DB_COLUMN'
,p_source_expression=>'IS_ACTIVE'
,p_data_type=>'NUMBER'
,p_is_query_only=>false
,p_item_type=>'NATIVE_YES_NO'
,p_heading=>'Status'
,p_heading_alignment=>'CENTER'
,p_display_sequence=>110
,p_value_alignment=>'CENTER'
,p_attribute_01=>'N'
,p_attribute_02=>'1'
,p_attribute_03=>'Enabled'
,p_attribute_04=>'0'
,p_attribute_05=>'Disabled'
,p_is_required=>true
,p_enable_filter=>true
,p_filter_is_required=>false
,p_filter_lov_type=>'NONE'
,p_use_as_row_header=>false
,p_enable_sort_group=>true
,p_enable_control_break=>true
,p_enable_hide=>true
,p_is_primary_key=>false
,p_default_type=>'STATIC'
,p_default_expression=>'1'
,p_duplicate_value=>true
,p_include_in_export=>true
);
wwv_flow_api.create_region_column(
p_id=>wwv_flow_api.id(13626271109077822)
,p_name=>'DISPLAY_SEQ'
,p_source_type=>'DB_COLUMN'
,p_source_expression=>'DISPLAY_SEQ'
,p_data_type=>'NUMBER'
,p_is_query_only=>false
,p_item_type=>'NATIVE_NUMBER_FIELD'
,p_heading=>'Sequence'
,p_heading_alignment=>'RIGHT'
,p_display_sequence=>120
,p_value_alignment=>'RIGHT'
,p_attribute_03=>'right'
,p_is_required=>true
,p_enable_filter=>true
,p_filter_is_required=>false
,p_filter_lov_type=>'NONE'
,p_use_as_row_header=>false
,p_enable_sort_group=>true
,p_enable_control_break=>true
,p_enable_hide=>true
,p_is_primary_key=>false
,p_duplicate_value=>true
,p_include_in_export=>true
);
wwv_flow_api.create_region_column(
p_id=>wwv_flow_api.id(13626429771077824)
,p_name=>'APEX$ROW_ACTION'
,p_item_type=>'NATIVE_ROW_ACTION'
,p_display_sequence=>20
);
wwv_flow_api.create_region_column(
p_id=>wwv_flow_api.id(13626595482077825)
,p_name=>'APEX$ROW_SELECTOR'
,p_item_type=>'NATIVE_ROW_SELECTOR'
,p_display_sequence=>10
,p_attribute_01=>'Y'
,p_attribute_02=>'Y'
,p_attribute_03=>'N'
);
wwv_flow_api.create_region_column(
p_id=>wwv_flow_api.id(13626707303077827)
,p_name=>'POST_ID'
,p_source_type=>'DB_COLUMN'
,p_source_expression=>'POST_ID'
,p_data_type=>'NUMBER'
,p_is_query_only=>false
,p_item_type=>'NATIVE_HIDDEN'
,p_display_sequence=>50
,p_attribute_01=>'Y'
,p_use_as_row_header=>false
,p_enable_sort_group=>false
,p_is_primary_key=>false
,p_default_type=>'ITEM'
,p_default_expression=>'P24_POST_ID'
,p_duplicate_value=>true
,p_include_in_export=>false
);
wwv_flow_api.create_region_column(
p_id=>wwv_flow_api.id(13628558333077845)
,p_name=>'TAG_DISPLAY'
,p_source_type=>'SQL_EXPRESSION'
,p_source_expression=>'TAG'
,p_data_type=>'VARCHAR2'
,p_item_type=>'NATIVE_POPUP_LOV'
,p_heading=>'Tag'
,p_heading_alignment=>'LEFT'
,p_display_sequence=>150
,p_value_alignment=>'LEFT'
,p_attribute_01=>'DIALOG'
,p_attribute_02=>'FIRST_ROWSET'
,p_attribute_03=>'N'
,p_attribute_04=>'Y'
,p_attribute_05=>'Y'
,p_attribute_06=>'0'
,p_is_required=>true
,p_lov_type=>'SHARED'
,p_lov_id=>wwv_flow_api.id(7140542412077627)
,p_lov_display_extra=>false
,p_lov_display_null=>false
,p_enable_filter=>true
,p_filter_operators=>'C:S:CASE_INSENSITIVE:REGEXP'
,p_filter_is_required=>false
,p_filter_text_case=>'MIXED'
,p_filter_exact_match=>true
,p_filter_lov_type=>'LOV'
,p_use_as_row_header=>false
,p_enable_sort_group=>true
,p_enable_control_break=>true
,p_enable_hide=>true
,p_include_in_export=>true
);
wwv_flow_api.create_region_column(
p_id=>wwv_flow_api.id(13628690581077846)
,p_name=>'TAG_ID'
,p_source_type=>'DB_COLUMN'
,p_source_expression=>'TAG_ID'
,p_data_type=>'NUMBER'
,p_is_query_only=>false
,p_item_type=>'NATIVE_HIDDEN'
,p_display_sequence=>40
,p_attribute_01=>'Y'
,p_filter_is_required=>false
,p_use_as_row_header=>false
,p_enable_sort_group=>false
,p_is_primary_key=>false
,p_duplicate_value=>true
,p_include_in_export=>false
);
wwv_flow_api.create_region_column(
p_id=>wwv_flow_api.id(13943030769359324)
,p_name=>'TAG'
,p_source_type=>'DB_COLUMN'
,p_source_expression=>'TAG'
,p_data_type=>'VARCHAR2'
,p_is_query_only=>true
,p_item_type=>'NATIVE_HIDDEN'
,p_display_sequence=>140
,p_attribute_01=>'Y'
,p_use_as_row_header=>false
,p_enable_sort_group=>false
,p_is_primary_key=>false
,p_include_in_export=>false
);
wwv_flow_api.create_interactive_grid(
p_id=>wwv_flow_api.id(13625444562077814)
,p_internal_uid=>13625444562077814
,p_is_editable=>true
,p_edit_operations=>'i:u:d'
,p_lost_update_check_type=>'COLUMN'
,p_row_version_column=>'ROW_VERSION'
,p_add_row_if_empty=>true
,p_submit_checked_rows=>false
,p_lazy_loading=>false
,p_requires_filter=>false
,p_select_first_row=>false
,p_fixed_row_height=>true
,p_pagination_type=>'SCROLL'
,p_show_total_row_count=>true
,p_show_toolbar=>true
,p_enable_save_public_report=>false
,p_enable_subscriptions=>true
,p_enable_flashback=>true
,p_define_chart_view=>true
,p_enable_download=>true
,p_download_formats=>'CSV:HTML:XLSX:PDF'
,p_enable_mail_download=>true
,p_fixed_header=>'REGION'
,p_fixed_header_max_height=>440
,p_show_icon_view=>false
,p_show_detail_view=>false
,p_javascript_code=>'blog.admin.dialogIG.initRegion'
);
wwv_flow_api.create_ig_report(
p_id=>wwv_flow_api.id(13643769198297890)
,p_interactive_grid_id=>wwv_flow_api.id(13625444562077814)
,p_static_id=>'136438'
,p_type=>'PRIMARY'
,p_default_view=>'GRID'
,p_show_row_number=>false
,p_settings_area_expanded=>true
);
wwv_flow_api.create_ig_report_view(
p_id=>wwv_flow_api.id(13643904733297892)
,p_report_id=>wwv_flow_api.id(13643769198297890)
,p_view_type=>'GRID'
,p_stretch_columns=>true
,p_srv_exclude_null_values=>false
,p_srv_only_display_columns=>true
,p_edit_mode=>false
);
wwv_flow_api.create_ig_report_column(
p_id=>wwv_flow_api.id(13644479518297903)
,p_view_id=>wwv_flow_api.id(13643904733297892)
,p_display_seq=>2
,p_column_id=>wwv_flow_api.id(13625530959077815)
,p_is_visible=>true
,p_is_frozen=>false
);
wwv_flow_api.create_ig_report_column(
p_id=>wwv_flow_api.id(13645392500297914)
,p_view_id=>wwv_flow_api.id(13643904733297892)
,p_display_seq=>3
,p_column_id=>wwv_flow_api.id(13625698195077816)
,p_is_visible=>true
,p_is_frozen=>false
);
wwv_flow_api.create_ig_report_column(
p_id=>wwv_flow_api.id(13646165301297918)
,p_view_id=>wwv_flow_api.id(13643904733297892)
,p_display_seq=>4
,p_column_id=>wwv_flow_api.id(13625777165077817)
,p_is_visible=>false
,p_is_frozen=>false
);
wwv_flow_api.create_ig_report_column(
p_id=>wwv_flow_api.id(13647069181297921)
,p_view_id=>wwv_flow_api.id(13643904733297892)
,p_display_seq=>5
,p_column_id=>wwv_flow_api.id(13625889279077818)
,p_is_visible=>false
,p_is_frozen=>false
);
wwv_flow_api.create_ig_report_column(
p_id=>wwv_flow_api.id(13647964138297924)
,p_view_id=>wwv_flow_api.id(13643904733297892)
,p_display_seq=>10
,p_column_id=>wwv_flow_api.id(13625906051077819)
,p_is_visible=>true
,p_is_frozen=>false
);
wwv_flow_api.create_ig_report_column(
p_id=>wwv_flow_api.id(13648834398297927)
,p_view_id=>wwv_flow_api.id(13643904733297892)
,p_display_seq=>6
,p_column_id=>wwv_flow_api.id(13626069536077820)
,p_is_visible=>false
,p_is_frozen=>false
);
wwv_flow_api.create_ig_report_column(
p_id=>wwv_flow_api.id(13649744400297929)
,p_view_id=>wwv_flow_api.id(13643904733297892)
,p_display_seq=>8
,p_column_id=>wwv_flow_api.id(13626167207077821)
,p_is_visible=>true
,p_is_frozen=>false
,p_width=>96.5
);
wwv_flow_api.create_ig_report_column(
p_id=>wwv_flow_api.id(13650650438297932)
,p_view_id=>wwv_flow_api.id(13643904733297892)
,p_display_seq=>7
,p_column_id=>wwv_flow_api.id(13626271109077822)
,p_is_visible=>true
,p_is_frozen=>false
,p_width=>99.5
,p_sort_order=>1
,p_sort_direction=>'ASC'
,p_sort_nulls=>'LAST'
);
wwv_flow_api.create_ig_report_column(
p_id=>wwv_flow_api.id(13662854095318694)
,p_view_id=>wwv_flow_api.id(13643904733297892)
,p_display_seq=>1
,p_column_id=>wwv_flow_api.id(13626429771077824)
,p_is_visible=>true
,p_is_frozen=>true
);
wwv_flow_api.create_ig_report_column(
p_id=>wwv_flow_api.id(13726555747580565)
,p_view_id=>wwv_flow_api.id(13643904733297892)
,p_display_seq=>11
,p_column_id=>wwv_flow_api.id(13626707303077827)
,p_is_visible=>true
,p_is_frozen=>false
);
wwv_flow_api.create_ig_report_column(
p_id=>wwv_flow_api.id(13848238428054004)
,p_view_id=>wwv_flow_api.id(13643904733297892)
,p_display_seq=>9
,p_column_id=>wwv_flow_api.id(13628558333077845)
,p_is_visible=>true
,p_is_frozen=>false
);
wwv_flow_api.create_ig_report_column(
p_id=>wwv_flow_api.id(13852943182123547)
,p_view_id=>wwv_flow_api.id(13643904733297892)
,p_display_seq=>12
,p_column_id=>wwv_flow_api.id(13628690581077846)
,p_is_visible=>true
,p_is_frozen=>false
);
wwv_flow_api.create_ig_report_column(
p_id=>wwv_flow_api.id(13946730723387499)
,p_view_id=>wwv_flow_api.id(13643904733297892)
,p_display_seq=>13
,p_column_id=>wwv_flow_api.id(13943030769359324)
,p_is_visible=>true
,p_is_frozen=>false
);
wwv_flow_api.create_page_plug(
p_id=>wwv_flow_api.id(23532967552695075)
,p_plug_name=>'Buttons'
,p_region_template_options=>'#DEFAULT#:t-ButtonRegion--slimPadding:t-ButtonRegion--noBorder'
,p_plug_template=>wwv_flow_api.id(8476383962518195)
,p_plug_display_sequence=>20
,p_include_in_reg_disp_sel_yn=>'Y'
,p_translate_title=>'N'
,p_plug_query_options=>'DERIVED_REPORT_COLUMNS'
,p_attribute_01=>'N'
,p_attribute_02=>'HTML'
);
wwv_flow_api.create_page_button(
p_id=>wwv_flow_api.id(13699151301479852)
,p_button_sequence=>10
,p_button_plug_id=>wwv_flow_api.id(23532967552695075)
,p_button_name=>'CLOSE'
,p_button_action=>'REDIRECT_PAGE'
,p_button_template_options=>'#DEFAULT#:t-Button--mobileHideLabel:t-Button--iconRight'
,p_button_template_id=>wwv_flow_api.id(8549262062518244)
,p_button_image_alt=>'Close'
,p_button_position=>'CLOSE'
,p_button_redirect_url=>'f?p=&APP_ID.:11:&SESSION.::&DEBUG.:::'
,p_warn_on_unsaved_changes=>null
,p_icon_css_classes=>'fa-close'
);
wwv_flow_api.create_page_button(
p_id=>wwv_flow_api.id(13763252702955774)
,p_button_sequence=>10
,p_button_plug_id=>wwv_flow_api.id(23532967552695075)
,p_button_name=>'RESEQUENCE'
,p_button_action=>'DEFINED_BY_DA'
,p_button_template_options=>'#DEFAULT#'
,p_button_template_id=>wwv_flow_api.id(8549081018518243)
,p_button_image_alt=>'Resequence'
,p_button_position=>'NEXT'
,p_warn_on_unsaved_changes=>null
,p_confirm_message=>'Resequence tags, incrementing sequence numbers by 10?'
,p_confirm_style=>'warning'
,p_icon_css_classes=>'fa-sequence'
);
wwv_flow_api.create_page_button(
p_id=>wwv_flow_api.id(13757313568790110)
,p_button_sequence=>20
,p_button_plug_id=>wwv_flow_api.id(23532967552695075)
,p_button_name=>'ADD_ROW'
,p_button_action=>'DEFINED_BY_DA'
,p_button_template_options=>'#DEFAULT#:t-Button--mobileHideLabel:t-Button--iconRight'
,p_button_template_id=>wwv_flow_api.id(8549262062518244)
,p_button_image_alt=>'Add'
,p_button_position=>'NEXT'
,p_warn_on_unsaved_changes=>null
,p_button_css_classes=>'js-actionButton'
,p_icon_css_classes=>'fa-plus'
,p_button_cattributes=>'data-action="ig-selection-add-row"'
);
wwv_flow_api.create_page_button(
p_id=>wwv_flow_api.id(13699981223479858)
,p_button_sequence=>30
,p_button_plug_id=>wwv_flow_api.id(23532967552695075)
,p_button_name=>'SAVE'
,p_button_action=>'DEFINED_BY_DA'
,p_button_template_options=>'#DEFAULT#:t-Button--mobileHideLabel:t-Button--iconRight'
,p_button_template_id=>wwv_flow_api.id(8549262062518244)
,p_button_is_hot=>'Y'
,p_button_image_alt=>'Save'
,p_button_position=>'NEXT'
,p_warn_on_unsaved_changes=>null
,p_button_css_classes=>'js-actionButton'
,p_icon_css_classes=>'fa-save'
,p_button_cattributes=>'data-action="ig-save"'
);
wwv_flow_api.create_page_item(
p_id=>wwv_flow_api.id(13625265121077812)
,p_name=>'P24_POST_ID'
,p_item_sequence=>10
,p_item_plug_id=>wwv_flow_api.id(12514339082984049)
,p_display_as=>'NATIVE_HIDDEN'
,p_protection_level=>'S'
,p_restricted_characters=>'US_ONLY'
,p_attribute_01=>'Y'
);
wwv_flow_api.create_page_da_event(
p_id=>wwv_flow_api.id(13773955386148597)
,p_name=>'Process After Changes'
,p_event_sequence=>10
,p_triggering_element_type=>'REGION'
,p_triggering_region_id=>wwv_flow_api.id(12514339082984049)
,p_bind_type=>'bind'
,p_bind_event_type=>'NATIVE_IG|REGION TYPE|interactivegridsave'
);
wwv_flow_api.create_page_da_action(
p_id=>wwv_flow_api.id(13774393769148606)
,p_event_id=>wwv_flow_api.id(13773955386148597)
,p_event_result=>'TRUE'
,p_action_sequence=>10
,p_execute_on_page_init=>'N'
,p_action=>'NATIVE_EXECUTE_PLSQL_CODE'
,p_attribute_01=>wwv_flow_string.join(wwv_flow_t_varchar2(
'apex_util.cache_purge_by_page(',
' p_application => :G_PUB_APP_ID',
' ,p_page => 0',
');'))
,p_attribute_05=>'PLSQL'
,p_wait_for_result=>'Y'
);
wwv_flow_api.create_page_da_event(
p_id=>wwv_flow_api.id(13628198842077841)
,p_name=>'Resequence'
,p_event_sequence=>20
,p_triggering_element_type=>'BUTTON'
,p_triggering_button_id=>wwv_flow_api.id(13763252702955774)
,p_bind_type=>'bind'
,p_bind_event_type=>'click'
);
wwv_flow_api.create_page_da_action(
p_id=>wwv_flow_api.id(13628296627077842)
,p_event_id=>wwv_flow_api.id(13628198842077841)
,p_event_result=>'TRUE'
,p_action_sequence=>10
,p_execute_on_page_init=>'N'
,p_action=>'NATIVE_EXECUTE_PLSQL_CODE'
,p_attribute_01=>wwv_flow_string.join(wwv_flow_t_varchar2(
'#OWNER#.blog_cm.resequence_tags(',
' p_post_id => :P24_POST_ID',
');'))
,p_attribute_05=>'PLSQL'
,p_wait_for_result=>'Y'
);
wwv_flow_api.create_page_da_action(
p_id=>wwv_flow_api.id(13628332901077843)
,p_event_id=>wwv_flow_api.id(13628198842077841)
,p_event_result=>'TRUE'
,p_action_sequence=>20
,p_execute_on_page_init=>'N'
,p_action=>'NATIVE_REFRESH'
,p_affected_elements_type=>'REGION'
,p_affected_region_id=>wwv_flow_api.id(12514339082984049)
);
wwv_flow_api.create_page_process(
p_id=>wwv_flow_api.id(13628994439077849)
,p_process_sequence=>10
,p_process_point=>'AFTER_SUBMIT'
,p_region_id=>wwv_flow_api.id(12514339082984049)
,p_process_type=>'NATIVE_PLSQL'
,p_process_name=>'Add Tag'
,p_process_sql_clob=>wwv_flow_string.join(wwv_flow_t_varchar2(
'#OWNER#.blog_cm.add_tag(',
' p_tag => :TAG_DISPLAY',
' ,p_tag_id => :TAG_ID',
');'))
,p_process_clob_language=>'PLSQL'
,p_error_display_location=>'INLINE_IN_NOTIFICATION'
);
wwv_flow_api.create_page_process(
p_id=>wwv_flow_api.id(13626641918077826)
,p_process_sequence=>20
,p_process_point=>'AFTER_SUBMIT'
,p_region_id=>wwv_flow_api.id(12514339082984049)
,p_process_type=>'NATIVE_IG_DML'
,p_process_name=>'Tags - Save Interactive Grid Data'
,p_attribute_01=>'REGION_SOURCE'
,p_attribute_05=>'Y'
,p_attribute_06=>'Y'
,p_attribute_08=>'Y'
,p_error_display_location=>'INLINE_IN_NOTIFICATION'
);
wwv_flow_api.component_end;
end;
/
| 29.578947 | 92 | 0.810041 |
b15ebd55ba4d4b5d3e4bb87ac2d6679700b0c572 | 776 | h | C | test/shmmap.h | MengRao/IPC_PubSub | 040d9aa75a6f52fdaad8f7970dbb147628f86f20 | [
"MIT"
] | 23 | 2018-09-16T08:45:51.000Z | 2022-01-19T09:47:37.000Z | test/shmmap.h | MengRao/IPC_PubSub | 040d9aa75a6f52fdaad8f7970dbb147628f86f20 | [
"MIT"
] | 2 | 2022-01-14T14:58:39.000Z | 2022-01-18T05:30:32.000Z | test/shmmap.h | MengRao/IPC_PubSub | 040d9aa75a6f52fdaad8f7970dbb147628f86f20 | [
"MIT"
] | 14 | 2018-09-24T08:06:43.000Z | 2021-12-22T13:58:35.000Z | #pragma once
#include <bits/stdc++.h>
#include <sys/shm.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <unistd.h>
#include <fcntl.h>
template<class T>
T* shmmap(const char * filename) {
int fd = shm_open(filename, O_CREAT | O_RDWR, 0666);
if(fd == -1) {
std::cerr << "shm_open failed: " << strerror(errno) << std::endl;
return nullptr;
}
if(ftruncate(fd, sizeof(T))) {
std::cerr << "ftruncate failed: " << strerror(errno) << std::endl;
close(fd);
return nullptr;
}
T* ret = (T*)mmap(0, sizeof(T), PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
close(fd);
if(ret == MAP_FAILED) {
std::cerr << "mmap failed: " << strerror(errno) << std::endl;
return nullptr;
}
return ret;
}
| 26.758621 | 79 | 0.572165 |
d47f0681ee306a39e8470f02a9e52152f4e545b8 | 6,959 | rs | Rust | src/eeprom/wstate.rs | Tmplt/lpc43xx | bdfce9fbaf2baf49af6367620b61f5351b273f7a | [
"Apache-2.0",
"MIT"
] | null | null | null | src/eeprom/wstate.rs | Tmplt/lpc43xx | bdfce9fbaf2baf49af6367620b61f5351b273f7a | [
"Apache-2.0",
"MIT"
] | 2 | 2018-12-11T20:01:12.000Z | 2018-12-12T14:13:18.000Z | src/eeprom/wstate.rs | Tmplt/lpc43xx | bdfce9fbaf2baf49af6367620b61f5351b273f7a | [
"Apache-2.0",
"MIT"
] | null | null | null | #[doc = r" Value read from the register"]
pub struct R {
bits: u32,
}
#[doc = r" Value to write to the register"]
pub struct W {
bits: u32,
}
impl super::WSTATE {
#[doc = r" Modifies the contents of the register"]
#[inline]
pub fn modify<F>(&self, f: F)
where
for<'w> F: FnOnce(&R, &'w mut W) -> &'w mut W,
{
let bits = self.register.get();
let r = R { bits: bits };
let mut w = W { bits: bits };
f(&r, &mut w);
self.register.set(w.bits);
}
#[doc = r" Reads the contents of the register"]
#[inline]
pub fn read(&self) -> R {
R {
bits: self.register.get(),
}
}
#[doc = r" Writes to the register"]
#[inline]
pub fn write<F>(&self, f: F)
where
F: FnOnce(&mut W) -> &mut W,
{
let mut w = W::reset_value();
f(&mut w);
self.register.set(w.bits);
}
#[doc = r" Writes the reset value to the register"]
#[inline]
pub fn reset(&self) {
self.write(|w| w)
}
}
#[doc = r" Value of the field"]
pub struct PHASE3R {
bits: u8,
}
impl PHASE3R {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bits(&self) -> u8 {
self.bits
}
}
#[doc = r" Value of the field"]
pub struct PHASE2R {
bits: u8,
}
impl PHASE2R {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bits(&self) -> u8 {
self.bits
}
}
#[doc = r" Value of the field"]
pub struct PHASE1R {
bits: u8,
}
impl PHASE1R {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bits(&self) -> u8 {
self.bits
}
}
#[doc = r" Value of the field"]
pub struct LCK_PARWEPR {
bits: bool,
}
impl LCK_PARWEPR {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bit(&self) -> bool {
self.bits
}
#[doc = r" Returns `true` if the bit is clear (0)"]
#[inline]
pub fn bit_is_clear(&self) -> bool {
!self.bit()
}
#[doc = r" Returns `true` if the bit is set (1)"]
#[inline]
pub fn bit_is_set(&self) -> bool {
self.bit()
}
}
#[doc = r" Proxy"]
pub struct _PHASE3W<'a> {
w: &'a mut W,
}
impl<'a> _PHASE3W<'a> {
#[doc = r" Writes raw bits to the field"]
#[inline]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
const MASK: u8 = 255;
const OFFSET: u8 = 0;
self.w.bits &= !((MASK as u32) << OFFSET);
self.w.bits |= ((value & MASK) as u32) << OFFSET;
self.w
}
}
#[doc = r" Proxy"]
pub struct _PHASE2W<'a> {
w: &'a mut W,
}
impl<'a> _PHASE2W<'a> {
#[doc = r" Writes raw bits to the field"]
#[inline]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
const MASK: u8 = 255;
const OFFSET: u8 = 8;
self.w.bits &= !((MASK as u32) << OFFSET);
self.w.bits |= ((value & MASK) as u32) << OFFSET;
self.w
}
}
#[doc = r" Proxy"]
pub struct _PHASE1W<'a> {
w: &'a mut W,
}
impl<'a> _PHASE1W<'a> {
#[doc = r" Writes raw bits to the field"]
#[inline]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
const MASK: u8 = 255;
const OFFSET: u8 = 16;
self.w.bits &= !((MASK as u32) << OFFSET);
self.w.bits |= ((value & MASK) as u32) << OFFSET;
self.w
}
}
#[doc = r" Proxy"]
pub struct _LCK_PARWEPW<'a> {
w: &'a mut W,
}
impl<'a> _LCK_PARWEPW<'a> {
#[doc = r" Sets the field bit"]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r" Clears the field bit"]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r" Writes raw bits to the field"]
#[inline]
pub fn bit(self, value: bool) -> &'a mut W {
const MASK: bool = true;
const OFFSET: u8 = 31;
self.w.bits &= !((MASK as u32) << OFFSET);
self.w.bits |= ((value & MASK) as u32) << OFFSET;
self.w
}
}
impl R {
#[doc = r" Value of the register as raw bits"]
#[inline]
pub fn bits(&self) -> u32 {
self.bits
}
#[doc = "Bits 0:7 - Wait states for phase 3 (minus 1 encoded). The number of system clock periods to meet a duration equal to TPHASE3."]
#[inline]
pub fn phase3(&self) -> PHASE3R {
let bits = {
const MASK: u8 = 255;
const OFFSET: u8 = 0;
((self.bits >> OFFSET) & MASK as u32) as u8
};
PHASE3R { bits }
}
#[doc = "Bits 8:15 - Wait states for phase 2 (minus 1 encoded). The number of system clock periods to meet a duration equal to TPHASE2."]
#[inline]
pub fn phase2(&self) -> PHASE2R {
let bits = {
const MASK: u8 = 255;
const OFFSET: u8 = 8;
((self.bits >> OFFSET) & MASK as u32) as u8
};
PHASE2R { bits }
}
#[doc = "Bits 16:23 - Wait states for phase 1 (minus 1 encoded). The number of system clock periods to meet a duration equal to TPHASE1."]
#[inline]
pub fn phase1(&self) -> PHASE1R {
let bits = {
const MASK: u8 = 255;
const OFFSET: u8 = 16;
((self.bits >> OFFSET) & MASK as u32) as u8
};
PHASE1R { bits }
}
#[doc = "Bit 31 - Lock timing parameters for write, erase and program operation 0 = WSTATE and CLKDIV registers have R/W access 1 = WSTATE and CLKDIV registers have R only access"]
#[inline]
pub fn lck_parwep(&self) -> LCK_PARWEPR {
let bits = {
const MASK: bool = true;
const OFFSET: u8 = 31;
((self.bits >> OFFSET) & MASK as u32) != 0
};
LCK_PARWEPR { bits }
}
}
impl W {
#[doc = r" Reset value of the register"]
#[inline]
pub fn reset_value() -> W {
W { bits: 132610 }
}
#[doc = r" Writes raw bits to the register"]
#[inline]
pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
self.bits = bits;
self
}
#[doc = "Bits 0:7 - Wait states for phase 3 (minus 1 encoded). The number of system clock periods to meet a duration equal to TPHASE3."]
#[inline]
pub fn phase3(&mut self) -> _PHASE3W {
_PHASE3W { w: self }
}
#[doc = "Bits 8:15 - Wait states for phase 2 (minus 1 encoded). The number of system clock periods to meet a duration equal to TPHASE2."]
#[inline]
pub fn phase2(&mut self) -> _PHASE2W {
_PHASE2W { w: self }
}
#[doc = "Bits 16:23 - Wait states for phase 1 (minus 1 encoded). The number of system clock periods to meet a duration equal to TPHASE1."]
#[inline]
pub fn phase1(&mut self) -> _PHASE1W {
_PHASE1W { w: self }
}
#[doc = "Bit 31 - Lock timing parameters for write, erase and program operation 0 = WSTATE and CLKDIV registers have R/W access 1 = WSTATE and CLKDIV registers have R only access"]
#[inline]
pub fn lck_parwep(&mut self) -> _LCK_PARWEPW {
_LCK_PARWEPW { w: self }
}
}
| 28.174089 | 184 | 0.532835 |
b06e83063532e934b05d18c506e9cf12f3c447df | 1,013 | kt | Kotlin | app/src/main/java/com/todoist_android/ui/Extensions.kt | malcolmmaima/Todolist-android | cc8fabfdc7e515be18b79c2a7d6812f2e9f3f1fd | [
"Apache-2.0"
] | null | null | null | app/src/main/java/com/todoist_android/ui/Extensions.kt | malcolmmaima/Todolist-android | cc8fabfdc7e515be18b79c2a7d6812f2e9f3f1fd | [
"Apache-2.0"
] | 13 | 2022-02-18T10:12:14.000Z | 2022-03-24T08:36:47.000Z | app/src/main/java/com/todoist_android/ui/Extensions.kt | malcolmmaima/Todolist-android | cc8fabfdc7e515be18b79c2a7d6812f2e9f3f1fd | [
"Apache-2.0"
] | 2 | 2022-02-18T05:41:36.000Z | 2022-03-10T09:02:00.000Z | package com.todoist_android.ui
import android.content.Context
import android.util.Log
import android.view.View
import android.view.inputmethod.InputMethodManager
import android.widget.EditText
import android.widget.PopupMenu
import android.widget.Toast
import androidx.fragment.app.FragmentManager
import com.google.android.material.datepicker.CalendarConstraints
import com.google.android.material.datepicker.DateValidatorPointForward
import com.google.android.material.datepicker.MaterialDatePicker
import java.text.SimpleDateFormat
import java.util.*
fun EditText.showKeyboard() {
if (requestFocus()) {
(context.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager)
.showSoftInput(this, InputMethodManager.SHOW_IMPLICIT)
setSelection(text.length)
}
}
fun View.hideKeyboard() {
val closeKeyboard =
this.context.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
closeKeyboard.hideSoftInputFromWindow(this.windowToken, 0)
} | 34.931034 | 89 | 0.813425 |
1d4b6e0d51fb10a876c80df23717ca39bb34b01b | 897 | sql | SQL | Basic Join/Challenges.sql | kaushikmrao/-Hackerank-SQL-solutions | 16a27f7dd982497f88d53a267235017bee9d4696 | [
"MIT"
] | 188 | 2019-07-16T15:51:37.000Z | 2022-03-27T17:39:24.000Z | Basic Join/Challenges.sql | kaushikmrao/-Hackerank-SQL-solutions | 16a27f7dd982497f88d53a267235017bee9d4696 | [
"MIT"
] | 8 | 2018-05-20T12:29:43.000Z | 2022-03-31T22:39:17.000Z | Basic Join/Challenges.sql | kaushikmrao/-Hackerank-SQL-solutions | 16a27f7dd982497f88d53a267235017bee9d4696 | [
"MIT"
] | 93 | 2019-01-12T07:09:08.000Z | 2022-03-23T08:16:53.000Z | -- Use HAVING instead of WHERE since we have to filter on groups
-- Split the total number of counts into 2 pieces
-- First piece will be the largest number
-- Second piece will be the number which doesn't repeat (Unique) or is available once
select H.hacker_id, H.name, count(C.challenge_id) as total_count
from Hackers H join Challenges C
on H.hacker_id = C.hacker_id
group by H.hacker_id, H.name
having total_count =
(
select count(temp1.challenge_id) as max_count
from challenges temp1
group by temp1.hacker_id
order by max_count desc
limit 1
)
or total_count in
(
select distinct other_counts from (
select H2.hacker_id, H2.name, count(C2.challenge_id) as other_counts
from Hackers H2 join Challenges C2
on H2.hacker_id = C2.hacker_id
group by H2.hacker_id, H2.name
) temp2
group by other_counts
having count(other_counts) =1)
order by total_count desc, H.hacker_id | 32.035714 | 85 | 0.768116 |
9fd38efc9d90c43e862722d88ac555ca5a4b9260 | 885 | swift | Swift | Repository1/Repository1/Colors.swift | DiAnastasiaVi/Repository1 | 46085f754ef7278c99fb63c9f8bb621b797a54ad | [
"MIT"
] | null | null | null | Repository1/Repository1/Colors.swift | DiAnastasiaVi/Repository1 | 46085f754ef7278c99fb63c9f8bb621b797a54ad | [
"MIT"
] | null | null | null | Repository1/Repository1/Colors.swift | DiAnastasiaVi/Repository1 | 46085f754ef7278c99fb63c9f8bb621b797a54ad | [
"MIT"
] | null | null | null | //
// Colors.swift
// Repository1
//
// Created by Anastasia on 03.01.2022.
//
import UIKit
// MARK: -
// MARK: Color Mode
enum ColorMode {
case dark
case light
}
// MARK: -
// MARK: User Interface Style Property
class Colors {
static let shared = Colors()
private init() { }
// MARK: -
// MARK: Public Properties
public var currentMode: ColorMode = .dark
public var background: UIColor {
switch currentMode {
case .light:
return .systemTeal
case .dark:
return .darkGray
}
}
public var textField: UIColor {
switch currentMode {
case .light:
return .lightText
case .dark:
return .systemTeal
}
}
public var black: UIColor = .black
public var white: UIColor = .white
public var loginButton: UIColor = .systemBlue
}
| 20.113636 | 49 | 0.577401 |
3d6375b6708357a8af74f8a408432482978a4a15 | 1,047 | swift | Swift | Chapter 1 - Arrays And Strings/6-StringCompression.playground/Contents.swift | vasizmeu/CrackingTheCodingInterview | e6ee505bf703ed39714b7ef55ffb3490e0a04450 | [
"MIT"
] | null | null | null | Chapter 1 - Arrays And Strings/6-StringCompression.playground/Contents.swift | vasizmeu/CrackingTheCodingInterview | e6ee505bf703ed39714b7ef55ffb3490e0a04450 | [
"MIT"
] | null | null | null | Chapter 1 - Arrays And Strings/6-StringCompression.playground/Contents.swift | vasizmeu/CrackingTheCodingInterview | e6ee505bf703ed39714b7ef55ffb3490e0a04450 | [
"MIT"
] | null | null | null | import UIKit
// Implement a method to perform basic string compression using the countrs of repeated characters. For example,
// the string aabcccccaaa would become a2b1c5a3. If the "compressed" string would not become smaller than the original string,
// your method should return the original string. You can assume the string has only uppercase and lowercase letters (a-z).
// Solution 1: count while traversing string
func compress(s: String) -> String {
var sum = 1
var index = s.startIndex
var result = String(s[index])
var prevChar = s[index]
index = s.index(after: index)
while index < s.endIndex {
let c = s[index]
if c != prevChar {
result += "\(sum)\(c)"
sum = 1
prevChar = c
} else {
sum += 1
}
index = s.index(after: index)
}
result += "\(sum)"
if result.count > s.count {
return s
} else {
return result
}
}
let s = "aabcccccaaa"
print("\(compress(s: s))")
| 26.175 | 126 | 0.592168 |
74131c265e285eb797c8133ee88415df983fe67f | 876 | c | C | ports/xDMS/source/u_quick.c | phmullins/beos | ab4317f49aed404fe7091e2b24bda381628f17c3 | [
"MIT"
] | null | null | null | ports/xDMS/source/u_quick.c | phmullins/beos | ab4317f49aed404fe7091e2b24bda381628f17c3 | [
"MIT"
] | null | null | null | ports/xDMS/source/u_quick.c | phmullins/beos | ab4317f49aed404fe7091e2b24bda381628f17c3 | [
"MIT"
] | null | null | null |
/*
* xDMS v1.3 - Portable DMS archive unpacker - Public Domain
* Written by Andre Rodrigues de la Rocha <adlroc@usa.net>
*
*
*/
#include <string.h>
#include "cdata.h"
#include "u_quick.h"
#include "getbits.h"
#define QBITMASK 0xff
USHORT quick_text_loc;
USHORT Unpack_QUICK(UCHAR *in, UCHAR *out, USHORT origsize){
USHORT i, j;
UCHAR *outend;
initbitbuf(in);
outend = out+origsize;
while (out < outend) {
if (GETBITS(1)!=0) {
DROPBITS(1);
*out++ = text[quick_text_loc++ & QBITMASK] = (UCHAR)GETBITS(8); DROPBITS(8);
} else {
DROPBITS(1);
j = (USHORT) (GETBITS(2)+2); DROPBITS(2);
i = (USHORT) (quick_text_loc - GETBITS(8) - 1); DROPBITS(8);
while(j--) {
*out++ = text[quick_text_loc++ & QBITMASK] = text[i++ & QBITMASK];
}
}
}
quick_text_loc = (USHORT)((quick_text_loc+5) & QBITMASK);
return 0;
}
| 18.25 | 80 | 0.615297 |
218b2642b2009f57e694b36b3a80a01d98165393 | 3,039 | kt | Kotlin | app/src/main/kotlin/lv/rigadevday/android/ui/tabs/TabActivity.kt | RigaDevDay/riga-dev-day-android | 0900b1ff762d422ab210ef62a2dcad7f21805fce | [
"MIT"
] | 6 | 2015-11-30T17:43:52.000Z | 2018-04-23T08:06:38.000Z | app/src/main/kotlin/lv/rigadevday/android/ui/tabs/TabActivity.kt | RigaDevDay/rdd-android | 0900b1ff762d422ab210ef62a2dcad7f21805fce | [
"MIT"
] | 14 | 2016-02-08T22:19:49.000Z | 2021-11-22T08:01:42.000Z | app/src/main/kotlin/lv/rigadevday/android/ui/tabs/TabActivity.kt | RigaDevDay/riga-dev-day-android | 0900b1ff762d422ab210ef62a2dcad7f21805fce | [
"MIT"
] | 6 | 2015-12-02T17:48:16.000Z | 2020-05-02T19:45:05.000Z | package lv.rigadevday.android.ui.tabs
import android.content.res.Configuration
import android.support.design.widget.BottomNavigationView
import android.support.v4.app.Fragment
import android.view.Menu
import android.view.MenuItem
import kotlinx.android.synthetic.main.activity_tab.*
import lv.rigadevday.android.R
import lv.rigadevday.android.ui.base.BaseActivity
import lv.rigadevday.android.ui.openLicencesActivity
import lv.rigadevday.android.ui.openTwitter
import lv.rigadevday.android.ui.partners.PartnersFragment
import lv.rigadevday.android.ui.schedule.MyScheduleFragment
import lv.rigadevday.android.ui.speakers.SpeakerListFragment
import lv.rigadevday.android.ui.venues.VenuesFragment
import lv.rigadevday.android.utils.BaseApp
import lv.rigadevday.android.utils.auth.AuthStorage
import javax.inject.Inject
class TabActivity : BaseActivity() {
@Inject lateinit var authStorage: AuthStorage
override val layoutId = R.layout.activity_tab
override val contentFrameId = R.id.tabs_content_container
override val ignoreUiUpdates = true
private val scheduleFragment: Fragment by lazy { MyScheduleFragment() }
private val speakersFragment: Fragment by lazy { SpeakerListFragment() }
private val venuesFragment: Fragment by lazy { VenuesFragment() }
private val partnersFragment: Fragment by lazy { PartnersFragment() }
override fun inject() {
BaseApp.graph.inject(this)
}
override fun viewReady() {
tabs_buttons.setOnNavigationItemSelectedListener(tabClickListener)
tabs_buttons.menu.findItem(R.id.action_tab_schedule).isChecked = true
scheduleFragment.setAsMain()
}
private val tabClickListener = BottomNavigationView.OnNavigationItemSelectedListener { item ->
item.itemId.toFragment().setAsMain()
true
}
override fun onConfigurationChanged(newConfig: Configuration?) {
super.onConfigurationChanged(newConfig)
tabs_buttons.selectedItemId.toFragment().setAsMain()
}
private fun Int.toFragment(): Fragment = when (this) {
R.id.action_tab_schedule -> scheduleFragment
R.id.action_tab_speakers -> speakersFragment
R.id.action_tab_venues -> venuesFragment
else -> partnersFragment
}
override fun onCreateOptionsMenu(menu: Menu): Boolean {
val menuFile =
if (authStorage.hasLogin) R.menu.menu_main_logout
else R.menu.menu_main_login
menuInflater.inflate(menuFile, menu)
return super.onCreateOptionsMenu(menu)
}
override fun onOptionsItemSelected(item: MenuItem): Boolean {
when (item.itemId) {
R.id.action_twitter -> openTwitter()
R.id.action_login -> loginWrapper.logIn(this)
R.id.action_logout -> loginWrapper.logOut()
R.id.action_licences -> openLicencesActivity()
else -> return super.onOptionsItemSelected(item)
}
return true
}
override fun refreshLoginState() {
invalidateOptionsMenu()
}
}
| 35.337209 | 98 | 0.734123 |
75fd6ac263d2f837e18da009c320aa0eea44c092 | 2,425 | php | PHP | app/Http/Controllers/Api/RouterHandlers/Getters/Actions/DocumentAnalys.php | CbIPOKGIT/database-server | f8c3cf4f946b0e040c66cf3c8ad3f8aa361a13fa | [
"MIT"
] | null | null | null | app/Http/Controllers/Api/RouterHandlers/Getters/Actions/DocumentAnalys.php | CbIPOKGIT/database-server | f8c3cf4f946b0e040c66cf3c8ad3f8aa361a13fa | [
"MIT"
] | null | null | null | app/Http/Controllers/Api/RouterHandlers/Getters/Actions/DocumentAnalys.php | CbIPOKGIT/database-server | f8c3cf4f946b0e040c66cf3c8ad3f8aa361a13fa | [
"MIT"
] | null | null | null | <?php
namespace App\Http\Controllers\Api\RouterHandlers\Getters\Actions;
use App\Models\Documents\ParsingDocument as Document;
use App\Http\Controllers\Api\RouterHandlers\CustomHandler;
class DocumentAnalys extends CustomHandler
{
public function getAvailableFilters()
{
$mappingFunction = function ($record) {
$relation = isset($record->product) ? "product" : "domen";
return [
"id" => $record->$relation->id,
"name" => $record->$relation->name
];
};
return [
'domens' => $this->document->documentTable()->select("domen_id")
->with("domen:id,name")
->groupBy("domen_id")->get()
->map($mappingFunction)
->toArray(),
'products' => $this->document->documentTable()->select("product_id")
->with("product:id,name")
->groupBy("product_id")->get()
->map($mappingFunction)
->toArray(),
'statuses' => $this->document->documentTable()->select("status")
->groupBy("status")
->get()->pluck("status")->toArray()
];
}
public function getDocumentData()
{
$filters = [];
if (isset($this->params['filters'])) {
$filters = gettype($this->params['filters']) == "string"
? (array)json_decode($this->params['filters'])
: $this->params['filters'];
}
$query = $this->document->documentTable()->select("*")
->with(
"domen:id,name",
"product:id,name",
"comparison:id,url"
);
foreach ($filters as $key => $value) {
if (isset($value)) {
$query->where($key, $value);
}
}
return $query->get()->map(function ($record) {
$record = $record->toArray();
$record['domen'] = $record['domen']['name'];
$record['product'] = $record['product']['name'];
$record['url'] = $record['comparison']['url'];
return $record;
});
}
}
| 33.680556 | 81 | 0.440412 |
4e11c38db3811f8a6683485497adbadc3ce2f966 | 6,661 | asm | Assembly | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_234.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_234.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_234.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r13
push %r15
push %rbp
push %rbx
push %rcx
push %rdi
push %rdx
push %rsi
lea addresses_WT_ht+0x14464, %rdx
nop
nop
nop
nop
sub %rbp, %rbp
mov (%rdx), %rsi
sub %r13, %r13
lea addresses_WC_ht+0x7500, %rsi
lea addresses_normal_ht+0x103b0, %rdi
clflush (%rdi)
nop
nop
nop
nop
add $1642, %rbp
mov $78, %rcx
rep movsq
nop
nop
nop
nop
nop
cmp %rcx, %rcx
lea addresses_normal_ht+0x4f20, %rsi
nop
nop
dec %rbx
mov $0x6162636465666768, %r13
movq %r13, %xmm2
movups %xmm2, (%rsi)
nop
nop
nop
nop
sub $49143, %rdi
lea addresses_normal_ht+0x76e4, %rsi
lea addresses_A_ht+0x12d24, %rdi
nop
nop
nop
sub $61033, %r15
mov $119, %rcx
rep movsl
nop
nop
cmp %rdi, %rdi
lea addresses_A_ht+0x19fd8, %rsi
lea addresses_D_ht+0x11430, %rdi
clflush (%rdi)
nop
nop
cmp $36048, %rdx
mov $63, %rcx
rep movsb
nop
nop
nop
sub $54789, %rsi
lea addresses_A_ht+0xf430, %rsi
clflush (%rsi)
dec %rbx
movl $0x61626364, (%rsi)
nop
nop
nop
cmp $11974, %rdx
lea addresses_A_ht+0x11e30, %rdx
nop
and $54471, %rbp
mov $0x6162636465666768, %rbx
movq %rbx, %xmm3
movups %xmm3, (%rdx)
nop
nop
nop
nop
add $3723, %rbp
lea addresses_WC_ht+0x1e030, %rsi
lea addresses_D_ht+0x127b0, %rdi
nop
nop
nop
nop
nop
add %rdx, %rdx
mov $115, %rcx
rep movsq
nop
nop
nop
nop
add %rbp, %rbp
lea addresses_D_ht+0x19650, %rsi
lea addresses_D_ht+0x4830, %rdi
clflush (%rsi)
nop
nop
nop
nop
nop
sub %r15, %r15
mov $18, %rcx
rep movsq
nop
nop
and $33605, %rbx
pop %rsi
pop %rdx
pop %rdi
pop %rcx
pop %rbx
pop %rbp
pop %r15
pop %r13
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r14
push %rax
push %rbp
push %rbx
push %rdx
// Load
lea addresses_UC+0x10030, %rdx
nop
nop
nop
dec %rbp
mov (%rdx), %ebx
nop
nop
nop
nop
nop
xor %rax, %rax
// Faulty Load
lea addresses_UC+0x10030, %rbx
nop
nop
nop
nop
add %rdx, %rdx
mov (%rbx), %eax
lea oracles, %rbp
and $0xff, %rax
shlq $12, %rax
mov (%rbp,%rax,1), %rax
pop %rdx
pop %rbx
pop %rbp
pop %rax
pop %r14
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'src': {'type': 'addresses_UC', 'same': True, 'size': 32, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_UC', 'same': True, 'size': 4, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
[Faulty Load]
{'src': {'type': 'addresses_UC', 'same': True, 'size': 4, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
<gen_prepare_buffer>
{'src': {'type': 'addresses_WT_ht', 'same': False, 'size': 8, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'}
{'src': {'type': 'addresses_WC_ht', 'congruent': 0, 'same': False}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 7, 'same': False}, 'OP': 'REPM'}
{'dst': {'type': 'addresses_normal_ht', 'same': False, 'size': 16, 'congruent': 4, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'src': {'type': 'addresses_normal_ht', 'congruent': 2, 'same': False}, 'dst': {'type': 'addresses_A_ht', 'congruent': 2, 'same': False}, 'OP': 'REPM'}
{'src': {'type': 'addresses_A_ht', 'congruent': 3, 'same': False}, 'dst': {'type': 'addresses_D_ht', 'congruent': 10, 'same': False}, 'OP': 'REPM'}
{'dst': {'type': 'addresses_A_ht', 'same': False, 'size': 4, 'congruent': 10, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'dst': {'type': 'addresses_A_ht', 'same': False, 'size': 16, 'congruent': 9, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'}
{'src': {'type': 'addresses_WC_ht', 'congruent': 8, 'same': False}, 'dst': {'type': 'addresses_D_ht', 'congruent': 6, 'same': False}, 'OP': 'REPM'}
{'src': {'type': 'addresses_D_ht', 'congruent': 5, 'same': False}, 'dst': {'type': 'addresses_D_ht', 'congruent': 11, 'same': False}, 'OP': 'REPM'}
{'37': 21829}
37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37
*/
| 34.874346 | 2,999 | 0.661762 |
9d16f8cac9152ef2bcdf48135f64a00fb3abf6a5 | 842 | html | HTML | cranworth/cranworth_site/templates/cranworth_site/404.html | cjoc/cranworth | c048437b2dfb8b7908f8c2b7a7382502d461bb5e | [
"MIT"
] | null | null | null | cranworth/cranworth_site/templates/cranworth_site/404.html | cjoc/cranworth | c048437b2dfb8b7908f8c2b7a7382502d461bb5e | [
"MIT"
] | null | null | null | cranworth/cranworth_site/templates/cranworth_site/404.html | cjoc/cranworth | c048437b2dfb8b7908f8c2b7a7382502d461bb5e | [
"MIT"
] | null | null | null | {% load static %}
<!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">
<title>Welcome | Cranworth Law Society</title>
<link rel="stylesheet" href="{% static 'css/bootstrap.css' %}">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark justify-content-between mb-4">
<a class="navbar-brand" href="/">
Cranworth Law Society
</a>
</nav>
<div class="container">
<div class="row">
<div class="col-lg-9 col-md-12 col-sm-12 col-xs-12">
<h2>You just got iniuria'd!</h2>
<h4>You're not registered as a member of Cranworth. If this is wrong, please contact
the President.</h4>
</div>
</div>
</div>
</nav> | 27.16129 | 96 | 0.605701 |
85a0fd0e72de1298c2c01185a7c7ab8203e8825e | 1,198 | h | C | src/Algorithm/DynamicProgramming/DavisStaircase.h | jljacoblo/jalgorithmCPP | b64307bfd029e3e276d8f9a91381aef812075e6f | [
"MIT"
] | null | null | null | src/Algorithm/DynamicProgramming/DavisStaircase.h | jljacoblo/jalgorithmCPP | b64307bfd029e3e276d8f9a91381aef812075e6f | [
"MIT"
] | null | null | null | src/Algorithm/DynamicProgramming/DavisStaircase.h | jljacoblo/jalgorithmCPP | b64307bfd029e3e276d8f9a91381aef812075e6f | [
"MIT"
] | null | null | null | //
// Created by Jacob Lo on 10/18/18.
//
/*
* MEDIUM
* https://www.hackerrank.com/challenges/ctci-recursive-staircase/problem?h_l=interview&playlist_slugs%5B%5D=interview-preparation-kit&playlist_slugs%5B%5D=recursion-backtracking
*
* calc number of all possible way to climb a stair with n step, with each step of 1 or 2 or 3
*/
#pragma once
#include <vector>
using namespace std;
namespace DavisStaircase {
int stepPermsRecursive(int n) {
/// base case: n = 1, 2, 3
if ( n == 1) return 1;
if ( n == 2) return 2;
if ( n == 3) return 4;
/// step is based on last 3 step, plus them all
return ( stepPermsRecursive(n-1) + stepPermsRecursive(n-2) + stepPermsRecursive(n-3) ) % (int)(1e+9 + 7);
}
int stepPerms(int n ) {
vector<int> results( (unsigned long)( n > 3 ? n : 3 ) );
/// base case: n = 1, 2, 3
results[0] = 1;
results[1] = 2;
results[2] = 4;
/// calc each number till n
for ( int i = 3 ; i < n ; i++ ) {
results[i] = ( results[i-1] + results[i-2] + results[i-3] );
}
return results[n-1];
}
}
// 1
// 2
// 1 1
// 3
// 1 1 1
// 1 2
// 2 1
// 1 1 1 1
// 1 1 2
// 1 2 1
// 2 1 1
// 3 1
// 1 3
// 2 2 | 19.015873 | 178 | 0.57429 |
9057697d1064019dc81e89d6c49a53b4a8291a0d | 386 | py | Python | streamprox/__init__.py | ibmcb/StreamProx | 7e74b7138c4f9aea773d5ead7a48b7c9e503feca | [
"MIT"
] | 1 | 2017-06-10T20:14:48.000Z | 2017-06-10T20:14:48.000Z | streamprox/__init__.py | hinesmr/StreamProx | deeb07befb3127310ee1ccd9148ee84db6b168a7 | [
"MIT"
] | null | null | null | streamprox/__init__.py | hinesmr/StreamProx | deeb07befb3127310ee1ccd9148ee84db6b168a7 | [
"MIT"
] | null | null | null | ################################################################
# Copyright 2012 Sheffler
################################################################
try:
import pkg_resources
version = pkg_resources.require("StreamProx")[0].version
except:
## i.e. no setuptools or no package installed ...
version = "?.?.?"
import packet_buffer
import dispatcher
import proxy
| 24.125 | 64 | 0.468912 |
887fe13a9aac76768416282cc542abb080938e3d | 207 | kt | Kotlin | map/src/main/kotlin/de/darkatra/bfme2/map/CastleData.kt | DarkAtra/bfme2-modding-utils | 5b4b205575c2b1c6ff729cfeb07d91c345f8db19 | [
"MIT"
] | 2 | 2021-02-06T15:11:59.000Z | 2021-12-17T06:28:43.000Z | map/src/main/kotlin/de/darkatra/bfme2/map/CastleData.kt | DarkAtra/bfme2-modding-utils | 5b4b205575c2b1c6ff729cfeb07d91c345f8db19 | [
"MIT"
] | 6 | 2021-01-01T21:55:02.000Z | 2021-12-17T06:22:58.000Z | map/src/main/kotlin/de/darkatra/bfme2/map/CastleData.kt | DarkAtra/bfme2-modding-utils | 5b4b205575c2b1c6ff729cfeb07d91c345f8db19 | [
"MIT"
] | null | null | null | package de.darkatra.bfme2.map
import de.darkatra.bfme2.Vector3
data class CastleData(
val propertyKey: PropertyKey,
val castleTemplates: List<CastleTemplate>,
val castlePerimeterPoints: List<Vector3>
)
| 20.7 | 43 | 0.811594 |
0b8bbb57f61438a9cdd497a599dabe456d4ca928 | 2,521 | py | Python | src/api/handlers/projects/tokens.py | sap-steffen/InfraBox | 36c8b626b517415e4363c99037c5d2c118966e56 | [
"Apache-2.0"
] | 50 | 2017-09-03T15:54:08.000Z | 2019-03-13T16:53:15.000Z | src/api/handlers/projects/tokens.py | sap-steffen/InfraBox | 36c8b626b517415e4363c99037c5d2c118966e56 | [
"Apache-2.0"
] | 241 | 2017-09-03T14:40:08.000Z | 2022-03-02T02:32:26.000Z | src/api/handlers/projects/tokens.py | sap-steffen/InfraBox | 36c8b626b517415e4363c99037c5d2c118966e56 | [
"Apache-2.0"
] | 17 | 2017-09-03T11:28:01.000Z | 2018-04-30T15:58:18.000Z | from flask import request, g, abort
from flask_restplus import Resource, fields
from pyinfrabox.utils import validate_uuid4
from pyinfraboxutils.ibflask import auth_required, OK
from pyinfraboxutils.ibrestplus import api
from pyinfraboxutils.token import encode_project_token
from api.namespaces import project as ns
project_token_model = api.model('ProjectToken', {
'description': fields.String(required=True),
'scope_push': fields.Boolean(required=True),
'scope_pull': fields.Boolean(required=True),
'id': fields.String(required=False)
})
@ns.route('/<project_id>/tokens')
class Tokens(Resource):
@auth_required(['user'])
@api.marshal_list_with(project_token_model)
def get(self, project_id):
p = g.db.execute_many_dict('''
SELECT description, scope_push, scope_pull, id
FROM auth_token
WHERE project_id = %s
''', [project_id])
return p
@auth_required(['user'])
@api.expect(project_token_model)
def post(self, project_id):
b = request.get_json()
result = g.db.execute_one("""
SELECT COUNT(*) FROM auth_token
WHERE project_id = %s AND description = %s
""", [project_id, b['description']])[0]
if result != 0:
return abort(400, 'Token with such a description already exists.')
result = g.db.execute_one_dict("""
INSERT INTO auth_token (description, scope_push, scope_pull, project_id)
VALUES (%s, %s, %s, %s) RETURNING id
""", [b['description'], b['scope_push'], b['scope_pull'], project_id])
token_id = result['id']
token = encode_project_token(token_id, project_id)
g.db.commit()
return OK('Successfully added token', {'token': token})
@ns.route('/<project_id>/tokens/<token_id>')
class Token(Resource):
@auth_required(['user'])
def delete(self, project_id, token_id):
if not validate_uuid4(token_id):
abort(400, "Invalid project-token uuid")
num_tokens = g.db.execute_one("""
SELECT COUNT(*) FROM auth_token
WHERE project_id = %s and id = %s
""", [project_id, token_id])[0]
if num_tokens == 0:
return abort(400, 'Such token does not exist.')
g.db.execute("""
DELETE FROM auth_token
WHERE project_id = %s and id = %s
""", [project_id, token_id])
g.db.commit()
return OK('Successfully deleted token')
| 31.911392 | 84 | 0.624752 |
4b4efe1f87c9fb552b411af8a180f7b3f18a3001 | 19,184 | swift | Swift | AiraVisionSim/UIView+CameraBackground.swift | aira/aira-vision-sim | fecec33f8a23d10bac56fef4633265430b681327 | [
"Apache-2.0"
] | 2 | 2017-09-25T01:24:40.000Z | 2017-09-27T16:10:13.000Z | AiraVisionSim/UIView+CameraBackground.swift | aira/aira-vision-sim | fecec33f8a23d10bac56fef4633265430b681327 | [
"Apache-2.0"
] | null | null | null | AiraVisionSim/UIView+CameraBackground.swift | aira/aira-vision-sim | fecec33f8a23d10bac56fef4633265430b681327 | [
"Apache-2.0"
] | null | null | null | //
// UIView+CameraBackground.swift
// Show camera input as a background to any UIView.
//
// Created by Yonat Sharon on 11/1/15.
// Copyright (c) 2015 Yonat Sharon. All rights reserved.
//
import AVFoundation
import UIKit
import MultiToggleButton
import MiniLayout
public extension UIView {
// MARK: - Public Camera Interface
/// Change the current camera background layer, e.g. when a user taps a camera on/off button.
func toggleCameraBackground(_ position: AVCaptureDevice.Position = .unspecified, buttonMargins: UIEdgeInsets = .zero) {
if cameraLayer != nil {
removeCameraBackground()
} else {
addCameraBackground(position, buttonMargins: buttonMargins)
}
}
/// Remove camera background layer
func removeCameraBackground() {
removeCameraControls()
cameraLayer?.removeFromSuperlayer()
}
/// Add camera background layer
func addCameraBackground(_ position: AVCaptureDevice.Position = .unspecified, buttonMargins: UIEdgeInsets = .zero) {
if let session = AVCaptureSession.stillCameraCaptureSession(position) {
let cameraLayer = CameraLayer(session: session)
cameraLayer.videoGravity = AVLayerVideoGravity.resizeAspectFill
layer.insertBackgroundLayer(cameraLayer, name: theCameraLayerName)
} else {
cameraLayer?.backgroundColor = UIColor.black.cgColor
}
//addCameraControls(buttonMargins)
}
/// Re-start streaming input from camera into background layer.
func freeCameraSnapshot() {
cameraLayer?.connection?.isEnabled = true // to unfreeze image
cameraLayer?.session?.startRunning()
removeFocusBox()
}
/// The background layer showing camera input stream.
var cameraLayer: AVCaptureVideoPreviewLayer? {
return layer.sublayerNamed(theCameraLayerName) as? AVCaptureVideoPreviewLayer
}
// MARK: - Private Camera Controls
private var device: AVCaptureDevice? {
return (cameraLayer?.session?.inputs.first as? AVCaptureDeviceInput)?.device
}
// private func addCameraControls(_ margins: UIEdgeInsets = .zero) {
// // buttons panel
// let panel = UIView()
// panel.tag = thePanelViewTag
// panel.tintColor = .white
// addSubview(panel)
// panel.translatesAutoresizingMaskIntoConstraints = false
// constrain(panel, at: .top, diff: margins.top)
// constrain(panel, at: .left, diff: margins.left)
// constrain(panel, at: .right, diff: -margins.right)
// // timer button
// let timerButton = MultiToggleButton(image: bundeledCameraTemplateImage("camera-timer"), states: ["", "3s", "10s"], colors: [nil, UIColor.cameraOnColor(), UIColor.cameraOnColor(), UIColor.cameraOnColor()])
// panel.addTaggedSubview(timerButton, tag: theTimerButtonTag, constrain: .top, .centerX, .bottom) // .bottom constraint sets panel height
// timerButton.isHidden = true
// // flash button
// let flashButton = MultiToggleButton(image: bundeledCameraTemplateImage("camera-flash"), states: ["Off", "On", "Auto"], colors: [nil, UIColor.cameraOnColor()]) { (sender) -> Void in
//// self.setFlashMode(sender.currentStateIndex)
// }
// panel.addTaggedSubview(flashButton, tag: theFlashButtonTag, constrain: .top, .left)
// flashButton.isHidden = true
//// updateFlashButtonState()
// // switch camera button
//// if AVCaptureDevice.default(for: .video)?.constituentDevices.count ?? <#default value#> > 1 || UIDevice.isSimulator {
//// let cameraButton = UIButton.buttonWithImage(bundeledCameraTemplateImage("camera-switch")!, target: self, action: #selector(switchCamera(_:)))
//// panel.addTaggedSubview(cameraButton, tag: theSwitchButtonTag, constrain: .top, .right)
//// cameraButton.isHidden = true
//// }
// // focus and zoom gestures - uses gesture subclass to make it identifiable when removing camera
// addGestureRecognizer( CameraPinchGestureRecognizer(target: self, action: #selector(pinchToZoom(_:))) )
// addGestureRecognizer( CameraTapGestureRecognizer(target: self, action: #selector(tapToFocus(_:))) )
// device?.changeMonitoring(true)
// NotificationCenter.default.addObserver(self, selector: #selector(removeFocusBox), name: NSNotification.Name.AVCaptureDeviceSubjectAreaDidChange, object: nil)
// }
func removeCameraControls() {
// remove focus and zoom gestures
gestureRecognizerOfType(CameraPinchGestureRecognizer.self)?.removeFromView()
gestureRecognizerOfType(CameraTapGestureRecognizer.self)?.removeFromView()
layer.sublayerNamed(theFocusLayerName)?.removeFromSuperlayer()
NotificationCenter.default.removeObserver(self, name: NSNotification.Name.AVCaptureDeviceSubjectAreaDidChange, object: nil)
// remove controls
viewWithTag(thePanelViewTag)?.removeFromSuperview()
viewWithTag(theCountdownLabelTag)?.removeFromSuperview()
}
// private func updateFlashButtonState() {
// if let device = device {
// if let flashButton = viewWithTag(theFlashButtonTag) as? MultiToggleButton {
// if device.hasFlash {
// flashButton.isHidden = false
// flashButton.currentStateIndex = device.flashMode.rawValue
// } else {
// flashButton.isHidden = true
// }
// }
// }
// }
// MARK: - Action: Switch Front/Back Camera
@objc func switchCamera(_ sender: UIButton) {
// TODO: animate
if let session = cameraLayer?.session {
var cameraPosition = AVCaptureDevice.Position.unspecified
if let input = session.inputs.first as? AVCaptureDeviceInput {
cameraPosition = input.device.position
session.removeInput(input)
}
session.addCameraInput(cameraPosition.opposite())
// updateFlashButtonState()
removeFocusBox()
}
}
// MARK: - Action: Toggle Flash Mode
// func setFlashMode(_ rawValue: NSInteger) {
// if let device = device {
// if device.hasFlash {
// if let newMode = AVCaptureDevice.FlashMode(rawValue: rawValue) {
// device.changeFlashMode(newMode)
// }
// }
// }
// }
// MARK: - Action: Toggle Timer
var timerInterval: Int {
if let numberInTitle = (viewWithTag(theTimerButtonTag) as? UIButton)?.currentTitle?.trimmingCharacters(in: CharacterSet(charactersIn: " s")) {
return Int(numberInTitle) ?? 0
}
return 0
}
private func performWithTimer(_ interval: Int, block: @escaping () -> Void) {
if interval > 0 {
let countdownLabel = CoundownLabel(seconds: interval, action: block)
addTaggedSubview(countdownLabel, tag: theCountdownLabelTag, constrain: .centerX, .centerY)
} else {
block()
}
}
// MARK: - Action: Pinch to Zoom
@objc func pinchToZoom(_ sender: UIPinchGestureRecognizer) {
var initialZoom: CGFloat = 1
if let device = device {
if sender.state == .began {
initialZoom = device.videoZoomFactor
}
device.changeZoomFactor(sender.scale * initialZoom)
}
}
// MARK: - Action: Tap to Focus
@objc func tapToFocus(_ sender: UITapGestureRecognizer) {
let focusPoint = sender.location(in: self)
if let device = device {
if !device.isFocusPointOfInterestSupported && !device.isExposurePointOfInterestSupported {
return
}
let interestPoint = CGPoint(x: (focusPoint.y - bounds.minY) / bounds.height, y: 1 - (focusPoint.x - bounds.minX) / bounds.width)
device.changeInterestPoint(interestPoint)
showFocusBox(focusPoint)
} else if UIDevice.isSimulator {
showFocusBox(focusPoint)
}
}
private func showFocusBox(_ center: CGPoint) {
cameraLayer?.sublayerNamed(theFocusLayerName)?.removeFromSuperlayer()
let focusLayer = FocusBoxLayer(center: center)
focusLayer.name = theFocusLayerName
cameraLayer?.addSublayer(focusLayer)
}
@objc func removeFocusBox() { // not private because it is a selector for AVCaptureDeviceSubjectAreaDidChangeNotification
cameraLayer?.sublayerNamed(theFocusLayerName)?.removeFromSuperlayer()
if let device = device {
let interestPoint = device.isFocusPointOfInterestSupported ? device.focusPointOfInterest : device.exposurePointOfInterest
let center = CGPoint(x: 0.5, y: 0.5)
if !interestPoint.equalTo(center) {
device.changeInterestPoint(center)
}
}
}
}
class CameraLayer: AVCaptureVideoPreviewLayer {
override init(session: AVCaptureSession) {
super.init(session: session)
setup()
}
required init?(coder: NSCoder) {
super.init(coder: coder)
setup()
}
override init(layer: Any) {
super.init(layer: layer)
setup()
}
private func setup() {
NotificationCenter.default.addObserver(self,
selector: #selector(updateCameraFrameAndOrientation),
name: UIDevice.orientationDidChangeNotification,
object: nil)
}
@objc func updateCameraFrameAndOrientation() {
guard let superlayer = superlayer else {return}
frame = superlayer.bounds
guard let connection = connection, connection.isVideoOrientationSupported,
let appOrientation = AVCaptureVideoOrientation(rawValue: UIApplication.shared.statusBarOrientation.rawValue)
else {return}
connection.videoOrientation = appOrientation
}
}
// MARK: - Private Constants
private let thePanelViewTag = 98765
private let theSwitchButtonTag = thePanelViewTag + 1
private let theFlashButtonTag = thePanelViewTag + 2
private let theTimerButtonTag = thePanelViewTag + 3
private let theCountdownLabelTag = thePanelViewTag + 4
private let theCameraLayerName = "camera"
private let theFocusLayerName = "focusSquare"
// MARK: - Useful Extensions
public extension UITraitEnvironment {
func bundledCameraImage(_ named: String) -> UIImage? {
if let image = UIImage(named: named) {
return image
}
let podBundle = Bundle(for: FocusBoxLayer.self)
if let url = podBundle.url(forResource: "CameraBackground", withExtension: "bundle") {
return UIImage(named: named, in: Bundle(url: url), compatibleWith: traitCollection)
}
return nil
}
func bundeledCameraTemplateImage(_ named: String) -> UIImage? {
return bundledCameraImage(named)?.withRenderingMode(.alwaysTemplate)
}
}
extension UIDevice {
class var isSimulator: Bool {
return current.model.hasSuffix("Simulator")
}
}
extension UIView {
func gestureRecognizerOfType<T: UIGestureRecognizer>(_ type: T.Type) -> UIGestureRecognizer? {
if let gestureRecognizers = gestureRecognizers {
return gestureRecognizers.first(where: { (gsr) -> Bool in
return gsr is T
})
}
return nil
}
func addTaggedSubview(_ subview: UIView, tag: Int, constrain: NSLayoutConstraint.Attribute...) {
subview.tag = tag
subview.translatesAutoresizingMaskIntoConstraints = false
addSubview(subview)
//constrain.forEach { self.constrain(subview, at: $0) }
}
}
extension UIGestureRecognizer {
func removeFromView() {
view?.removeGestureRecognizer(self)
}
}
extension CALayer {
func sublayerNamed(_ name: String) -> CALayer? {
guard let sublayers = sublayers else {return nil}
return sublayers.first { (layer) -> Bool in
layer.name == name
}
}
func insertBackgroundLayer(_ layer: CALayer, name: String? = nil) {
layer.frame = bounds
insertSublayer(layer, at: 0)
if let name = name {
layer.name = name
}
}
}
extension UIButton {
class func buttonWithImage(_ image: UIImage, target: AnyObject, action: Selector) -> UIButton {
let button = UIButton(type: .custom)
button.setImage(image, for: UIControl.State())
button.addTarget(target, action: action, for: .touchUpInside)
return button
}
}
// MARK: - Countdown Label
class CoundownLabel: UILabel {
var remainingSeconds: Int = 0
let action: () -> Void
private var dispatchWorkItem: DispatchWorkItem?
init(seconds: Int, action: @escaping () -> Void) {
self.action = action
remainingSeconds = seconds
super.init(frame: .zero)
textColor = .white
shadowColor = UIColor.black.withAlphaComponent(0.5)
let fontSize = min(UIScreen.main.bounds.width / 2, UIScreen.main.bounds.height / 3)
font = .boldSystemFont(ofSize: fontSize)
shadowOffset = CGSize(width: fontSize/30, height: fontSize/15)
countdown()
}
required init?(coder: NSCoder) {
action = {}
super.init(coder: coder)
}
deinit {
dispatchWorkItem?.cancel()
}
private func countdown() {
if remainingSeconds > 0 {
text = "\(remainingSeconds)"
remainingSeconds -= 1
dispatchWorkItem = DispatchWorkItem {[weak self] in self?.countdown()}
DispatchQueue.main.asyncAfter(deadline: .now() + 1, execute: dispatchWorkItem!)
} else {
removeFromSuperview()
action()
}
}
}
// MARK: - Focus Box
class FocusBoxLayer: CAShapeLayer {
convenience init(center: CGPoint) {
self.init()
path = UIBezierPath(focusBoxAround: center, big: true).cgPath
strokeColor = UIColor.cameraOnColor().cgColor
fillColor = UIColor.clear.cgColor
DispatchQueue.main.async {
self.path = UIBezierPath(focusBoxAround: center, big: false).cgPath
}
DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
self.opacity = 0.5
}
}
override func action(forKey event: String) -> CAAction? { // animate changes to 'path'
switch event {
case "path":
let animation = CABasicAnimation(keyPath: event)
animation.duration = CATransaction.animationDuration()
animation.timingFunction = CAMediaTimingFunction(name: CAMediaTimingFunctionName.easeOut)
return animation
default:
return super.action(forKey: event)
}
}
}
extension UIBezierPath {
convenience init(focusBoxAround center: CGPoint, big: Bool = false) {
let size: CGFloat = big ? 150 : 75
let lineSize: CGFloat = 5
let square = CGRect(x: center.x - size/2, y: center.y - size/2, width: size, height: size)
self.init(rect: square)
move(to: CGPoint(x: center.x, y: square.minY))
addLine(to: CGPoint(x: center.x, y: square.minY + lineSize))
move(to: CGPoint(x: center.x, y: square.maxY))
addLine(to: CGPoint(x: center.x, y: square.maxY - lineSize))
move(to: CGPoint(x: square.minX, y: center.y))
addLine(to: CGPoint(x: square.minX + lineSize, y: center.y))
move(to: CGPoint(x: square.maxX, y: center.y))
addLine(to: CGPoint(x: square.maxX - lineSize, y: center.y))
}
}
// MARK: - Identifiable Gesture Recognizers
class CameraTapGestureRecognizer: UITapGestureRecognizer, UIGestureRecognizerDelegate {
override init(target: Any?, action: Selector?) {
super.init(target: target, action: action)
cancelsTouchesInView = false
delegate = self
}
func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldReceive touch: UITouch) -> Bool {
return !(touch.view is UIControl)
}
}
private class CameraPinchGestureRecognizer: UIPinchGestureRecognizer {
}
// MARK: - Private AV Extensions
private extension UIColor {
class func cameraOnColor() -> UIColor {
return UIColor(red: 0.99, green: 0.79, blue: 0.19, alpha: 1)
}
}
private extension AVCaptureSession {
class func stillCameraCaptureSession(_ position: AVCaptureDevice.Position) -> AVCaptureSession? {
if UIDevice.isSimulator {return nil}
let session = AVCaptureSession()
session.sessionPreset = AVCaptureSession.Preset.inputPriority
session.addCameraInput(position)
session.addOutput( AVCapturePhotoOutput() )
session.startRunning()
return session
}
func addCameraInput(_ position: AVCaptureDevice.Position) {
guard let device = AVCaptureDevice.deviceWithPosition(position) else {return}
do {
let deviceInput = try AVCaptureDeviceInput(device: device)
if canAddInput(deviceInput) { addInput(deviceInput) } else { NSLog("Can't add camera input for position \(position.rawValue)") }
} catch {
NSLog("Can't access camera")
}
}
}
private extension AVCaptureDevice.Position {
func opposite() -> AVCaptureDevice.Position {
switch self {
case .front: return .back
case .back: return .front
default: return self
}
}
}
private extension AVCaptureDevice {
class func deviceWithPosition(_ position: AVCaptureDevice.Position) -> AVCaptureDevice? {
return AVCaptureDevice.default(.builtInWideAngleCamera,
for: .video,
position: position)
}
// func changeFlashMode(_ mode: AVCaptureDevice.FlashMode) {
// performWithLock {
// self.flashMode = mode
// }
// }
func changeInterestPoint(_ point: CGPoint) {
performWithLock {
if self.isFocusPointOfInterestSupported {
self.focusPointOfInterest = point
self.focusMode = .continuousAutoFocus
}
if self.isExposurePointOfInterestSupported {
self.exposurePointOfInterest = point
self.exposureMode = .continuousAutoExposure
}
}
}
func changeMonitoring(_ isOn: Bool) {
performWithLock {
self.isSubjectAreaChangeMonitoringEnabled = isOn
}
}
func changeZoomFactor(_ zoomFactor: CGFloat) {
let effectiveZoomFactor = min( max(zoomFactor, 1), 4)
performWithLock {
self.videoZoomFactor = effectiveZoomFactor
}
}
func performWithLock(_ block: () -> Void) {
do {
try lockForConfiguration()
block()
unlockForConfiguration()
} catch let error as NSError {
NSLog("Failed to acquire AVCaptureDevice.lockForConfiguration: \(error.localizedDescription)")
}
}
}
| 37.76378 | 214 | 0.638032 |
7087a76e333414f3fd36188726acb573c5444bda | 78 | sql | SQL | migrations/migrations/default/1619468397474_alter_table_source_collector_source_alter_column_Details/down.sql | Adron/terrazura | 83f00240b9672d6eb404fce2b72ad9637609e0f6 | [
"Apache-2.0"
] | 11 | 2020-12-17T01:18:43.000Z | 2022-03-31T02:58:26.000Z | migrations/migrations/default/1619468397474_alter_table_source_collector_source_alter_column_Details/down.sql | Adron/terrazura | 83f00240b9672d6eb404fce2b72ad9637609e0f6 | [
"Apache-2.0"
] | null | null | null | migrations/migrations/default/1619468397474_alter_table_source_collector_source_alter_column_Details/down.sql | Adron/terrazura | 83f00240b9672d6eb404fce2b72ad9637609e0f6 | [
"Apache-2.0"
] | null | null | null | alter table "source_collector"."source" rename column "details" to "Details";
| 39 | 77 | 0.769231 |
1e68dcdcc228e418cf9e43de8a74246e85d71159 | 404 | css | CSS | frontend/src/modules/files/components/files-table/styles.css | bcgov/OCWA | e0bd0763ed1e3c0acc498cb1689778b4e22a475c | [
"Apache-2.0"
] | 9 | 2018-09-14T18:03:45.000Z | 2021-06-16T16:04:25.000Z | frontend/src/modules/files/components/files-table/styles.css | bcgov/OCWA | e0bd0763ed1e3c0acc498cb1689778b4e22a475c | [
"Apache-2.0"
] | 173 | 2019-01-18T19:25:05.000Z | 2022-01-10T21:15:46.000Z | frontend/src/modules/files/components/files-table/styles.css | bcgov/OCWA | e0bd0763ed1e3c0acc498cb1689778b4e22a475c | [
"Apache-2.0"
] | 3 | 2018-09-24T15:44:39.000Z | 2018-11-24T01:04:37.000Z | .container > div {
border-bottom: none !important;
}
.container th {
font-size: 13px !important;
}
.startCell {
padding-left: 10px;
}
.empty {
margin: 20px 0;
}
.empty p {
margin-top: 0;
}
.statusRow {
display: flex;
align-items: center;
}
.statusRow > span:first-child {
margin-right: 10px;
}
.removeButton {
display: flex;
align-items: center;
jusitfy-content: flex-end;
}
| 11.542857 | 33 | 0.641089 |
d5f12304e2cdbb24a88c8b795a5ade6a311e0066 | 253 | h | C | PromotionForGloriousBattery/UICrossDisolveSegue.h | notoroid/PromotionForGloriousBattery | 328ee290fce9f1b43b23d3fabb70a846f7b63b12 | [
"MIT"
] | null | null | null | PromotionForGloriousBattery/UICrossDisolveSegue.h | notoroid/PromotionForGloriousBattery | 328ee290fce9f1b43b23d3fabb70a846f7b63b12 | [
"MIT"
] | null | null | null | PromotionForGloriousBattery/UICrossDisolveSegue.h | notoroid/PromotionForGloriousBattery | 328ee290fce9f1b43b23d3fabb70a846f7b63b12 | [
"MIT"
] | null | null | null | //
// UICrossDisolveSegue.h
// PromotionForGloriousBattery
//
// Created by 能登 要 on 2015/12/31.
// Copyright © 2015年 Irimasu Densan Planning. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface UICrossDisolveSegue : UIStoryboardSegue
@end
| 18.071429 | 67 | 0.735178 |
177224160f0c34f35932a5e61677e2da5493ad4d | 2,133 | html | HTML | src/web/contests/templates/contests/list.html | werelaxe/drapo | 5f78da735819200f0e7efa6a5e6b3b45ba6e0d4b | [
"MIT"
] | 10 | 2017-04-15T05:00:17.000Z | 2019-08-27T21:08:48.000Z | src/web/contests/templates/contests/list.html | werelaxe/drapo | 5f78da735819200f0e7efa6a5e6b3b45ba6e0d4b | [
"MIT"
] | 2 | 2017-10-06T12:35:59.000Z | 2018-12-03T07:17:12.000Z | src/web/contests/templates/contests/list.html | werelaxe/drapo | 5f78da735819200f0e7efa6a5e6b3b45ba6e0d4b | [
"MIT"
] | 4 | 2017-03-08T21:17:21.000Z | 2019-05-10T16:22:58.000Z | {% extends '_layout.html' %}
{% load markdown_deux_tags %}
{% load i18n %}
{% block content %}
<div class="contests-list">
<div class="row">
{% for contest in contests %}
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4">
<div class="contests-list__contest">
<h1 class="mt0 ellipsis one-line">{{ forloop.revcounter }}. <a href="{{ contest.get_absolute_url }}">{{ contest.name }}</a></h1>
<p class="text-xs-small">{{ contest.start_time }}–{{ contest.finish_time }}</p>
{% if contest.description %}
<p>{{ contest.short_description }}</p>
{% endif %}
<a href="{{ contest.get_absolute_url }}" class="btn btn-primary mt10">{% trans 'Enter' %}</a>
{% if contest.is_started %}
<a href="{% url 'contests:scoreboard' contest.id %}" class="btn btn-link mt10">{% trans 'Scoreboard' %}</a>
{% endif %}
{% if user.authenticated %}
<div>
{% if contest.is_current_user_participating %}
{% trans 'You are participating' %}
{% else %}
<a href="{% url 'contest:register' contest.id %}" class="btn btn-success mt10">{% trans 'Register for participation' %}</a>
{% endif %}
</div>
{% endif %}
</div>
</div>
{% if forloop.counter|divisibleby:3 %}
</div><div class="row">
{% endif %}
{% empty %}
<div class="col-xs-12">
<div class="page">
<h3 class="mt0 mb0 text-muted">{% trans 'No contests now, come later' %}</h3>
</div>
</div>
{% endfor %}
</div>
</div>
{% endblock %} | 43.530612 | 159 | 0.404594 |
79f461e6989712988404c41a0481fe989622862d | 495 | swift | Swift | SvrfSDK/Source/SvrfMediaType.swift | Svrf/svrf-ios-sdk | 6daf358220bc497d206737c8d3866533e2dcf0a0 | [
"MIT"
] | 25 | 2019-02-21T07:14:20.000Z | 2021-08-10T07:32:37.000Z | SvrfSDK/Source/SvrfMediaType.swift | Svrf/svrf-ios-sdk | 6daf358220bc497d206737c8d3866533e2dcf0a0 | [
"MIT"
] | 33 | 2019-02-21T07:42:58.000Z | 2021-11-27T08:14:22.000Z | SvrfSDK/Source/SvrfMediaType.swift | Svrf/svrf-ios-sdk | 6daf358220bc497d206737c8d3866533e2dcf0a0 | [
"MIT"
] | 1 | 2019-10-09T13:21:57.000Z | 2019-10-09T13:21:57.000Z | //
// SvrfMediaType.swift
// SvrfSDK
//
// Created by Andrei Evstratenko on 28/05/2019.
// Copyright © 2019 Svrf, Inc. All rights reserved.
//
/** The type of the Media. This should influence the media controls displayed to the user. */
public enum SvrfMediaType: String, Codable {
/** A photo file (png or jpeg). */
case photo = "photo"
/** A video file (mp4 and HLS). */
case video = "video"
/** A 3D model (fbx, gltf, glb, and/or glb-draco). */
case _3d = "3d"
}
| 27.5 | 93 | 0.626263 |
47408668bee4f2a60e3a275bbc381429f80247c6 | 5,505 | html | HTML | documentation PHP/php/Controllers/html/classes.html | BrainSaladSurgery/TastyKIT | c4bc305dcb838e574fdc98c0ed259df1b5a0768a | [
"MIT"
] | null | null | null | documentation PHP/php/Controllers/html/classes.html | BrainSaladSurgery/TastyKIT | c4bc305dcb838e574fdc98c0ed259df1b5a0768a | [
"MIT"
] | null | null | null | documentation PHP/php/Controllers/html/classes.html | BrainSaladSurgery/TastyKIT | c4bc305dcb838e574fdc98c0ed259df1b5a0768a | [
"MIT"
] | null | null | null | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://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.9.1"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Tastykit: Data Structure Index</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>
<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">Tastykit
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.9.1 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search','.html');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */</script>
<div id="main-nav"></div>
</div><!-- top -->
<!-- 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 class="header">
<div class="headertitle">
<div class="title">Data Structure Index</div> </div>
</div><!--header-->
<div class="contents">
<div class="qindex"><a class="qindex" href="#letter_C">C</a> | <a class="qindex" href="#letter_D">D</a> | <a class="qindex" href="#letter_I">I</a> | <a class="qindex" href="#letter_O">O</a> | <a class="qindex" href="#letter_P">P</a> | <a class="qindex" href="#letter_R">R</a> | <a class="qindex" href="#letter_S">S</a> | <a class="qindex" href="#letter_T">T</a> | <a class="qindex" href="#letter_U">U</a></div>
<div class="classindex">
<dl class="classindex even">
<dt class="alphachar"><a name="letter_C">C</a></dt>
<dd><a class="el" href="class_app_1_1_http_1_1_controllers_1_1_controller.html">Controller</a> (App\Http\Controllers)</dd></dl>
<dl class="classindex odd">
<dt class="alphachar"><a name="letter_D">D</a></dt>
<dd><a class="el" href="class_app_1_1_http_1_1_controllers_1_1_dish_controller.html">DishController</a> (App\Http\Controllers)</dd><dd><a class="el" href="class_app_1_1_http_1_1_controllers_1_1_drink_controller.html">DrinkController</a> (App\Http\Controllers)</dd></dl>
<dl class="classindex even">
<dt class="alphachar"><a name="letter_I">I</a></dt>
<dd><a class="el" href="class_app_1_1_http_1_1_controllers_1_1_invoices_controller.html">InvoicesController</a> (App\Http\Controllers)</dd></dl>
<dl class="classindex odd">
<dt class="alphachar"><a name="letter_O">O</a></dt>
<dd><a class="el" href="class_app_1_1_http_1_1_controllers_1_1_order_controller.html">OrderController</a> (App\Http\Controllers)</dd></dl>
<dl class="classindex even">
<dt class="alphachar"><a name="letter_P">P</a></dt>
<dd><a class="el" href="class_app_1_1_http_1_1_controllers_1_1_product_controller.html">ProductController</a> (App\Http\Controllers)</dd></dl>
<dl class="classindex odd">
<dt class="alphachar"><a name="letter_R">R</a></dt>
<dd><a class="el" href="class_app_1_1_http_1_1_controllers_1_1_reservation_controller.html">ReservationController</a> (App\Http\Controllers)</dd></dl>
<dl class="classindex even">
<dt class="alphachar"><a name="letter_S">S</a></dt>
<dd><a class="el" href="class_app_1_1_http_1_1_controllers_1_1_search_controller.html">SearchController</a> (App\Http\Controllers)</dd></dl>
<dl class="classindex odd">
<dt class="alphachar"><a name="letter_T">T</a></dt>
<dd><a class="el" href="class_app_1_1_http_1_1_controllers_1_1_table_controller.html">TableController</a> (App\Http\Controllers)</dd></dl>
<dl class="classindex even">
<dt class="alphachar"><a name="letter_U">U</a></dt>
<dd><a class="el" href="class_app_1_1_http_1_1_controllers_1_1_user_controller.html">UserController</a> (App\Http\Controllers)</dd></dl>
</div>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.1
</small></address>
</body>
</html>
| 52.428571 | 490 | 0.705177 |
9bcd28239a1900014856faae19b0a7eb2df58e2d | 17,795 | js | JavaScript | Source/WatchMe/Web/WatchMe.Web/Scripts/kendo/kendo.gantt.list.min.js | ginovski/WatchMe | 92a0207c37af97ef88f67554a4c66976174812bc | [
"Apache-2.0"
] | 3 | 2016-02-08T13:55:32.000Z | 2020-04-21T17:13:41.000Z | Source/WatchMe/Web/WatchMe.Web/Scripts/kendo/kendo.gantt.list.min.js | ginovski/WatchMe | 92a0207c37af97ef88f67554a4c66976174812bc | [
"Apache-2.0"
] | null | null | null | Source/WatchMe/Web/WatchMe.Web/Scripts/kendo/kendo.gantt.list.min.js | ginovski/WatchMe | 92a0207c37af97ef88f67554a4c66976174812bc | [
"Apache-2.0"
] | null | null | null | /**
* Kendo UI v2016.1.112 (http://www.telerik.com/kendo-ui)
* Copyright 2016 Telerik AD. All rights reserved.
*
* Kendo UI commercial licenses may be obtained at
* http://www.telerik.com/purchase/license-agreement/kendo-ui-complete
* If you do not own a commercial license, this file shall be governed by the trial license terms.
*/
!function (e, define) { define("kendo.gantt.list.min", ["kendo.dom.min", "kendo.touch.min", "kendo.draganddrop.min", "kendo.columnsorter.min", "kendo.datetimepicker.min", "kendo.editable.min"], e) }(function () { return function (e) { function t(e) { var t, i, n = [], r = e.className; for (t = 0, i = e.level; i > t; t++) n.push(o("span", { className: r })); return n } function i() { var t = n._activeElement(); "body" !== t.nodeName.toLowerCase() && e(t).blur() } var n = window.kendo, r = n.dom, o = r.element, a = r.text, d = n.support.browser, s = n.support.mobileOS, l = n.ui, h = l.Widget, c = e.extend, u = e.map, p = e.isFunction, f = d.msie && 9 > d.version, m = n.keys, g = { title: "Title", start: "Start Time", end: "End Time", percentComplete: "% Done", parentId: "Predecessor ID", id: "ID", orderId: "Order ID" }, v = "string", b = ".kendoGanttList", k = "click", _ = ".", y = "<table style='visibility: hidden;'><tbody><tr style='height:{0}'><td> </td></tr></tbody></table>", C = { wrapper: "k-treelist k-grid k-widget", header: "k-header", alt: "k-alt", rtl: "k-rtl", editCell: "k-edit-cell", group: "k-treelist-group", gridHeader: "k-grid-header", gridHeaderWrap: "k-grid-header-wrap", gridContent: "k-grid-content", gridContentWrap: "k-grid-content", selected: "k-state-selected", icon: "k-icon", iconCollapse: "k-i-collapse", iconExpand: "k-i-expand", iconHidden: "k-i-none", iconPlaceHolder: "k-icon k-i-none", input: "k-input", link: "k-link", resizeHandle: "k-resize-handle", resizeHandleInner: "k-resize-handle-inner", dropPositions: "k-insert-top k-insert-bottom k-add k-insert-middle", dropTop: "k-insert-top", dropBottom: "k-insert-bottom", dropAdd: "k-add", dropMiddle: "k-insert-middle", dropDenied: "k-denied", dragStatus: "k-drag-status", dragClue: "k-drag-clue", dragClueText: "k-clue-text" }, w = l.GanttList = h.extend({ init: function (t, i) { h.fn.init.call(this, t, i), 0 === this.options.columns.length && this.options.columns.push("title"), this.dataSource = this.options.dataSource, this._columns(), this._layout(), this._domTrees(), this._header(), this._sortable(), this._editable(), this._selectable(), this._draggable(), this._resizable(), this._attachEvents(), this._adjustHeight(), this.bind("render", function () { var t, i; this.options.resizable && (t = this.header.find("col"), i = this.content.find("col"), this.header.find("th").not(":last").each(function (n) { var r = e(this).outerWidth(); t.eq(n).width(r), i.eq(n).width(r) }), t.last().css("width", "auto"), i.last().css("width", "auto")) }, !0) }, _adjustHeight: function () { this.content.height(this.element.height() - this.header.parent().outerHeight()) }, destroy: function () { h.fn.destroy.call(this), this._reorderDraggable && this._reorderDraggable.destroy(), this._tableDropArea && this._tableDropArea.destroy(), this._contentDropArea && this._contentDropArea.destroy(), this._columnResizable && this._columnResizable.destroy(), this.touch && this.touch.destroy(), this.timer && clearTimeout(this.timer), this.content.off(b), this.header.find("thead").off(b), this.header.find(_ + w.link).off(b), this.header = null, this.content = null, this.levels = null, n.destroy(this.element) }, options: { name: "GanttList", selectable: !0, editable: !0, resizable: !1 }, _attachEvents: function () { var t = this, i = w.styles; t.content.on(k + b, "td > span." + i.icon + ":not(." + i.iconHidden + ")", function (i) { var n = e(this), r = t._modelFromElement(n); r.set("expanded", !r.get("expanded")), i.stopPropagation() }) }, _domTrees: function () { this.headerTree = new r.Tree(this.header[0]), this.contentTree = new r.Tree(this.content[0]) }, _columns: function () { var e = this.options.columns, t = function () { this.field = "", this.title = "", this.editable = !1, this.sortable = !1 }; this.columns = u(e, function (e) { return e = typeof e === v ? { field: e, title: g[e] } : e, c(new t, e) }) }, _layout: function () { var t = this, i = this.options, r = this.element, o = w.styles, a = function () { var r, o = typeof i.rowHeight === v ? i.rowHeight : i.rowHeight + "px", a = e(n.format(y, o)); return t.content.append(a), r = a.find("tr").outerHeight(), a.remove(), r }; r.addClass(o.wrapper).append("<div class='" + o.gridHeader + "'><div class='" + o.gridHeaderWrap + "'></div></div>").append("<div class='" + o.gridContentWrap + "'></div>"), this.header = r.find(_ + o.gridHeaderWrap), this.content = r.find(_ + o.gridContent), i.rowHeight && (this._rowHeight = a()) }, _header: function () { var e = this.headerTree, t = o("colgroup", null, this._cols()), i = o("thead", { role: "rowgroup" }, [o("tr", { role: "row" }, this._ths())]), n = o("table", { style: { minWidth: this.options.listWidth + "px" }, role: "grid" }, [t, i]); e.render([n]) }, _render: function (e) { var t, i, n, r = { style: { minWidth: this.options.listWidth + "px" }, tabIndex: 0, role: "treegrid" }; this._rowHeight && (r.style.height = e.length * this._rowHeight + "px"), this.levels = [{ field: null, value: 0 }], t = o("colgroup", null, this._cols()), i = o("tbody", { role: "rowgroup" }, this._trs(e)), n = o("table", r, [t, i]), this.contentTree.render([n]), this.trigger("render") }, _ths: function () { var e, t, i, n, r = this.columns, d = []; for (i = 0, n = r.length; n > i; i++) e = r[i], t = { "data-field": e.field, "data-title": e.title, className: w.styles.header, role: "columnheader" }, d.push(o("th", t, [a(e.title)])); return this.options.resizable && d.push(o("th", { className: w.styles.header, role: "columnheader" })), d }, _cols: function () { var e, t, i, n, r, a = this.columns, d = []; for (n = 0, r = a.length; r > n; n++) e = a[n], i = e.width, t = i && 0 !== parseInt(i, 10) ? { style: { width: typeof i === v ? i : i + "px" } } : null, d.push(o("col", t, [])); return this.options.resizable && d.push(o("col", { style: { width: "1px" } })), d }, _trs: function (e) { var t, i, n, r, o, a = [], d = [], s = w.styles; for (r = 0, o = e.length; o > r; r++) t = e[r], n = this._levels({ idx: t.parentId, id: t.id, summary: t.summary }), i = { "data-uid": t.uid, "data-level": n, role: "row" }, t.summary && (i["aria-expanded"] = t.expanded), r % 2 !== 0 && d.push(s.alt), t.summary && d.push(s.group), d.length && (i.className = d.join(" ")), a.push(this._tds({ task: t, attr: i, level: n })), d = []; return a }, _tds: function (e) { var t, i, n, r = [], a = this.columns; for (i = 0, n = a.length; n > i; i++) t = a[i], r.push(this._td({ task: e.task, column: t, level: e.level })); return this.options.resizable && r.push(o("td", { role: "gridcell" })), o("tr", e.attr, r) }, _td: function (e) { var i, r, d, s = [], l = this.options.resourcesField, h = w.styles, c = e.task, u = e.column, p = c.get(u.field); if (u.field == l) { for (p = p || [], i = [], d = 0; p.length > d; d++) i.push(n.format("{0} [{1}]", p[d].get("name"), p[d].get("formatedValue"))); i = i.join(", ") } else i = u.format ? n.format(u.format, p) : p; return "title" === u.field && (s = t({ level: e.level, className: h.iconPlaceHolder }), s.push(o("span", { className: h.icon + " " + (c.summary ? c.expanded ? h.iconCollapse : h.iconExpand : h.iconHidden) })), r = n.format("{0}, {1:P0}", i, c.percentComplete)), s.push(o("span", { "aria-label": r }, [a(i)])), o("td", { role: "gridcell" }, s) }, _levels: function (e) { var t, i, n, r = this.levels, o = e.summary, a = e.idx, d = e.id; for (i = 0, n = r.length; n > i; i++) if (t = r[i], t.field == a) return o && r.push({ field: d, value: t.value + 1 }), t.value }, _sortable: function () { var e, t, i, r, o, a = this, d = this.options.resourcesField, s = this.columns, l = this.header.find("th[" + n.attr("field") + "]"), h = function (e) { a.editable && a.editable.trigger("validate") && (e.preventDefault(), e.stopImmediatePropagation()) }; for (r = 0, o = l.length; o > r; r++) e = s[r], e.sortable && e.field !== d && (i = l.eq(r), t = i.data("kendoColumnSorter"), t && t.destroy(), i.attr("data-" + n.ns + "field", e.field).kendoColumnSorter({ dataSource: this.dataSource }).find(_ + w.link).on("click" + b, h)); l = null }, _selectable: function () { var t = this, i = this.options.selectable; i && this.content.on(k + b, "tr", function (i) { var n = e(this); t.editable && t.editable.trigger("validate"), i.ctrlKey ? t.clearSelection() : t.select(n) }) }, select: function (e) { var t = this.content.find(e), i = w.styles.selected; return t.length ? (t.siblings(_ + i).removeClass(i).attr("aria-selected", !1).end().addClass(i).attr("aria-selected", !0), void this.trigger("change")) : this.content.find(_ + i) }, clearSelection: function () { var e = this.select(); e.length && (e.removeClass(w.styles.selected), this.trigger("change")) }, _setDataSource: function (e) { this.dataSource = e }, _editable: function () { var t = this, n = w.styles, r = "span." + n.icon + ":not(" + n.iconHidden + ")", o = function () { var e = t.editable; e && (e.end() ? t._closeCell() : e.trigger("validate")) }, a = function (t) { var r = e(t.currentTarget); r.hasClass(n.editCell) || i() }; this.options.editable && (this._startEditHandler = function (i) { var n = i.currentTarget ? e(i.currentTarget) : i, r = t._columnFromElement(n); t.editable || r && r.editable && t._editCell({ cell: n, column: r }) }, t.content.on("focusin" + b, function () { clearTimeout(t.timer), t.timer = null }).on("focusout" + b, function () { t.timer = setTimeout(o, 1) }).on("keydown" + b, function (e) { e.keyCode === m.ENTER && e.preventDefault() }).on("keyup" + b, function (e) { var n, r, a = e.keyCode; switch (a) { case m.ENTER: i(), o(); break; case m.ESC: t.editable && (n = t._editableContainer, r = t._modelFromElement(n), t.trigger("cancel", { model: r, cell: n }) || t._closeCell(!0)) } }), s ? t.touch = t.content.kendoTouch({ filter: "td", touchstart: function (e) { a(e.touch) }, doubletap: function (i) { e(i.touch.initialTouch).is(r) || t._startEditHandler(i.touch) } }).data("kendoTouch") : t.content.on("mousedown" + b, "td", function (e) { a(e) }).on("dblclick" + b, "td", function (i) { e(i.target).is(r) || t._startEditHandler(i) })) }, _editCell: function (t) { var i, r = this.options.resourcesField, o = w.styles, a = t.cell, d = t.column, s = this._modelFromElement(a), l = this.dataSource._createNewModel(s.toJSON()), h = l.fields[d.field] || l[d.field], c = h.validation, u = n.attr("type"), m = n.attr("bind"), g = n.attr("format"), v = { name: d.field, required: h.validation ? h.validation.required === !0 : !1 }; return d.field === r ? void d.editor(a, l) : (this._editableContent = a.children().detach(), this._editableContainer = a, a.data("modelCopy", l), "date" !== h.type && "date" !== e.type(h) || d.format && !/H|m|s|F|g|u/.test(d.format) || (v[m] = "value:" + d.field, v[u] = "date", d.format && (v[g] = n._extractFormat(d.format)), i = function (t, i) { e('<input type="text"/>').attr(v).appendTo(t).kendoDateTimePicker({ format: i.format }) }), this.editable = a.addClass(o.editCell).kendoEditable({ fields: { field: d.field, format: d.format, editor: d.editor || i }, model: l, clearContainer: !1 }).data("kendoEditable"), c && c.dateCompare && p(c.dateCompare) && c.message && (e("<span " + n.attr("for") + '="' + d.field + '" class="k-invalid-msg"/>').hide().appendTo(a), a.find("[name=" + d.field + "]").attr(n.attr("dateCompare-msg"), c.message)), this.trigger("edit", { model: s, cell: a }) && this._closeCell(!0), void this.editable.bind("validate", function (e) { var t = this.element.find(":kendoFocusable:first").focus(); f && t.focus(), e.preventDefault() })) }, _closeCell: function (e) { var t = w.styles, i = this._editableContainer, n = this._modelFromElement(i), r = this._columnFromElement(i), o = r.field, a = i.data("modelCopy"), d = {}; d[o] = a.get(o), i.empty().removeData("modelCopy").removeClass(t.editCell).append(this._editableContent), this.editable.unbind(), this.editable.destroy(), this.editable = null, this._editableContainer = null, this._editableContent = null, e || ("start" === o && (d.end = new Date(d.start.getTime() + n.duration())), this.trigger("update", { task: n, updateInfo: d })) }, _draggable: function () { var t, i = this, r = null, o = !0, a = w.styles, d = n.support.isRtl(this.element), l = "tr[" + n.attr("level") + " = 0]:last", h = {}, u = function () { r = null, t = null, o = !0, h = {} }, p = function (e) { for (var t = e; t;) { if (r.get("id") === t.get("id")) { o = !1; break } t = i.dataSource.taskParent(t) } }, f = function () { var i = e(t).height(), r = n.getOffset(t).top; c(t, { beforeLimit: r + .25 * i, afterLimit: r + .75 * i }) }, m = function (e) { var i, r = e.location, o = a.dropAdd, d = "add", s = parseInt(t.attr(n.attr("level")), 10); t.beforeLimit >= r ? (i = t.prev(), o = a.dropTop, d = "insert-before") : r >= t.afterLimit && (i = t.next(), o = a.dropBottom, d = "insert-after"), i && parseInt(i.attr(n.attr("level")), 10) === s && (o = a.dropMiddle), h.className = o, h.command = d }, g = function () { return i._reorderDraggable.hint.children(_ + a.dragStatus).removeClass(a.dropPositions) }; this.options.editable && (this._reorderDraggable = this.content.kendoDraggable({ distance: 10, holdToDrag: s, group: "listGroup", filter: "tr[data-uid]", ignore: _ + a.input, hint: function (t) { return e('<div class="' + a.header + " " + a.dragClue + '"/>').css({ width: 300, paddingLeft: t.css("paddingLeft"), paddingRight: t.css("paddingRight"), lineHeight: t.height() + "px", paddingTop: t.css("paddingTop"), paddingBottom: t.css("paddingBottom") }).append('<span class="' + a.icon + " " + a.dragStatus + '" /><span class="' + a.dragClueText + '"/>') }, cursorOffset: { top: -20, left: 0 }, container: this.content, dragstart: function (e) { return i.editable && i.editable.trigger("validate") ? void e.preventDefault() : (r = i._modelFromElement(e.currentTarget), this.hint.children(_ + a.dragClueText).text(r.get("title")), void (d && this.hint.addClass(a.rtl))) }, drag: function (e) { o && (m(e.y), g().addClass(h.className)) }, dragend: function () { u() }, dragcancel: function () { u() } }).data("kendoDraggable"), this._tableDropArea = this.content.kendoDropTargetArea({ distance: 0, group: "listGroup", filter: "tr[data-uid]", dragenter: function (e) { t = e.dropTarget, p(i._modelFromElement(t)), f(), g().toggleClass(a.dropDenied, !o) }, dragleave: function () { o = !0, g() }, drop: function () { var e = i._modelFromElement(t), n = e.orderId, a = { parentId: e.parentId }; if (o) { switch (h.command) { case "add": a.parentId = e.id; break; case "insert-before": a.orderId = e.parentId === r.parentId && e.orderId > r.orderId ? n - 1 : n; break; case "insert-after": a.orderId = e.parentId === r.parentId && e.orderId > r.orderId ? n : n + 1 } i.trigger("update", { task: r, updateInfo: a }) } } }).data("kendoDropTargetArea"), this._contentDropArea = this.element.kendoDropTargetArea({ distance: 0, group: "listGroup", filter: _ + a.gridContent, drop: function () { var e = i._modelFromElement(i.content.find(l)), t = e.orderId, n = { parentId: null, orderId: null !== r.parentId ? t + 1 : t }; i.trigger("update", { task: r, updateInfo: n }) } }).data("kendoDropTargetArea")) }, _resizable: function () { var t = this, i = w.styles, n = function (n) { var r, o, a = e(n.currentTarget), d = t.resizeHandle, s = a.position(), l = s.left, h = a.outerWidth(), c = a.closest("div"), u = n.clientX + e(window).scrollLeft(), p = t.options.columnResizeHandleWidth; return l += c.scrollLeft(), d || (d = t.resizeHandle = e('<div class="' + i.resizeHandle + '"><div class="' + i.resizeHandleInner + '" /></div>')), r = a.offset().left + h, (o = u > r - p && r + p > u) ? (c.append(d), void d.show().css({ top: s.top, left: l + h - p - 1, height: a.outerHeight(), width: 3 * p }).data("th", a)) : void d.hide() }; this.options.resizable && (this._columnResizable && this._columnResizable.destroy(), this.header.find("thead").on("mousemove" + b, "th", n), this._columnResizable = this.header.kendoResizable({ handle: _ + i.resizeHandle, start: function (i) { var n = e(i.currentTarget).data("th"), r = "col:eq(" + n.index() + ")", o = t.header.find("table"), a = t.content.find("table"); t.element.addClass("k-grid-column-resizing"), this.col = a.children("colgroup").find(r).add(o.find(r)), this.th = n, this.startLocation = i.x.location, this.columnWidth = n.outerWidth(), this.table = o.add(a), this.totalWidth = this.table.width() - o.find("th:last").outerWidth() }, resize: function (e) { var t = 11, i = e.x.location - this.startLocation; t > this.columnWidth + i && (i = t - this.columnWidth), this.table.css({ minWidth: this.totalWidth + i }), this.col.width(this.columnWidth + i) }, resizeend: function () { var e, i, n; t.element.removeClass("k-grid-column-resizing"), e = Math.floor(this.columnWidth), i = Math.floor(this.th.outerWidth()), n = t.columns[this.th.index()], t.trigger("columnResize", { column: n, oldWidth: e, newWidth: i }), this.table = this.col = this.th = null } }).data("kendoResizable")) }, _modelFromElement: function (e) { var t = e.closest("tr"), i = this.dataSource.getByUid(t.attr(n.attr("uid"))); return i }, _columnFromElement: function (e) { var t = e.closest("td"), i = t.parent(), n = i.children().index(t); return this.columns[n] } }); c(!0, l.GanttList, { styles: C }) }(window.kendo.jQuery), window.kendo }, "function" == typeof define && define.amd ? define : function (e, t, i) { (i || t)() });
//# sourceMappingURL=kendo.gantt.list.min.js.map | 1,617.727273 | 17,405 | 0.623377 |
9e537c3358e34bc52b18fa55414a161324387715 | 650 | rs | Rust | disqualified/heap/borrowck-closures-two-mut-fail-5.rs | aatxe/oxide-test-suite | b9eb10ae9e3c294167203de714f06262622dbc1d | [
"Apache-2.0",
"MIT"
] | null | null | null | disqualified/heap/borrowck-closures-two-mut-fail-5.rs | aatxe/oxide-test-suite | b9eb10ae9e3c294167203de714f06262622dbc1d | [
"Apache-2.0",
"MIT"
] | null | null | null | disqualified/heap/borrowck-closures-two-mut-fail-5.rs | aatxe/oxide-test-suite | b9eb10ae9e3c294167203de714f06262622dbc1d | [
"Apache-2.0",
"MIT"
] | null | null | null | // Tests that two closures cannot simultaneously have mutable
// access to the variable, whether that mutable access be used
// for direct assignment or for taking mutable ref. Issue #6801.
fn to_fn_mut(f: fn()) -> fn() { f }
fn set<'a>(x: &'a mut isize) {
*x = 4;
}
struct Foo {
f: Box<isize>
}
fn g() {
let mut x: Box<Foo> = Box::new(Foo { f: Box::new(3)});
let tmp0: &'t0 mut isize = &mut (*x.f);
let c1: fn() = to_fn_mut(|| set::<'t0>(tmp0));
let tmp1: &'t1 mut isize = &mut (*x.f);
let c2: fn() = to_fn_mut(|| set::<'t1>(tmp1));
//~^ ERROR cannot borrow `x` as mutable more than once
c1;
}
fn main() {
}
| 24.074074 | 64 | 0.578462 |
aa28d29859d103c28d0ae8e6681b3ce8163ab2ec | 636 | asm | Assembly | oeis/020/A020827.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/020/A020827.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/020/A020827.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A020827: Decimal expansion of 1/sqrt(70).
; Submitted by Jon Maiga
; 1,1,9,5,2,2,8,6,0,9,3,3,4,3,9,3,6,3,9,9,6,8,8,1,7,1,7,9,6,9,3,1,2,4,9,8,4,8,4,6,8,7,9,0,9,8,9,9,8,1,0,3,1,4,2,5,8,7,4,1,6,4,9,0,1,1,4,8,8,3,9,6,0,8,4,9,0,2,4,2,9,9,7,5,8,3,0,6,7,3,1,3,7,8,5,0,2,1,9,4
mov $1,1
mov $2,1
mov $3,$0
add $3,8
mov $4,$0
add $0,5
add $4,3
mul $4,2
mov $7,10
pow $7,$4
mov $9,10
lpb $3
mov $4,$2
pow $4,2
mul $4,70
mov $5,$1
pow $5,2
add $4,$5
mov $6,$1
mov $1,$4
mul $6,$2
mul $6,2
mov $2,$6
mov $8,$4
div $8,$7
max $8,2
div $1,$8
div $2,$8
sub $3,1
lpe
mov $3,$9
pow $3,$0
div $2,$3
mov $0,$2
mod $0,10
| 15.9 | 201 | 0.514151 |
44a10cd2ab962347002bcc29d56fd2c554fac2c0 | 22,548 | sql | SQL | Daten/Updateskripte/UpdateTo_V0108.sql | Constructor0987/MeisterGeister | 4614d882fee0bb38fb0e06905211afc26dc1aee8 | [
"Apache-2.0"
] | 5 | 2021-09-01T06:47:08.000Z | 2022-03-10T08:03:55.000Z | Daten/Updateskripte/UpdateTo_V0108.sql | Constructor0987/MeisterGeister | 4614d882fee0bb38fb0e06905211afc26dc1aee8 | [
"Apache-2.0"
] | 16 | 2021-09-04T15:26:22.000Z | 2022-03-31T15:52:44.000Z | Daten/Updateskripte/UpdateTo_V0108.sql | Constructor0987/MeisterGeister | 4614d882fee0bb38fb0e06905211afc26dc1aee8 | [
"Apache-2.0"
] | 1 | 2022-03-16T14:16:40.000Z | 2022-03-16T14:16:40.000Z | -- Landschaften aufgeräumt und gruppiert
CREATE TABLE [Landschaftsgruppe] (
[LandschaftsgruppeID] nvarchar(1) NOT NULL
, [Name] nvarchar(254) NOT NULL
);
CREATE TABLE [Landschaftsgruppe_Landschaft] (
[LandschaftsgruppeID] nvarchar(1) DEFAULT 'A' NOT NULL
, [LandschaftGUID] uniqueidentifier NOT NULL
);
ALTER TABLE [Landschaftsgruppe] ADD CONSTRAINT [PK_Landschaftsgruppe] PRIMARY KEY ([LandschaftsgruppeID]);
ALTER TABLE [Landschaftsgruppe_Landschaft] ADD CONSTRAINT [PK_Landschaftsgruppe_Landschaft] PRIMARY KEY ([LandschaftsgruppeID],[LandschaftGUID]);
ALTER TABLE [Landschaftsgruppe_Landschaft] ADD CONSTRAINT [FK_Landschaftsgruppe_Landschaft_Landschaftsgruppe] FOREIGN KEY ([LandschaftsgruppeID]) REFERENCES [Landschaftsgruppe]([LandschaftsgruppeID]) ON DELETE CASCADE ON UPDATE CASCADE;
ALTER TABLE [Landschaftsgruppe_Landschaft] ADD CONSTRAINT [FK_Landschaftsgruppe_Landschaft_Landschaft] FOREIGN KEY ([LandschaftGUID]) REFERENCES [Landschaft]([LandschaftGUID]) ON DELETE CASCADE ON UPDATE CASCADE;
/* Gebiet */
INSERT INTO [Gebiet] ( [GebietGUID], [Name], [Left], [Top], [Right], [Bot])
VALUES ('00000000-0000-0000-00f9-000000000024' ,N'Palakar' ,-3.97073518205224 ,23.7559918391783 ,-3.91868622893972 ,23.7029723881684);
/* Polygon */
INSERT INTO [Polygon] ( [PolygonGUID], [Name], [Left], [Top], [Right], [Bot], [Data])
VALUES ('00000000-0000-0000-0095-000000000267' ,N'Palakar' ,-3.97073518205224 ,23.7559918391783 ,-3.91868622893972 ,23.7029723881684 ,N'(-3.92787270850656, 23.7029723881684), (-3.91868622893972, 23.7409481021009), (-3.95715724047008, 23.7559918391783), (-3.97073518205224, 23.7203175875256),');
/* Gebiet_Polygon */
INSERT INTO [Gebiet_Polygon] ( [GebietGUID], [PolygonGUID])
VALUES ('00000000-0000-0000-00f9-000000000024' ,'00000000-0000-0000-0095-000000000267');
/* Landschaft */
UPDATE [Landschaft] SET [Kundig] = N'Dschungelkundig' WHERE [LandschaftGUID]='00000000-0000-0000-00fe-000000000033';
UPDATE [Landschaft] SET [Kundig] = N'Gebirgskundig' WHERE [LandschaftGUID]='00000000-0000-0000-00fe-000000000034';
UPDATE [Landschaft] SET [Name] = N'Wüstenrandgebiete' WHERE [LandschaftGUID]='00000000-0000-0000-00fe-000000000037';
UPDATE [Landschaft] SET [Kundig] = N'Steppenkundig' WHERE [LandschaftGUID]='00000000-0000-0000-00fe-000000000062';
UPDATE [Landschaft] SET [Kundig] = N'Steppenkundig' WHERE [LandschaftGUID]='00000000-0000-0000-00fe-000000000067';
UPDATE [Landschaft] SET [Kundig] = N'Steppenkundig' WHERE [LandschaftGUID]='00000000-0000-0000-00fe-000000000079';
DELETE FROM [Landschaft] WHERE [LandschaftGUID]='00000000-0000-0000-00fe-000000000016';
DELETE FROM [Landschaft] WHERE [LandschaftGUID]='00000000-0000-0000-00fe-000000000036';
DELETE FROM [Landschaft] WHERE [LandschaftGUID]='00000000-0000-0000-00fe-000000000039';
DELETE FROM [Landschaft] WHERE [LandschaftGUID]='00000000-0000-0000-00fe-000000000047';
DELETE FROM [Landschaft] WHERE [LandschaftGUID]='00000000-0000-0000-00fe-000000000053';
DELETE FROM [Landschaft] WHERE [LandschaftGUID]='00000000-0000-0000-00fe-000000000058';
/* Landschaftsgruppe */
INSERT INTO [Landschaftsgruppe] ( [LandschaftsgruppeID], [Name])
VALUES (N'A' ,N'Eis');
INSERT INTO [Landschaftsgruppe] ( [LandschaftsgruppeID], [Name])
VALUES (N'B' ,N'Wüste, Wüstenrand');
INSERT INTO [Landschaftsgruppe] ( [LandschaftsgruppeID], [Name])
VALUES (N'C' ,N'Gebirge');
INSERT INTO [Landschaftsgruppe] ( [LandschaftsgruppeID], [Name])
VALUES (N'D' ,N'Hochland');
INSERT INTO [Landschaftsgruppe] ( [LandschaftsgruppeID], [Name])
VALUES (N'E' ,N'Steppe, Buschland');
INSERT INTO [Landschaftsgruppe] ( [LandschaftsgruppeID], [Name])
VALUES (N'F' ,N'Grasland, Wiesen');
INSERT INTO [Landschaftsgruppe] ( [LandschaftsgruppeID], [Name])
VALUES (N'G' ,N'Fluss- und Seeufer, Teiche, Seen');
INSERT INTO [Landschaftsgruppe] ( [LandschaftsgruppeID], [Name])
VALUES (N'H' ,N'Küste, Strand');
INSERT INTO [Landschaftsgruppe] ( [LandschaftsgruppeID], [Name])
VALUES (N'I' ,N'Flussauen');
INSERT INTO [Landschaftsgruppe] ( [LandschaftsgruppeID], [Name])
VALUES (N'J' ,N'Sumpf, Moor');
INSERT INTO [Landschaftsgruppe] ( [LandschaftsgruppeID], [Name])
VALUES (N'K' ,N'Regenwald');
INSERT INTO [Landschaftsgruppe] ( [LandschaftsgruppeID], [Name])
VALUES (N'L' ,N'Wald');
INSERT INTO [Landschaftsgruppe] ( [LandschaftsgruppeID], [Name])
VALUES (N'M' ,N'Waldrand');
INSERT INTO [Landschaftsgruppe] ( [LandschaftsgruppeID], [Name])
VALUES (N'N' ,N'Höhlen, Ruinen');
INSERT INTO [Landschaftsgruppe] ( [LandschaftsgruppeID], [Name])
VALUES (N'O' ,N'Meer');
INSERT INTO [Landschaftsgruppe] ( [LandschaftsgruppeID], [Name])
VALUES (N'P' ,N'Sonstiges');
/* Landschaftsgruppe_Landschaft */
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'A' ,'00000000-0000-0000-00fe-000000000001');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'A' ,'00000000-0000-0000-00fe-000000000003');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'A' ,'00000000-0000-0000-00fe-000000000004');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'B' ,'00000000-0000-0000-00fe-000000000001');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'B' ,'00000000-0000-0000-00fe-000000000037');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'B' ,'00000000-0000-0000-00fe-000000000056');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'B' ,'00000000-0000-0000-00fe-000000000057');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'C' ,'00000000-0000-0000-00fe-000000000001');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'C' ,'00000000-0000-0000-00fe-000000000013');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'C' ,'00000000-0000-0000-00fe-000000000014');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'C' ,'00000000-0000-0000-00fe-000000000015');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'C' ,'00000000-0000-0000-00fe-000000000034');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'C' ,'00000000-0000-0000-00fe-000000000066');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'C' ,'00000000-0000-0000-00fe-000000000069');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'C' ,'00000000-0000-0000-00fe-000000000070');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'D' ,'00000000-0000-0000-00fe-000000000001');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'D' ,'00000000-0000-0000-00fe-000000000013');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'D' ,'00000000-0000-0000-00fe-000000000014');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'D' ,'00000000-0000-0000-00fe-000000000015');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'D' ,'00000000-0000-0000-00fe-000000000019');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'D' ,'00000000-0000-0000-00fe-000000000034');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'D' ,'00000000-0000-0000-00fe-000000000040');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'D' ,'00000000-0000-0000-00fe-000000000057');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'D' ,'00000000-0000-0000-00fe-000000000066');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'D' ,'00000000-0000-0000-00fe-000000000069');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'D' ,'00000000-0000-0000-00fe-000000000070');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'D' ,'00000000-0000-0000-00fe-000000000077');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'E' ,'00000000-0000-0000-00fe-000000000001');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'E' ,'00000000-0000-0000-00fe-000000000043');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'E' ,'00000000-0000-0000-00fe-000000000062');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'E' ,'00000000-0000-0000-00fe-000000000067');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'E' ,'00000000-0000-0000-00fe-000000000079');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'F' ,'00000000-0000-0000-00fe-000000000001');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'F' ,'00000000-0000-0000-00fe-000000000005');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'F' ,'00000000-0000-0000-00fe-000000000008');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'F' ,'00000000-0000-0000-00fe-000000000018');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'F' ,'00000000-0000-0000-00fe-000000000055');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'G' ,'00000000-0000-0000-00fe-000000000001');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'G' ,'00000000-0000-0000-00fe-000000000009');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'G' ,'00000000-0000-0000-00fe-000000000012');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'G' ,'00000000-0000-0000-00fe-000000000041');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'G' ,'00000000-0000-0000-00fe-000000000048');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'G' ,'00000000-0000-0000-00fe-000000000049');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'G' ,'00000000-0000-0000-00fe-000000000071');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'G' ,'00000000-0000-0000-00fe-000000000078');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'H' ,'00000000-0000-0000-00fe-000000000001');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'H' ,'00000000-0000-0000-00fe-000000000011');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'H' ,'00000000-0000-0000-00fe-000000000017');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'H' ,'00000000-0000-0000-00fe-000000000029');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'H' ,'00000000-0000-0000-00fe-000000000031');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'H' ,'00000000-0000-0000-00fe-000000000044');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'H' ,'00000000-0000-0000-00fe-000000000073');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'I' ,'00000000-0000-0000-00fe-000000000001');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'I' ,'00000000-0000-0000-00fe-000000000009');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'I' ,'00000000-0000-0000-00fe-000000000010');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'I' ,'00000000-0000-0000-00fe-000000000011');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'I' ,'00000000-0000-0000-00fe-000000000012');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'I' ,'00000000-0000-0000-00fe-000000000076');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'J' ,'00000000-0000-0000-00fe-000000000001');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'J' ,'00000000-0000-0000-00fe-000000000030');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'J' ,'00000000-0000-0000-00fe-000000000035');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'J' ,'00000000-0000-0000-00fe-000000000045');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'J' ,'00000000-0000-0000-00fe-000000000046');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'J' ,'00000000-0000-0000-00fe-000000000075');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'K' ,'00000000-0000-0000-00fe-000000000001');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'K' ,'00000000-0000-0000-00fe-000000000033');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'K' ,'00000000-0000-0000-00fe-000000000038');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'K' ,'00000000-0000-0000-00fe-000000000063');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'L' ,'00000000-0000-0000-00fe-000000000001');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'L' ,'00000000-0000-0000-00fe-000000000007');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'L' ,'00000000-0000-0000-00fe-000000000032');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'L' ,'00000000-0000-0000-00fe-000000000052');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'L' ,'00000000-0000-0000-00fe-000000000074');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'L' ,'00000000-0000-0000-00fe-000000000076');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'M' ,'00000000-0000-0000-00fe-000000000001');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'M' ,'00000000-0000-0000-00fe-000000000007');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'M' ,'00000000-0000-0000-00fe-000000000032');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'M' ,'00000000-0000-0000-00fe-000000000054');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'M' ,'00000000-0000-0000-00fe-000000000076');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'N' ,'00000000-0000-0000-00fe-000000000001');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'N' ,'00000000-0000-0000-00fe-000000000020');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'N' ,'00000000-0000-0000-00fe-000000000021');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'N' ,'00000000-0000-0000-00fe-000000000022');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'N' ,'00000000-0000-0000-00fe-000000000023');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'N' ,'00000000-0000-0000-00fe-000000000024');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'N' ,'00000000-0000-0000-00fe-000000000025');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'N' ,'00000000-0000-0000-00fe-000000000026');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'N' ,'00000000-0000-0000-00fe-000000000050');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'N' ,'00000000-0000-0000-00fe-000000000051');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'N' ,'00000000-0000-0000-00fe-000000000068');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'O' ,'00000000-0000-0000-00fe-000000000001');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'O' ,'00000000-0000-0000-00fe-000000000059');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'O' ,'00000000-0000-0000-00fe-000000000061');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'P' ,'00000000-0000-0000-00fe-000000000001');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'P' ,'00000000-0000-0000-00fe-000000000002');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'P' ,'00000000-0000-0000-00fe-000000000006');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'P' ,'00000000-0000-0000-00fe-000000000027');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'P' ,'00000000-0000-0000-00fe-000000000028');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'P' ,'00000000-0000-0000-00fe-000000000042');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'P' ,'00000000-0000-0000-00fe-000000000060');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'P' ,'00000000-0000-0000-00fe-000000000064');
INSERT INTO [Landschaftsgruppe_Landschaft] ( [LandschaftsgruppeID], [LandschaftGUID])
VALUES (N'P' ,'00000000-0000-0000-00fe-000000000072');
/* Pflanze_Gebiet */
INSERT INTO [Pflanze_Gebiet] ( [PflanzeGUID], [GebietGUID])
VALUES ('00000000-0000-0000-00ff-000000000084' ,'00000000-0000-0000-00f9-000000000024');
DELETE FROM [Pflanze_Gebiet] WHERE [PflanzeGUID]='00000000-0000-0000-00ff-000000000084' AND [GebietGUID]='00000000-0000-0000-00f9-000000000063';
/* Pflanze_Verbreitung */
INSERT INTO [Pflanze_Verbreitung] ( [PflanzeGUID], [LandschaftGUID], [Verbreitung])
VALUES ('00000000-0000-0000-00ff-000000000001' ,'00000000-0000-0000-00fe-000000000052' ,8);
INSERT INTO [Pflanze_Verbreitung] ( [PflanzeGUID], [LandschaftGUID], [Verbreitung])
VALUES ('00000000-0000-0000-00ff-000000000015' ,'00000000-0000-0000-00fe-000000000037' ,8);
INSERT INTO [Pflanze_Verbreitung] ( [PflanzeGUID], [LandschaftGUID], [Verbreitung])
VALUES ('00000000-0000-0000-00ff-000000000023' ,'00000000-0000-0000-00fe-000000000052' ,16);
INSERT INTO [Pflanze_Verbreitung] ( [PflanzeGUID], [LandschaftGUID], [Verbreitung])
VALUES ('00000000-0000-0000-00ff-000000000074' ,'00000000-0000-0000-00fe-000000000074' ,16);
INSERT INTO [Pflanze_Verbreitung] ( [PflanzeGUID], [LandschaftGUID], [Verbreitung])
VALUES ('00000000-0000-0000-00ff-000000000084' ,'00000000-0000-0000-00fe-000000000001' ,1);
INSERT INTO [Pflanze_Verbreitung] ( [PflanzeGUID], [LandschaftGUID], [Verbreitung])
VALUES ('00000000-0000-0000-00ff-000000000093' ,'00000000-0000-0000-00fe-000000000046' ,4);
INSERT INTO [Pflanze_Verbreitung] ( [PflanzeGUID], [LandschaftGUID], [Verbreitung])
VALUES ('00000000-0000-0000-00ff-000000000124' ,'00000000-0000-0000-00fe-000000000052' ,8);
DELETE FROM [Pflanze_Verbreitung] WHERE [PflanzeGUID]='00000000-0000-0000-00ff-000000000001' AND [LandschaftGUID]='00000000-0000-0000-00fe-000000000053';
DELETE FROM [Pflanze_Verbreitung] WHERE [PflanzeGUID]='00000000-0000-0000-00ff-000000000015' AND [LandschaftGUID]='00000000-0000-0000-00fe-000000000058';
DELETE FROM [Pflanze_Verbreitung] WHERE [PflanzeGUID]='00000000-0000-0000-00ff-000000000023' AND [LandschaftGUID]='00000000-0000-0000-00fe-000000000053';
DELETE FROM [Pflanze_Verbreitung] WHERE [PflanzeGUID]='00000000-0000-0000-00ff-000000000074' AND [LandschaftGUID]='00000000-0000-0000-00fe-000000000036';
DELETE FROM [Pflanze_Verbreitung] WHERE [PflanzeGUID]='00000000-0000-0000-00ff-000000000084' AND [LandschaftGUID]='00000000-0000-0000-00fe-000000000039';
DELETE FROM [Pflanze_Verbreitung] WHERE [PflanzeGUID]='00000000-0000-0000-00ff-000000000093' AND [LandschaftGUID]='00000000-0000-0000-00fe-000000000047';
DELETE FROM [Pflanze_Verbreitung] WHERE [PflanzeGUID]='00000000-0000-0000-00ff-000000000124' AND [LandschaftGUID]='00000000-0000-0000-00fe-000000000053';
| 70.242991 | 296 | 0.752306 |
4dfcae8110eb04f0b1675bf266b3c5b1e1c0b058 | 437 | swift | Swift | Tones/Views/SectionHeaderView.swift | ngquerol/Tones | 69ee9ac93267bf3ff52d450b57dedb7dd32f18d1 | [
"MIT"
] | null | null | null | Tones/Views/SectionHeaderView.swift | ngquerol/Tones | 69ee9ac93267bf3ff52d450b57dedb7dd32f18d1 | [
"MIT"
] | null | null | null | Tones/Views/SectionHeaderView.swift | ngquerol/Tones | 69ee9ac93267bf3ff52d450b57dedb7dd32f18d1 | [
"MIT"
] | null | null | null | //
// SectionHeaderView.swift
// Tones
//
// Created by Nicolas Gaulard-Querol on 26/02/2020.
// Copyright © 2020 Nicolas Gaulard-Querol. All rights reserved.
//
import AppKit
class SectionHeaderView: NSView {
static let identifier = NSUserInterfaceItemIdentifier(rawValue: "SectionHeaderView")
// MARK: IBOutlets
@IBOutlet var sectionTitleLabel: NSTextField!
@IBOutlet var sectionItemCountLabel: NSTextField!
}
| 21.85 | 88 | 0.741419 |
e62a48360b0586e71a9a2896c72df30eba84aa76 | 420 | kt | Kotlin | presentation/src/main/kotlin/ru/cherryperry/amiami/presentation/update/UpdateDialogModule.kt | CherryPerry/Amiami-android-app | 6cda5f48d33a31ab0d23814ad36fa525601892f1 | [
"Apache-2.0"
] | 13 | 2017-02-24T19:47:46.000Z | 2021-06-23T15:32:14.000Z | presentation/src/main/kotlin/ru/cherryperry/amiami/presentation/update/UpdateDialogModule.kt | CherryPerry/Amiami-android-app | 6cda5f48d33a31ab0d23814ad36fa525601892f1 | [
"Apache-2.0"
] | 39 | 2018-08-11T18:53:19.000Z | 2021-08-05T16:31:53.000Z | presentation/src/main/kotlin/ru/cherryperry/amiami/presentation/update/UpdateDialogModule.kt | CherryPerry/Amiami-android-app | 6cda5f48d33a31ab0d23814ad36fa525601892f1 | [
"Apache-2.0"
] | 2 | 2018-06-30T21:08:38.000Z | 2019-08-24T07:32:50.000Z | package ru.cherryperry.amiami.presentation.update
import androidx.lifecycle.ViewModel
import dagger.Binds
import dagger.Module
import dagger.multibindings.IntoMap
import ru.cherryperry.amiami.presentation.base.ViewModelKey
@Module
abstract class UpdateDialogModule {
@Binds
@IntoMap
@ViewModelKey(UpdateDialogViewModel::class)
abstract fun bindViewModel(viewModel: UpdateDialogViewModel): ViewModel
}
| 24.705882 | 75 | 0.82381 |
5db59a3105048f43a6db4cc3767d702196f22396 | 85 | sql | SQL | SQL/6kyu/simple_having/solution.sql | petergouvoussis/codewars_challenges | 8800b2fcb0283838a828857f70e3b46169b7b184 | [
"MIT"
] | null | null | null | SQL/6kyu/simple_having/solution.sql | petergouvoussis/codewars_challenges | 8800b2fcb0283838a828857f70e3b46169b7b184 | [
"MIT"
] | null | null | null | SQL/6kyu/simple_having/solution.sql | petergouvoussis/codewars_challenges | 8800b2fcb0283838a828857f70e3b46169b7b184 | [
"MIT"
] | null | null | null | SELECT age, COUNT(*) AS total_people FROM people
GROUP BY age
HAVING COUNT(*) >= 10;
| 21.25 | 48 | 0.717647 |
b16c2187e8b4cc1123a7a0bf8c239a8a822f43bc | 1,019 | kt | Kotlin | custom-vu/src/main/kotlin/jces1209/vu/page/admin/customfields/DcBrowseCustomFieldsPage.kt | ssagnes/jces-1209 | a2bcc10cca4b1fb04327dc189033dafe9b41d003 | [
"Apache-2.0"
] | null | null | null | custom-vu/src/main/kotlin/jces1209/vu/page/admin/customfields/DcBrowseCustomFieldsPage.kt | ssagnes/jces-1209 | a2bcc10cca4b1fb04327dc189033dafe9b41d003 | [
"Apache-2.0"
] | 25 | 2020-03-03T15:32:59.000Z | 2021-02-02T03:25:25.000Z | custom-vu/src/main/kotlin/jces1209/vu/page/admin/customfields/DcBrowseCustomFieldsPage.kt | ssagnes/jces-1209 | a2bcc10cca4b1fb04327dc189033dafe9b41d003 | [
"Apache-2.0"
] | 9 | 2020-02-14T10:17:12.000Z | 2021-09-06T22:49:39.000Z | package jces1209.vu.page.admin.customfields
import com.atlassian.performance.tools.jiraactions.api.WebJira
import jces1209.vu.page.FalliblePage
import org.openqa.selenium.By
import org.openqa.selenium.support.ui.ExpectedConditions
import java.time.Duration
class DcBrowseCustomFieldsPage(
private val jira: WebJira
): BrowseCustomFieldsPage(jira) {
private val falliblePage = FalliblePage.Builder(
jira.driver,
ExpectedConditions.and(
ExpectedConditions.visibilityOfElementLocated(By.id("customfields-container")),
ExpectedConditions.presenceOfAllElementsLocatedBy(By.className("cell-type-actions")),
ExpectedConditions.presenceOfAllElementsLocatedBy(By.cssSelector("[data-custom-field-id]"))
)
)
.serverErrors()
.timeout(Duration.ofSeconds(60))
.build()
override fun waitForBeingLoaded(): DcBrowseCustomFieldsPage {
falliblePage.waitForPageToLoad()
return this
}
}
| 33.966667 | 104 | 0.712463 |
383ad6f8bbe0591a7a4703de6f148a32ecc2fbf9 | 6,633 | lua | Lua | home/program/wezterm/wezterm.lua | vdesjardins/nix-config | 4bd057e4b7565fe6299b0b0bc8285f34b964dfa0 | [
"Apache-2.0"
] | null | null | null | home/program/wezterm/wezterm.lua | vdesjardins/nix-config | 4bd057e4b7565fe6299b0b0bc8285f34b964dfa0 | [
"Apache-2.0"
] | null | null | null | home/program/wezterm/wezterm.lua | vdesjardins/nix-config | 4bd057e4b7565fe6299b0b0bc8285f34b964dfa0 | [
"Apache-2.0"
] | null | null | null | local wezterm = require("wezterm")
local config = {
check_for_updates = false,
font = wezterm.font("JetBrainsMono Nerd Font"),
color_scheme = "GitHub Dark",
tab_bar_at_bottom = true,
inactive_pane_hsb = { hue = 1.0, saturation = 0.5, brightness = 1.0 },
exit_behavior = "Close",
leader = { key = "`", mods = "" },
mouse_bindings = {
{
event = { Down = { streak = 3, button = "Left" } },
action = { SelectTextAtMouseCursor = "SemanticZone" },
mods = "NONE",
},
},
-- LuaFormatter off
keys = {
-- panes
{ key = "z", mods = "LEADER", action="TogglePaneZoomState"},
{ key = "s", mods = "LEADER", action=wezterm.action{SplitVertical={domain="CurrentPaneDomain"}}},
{ key = "v", mods = "LEADER", action=wezterm.action{SplitHorizontal={domain="CurrentPaneDomain"}}},
{ key = "h", mods = "LEADER", action=wezterm.action{ActivatePaneDirection="Left"}},
{ key = "j", mods = "LEADER", action=wezterm.action{ActivatePaneDirection="Down"}},
{ key = "k", mods = "LEADER", action=wezterm.action{ActivatePaneDirection="Up"}},
{ key = "l", mods = "LEADER", action=wezterm.action{ActivatePaneDirection="Right"}},
{ key = "h", mods = "CTRL", action=wezterm.action{ActivatePaneDirection="Left"}},
{ key = "j", mods = "CTRL", action=wezterm.action{ActivatePaneDirection="Down"}},
{ key = "k", mods = "CTRL", action=wezterm.action{ActivatePaneDirection="Up"}},
{ key = "l", mods = "CTRL", action=wezterm.action{ActivatePaneDirection="Right"}},
{ key = "H", mods = "LEADER|SHIFT", action=wezterm.action{AdjustPaneSize={"Left", 5}}},
{ key = "J", mods = "LEADER|SHIFT", action=wezterm.action{AdjustPaneSize={"Down", 5}}},
{ key = "K", mods = "LEADER|SHIFT", action=wezterm.action{AdjustPaneSize={"Up", 5}}},
{ key = "L", mods = "LEADER|SHIFT", action=wezterm.action{AdjustPaneSize={"Right", 5}}},
{ key = "x", mods = "LEADER", action=wezterm.action{CloseCurrentPane={confirm=true}}},
-- tabs
{ key = "c", mods = "LEADER", action=wezterm.action{SpawnTab="CurrentPaneDomain"}},
{ key = "b", mods = "LEADER", action="ActivateLastTab"},
{ key = "w", mods = "LEADER", action="ShowTabNavigator"},
{ key = "p", mods = "LEADER", action=wezterm.action{ActivateTabRelative=-1}},
{ key = "n", mods = "LEADER", action=wezterm.action{ActivateTabRelative=1}},
{ key = "1", mods = "LEADER", action=wezterm.action{ActivateTab=0}},
{ key = "2", mods = "LEADER", action=wezterm.action{ActivateTab=1}},
{ key = "3", mods = "LEADER", action=wezterm.action{ActivateTab=2}},
{ key = "4", mods = "LEADER", action=wezterm.action{ActivateTab=3}},
{ key = "5", mods = "LEADER", action=wezterm.action{ActivateTab=4}},
{ key = "6", mods = "LEADER", action=wezterm.action{ActivateTab=5}},
{ key = "7", mods = "LEADER", action=wezterm.action{ActivateTab=6}},
{ key = "8", mods = "LEADER", action=wezterm.action{ActivateTab=7}},
{ key = "9", mods = "LEADER", action=wezterm.action{ActivateTab=8}},
{ key = "&", mods = "LEADER|SHIFT", action=wezterm.action{CloseCurrentTab={confirm=true}}},
-- utils
{ key = "`", mods = "LEADER", action=wezterm.action{SendString="`"}},
{ key = "~", mods = "LEADER|SHIFT", action=wezterm.action{SplitVertical={domain="CurrentPaneDomain", args={"@homeDirectory@/.nix-profile/bin/htop"}}}},
{ key = "r", mods = "LEADER", action="ReloadConfiguration"},
{ key = "l", mods = "CTRL", action=wezterm.action{ClearScrollback="ScrollbackAndViewport"}},
{ key = "[", mods = "LEADER", action="ActivateCopyMode" },
{ key = "E", mods = "LEADER", action=wezterm.action({ EmitEvent = "open_in_vim" }) },
-- selection
{ key = "S", mods = "LEADER|SHIFT", action="QuickSelect"},
},
-- LuaFormatter on
}
wezterm.on("update-right-status", function(window, pane)
-- Each element holds the text for a cell in a "powerline" style << fade
local cells = {};
-- Figure out the cwd and host of the current pane.
-- This will pick up the hostname for the remote host if your
-- shell is using OSC 7 on the remote host.
local cwd_uri = pane:get_current_working_dir()
if cwd_uri then
cwd_uri = cwd_uri:sub(8);
local slash = cwd_uri:find("/")
if slash then
local hostname = cwd_uri:sub(1, slash - 1)
-- Remove the domain name portion of the hostname
local dot = hostname:find("[.]")
if dot then hostname = hostname:sub(1, dot - 1) end
-- and extract the cwd from the uri
-- cwd = cwd_uri:sub(slash)
-- table.insert(cells, cwd);
table.insert(cells, hostname);
end
end
local date = wezterm.strftime("📆 %a %b %-d %H:%M");
table.insert(cells, date);
-- An entry for each battery (typically 0 or 1 battery)
for _, b in ipairs(wezterm.battery_info()) do
table.insert(cells, string.format("⚡ %.0f%%", b.state_of_charge * 100))
end
-- The filled in variant of the < symbol
local SOLID_LEFT_ARROW = _G.utf8.char(0xe0b2)
-- Color palette for the backgrounds of each cell
local colors = { "#3c1361", "#52307c", "#663a82", "#7c5295", "#b491c8" };
-- Foreground color for the text across the fade
local text_fg = "#c0c0c0";
-- The elements to be formatted
local elements = {};
-- How many cells have been formatted
local num_cells = 0;
-- Translate a cell into elements
function _G.push(text)
local cell_no = num_cells + 1
table.insert(elements, { Foreground = { Color = colors[cell_no] } })
table.insert(elements, { Text = SOLID_LEFT_ARROW })
table.insert(elements, { Foreground = { Color = text_fg } })
table.insert(elements, { Background = { Color = colors[cell_no] } })
table.insert(elements, { Text = " " .. text .. " " })
num_cells = num_cells + 1
end
while #cells > 0 do
local cell = table.remove(cells, 1)
_G.push(cell)
end
window:set_right_status(wezterm.format(elements));
end);
wezterm.on("open_in_vim", function(window, pane)
local filename = os.tmpname() .. "_hist"
local file = io.open(filename, "w")
file:write(pane:get_logical_lines_as_text(3000))
file:close()
window:perform_action(wezterm.action({
SendString = "nvim " .. filename .. " -c 'call cursor(3000,0)'\n",
}), pane)
end)
return config
| 44.817568 | 159 | 0.600181 |
187977190a84c44ddd39ed65330c06c6f9c5ecc9 | 1,043 | swift | Swift | CellControlKit/MainViewController.swift | wendellantildes/CellControlKit | a6101f16bf2a494fc0d4a77fc9aba0b0d082ec3b | [
"MIT"
] | 1 | 2018-09-25T10:50:45.000Z | 2018-09-25T10:50:45.000Z | CellControlKit/MainViewController.swift | wendellantildes/CellControlKit | a6101f16bf2a494fc0d4a77fc9aba0b0d082ec3b | [
"MIT"
] | 1 | 2017-03-01T19:09:43.000Z | 2017-03-01T19:09:43.000Z | CellControlKit/MainViewController.swift | wendellantildes/CellControlKit | a6101f16bf2a494fc0d4a77fc9aba0b0d082ec3b | [
"MIT"
] | 1 | 2018-04-28T03:39:39.000Z | 2018-04-28T03:39:39.000Z | //
// MainViewController.swift
// Forms
//
// Created by Wendell Antildes M Sampaio on 12/02/2017.
// Copyright © 2017 Wendell Antildes M Sampaio. All rights reserved.
//
import UIKit
class MainViewController: UITableViewController {
@IBOutlet var purchaseDatePicker: DatePickerTableViewCell!
override func viewDidLoad() {
super.viewDidLoad()
let datePicker = UIDatePicker()
datePicker.maximumDate = Date()
datePicker.datePickerMode = .date
self.purchaseDatePicker.datePicker = datePicker
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
// MARK: - Table view data source
override func numberOfSections(in tableView: UITableView) -> Int {
// #warning Incomplete implementation, return the number of sections
return 1
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 4
}
}
| 26.74359 | 98 | 0.683605 |
8ce4a3207bd2c0aafbcaa522fd22fb8ed69e98bf | 1,794 | kt | Kotlin | app/src/test/java/com/bendaschel/kotlinplayground/RedditApiTest.kt | supercoffee/kotlin-playground | 75ad7a8d98cb7cd63761e77757579cfd7c99fa3c | [
"MIT"
] | null | null | null | app/src/test/java/com/bendaschel/kotlinplayground/RedditApiTest.kt | supercoffee/kotlin-playground | 75ad7a8d98cb7cd63761e77757579cfd7c99fa3c | [
"MIT"
] | null | null | null | app/src/test/java/com/bendaschel/kotlinplayground/RedditApiTest.kt | supercoffee/kotlin-playground | 75ad7a8d98cb7cd63761e77757579cfd7c99fa3c | [
"MIT"
] | null | null | null | package com.bendaschel.kotlinplayground
import okhttp3.Credentials
import okhttp3.OkHttpClient
import okhttp3.logging.HttpLoggingInterceptor
import org.hamcrest.CoreMatchers.`is`
import org.junit.Assert.assertNotNull
import org.junit.Assert.assertThat
import org.junit.Before
import org.junit.Test
import retrofit2.Retrofit
import retrofit2.converter.gson.GsonConverterFactory
import java.util.*
const val CLIENT_ID = "-0g6rsJ5dyIIgQ"
const val GRANT_TYPE = "https://oauth.reddit.com/grants/installed_client"
class RedditApiTest {
private lateinit var redditApi: RedditApi
@Before
fun setUp() {
val logger = HttpLoggingInterceptor()
logger.level = HttpLoggingInterceptor.Level.BODY
val client = OkHttpClient.Builder()
.addInterceptor(logger)
.addInterceptor{
val creds = Credentials.basic(CLIENT_ID, "nopassword")
val request = it.request().newBuilder().header("Authorization", creds).build()
it.proceed(request)
}
.build()
redditApi = Retrofit.Builder()
.client(client)
.baseUrl("https://www.reddit.com/api/v1/")
.addConverterFactory(GsonConverterFactory.create())
.build()
.create(RedditApi::class.java)
}
@Test
fun testClientAuth() {
val deviceId = UUID.randomUUID().toString()
val call = redditApi.accessToken(GRANT_TYPE, deviceId)
val response = call.execute()
assertThat(response.body()?.token_type, `is`("bearer"))
}
@Test
fun testSubreddit() {
val call = redditApi.subreddit("aww")
val response = call.execute().body()
assertNotNull(response)
}
} | 31.473684 | 98 | 0.642698 |
d9c34d48831444f2a9fbb4f49e63bb5ed4371f01 | 5,523 | rs | Rust | src/product.rs | jerry73204/rusty-perm | addba95d47380339e9e11a0b9663af825980cbd7 | [
"Apache-2.0",
"MIT"
] | null | null | null | src/product.rs | jerry73204/rusty-perm | addba95d47380339e9e11a0b9663af825980cbd7 | [
"Apache-2.0",
"MIT"
] | null | null | null | src/product.rs | jerry73204/rusty-perm | addba95d47380339e9e11a0b9663af825980cbd7 | [
"Apache-2.0",
"MIT"
] | null | null | null | use crate::common::*;
/// The permutation composition operator.
pub trait PermProduct<Rhs> {
type Output;
fn perm_product(&self, other: &Rhs) -> Self::Output;
}
mod without_std {
use super::*;
use crate::perm_type::PermS;
impl<const SIZE: usize> PermProduct<PermS<SIZE>> for PermS<SIZE> {
type Output = PermS<SIZE>;
fn perm_product(&self, other: &PermS<SIZE>) -> Self::Output {
let mut indices = [0; SIZE];
product(&self.indices, &other.indices, &mut indices);
Self { indices }
}
}
impl<const SIZE: usize> Mul<&PermS<SIZE>> for &PermS<SIZE> {
type Output = PermS<SIZE>;
fn mul(self, other: &PermS<SIZE>) -> Self::Output {
self.perm_product(other)
}
}
impl<'a, const SIZE: usize> Product<&'a PermS<SIZE>> for PermS<SIZE> {
fn product<I>(iter: I) -> Self
where
I: Iterator<Item = &'a PermS<SIZE>>,
{
iter.fold(Self::identity(), |product, item| product.mul(item))
}
}
impl<const SIZE: usize> Product<PermS<SIZE>> for PermS<SIZE> {
fn product<I>(iter: I) -> Self
where
I: Iterator<Item = PermS<SIZE>>,
{
iter.fold(Self::identity(), |product, item| product.mul(&item))
}
}
}
#[cfg(feature = "std")]
mod with_std {
use super::*;
use crate::{
perm_trait::Permutation,
perm_type::{PermD, PermS},
};
impl<const SIZE: usize> PermProduct<PermD> for PermS<SIZE> {
type Output = Option<PermS<SIZE>>;
fn perm_product(&self, other: &PermD) -> Self::Output {
if other.len() != SIZE {
return None;
}
let mut indices = [0; SIZE];
product(&self.indices, &other.indices, &mut indices);
Some(Self { indices })
}
}
impl<const SIZE: usize> PermProduct<PermS<SIZE>> for PermD {
type Output = Option<PermS<SIZE>>;
fn perm_product(&self, other: &PermS<SIZE>) -> Self::Output {
if self.len() != SIZE {
return None;
}
let mut indices = [0; SIZE];
product(&self.indices, &other.indices, &mut indices);
Some(PermS { indices })
}
}
impl PermProduct<PermD> for PermD {
type Output = Option<PermD>;
fn perm_product(&self, other: &PermD) -> Self::Output {
if self.len() != other.len() {
return None;
}
let mut indices = vec![0; self.len()];
product(&self.indices, &other.indices, &mut indices);
Some(Self { indices })
}
}
impl<const SIZE: usize> Mul<&PermD> for &PermS<SIZE> {
type Output = PermS<SIZE>;
fn mul(self, other: &PermD) -> Self::Output {
self.perm_product(other).unwrap()
}
}
impl<const SIZE: usize> Mul<&PermS<SIZE>> for &PermD {
type Output = PermS<SIZE>;
fn mul(self, other: &PermS<SIZE>) -> Self::Output {
self.perm_product(other).unwrap()
}
}
impl Mul<&PermD> for &PermD {
type Output = PermD;
fn mul(self, other: &PermD) -> Self::Output {
self.perm_product(other).unwrap()
}
}
impl<'a, const SIZE: usize> Product<&'a PermD> for Option<PermS<SIZE>> {
fn product<I>(mut iter: I) -> Self
where
I: Iterator<Item = &'a PermD>,
{
iter.try_fold(PermS::<SIZE>::identity(), |product, item| -> Option<_> {
product.perm_product(item)
})
}
}
impl<const SIZE: usize> Product<PermD> for Option<PermS<SIZE>> {
fn product<I>(mut iter: I) -> Self
where
I: Iterator<Item = PermD>,
{
iter.try_fold(PermS::<SIZE>::identity(), |product, item| -> Option<_> {
product.perm_product(&item)
})
}
}
impl<'a, const SIZE: usize> Product<&'a PermS<SIZE>> for PermD {
fn product<I>(iter: I) -> Self
where
I: Iterator<Item = &'a PermS<SIZE>>,
{
iter.fold(PermS::<SIZE>::identity(), |product, item| product.mul(item))
.into_dynamic()
}
}
impl<const SIZE: usize> Product<PermS<SIZE>> for PermD {
fn product<I>(iter: I) -> Self
where
I: Iterator<Item = PermS<SIZE>>,
{
iter.fold(PermS::<SIZE>::identity(), |product, item| {
product.mul(&item)
})
.into_dynamic()
}
}
impl<'a> Product<&'a PermD> for Option<PermD> {
fn product<I>(mut iter: I) -> Self
where
I: Iterator<Item = &'a PermD>,
{
let first = iter.next()?.to_owned();
iter.try_fold(first, |product, item| -> Option<_> {
product.perm_product(item)
})
}
}
impl Product<PermD> for Option<PermD> {
fn product<I>(mut iter: I) -> Self
where
I: Iterator<Item = PermD>,
{
let first = iter.next()?;
iter.try_fold(first, |product, item| -> Option<_> {
product.perm_product(&item)
})
}
}
}
fn product(lhs: &[usize], rhs: &[usize], output: &mut [usize]) {
let len = output.len();
(0..len).for_each(|src| {
let dst = lhs[rhs[src]];
output[src] = dst;
});
}
| 27.893939 | 83 | 0.502988 |
2da94d6ad4b481dea7d9c399b1217bc1d01bd762 | 377 | html | HTML | app/view/Common/district.html | Jeremy1401/survey | 023bf4778155cb8b1e63f58bea8c381306070806 | [
"Apache-2.0"
] | null | null | null | app/view/Common/district.html | Jeremy1401/survey | 023bf4778155cb8b1e63f58bea8c381306070806 | [
"Apache-2.0"
] | null | null | null | app/view/Common/district.html | Jeremy1401/survey | 023bf4778155cb8b1e63f58bea8c381306070806 | [
"Apache-2.0"
] | null | null | null | <script src="__PUBLIC__/js/district/jquery.cityselect.js"></script>
<div id="district" style="display: inline">
<select class="form-control prov" id="province" name="prov"></select>
<select class="form-control city" disabled="disabled" id="city" name="city"></select>
<select class="form-control dist" disabled="disabled" id="county" name="county"></select>
</div> | 62.833333 | 93 | 0.702918 |
6618a7a2a4e74aca4b0a086d63e62fd6f08ceaa3 | 696 | swift | Swift | Example/Collor/WeatherSectionDescriptor.swift | NyxReloaded/Collor | acb3af17e7a003747cddc00240a3eeb6ca5fd71d | [
"BSD-3-Clause"
] | 190 | 2017-08-20T16:50:38.000Z | 2022-01-20T09:55:56.000Z | Example/Collor/WeatherSectionDescriptor.swift | NyxReloaded/Collor | acb3af17e7a003747cddc00240a3eeb6ca5fd71d | [
"BSD-3-Clause"
] | 8 | 2017-09-02T17:23:08.000Z | 2022-02-26T08:27:37.000Z | Example/Collor/WeatherSectionDescriptor.swift | NyxReloaded/Collor | acb3af17e7a003747cddc00240a3eeb6ca5fd71d | [
"BSD-3-Clause"
] | 23 | 2017-08-31T21:00:05.000Z | 2021-06-05T16:11:54.000Z | //
// WeatherSectionDescriptor.swift
// Collor
//
// Created by Guihal Gwenn on 26/07/2017.
// Copyright (c) 2017-present, Voyages-sncf.com. All rights reserved.. All rights reserved.
//
import Foundation
import Collor
final class WeatherSectionDescriptor : CollectionSectionDescribable, SectionDecorable {
let hasBackground:Bool
var isExpanded:Bool = false
convenience init() {
self.init(hasBackground: true)
}
init(hasBackground:Bool) {
self.hasBackground = hasBackground
}
func sectionInset(_ collectionView: UICollectionView) -> UIEdgeInsets {
return UIEdgeInsets(top: 10, left: 15, bottom: 15, right: 15)
}
}
| 24 | 92 | 0.683908 |
6097624f4fb6d81667e6544a3ba9abf59c5c9820 | 1,032 | kt | Kotlin | src/app/src/main/java/com/huawei/training/kotlin/database/tables/CoursesCodelabDetailsTable.kt | huaweicodelabs/HMS-Learning-Application | 9e038c432077d2bf0b0749f5c12cf8f58dbe5454 | [
"Apache-2.0"
] | null | null | null | src/app/src/main/java/com/huawei/training/kotlin/database/tables/CoursesCodelabDetailsTable.kt | huaweicodelabs/HMS-Learning-Application | 9e038c432077d2bf0b0749f5c12cf8f58dbe5454 | [
"Apache-2.0"
] | null | null | null | src/app/src/main/java/com/huawei/training/kotlin/database/tables/CoursesCodelabDetailsTable.kt | huaweicodelabs/HMS-Learning-Application | 9e038c432077d2bf0b0749f5c12cf8f58dbe5454 | [
"Apache-2.0"
] | null | null | null | /*
* Copyright (c) Huawei Technologies Co., Ltd. 2019-2019. All rights reserved.
* Generated by the CloudDB ObjectType compiler. DO NOT EDIT!
*/
package com.huawei.training.kotlin.database.tables
import com.huawei.agconnect.cloud.database.CloudDBZoneObject
import com.huawei.agconnect.cloud.database.annotations.PrimaryKey
/**
* @since 2020
* @author Huawei DTSE India
*/
class CoursesCodelabDetailsTable : CloudDBZoneObject() {
@PrimaryKey
var codeLabId: Int? = null
var courseId: Int? = null
var codeLabUrl: String? = null
var codeLabContentA: String? = null
var codeLabContentB: String? = null
var codeLabContentC: String? = null
var codeLabContentD: String? = null
var codeLabContentE: String? = null
var codeLabContentF: String? = null
var codeLabContentG: String? = null
var codeLabContentH: String? = null
var codeLabContentI: String? = null
var codeLabContentJ: String? = null
var codeLabContentK: String? = null
var codeLabContentL: String? = null
} | 32.25 | 78 | 0.722868 |
3d2d3ded211e13a8f2a40dd72a1d459a121d223d | 799 | go | Go | src/main/pprof.go | lioneagle/gomake | fc3fc0619bd77c9e02ba0f779ca8daa0662b416b | [
"MIT"
] | null | null | null | src/main/pprof.go | lioneagle/gomake | fc3fc0619bd77c9e02ba0f779ca8daa0662b416b | [
"MIT"
] | null | null | null | src/main/pprof.go | lioneagle/gomake | fc3fc0619bd77c9e02ba0f779ca8daa0662b416b | [
"MIT"
] | null | null | null | package main
import (
"fmt"
"os"
"os/exec"
"github.com/lioneagle/gomake/src/config"
"github.com/lioneagle/goutil/src/file"
)
func pprof(cfg *config.RunConfig) error {
setEnv(cfg)
testFileName := getTestFileName(cfg, cfg.Pprof.Package)
cpuProfileFileName := getCpuProfileFileName(cfg, cfg.Pprof.Package)
ok, _ := file.PathOrFileIsExist(testFileName)
if !ok {
return nil
}
ok, _ = file.PathOrFileIsExist(cpuProfileFileName)
if !ok {
return nil
}
fmt.Println("testFileName =", testFileName)
fmt.Println("cpuProfileFileName =", cpuProfileFileName)
cmd := exec.Command("go", "tool", "pprof",
"-nodecount", fmt.Sprintf("%d", cfg.Pprof.NodeCount),
testFileName, cpuProfileFileName)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
cmd.Stdin = os.Stdin
return cmd.Run()
}
| 19.975 | 68 | 0.715895 |
3937d181ff3c9b089e2abe61aeb7f7bdd3b152e0 | 47,460 | html | HTML | data/RMG/SABIC_aromatics_data/html/101.html | sowmyamanojna/Ab-initio-Synthesis-of-Amino-Acids | 112f2a38077aa7d384490f05a4af473039949d67 | [
"MIT"
] | null | null | null | data/RMG/SABIC_aromatics_data/html/101.html | sowmyamanojna/Ab-initio-Synthesis-of-Amino-Acids | 112f2a38077aa7d384490f05a4af473039949d67 | [
"MIT"
] | null | null | null | data/RMG/SABIC_aromatics_data/html/101.html | sowmyamanojna/Ab-initio-Synthesis-of-Amino-Acids | 112f2a38077aa7d384490f05a4af473039949d67 | [
"MIT"
] | null | null | null | <!DOCTYPE html>
<html lang="en">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<meta content="width = device-width, initial-scale = 0.6" name="viewport"/><!-- For responsive mobile view -->
<title>
RMG Thermodynamics Libraries
</title>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700" rel="stylesheet"/>
<link href="/static/css/default.css?v=2.0" rel="stylesheet" type="text/css"/>
<link href="/static/css/light-theme.css" id="css-theme" rel="stylesheet" type="text/css"/>
<!-- Google Analytics Tracker -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-24556433-1']);
_gaq.push(['_setDomainName', 'rmg.mit.edu']);
_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 crossorigin="anonymous" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script async="" crossorigin="anonymous" integrity="sha256-fCth3p2B4cZMzlr7OFizmo5RkdJAHJ4vOHpE7FaNcR8=" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-AMS_HTML"></script>
<script async="" defer="" src="https://buttons.github.io/buttons.js"></script>
<script>
// Check for cookie
if (document.cookie.indexOf("rmg-theme=light") < 0) {
document.getElementById('css-theme').disabled = true;
};
toggleCSS = function() {
var themeElement = document.getElementById('css-theme');
if (themeElement.disabled) {
themeElement.disabled = false;
var expiry = new Date();
// Create cookie expiring in one year
expiry.setTime(expiry.getTime() + (365*24*60*60*1000));
document.cookie = "rmg-theme=light;path='/';expires=" + expiry.toUTCString();
} else {
themeElement.disabled = true;
// Remove cookie
document.cookie = "rmg-theme=;path='/';expires=Thu, 01 Jan 1970 00:00:00 GMT";
}
};
</script>
<style>
table.thermoEntryData {
text-align: center;
margin-bottom: 1em;
}
table.thermoEntryData td.key {
font-weight: bold;
text-align: right;
}
table.thermoEntryData td.equals {
text-align: center;
}
table.thermoEntryData td.value {
text-align: left;
}
table.thermoEntryData td.reference p {
margin: 0px;
}
</style>
<script src="https://code.highcharts.com/6/highcharts.js"></script>
<script src="/static/js/highcharts.theme.js" type="text/javascript"></script>
<script type="text/javascript">
jQuery(document).ready(function() {
var Cpseries = new Array();
var Hseries = new Array();
var Sseries = new Array();
var Gseries = new Array();
Tlist = [200.0, 210.0, 220.0, 230.0, 240.0, 250.0, 260.0, 270.0, 280.0, 290.0, 300.0, 310.0, 320.0, 330.0, 340.0, 350.0, 360.0, 370.0, 380.0, 390.0, 400.0, 410.0, 420.0, 430.0, 440.0, 450.0, 460.0, 470.0, 480.0, 490.0, 500.0, 510.0, 520.0, 530.0, 540.0, 550.0, 560.0, 570.0, 580.0, 590.0, 600.0, 610.0, 620.0, 630.0, 640.0, 650.0, 660.0, 670.0, 680.0, 690.0, 700.0, 710.0, 720.0, 730.0, 740.0, 750.0, 760.0, 770.0, 780.0, 790.0, 800.0, 810.0, 820.0, 830.0, 840.0, 850.0, 860.0, 870.0, 880.0, 890.0, 900.0, 910.0, 920.0, 930.0, 940.0, 950.0, 960.0, 970.0, 980.0, 990.0, 1000.0, 1010.0, 1020.0, 1030.0, 1040.0, 1050.0, 1060.0, 1070.0, 1080.0, 1090.0, 1100.0, 1110.0, 1120.0, 1130.0, 1140.0, 1150.0, 1160.0, 1170.0, 1180.0, 1190.0, 1200.0, 1210.0, 1220.0, 1230.0, 1240.0, 1250.0, 1260.0, 1270.0, 1280.0, 1290.0, 1300.0, 1310.0, 1320.0, 1330.0, 1340.0, 1350.0, 1360.0, 1370.0, 1380.0, 1390.0, 1400.0, 1410.0, 1420.0, 1430.0, 1440.0, 1450.0, 1460.0, 1470.0, 1480.0, 1490.0, 1500.0, 1510.0, 1520.0, 1530.0, 1540.0, 1550.0, 1560.0, 1570.0, 1580.0, 1590.0, 1600.0, 1610.0, 1620.0, 1630.0, 1640.0, 1650.0, 1660.0, 1670.0, 1680.0, 1690.0, 1700.0, 1710.0, 1720.0, 1730.0, 1740.0, 1750.0, 1760.0, 1770.0, 1780.0, 1790.0, 1800.0, 1810.0, 1820.0, 1830.0, 1840.0, 1850.0, 1860.0, 1870.0, 1880.0, 1890.0, 1900.0, 1910.0, 1920.0, 1930.0, 1940.0, 1950.0, 1960.0, 1970.0, 1980.0, 1990.0, 2000.0, 2010.0, 2020.0, 2030.0, 2040.0, 2050.0, 2060.0, 2070.0, 2080.0, 2090.0, 2100.0, 2110.0, 2120.0, 2130.0, 2140.0, 2150.0, 2160.0, 2170.0, 2180.0, 2190.0, 2200.0, 2210.0, 2220.0, 2230.0, 2240.0, 2250.0, 2260.0, 2270.0, 2280.0, 2290.0, 2300.0, 2310.0, 2320.0, 2330.0, 2340.0, 2350.0, 2360.0, 2370.0, 2380.0, 2390.0, 2400.0, 2410.0, 2420.0, 2430.0, 2440.0, 2450.0, 2460.0, 2470.0, 2480.0, 2490.0, 2500.0, 2510.0, 2520.0, 2530.0, 2540.0, 2550.0, 2560.0, 2570.0, 2580.0, 2590.0, 2600.0, 2610.0, 2620.0, 2630.0, 2640.0, 2650.0, 2660.0, 2670.0, 2680.0, 2690.0, 2700.0, 2710.0, 2720.0, 2730.0, 2740.0, 2750.0, 2760.0, 2770.0, 2780.0, 2790.0, 2800.0, 2810.0, 2820.0, 2830.0, 2840.0, 2850.0, 2860.0, 2870.0, 2880.0, 2890.0, 2900.0, 2910.0, 2920.0, 2930.0, 2940.0, 2950.0, 2960.0, 2970.0, 2980.0, 2990.0, 3000.0, 3010.0, 3020.0, 3030.0, 3040.0, 3050.0, 3060.0, 3070.0, 3080.0, 3090.0, 3100.0, 3110.0, 3120.0, 3130.0, 3140.0, 3150.0, 3160.0, 3170.0, 3180.0, 3190.0, 3200.0];
Cplist = [22.94963438915013, 24.110976740894415, 25.26050555832569, 26.3981041172026, 27.52366124965625, 28.637071344190215, 29.738234345680503, 30.8270557553756, 31.90344663089643, 32.9673235862364, 34.01860879176132, 35.0572299742095, 36.0831204166917, 37.096218958691125, 38.09646999606344, 39.08382348103676, 40.058234922211675, 41.0196653845612, 41.968081489430816, 42.90345541453849, 43.82576489397459, 44.73499321820201, 45.63112923405601, 46.51416734474439, 47.38410750984736, 48.24095524531759, 49.08472162348021, 49.915423273032815, 50.73308237904544, 51.53772668296058, 52.32938948259321, 53.108109632130706, 53.873931542132944, 54.62690517953225, 55.3670860676334, 56.094535286113626, 56.8093194710226, 57.51151081478248, 58.20118706618785, 58.87843153040577, 59.54333306897575, 60.195986099809744, 60.83649059719218, 61.46495209177994, 62.08148167060236, 62.68619597706119, 63.27921721093069, 63.86067312835759, 64.43069704186098, 64.98942782033254, 65.53700988903627, 66.07359322960872, 66.59933338005887, 67.11439143476812, 67.6189340444904, 68.11313341635203, 68.5971673138518, 69.07121905686095, 69.53547752162324, 69.99013714075477, 70.43539790324421, 70.8714653544526, 71.2985505961135, 71.71687028633286, 72.12664663958914, 72.52810742673327, 72.92148597498856, 73.30702116795084, 73.68495744558832, 74.0555448042418, 74.4190387966244, 74.77570053182178, 75.12579667529201, 75.46959944886564, 75.80738663074565, 76.13944155550749, 76.46605311409911, 76.78751575384085, 77.10412947842549, 77.416410625911, 77.72414528790821, 78.02760451538913, 78.32683962491181, 78.62190158642295, 78.91284102325777, 79.19970821214008, 79.48255308318231, 79.76142521988542, 80.036373859139, 80.30744789122117, 80.57469585979868, 80.8381659619268, 81.09790604804948, 81.35396362199911, 81.60638584099681, 81.85521951565217, 82.10051110996339, 82.34230674131726, 82.58065218048918, 82.81559285164309, 83.04717383233152, 83.27543985349556, 83.50043529946493, 83.72220420795787, 83.94079027008128, 84.15623683033057, 84.36858688658975, 84.5778830901314, 84.78416774561673, 84.98748281109548, 85.18786989800597, 85.38537027117515, 85.58002484881847, 85.77187420254006, 85.96095855733256, 86.1473177915772, 86.3309914370438, 86.51201867889077, 86.69043835566507, 86.86628895930228, 87.03960863512657, 87.2104351818506, 87.37880605157568, 87.54475834979176, 87.70832883537722, 87.86955392059919, 88.02846967111323, 88.18511180596354, 88.33951569758294, 88.49171637179279, 88.64174850780304, 88.78964643821222, 88.93544414900741, 89.07917527956431, 89.22087312264722, 89.36057062440895, 89.49830038439093, 89.63409465552321, 89.76798534412436, 89.90000400990151, 90.03018186595048, 90.15854977875557, 90.28513826818968, 90.40997750751434, 90.53309732337961, 90.6545271958241, 90.77429625827514, 90.89243329754845, 91.00896675384845, 91.12392472076817, 91.23733494528912, 91.34922482778147, 91.45962142200389, 91.56855143510373, 91.67604122761679, 91.78211681346761, 91.88680385996925, 91.99012768782323, 92.09211327111986, 92.19278523733782, 92.29216786734456, 92.39028509539598, 92.48716050913659, 92.58281734959952, 92.67727851120647, 92.77056654176766, 92.86270364248196, 92.95371166793682, 93.04361212610823, 93.13242617836075, 93.22017463944756, 93.30687797751042, 93.39255631407968, 93.47722942407418, 93.56091673580154, 93.64363733095765, 93.72540994462732, 93.80625296528372, 93.88618443478859, 93.96522204839242, 94.0433831547342, 94.12068475584142, 94.19714350713022, 94.27277571740538, 94.34759734886009, 94.42162401707633, 94.49487099102444, 94.56735319306355, 94.63908519894126, 94.71008123779377, 94.78035519214583, 94.84992059791082, 94.91879064439064, 94.9869781742759, 95.05449568364565, 95.12135532196756, 95.18756889209787, 95.25314785028148, 95.31810330615174, 95.38244602273072, 95.446186416429, 95.50933455704573, 95.57190016776859, 95.63389262517406, 95.69532095922688, 95.75619385328062, 95.81651964407735, 95.87630632174769, 95.93556152981085, 95.9942925651747, 96.05250637813558, 96.11020957237848, 96.16740840497694, 96.22410878639312, 96.28031628047769, 96.33603610446998, 96.3912731289978, 96.4460318780777, 96.50031652911458, 96.55413091290218, 96.60747851362264, 96.66036246884673, 96.7127855695338, 96.76475026003185, 96.8162586380773, 96.86731245479534, 96.91791311469954, 96.96806167569231, 97.0177588490643, 97.06700499949507, 97.11580014505255, 97.16414395719339, 97.21203576076266, 97.25947453399418, 97.3064589085102, 97.35298716932172, 97.39905725482811, 97.44466675681753, 97.48981292046655, 97.53449264434043, 97.57870248039296, 97.62243863396655, 97.66569696379217, 97.70847298198932, 97.75076185406611, 97.79255839891934, 97.83385708883429, 97.87465204948472, 97.91493705993312, 97.95470555263061, 97.99395061341671, 98.03266498151964, 98.07084104955617, 98.10847086353165, 98.14554612284, 98.18205818026374, 98.21799804197394, 98.25335636753039, 98.2881234698812, 98.32228931536325, 98.35584352370195, 98.38877536801134, 98.421073774794, 98.45272732394095, 98.48372424873209, 98.5140524358357, 98.54369942530865, 98.57265241059635, 98.600898238533, 98.6284234093412, 98.65521407663212, 98.68125604740554, 98.7065347820499, 98.7310353943422, 98.75474265144793, 98.7776409739212, 98.79971443570471, 98.82094676412977, 98.84132133991626, 98.86082119717256, 98.87942902339574, 98.89712715947144, 98.91389759967385, 98.92972199166562, 98.94458163649816, 98.95845748861151, 98.9713301558341, 98.98317989938289, 98.99398663386367, 99.00372992727075, 99.01238900098689, 99.01994272978348, 99.02636964182054, 99.03164791864668, 99.03575539519906, 99.03866955980325, 99.04036755417367, 99.04082617341334, 99.04002186601356, 99.03793073385447, 99.03452853220463];
Hlist = [84.92209642431924, 85.15740927448003, 85.40427658007205, 85.66257961750064, 85.93219852371065, 86.21301235174998, 86.5048991263336, 86.80773589940691, 87.12139880570982, 87.4457631183402, 87.7807033043178, 88.1260930801478, 88.4818054673847, 88.84771284819597, 89.22368702092574, 89.60959925565854, 90.00532034978312, 90.410720683556, 90.82567027566536, 91.2500388387947, 91.68369583518651, 92.1265105322061, 92.57835205790528, 93.03908945658596, 93.50859174436417, 93.98672796473343, 94.47336724412877, 94.96837884749029, 95.47163223382694, 95.98299711178018, 96.50234349518782, 97.02954175864768, 97.56446269308128, 98.10697756129763, 98.65695815355687, 99.21427684313417, 99.77880664188321, 100.35042125580009, 100.92899514058698, 101.51440355721583, 102.10652262749223, 102.70522938961886, 103.31040185375954, 103.92191905760268, 104.53966112192519, 105.16350930615613, 105.79334606394043, 106.42905509870258, 107.07052141921045, 107.71763139513898, 108.37027281263384, 109.02833492987523, 109.69170853264158, 110.36028598987322, 111.03396130923626, 111.7126301926861, 112.39619009203138, 113.08454026449746, 113.77758182829041, 114.47521781816047, 115.177353240966, 115.88389513123704, 116.59475260673918, 117.30983692403714, 118.02906153405858, 118.75234213765783, 119.47959674117956, 120.21074571202259, 120.94571183420348, 121.68442036392037, 122.42679908511668, 123.17277836504485, 123.92229120982998, 124.6752733200337, 125.43166314621762, 126.19140194450748, 126.95443383215648, 127.72070584310926, 128.4901679835654, 129.26278071592978, 130.03848707983434, 130.8172493702781, 131.59902508978746, 132.38377225232142, 133.1714493798055, 133.96201549866527, 134.75543013636064, 135.55165331791963, 136.35064556247207, 137.1523678797837, 137.95678176679002, 138.76384920413003, 139.57353265268037, 140.38579505008897, 141.20059980730898, 142.0179108051329, 142.8376923907261, 143.65990937416083, 144.48452702495032, 145.3115110685824, 146.14082768305352, 146.97244349540247, 147.8063255782446, 148.64244144630536, 149.48075905295437, 150.32124678673927, 151.16387346791953, 152.0086083450005, 152.85542109126715, 153.704281801318, 154.555160987599, 155.40802957693745, 156.26285890707595, 157.11962072320594, 157.97828717450213, 158.83883081065596, 159.70122457840964, 160.56544181808994, 161.43145626014237, 162.29924202166464, 163.1687736029409, 164.04002588397535, 164.91297412102642, 165.78759394314034, 166.66386134868532, 167.54175270188517, 168.42124472935348, 169.30231451662712, 170.18493950470048, 171.06909748655923, 171.95476660371418, 172.84192534273512, 173.73055253178487, 174.620627337153, 175.5121292597898, 176.40503813184006, 177.2993341131772, 178.1949976879369, 179.09200966105107, 179.99035115478176, 180.8900036052552, 181.79094875899514, 182.69316866945758, 183.59664569356377, 184.50136248823483, 185.40730200692514, 186.3144474961565, 187.22278249205192, 188.1322908168694, 189.0429565755361, 189.95476415218195, 190.86769820667365, 191.78174367114855, 192.6968857465485, 193.61310989915384, 194.53040185711714, 195.44874760699722, 196.3681333902929, 197.28854569997696, 198.2099712770302, 199.1323971069749, 200.05581041640906, 200.98019866954033, 201.9055495647194, 202.8318510309746, 203.75909122454522, 204.68725852541567, 205.61634153384918, 206.54632906692197, 207.47721015505678, 208.40897403855715, 209.34161016414086, 210.2751081814742, 211.2094579397057, 212.14464948399998, 213.08067305207166, 214.01751907071935, 214.9551781523594, 215.8936410915597, 216.83289886157397, 217.77294261087516, 218.71376365968973, 219.65535349653115, 220.59770377473413, 221.54080630898832, 222.48465307187237, 223.42923619038748, 224.3745479424917, 225.32058075363344, 226.2673271932856, 227.21477997147946, 228.16293193533835, 229.11177606561188, 230.0613054732094, 231.0115133957341, 231.96239319401738, 232.91393834865147, 233.8661424565247, 234.81899922735457, 235.77250248022187, 236.72664614010472, 237.68142423441202, 238.63683088951785, 239.5928603272949, 240.54950686164864, 241.50676489505128, 242.46462891507525, 243.42309349092753, 244.3821532699833, 245.3418029743199, 246.3020373972507, 247.2628513998588, 248.2242399075313, 249.18619790649296, 250.14872044033993, 251.111802606574, 252.07543955313633, 253.03962647494097, 254.00435861040953, 254.9696312380043, 255.93543967276247, 256.90177926283025, 257.8686453859961, 258.8360334462255, 259.80393887019386, 260.7723571038211, 261.7412836088055, 262.7107138591572, 263.6806433377324, 264.6510675327673, 265.6219819344113, 266.5933820312621, 267.56526330689843, 268.5376212364148, 269.5104512829544, 270.4837488942444, 271.45750949912843, 272.43172850410116, 273.40640128984217, 274.3815232077497, 275.3570895764748, 276.33309567845447, 277.3095367564467, 278.28640801006344, 279.26370459230463, 280.24142160609256, 281.21955410080506, 282.1980970688101, 283.17704544199927, 284.15639408832146, 285.13613780831736, 286.1162713316528, 287.0967893136528, 288.0776863318355, 289.0589568824463, 290.0405953769912, 291.02259613877106, 292.0049533994154, 292.9876612954162, 293.9707138646619, 294.9541050429715, 295.93782866062764, 296.9218784389118, 297.9062479866366, 298.8909307966813, 299.8759202425242, 300.86120957477766, 301.84679191772153, 302.8326602658369, 303.81880748034024, 304.8052262857172, 305.79190926625637, 306.77884886258346, 307.7660373681947, 308.7534669259916, 309.74112952481346, 310.7290169959728, 311.7171210097881, 312.70543307211847, 313.6939445208966, 314.6826465226637, 315.6715300691025, 316.66058597357204, 317.6498048676405, 318.6391771976199, 319.6286932211, 320.61834300348113, 321.60811641450965, 322.5980031248104, 323.58799260242165, 324.57807410932855, 325.56823669799695, 326.55846920790697, 327.5487602620878, 328.53909826365077, 329.5294713923238, 330.5198676009846, 331.5102746121954, 332.50067991473594, 333.4910707601383, 334.4814341592199];
Slist = [81.43015198604884, 82.57801687067985, 83.72623665699598, 84.8742518683509, 86.021569644037, 87.16775308192038, 88.31241267254663, 89.45519935073077, 90.59579881141732, 91.73392682343422, 92.86932533802613, 94.00175923570826, 95.13101358977616, 96.2568913510306, 97.37921137823287, 98.4978067541311, 99.61252333876712, 100.72321852104108, 101.8297601367971, 102.93202552746857, 104.02990071792273, 105.12327969583936, 106.2120637779378, 107.29616105078786, 108.3754858759129, 109.44995845051483, 110.51950441648285, 111.58405451145487, 112.64354425661799, 113.69791367670135, 114.74710704825905, 115.79107267288042, 116.82976267242307, 117.8631328037516, 118.89114229079308, 119.91375367200357, 120.93093266157835, 121.94264802294663, 122.94887145326835, 123.9495774778046, 124.9447433531659, 125.93434897855738, 126.91837681424111, 127.89681180652195, 128.86964131864113, 129.83685506702741, 130.79844506241506, 131.75440555538998, 132.70473298596926, 133.64942593686217, 134.58848509009349, 135.52191318670378, 136.4497149892681, 137.3718972469998, 138.28846866322837, 139.19943986506053, 140.10482337505027, 141.004633584721, 141.89888672979578, 142.78760086700586, 143.67079585235734, 144.5484933207485, 145.4207166668368, 146.28749102706658, 147.1488432627722, 148.0048019442814, 148.8553973359486, 149.70066138205271, 150.54062769350162, 151.3753315352873, 152.20480981464195, 153.02910106984888, 153.8482454596643, 154.66228475331127, 155.4712623210088, 156.27522312500193, 157.07421371106147, 157.86828220042437, 158.6574782821472, 159.44223538071816, 160.22184373847426, 160.99673547929407, 161.76696167284274, 162.53257239299288, 163.29361675296147, 164.05014293876627, 164.80219824109588, 165.54982908568343, 166.29308106226836, 167.03199895222215, 167.76662675491397, 168.49700771288204, 169.22318433587702, 169.94519842383642, 170.66309108884676, 171.3769027761469, 172.08667328422203, 172.7924417840354, 173.49424683744084, 174.19212641481977, 174.88611791197866, 175.5762581663467, 176.2625834725058, 176.94512959708746, 177.6239317930662, 178.2990248134787, 178.97044292459674, 179.63821991857932, 180.30238912562865, 180.96298342567277, 181.6200352595978, 182.273576640049, 182.92363916182182, 183.57025401186033, 184.2134519788816, 184.85326346264193, 185.4897184828611, 186.12284668782038, 186.75267736264684, 187.37923943729945, 188.00256149426855, 188.6226717760013, 189.23959819206493, 189.85336832605833, 190.4640094422832, 191.071548492184, 191.67601212056707, 192.27742667160663, 192.8758181946482, 193.47121244981577, 194.06363491343222, 194.65311078325902, 195.239664983563, 195.8233221700175, 196.40410673444347, 196.9820428093974, 197.55715427261134, 198.12946475129132, 198.69899762627935, 199.26577603608408, 199.82982288078512, 200.3911608258155, 200.94981230562726, 201.5057995272444, 202.05914447370668, 202.60986890740932, 203.15799437334135, 203.7035422022269, 204.2465335135727, 204.78698921862514, 205.3249300232401, 205.86037643066882, 206.39334874426203, 206.92386707009612, 207.4519513195237, 207.97762121165073, 208.50089627574334, 209.02179585356635, 209.5403391016558, 210.05654499352823, 210.570432321828, 211.08201970041523, 211.59132556639648, 212.09836818209916, 212.60316563699317, 213.10573584955935, 213.60609656910836, 214.10426537755035, 214.60025969111746, 215.0940967620414, 215.58579368018536, 216.0753673746342, 216.56283461524305, 217.04821201414478, 217.53151602721977, 218.01276295552694, 218.49196894669865, 218.9691499962999, 219.4443219491531, 219.91750050063004, 220.38870119791014, 220.8579394412092, 221.3252304849759, 221.7905894390598, 222.25403126985032, 222.7155708013877, 223.17522271644773, 223.6330015575985, 224.08892172823417, 224.54299749358142, 224.99524298168362, 225.4456721843611, 225.89429895814806, 226.3411370252089, 226.78619997423135, 227.22950126130027, 227.67105421075036, 228.1108720159993, 228.54896774036177, 228.98535431784512, 229.4200445539266, 229.85305112631283, 230.28438658568257, 230.71406335641245, 231.14209373728661, 231.56848990219063, 231.9932639007899, 232.41642765919272, 232.8379929805997, 233.2579715459382, 233.67637491448303, 234.09321452446397, 234.50850169366012, 234.9222476199812, 235.3344633820365, 235.74515993969206, 236.15434813461562, 236.5620386908099, 236.9682422151354, 237.37296919782136, 237.77623001296647, 238.17803491902947, 238.57839405930875, 238.97731746241337, 239.37481504272264, 239.77089660083797, 240.16557182402477, 240.55885028664517, 240.95074145058243, 241.3412546656566, 241.73039917003194, 242.11818409061615, 242.50461844345205, 242.88971113410017, 243.27347095801582, 243.65590660091712, 244.03702663914672, 244.41683954002568, 244.79535366220142, 245.17257725598813, 245.5485184637014, 245.92318531998535, 246.2965857521349, 246.66872758041035, 247.03961851834737, 247.4092661730602, 247.77767804553994, 248.14486153094612, 248.5108239188941, 248.8755723937361, 249.2391140348376, 249.60145581684844, 249.96260460996902, 250.32256718021125, 250.68135018965535, 251.03896019670148, 251.39540365631686, 251.7506869202788, 252.10481623741268, 252.45779775382653, 252.80963751314056, 253.16034145671298, 253.5099154238621, 253.85836515208393, 254.20569627726653, 254.55191433389942, 254.89702475528142, 255.24103287372282, 255.58394392074482, 255.92576302727602, 256.2664952238444, 256.6061454407673, 256.9447185083369, 257.28221915700317, 257.6186520175542, 257.9540216212918, 258.28833240020646, 258.6215886871472, 258.95379471599006, 259.2849546218027, 259.6150724410068, 259.94415211153864, 260.27219747300455, 260.5992122668365, 260.92520013644355, 261.25016462736124, 261.5741091873981, 261.8970371667811, 262.21895181829683, 262.5398562974322, 262.85975366251137, 263.1786468748315, 263.4965387987958, 263.8134322020451, 264.12932975558584, 264.44423403391806, 264.75814751516, 265.0710725811704, 265.38301151767047, 265.6939665143629, 266.0039396650482];
Glist = [68.63606602710948, 67.81602573163727, 66.98450451553292, 66.14150168777994, 65.28702180914178, 64.4210740812699, 63.54367183147148, 62.6548320747096, 61.75457513851297, 60.84292433954427, 59.91990570290995, 58.98554771707824, 58.039881118656325, 57.08293870235587, 56.114755152326566, 55.13536689171264, 54.144811947826945, 53.143129830770796, 52.13036142368245, 51.10654888308195, 50.07173554801741, 49.02596585691197, 47.9692852711714, 46.90174020474718, 45.82337795896249, 44.73424666200176, 43.63439521254665, 42.5238732271065, 41.4027309906503, 40.27101941019652, 39.12878997105828, 37.976094695478665, 36.81298610342128, 35.63951717530928, 34.455741316528616, 33.26171232353221, 32.057484351399324, 30.843111882720503, 29.618649697691335, 28.3841528453111, 27.139676615592688, 25.88527651269886, 24.621008228930048, 23.346927619493847, 22.063090677994865, 20.769553512588313, 19.466372322746487, 18.15360337659129, 16.83130298875134, 15.499527498704081, 14.158333249568406, 12.807776567315534, 11.447913740368536, 10.078800999563372, 8.70049449844725, 7.313050293890713, 5.916524326993165, 4.5109724042622945, 3.0964501790496888, 1.673013133225848, 0.24071655908011463, -1.2003844585692334, -2.6502350600669966, -4.108780628428135, -5.57596680667007, -7.051739514981363, -8.536044967736222, -10.028829690363295, -11.530040536077959, -13.039624702485334, -14.557529748061082, -16.08370360851763, -17.618094613061174, -19.160651500545782, -20.711323435530634, -22.270060024244366, -23.836811330462535, -25.41152789130239, -26.994160732938827, -28.5850323109812, -30.1833566586399, -31.789453463808936, -33.40327581651215, -35.024777312461225, -36.65391204327443, -38.290634587039335, -39.934899999200965, -41.58666380376167, -43.245881984777746, -44.91251097813847, -46.586507663615365, -48.267829357169056, -49.95643380350194, -51.65227916884618, -53.355324033976316, -55.06552738743601, -56.78284861897147, -58.50724751316058, -60.238684243229876, -61.97711936505315, -63.72251381132089, -65.47482888587706, -67.23402625821247, -69.00006795811225, -70.7729163704477, -72.5525342301091, -74.33888461707235, -76.13193095159525, -77.93163698953754, -79.7379668177999, -81.55088484987813, -83.37035582152674, -85.19634478652885, -87.0288171125683, -88.86773847719925, -90.71307486391066, -92.56479255828147, -94.42285814422397, -96.28723850031024, -98.1579007961816, -100.03481248903506, -101.9179413201865, -103.80725531170579, -105.70272276312308, -107.60431224820252, -109.51199261178166, -111.42573296667446, -113.34550269063463, -115.27127142337885, -117.20300906366626, -119.14068576643415, -121.08427193998602, -123.03373824323089, -124.98905558297376, -126.95019511125318, -128.91712822272595, -130.88982655209648, -132.86826197159047, -134.85240658847036, -136.84223274259193, -138.83771300400102, -140.8388201705678, -142.8455272656586, -144.85780753584461, -146.87563444864412, -148.89898169030027, -150.92782316359015, -152.96213298566704, -155.00188548593275, -157.04705520394037, -159.09761688732627, -161.15354548977004, -163.21481616898214, -165.28140428471778, -167.35328539681734, -169.43043526327168, -171.5128298383111, -173.6004452705195, -175.69325790097037, -177.79124426138534, -179.8943810723155, -182.00264524134252, -184.1160138613013, -186.23446420852204, -188.35797374109285, -190.48652009713962, -192.62008109312592, -194.75863472216997, -196.90215915237889, -199.0506327252015, -201.20403395379506, -203.3623415214105, -205.52553427979245, -207.69359124759373, -209.86649160880634, -212.04421471120594, -214.22674006481, -216.41404734035143, -218.6061163677635, -220.8029271346798, -223.0044597849451, -225.21069461714077, -227.4216120831202, -229.63719278655728, -231.8574174815063, -234.08226707097248, -236.31172260549485, -238.54576528173718, -240.78437644109363, -243.02753756829955, -245.2752302900562, -247.52743637366353, -249.78413772566205, -252.0453163904855, -254.31095454912102, -256.5810345177782, -258.8555387465693, -261.13444981819373, -263.41775044663416, -265.70542347585894, -267.99745187853387, -270.29381875473933, -272.59450733069747, -274.89950095750487, -277.2087831098735, -279.52233738487763, -281.8401475007099, -284.1621972954399, -286.48847072578405, -288.81895186587855, -291.15362490606026, -293.492474151653, -295.8354840217602, -298.18263904806327, -300.53392387362555, -302.88932325170236, -305.24882204455656, -307.6124052222784, -309.98005786161275, -312.3517651447888, -314.72751235835705, -317.1072848920308, -319.49106823753107, -321.87884798743903, -324.2706098340494, -326.666339568232, -329.0660230782954, -331.46964634885643, -333.877195459712, -336.28865658471767, -338.7040159906686, -341.1232600361845, -343.5463751706007, -345.9733479328587, -348.40416495040574, -350.8388129380942, -353.2772786970871, -355.71954911376486, -358.1656111586375, -360.6154518852596, -363.0690584291489, -365.5264180067074, -367.9875179141467, -370.4523455264158, -372.9208882961325, -375.393133752517, -377.8690695003312, -380.3486832188161, -382.83196266063686, -385.3188956508286, -387.8094700857441, -390.3036739320065, -392.80149522546304, -395.3029220701413, -397.80794263720935, -400.3165451639379, -402.82871795266357, -405.3444493697569, -407.86372784459104, -410.38654186851414, -412.91287999382206, -415.4427308327359, -417.97608305637937, -420.512925393761, -423.05324663075567, -425.5970356090892, -428.14428122532723, -430.69497242986296, -433.24909822590814, -435.8066476684874, -438.3676098634317, -440.93197396637646, -443.4997291817602, -446.0708647618246, -448.6453700056178, -451.2232342579975, -453.8044469086382, -456.3889973910391, -458.9768751815319, -461.5680697982934, -464.16257080035683, -466.7603677866288, -469.3614503949018, -471.9658083008742, -474.57343121716855, -477.1843088923518, -479.7984311099573, -482.4157876875084, -485.0363684755439, -487.6601633566439, -490.2871622444566, -492.9173550827289, -495.55073184433604, -498.1872825303133, -500.82699716888874, -503.46986581451813, -506.11587854692095, -508.7650254701148, -511.4172967114562, -514.0726824206794, -516.7311727689346];
Tunits = "K";
Cpunits = "cal/(mol*K)";
Hunits = "kcal/mol";
Sunits = "cal/(mol*K)";
Gunits = "kcal/mol";
var Cpdata = new Array();
var Hdata = new Array();
var Sdata = new Array();
var Gdata = new Array();
for (var i = 0; i < Tlist.length; i++) {
Cpdata.push([Tlist[i], Cplist[i]]);
Hdata.push([Tlist[i], Hlist[i]]);
Sdata.push([Tlist[i], Slist[i]]);
Gdata.push([Tlist[i], Glist[i]]);
}
Cpseries.push(['', Cpdata]);
Hseries.push(['', Hdata]);
Sseries.push(['', Sdata]);
Gseries.push(['', Gdata]);
plotHeatCapacity = function(id, Cpseries) {
series = [];
for (var i = 0; i < Cpseries.length; i++)
series.push({
name: Cpseries[i][0],
data: Cpseries[i][1]
});
var legendEnabled = (Cpseries.length > 1);
options = {
chart: {
renderTo: id,
defaultSeriesType: 'line'
},
title: { text: 'Heat capacity' },
xAxis: {
title: { text: 'Temperature (' + Tunits + ')' },
min: 0
},
yAxis: {
title: { text: 'Heat capacity (' + Cpunits + ')' }
},
legend: { enabled: legendEnabled },
series: series,
tooltip: {
formatter: function() {
if (legendEnabled == 0) {
return 'Cp(' + Highcharts.numberFormat(this.x, 0, '.', '') +' K) = ' + Highcharts.numberFormat(this.y, 2, '.', '') + ' J/mol*K';
} else {
return this.series.name + ': Cp(' + Highcharts.numberFormat(this.x, 0, '.', '') +' ' + Tunits + ') = ' + Highcharts.numberFormat(this.y, 2, '.', '') + ' ' + Cpunits + '';
}
}
}
}
var chartCp = new Highcharts.Chart(options);
};
plotEnthalpy = function(id, Hseries) {
series = [];
for (var i = 0; i < Hseries.length; i++)
series.push({
name: Hseries[i][0],
data: Hseries[i][1]
});
var legendEnabled = (Hseries.length > 1);
options = {
chart: {
renderTo: id,
defaultSeriesType: 'line'
},
title: { text: 'Enthalpy' },
xAxis: {
title: { text: 'Temperature (' + Tunits + ')' },
min: 0
},
yAxis: {
title: { text: 'Enthalpy (' + Hunits + ')' }
},
legend: { enabled: legendEnabled },
series: series,
plotOptions: {
line: {
marker: { enabled: false }
}
},
tooltip: {
formatter: function() {
if (legendEnabled == 0) {
return 'H(' + Highcharts.numberFormat(this.x, 0, '.', '') + ' ' + Tunits + ') = ' + Highcharts.numberFormat(this.y, 2, '.', '') + ' ' + Hunits + '';
} else {
return this.series.name + ': H(' + Highcharts.numberFormat(this.x, 0, '.', '') + ' ' + Tunits + ') = ' + Highcharts.numberFormat(this.y, 2, '.', '') + ' ' + Hunits + '';
}
}
}
}
var chartH = new Highcharts.Chart(options);
};
plotEntropy = function(id, Sseries) {
series = [];
for (var i = 0; i < Sseries.length; i++)
series.push({
name: Sseries[i][0],
data: Sseries[i][1]
});
var legendEnabled = (Sseries.length > 1);
options = {
chart: {
renderTo: id,
defaultSeriesType: 'line'
},
title: { text: 'Entropy' },
xAxis: {
title: { text: 'Temperature (' + Tunits + ')' },
min: 0
},
yAxis: {
title: { text: 'Entropy (' + Sunits + ')' }
},
legend: { enabled: legendEnabled },
series: series,
plotOptions: {
line: {
marker: { enabled: false }
}
},
tooltip: {
formatter: function() {
if (legendEnabled == 0) {
return 'S(' + Highcharts.numberFormat(this.x, 0, '.', '') +' ' + Tunits + ') = ' + Highcharts.numberFormat(this.y, 2, '.', '') + ' ' + Sunits + '';
} else {
return this.series.name + ': S(' + Highcharts.numberFormat(this.x, 0, '.', '') + ' ' + Tunits + ') = ' + Highcharts.numberFormat(this.y, 2, '.', '') + ' ' + Sunits + '';
}
}
}
}
var chartS = new Highcharts.Chart(options);
};
plotFreeEnergy = function(id, Gseries) {
series = [];
for (var i = 0; i < Gseries.length; i++)
series.push({
name: Gseries[i][0],
data: Gseries[i][1]
});
var legendEnabled = (Gseries.length > 1);
options = {
chart: {
renderTo: id,
defaultSeriesType: 'line'
},
title: { text: 'Gibbs free energy' },
xAxis: {
title: { text: 'Temperature (' + Tunits + ')' },
min: 0
},
yAxis: {
title: { text: 'Free energy (' + Gunits + ')' }
},
legend: { enabled: legendEnabled },
series: series,
plotOptions: {
line: {
marker: { enabled: false }
}
},
tooltip: {
formatter: function() {
if (legendEnabled == 0) {
return 'G(' + Highcharts.numberFormat(this.x, 0, '.', '') + ' ' + Tunits + ') = ' + Highcharts.numberFormat(this.y, 2, '.', '') + ' ' + Gunits + '';
} else {
return this.series.name + ': G(' + Highcharts.numberFormat(this.x, 0, '.', '') + ' ' + Tunits + ') = ' + Highcharts.numberFormat(this.y, 2, '.', '') + ' ' + Gunits + '';
}
}
}
}
var chartG = new Highcharts.Chart(options);
};
MathJax.Hub.Queue(function() {
plotHeatCapacity('plotCp', Cpseries);
plotEnthalpy('plotH', Hseries);
plotEntropy('plotS', Sseries);
plotFreeEnergy('plotG', Gseries);
});
});
</script>
</head>
<body>
<div id="document">
<div id="sidebar">
<div id="logo">
<a href="/">
<img alt="RMG" height="100%" src="/static/img/rmg-logo.png"/>
</a>
</div>
<div id="sidebar-content">
<a href="http://reactionmechanismgenerator.github.io/RMG-Py">
<div class="menuitem">
<img class="icon" src="/static/img/documentation-icon.png" width="100%"/>
<div class="menutext menutitle">Documentation</div>
<div class="menutext menudesc">Learn more about the RMG software</div>
</div>
</a>
<a href="/resources">
<div class="menuitem">
<img class="icon" src="/static/img/resources-icon.png" width="100%"/>
<div class="menutext menutitle">Resources</div>
<div class="menutext menudesc">RMG related publications and presentations</div>
</div>
</a>
<a href="/database/">
<div class="menuitem">
<img class="icon" src="/static/img/database-icon.png" width="100%"/>
<div class="menutext menutitle">Database</div>
<div class="menutext menudesc">Browse the RMG database of chemical and kinetic parameters</div>
</div>
</a>
<a href="/molecule_search">
<div class="menuitem">
<img class="icon" src="/static/img/molecule-icon.png" width="100%"/>
<div class="menutext menutitle">Molecule Search</div>
<div class="menutext menudesc">View molecules and adjlists or search properties</div>
</div>
</a>
<a href="/database/kinetics/search/">
<div class="menuitem">
<img class="icon" src="/static/img/kinetics-icon.png" width="100%"/>
<div class="menutext menutitle">Kinetics Search</div>
<div class="menutext menudesc">Search kinetics of a chemical reaction</div>
</div>
</a>
<a href="/database/solvation/search/">
<div class="menuitem">
<img class="icon" src="/static/img/solvation-icon.png" width="100%"/>
<div class="menutext menutitle">Solvation Search</div>
<div class="menutext menudesc">Search solvation properties of solvent and a solute</div>
</div>
</a>
<a href="/pdep/">
<div class="menuitem">
<img class="icon" src="/static/img/pdep-icon.png" width="100%"/>
<div class="menutext menutitle">Pressure Dependent Networks</div>
<div class="menutext menudesc">Arkane pdep kinetic calculations</div>
</div>
</a>
<a href="/tools/">
<div class="menuitem">
<img class="icon" src="/static/img/tools-icon.png" width="100%"/>
<div class="menutext menutitle">Other RMG Tools</div>
<div class="menutext menudesc">Additional tools to supplement RMG </div>
</div>
</a>
</div>
<div id="sidebar-extra">
</div>
<div id="sidebar-footer">
<iframe allowtransparency="true" frameborder="0" height="20" scrolling="no" src="https://www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2Frmg.mit&width=50&layout=button&action=like&size=small&show_faces=false&share=false&height=65&appId" style="border:none;overflow:hidden" width="51"></iframe>
<a aria-label="Follow @ReactionMechanismGenerator on GitHub" class="github-button" href="https://github.com/ReactionMechanismGenerator">GitHub</a>
</div>
</div>
<div id="mainbar">
<div id="header">
<div id="announcement">
</div>
<div class="user-toolbar">
<a class="user-button" href="#" onclick="toggleCSS()">Change Theme</a>
<a class="user-button" href="/login?next=/database/thermo/libraries/SABIC_aromatics/101/">Log In</a>
</div>
</div>
<div id="main">
<div id="navbar">
<ul id="breadcrumb">
<li><a href="/">Home</a></li>
<li><a href="/database/">Database</a></li>
<li><a href="/database/thermo/">Thermodynamics</a></li>
<li><a href="/database/thermo/libraries/">Libraries</a></li>
<li><a href="/database/thermo/libraries/SABIC_aromatics/">SABIC_aromatics</a></li>
<li><a href="/database/thermo/libraries/SABIC_aromatics/101/">101. C9H9_18</a></li>
</ul>
</div>
<div id="contents">
<h1>101. C9H9_18</h1>
<h2>Structure</h2>
<p>
<a href="/database/molecule/multiplicity%202%0A1%20%20C%20u0%20p0%20c0%20%7B2,S%7D%20%7B9,S%7D%20%7B10,S%7D%20%7B11,S%7D%0A2%20%20C%20u0%20p0%20c0%20%7B1,S%7D%20%7B3,B%7D%20%7B4,B%7D%0A3%20%20C%20u0%20p0%20c0%20%7B2,B%7D%20%7B5,B%7D%20%7B12,S%7D%0A4%20%20C%20u0%20p0%20c0%20%7B2,B%7D%20%7B7,B%7D%20%7B16,S%7D%0A5%20%20C%20u0%20p0%20c0%20%7B3,B%7D%20%7B6,B%7D%20%7B13,S%7D%0A6%20%20C%20u0%20p0%20c0%20%7B5,B%7D%20%7B7,B%7D%20%7B14,S%7D%0A7%20%20C%20u0%20p0%20c0%20%7B4,B%7D%20%7B6,B%7D%20%7B15,S%7D%0A8%20%20C%20u0%20p0%20c0%20%7B9,D%7D%20%7B17,S%7D%20%7B18,S%7D%0A9%20%20C%20u1%20p0%20c0%20%7B1,S%7D%20%7B8,D%7D%0A10%20H%20u0%20p0%20c0%20%7B1,S%7D%0A11%20H%20u0%20p0%20c0%20%7B1,S%7D%0A12%20H%20u0%20p0%20c0%20%7B3,S%7D%0A13%20H%20u0%20p0%20c0%20%7B5,S%7D%0A14%20H%20u0%20p0%20c0%20%7B6,S%7D%0A15%20H%20u0%20p0%20c0%20%7B7,S%7D%0A16%20H%20u0%20p0%20c0%20%7B4,S%7D%0A17%20H%20u0%20p0%20c0%20%7B8,S%7D%0A18%20H%20u0%20p0%20c0%20%7B8,S%7D%0A"><img alt="multiplicity 2
1 C u0 p0 c0 {2,S} {9,S} {10,S} {11,S}
2 C u0 p0 c0 {1,S} {3,B} {4,B}
3 C u0 p0 c0 {2,B} {5,B} {12,S}
4 C u0 p0 c0 {2,B} {7,B} {16,S}
5 C u0 p0 c0 {3,B} {6,B} {13,S}
6 C u0 p0 c0 {5,B} {7,B} {14,S}
7 C u0 p0 c0 {4,B} {6,B} {15,S}
8 C u0 p0 c0 {9,D} {17,S} {18,S}
9 C u1 p0 c0 {1,S} {8,D}
10 H u0 p0 c0 {1,S}
11 H u0 p0 c0 {1,S}
12 H u0 p0 c0 {3,S}
13 H u0 p0 c0 {5,S}
14 H u0 p0 c0 {6,S}
15 H u0 p0 c0 {7,S}
16 H u0 p0 c0 {4,S}
17 H u0 p0 c0 {8,S}
18 H u0 p0 c0 {8,S}
" src="/molecule/multiplicity%25202%250A1%2520%2520C%2520u0%2520p0%2520c0%2520%257B2%252CS%257D%2520%257B9%252CS%257D%2520%257B10%252CS%257D%2520%257B11%252CS%257D%250A2%2520%2520C%2520u0%2520p0%2520c0%2520%257B1%252CS%257D%2520%257B3%252CB%257D%2520%257B4%252CB%257D%250A3%2520%2520C%2520u0%2520p0%2520c0%2520%257B2%252CB%257D%2520%257B5%252CB%257D%2520%257B12%252CS%257D%250A4%2520%2520C%2520u0%2520p0%2520c0%2520%257B2%252CB%257D%2520%257B7%252CB%257D%2520%257B16%252CS%257D%250A5%2520%2520C%2520u0%2520p0%2520c0%2520%257B3%252CB%257D%2520%257B6%252CB%257D%2520%257B13%252CS%257D%250A6%2520%2520C%2520u0%2520p0%2520c0%2520%257B5%252CB%257D%2520%257B7%252CB%257D%2520%257B14%252CS%257D%250A7%2520%2520C%2520u0%2520p0%2520c0%2520%257B4%252CB%257D%2520%257B6%252CB%257D%2520%257B15%252CS%257D%250A8%2520%2520C%2520u0%2520p0%2520c0%2520%257B9%252CD%257D%2520%257B17%252CS%257D%2520%257B18%252CS%257D%250A9%2520%2520C%2520u1%2520p0%2520c0%2520%257B1%252CS%257D%2520%257B8%252CD%257D%250A10%2520H%2520u0%2520p0%2520c0%2520%257B1%252CS%257D%250A11%2520H%2520u0%2520p0%2520c0%2520%257B1%252CS%257D%250A12%2520H%2520u0%2520p0%2520c0%2520%257B3%252CS%257D%250A13%2520H%2520u0%2520p0%2520c0%2520%257B5%252CS%257D%250A14%2520H%2520u0%2520p0%2520c0%2520%257B6%252CS%257D%250A15%2520H%2520u0%2520p0%2520c0%2520%257B7%252CS%257D%250A16%2520H%2520u0%2520p0%2520c0%2520%257B4%252CS%257D%250A17%2520H%2520u0%2520p0%2520c0%2520%257B8%252CS%257D%250A18%2520H%2520u0%2520p0%2520c0%2520%257B8%252CS%257D%250A" title="multiplicity 2
1 C u0 p0 c0 {2,S} {9,S} {10,S} {11,S}
2 C u0 p0 c0 {1,S} {3,B} {4,B}
3 C u0 p0 c0 {2,B} {5,B} {12,S}
4 C u0 p0 c0 {2,B} {7,B} {16,S}
5 C u0 p0 c0 {3,B} {6,B} {13,S}
6 C u0 p0 c0 {5,B} {7,B} {14,S}
7 C u0 p0 c0 {4,B} {6,B} {15,S}
8 C u0 p0 c0 {9,D} {17,S} {18,S}
9 C u1 p0 c0 {1,S} {8,D}
10 H u0 p0 c0 {1,S}
11 H u0 p0 c0 {1,S}
12 H u0 p0 c0 {3,S}
13 H u0 p0 c0 {5,S}
14 H u0 p0 c0 {6,S}
15 H u0 p0 c0 {7,S}
16 H u0 p0 c0 {4,S}
17 H u0 p0 c0 {8,S}
18 H u0 p0 c0 {8,S}
"/></a>
</p>
<h2>Thermodynamic Data</h2>
<script type="math/tex; mode=display">
\frac{C_\mathrm{p}^\circ(T)}{R} = a_{-2} T^{-2} + a_{-1} T^{-1} + a_0 + a_1 T + a_2 T^2 + a_3 T^3 + a_4 T^4</script>
<script type="math/tex; mode=display">
\frac{H^\circ(T)}{RT} = -a_{-2} T^{-2} + a_{-1} \frac{\ln T}{T} + a_0 + \frac{1}{2} a_1 T + \frac{1}{3} a_2 T^2 + \frac{1}{4} a_3 T^3 + \frac{1}{5} a_4 T^4 + \frac{a_5}{T}</script>
<script type="math/tex; mode=display">
\frac{S^\circ(T)}{R} = -\frac{1}{2} a_{-2} T^{-2} - a_{-1} T^{-1} + a_0 \ln T + a_1 T + \frac{1}{2} a_2 T^2 + \frac{1}{3} a_3 T^3 + \frac{1}{4} a_4 T^4 + a_6</script>
<table class="thermoEntryData">
<tr> <td class="key">Temperature range</td> <td class="equals">=</td> <td class="value">200 to 986.38 K</td> <td class="value">986.38 to 3200 K</td></tr>
<tr> <td class="key"><script type="math/tex">a_{-2}</script></td> <td class="equals">=</td> <td class="value"><script type="math/tex">0</script></td> <td class="value"><script type="math/tex">0</script></td></tr>
<tr> <td class="key"><script type="math/tex">a_{-1}</script></td> <td class="equals">=</td> <td class="value"><script type="math/tex">0</script></td> <td class="value"><script type="math/tex">0</script></td></tr>
<tr> <td class="key"><script type="math/tex">a_0</script></td> <td class="equals">=</td> <td class="value"><script type="math/tex">-1.27269 \times 10^{0}</script></td> <td class="value"><script type="math/tex">7.93195 \times 10^{0}</script></td></tr>
<tr> <td class="key"><script type="math/tex">a_1</script></td> <td class="equals">=</td> <td class="value"><script type="math/tex">6.88717 \times 10^{-2}</script></td> <td class="value"><script type="math/tex">5.27548 \times 10^{-2}</script></td></tr>
<tr> <td class="key"><script type="math/tex">a_2</script></td> <td class="equals">=</td> <td class="value"><script type="math/tex">-2.03282 \times 10^{-5}</script></td> <td class="value"><script type="math/tex">-2.80732 \times 10^{-5}</script></td></tr>
<tr> <td class="key"><script type="math/tex">a_3</script></td> <td class="equals">=</td> <td class="value"><script type="math/tex">-1.98089 \times 10^{-8}</script></td> <td class="value"><script type="math/tex">7.22547 \times 10^{-9}</script></td></tr>
<tr> <td class="key"><script type="math/tex">a_4</script></td> <td class="equals">=</td> <td class="value"><script type="math/tex">1.16503 \times 10^{-11}</script></td> <td class="value"><script type="math/tex">-7.26756 \times 10^{-13}</script></td></tr>
<tr> <td class="key"><script type="math/tex">a_5</script></td> <td class="equals">=</td> <td class="value"><script type="math/tex">4.16729 \times 10^{4}</script></td> <td class="value"><script type="math/tex">3.88252 \times 10^{4}</script></td></tr>
<tr> <td class="key"><script type="math/tex">a_6</script></td> <td class="equals">=</td> <td class="value"><script type="math/tex">3.44007 \times 10^{1}</script></td> <td class="value"><script type="math/tex">-1.51103 \times 10^{1}</script></td></tr>
</table>
<table class="thermoEntryData"><tr><td class="key">Temperature range</td><td class="equals">=</td><td class="value">200 to 3200 K</td></tr></table>
<br/>
CHEMKIN format NASA Polynomial:
<br/>
<font face="courier">C9H9 C 9H 9 G 200.000 3200.000 986.38 1<br/> 7.93195000E+00 5.27548000E-02-2.80732000E-05 7.22547000E-09-7.26756000E-13 2<br/> 3.88252000E+04-1.51103000E+01-1.27269000E+00 6.88717000E-02-2.03282000E-05 3<br/>-1.98089000E-08 1.16503000E-11 4.16729000E+04 3.44007000E+01 4<br/></font>
<p>
</p><div id="plotCp" style="width: 500px; height: 300px; margin: auto;"></div>
<div id="plotH" style="width: 500px; height: 300px; margin: auto;"></div>
<div id="plotS" style="width: 500px; height: 300px; margin: auto;"></div>
<div id="plotG" style="width: 500px; height: 300px; margin: auto;"></div>
<h2>Reference</h2>
<table class="reference">
<tr>
<td class="label">Reference type:</td>
<td></td>
</tr>
<tr>
<td class="label">Short description:</td>
<td></td>
</tr>
<tr>
<td class="label">Long description:</td>
<td style="white-space: pre-wrap;"></td>
</tr>
</table>
<br/>
If you noticed a mistake or have better data, then edit this entry here: <a href="/database/thermo/libraries/SABIC_aromatics/101/edit"><button type="button">Edit entry</button></a>.
You must <a href="/login?next=/database/thermo/libraries/SABIC_aromatics/101/">log in first.</a>
<br/>
</div>
</div>
<div id="footer">
<div id="footer-content">
Copyright © 2020,
<a href="http://web.mit.edu/greengp/people/">W. H. Green</a>,
<a href="http://www.northeastern.edu/comocheng/people/">R. H. West</a>,
<i>et al.</i>
Created using <a href="http://www.djangoproject.com/">Django</a>.
Read the <a href="/privacy">Privacy Policy</a>.
<br/>
Last updated: 12 Jun 2020 (RMG-Py), 8 Jun 2020 (RMG-database), 13 May 2020 (RMG-website).
See <a href="/version">Backend Version</a> for details.
</div>
</div>
</div>
</div>
</body>
</html>
| 94.353877 | 6,095 | 0.71555 |
26ad50dde10bc5565cfbe815eff8642965184166 | 4,053 | java | Java | CGMES_2.4.15_27JAN2020/cim4j/Limit.java | richardmarston/cim4j | 69e483a607e0259db91ddfdfd72687daf61b36bd | [
"Apache-2.0"
] | 1 | 2021-12-02T13:26:07.000Z | 2021-12-02T13:26:07.000Z | CGMES_2.4.15_27JAN2020/cim4j/Limit.java | richardmarston/cim4j | 69e483a607e0259db91ddfdfd72687daf61b36bd | [
"Apache-2.0"
] | 1 | 2021-07-24T08:12:26.000Z | 2021-07-24T08:12:26.000Z | CGMES_2.4.15_27JAN2020/cim4j/Limit.java | richardmarston/cim4j | 69e483a607e0259db91ddfdfd72687daf61b36bd | [
"Apache-2.0"
] | 1 | 2021-07-23T10:57:14.000Z | 2021-07-23T10:57:14.000Z | package cim4j;
import java.util.List;
import java.util.Map;
import java.util.HashMap;
import cim4j.IdentifiedObject;
import java.lang.ArrayIndexOutOfBoundsException;
import java.lang.IllegalArgumentException;
/*
Specifies one limit value for a Measurement. A Measurement typically has several limits that are kept together by the LimitSet class. The actual meaning and use of a Limit instance (i.e., if it is an alarm or warning limit or if it is a high or low limit) is not captured in the Limit class. However the name of a Limit instance may indicate both meaning and use.
*/
public class Limit extends IdentifiedObject
{
private BaseClass[] Limit_class_attributes;
private BaseClass[] Limit_primitive_attributes;
private java.lang.String rdfid;
public void setRdfid(java.lang.String id) {
rdfid = id;
}
private abstract interface PrimitiveBuilder {
public abstract BaseClass construct(java.lang.String value);
};
private enum Limit_primitive_builder implements PrimitiveBuilder {
LAST_ENUM() {
public BaseClass construct (java.lang.String value) {
return new cim4j.Integer("0");
}
};
}
private enum Limit_class_attributes_enum {
LAST_ENUM;
}
public Limit() {
Limit_primitive_attributes = new BaseClass[Limit_primitive_builder.values().length];
Limit_class_attributes = new BaseClass[Limit_class_attributes_enum.values().length];
}
public void updateAttributeInArray(Limit_class_attributes_enum attrEnum, BaseClass value) {
try {
Limit_class_attributes[attrEnum.ordinal()] = value;
}
catch (ArrayIndexOutOfBoundsException aoobe) {
System.out.println("No such attribute: " + attrEnum.name() + ": " + aoobe.getMessage());
}
}
public void updateAttributeInArray(Limit_primitive_builder attrEnum, BaseClass value) {
try {
Limit_primitive_attributes[attrEnum.ordinal()] = value;
}
catch (ArrayIndexOutOfBoundsException aoobe) {
System.out.println("No such attribute: " + attrEnum.name() + ": " + aoobe.getMessage());
}
}
public void setAttribute(java.lang.String attrName, BaseClass value) {
try {
Limit_class_attributes_enum attrEnum = Limit_class_attributes_enum.valueOf(attrName);
updateAttributeInArray(attrEnum, value);
System.out.println("Updated Limit, setting " + attrName);
}
catch (IllegalArgumentException iae)
{
super.setAttribute(attrName, value);
}
}
/* If the attribute is a String, it is a primitive and we will make it into a BaseClass */
public void setAttribute(java.lang.String attrName, java.lang.String value) {
try {
Limit_primitive_builder attrEnum = Limit_primitive_builder.valueOf(attrName);
updateAttributeInArray(attrEnum, attrEnum.construct(value));
System.out.println("Updated Limit, setting " + attrName + " to: " + value);
}
catch (IllegalArgumentException iae)
{
super.setAttribute(attrName, value);
}
}
public java.lang.String toString(boolean topClass) {
java.lang.String result = "";
java.lang.String indent = "";
if (topClass) {
for (Limit_primitive_builder attrEnum: Limit_primitive_builder.values()) {
BaseClass bc = Limit_primitive_attributes[attrEnum.ordinal()];
if (bc != null) {
result += " Limit." + attrEnum.name() + "(" + bc.debugString() + ")" + " " + bc.toString(false) + System.lineSeparator();
}
}
for (Limit_class_attributes_enum attrEnum: Limit_class_attributes_enum.values()) {
BaseClass bc = Limit_class_attributes[attrEnum.ordinal()];
if (bc != null) {
result += " Limit." + attrEnum.name() + "(" + bc.debugString() + ")" + " " + bc.toString(false) + System.lineSeparator();
}
}
result += super.toString(true);
}
else {
result += "(Limit) RDFID: " + rdfid;
}
return result;
}
public final java.lang.String debugName = "Limit";
public java.lang.String debugString()
{
return debugName;
}
public void setValue(java.lang.String s) {
System.out.println(debugString() + " is not sure what to do with " + s);
}
public BaseClass construct() {
return new Limit();
}
};
| 30.938931 | 363 | 0.719961 |
5959c90b40a5078fe5e456567dc542724929d362 | 2,368 | h | C | Engine/foundation/util/randomnumbertable.h | BikkyS/DreamEngine | 47da4e22c65188c72f44591f6a96505d8ba5f5f3 | [
"MIT"
] | 26 | 2015-01-15T12:57:40.000Z | 2022-02-16T10:07:12.000Z | Engine/foundation/util/randomnumbertable.h | BikkyS/DreamEngine | 47da4e22c65188c72f44591f6a96505d8ba5f5f3 | [
"MIT"
] | null | null | null | Engine/foundation/util/randomnumbertable.h | BikkyS/DreamEngine | 47da4e22c65188c72f44591f6a96505d8ba5f5f3 | [
"MIT"
] | 17 | 2015-02-18T07:51:31.000Z | 2020-06-01T01:10:12.000Z | #ifndef UTIL_RANDOMNUMBERTABLE_H
#define UTIL_RANDOMNUMNERTABLE_H
/****************************************************************************
Copyright (c) 2008, Radon Labs GmbH
Copyright (c) 2011-2013,WebJet Business Division,CYOU
http://www.genesis-3d.com.cn
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#include "core/types.h"
//------------------------------------------------------------------------------
namespace Util
{
class RandomNumberTable
{
public:
/// return a pseudo-random number between 0 and 1
static float Rand(IndexT key);
/// return a pseudo random number between min and max
static float Rand(IndexT key, float minVal, float maxVal);
private:
static const SizeT tableSize = 2048;
static const float randTable[tableSize];
};
//------------------------------------------------------------------------------
/**
*/
inline float
RandomNumberTable::Rand(IndexT key)
{
return randTable[key % tableSize];
}
//------------------------------------------------------------------------------
/**
*/
inline float
RandomNumberTable::Rand(IndexT key, float minVal, float maxVal)
{
return minVal + (randTable[key % tableSize] * (maxVal - minVal));
}
} // namespace Util
//------------------------------------------------------------------------------
#endif
| 35.343284 | 80 | 0.611486 |
0eb9e98f11f183f54f88a2fcc5601953a31437bd | 2,114 | sql | SQL | test_append/orders/update_7.sql | jfeser/castor | 06d860ad7ddd9c65f8d6ef015697e2a0b26bb437 | [
"MIT"
] | 10 | 2020-02-23T01:50:19.000Z | 2021-08-18T07:07:40.000Z | test_append/orders/update_7.sql | jfeser/castor | 06d860ad7ddd9c65f8d6ef015697e2a0b26bb437 | [
"MIT"
] | null | null | null | test_append/orders/update_7.sql | jfeser/castor | 06d860ad7ddd9c65f8d6ef015697e2a0b26bb437 | [
"MIT"
] | 1 | 2020-04-17T11:10:33.000Z | 2020-04-17T11:10:33.000Z | INSERT INTO public.orders VALUES (5430661, 54196, 'F', 293528.41, '1993-09-15', '5-LOW ', 'Clerk#000000398', 0, 'he dependencies. regular packages cajole f');
INSERT INTO public.orders VALUES (1076869, 22918, 'F', 81974.84, '1993-12-01', '2-HIGH ', 'Clerk#000000446', 0, 's. enticingly regular ideas affix fu');
INSERT INTO public.orders VALUES (3426341, 60076, 'O', 194312.42, '1996-07-08', '5-LOW ', 'Clerk#000000590', 0, 's shall have to impress furio');
INSERT INTO public.orders VALUES (4628004, 114007, 'F', 320067.32, '1993-03-26', '2-HIGH ', 'Clerk#000000846', 0, 'inal accounts haggl');
INSERT INTO public.orders VALUES (3632419, 59525, 'O', 204912.93, '1996-08-01', '3-MEDIUM ', 'Clerk#000000457', 0, 'ly silent theodolites nag furio');
INSERT INTO public.orders VALUES (1983136, 5500, 'O', 209612.69, '1997-04-12', '1-URGENT ', 'Clerk#000000035', 0, 'ial dependencies af');
INSERT INTO public.orders VALUES (4143782, 70613, 'F', 223950.75, '1993-10-26', '5-LOW ', 'Clerk#000000659', 0, 'pecial deposits cajole pinto beans. evenly ironic deposits cajole s');
INSERT INTO public.orders VALUES (811623, 64127, 'O', 73699.41, '1997-09-12', '3-MEDIUM ', 'Clerk#000000601', 0, ' regular pinto bean');
INSERT INTO public.orders VALUES (2324356, 53087, 'F', 143160.63, '1993-04-02', '5-LOW ', 'Clerk#000000802', 0, ' carefully pending asymptotes hinder slyly ');
INSERT INTO public.orders VALUES (274309, 79115, 'F', 166240.92, '1992-05-29', '1-URGENT ', 'Clerk#000000930', 0, 'y unusual deposits sleep carefully along the silen');
INSERT INTO public.orders VALUES (4130661, 15472, 'F', 197126.67, '1993-02-01', '4-NOT SPECIFIED', 'Clerk#000000572', 0, ' sleep slyly bold instructions. regular theodolites sleep dependencies. slyly');
INSERT INTO public.orders VALUES (1581825, 76537, 'O', 249622.90, '1997-03-29', '1-URGENT ', 'Clerk#000000216', 0, 'y busily ironic frets. ironic');
INSERT INTO public.orders VALUES (2464679, 59747, 'P', 215775.14, '1995-04-15', '4-NOT SPECIFIED', 'Clerk#000000841', 0, 'kly bold deposits a');
| 151 | 202 | 0.67597 |
4691f6b1fbb7101e7df1be454726e6f874d9f9f3 | 2,488 | swift | Swift | RxSonosLibTests/Domain/Factory/QueueTrackFactoryTests.swift | nicktrienensfuzz/RxSonosLib | 884754cc4865079ed46ba6cf30bf9b79185c0ece | [
"Apache-2.0"
] | 10 | 2018-12-31T04:48:46.000Z | 2021-11-23T21:02:37.000Z | RxSonosLibTests/Domain/Factory/QueueTrackFactoryTests.swift | nicktrienensfuzz/RxSonosLib | 884754cc4865079ed46ba6cf30bf9b79185c0ece | [
"Apache-2.0"
] | 4 | 2018-06-18T14:03:43.000Z | 2020-03-05T09:46:07.000Z | RxSonosLibTests/Domain/Factory/QueueTrackFactoryTests.swift | nicktrienensfuzz/RxSonosLib | 884754cc4865079ed46ba6cf30bf9b79185c0ece | [
"Apache-2.0"
] | 8 | 2018-06-18T13:58:13.000Z | 2021-07-06T09:53:56.000Z | //
// QueueTrackFactoryTests.swift
// RxSonosLibTests
//
// Created by Stefan Renne on 03/05/2018.
// Copyright © 2018 Uberweb. All rights reserved.
//
import XCTest
import RxSwift
import RxBlocking
@testable import RxSonosLib
class QueueTrackFactoryTests: XCTestCase {
func testItCanCreateSpotifyTrack() throws {
let data = ["resduration": "0:03:56", "resprotocolInfo": "sonos.com-spotify:*:audio/x-spotify:*", "class": "object.item.audioItem.musicTrack", "album": "Time For Annihilation: On the Record & On the Road", "res": "x-sonos-spotify:spotify%3atrack%3a0Vh1sTeybmGy8Kxl2vw0Ye?sid=9&flags=8224&sn=1", "albumArtURI": "/getaa?s=1&u=x-sonos-spotify%3aspotify%253atrack%253a0Vh1sTeybmGy8Kxl2vw0Ye%3fsid%3d9%26flags%3d8224%26sn%3d1", "title": "Time Is Running Out - (Live) Explicit Version", "creator": "Papa Roach", "tags": "1"]
let track = try QueueTrackFactory(room: firstRoom().ip, queueItem: 1, data: data).create()
XCTAssertEqual(track!.providerId, 9)
XCTAssertEqual(track!.flags, 8224)
XCTAssertEqual(track!.sn, 1)
XCTAssertEqual(track!.queueItem, 1)
XCTAssertEqual(track!.duration, 236)
XCTAssertEqual(track!.uri, "x-sonos-spotify:spotify%3atrack%3a0Vh1sTeybmGy8Kxl2vw0Ye?sid=9&flags=8224&sn=1")
XCTAssertEqual(track!.imageUri.absoluteString, "http://192.168.3.14:1400/getaa?s=1&u=x-sonos-spotify:spotify%3atrack%3a0Vh1sTeybmGy8Kxl2vw0Ye?sid=9&flags=8224&sn=1")
XCTAssertEqual(track!.title, "Time Is Running Out - (Live) Explicit Version")
XCTAssertEqual(track!.artist, "Papa Roach")
XCTAssertEqual(track!.album, "Time For Annihilation: On the Record & On the Road")
XCTAssertNil(track!.information)
XCTAssertEqual(track!.description, [TrackDescription.title: "Time Is Running Out - (Live) Explicit Version", TrackDescription.artist: "Papa Roach", TrackDescription.album: "Time For Annihilation: On the Record & On the Road"])
}
func testItCanCreateSpotifyTrackWithoutData() throws {
let data = ["res": "x-sonos-spotify:spotify%3atrack%3a0Vh1sTeybmGy8Kxl2vw0Ye?sid=9&flags=8224&sn=1"]
let result = try QueueTrackFactory(room: firstRoom().ip, queueItem: 1, data: data).create()
XCTAssertNil(result)
}
func testItCantCreateTrackWithoutData() throws {
let result = try QueueTrackFactory(room: firstRoom().ip, queueItem: 1, data: [:]).create()
XCTAssertNil(result)
}
}
| 52.93617 | 526 | 0.703778 |
1891a06b85b44b480d6a9092bd067aeeaa5c01b6 | 2,893 | sql | SQL | competicao.sql | leandro-sales-ls/TabelaClassificacaoFreeFire | e3f4a37e5db64c5a49a3ca9746c9f0b4836c316b | [
"MIT"
] | 2 | 2020-07-14T00:26:11.000Z | 2020-07-14T00:26:13.000Z | competicao.sql | leandro-sales-ls/tabela-campeonato | e3f4a37e5db64c5a49a3ca9746c9f0b4836c316b | [
"MIT"
] | 5 | 2021-02-02T20:55:30.000Z | 2022-02-27T08:44:24.000Z | competicao.sql | leandro-sales-ls/TabelaClassificacaoFreeFire | e3f4a37e5db64c5a49a3ca9746c9f0b4836c316b | [
"MIT"
] | null | null | null | create database competicao;
use competicao;
CREATE TABLE public."time"(
id serial,
logo text NOT NULL,
nome_time varchar(100) NOT NULL,
nome_representante varchar(100)
);
CREATE TABLE public."partida"(
id serial,
num_rodada int4 NOT NULL,
id_temporada int4 NOT NULL
);
CREATE TABLE public."ponto_posicao"(
id serial,
posicao int NOT NULL,
pontos_posicao int NOT NULL,
id_temporada int NOT NULL
);
create table ponto_kill (
id serial,
ponto_kill int NOT NULL,
num_kill int NOT NULL,
id_temporada int NOT NULL
);
CREATE TABLE public."temporada"(
id serial,
nome_temporada varchar(150) NOT NULL,
num_max_partida int4 NOT NULL
);
CREATE TABLE public."temporada"(
id serial,
nome_temporada varchar(150) NOT NULL,
num_max_partida int4 NOT NULL
);
CREATE TABLE public."temporada_time"(
id serial,
id_temporada int4 NOT NULL,
id_time int4 NOT null,
data_inclusao date null,
data_ult_alteracao date NULL
);
CREATE TABLE public."classificacao_partida"(
id serial,
id_temporada int4 NOT NULL,
id_time int4 NOT null,
id_partida int4 NOT null,
id_posicao int4 NOT null,
qtd_kill int4 NOT null,
data_inclusao date null,
data_ult_alteracao date NULL
);
CREATE TABLE public."soma_pontos_kill_partida"(
id serial,
id_classificacao_partida int4 NOT NULL,
soma_pontos_kill int4 NOT NULL,
data_inclusao date null,
data_ult_alteracao date NULL
);
ALTER TABLE public.temporada ADD data_inclusao date NULL;
ALTER TABLE public.temporada ADD data_ult_alteracao date NULL;
ALTER TABLE public.time ADD data_inclusao date NULL;
ALTER TABLE public.time ADD data_ult_alteracao date NULL;
ALTER TABLE public.partida ADD data_inclusao date NULL;
ALTER TABLE public.partida ADD data_ult_alteracao date NULL;
ALTER TABLE public.ponto_posicao ADD data_inclusao date NULL;
ALTER TABLE public.ponto_posicao ADD data_ult_alteracao date NULL;
ALTER TABLE public.ponto_kill ADD data_inclusao date NULL;
ALTER TABLE public.ponto_kill ADD data_ult_alteracao date NULL;
create view VW_CLASSIFICACAO_SOMA as
select
id_temporada_time,
id_temporada,
id_time,
nome_time,
sum (posicao) as posicao,
sum(soma_pontos_kill) as soma_pontos_kill,
logo
from VW_CLASSIFICACAO
group by nome_time, id_temporada_time, id_temporada, id_time, logo
order by posicao asc, soma_pontos_kill desc;
create view VW_CLASSIFICACAO as
select
cp.id,
cp.id_time,
tm.nome_time,
spkp.soma_pontos_kill,
cp.id_posicao,
pp.posicao,
tmp.nome_temporada,
cp.id_temporada_time,
cp.id_partida,
pt.num_rodada,
tmp.id as id_temporada,
tm.logo
FROM
public.classificacao_partida as cp
join
partida as pt
on cp.id_partida = pt.id
join
"time" as tm
on tm.id = cp.id_time
join
temporada_time as tmpt
on tmpt.id = cp.id_temporada_time
join
temporada as tmp
on tmp.id = tmpt.id_temporada
join
soma_pontos_kill_partida as spkp
on spkp.id_classificacao_partida = cp.id
join
ponto_posicao as pp
on pp.id = cp.id_posicao;
| 20.963768 | 66 | 0.798133 |
ed6a7cdfc9a43818765d61bccab7d891438f0760 | 5,812 | swift | Swift | simplifycommerce/Classes/Internal/ThreeDS1WebViewController_internal.swift | allanwang0201/simplifycommerce | 45ed075c36072250bc76d978f4cafb46124484d2 | [
"MIT"
] | 2 | 2021-07-11T05:36:29.000Z | 2021-10-10T08:14:46.000Z | simplifycommerce/Classes/Internal/ThreeDS1WebViewController_internal.swift | allanwang0201/simplifycommerce | 45ed075c36072250bc76d978f4cafb46124484d2 | [
"MIT"
] | 2 | 2020-06-04T16:10:01.000Z | 2020-06-08T22:16:15.000Z | simplifycommerce/Classes/Internal/ThreeDS1WebViewController_internal.swift | allanwang0201/simplifycommerce | 45ed075c36072250bc76d978f4cafb46124484d2 | [
"MIT"
] | 1 | 2019-08-27T14:45:11.000Z | 2019-08-27T14:45:11.000Z | /*
Copyright (c) 2017 Mastercard
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import UIKit
import WebKit
extension ThreeDS1WebViewController {
func evaluateNavigationBar() {
if navigationController != nil {
navigationBar.isHidden = true
} else {
navigationBar.isHidden = false
navigationBar.pushItem(navigationItem, animated: false)
}
}
func setupNavigationItem() {
self.navigationItem.leftBarButtonItem = cancelButtonItem
self.navigationItem.rightBarButtonItem = activityBarButtonItem
}
func setupView() {
primaryStackView.addArrangedSubview(navigationBar)
primaryStackView.addArrangedSubview(webView)
self.view.addSubview(primaryStackView)
NSLayoutConstraint.activate(primaryStackView.superviewHuggingConstraints(useMargins: false))
}
@objc func cancel() {
delegate?.threeDS1WebViewControllerDidCancel(self)
}
}
extension ThreeDS1WebViewController: WKNavigationDelegate {
public func webView(_ webView: WKWebView, didStartProvisionalNavigation navigation: WKNavigation!) {
activityIndicator.startAnimating()
}
public func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!) {
activityIndicator.stopAnimating()
}
public func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void) {
if let url = navigationAction.request.url, let components = URLComponents(url: url, resolvingAgainstBaseURL: false), components.scheme == Constants.sdkScheme {
handle3DSRedirect(redirect: components)
decisionHandler(.cancel)
} else {
decisionHandler(.allow)
}
}
}
extension ThreeDS1WebViewController {
struct Constants {
static var sdkScheme = "simplifysdk"
static var resultQueryItem = "result"
}
func handle3DSRedirect(redirect components: URLComponents) {
guard let result = components.queryItems?.first(where: { $0.name == Constants.resultQueryItem })?.value else {
delegate?.threeDS1WebViewController(self, didError: "Unable to read 3DS result", for: currentToken)
return
}
let resultData = Data(_: result.utf8)
let resultMap = try? jsonDecoder.decode(SimplifyMap.self, from: resultData)
if let result = resultMap?.secure3d.authenticated.boolValue {
delegate?.threeDS1WebViewController(self, didReceiveACSAuthResult: result, for: currentToken)
} else {
delegate?.threeDS1WebViewController(self, didError: resultMap?.secure3d.error.stringValue ?? "Unable to read 3DS result", for: currentToken)
}
}
func constructHTMLString(acsUrl: String, paReq: String, md: String, termsUrl: String) -> String {
return """
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head><meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<script> window.onload = function() { var html = '<form id="myform" method="post" enctype="application/x-www-form-urlencoded" action="\(acsUrl)" >' + '<input type="hidden" name="PaReq" value="\(paReq)" />' + '<input type="hidden" name="MD" value="\(md)" />' + '<input type="hidden" name="TermUrl" value="\(termsUrl)" />' + '</form>'; var iframe = document.getElementById('iframe'); var doc = iframe.document; if (iframe.contentDocument) { doc = iframe.contentDocument; } doc.open(); doc.writeln(html); doc.close(); doc.getElementById('myform').submit(); }; function handle3DSResponse(evt) { window.location.href = '\(Constants.sdkScheme)://secure3d?result=' + encodeURIComponent(evt.data); } window.addEventListener("message", handle3DSResponse, false); </script>
</head>
<body style="margin: 0;">
<iframe id="iframe" style="display:block; border:none; width:100vw; height:100vh;"></iframe>
</body>
</html>
"""
}
}
extension ThreeDS1WebViewController {
func lazyActivityIndicator() -> UIActivityIndicatorView {
let indicator = UIActivityIndicatorView(style: .gray)
indicator.hidesWhenStopped = true
indicator.translatesAutoresizingMaskIntoConstraints = false
return indicator
}
func lazyActivityBarButtonItem() -> UIBarButtonItem {
return UIBarButtonItem(customView: activityIndicator)
}
func lazyWebView() -> WKWebView {
let wv = WKWebView()
wv.translatesAutoresizingMaskIntoConstraints = false
wv.navigationDelegate = self
return wv
}
func lazyCancelBarButtonItem() -> UIBarButtonItem {
let item = UIBarButtonItem(barButtonSystemItem: .cancel, target: self, action: #selector(cancel))
return item
}
func lazyStackView() -> UIStackView {
let stack = UIStackView()
stack.axis = .vertical
stack.translatesAutoresizingMaskIntoConstraints = false
return stack
}
func lazyNavigationBar() -> UINavigationBar {
let bar = UINavigationBar()
bar.translatesAutoresizingMaskIntoConstraints = false
return bar
}
}
| 41.514286 | 771 | 0.680833 |
39f4b066bd4a96806563e78c42e7bac1d36b4aa2 | 2,113 | kt | Kotlin | app/src/main/java/com/dev/fi/footballapps/ui/match/MatchAdapter.kt | mfirmansyahidris/footballapps | 9fca286cb95d57dbee9c2fb91135f4c958e0e17b | [
"MIT"
] | 1 | 2020-09-21T02:35:10.000Z | 2020-09-21T02:35:10.000Z | app/src/main/java/com/dev/fi/footballapps/ui/match/MatchAdapter.kt | mfirmansyahidris/footballapps | 9fca286cb95d57dbee9c2fb91135f4c958e0e17b | [
"MIT"
] | null | null | null | app/src/main/java/com/dev/fi/footballapps/ui/match/MatchAdapter.kt | mfirmansyahidris/footballapps | 9fca286cb95d57dbee9c2fb91135f4c958e0e17b | [
"MIT"
] | null | null | null | package com.dev.fi.footballapps.ui.match
import android.content.Context
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.TextView
import androidx.recyclerview.widget.RecyclerView
import com.dev.fi.footballapps.R
import com.dev.fi.footballapps.data.Event
import com.dev.fi.footballapps.utils.reformatDate
import com.dev.fi.footballapps.utils.setToLocalTime
/**
****************************************
created by -manca-
.::manca.fi@gmail.com ::.
****************************************
*/
class MatchAdapter(private val context: Context, private val items: List<Event>, private val listener: (Event) -> Unit)
: RecyclerView.Adapter<MatchAdapter.ViewHolder>() {
override fun onCreateViewHolder(p0: ViewGroup, p1: Int): ViewHolder =
ViewHolder(LayoutInflater.from(context).inflate(R.layout.item_match, p0, false))
override fun getItemCount(): Int = items.size
override fun onBindViewHolder(p0: ViewHolder, p1: Int) = p0.bindItem(items[p1], listener)
class ViewHolder(view: View) : RecyclerView.ViewHolder(view) {
private val tvDateEvent = view.findViewById<TextView>(R.id.tv_dateEvent)
private val tvTimeEvent = view.findViewById<TextView>(R.id.tv_timeEvent)
private val tvTeamHome = view.findViewById<TextView>(R.id.tv_teamHome)
private val tvTeamHomeScore = view.findViewById<TextView>(R.id.tv_teamHomeScore)
private val tvTeamAwayScore = view.findViewById<TextView>(R.id.tv_teamAwayScore)
private val tvTeamAway = view.findViewById<TextView>(R.id.tv_teamAway)
fun bindItem(items: Event, listener: (Event) -> Unit) {
tvDateEvent.text = reformatDate(items.dateEvent)
tvTimeEvent.text = setToLocalTime(items.strTime)
tvTeamHome.text = items.strHomeTeam
tvTeamHomeScore.text = items.intHomeScore
tvTeamAwayScore.text = items.intAwayScore
tvTeamAway.text = items.strAwayTeam
itemView.setOnClickListener {
listener(items)
}
}
}
} | 39.867925 | 119 | 0.690487 |
4212cc8b3fc2117d2698aea0487cfbfd79273584 | 1,368 | swift | Swift | SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/AdminCCBypassNetworkModel.swift | peymankh/Sourcery | 9e98f16a13eb35d030581ab1258aafb09f7390cf | [
"MIT"
] | 6,138 | 2016-12-13T06:32:38.000Z | 2022-03-31T09:06:40.000Z | SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/AdminCCBypassNetworkModel.swift | peymankh/Sourcery | 9e98f16a13eb35d030581ab1258aafb09f7390cf | [
"MIT"
] | 888 | 2016-12-13T06:26:17.000Z | 2022-03-31T20:52:25.000Z | SourceryTests/Stub/Performance-Code/Kiosk/Bid Fulfillment/AdminCCBypassNetworkModel.swift | peymankh/Sourcery | 9e98f16a13eb35d030581ab1258aafb09f7390cf | [
"MIT"
] | 633 | 2016-12-13T08:34:24.000Z | 2022-03-31T15:03:45.000Z | import Foundation
import RxSwift
import Moya
enum BypassResult {
case requireCC
case skipCCRequirement
}
protocol AdminCCBypassNetworkModelType {
func checkForAdminCCBypass(_ saleID: String, authorizedNetworking: AuthorizedNetworking) -> Observable<BypassResult>
}
class AdminCCBypassNetworkModel: AdminCCBypassNetworkModelType {
/// Returns an Observable of (Bool, AuthorizedNetworking)
/// The Bool represents if the Credit Card requirement should be waived.
/// THe AuthorizedNetworking is the same instance that's passed in, which is a convenience for chaining observables.
func checkForAdminCCBypass(_ saleID: String, authorizedNetworking: AuthorizedNetworking) -> Observable<BypassResult> {
return authorizedNetworking
.request(ArtsyAuthenticatedAPI.findMyBidderRegistration(auctionID: saleID))
.filterSuccessfulStatusCodes()
.mapJSON()
.mapTo(arrayOf: Bidder.self)
.map { bidders in
return bidders.first
}
.map { bidder -> BypassResult in
guard let bidder = bidder else { return .requireCC }
switch bidder.createdByAdmin {
case true: return .skipCCRequirement
case false: return .requireCC
}
}
.logError()
}
}
| 33.365854 | 122 | 0.665936 |
5744cd001a21512766e92362abcb824d7db7bcbe | 2,407 | h | C | 3rdparty/etl/include/ETAutoUpdater.h | Osumi-Akari/energytycoon | 25d18a0ee4a9f8833e678af297734602918a92e9 | [
"Unlicense"
] | null | null | null | 3rdparty/etl/include/ETAutoUpdater.h | Osumi-Akari/energytycoon | 25d18a0ee4a9f8833e678af297734602918a92e9 | [
"Unlicense"
] | null | null | null | 3rdparty/etl/include/ETAutoUpdater.h | Osumi-Akari/energytycoon | 25d18a0ee4a9f8833e678af297734602918a92e9 | [
"Unlicense"
] | null | null | null | #ifndef __ET_AUTOUPDATER_H__
#define __ET_AUTOUPDATER_H__
/********************************************************************************
EDITABLE TERRAIN LIBRARY v3 for Ogre
Copyright (c) 2008 Holger Frydrych <frydrych@oddbeat.de>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
********************************************************************************/
#include <OgreFrameListener.h>
#include <vector>
namespace ET
{
class Updatable;
/**
* AutoUpdater is a convenience class which automatically updates registered
* objects with a limited update rate. For example, you can have your terrain
* updated twenty times per second. This is less than what you would get if
* you would update the terrain after each call to deform and will therefore
* increase your framerate considerably during editing.
*/
class AutoUpdater : public Ogre::FrameListener
{
public:
/**
* Upon creation, the AutoUpdater will automatically register as a FrameListener.
* @param updateInterval - Time in seconds between two update calls
*/
AutoUpdater(Ogre::Real updateInterval = 0.05);
~AutoUpdater();
/** Add an object to be updated automatically. */
void addUpdatable(Updatable* object);
/** Remove an object from auto-updates. */
void removeUpdatable(Updatable* object);
/** Inherited from FrameListener */
virtual bool frameStarted(const Ogre::FrameEvent& evt);
private:
typedef std::vector<Updatable*> UpdatableList;
UpdatableList mObjects;
Ogre::Real mUpdateInterval;
Ogre::Real mTimeSinceLastUpdate;
};
}
#endif
| 33.901408 | 86 | 0.692563 |
719a4b6c2c378d84a3041b4879e1a6e506454eb2 | 2,860 | ts | TypeScript | packages/framework-core/src/hooks/index.ts | Wu-XueBin-007/cloudbase-framework | cf10bd339ccd2cd1c97954e7990bc781d93a1c83 | [
"Apache-2.0"
] | null | null | null | packages/framework-core/src/hooks/index.ts | Wu-XueBin-007/cloudbase-framework | cf10bd339ccd2cd1c97954e7990bc781d93a1c83 | [
"Apache-2.0"
] | null | null | null | packages/framework-core/src/hooks/index.ts | Wu-XueBin-007/cloudbase-framework | cf10bd339ccd2cd1c97954e7990bc781d93a1c83 | [
"Apache-2.0"
] | null | null | null | /**
*
* Copyright 2020 Tencent
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
import { spawnPromise } from '../utils/spawn';
import getLogger from '../logger';
const logger = getLogger();
type IHookName = 'preDeploy' | 'postCompile' | 'postDeploy';
interface IHooksConfig {
preDeploy?: IHooksExecCommand;
postCompile?: IHooksCallFunction;
postDeploy?: IHooksCallFunction;
}
interface IHooksExecCommand {
type: 'execCommand';
commands: string[];
}
interface IHooksCallFunction {
type: 'callFunction';
functions: ICallFunctionConfig[];
}
interface ICallFunctionConfig {
functionName: string;
params?: any;
}
export default class Hooks {
private sam: Record<string, any> = {};
constructor(
public hooksConfig: IHooksConfig,
public projectPath: string,
public samMeta: Record<string, any>
) {
// postDeploy 是调用函数类型时,提前到 postCompile 阶段,转换为 SAM 在云端执行
if (
hooksConfig.postDeploy &&
hooksConfig.postDeploy.type === 'callFunction'
) {
hooksConfig.postCompile = hooksConfig.postDeploy;
delete hooksConfig.postDeploy;
}
logger.debug('initHooks', hooksConfig);
}
async callHook(hookName: IHookName) {
const hooksConfig = this.hooksConfig[hookName];
logger.info('callHooks', hookName);
if (!hooksConfig) return;
switch (hooksConfig.type) {
case 'execCommand':
if (hookName === 'postDeploy') {
throw new Error('postDeploy 钩子不支持调用 Command');
}
return this.execCommand(hooksConfig.commands);
case 'callFunction':
if (hookName === 'preDeploy') {
throw new Error('preDeploy 钩子不支持调用云函数');
}
return this.callFunction(hooksConfig.functions);
}
}
genSAM() {
logger.debug('hooks.genSAM', this.sam);
return this.sam;
}
private async execCommand(commands: string[] = []) {
for (let command of commands) {
logger.info('execCommand', command);
await spawnPromise(command, [], {
cwd: this.projectPath,
});
}
}
private callFunction(functions: ICallFunctionConfig[]) {
// 转换为 SAM 在云端执行
this.sam = {
Config: {
InstalledHook: functions.map((func) => {
return {
FunctionName: func.functionName,
Params: func.params,
};
}),
},
};
}
}
| 25.309735 | 75 | 0.654196 |
39d96fe196020ddad23f02dba91da801ed37bf85 | 2,357 | js | JavaScript | src/js/header.js | kuldeepmatharu/awsomeSheet | c624689d19e6816ad31f39e45de5713927cd6ed8 | [
"MIT"
] | 140 | 2016-04-17T15:25:07.000Z | 2022-03-24T05:02:40.000Z | src/js/header.js | kuldeepmatharu/awsomeSheet | c624689d19e6816ad31f39e45de5713927cd6ed8 | [
"MIT"
] | 57 | 2016-06-16T10:17:50.000Z | 2022-03-08T22:42:08.000Z | src/js/header.js | kuldeepmatharu/awsomeSheet | c624689d19e6816ad31f39e45de5713927cd6ed8 | [
"MIT"
] | 33 | 2017-05-12T01:28:05.000Z | 2022-03-19T23:41:14.000Z | var header = (function() {
var delayScrollingTimer;
var previousPosition = window.pageYOffset;
var targetUp = null;
var targetDown = null;
function resize() {
if (document.documentElement.clientWidth >= 900) {
unpin();
nav.unpin();
};
};
function scroll() {
if (document.documentElement.clientWidth >= 900) {
if (body.dataset.headerPinned == "true") {
unpin();
nav.unpin();
};
} else {
_update_position();
};
};
function _update_position() {
var currentPosition = window.pageYOffset;
if (currentPosition < 10) {
targetDown = null;
targetUp == null;
unpin();
nav.unpin();
} else if (previousPosition > currentPosition) {
// console.log("scroll up");
targetDown = null;
if (targetUp == null) {
targetUp = window.pageYOffset - 30;
} else if (currentPosition <= targetUp || currentPosition <= 0) {
// console.log("------ hit target up");
unpin();
nav.unpin();
};
} else {
// console.log("scroll down");
targetUp = null;
if (targetDown == null) {
targetDown = window.pageYOffset + 100;
} else if (currentPosition >= targetDown) {
// console.log("------ hit target down");
pin();
nav.pin();
};
};
clearTimeout(delayScrollingTimer);
delayScrollingTimer = setTimeout(function() {
// console.log("stop scrolling");
targetDown = null;
targetUp = null;
// console.log("previous", previousPosition, "targetDown", targetDown, "targetUp", targetUp);
}, 500);
previousPosition = currentPosition;
// console.log("previous", previousPosition, "targetDown", targetDown, "targetUp", targetUp);
};
function unpin() {
var body = helper.e("body");
var header = helper.e(".js-header");
helper.removeClass(body, "is-header-pinned");
helper.removeClass(header, "is-pinned");
body.dataset.headerPinned = false;
};
function pin() {
var body = helper.e("body");
var header = helper.e(".js-header");
helper.addClass(body, "is-header-pinned");
helper.addClass(header, "is-pinned");
body.dataset.headerPinned = true;
};
// exposed methods
return {
pin: pin,
unpin: unpin,
scroll: scroll,
resize: resize
};
})();
| 26.188889 | 99 | 0.585066 |
d2156f6836358642bf2dffe0e3ef238d656dfb52 | 249,133 | sql | SQL | database/test_counties.sql | alexandr2015/usa | e704c6bc3e6bbaa9c6d001c638f048cee89c2282 | [
"MIT"
] | null | null | null | database/test_counties.sql | alexandr2015/usa | e704c6bc3e6bbaa9c6d001c638f048cee89c2282 | [
"MIT"
] | null | null | null | database/test_counties.sql | alexandr2015/usa | e704c6bc3e6bbaa9c6d001c638f048cee89c2282 | [
"MIT"
] | null | null | null | CREATE DATABASE IF NOT EXISTS `test` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `test`;
-- MySQL dump 10.13 Distrib 5.5.49, for debian-linux-gnu (x86_64)
--
-- Host: 127.0.0.1 Database: test
-- ------------------------------------------------------
-- Server version 5.5.49-0ubuntu0.14.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `counties`
--
DROP TABLE IF EXISTS `counties`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `counties` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`fips` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`state_id` int(10) unsigned NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `counties_state_id_foreign` (`state_id`),
CONSTRAINT `counties_state_id_foreign` FOREIGN KEY (`state_id`) REFERENCES `states` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3226 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `counties`
--
LOCK TABLES `counties` WRITE;
/*!40000 ALTER TABLE `counties` DISABLE KEYS */;
INSERT INTO `counties` VALUES (2,'Riverside','06065',1,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(3,'Cass','18017',2,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(4,'San Bernardino','06071',1,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(5,'San Juan','72127',3,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(6,'Fairfax','51059',4,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(7,'Barren','21009',5,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(8,'Bulloch','13031',6,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(9,'Clinton','21053',5,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(10,'Centre','42027',7,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(11,'Henry','01067',8,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(12,'Wilcox','13315',6,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(13,'Vermilion','22113',9,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(14,'Lafayette','28071',10,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(15,'Abbeville','45001',11,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(16,'Orange','18117',2,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(17,'Piscataquis','23021',12,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(18,'Clark','55019',13,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(19,'Scott','05127',14,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(20,'Clay','28025',10,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(21,'Colfax','35007',15,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(22,'Potter','42105',7,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(23,'Hill','48217',16,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(24,'Lake','17097',17,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(25,'Adams','42001',7,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(26,'Reno','20155',18,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(27,'Bracken','21023',5,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(28,'Clay','01027',8,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(29,'Saint Marys','24037',19,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(30,'Richland','38077',20,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(31,'Monroe','05095',14,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(32,'Inyo','06027',1,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(33,'Bingham','16011',21,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(34,'Butler','21031',5,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(35,'Harford','24025',19,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(36,'Monroe','28095',10,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(37,'Moore','37125',22,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(38,'Monmouth','34025',23,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(39,'Brown','39015',24,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(40,'Lancaster','42071',7,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(41,'Brown','46013',25,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(42,'Grays Harbor','53027',26,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(43,'Tuscaloosa','01125',8,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(44,'Hale','48189',16,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(45,'Valencia','35061',15,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(46,'Butler','31023',27,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(47,'Dickinson','20041',18,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(48,'Taylor','48441',16,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(49,'Jefferson','19101',28,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(50,'Knox','17095',17,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(51,'Washington','51191',4,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(52,'Windham','09015',29,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(53,'Wayne','18177',2,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(54,'Plymouth','25023',30,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(55,'Montgomery','42091',7,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(56,'Rio Arriba','35039',15,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(57,'Saint Tammany','22103',9,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(58,'Grand Isle','50013',31,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(59,'Lancaster','45057',11,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(60,'Millard','49027',32,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(61,'Raleigh','54081',33,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(62,'Hidalgo','48215',16,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(63,'Oconto','55083',13,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(64,'Cass','38017',20,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(65,'Stillwater','30095',34,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(66,'Atlantic','34001',23,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(67,'Wilkes','37193',22,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(68,'Cameron','48061',16,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(69,'Juniata','42067',7,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(70,'Essex','34013',23,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(71,'Charles Mix','46023',25,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(72,'Bell','48027',16,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(73,'San Joaquin','06077',1,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(74,'Garrett','24023',19,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(75,'Prince Georges','24033',19,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(76,'York','42133',7,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(77,'Accomack','51001',4,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(78,'Ulster','36111',35,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(79,'Logan','54045',33,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(80,'Polk','48373',16,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(81,'Minidoka','16067',21,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(82,'Bryan','40013',36,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(83,'Gloucester','51073',4,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(84,'Martin','48317',16,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(85,'Choctaw','28019',10,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(86,'Northampton','42095',7,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(87,'Hardin','19083',28,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(88,'Warren','19181',28,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(89,'Saint Clair','01115',8,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(90,'Concordia','22029',9,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(91,'Grand Traverse','26055',37,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(92,'Columbus','37047',22,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(93,'Westmoreland','42129',7,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(94,'Whatcom','53073',26,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(95,'Sheridan','56033',38,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(96,'Polk','05113',14,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(97,'Pulaski','21199',5,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(98,'Lane','41039',39,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(99,'Stoddard','29207',40,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(100,'Somerset','42111',7,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(101,'Greene','36039',35,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(102,'Los Angeles','06037',1,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(103,'Marion','18097',2,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(104,'Middlesex','25017',30,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(105,'York','23031',12,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(106,'Yellowstone','30111',34,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(107,'Bristol','25005',30,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(108,'Cobb','13067',6,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(109,'Sullivan','33019',41,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(110,'Ottawa','20143',18,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(111,'Kent','26081',37,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(112,'Norman','27107',42,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(113,'Hardin','39065',24,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(114,'Pontotoc','40123',36,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(115,'Perkins','46105',25,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(116,'Mercer','54055',33,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(117,'Fayette','42051',7,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(118,'Adair','19001',28,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(119,'McDonough','17109',17,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(120,'Adair','29001',40,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(121,'Mayes','40097',36,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(122,'Benton','41003',39,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(123,'Richland','39139',24,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(124,'Bartow','13015',6,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(125,'Logan','21141',5,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(126,'Aleutians West','02016',43,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(127,'Washington','50023',31,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(128,'Adams','17001',17,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(129,'Decatur','18031',2,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(130,'Lawrence','21127',5,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(131,'Berkshire','25003',30,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(132,'Mower','27099',42,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(133,'Watauga','37189',22,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(134,'Walsh','38099',20,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(135,'Gage','31067',27,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(136,'Jefferson','36045',35,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(137,'Texas','40139',36,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(138,'Umatilla','41059',39,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(139,'Robertson','47147',44,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(140,'Adams','55001',13,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(141,'Monroe','36055',35,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(142,'Adams','08001',45,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(143,'Putnam','36079',35,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(144,'Adams','39001',24,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(145,'Lagrange','18087',2,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(146,'Muskingum','39119',24,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(147,'Charleston','45019',11,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(148,'Schuylkill','42107',7,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(149,'Frederick','24021',19,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(150,'Jefferson','01073',8,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(151,'Crawford','42039',7,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(152,'Newport','44005',46,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(153,'McNairy','47109',44,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(154,'Beaver','49001',32,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(155,'Oktibbeha','28105',10,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(156,'Plymouth','19149',28,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(157,'Grant','53025',26,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(158,'Harris','48201',16,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(159,'Washington','17189',17,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(160,'Jefferson','40067',36,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(161,'West Baton Rouge','22121',9,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(162,'Winston','01133',8,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(163,'Du Page','17043',17,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(164,'Washington','23029',12,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(165,'Lenawee','26091',37,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(166,'Steuben','36101',35,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(167,'Gallia','39053',24,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(168,'Dallas','48113',16,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(169,'Addison','50001',31,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(170,'Oakland','26125',37,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(171,'Stevens','53065',26,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(172,'Hamilton','39061',24,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(173,'Cook','13075',6,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(174,'Dallas','19049',28,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(175,'Owen','18119',2,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(176,'Lake','41037',39,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(177,'San Luis Obispo','06079',1,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(178,'King','53033',26,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(179,'Ogle','17141',17,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(180,'Sheboygan','55117',13,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(181,'Jefferson','53031',26,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(182,'Polk','19153',28,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(183,'Ross','39141',24,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(184,'Wayne','17191',17,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(185,'Jefferson','39081',24,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(186,'Modoc','06049',1,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(187,'Warren','36113',35,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(188,'Adjuntas','72001',3,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(189,'Bexar','48029',16,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(190,'Lyon','20111',18,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(191,'Lewis','53041',26,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(192,'Bossier','22015',9,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(193,'Saint Louis','27137',42,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(194,'Allen','21003',5,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(195,'Perry','05105',14,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(196,'Emanuel','13107',6,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(197,'Hancock','17067',17,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(198,'Nobles','27105',42,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(199,'Bates','29013',40,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(200,'Stutsman','38093',20,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(201,'Wyandot','39175',24,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(202,'Malheur','41045',39,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(203,'Armstrong','42005',7,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(204,'Oldham','48359',16,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(205,'Upshur','54097',33,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(206,'Boone','18011',2,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(207,'Davie','37059',22,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(208,'Greene','51079',4,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(209,'Jackson','54035',33,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(210,'Okanogan','53047',26,NULL,'2016-04-25 11:22:44','2016-04-25 11:22:44'),(211,'Kern','06029',1,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(212,'Hickman','47081',44,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(213,'Saint Louis','29189',40,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(214,'Pike','21195',5,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(215,'Franklin','42055',7,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(216,'Glenn','06021',1,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(217,'Union','19175',28,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(218,'Cheboygan','26031',37,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(219,'Washington','27163',42,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(220,'Chenango','36017',35,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(221,'Ottawa','40115',36,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(222,'Greene','47059',44,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(223,'Dickens','48125',16,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(224,'Nelson','51125',4,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(225,'Rock','55105',13,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(226,'Lincoln','56023',38,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(227,'Guam','66010',47,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(228,'Sully','46119',25,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(229,'Elbert','08039',45,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(230,'Rolette','38079',20,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(231,'Placer','06061',1,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(232,'Lincoln','41041',39,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(233,'Clallam','53009',26,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(234,'Hampden','25013',30,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(235,'Wapello','19179',28,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(236,'Buchanan','29021',40,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(237,'Roberts','46109',25,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(238,'Republic','20157',18,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(239,'Harlan','21095',5,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(240,'Brazos','48041',16,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(241,'Lincoln','13181',6,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(242,'Curry','41015',39,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(243,'Lancaster','31109',27,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(244,'Phillips','20147',18,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(245,'Lincoln','40081',36,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(246,'George','28039',10,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(247,'Sonoma','06097',1,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(248,'Nueces','48355',16,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(249,'Santa Fe','35049',15,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(250,'Santa Cruz','04023',48,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(251,'Jim Hogg','48247',16,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(252,'Aguada','72003',3,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(253,'Aguadilla','72005',3,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(254,'Aguas Buenas','72007',3,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(255,'Maricopa','04013',48,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(256,'Las Animas','08071',45,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(257,'Webb','48479',16,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(258,'Guayama','72057',3,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(259,'Cass','27021',42,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(260,'Keweenaw','26083',37,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(261,'Hertford','37091',22,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(262,'Clearwater','16035',21,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(263,'Yakima','53077',26,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(264,'Madera','06039',1,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(265,'Aibonito','72009',3,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(266,'Honolulu','15003',49,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(267,'Aiken','45003',11,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(268,'Floyd','48153',16,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(269,'Montgomery','13209',6,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(270,'Catahoula','22025',9,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(271,'Washington','19183',28,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(272,'Brown','31017',27,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(273,'Harrison','28047',10,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(274,'Fauquier','51061',4,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(275,'Rockland','36087',35,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(276,'San Mateo','06081',1,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(277,'Spokane','53063',26,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(278,'Aitkin','27001',42,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(279,'Perry','21193',5,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(280,'Natchitoches','22069',9,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(281,'Pima','04019',48,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(282,'Walworth','46129',25,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(283,'Hubbard','27057',42,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(284,'Tangipahoa','22105',9,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(285,'Kodiak Island','02150',43,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(286,'Bethel','02050',43,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(287,'Franklin','17055',17,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(288,'Pembina','38067',20,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(289,'Hale','01065',8,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(290,'Washington','08121',45,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(291,'Fulton','18049',2,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(292,'Tuscola','26157',37,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(293,'Erie','36029',35,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(294,'Summit','39153',24,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(295,'Stark','39151',24,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(296,'Buckingham','51029',4,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(297,'Aleutians East','02013',43,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(298,'Franklin','36033',35,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(299,'Madison','01089',8,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(300,'Mobile','01097',8,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(301,'Shelby','01117',8,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(302,'Alachua','12001',50,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(303,'Crook','56011',38,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(304,'Orange','12095',50,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(305,'Wade Hampton','02270',43,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(306,'Alamance','37001',22,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(307,'Alameda','06001',1,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(308,'Bernalillo','35001',15,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(309,'Socorro','35053',15,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(310,'Contra Costa','06013',1,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(311,'Wheeler','13309',6,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(312,'Montgomery','18107',2,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(313,'Williams','38105',20,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(314,'Lincoln','32017',51,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(315,'Crockett','47033',44,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(316,'Otero','35035',15,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(317,'Alamosa','08003',45,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(318,'Lane','20101',18,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(319,'Gray','48179',16,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(320,'Emmet','26047',37,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(321,'Berrien','13019',6,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(322,'Swain','37173',22,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(323,'Beltrami','27007',42,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(324,'Henry','17073',17,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(325,'Antrim','26009',37,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(326,'Jasper','29097',40,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(327,'Bradford','42015',7,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(328,'Wood','48499',16,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(329,'Portage','55097',13,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(330,'Dougherty','13095',6,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(331,'Fayette','19065',28,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(332,'Whiteside','17195',17,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(333,'Delaware','18035',2,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(334,'Livingston','22063',9,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(335,'Stearns','27145',42,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(336,'Gentry','29075',40,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(337,'Furnas','31065',27,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(338,'Carroll','33003',41,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(339,'Albany','36001',35,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(340,'Athens','39009',24,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(341,'Linn','41043',39,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(342,'Berks','42011',7,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(343,'Shackelford','48417',16,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(344,'Orleans','50019',31,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(345,'Green','55045',13,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(346,'Oxford','23017',12,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(347,'Grant','46051',25,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(348,'Stanly','37167',22,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(349,'Clinton','17027',17,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(350,'Barton','20009',18,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(351,'Harding','35021',15,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(352,'Caddo','40015',36,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(353,'Gillespie','48171',16,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(354,'Buena Vista','19021',28,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(355,'Freeborn','27047',42,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(356,'Wilcox','01131',8,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(357,'Stevens','27149',42,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(358,'Brunswick','51025',4,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(359,'Mineral','30061',34,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(360,'Duplin','37061',22,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(361,'Nassau','36059',35,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(362,'Marshall','01095',8,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(363,'Wright','27171',42,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(364,'Dunn','55033',13,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(365,'Monroe','19135',28,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(366,'Rensselaer','36083',35,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(367,'Tallahatchie','28135',10,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(368,'Laramie','56021',38,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(369,'White','05145',14,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(370,'Mendocino','06045',1,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(371,'Marshall','19127',28,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(372,'Cassia','16031',21,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(373,'Edwards','17047',17,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(374,'Noble','18113',2,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(375,'Kennebec','23011',12,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(376,'Calhoun','26025',37,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(377,'Boone','31011',27,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(378,'Camden','34007',23,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(379,'Orleans','36073',35,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(380,'Wayne','39169',24,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(381,'Pushmataha','40127',36,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(382,'Erie','42049',7,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(383,'Providence','44007',46,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(384,'Whitman','53075',26,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(385,'Clark','17023',17,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(386,'Preston','54077',33,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(387,'Carbon','42025',7,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(388,'Linn','19113',28,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(389,'Lehigh','42077',7,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(390,'Union','46127',25,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(391,'Stone','05137',14,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(392,'Blount','47009',44,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(393,'Clarendon','45027',11,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(394,'Jefferson','28063',10,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(395,'Lee','45061',11,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(396,'Natrona','56025',38,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(397,'Hall','31079',27,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(398,'Delaware','42045',7,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(399,'McHenry','17111',17,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(400,'Rice','20159',18,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(401,'Saint Croix','55109',13,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(402,'Wayne','42127',7,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(403,'Madison','30057',34,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(404,'Pierce','53053',26,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(405,'Clinton','36019',35,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(406,'Oneida','36065',35,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(407,'Humboldt','06023',1,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(408,'Pittsburg','40121',36,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(409,'Greenbrier','54025',33,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(410,'Snohomish','53061',26,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(411,'Loudoun','51107',4,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(412,'Wadena','27159',42,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(413,'Polk','29167',40,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(414,'Mercer','17131',17,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(415,'Parker','48367',16,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(416,'Dillingham','02070',43,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(417,'Greene','42059',7,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(418,'Rapides','22079',9,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(419,'Douglas','27041',42,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(420,'Grady','40051',36,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(421,'Saline','05125',14,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(422,'Franklin','19069',28,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(423,'Morgan','17137',17,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(424,'Rush','20165',18,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(425,'Buncombe','37021',22,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(426,'McKenzie','38053',20,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(427,'Genesee','36037',35,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(428,'Tallapoosa','01123',8,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(429,'Rutherford','37161',22,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(430,'Mifflin','42087',7,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(431,'Shelby','48419',16,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(432,'Calhoun','01015',8,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(433,'Madison','18095',2,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(434,'Campbell','21037',5,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(435,'Clark','29045',40,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(436,'Thayer','31169',27,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(437,'Grafton','33009',41,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(438,'Licking','39089',24,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(439,'Huntingdon','42061',7,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(440,'Hanson','46061',25,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(441,'Dekalb','47041',44,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(442,'Alexandria City','51510',4,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(443,'Gaston','37071',22,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(444,'Lancaster','51103',4,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(445,'Jackson','12063',50,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(446,'Pike','18125',2,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(447,'Martin','18101',2,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(448,'Lamoure','38045',20,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(449,'Allegany','36003',35,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(450,'Jim Wells','48249',16,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(451,'Arenac','26011',37,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(452,'Skagit','53057',26,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(453,'San Saba','48411',16,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(454,'Custer','31041',27,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(455,'Orleans','22071',9,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(456,'Jackson','05067',14,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(457,'Sandoval','35043',15,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(458,'Pontotoc','28115',10,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(459,'Kewaunee','55061',13,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(460,'McDowell','54047',33,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(461,'Kossuth','19109',28,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(462,'Saint Clair','26147',37,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(463,'Putnam','47141',44,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(464,'Madison','17119',17,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(465,'Barnes','38003',20,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(466,'Pickens','01107',8,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(467,'Lawrence','05075',14,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(468,'Clearwater','27029',42,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(469,'Perry','42099',7,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(470,'Tattnall','13267',6,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(471,'Alfalfa','40003',36,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(472,'Snyder','42109',7,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(473,'Beaver','42007',7,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(474,'Monterey','06053',1,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(475,'Orange','06059',1,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(476,'Franklin','05047',14,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(477,'Lincoln','54043',33,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(478,'Alexander','37003',22,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(479,'Aroostook','23003',12,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(480,'Yukon Koyukuk','02290',43,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(481,'Warren','34041',23,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(482,'Volusia','12127',50,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(483,'Fentress','47049',44,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(484,'Madison','29123',40,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(485,'Belmont','39013',24,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(486,'Little River','05081',14,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(487,'Allegan','26005',37,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(488,'Cattaraugus','36009',35,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(489,'Coos','41011',39,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(490,'Montgomery','51121',4,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(491,'Sierra','06091',1,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(492,'Covington City','51580',4,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(493,'Allegheny','42003',7,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(494,'Terrebonne','22109',9,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(495,'Clarke','01025',8,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(496,'Floyd','21071',5,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(497,'Wicomico','24045',19,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(498,'Hillsdale','26059',37,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(499,'Dixon','31051',27,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(500,'Bennett','46007',25,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(501,'Collin','48085',16,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(502,'Guilford','37081',22,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(503,'Wyoming','54109',33,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(504,'Wayne','26163',37,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(505,'Warren','21227',5,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(506,'Solano','06095',1,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(507,'Wabash','17185',17,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(508,'Vigo','18167',2,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(509,'Ottawa','26139',37,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(510,'Worth','29227',40,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(511,'Bergen','34003',23,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(512,'Allendale','45005',11,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(513,'Osceola','19143',28,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(514,'Liberty','13179',6,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(515,'Washington','42125',7,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(516,'Cayuga','36011',35,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(517,'Highland','39071',24,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(518,'Boulder','08013',45,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(519,'Merrimack','33013',41,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(520,'Todd','21219',5,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(521,'Vinton','39163',24,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(522,'Tulare','06107',1,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(523,'Washington','55131',13,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(524,'Apache','04001',48,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(525,'Wilkinson','13319',6,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(526,'Tazewell','17179',17,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(527,'Moultrie','17139',17,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(528,'Scott','29201',40,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(529,'Union','42119',7,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(530,'Wayne','19185',28,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(531,'Vermilion','17183',17,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(532,'Bronx','36005',35,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(533,'Shannon','29203',40,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(534,'Colorado','48089',16,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(535,'Blount','01009',8,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(536,'Pamlico','37137',22,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(537,'Box Butte','31013',27,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(538,'Bolivar','28011',10,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(539,'Wakulla','12129',50,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(540,'McLean','17113',17,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(541,'New Haven','09009',29,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(542,'La Plata','08067',45,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(543,'Butler','19023',28,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(544,'Lawrence','17101',17,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(545,'Rockingham','37157',22,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(546,'Wheeler','48483',16,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(547,'Williamson','47187',44,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(548,'Pulaski','51155',4,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(549,'Overton','47133',44,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(550,'Brown','55009',13,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(551,'Salem','34033',23,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(552,'Fayette','54019',33,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(553,'Lonoke','05085',14,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(554,'Clearfield','42033',7,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(555,'Suffolk','25025',30,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(556,'Passaic','34031',23,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(557,'Mason','53045',26,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(558,'Crawford','05033',14,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(559,'Park','08093',45,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(560,'Bacon','13005',6,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(561,'Marion','17121',17,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(562,'Wabaunsee','20197',18,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(563,'Gratiot','26057',37,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(564,'Lafayette','29107',40,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(565,'Lee','28081',10,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(566,'Harlan','31083',27,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(567,'Catron','35003',15,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(568,'Buffalo','55011',13,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(569,'Tyler','54095',33,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(570,'Jackson','55053',13,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(571,'Clay','18021',2,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(572,'Plumas','06063',1,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(573,'Columbia','42037',7,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(574,'Chisago','27025',42,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(575,'Norton','20137',18,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(576,'Barron','55005',13,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(577,'Loup','31115',27,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(578,'Lincoln','53043',26,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(579,'Calloway','21035',5,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(580,'Randolph','01111',8,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(581,'Gloucester','34015',23,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(582,'Gunnison','08051',45,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(583,'Lapeer','26087',37,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(584,'Morton','38059',20,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(585,'Otter Tail','27111',42,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(586,'Arkansas','05001',14,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(587,'Lincoln','23015',12,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(588,'Grant','22043',9,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(589,'Washington','41067',39,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(590,'Saint Clair','17163',17,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(591,'Boone','05009',14,NULL,'2016-04-25 11:22:45','2016-04-25 11:22:45'),(592,'Alpena','26007',37,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(593,'Jerauld','46073',25,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(594,'Valley','16085',21,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(595,'Iron','26071',37,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(596,'Jackson','27063',42,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(597,'Greene','39057',24,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(598,'Fulton','13121',6,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(599,'Talladega','01121',8,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(600,'Clark','05019',14,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(601,'San Diego','06073',1,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(602,'Rio Grande','08105',45,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(603,'Washington','16087',21,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(604,'Fayette','18041',2,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(605,'Union','28145',10,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(606,'Carbon','30009',34,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(607,'Schuyler','36097',35,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(608,'Brewster','48043',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(609,'Utah','49049',32,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(610,'Shenandoah','51171',4,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(611,'Franklin','50011',31,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(612,'Chaffee','08015',45,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(613,'Schenectady','36093',35,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(614,'Van Buren','05141',14,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(615,'Cavalier','38019',20,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(616,'Scott','17171',17,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(617,'Cook','17031',17,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(618,'Cheshire','33005',41,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(619,'Hamlin','46057',25,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(620,'Mayaguez','72097',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(621,'Toa Alta','72135',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(622,'Bayamon','72021',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(623,'Trujillo Alto','72139',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(624,'Florida','72054',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(625,'Hatillo','72065',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(626,'Arecibo','72013',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(627,'Caguas','72025',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(628,'Manati','72091',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(629,'Orocovis','72107',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(630,'Carolina','72031',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(631,'Penuelas','72111',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(632,'Guaynabo','72061',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(633,'San Lorenzo','72129',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(634,'Santa Isabel','72133',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(635,'Barranquitas','72019',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(636,'Villalba','72149',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(637,'Ponce','72113',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(638,'Isabela','72071',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(639,'Rio Grande','72119',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(640,'Vega Baja','72145',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(641,'Peoria','17143',17,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(642,'Vermillion','18165',2,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(643,'Salt Lake','49035',32,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(644,'Teton','56039',38,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(645,'Nevada','06057',1,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(646,'Galveston','48167',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(647,'Chickasaw','19037',28,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(648,'Glynn','13127',6,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(649,'Effingham','17049',17,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(650,'Labette','20099',18,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(651,'Daviess','29061',40,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(652,'Avery','37011',22,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(653,'Deuel','46039',25,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(654,'Grundy','47061',44,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(655,'Duchesne','49013',32,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(656,'Seminole','12117',50,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(657,'Calaveras','06009',1,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(658,'Campbell','51031',4,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(659,'Wood','55141',13,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(660,'Cape Girardeau','29031',40,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(661,'Calhoun','12013',50,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(662,'Jefferson','05069',14,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(663,'Prentiss','28117',10,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(664,'Oswego','36075',35,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(665,'Habersham','13137',6,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(666,'Richland','22083',9,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(667,'Lincoln','35027',15,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(668,'Cherokee','48073',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(669,'Union','17181',17,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(670,'Limestone','48293',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(671,'Sioux','19167',28,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(672,'Crawford','18025',2,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(673,'Osborne','20141',18,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(674,'Penobscot','23019',12,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(675,'Oregon','29149',40,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(676,'Belknap','33001',41,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(677,'Wayne','36117',35,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(678,'Kane','49025',32,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(679,'Halifax','51083',4,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(680,'De Kalb','18033',2,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(681,'Etowah','01055',8,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(682,'Lake','12069',50,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(683,'Wilson','20205',18,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(684,'Blair','42013',7,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(685,'Eau Claire','55035',13,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(686,'Breathitt','21025',5,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(687,'Guanica','72055',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(688,'Toa Baja','72137',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(689,'Jayuya','72073',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(690,'Fajardo','72053',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(691,'Humacao','72069',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(692,'Sabana Grande','72121',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(693,'Yauco','72153',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(694,'Juana Diaz','72075',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(695,'Cabo Rojo','72023',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(696,'Cayey','72035',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(697,'Winona','27169',42,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(698,'Polk','12105',50,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(699,'Jackson','40065',36,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(700,'Bedford','42009',7,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(701,'Lewis','54041',33,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(702,'Kanawha','54039',33,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(703,'Floyd','51063',4,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(704,'Lee','12071',50,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(705,'Montgomery','28097',10,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(706,'Woods','40151',36,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(707,'Seneca','39147',24,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(708,'Steuben','18151',2,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(709,'Marshall','27089',42,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(710,'Johnson','48251',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(711,'Indiana','42063',7,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(712,'Berkeley','45015',11,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(713,'Brazoria','48039',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(714,'Florence','55037',13,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(715,'Santa Clara','06085',1,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(716,'Cass','31025',27,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(717,'Lyon','19119',28,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(718,'Wise','48497',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(719,'Williams','39171',24,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(720,'Wetzel','54103',33,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(721,'Winnebago','17201',17,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(722,'Carter','30011',34,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(723,'Power','16077',21,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(724,'Davidson','47037',44,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(725,'Saint Charles','22089',9,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(726,'Amador','06005',1,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(727,'Alpine','06003',1,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(728,'Suffolk','36103',35,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(729,'Cache','49005',32,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(730,'Taos','35055',15,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(731,'Iowa','19095',28,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(732,'Fairfield','39045',24,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(733,'Fulton','42057',7,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(734,'Nye','32023',51,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(735,'Potter','48375',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(736,'Westchester','36119',35,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(737,'Andrew','29003',40,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(738,'Jones','19105',28,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(739,'Onondaga','36067',35,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(740,'Marinette','55075',13,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(741,'Benton','18007',2,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(742,'Northwest Arctic','02188',43,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(743,'Jasper','19099',28,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(744,'Lee','17103',17,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(745,'Miami','18103',2,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(746,'Blue Earth','27013',42,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(747,'Clark','53011',26,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(748,'Coffee','13069',6,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(749,'Divide','38023',20,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(750,'Cibola','35006',15,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(751,'Saint Mary','22101',9,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(752,'Holt','31089',27,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(753,'Clermont','39025',24,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(754,'Amelia','51007',4,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(755,'Nassau','12089',50,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(756,'Dutchess','36027',35,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(757,'Pulaski','17153',17,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(758,'Napa','06055',1,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(759,'Sumter','13261',6,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(760,'Montgomery','29139',40,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(761,'Polk','55095',13,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(762,'Story','19169',28,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(763,'Cloud','20029',18,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(764,'Dodge','31053',27,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(765,'Montgomery','36057',35,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(766,'Major','40093',36,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(767,'Hughes','46065',25,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(768,'Liberty','48291',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(769,'Essex','25009',30,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(770,'Phillips','08095',45,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(771,'Hampshire','25015',30,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(772,'Buffalo','31019',27,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(773,'Hillsborough','33011',41,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(774,'Lorain','39093',24,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(775,'Marshall','46091',25,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(776,'Lamb','48279',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(777,'Amherst','51009',4,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(778,'Slope','38087',20,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(779,'Lyon','27083',42,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(780,'Culpeper','51047',4,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(781,'Union','35059',15,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(782,'Coahoma','28027',10,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(783,'Johnson','18081',2,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(784,'Dekalb','29063',40,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(785,'Rowan','37159',22,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(786,'Yamhill','41071',39,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(787,'Franklin','39049',24,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(788,'Roane','54087',33,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(789,'Fayette','48149',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(790,'Bonneville','16019',21,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(791,'Dinwiddie','51053',4,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(792,'El Paso','08041',45,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(793,'Hendricks','18063',2,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(794,'Tazewell','51185',4,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(795,'Chesterfield','51041',4,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(796,'Gallatin','30031',34,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(797,'Tolland','09013',29,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(798,'Macon','29121',40,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(799,'Vernon','22115',9,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(800,'Deer Lodge','30023',34,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(801,'Rusk','48401',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(802,'Kauai','15007',49,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(803,'Chambers','48071',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(804,'North Slope','02185',43,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(805,'Monroe','42089',7,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(806,'McHenry','38049',20,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(807,'Anasco','72011',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(808,'Saint Johns','12109',50,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(809,'Asotin','53003',26,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(810,'Anchorage','02020',43,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(811,'Chickasaw','28017',10,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(812,'Kenai Peninsula','02122',43,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(813,'Jefferson','21111',5,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(814,'Davis','49011',32,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(815,'Knott','21119',5,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(816,'Livingston','17105',17,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(817,'Columbia','36021',35,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(818,'Sedgwick','20173',18,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(819,'Covington','01039',8,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(820,'Rock Island','17161',17,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(821,'Bucks','42017',7,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(822,'Goliad','48175',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(823,'Denali','02068',43,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(824,'Lauderdale','01077',8,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(825,'Shasta','06089',1,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(826,'McDonald','29119',40,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(827,'Phelps','31137',27,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(828,'Anderson','45007',11,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(829,'Grimes','48185',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(830,'Washoe','32031',51,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(831,'Elmore','16039',21,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(832,'Lake','06033',1,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(833,'Cumberland','42041',7,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(834,'Franklin','18047',2,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(835,'Anderson','47001',44,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(836,'Delaware','36025',35,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(837,'Williamson','48491',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(838,'Clinton','19045',28,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(839,'Butler','20015',18,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(840,'Anoka','27003',42,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(841,'Sussex','34037',23,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(842,'Ashtabula','39007',24,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(843,'Day','46037',25,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(844,'Wise','51195',4,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(845,'Windsor','50027',31,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(846,'Jackson','19097',28,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(847,'Sangamon','17167',17,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(848,'Huntington','18069',2,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(849,'Cherokee','37039',22,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(850,'Georgetown','45043',11,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(851,'Andrews','48003',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(852,'Sacramento','06067',1,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(853,'Nelson','38063',20,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(854,'San Juan','49037',32,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(855,'Rosebud','30087',34,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(856,'Utuado','72141',3,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(857,'Washington','22117',9,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(858,'Harnett','37085',22,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(859,'Garfield','49017',32,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(860,'Lake of the Woods','27077',42,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(861,'Cape May','34009',23,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(862,'Montgomery','20125',18,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(863,'West Feliciana','22125',9,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(864,'Skagway Hoonah Angoon','02232',43,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(865,'Morrill','31123',27,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(866,'Sharkey','28125',10,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(867,'Hidalgo','35023',15,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(868,'Cass','19029',28,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(869,'Jefferson','42065',7,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(870,'Marathon','55073',13,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(871,'Harrison','54033',33,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(872,'Washtenaw','26161',37,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(873,'Shelby','39149',24,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(874,'Manatee','12081',50,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(875,'Sevier','49041',32,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(876,'Pike','29163',40,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(877,'Hunterdon','34019',23,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(878,'Butler','42019',7,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(879,'Brown','18013',2,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(880,'Crawford','17033',17,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(881,'Parke','18121',2,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(882,'Anne Arundel','24003',19,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(883,'Iron','29093',40,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(884,'Kitsap','53035',26,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(885,'Howard','24027',19,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(886,'Jefferson','16051',21,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(887,'Mississippi','29133',40,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(888,'Red River','48387',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(889,'Jackson','21109',5,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(890,'Lebanon','42075',7,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(891,'Lincoln','22061',9,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(892,'Hancock','28045',10,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(893,'Somerset','23025',12,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(894,'Jones','48253',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(895,'Darke','39037',24,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(896,'Tioga','42117',7,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(897,'Anson','37007',22,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(898,'Marion','20115',18,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(899,'Sheridan','30091',34,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(900,'Wasco','41065',39,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(901,'Archer','48009',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(902,'Lycoming','42081',7,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(903,'Woodbury','19193',28,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(904,'Marion','12083',50,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(905,'Fremont','16043',21,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(906,'Harper','20077',18,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(907,'Dona Ana','35013',15,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(908,'Northumberland','42097',7,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(909,'El Paso','48141',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(910,'Langlade','55067',13,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(911,'Jones','28067',10,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(912,'Sheridan','31161',27,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(913,'Monroe','39111',24,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(914,'Kershaw','45055',11,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(915,'Jay','18075',2,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(916,'Bottineau','38009',20,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(917,'Garfield','08045',45,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(918,'Dakota','27037',42,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(919,'Pike','05109',14,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(920,'Hockley','48219',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(921,'Guadalupe','35019',15,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(922,'Jefferson','29099',40,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(923,'Ellis','20051',18,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(924,'Conejos','08021',45,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(925,'Paulding','39125',24,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(926,'Tippah','28139',10,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(927,'Pershing','32027',51,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(928,'Pinal','04021',48,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(929,'Franklin','12037',50,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(930,'Tioga','36107',35,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(931,'Wake','37183',22,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(932,'Flathead','30029',34,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(933,'Hamilton','47065',44,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(934,'Hillsborough','12057',50,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(935,'Bayfield','55007',13,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(936,'Ashe','37009',22,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(937,'Mason','54053',33,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(938,'Jo Daviess','17085',17,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(939,'Trinity','48455',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(940,'Canyon','16027',21,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(941,'Burleigh','38015',20,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(942,'Washington','49053',32,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(943,'Codington','46029',25,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(944,'Sanilac','26151',37,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(945,'Jackson','41029',39,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(946,'Pope','05115',14,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(947,'Mesa','08077',45,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(948,'Jerome','16053',21,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(949,'Knox','23013',12,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(950,'Swift','27151',42,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(951,'Niagara','36063',35,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(952,'Klickitat','53039',26,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(953,'Outagamie','55087',13,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(954,'Saint Clair','29185',40,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(955,'Chelan','53007',26,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(956,'Columbia','13073',6,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(957,'Appomattox','51011',4,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(958,'Santa Cruz','06087',1,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(959,'Washington','01129',8,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(960,'Dukes','25007',30,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(961,'Bollinger','29017',40,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(962,'Crisp','13081',6,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(963,'Saint Bernard','22087',9,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(964,'Polk','13233',6,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(965,'San Patricio','48409',16,NULL,'2016-04-25 11:22:46','2016-04-25 11:22:46'),(966,'Custer','40039',36,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(967,'Cheyenne','08017',45,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(968,'Fremont','56013',38,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(969,'Surry','37171',22,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(970,'Patrick','51141',4,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(971,'Randolph','18135',2,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(972,'Scotland','29199',40,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(973,'Yuba','06115',1,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(974,'Archuleta','08007',45,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(975,'Guthrie','19077',28,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(976,'Oneida','55085',13,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(977,'Pocahontas','54075',33,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(978,'Colusa','06011',1,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(979,'Baltimore','24005',19,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(980,'Dunklin','29069',40,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(981,'Wyoming','36121',35,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(982,'De Soto','12027',50,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(983,'Carroll','19027',28,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(984,'Hamilton','18057',2,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(985,'Crawford','20037',18,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(986,'Bienville','22013',9,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(987,'Manistee','26101',37,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(988,'Davidson','37057',22,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(989,'Valley','31175',27,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(990,'Hancock','39063',24,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(991,'Oklahoma','40109',36,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(992,'Spartanburg','45083',11,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(993,'Trempealeau','55121',13,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(994,'Richland','45079',11,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(995,'Roosevelt','35041',15,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(996,'Clatsop','41007',39,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(997,'Lackawanna','42069',7,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(998,'Fulton','39051',24,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(999,'Obrien','19141',28,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1000,'Madison','16065',21,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1001,'Merrick','31121',27,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1002,'Johnston','37101',22,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1003,'Grand','49019',32,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1004,'Cass','29037',40,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1005,'Butte','16023',21,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1006,'Lincoln','27081',42,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1007,'Douglas','17041',17,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1008,'Allen','18003',2,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1009,'Dade','29057',40,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1010,'Washington','28151',10,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1011,'Itasca','27061',42,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1012,'New Castle','10003',52,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1013,'Clark','32003',51,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1014,'Orange','36071',35,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1015,'Ramsey','27123',42,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1016,'Koochiching','27071',42,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1017,'Limestone','01083',8,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1018,'Forsyth','37067',22,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1019,'Carter','40019',36,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1020,'Fall River','46047',25,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1021,'Giles','47055',44,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1022,'Iowa','55049',13,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1023,'Grant','35017',15,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1024,'Fillmore','27045',42,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1025,'Cass','17017',17,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1026,'Macon','17115',17,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1027,'Greenup','21089',5,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1028,'Titus','48449',16,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1029,'Carroll','17015',17,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1030,'Sumner','20191',18,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1031,'Miner','46097',25,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1032,'Forest','55041',13,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1033,'Clark','16033',21,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1034,'Marshall','18099',2,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1035,'Walton','12131',50,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1036,'Clinch','13065',6,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1037,'Lee','19111',28,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1038,'Boone','17007',17,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1039,'Osage','29151',40,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1040,'Washington','36115',35,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1041,'Denton','48121',16,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1042,'San Juan','53055',26,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1043,'Lafayette','55065',13,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1044,'Whitley','18183',2,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1045,'Amite','28005',10,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1046,'Cowlitz','53015',26,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1047,'Hamilton','36041',35,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1048,'Bannock','16005',21,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1049,'Crawford','19047',28,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1050,'Pasco','12101',50,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1051,'Dale','01045',8,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1052,'Claiborne','22027',9,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1053,'Bell','21013',5,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1054,'Tate','28137',10,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1055,'Cullman','01043',8,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1056,'Desha','05041',14,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1057,'Cowley','20035',18,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1058,'Pepin','55091',13,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1059,'Le Flore','40079',36,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1060,'Lake','30047',34,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1061,'Kiowa','08061',45,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1062,'Calhoun','13037',6,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1063,'Bureau','17011',17,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1064,'Rush','18139',2,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1065,'Carlisle','21039',5,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1066,'Baltimore City','24510',19,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1067,'Sibley','27143',42,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1068,'Lincoln','28085',10,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1069,'Yadkin','37197',22,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1070,'Washington','31177',27,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1071,'Hudson','34017',23,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1072,'Gilliam','41021',39,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1073,'Kingsbury','46077',25,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1074,'Shelby','47157',44,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1075,'Tarrant','48439',16,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1076,'Arlington','51013',4,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1077,'Bennington','50003',31,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1078,'Columbia','55021',13,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1079,'Albany','56001',38,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1080,'Lawrence','28077',10,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1081,'Macomb','26099',37,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1082,'Norfolk City','51710',4,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1083,'Cascade','30013',34,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1084,'Red River','22081',9,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1085,'Kings','06031',1,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1086,'Mississippi','05093',14,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1087,'Douglas','46043',25,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1088,'Towner','38095',20,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1089,'Bullock','01011',8,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1090,'Emmet','19063',28,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1091,'Howard','29089',40,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1092,'Kenedy','48261',16,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1093,'Floyd','13115',6,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1094,'Saint Landry','22097',9,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1095,'De Witt','48123',16,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1096,'Roseau','27135',42,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1097,'Ellis','40045',36,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1098,'Coryell','48099',16,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1099,'Ness','20135',18,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1100,'Marquette','26103',37,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1101,'Coffee','47031',44,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1102,'Forrest','28035',10,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1103,'Dickinson','19059',28,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1104,'Calhoun','54013',33,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1105,'Oglethorpe','13221',6,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1106,'Madison','51113',4,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1107,'Newton','29145',40,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1108,'Kankakee','17091',17,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1109,'Smith','48423',16,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1110,'Butte','46019',25,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1111,'Sierra','35051',15,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1112,'Lincoln','08073',45,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1113,'Hancock','21091',5,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1114,'Montezuma','08083',45,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1115,'Saline','29195',40,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1116,'Sagadahoc','23023',12,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1117,'Arroyo','72015',3,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1118,'Mason','48319',16,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1119,'McPherson','46089',25,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1120,'Knox','21121',5,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1121,'Lowndes','28087',10,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1122,'Eddy','35015',15,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1123,'La Salle','48283',16,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1124,'Bremer','19017',28,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1125,'Sanborn','46111',25,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1126,'Conway','05029',14,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1127,'Ida','19093',28,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1128,'Arthur','31005',27,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1129,'Elko','32007',51,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1130,'Claiborne','47025',44,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1131,'Grant','54023',33,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1132,'Lamar','48277',16,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1133,'Jefferson','08059',45,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1134,'Queens','36081',35,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1135,'Grand Forks','38035',20,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1136,'Dubuque','19061',28,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1137,'Gallatin','17059',17,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1138,'Barton','29011',40,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1139,'Monroe','29137',40,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1140,'Brunswick','37019',22,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1141,'Sharp','05135',14,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1142,'Yavapai','04025',48,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1143,'Greene','29077',40,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1144,'Franklin','31061',27,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1145,'Monroe','26115',37,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1146,'Hanover','51085',4,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1147,'Washington','44009',46,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1148,'Turner','13287',6,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1149,'Worcester','25027',30,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1150,'Grant','27051',42,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1151,'Grant','31075',27,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1152,'Randolph','37151',22,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1153,'Leslie','21131',5,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1154,'Pottawatomie','40125',36,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1155,'Dimmit','48127',16,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1156,'Franklin','25011',30,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1157,'Houston','01069',8,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1158,'Boone','54005',33,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1159,'McIntosh','13191',6,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1160,'Dodge','55027',13,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1161,'Iroquois','17075',17,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1162,'Clark','20025',18,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1163,'Boyd','21019',5,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1164,'Boone','29019',40,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1165,'Benton','28009',10,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1166,'Saunders','31155',27,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1167,'Ashland','39005',24,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1168,'Upshur','48459',16,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1169,'Ashland','55003',13,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1170,'Cheatham','47021',44,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1171,'Madison','22065',9,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1172,'McIntosh','38051',20,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1173,'Delaware','39041',24,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1174,'Luzerne','42079',7,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1175,'Coles','17029',17,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1176,'Chicot','05017',14,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1177,'Montgomery','24031',19,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1178,'Sherman','31163',27,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1179,'Colleton','45029',11,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1180,'Spink','46115',25,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1181,'Chautauqua','36013',35,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1182,'Pickaway','39129',24,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1183,'Cambria','42021',7,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1184,'Wilkinson','28157',10,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1185,'Jefferson','41031',39,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1186,'Panola','28107',10,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1187,'Pine','27115',42,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1188,'Pitkin','08097',45,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1189,'Stonewall','48433',16,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1190,'Saline','20169',18,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1191,'Haywood','37087',22,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1192,'Christian','17021',17,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1193,'Adams','31001',27,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1194,'Robertson','48395',16,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1195,'Fulton','17057',17,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1196,'Muscatine','19139',28,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1197,'Atchison','20005',18,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1198,'Chester','42029',7,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1199,'Howard','05061',14,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1200,'Clarke','13059',6,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1201,'Menard','17129',17,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1202,'McMinn','47107',44,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1203,'Henderson','48213',16,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1204,'Greene','17061',17,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1205,'Taylor','19173',28,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1206,'Kootenai','16055',21,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1207,'Smith','20183',18,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1208,'Benton','19011',28,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1209,'Smyth','51173',4,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1210,'Pender','37141',22,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1211,'Rockingham','33015',41,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1212,'Logan','17107',17,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1213,'Winn','22127',9,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1214,'Montmorency','26119',37,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1215,'Cass','48067',16,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1216,'Carteret','37031',22,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1217,'Duval','12031',50,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1218,'Horry','45051',11,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1219,'Houghton','26061',37,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1220,'Palm Beach','12099',50,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1221,'Pike','17149',17,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1222,'Genesee','26049',37,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1223,'Escambia','01053',8,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1224,'Atoka','40005',36,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1225,'Tipton','47167',44,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1226,'Decatur','13087',6,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1227,'Fountain','18045',2,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1228,'Williamson','17199',17,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1229,'Merced','06047',1,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1230,'Montgomery','17135',17,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1231,'Kandiyohi','27067',42,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1232,'Portage','39133',24,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1233,'Franklin','01059',8,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1234,'Logan','08075',45,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1235,'Kosciusko','18085',2,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1236,'Rawlins','20153',18,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1237,'Kenton','21117',5,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1238,'Hughes','40063',36,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1239,'Carroll','47017',44,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1240,'Iosco','26069',37,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1241,'Alger','26003',37,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1242,'Meade','46093',25,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1243,'Fresno','06019',1,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1244,'Lee','05077',14,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1245,'Lee','01081',8,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1246,'Barrow','13013',6,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1247,'Sac','19161',28,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1248,'Shawnee','20177',18,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1249,'Androscoggin','23001',12,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1250,'Bay','26017',37,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1251,'Lincoln','29113',40,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1252,'Nemaha','31127',27,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1253,'Ritchie','54085',33,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1254,'El Dorado','06017',1,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1255,'Geauga','39055',24,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1256,'Cannon','47015',44,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1257,'Audubon','19009',28,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1258,'Becker','27005',42,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1259,'Fayette','17051',17,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1260,'Woodruff','05147',14,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1261,'Richmond','13245',6,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1262,'Kalamazoo','26077',37,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1263,'Saint Charles','29183',40,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1264,'Lewis and Clark','30049',34,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1265,'Carroll','39019',24,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1266,'Houston','48225',16,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1267,'Hampshire','54027',33,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1268,'Augusta','51015',4,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1269,'Juneau','02110',43,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1270,'Bertie','37015',22,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1271,'Weld','08123',45,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1272,'Carter','21043',5,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1273,'Island','53029',26,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1274,'Marion','41047',39,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1275,'Cherokee','19035',28,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1276,'Ward','38101',20,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1277,'Floyd','19067',28,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1278,'Arapahoe','08005',45,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1279,'Buchanan','19019',28,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1280,'Dearborn','18029',2,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1281,'Marshall','21157',5,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1282,'Hancock','23009',12,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1283,'Lawrence','29109',40,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1284,'Beaufort','37013',22,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1285,'Hamilton','31081',27,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1286,'Mora','35033',15,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1287,'Lyon','32019',51,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1288,'Brookings','46011',25,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1289,'Aurora','46003',25,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1290,'Miller','29131',40,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1291,'Green Lake','55047',13,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1292,'Delta','08029',45,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1293,'Scott','18143',2,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1294,'Neosho','20133',18,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1295,'Tunica','28143',10,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1296,'Lander','32015',51,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1297,'Travis','48453',16,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1298,'Mahoning','39099',24,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1299,'Wythe','51197',4,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1300,'Refugio','48391',16,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1301,'Autauga','01001',8,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1302,'Sampson','37163',22,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1303,'Callaway','29027',40,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1304,'Jackson','17077',17,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1305,'Douglas','29067',40,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1306,'Noble','39121',24,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1307,'Livingston','29117',40,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1308,'Carroll','28015',10,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1309,'Ellis','48139',16,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1310,'Osage','40113',36,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1311,'Middlesex','34023',23,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1312,'Greene','28041',10,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1313,'Miami-Dade','12086',50,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1314,'Jefferson','13163',6,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1315,'Clay','27027',42,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1316,'Essex','50009',31,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1317,'Shoshone','16079',21,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1318,'Payne','40119',36,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1319,'Iberia','22045',9,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1320,'Clinton','42035',7,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1321,'Benton','05007',14,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1322,'Pottawattamie','19155',28,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1323,'Lawrence','18093',2,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1324,'Murray','27101',42,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1325,'Eagle','08037',45,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1326,'Hartford','09003',29,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1327,'Norfolk','25021',30,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1328,'Franklin','23007',12,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1329,'Powell','30077',34,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1330,'Dare','37055',22,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1331,'Livingston','36051',35,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1332,'Bon Homme','46009',25,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1333,'Highlands','12055',50,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1334,'Pueblo','08101',45,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1335,'McCracken','21145',5,NULL,'2016-04-25 11:22:47','2016-04-25 11:22:47'),(1336,'Jefferson','22051',9,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1337,'Clay','29047',40,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1338,'Dekalb','13089',6,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1339,'Rio Blanco','08103',45,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1340,'Atkinson','13003',6,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1341,'Breckinridge','21027',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1342,'Marshall','20117',18,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1343,'Kearney','31099',27,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1344,'McLennan','48309',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1345,'Sanpete','49039',32,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1346,'Henry','51089',4,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1347,'Pitt','37147',22,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1348,'Currituck','37053',22,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1349,'Bond','17005',17,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1350,'King William','51101',4,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1351,'Palo Alto','19147',28,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1352,'Douglas','41019',39,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1353,'Henrico','51087',4,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1354,'San Juan','35045',15,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1355,'Tensas','22107',9,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1356,'Glacier','30035',34,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1357,'Mineral','32021',51,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1358,'Navajo','04017',48,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1359,'Dauphin','42043',7,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1360,'Saratoga','36091',35,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1361,'Muskogee','40101',36,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1362,'Mitchell','13205',6,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1363,'Pike','28113',10,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1364,'Bath','51017',4,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1365,'Huron','26063',37,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1366,'Mellette','46095',25,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1367,'Schuyler','17169',17,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1368,'Fairbanks North Star','02090',43,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1369,'Webster','19187',28,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1370,'Cherokee','20021',18,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1371,'Santa Rosa','12113',50,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1372,'Shelby','21211',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1373,'Carbon','56007',38,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1374,'Grant','55043',13,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1375,'Durham','37063',22,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1376,'Pettis','29159',40,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1377,'Muskegon','26121',37,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1378,'Lauderdale','28075',10,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1379,'Nash','37127',22,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1380,'Buffalo','46017',25,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1381,'Fannin','48147',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1382,'Cumberland','23005',12,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1383,'Door','55029',13,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1384,'Nemaha','20131',18,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1385,'Falls','48145',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1386,'Putnam','18133',2,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1387,'Cecil','24015',19,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1388,'Roosevelt','30085',34,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1389,'Sunflower','28133',10,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1390,'Callahan','48059',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1391,'Wood','39173',24,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1392,'Sullivan','29211',40,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1393,'Sweetwater','56037',38,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1394,'Mingo','54059',33,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1395,'Okaloosa','12091',50,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1396,'Lemhi','16059',21,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1397,'La Salle','17099',17,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1398,'East Baton Rouge','22033',9,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1399,'Fallon','30025',34,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1400,'Benson','38005',20,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1401,'White Pine','32033',51,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1402,'Beaver','40007',36,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1403,'Baker','41001',39,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1404,'Hardy','54031',33,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1405,'Barbour','01005',8,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1406,'Ozark','29153',40,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1407,'Litchfield','09005',29,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1408,'Mitchell','37121',22,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1409,'Coshocton','39031',24,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1410,'Cumberland','21057',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1411,'Jefferson','54037',33,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1412,'Jefferson','17081',17,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1413,'Custer','46033',25,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1414,'Fleming','21069',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1415,'Washington','05143',14,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1416,'Banks','13011',6,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1417,'Randolph','17157',17,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1418,'Douglas','20045',18,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1419,'Lake','26085',37,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1420,'Harrison','48203',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1421,'Gilmer','54021',33,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1422,'Cherokee','13057',6,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1423,'Santa Barbara','06083',1,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1424,'Monroe','54063',33,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1425,'Oldham','21185',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1426,'Summers','54089',33,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1427,'Runnels','48399',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1428,'Will','17197',17,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1429,'Reeves','48389',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1430,'Jackson','37099',22,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1431,'Transylvania','37175',22,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1432,'Pierce','38069',20,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1433,'New London','09011',29,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1434,'Tuscarawas','39157',24,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1435,'Minnehaha','46099',25,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1436,'Bamberg','45009',11,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1437,'Caribou','16029',21,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1438,'Shiawassee','26155',37,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1439,'Cuming','31039',27,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1440,'Putnam','54079',33,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1441,'Ballard','21007',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1442,'Los Alamos','35028',15,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1443,'Bandera','48019',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1444,'Perry','18123',2,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1445,'Jefferson','47089',44,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1446,'Butte','06007',1,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1447,'Van Buren','26159',37,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1448,'La Crosse','55063',13,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1449,'Brown','48049',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1450,'Kane','17089',17,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1451,'Pike','01109',8,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1452,'Bradley','05011',14,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1453,'Boise','16015',21,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1454,'Caldwell','22021',9,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1455,'Fayette','01057',8,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1456,'Calhoun','28013',10,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1457,'Sauk','55111',13,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1458,'Richardson','31147',27,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1459,'Baraga','26013',37,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1460,'Chippewa','26033',37,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1461,'Orange','51137',4,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1462,'Cabell','54011',33,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1463,'Broome','36007',35,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1464,'Barceloneta','72017',3,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1465,'Queen Annes','24035',19,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1466,'Imperial','06025',1,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1467,'Quay','35037',15,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1468,'Nelson','21179',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1469,'Brevard','12009',50,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1470,'Massac','17127',17,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1471,'New Kent','51127',4,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1472,'Knox','29103',40,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1473,'Iredell','37097',22,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1474,'Delta','26041',37,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1475,'Hampton','45049',11,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1476,'Bowie','48037',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1477,'Edwards','48137',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1478,'Sebastian','05131',14,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1479,'Foster','38031',20,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1480,'Washington','39167',24,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1481,'Clackamas','41005',39,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1482,'Lincoln','20105',18,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1483,'Nodaway','29147',40,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1484,'Ocean','34029',23,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1485,'Schoharie','36095',35,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1486,'Washington','20201',18,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1487,'Douglas','55031',13,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1488,'Mahaska','19123',28,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1489,'Lewis','36049',35,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1490,'Lamar','13171',6,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1491,'Bourbon','20011',18,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1492,'Robeson','37155',22,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1493,'Caledonia','50005',31,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1494,'Warren','13301',6,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1495,'Morgan','29141',40,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1496,'Russell','51167',4,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1497,'Dewitt','17039',17,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1498,'Johnson','21115',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1499,'Walker','01127',8,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1500,'Faulkner','05045',14,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1501,'Brooks','13027',6,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1502,'Irion','48235',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1503,'Barnstable','25001',30,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1504,'Carlton','27017',42,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1505,'Barnwell','45011',11,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1506,'Berrien','26021',37,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1507,'Macoupin','17117',17,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1508,'Daviess','18027',2,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1509,'Lexington','45063',11,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1510,'Marion','54049',33,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1511,'Alleghany','37005',22,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1512,'Wayne','21231',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1513,'Cabarrus','37025',22,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1514,'Strafford','33017',41,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1515,'Bristol','44001',46,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1516,'Adams','18001',2,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1517,'Big Stone','27011',42,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1518,'Navarro','48349',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1519,'Mecosta','26107',37,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1520,'Sullivan','36105',35,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1521,'Calvert','24009',19,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1522,'Ward','48475',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1523,'Pearl River','28109',10,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1524,'Washington','40147',36,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1525,'Fremont','19071',28,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1526,'Wheeler','31183',27,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1527,'Red Willow','31145',27,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1528,'Phillips','05107',14,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1529,'Prowers','08099',45,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1530,'Allegany','24001',19,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1531,'Alcona','26001',37,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1532,'Leavenworth','20103',18,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1533,'Evangeline','22039',9,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1534,'Jefferson','30043',34,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1535,'Big Horn','56003',38,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1536,'Franklin','53021',26,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1537,'Okeechobee','12093',50,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1538,'Mecklenburg','51117',4,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1539,'Henderson','21101',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1540,'Franklin','22041',9,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1541,'Somerset','34035',23,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1542,'Newton','05101',14,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1543,'Starke','18149',2,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1544,'Allen','20001',18,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1545,'Rock','31149',27,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1546,'Kenosha','55059',13,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1547,'Jefferson Davis','28065',10,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1548,'Bland','51021',4,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1549,'Morehouse','22067',9,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1550,'Bastrop','48021',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1551,'Henderson','37089',22,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1552,'Pointe Coupee','22077',9,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1553,'Calhoun','17013',17,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1554,'Chippewa','55017',13,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1555,'Teton','16081',21,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1556,'Grant','41023',39,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1557,'Shannon','46113',25,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1558,'Independence','05063',14,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1559,'Ripley','18137',2,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1560,'Greenville','45045',11,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1561,'Zavala','48507',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1562,'Albemarle','51003',4,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1563,'Mason','17125',17,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1564,'Clinton','26037',37,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1565,'Decatur','47039',44,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1566,'Caldwell','37027',22,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1567,'Hardin','48199',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1568,'Geneva','01061',8,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1569,'Isle of Wight','51093',4,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1570,'McCurtain','40089',36,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1571,'Madison','31119',27,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1572,'Tippecanoe','18157',2,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1573,'Edgecombe','37065',22,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1574,'Meade','21163',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1575,'Burke','38013',20,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1576,'Pulaski','05119',14,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1577,'Tooele','49045',32,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1578,'Pawnee','40117',36,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1579,'Mathews','51115',4,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1580,'Ouachita','22073',9,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1581,'Appling','13001',6,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1582,'Crow Wing','27035',42,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1583,'Lamar','28073',10,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1584,'Craighead','05031',14,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1585,'Cochise','04003',48,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1586,'Pacific','53049',26,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1587,'Tillamook','41057',39,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1588,'Matagorda','48321',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1589,'Pierce','55093',13,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1590,'Lincoln','55069',13,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1591,'Baldwin','01003',8,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1592,'Pinellas','12103',50,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1593,'Charlevoix','26029',37,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1594,'Jasper','28061',10,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1595,'Erie','39043',24,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1596,'Milwaukee','55079',13,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1597,'Cuyahoga','39035',24,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1598,'Northampton','51131',4,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1599,'Iberville','22047',9,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1600,'Long','13183',6,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1601,'Union','34039',23,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1602,'Trumbull','39155',24,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1603,'Gurabo','72063',3,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1604,'San Sebastian','72131',3,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1605,'Vega Alta','72143',3,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1606,'Juncos','72077',3,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1607,'Guayanilla','72059',3,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1608,'Lajas','72079',3,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1609,'Corozal','72047',3,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1610,'Golden Valley','38033',20,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1611,'Montgomery','48339',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1612,'Ringgold','19159',28,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1613,'Muscogee','13215',6,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1614,'Grundy','19075',28,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1615,'Grainger','47057',44,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1616,'Garland','05051',14,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1617,'Adams','16003',21,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1618,'Marion','01093',8,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1619,'Chatham','37037',22,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1620,'Warren','42123',7,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1621,'Uinta','56041',38,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1622,'Box Elder','49003',32,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1623,'Ouachita','05103',14,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1624,'Okfuskee','40107',36,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1625,'Hutchinson','46067',25,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1626,'Martin','37117',22,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1627,'Fort Bend','48157',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1628,'Monroe','01099',8,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1629,'Klamath','41035',39,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1630,'Lee','21129',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1631,'Franklin','29071',40,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1632,'Beaufort','45013',11,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1633,'Mahnomen','27087',42,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1634,'Metcalfe','21169',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1635,'Perry','28111',10,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1636,'Goochland','51075',4,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1637,'Martin','21159',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1638,'Carroll','05015',14,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1639,'Boone','19015',28,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1640,'Allen','22003',9,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1641,'Pike','39131',24,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1642,'Lake','27075',42,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1643,'Rock','27133',42,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1644,'Montgomery','39113',24,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1645,'Seward','31159',27,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1646,'Mohave','04015',48,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1647,'Ohio','21183',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1648,'Sullivan','42113',7,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1649,'Des Moines','19057',28,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1650,'Allen','39003',24,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1651,'Boone','21015',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1652,'Lamar','01075',8,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1653,'Gladwin','26051',37,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1654,'Gonzales','48177',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1655,'Sherburne','27141',42,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1656,'Chester','45023',11,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1657,'Holmes','39075',24,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1658,'Panola','48365',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1659,'Trimble','21223',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1660,'Bedford City','51515',4,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1661,'Montrose','08085',45,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1662,'Dickenson','51051',4,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1663,'Edmonson','21061',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1664,'Marion','19125',28,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1665,'Madison','47113',44,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1666,'Brooke','54009',33,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1667,'Ashley','05003',14,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1668,'Muhlenberg','21177',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1669,'Greene','05055',14,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1670,'McLean','21149',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1671,'Jasper','48241',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1672,'Holmes','28051',10,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1673,'Bee','48025',16,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1674,'Okmulgee','40111',36,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1675,'Charles','24017',19,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1676,'Marin','06041',1,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1677,'Plaquemines','22075',9,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1678,'Caddo','22017',9,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1679,'Mountrail','38061',20,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1680,'Cedar','31027',27,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1681,'Ionia','26067',37,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1682,'Quitman','28119',10,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1683,'Waldo','23027',12,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1684,'Marshall','47117',44,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1685,'Stark','38089',20,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1686,'Ozaukee','55089',13,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1687,'Washington','29221',40,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1688,'Nance','31125',27,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1689,'Barbour','54001',33,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1690,'Davis','19051',28,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1691,'Johnson','17087',17,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1692,'Gilchrist','12041',50,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1693,'Bedford','47003',44,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1694,'Crawford','55023',13,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1695,'Graves','21083',5,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1696,'Calcasieu','22019',9,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1697,'Marshall','17123',17,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1698,'Sumter','01119',8,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1699,'Goodhue','27049',42,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1700,'Maries','29125',40,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1701,'Logan','39091',24,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1702,'Fairfield','09001',29,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1703,'Scott','27139',42,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1704,'St John the Baptist','22095',9,NULL,'2016-04-25 11:22:48','2016-04-25 11:22:48'),(1705,'Fillmore','31059',27,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1706,'Hamilton','17065',17,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1707,'Assumption','22007',9,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1708,'Webster','28155',10,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1709,'Coconino','04005',48,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1710,'Yell','05149',14,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1711,'Dane','55025',13,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1712,'Wood','54107',33,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1713,'Blaine','16013',21,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1714,'Eaton','26045',37,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1715,'Sarpy','31153',27,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1716,'Huron','39077',24,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1717,'Clay','48077',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1718,'Humphreys','28053',10,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1719,'Jasper','45053',11,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1720,'Lac Qui Parle','27073',42,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1721,'Yates','36123',35,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1722,'Windham','50025',31,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1723,'Grayson','48181',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1724,'Escambia','12033',50,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1725,'Curry','35009',15,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1726,'Austin','48015',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1727,'Evans','13109',6,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1728,'Larimer','08069',45,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1729,'Wright','19197',28,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1730,'Kingman','20095',18,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1731,'Sabine','22085',9,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1732,'Tishomingo','28141',10,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1733,'Golden Valley','30037',34,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1734,'Rutland','50021',31,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1735,'Pleasants','54073',33,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1736,'Putnam','39137',24,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1737,'Mitchell','20123',18,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1738,'Edwards','20047',18,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1739,'Lake','18089',2,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1740,'Polk','27119',42,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1741,'Nicholas','54067',33,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1742,'Pratt','20151',18,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1743,'Perquimans','37143',22,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1744,'Jackson','46071',25,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1745,'Franklin','47051',44,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1746,'Lamoille','50015',31,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1747,'Redwood','27127',42,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1748,'Pottawatomie','20149',18,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1749,'Cleveland','37045',22,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1750,'Gasconade','29073',40,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1751,'Piatt','17147',17,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1752,'Lowndes','13185',6,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1753,'Milam','48331',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1754,'Delta','48119',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1755,'Lee','51105',4,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1756,'Sevier','05133',14,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1757,'Van Zandt','48467',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1758,'Duval','48131',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1759,'Judith Basin','30045',34,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1760,'Deschutes','41017',39,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1761,'Doniphan','20043',18,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1762,'McLean','38055',20,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1763,'York','31185',27,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1764,'Elk','42047',7,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1765,'Adams','53001',26,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1766,'Knox','48275',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1767,'Dundy','31057',27,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1768,'Cedar','19031',28,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1769,'Ripley','29181',40,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1770,'Lea','35025',15,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1771,'Salem','51775',4,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1772,'Marlboro','45069',11,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1773,'Bear Lake','16007',21,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1774,'Switzerland','18155',2,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1775,'Douglas','31055',27,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1776,'Woodford','17203',17,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1777,'Saint Lawrence','36089',35,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1778,'Roanoke','51161',4,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1779,'Grant','38037',20,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1780,'Lowndes','01085',8,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1781,'Mono','06051',1,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1782,'Yazoo','28163',10,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1783,'Polk','47139',44,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1784,'Audrain','29007',40,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1785,'Benton','53005',26,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1786,'Van Buren','19177',28,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1787,'Warren','51187',4,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1788,'Otero','08089',45,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1789,'Yalobusha','28161',10,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1790,'Marshall','54051',33,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1791,'Benzie','26019',37,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1792,'Eureka','32011',51,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1793,'Leflore','28083',10,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1794,'Madison','21151',5,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1795,'Marion','48315',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1796,'Kendall','48259',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1797,'Ontonagon','26131',37,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1798,'Webster','54101',33,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1799,'Rockingham','51165',4,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1800,'Morgan','54065',33,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1801,'Lucas','39095',24,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1802,'Colquitt','13071',6,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1803,'Worcester','24047',19,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1804,'Coos','33007',41,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1805,'San Miguel','35047',15,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1806,'Monona','19133',28,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1807,'Dodge','27039',42,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1808,'Union','22111',9,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1809,'Harrison','21097',5,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1810,'Crawford','29055',40,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1811,'Richland','17159',17,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1812,'Anderson','48001',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1813,'Clarke','51043',4,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1814,'Todd','27153',42,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1815,'Burnet','48053',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1816,'Warren','17187',17,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1817,'Iron','49021',32,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1818,'Gogebic','26053',37,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1819,'Lawrence','42073',7,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1820,'Washita','40149',36,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1821,'Reagan','48383',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1822,'Magoffin','21153',5,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1823,'Wolfe','21237',5,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1824,'Harrison','29081',40,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1825,'Butler','39017',24,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1826,'Sussex','10005',52,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1827,'Bath','21011',5,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1828,'Shelby','29205',40,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1829,'Casey','21045',5,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1830,'Lucas','19117',28,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1831,'Clark','18019',2,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1832,'Henry','21103',5,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1833,'Caroline','24011',19,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1834,'Marshall','28093',10,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1835,'Catawba','37035',22,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1836,'Ohio','54069',33,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1837,'Sumner','47165',44,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1838,'Kit Carson','08063',45,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1839,'Scott','19163',28,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1840,'Kent','24029',19,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1841,'Davison','46035',25,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1842,'Hopkins','21107',5,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1843,'Phelps','29161',40,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1844,'Mercer','38057',20,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1845,'Saline','17165',17,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1846,'McCreary','21147',5,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1847,'Burlington','34005',23,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1848,'Randolph','54083',33,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1849,'Citrus','12017',50,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1850,'Porter','18127',2,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1851,'Madison','19121',28,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1852,'Fulton','05049',14,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1853,'Hennepin','27053',42,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1854,'Clay','17025',17,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1855,'Clay','54015',33,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1856,'Knox','18083',2,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1857,'Wayne','49055',32,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1858,'Powder River','30075',34,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1859,'Lassen','06035',1,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1860,'Perry','29157',40,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1861,'Trinity','06105',1,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1862,'Waukesha','55133',13,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1863,'Stanton','20187',18,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1864,'Craig','40035',36,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1865,'Pickens','13227',6,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1866,'Grayson','21085',5,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1867,'Clay','21051',5,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1868,'Waupaca','55135',13,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1869,'Baxter','05005',14,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1870,'Chemung','36015',35,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1871,'Bedford','51019',4,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1872,'Matanuska Susitna','02170',43,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1873,'Stone','28131',10,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1874,'Herkimer','36043',35,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1875,'Tuolumne','06109',1,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1876,'Monroe','12087',50,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1877,'Sublette','56035',38,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1878,'Washington','24043',19,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1879,'Stewart','47161',44,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1880,'Buchanan','51027',4,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1881,'Chouteau','30015',34,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1882,'Benton','47005',44,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1883,'Cumberland','17035',17,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1884,'Hardin','21093',5,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1885,'Howard','48227',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1886,'Deuel','31049',27,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1887,'Sweet Grass','30097',34,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1888,'Noxubee','28103',10,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1889,'Newberry','45071',11,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1890,'Holt','29087',40,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1891,'Frio','48163',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1892,'Randolph','05121',14,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1893,'Alcorn','28003',10,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1894,'Sherman','41055',39,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1895,'Henderson','17071',17,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1896,'Treasure','30103',34,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1897,'Lincoln','31111',27,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1898,'Jackson','28059',10,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1899,'Brule','46015',25,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1900,'Converse','56009',38,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1901,'Christian','29043',40,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1902,'Noble','40103',36,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1903,'Union','18161',2,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1904,'Cooper','29053',40,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1905,'Haakon','46055',25,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1906,'Griggs','38039',20,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1907,'Cottonwood','27033',42,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1908,'Chittenden','50007',31,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1909,'Saginaw','26145',37,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1910,'Washburn','55129',13,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1911,'Cheyenne','20023',18,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1912,'Renville','27129',42,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1913,'Cross','05037',14,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1914,'Dubois','18037',2,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1915,'Jenkins','13165',6,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1916,'Columbia','41009',39,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1917,'Shawano','55115',13,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1918,'Prairie','05117',14,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1919,'Montgomery','37123',22,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1920,'Oconee','13219',6,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1921,'Dorchester','24019',19,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1922,'Hot Spring','05059',14,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1923,'Saint Francois','29187',40,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1924,'Garfield','40047',36,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1925,'Newaygo','26123',37,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1926,'Cumberland','34011',23,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1927,'Steele','27147',42,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1928,'Clay','31035',27,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1929,'Tulsa','40143',36,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1930,'Reynolds','29179',40,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1931,'Parmer','48369',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1932,'Bryan','13029',6,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1933,'Wilson','37195',22,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1934,'McKinley','35031',15,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1935,'Letcher','21133',5,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1936,'Saint Francis','05123',14,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1937,'Webster','21233',5,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1938,'Black Hawk','19013',28,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1939,'Cherokee','45021',11,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1940,'Pierce','13229',6,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1941,'Nottoway','51135',4,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1942,'Monongalia','54061',33,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1943,'Kay','40071',36,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1944,'Nolan','48353',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1945,'La Salle','22059',9,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1946,'Webster','31181',27,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1947,'Bladen','37017',22,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1948,'Knox','39083',24,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1949,'Choctaw','01023',8,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1950,'Fairfield','45039',11,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1951,'Pittsylvania','51143',4,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1952,'Morgan','21175',5,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1953,'Hamilton','19079',28,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1954,'Henry','29083',40,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1955,'Union','13291',6,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1956,'Posey','18129',2,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1957,'Medina','39103',24,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1958,'Early','13099',6,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1959,'Costilla','08023',45,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1960,'Caswell','37033',22,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1961,'Page','19145',28,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1962,'Bonner','16017',21,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1963,'Isabella','26073',37,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1964,'Traill','38097',20,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1965,'McClain','40087',36,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1966,'Clinton','39027',24,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1967,'Blanco','48031',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1968,'San Augustine','48405',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1969,'Schoolcraft','26153',37,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1970,'Cochran','48079',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1971,'Fulton','36035',35,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1972,'Hempstead','05057',14,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1973,'Gooding','16047',21,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1974,'Camp','48063',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1975,'Cortland','36023',35,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1976,'Vernon','55123',13,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1977,'Greene','18055',2,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1978,'Dawson','30021',34,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1979,'Knox','31107',27,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1980,'Ontario','36069',35,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1981,'Beadle','46005',25,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1982,'Crawford','39033',24,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1983,'Fayette','39047',24,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1984,'Chatham','13051',6,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1985,'Essex','36031',35,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1986,'Sullivan','47163',44,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1987,'Monroe','18105',2,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1988,'Victoria','48469',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1989,'Sainte Genevieve','29186',40,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1990,'Greenlee','04011',48,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1991,'Lee','48287',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1992,'Warren','39165',24,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1993,'Faribault','27043',42,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1994,'Stone','29209',40,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1995,'Highland','51091',4,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1996,'Linn','20107',18,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1997,'Logan','05083',14,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1998,'Moffat','08081',45,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(1999,'Fannin','13111',6,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2000,'Botetourt','51023',4,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2001,'Saline','31151',27,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2002,'Trigg','21221',5,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2003,'Jackson','29095',40,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2004,'Madison','37115',22,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2005,'Nevada','05099',14,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2006,'Erath','48143',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2007,'Clay','13061',6,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2008,'Winneshiek','19191',28,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2009,'Wells','18179',2,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2010,'Llano','48299',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2011,'Dorado','72051',3,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2012,'Cidra','72041',3,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2013,'Naguabo','72103',3,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2014,'Maunabo','72095',3,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2015,'Salinas','72123',3,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2016,'Catano','72033',3,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2017,'Hormigueros','72067',3,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2018,'Coamo','72043',3,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2019,'Morrow','41049',39,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2020,'Mille Lacs','27095',42,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2021,'Humboldt','19091',28,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2022,'Avoyelles','22009',9,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2023,'New Madrid','29143',40,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2024,'Howard','31093',27,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2025,'Carroll','29033',40,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2026,'Lincoln','37109',22,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2027,'Shelby','18145',2,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2028,'Jasper','17079',17,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2029,'Dyer','47045',44,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2030,'Graham','20065',18,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2031,'Mackinac','26097',37,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2032,'Ada','16001',21,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2033,'Cimarron','40025',36,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2034,'Worth','19195',28,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2035,'Orangeburg','45075',11,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2036,'Monroe','21171',5,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2037,'Greene','01063',8,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2038,'Wharton','48481',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2039,'Monroe','13207',6,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2040,'Hardeman','47069',44,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2041,'Butler','01013',8,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2042,'District of Columbia','11001',53,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2043,'Hinds','28049',10,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2044,'Sumter','45085',11,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2045,'Newton','48351',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2046,'Howard','19089',28,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2047,'Houston','13153',6,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2048,'Custer','16037',21,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2049,'Uintah','49047',32,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2050,'Saguache','08109',45,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2051,'Broward','12011',50,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2052,'McIntosh','40091',36,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2053,'Champaign','17019',17,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2054,'Mercer','21167',5,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2055,'Warren','47177',44,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2056,'Gregory','46053',25,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2057,'McDuffie','13189',6,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2058,'Holmes','12059',50,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2059,'Missoula','30063',34,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2060,'Wyandotte','20209',18,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2061,'Boundary','16021',21,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2062,'Cumberland','37051',22,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2063,'Hart','21099',5,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2064,'Ottawa','39123',24,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2065,'Roanoke City','51770',4,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2066,'Lipscomb','48295',16,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2067,'Wexford','26165',37,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2068,'Franklin','51067',4,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2069,'Owsley','21189',5,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2070,'Morris','34027',23,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2071,'Warrick','18173',2,NULL,'2016-04-25 11:22:49','2016-04-25 11:22:49'),(2072,'McCormick','45065',11,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2073,'Platte','56031',38,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2074,'Southeast Fairbanks','02240',43,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2075,'Hutchinson','48233',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2076,'Dent','29065',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2077,'Thomas','13275',6,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2078,'Thurston','53067',26,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2079,'Putnam','12107',50,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2080,'Morgan','13211',6,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2081,'Nuckolls','31129',27,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2082,'Izard','05065',14,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2083,'Choctaw','40023',36,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2084,'Humboldt','32013',51,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2085,'Madison','36053',35,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2086,'Kendall','17093',17,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2087,'Vilas','55125',13,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2088,'La Paz','04012',48,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2089,'Latah','16057',21,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2090,'Tucker','54093',33,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2091,'Edmunds','46045',25,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2092,'Carroll','13045',6,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2093,'Wells','38103',20,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2094,'Powell','21197',5,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2095,'Harrison','39067',24,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2096,'Hart','13147',6,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2097,'Montague','48337',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2098,'Seminole','40133',36,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2099,'Hardee','12049',50,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2100,'Shelby','17173',17,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2101,'York','45091',11,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2102,'Caroline','51033',4,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2103,'Morrison','27097',42,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2104,'Elbert','13105',6,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2105,'Bowman','38011',20,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2106,'Hill','30041',34,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2107,'Pennington','46103',25,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2108,'Talbot','13263',6,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2109,'Union','21225',5,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2110,'Ferry','53019',26,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2111,'Southampton','51175',4,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2112,'Clinton','18023',2,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2113,'Dallas','01047',8,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2114,'Talbot','24041',19,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2115,'Grundy','17063',17,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2116,'Grant','21081',5,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2117,'Comal','48091',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2118,'Kinney','48271',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2119,'Susquehanna','42115',7,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2120,'Emmons','38029',20,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2121,'Fayette','47047',44,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2122,'Stark','17175',17,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2123,'Harrison','18061',2,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2124,'Miami','39109',24,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2125,'McKean','42083',7,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2126,'Gibson','47053',44,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2127,'Orange','50017',31,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2128,'Marion','21155',5,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2129,'Lafayette','05073',14,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2130,'Greenwood','45047',11,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2131,'Clark','46025',25,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2132,'Taney','29213',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2133,'Pondera','30073',34,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2134,'McCulloch','48307',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2135,'Pemiscot','29155',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2136,'Isanti','27059',42,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2137,'Sargent','38081',20,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2138,'Acadia','22001',9,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2139,'Mason','26105',37,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2140,'Camden','29029',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2141,'Ventura','06111',1,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2142,'Rankin','28121',10,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2143,'Perkins','31135',27,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2144,'Fond du Lac','55039',13,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2145,'Howell','29091',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2146,'Pendleton','54071',33,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2147,'Suwannee','12121',50,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2148,'Eddy','38027',20,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2149,'Crenshaw','01041',8,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2150,'Price','55099',13,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2151,'Jackson','13157',6,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2152,'Hopkins','48223',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2153,'Clay','37043',22,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2154,'Simpson','28127',10,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2155,'Caldwell','29025',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2156,'Greeley','31077',27,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2157,'Appanoose','19007',28,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2158,'Cole','29051',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2159,'Bosque','48035',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2160,'Saint Martin','22099',9,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2161,'Summit','08117',45,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2162,'Wilkin','27167',42,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2163,'Stephens','48429',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2164,'Adair','21001',5,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2165,'Sioux','38085',20,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2166,'Haralson','13143',6,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2167,'Fluvanna','51065',4,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2168,'Washington','48477',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2169,'Bibb','01007',8,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2170,'Lavaca','48285',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2171,'Nome','02180',43,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2172,'Cleburne','05023',14,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2173,'Fremont','08043',45,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2174,'Thomas','20193',18,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2175,'Blaine','31009',27,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2176,'Multnomah','41051',39,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2177,'Orange','48361',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2178,'Jackson','01071',8,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2179,'Douglas','53017',26,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2180,'Craven','37049',22,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2181,'Burke','37023',22,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2182,'McCook','46087',25,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2183,'Marquette','55077',13,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2184,'Livingston','26093',37,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2185,'Nacogdoches','48347',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2186,'Calumet','55015',13,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2187,'Carroll','18015',2,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2188,'Canovanas','72029',3,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2189,'Morovis','72101',3,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2190,'Liberty','12077',50,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2191,'Elkhart','18039',2,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2192,'Bristol','51520',4,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2193,'Boyd','31015',27,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2194,'Creek','40037',36,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2195,'Prince William','51153',4,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2196,'Hancock','19081',28,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2197,'Ascension','22005',9,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2198,'Marion','45067',11,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2199,'Lee','37105',22,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2200,'Union','39159',24,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2201,'Ramsey','38071',20,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2202,'McCone','30055',34,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2203,'Edgar','17045',17,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2204,'Yolo','06113',1,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2205,'Rockcastle','21203',5,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2206,'Wirt','54105',33,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2207,'Johnston','40069',36,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2208,'Vernon','29217',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2209,'Levy','12075',50,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2210,'Branch','26023',37,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2211,'Sabine','48403',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2212,'Coke','48081',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2213,'Terrell','13273',6,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2214,'Newton','18111',2,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2215,'Stokes','37169',22,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2216,'Stafford','51179',4,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2217,'Bradford','12007',50,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2218,'Tift','13277',6,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2219,'Linn','29115',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2220,'Conecuh','01035',8,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2221,'Poweshiek','19157',28,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2222,'Morgan','18109',2,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2223,'Jackson','26075',37,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2224,'Kings','36047',35,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2225,'Fayette','13113',6,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2226,'Adams','19003',28,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2227,'Bullitt','21029',5,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2228,'Red Lake','27125',42,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2229,'Waller','48473',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2230,'White','18181',2,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2231,'Hernando','12053',50,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2232,'Tompkins','36109',35,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2233,'Hancock','18059',2,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2234,'Broomfield','08014',45,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2235,'Butler','29023',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2236,'Lafayette','22055',9,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2237,'Pope','17151',17,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2238,'Terry','48445',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2239,'Pendleton','21191',5,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2240,'Thomas','31171',27,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2241,'Traverse','27155',42,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2242,'Rockbridge','51163',4,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2243,'Cheyenne','31033',27,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2244,'Jackson','18071',2,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2245,'White','17193',17,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2246,'Houston','27055',42,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2247,'Haywood','47075',44,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2248,'McLeod','27085',42,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2249,'Rusk','55107',13,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2250,'Frederick','51069',4,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2251,'Elliott','21063',5,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2252,'King and Queen','51097',4,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2253,'Keith','31101',27,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2254,'Owyhee','16073',21,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2255,'Kanabec','27065',42,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2256,'Chariton','29041',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2257,'Antelope','31003',27,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2258,'Garfield','30033',34,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2259,'Morgan','08087',45,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2260,'Grant','05053',14,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2261,'Smith','47159',44,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2262,'Russell','21207',5,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2263,'Morris','48343',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2264,'Garrard','21079',5,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2265,'Peach','13225',6,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2266,'Jack','48237',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2267,'Henry','47079',44,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2268,'Wayne','28153',10,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2269,'Orange','37135',22,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2270,'Tama','19171',28,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2271,'Auglaize','39011',24,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2272,'Ford','20057',18,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2273,'Gibson','18051',2,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2274,'Sullivan','18153',2,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2275,'Miami','20121',18,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2276,'Texas','29215',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2277,'Adams','38001',20,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2278,'Hays','48209',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2279,'Franklin','28037',10,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2280,'Osceola','12097',50,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2281,'Marion','13197',6,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2282,'Buena Vista City','51530',4,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2283,'Larue','21123',5,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2284,'Dallas','29059',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2285,'Fergus','30027',34,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2286,'Guernsey','39059',24,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2287,'Harper','40059',36,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2288,'Union','45087',11,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2289,'Harding','46063',25,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2290,'Leon','48289',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2291,'Johnson','56019',38,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2292,'Winnebago','19189',28,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2293,'Spencer','18147',2,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2294,'Gwinnett','13135',6,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2295,'Mitchell','48335',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2296,'Twin Falls','16083',21,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2297,'Bailey','48017',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2298,'Marion','05089',14,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2299,'Corson','46031',25,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2300,'Granville','37077',22,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2301,'Hawkins','47073',44,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2302,'Louisa','51109',4,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2303,'Adair','40001',36,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2304,'Russell','20167',18,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2305,'Berkeley','54003',33,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2306,'Franklin','37069',22,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2307,'Flagler','12035',50,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2308,'Clay','46027',25,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2309,'Walla Walla','53071',26,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2310,'Pawnee','31133',27,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2311,'Cerro Gordo','19033',28,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2312,'Pawnee','20145',18,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2313,'Morris','20127',18,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2314,'Northumberland','51133',4,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2315,'Sandusky','39143',24,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2316,'Wichita','48485',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2317,'Coleman','48083',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2318,'Mercer','39107',24,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2319,'Faulk','46049',25,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2320,'Monroe','17133',17,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2321,'Osage','20139',18,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2322,'Coffey','20031',18,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2323,'Otsego','36077',35,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2324,'Racine','55101',13,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2325,'Mineral','54057',33,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2326,'Lincoln','16063',21,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2327,'Livingston','21139',5,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2328,'Love','40085',36,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2329,'Macon','37113',22,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2330,'Smith','28129',10,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2331,'Harney','41025',39,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2332,'Dickson','47043',44,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2333,'Yancey','37199',22,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2334,'Braxton','54007',33,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2335,'Otoe','31131',27,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2336,'Jewell','20089',18,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2337,'Saint Joseph','26149',37,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2338,'Harvey','20079',18,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2339,'Morgan','47129',44,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2340,'Hettinger','38041',20,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2341,'Lewis','21135',5,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2342,'Garfield','31071',27,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2343,'Big Horn','30003',34,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2344,'Laurel','21125',5,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2345,'Pike','42103',7,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2346,'Sumter','12119',50,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2347,'Kimball','31105',27,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2348,'Rogers','40131',36,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2349,'Taylor','13269',6,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2350,'Johnson','47091',44,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2351,'Jennings','18079',2,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2352,'Silver Bow','30093',34,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2353,'Winnebago','55139',13,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2354,'Watonwan','27165',42,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2355,'Barry','29009',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2356,'Essex','51057',4,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2357,'Cocke','47029',44,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2358,'Graham','04009',48,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2359,'Teton','30099',34,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2360,'Pickett','47137',44,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2361,'Dooly','13093',6,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2362,'Olmsted','27109',42,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2363,'Ford','17053',17,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2364,'Champaign','39021',24,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2365,'Alexander','17003',17,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2366,'Comanche','40031',36,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2367,'Moore','48341',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2368,'Itawamba','28057',10,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2369,'Grenada','28043',10,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2370,'Montgomery','05097',14,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2371,'Hunt','48231',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2372,'Bent','08011',45,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2373,'Williamsburg','45089',11,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2374,'Henry','18065',2,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2375,'Laurens','13175',6,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2376,'Dolores','08033',45,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2377,'Grady','13131',6,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2378,'Louisa','19115',28,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2379,'Randolph','29175',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2380,'Columbiana','39029',24,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2381,'Mecklenburg','37119',22,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2382,'Burleson','48051',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2383,'Marion','39101',24,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2384,'Gordon','13129',6,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2385,'Moniteau','29135',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2386,'Union','05139',14,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2387,'Siskiyou','06093',1,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2388,'Clarion','42031',7,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2389,'McMullen','48311',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2390,'Webster','22119',9,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2391,'Cleveland','05025',14,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2392,'Canadian','40017',36,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2393,'Dewey','40043',36,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2394,'Kent','10001',52,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2395,'Ray','29177',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2396,'Madison','28089',10,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2397,'Camden','37029',22,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2398,'Preble','39135',24,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2399,'Platte','29165',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2400,'Cameron','22023',9,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2401,'Clinton','29049',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2402,'Calhoun','45017',11,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2403,'San Jacinto','48407',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2404,'Warren','29219',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2405,'Juneau','55057',13,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2406,'Onslow','37133',22,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2407,'Monroe','55081',13,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2408,'Kerr','48265',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2409,'Real','48385',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2410,'Campbell','46021',25,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2411,'Washington','18175',2,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2412,'Taylor','21217',5,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2413,'Atascosa','48013',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2414,'Baca','08009',45,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2415,'Camuy','72027',3,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2416,'Carroll','51035',4,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2417,'Searcy','05129',14,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2418,'Jefferson','18077',2,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2419,'Hemphill','48211',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2420,'Yellow Medicine','27173',42,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2421,'Seneca','36099',35,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2422,'Franklin','13119',6,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2423,'McPherson','20113',18,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2424,'Lewis','29111',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2425,'Blaine','40011',36,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2426,'Lincoln','46083',25,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2427,'Randall','48381',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2428,'New Hanover','37129',22,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2429,'Charlotte','12015',50,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2430,'Richmond City','51760',4,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2431,'Cedar','29039',40,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2432,'Hawaii','15001',49,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2433,'Mills','48333',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2434,'Eastland','48133',16,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2435,'Hocking','39073',24,NULL,'2016-04-25 11:22:50','2016-04-25 11:22:50'),(2436,'Carbon','49007',32,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2437,'Morrow','39117',24,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2438,'Childress','48075',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2439,'Iron','55051',13,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2440,'Nicholas','21181',5,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2441,'Claiborne','28021',10,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2442,'Tom Green','48451',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2443,'Madison','13195',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2444,'Mercer','42085',7,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2445,'Hamilton','48193',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2446,'Menominee','26109',37,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2447,'Mitchell','19131',28,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2448,'Wayne','31179',27,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2449,'Churchill','32001',51,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2450,'Carroll','21041',5,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2451,'Carroll','24013',19,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2452,'Skamania','53059',26,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2453,'Montcalm','26117',37,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2454,'Carson City','32510',51,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2455,'Beckham','40009',36,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2456,'Tripp','46123',25,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2457,'Florence','45041',11,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2458,'Cumberland','51049',4,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2459,'Dallas','05039',14,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2460,'Leake','28079',10,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2461,'Carver','27019',42,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2462,'Campbell','47013',44,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2463,'Wayne','29223',40,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2464,'Hood River','41027',39,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2465,'Kingfisher','40073',36,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2466,'Cass','26027',37,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2467,'Lares','72081',3,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2468,'Ceiba','72037',3,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2469,'Emery','49015',32,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2470,'Douglas','08035',45,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2471,'Rappahannock','51157',4,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2472,'Medina','48325',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2473,'Petroleum','30069',34,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2474,'Harris','13145',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2475,'Clark','39023',24,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2476,'Pickens','45077',11,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2477,'Mariposa','06043',1,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2478,'Wahkiakum','53069',26,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2479,'Manitowoc','55071',13,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2480,'Hardin','17069',17,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2481,'Josephine','41033',39,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2482,'Douglas','32005',51,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2483,'Fulton','21075',5,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2484,'Richland','55103',13,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2485,'Montgomery','01101',8,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2486,'Leelanau','26089',37,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2487,'Cherokee','01019',8,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2488,'Toombs','13279',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2489,'Webster','29225',40,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2490,'Chase','20017',18,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2491,'Chautauqua','20019',18,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2492,'Torrance','35057',15,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2493,'Stephenson','17177',17,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2494,'Cottle','48101',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2495,'Clay','47027',44,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2496,'Ralls','29173',40,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2497,'Oliver','38065',20,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2498,'Wasatch','49051',32,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2499,'Wyoming','42131',7,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2500,'Turner','46125',25,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2501,'Doddridge','54017',33,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2502,'Middlesex','09007',29,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2503,'Johnson','29101',40,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2504,'Leon','12073',50,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2505,'Anderson','20003',18,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2506,'Coal','40029',36,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2507,'Elmore','01051',8,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2508,'Angelina','48005',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2509,'Gilpin','08047',45,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2510,'Lawrence','46081',25,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2511,'Franklin','20059',18,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2512,'Wayne','54099',33,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2513,'Stanislaus','06099',1,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2514,'Rincon','72117',3,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2515,'Karnes','48255',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2516,'Martin','27091',42,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2517,'Dawes','31045',27,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2518,'Chase','31029',27,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2519,'Somerset','24039',19,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2520,'Dickinson','26043',37,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2521,'Hartley','48205',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2522,'Schuyler','29197',40,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2523,'Charles City','51036',4,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2524,'Bradley','47011',44,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2525,'Saint Thomas','78030',54,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2526,'Charlotte','51037',4,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2527,'Jackson','22049',9,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2528,'Murray','13213',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2529,'Gadsden','12039',50,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2530,'Dodge','13091',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2531,'Jersey','17083',17,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2532,'Jefferson','48245',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2533,'Taylor','55119',13,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2534,'Valdez Cordova','02261',43,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2535,'Marion','28091',10,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2536,'Chesterfield','45025',11,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2537,'Colbert','01033',8,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2538,'Oneida','16071',21,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2539,'Ziebach','46137',25,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2540,'Gilmer','13123',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2541,'Lawrence','39087',24,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2542,'Chesapeake City','51550',4,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2543,'Liberty','30051',34,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2544,'Meigs','39105',24,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2545,'Lake','46079',25,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2546,'Tyler','48457',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2547,'Hancock','54029',33,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2548,'Morgan','39115',24,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2549,'Coffee','01031',8,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2550,'Hall','13139',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2551,'Roger Mills','40129',36,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2552,'Dewey','46041',25,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2553,'Walker','13295',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2554,'West Carroll','22123',9,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2555,'Carter','29035',40,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2556,'Lake and Peninsula','02164',43,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2557,'Hardeman','48197',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2558,'Blaine','30005',34,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2559,'Washington','12133',50,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2560,'Saint Helena','22091',9,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2561,'Neshoba','28099',10,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2562,'Collier','12021',50,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2563,'Wagoner','40145',36,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2564,'Middlesex','51119',4,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2565,'Rutherford','47149',44,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2566,'Saint Croix','78010',54,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2567,'Suffolk City','51800',4,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2568,'Cleburne','01029',8,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2569,'Newton','28101',10,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2570,'Allamakee','19005',28,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2571,'Adams','28001',10,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2572,'Clayton','13063',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2573,'Greene','19073',28,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2574,'Ciales','72039',3,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2575,'Guadalupe','48187',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2576,'Gray','20069',18,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2577,'Jackson','20085',18,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2578,'Piute','49031',32,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2579,'Indian River','12061',50,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2580,'Scurry','48415',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2581,'Chilton','01021',8,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2582,'Chippewa','27023',42,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2583,'De Kalb','17037',17,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2584,'Clare','26035',37,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2585,'Surry','51181',4,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2586,'Donley','48129',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2587,'Forest','42053',7,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2588,'Routt','08107',45,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2589,'Park','56029',38,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2590,'Crittenden','05035',14,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2591,'Calhoun','48057',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2592,'Colfax','31037',27,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2593,'Johnson','05071',14,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2594,'Montgomery','47125',44,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2595,'Gregg','48183',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2596,'Armstrong','48011',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2597,'Marion','29127',40,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2598,'Clay','20027',18,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2599,'Freestone','48161',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2600,'Gila','04007',48,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2601,'Rabun','13241',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2602,'Clayton','19043',28,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2603,'Kittitas','53037',26,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2604,'Keokuk','19107',28,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2605,'Rowan','21205',5,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2606,'Johnson','20091',18,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2607,'Idaho','16049',21,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2608,'Edgefield','45037',11,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2609,'White','13311',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2610,'Le Sueur','27079',42,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2611,'Hendry','12051',50,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2612,'Bartholomew','18005',2,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2613,'Franklin','16041',21,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2614,'Sheridan','38083',20,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2615,'Wayne','47181',44,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2616,'Clifton Forge City','51560',4,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2617,'Lake','08065',45,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2618,'Greenwood','20073',18,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2619,'Scott','51169',4,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2620,'Hickman','21105',5,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2621,'East Feliciana','22037',9,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2622,'Laurens','45059',11,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2623,'Bourbon','21017',5,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2624,'Venango','42121',7,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2625,'Chattooga','13055',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2626,'Barry','26015',37,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2627,'Park','30067',34,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2628,'Effingham','13103',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2629,'Jackson','08057',45,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2630,'Jackson','39079',24,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2631,'Summit','49043',32,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2632,'Brown','27015',42,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2633,'Estill','21065',5,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2634,'Bleckley','13023',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2635,'Rooks','20163',18,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2636,'Cherry','31031',27,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2637,'Prince Wales Ketchikan','02201',43,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2638,'Whitfield','13313',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2639,'Monroe','47123',44,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2640,'Delaware','40041',36,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2641,'Comanche','20033',18,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2642,'Benton','29015',40,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2643,'Lincoln','05079',14,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2644,'Drew','05043',14,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2645,'Randolph','13243',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2646,'Midland','26111',37,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2647,'Westmoreland','51193',4,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2648,'Delaware','19055',28,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2649,'Steele','38091',20,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2650,'Jasper','18073',2,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2651,'Covington','28031',10,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2652,'De Kalb','01049',8,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2653,'Trego','20195',18,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2654,'Moody','46101',25,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2655,'Waushara','55137',13,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2656,'Colonial Heights City','51570',4,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2657,'Miller','13201',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2658,'Henry','39069',24,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2659,'Tyrrell','37177',22,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2660,'Maury','47119',44,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2661,'Polk','37149',22,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2662,'Platte','31141',27,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2663,'Luna','35029',15,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2664,'Stephens','40137',36,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2665,'Comanche','48093',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2666,'Madison','05087',14,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2667,'Comerio','72045',3,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2668,'Grayson','51077',4,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2669,'Jones','37103',22,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2670,'Oscoda','26135',37,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2671,'Philadelphia','42101',7,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2672,'Hand','46059',25,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2673,'Val Verde','48465',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2674,'Perry','17145',17,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2675,'Uvalde','48463',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2676,'Pike','13231',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2677,'Lake','39085',24,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2678,'Knox','47093',44,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2679,'Crosby','48107',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2680,'Lyon','21143',5,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2681,'Ravalli','30081',34,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2682,'Madison','48313',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2683,'Saint James','22093',9,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2684,'Van Wert','39161',24,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2685,'Laclede','29105',40,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2686,'Northampton','37131',22,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2687,'Rockdale','13247',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2688,'Nowata','40105',36,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2689,'Johnson','31097',27,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2690,'Cherokee','40021',36,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2691,'Hamilton','20075',18,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2692,'Brown','17009',17,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2693,'Aransas','48007',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2694,'Henry','19087',28,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2695,'Johnson','19103',28,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2696,'Gates','37073',22,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2697,'Whitley','21235',5,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2698,'Jackson','48239',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2699,'Richmond','37153',22,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2700,'Clay','05021',14,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2701,'Tehama','06103',1,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2702,'Perry','39127',24,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2703,'Live Oak','48297',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2704,'Camas','16025',21,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2705,'Barber','20007',18,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2706,'Meeker','27093',42,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2707,'Russell','01113',8,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2708,'Sawyer','55113',13,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2709,'Hardin','47071',44,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2710,'Mason','21161',5,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2711,'Lawrence','01079',8,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2712,'Nicollet','27103',42,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2713,'Union','41061',39,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2714,'Kent','44003',46,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2715,'Newton','13217',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2716,'Pecos','48371',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2717,'Logan','40083',36,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2718,'Dawson','31047',27,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2719,'Lincoln','21137',5,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2720,'Cumberland','47035',44,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2721,'Walker','48471',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2722,'Burt','31021',27,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2723,'Lewis','16061',21,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2724,'Kaufman','48257',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2725,'Richland','30083',34,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2726,'Crane','48103',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2727,'Taliaferro','13265',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2728,'Crittenden','21055',5,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2729,'Mineral','08079',45,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2730,'Sarasota','12115',50,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2731,'Del Norte','06015',1,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2732,'Hood','48221',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2733,'Washington','37187',22,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2734,'Teller','08119',45,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2735,'Pulaski','29169',40,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2736,'Christian','21047',5,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2737,'Cook','27031',42,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2738,'Dixie','12029',50,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2739,'Hickory','29085',40,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2740,'Foard','48155',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2741,'Crowley','08025',45,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2742,'Morgan','49029',32,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2743,'Saint John','78020',54,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2744,'Copiah','28029',10,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2745,'Huerfano','08055',45,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2746,'Hitchcock','31087',27,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2747,'Nez Perce','16069',21,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2748,'Culebra','72049',3,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2749,'Forsyth','13117',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2750,'Daviess','21059',5,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2751,'Frontier','31063',27,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2752,'Pend Oreille','53051',26,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2753,'Chattahoochee','13053',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2754,'Lafourche','22057',9,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2755,'Darlington','45031',11,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2756,'Pope','27121',42,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2757,'King George','51099',4,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2758,'Lumpkin','13187',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2759,'Burnett','55013',13,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2760,'Dakota','31043',27,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2761,'Caldwell','48055',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2762,'Dallam','48111',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2763,'Galax City','51640',4,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2764,'Paulding','13223',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2765,'Polk','41053',39,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2766,'Wilkes','13317',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2767,'Ingham','26065',37,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2768,'Morgan','01103',8,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2769,'Twiggs','13289',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2770,'Boyle','21021',5,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2771,'Montour','42093',7,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2772,'Danville City','51590',4,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2773,'Henderson','47077',44,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2774,'Walworth','55127',13,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2775,'Vanderburgh','18163',2,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2776,'Yuma','04027',48,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2777,'Tillman','40141',36,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2778,'Murray','40099',36,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2779,'Decatur','19053',28,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2780,'Washington','13303',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2781,'Deaf Smith','48117',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2782,'Kidder','38043',20,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2783,'Dawson','13085',6,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2784,'Lafayette','12067',50,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2785,'Jefferson','31095',27,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2786,'De Soto','28033',10,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2787,'Marengo','01091',8,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2788,'Rhea','47143',44,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2789,'Columbia','53013',26,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2790,'Kemper','28069',10,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2791,'Meigs','47121',44,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2792,'Lenoir','37107',22,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2793,'Grant','40053',36,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2794,'Kearny','20093',18,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2795,'Shelby','19165',28,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2796,'Defiance','39039',24,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2797,'Beaverhead','30001',34,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2798,'Hudspeth','48229',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2799,'Starr','48427',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2800,'Musselshell','30065',34,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2801,'Pulaski','18131',2,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2802,'Wilson','48493',16,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2803,'Menifee','21165',5,NULL,'2016-04-25 11:22:51','2016-04-25 11:22:51'),(2804,'Jeff Davis','13161',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2805,'Humphreys','47085',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2806,'Yoakum','48501',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2807,'Beauregard','22011',9,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2808,'Benewah','16009',21,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2809,'Cotton','40033',36,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2810,'Walthall','28147',10,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2811,'Chaves','35005',15,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2812,'Clay','19041',28,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2813,'Dillon','45033',11,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2814,'Castro','48069',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2815,'Prince George','51149',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2816,'Sanders','30089',34,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2817,'Clay','12019',50,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2818,'Wayne','13305',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2819,'Miller','05091',14,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2820,'Dunn','38025',20,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2821,'Phillips','30071',34,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2822,'Collingsworth','48087',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2823,'De Soto','22031',9,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2824,'Kittson','27069',42,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2825,'Seminole','13253',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2826,'Dorchester','45035',11,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2827,'Douglas','13097',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2828,'Screven','13251',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2829,'White','47185',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2830,'Jones','46075',25,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2831,'Decatur','20039',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2832,'Weakley','47183',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2833,'Cameron','42023',7,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2834,'Granite','30039',34,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2835,'Terrell','48443',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2836,'Wayne','37191',22,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2837,'Wabasha','27157',42,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2838,'Clear Creek','08019',45,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2839,'King','48269',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2840,'Rice','27131',42,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2841,'Lunenburg','51111',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2842,'Harrison','19085',28,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2843,'Sequatchie','47153',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2844,'Woodson','20207',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2845,'Daggett','49009',32,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2846,'Esmeralda','32009',51,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2847,'Maverick','48323',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2848,'Scotland','37165',22,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2849,'Lexington City','51678',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2850,'Sutter','06101',1,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2851,'Washington','47179',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2852,'Stephens','13257',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2853,'Bay','12005',50,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2854,'Putnam','13237',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2855,'Yuma','08125',45,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2856,'Concho','48095',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2857,'Weber','49057',32,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2858,'Chowan','37041',22,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2859,'Glascock','13125',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2860,'Pipestone','27117',42,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2861,'Lyman','46085',25,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2862,'Ketchikan Gateway','02130',43,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2863,'Sherman','20181',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2864,'Giles','51071',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2865,'San Miguel','08113',45,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2866,'Young','48503',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2867,'Schleicher','48413',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2868,'Scott','47151',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2869,'Pasquotank','37139',22,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2870,'Carter','47019',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2871,'Elk','20049',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2872,'Morton','20129',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2873,'Schley','13249',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2874,'Dickey','38021',20,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2875,'Montgomery','19137',28,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2876,'Ransom','38073',20,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2877,'Ellsworth','20053',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2878,'Otsego','26137',37,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2879,'Garvin','40049',36,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2880,'Lincoln','47103',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2881,'Jefferson Davis','22053',9,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2882,'Gosper','31073',27,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2883,'Columbia','05027',14,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2884,'Mills','19129',28,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2885,'Gem','16045',21,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2886,'Saluda','45081',11,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2887,'Rains','48379',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2888,'Roane','47145',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2889,'Emporia City','51595',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2890,'Brooks','48047',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2891,'Halifax','37083',22,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2892,'Hyde','37095',22,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2893,'Fredericksburg City','51630',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2894,'Clarke','28023',10,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2895,'Haskell','40061',36,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2896,'Wallowa','41063',39,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2897,'Chester','47023',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2898,'Coosa','01037',8,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2899,'Cooke','48097',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2900,'Pennington','27113',42,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2901,'Houston','47083',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2902,'Unicoi','47171',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2903,'Norton City','51720',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2904,'Las Piedras','72085',3,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2905,'Hall','48191',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2906,'Attala','28007',10,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2907,'Toole','30101',34,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2908,'Lawrence','47099',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2909,'Petersburg City','51730',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2910,'Lincoln','30053',34,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2911,'Juab','49023',32,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2912,'Osceola','26133',37,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2913,'Brown','20013',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2914,'Mercer','34021',23,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2915,'Candler','13043',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2916,'Spalding','13255',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2917,'San German','72125',3,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2918,'Luquillo','72089',3,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2919,'Oconee','45073',11,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2920,'Chambers','01017',8,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2921,'Ware','13299',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2922,'Atchison','29005',40,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2923,'Billings','38007',20,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2924,'Radford City','51750',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2925,'Grant','18053',2,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2926,'Wright','29229',40,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2927,'Prairie','30079',34,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2928,'Falls Church City','51610',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2929,'Missaukee','26113',37,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2930,'Prince Edward','51147',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2931,'Richmond','51159',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2932,'Calhoun','19025',28,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2933,'Ochiltree','48357',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2934,'Jasper','13159',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2935,'Rockwall','48397',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2936,'Kalkaska','26079',37,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2937,'Poinsett','05111',14,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2938,'Ben Hill','13017',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2939,'Perry','47135',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2940,'Daniels','30019',34,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2941,'Taylor','54091',33,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2942,'Motley','48345',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2943,'Putnam','17155',17,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2944,'Butts','13035',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2945,'Floyd','18043',2,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2946,'Benton','27009',42,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2947,'Charlton','13049',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2948,'Pocahontas','19151',28,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2949,'Graham','37075',22,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2950,'Clark','21049',5,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2951,'Scott','28123',10,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2952,'Potter','46107',25,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2953,'Jefferson','55055',13,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2954,'Macon','01087',8,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2955,'Jeff Davis','48243',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2956,'Newport News City','51700',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2957,'Lynchburg City','51680',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2958,'Goshen','56015',38,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2959,'Denver','08031',45,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2960,'Menard','48327',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2961,'Hampton City','51650',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2962,'Catoosa','13047',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2963,'Valley','30105',34,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2964,'Saint Lucie','12111',50,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2965,'Stanley','46117',25,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2966,'Lauderdale','47097',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2967,'Geary','20061',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2968,'Virginia Beach City','51810',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2969,'De Baca','35011',15,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2970,'Woodward','40153',36,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2971,'Columbia','12023',50,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2972,'Palo Pinto','48363',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2973,'Wheeler','41069',39,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2974,'Pierce','31139',27,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2975,'Weston','56045',38,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2976,'Meade','20119',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2977,'Franklin','21073',5,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2978,'Heard','13149',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2979,'Simpson','21213',5,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2980,'Franklin City','51620',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2981,'Scioto','39145',24,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2982,'Grand','08049',45,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2983,'Crawford','26039',37,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2984,'Caldwell','21033',5,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2985,'Logan','38047',20,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2986,'Scott','20171',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2987,'Payette','16075',21,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2988,'Borden','48033',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2989,'Jackson','47087',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2990,'Grundy','29079',40,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2991,'Logan','31113',27,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2992,'Sequoyah','40135',36,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2993,'Finney','20055',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2994,'Glasscock','48173',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2995,'Rich','49033',32,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2996,'Ector','48135',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2997,'East Carroll','22035',9,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2998,'Sevier','47155',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(2999,'Meriwether','13199',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3000,'Yankton','46135',25,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3001,'Quitman','13239',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3002,'Scott','21209',5,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3003,'Scotts Bluff','31157',27,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3004,'Campbell','56005',38,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3005,'Burke','13033',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3006,'Kent','48263',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3007,'Wilson','47189',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3008,'Somervell','48425',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3009,'Baker','12003',50,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3010,'Renville','38075',20,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3011,'Gallatin','21077',5,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3012,'McDowell','37111',22,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3013,'Storey','32029',51,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3014,'Tipton','18159',2,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3015,'Walton','13297',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3016,'Saint Louis City','29510',40,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3017,'Kiowa','40075',36,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3018,'Harmon','40057',36,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3019,'Gove','20063',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3020,'Latimer','40077',36,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3021,'Issaquena','28055',10,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3022,'York','51199',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3023,'St Joseph','18141',2,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3024,'Greer','40055',36,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3025,'Coweta','13077',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3026,'Jefferson','20087',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3027,'Hot Springs','56017',38,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3028,'Owen','21187',5,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3029,'Jones','13169',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3030,'Putnam','29171',40,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3031,'Loudon','47105',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3032,'Greene','13133',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3033,'Kiowa','20097',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3034,'Green','21087',5,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3035,'Howard','18067',2,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3036,'Madison','12079',50,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3037,'Carson','48065',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3038,'Pulaski','13235',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3039,'Hansford','48195',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3040,'Marion','47115',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3041,'Maui','15009',49,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3042,'Haines','02100',43,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3043,'Calhoun','05013',14,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3044,'Henry','13151',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3045,'La Porte','18091',2,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3046,'Hodgeman','20083',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3047,'Swisher','48437',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3048,'Baldwin','13009',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3049,'Wheatland','30107',34,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3050,'Banner','31007',27,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3051,'Sioux','31165',27,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3052,'Harrisonburg City','51660',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3053,'Wilbarger','48487',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3054,'Oceana','26127',37,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3055,'Blackford','18009',2,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3056,'Trousdale','47169',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3057,'Haskell','48207',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3058,'Presque Isle','26141',37,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3059,'Hayes','31085',27,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3060,'Telfair','13271',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3061,'Union','37179',22,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3062,'Vance','37181',22,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3063,'Towns','13281',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3064,'Camden','13039',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3065,'Brantley','13025',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3066,'Todd','46121',25,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3067,'Roscommon','26143',37,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3068,'Hyde','46069',25,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3069,'Martin','12085',50,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3070,'Troup','13285',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3071,'Lewis','47101',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3072,'San Benito','06069',1,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3073,'Greene','37079',22,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3074,'Clarke','19039',28,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3075,'Hopewell City','51670',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3076,'Custer','08027',45,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3077,'Obion','47131',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3078,'Sheridan','20179',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3079,'Bibb','13021',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3080,'Stafford','20185',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3081,'Stevens','20189',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3082,'Person','37145',22,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3083,'Lubbock','48303',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3084,'Macon','13193',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3085,'Bristol Bay','02060',43,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3086,'Alleghany','51005',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3087,'Irwin','13155',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3088,'Custer','30017',34,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3089,'James City','51095',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3090,'Waseca','27161',42,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3091,'Las Marias','72083',3,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3092,'Loiza','72087',3,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3093,'Patillas','72109',3,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3094,'Naranjito','72105',3,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3095,'Yabucoa','72151',3,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3096,'Greensville','51081',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3097,'Hamilton','12047',50,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3098,'Montgomery','21173',5,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3099,'Sedgwick','08115',45,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3100,'Kimble','48267',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3101,'Garza','48169',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3102,'Wrangell Petersburg','02280',43,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3103,'Kalawao','15005',49,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3104,'Niobrara','56027',38,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3105,'Jessamine','21113',5,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3106,'Lampasas','48281',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3107,'Culberson','48109',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3108,'Robertson','21201',5,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3109,'Winkler','48495',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3110,'Menominee','55078',13,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3111,'Marshall','40095',36,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3112,'Kleberg','48273',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3113,'Seward','20175',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3114,'Johnson','13167',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3115,'Crawford','13079',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3116,'Palau','70030',55,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3117,'Garden','31069',27,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3118,'Hancock','47067',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3119,'Wabash','18169',2,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3120,'Macon','47111',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3121,'Union','12125',50,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3122,'Hinsdale','08053',45,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3123,'Lanier','13173',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3124,'Dawson','48115',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3125,'Jefferson','12065',50,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3126,'Willacy','48489',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3127,'Anderson','21005',5,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3128,'Lee','13177',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3129,'Meagher','30059',34,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3130,'Riley','20161',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3131,'Wichita','20203',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3132,'San Francisco','06075',1,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3133,'Fayette','21067',5,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3134,'Cleveland','40027',36,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3135,'New York','36061',35,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3136,'Madison','39097',24,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3137,'Fisher','48151',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3138,'Gaines','48165',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3139,'Zapata','48505',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3140,'Winston','28159',10,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3141,'Stewart','13259',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3142,'Hamblen','47063',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3143,'Ogemaw','26129',37,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3144,'Page','51139',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3145,'Union','47173',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3146,'Moore','47127',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3147,'Washington','21229',5,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3148,'Warren','37185',22,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3149,'Powhatan','51145',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3150,'Thurston','31173',27,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3151,'Manassas City','51683',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3152,'Presidio','48377',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3153,'Maricao','72093',3,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3154,'Perry','01105',8,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3155,'Warren','18171',2,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3156,'Martinsville City','51690',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3157,'Hancock','13141',6,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3158,'Hoke','37093',22,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3159,'Upton','48461',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3160,'Luce','26095',37,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3161,'Loving','48301',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3162,'Mercer','29129',40,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3163,'Roberts','48393',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3164,'Midland','48329',16,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3165,'Woodford','21239',5,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3166,'Keya Paha','31103',27,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3167,'Lake','47095',44,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3168,'Moca','72099',3,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3169,'Charlottesville City','51540',4,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3170,'Logan','20109',18,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3171,'Glades','12043',50,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3172,'Spencer','21215',5,NULL,'2016-04-25 11:22:52','2016-04-25 11:22:52'),(3173,'Franklin','48159',16,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3174,'Hooker','31091',27,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3175,'Nantucket','25019',30,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3176,'Craig','51045',4,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3177,'Lynn','48305',16,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3178,'Baker','13007',6,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3179,'Worth','13321',6,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3180,'Polk','31143',27,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3181,'Ouray','08091',45,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3182,'Gulf','12045',50,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3183,'Crockett','48105',16,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3184,'American Samoa','60050',56,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3185,'Quebradillas','72115',3,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3186,'Waynesboro City','51820',4,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3187,'Spotsylvania','51177',4,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3188,'Crook','41013',39,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3189,'Taylor','12123',50,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3190,'Bledsoe','47007',44,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3191,'Stanton','31167',27,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3192,'Garfield','53023',26,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3193,'Poquoson City','51735',4,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3194,'Portsmouth City','51740',4,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3195,'Webster','13307',6,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3196,'Briscoe','48045',16,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3197,'Broadwater','30007',34,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3198,'Warren','28149',10,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3199,'McPherson','31117',27,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3200,'Dade','13083',6,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3201,'Ohio','18115',2,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3202,'Northern Mariana Islands','69010',57,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3203,'Haskell','20081',18,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3204,'Baylor','48023',16,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3205,'Wallace','20199',18,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3206,'San Juan','08111',45,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3207,'Sitka','02220',43,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3208,'Sutton','48435',16,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3209,'Treutlen','13283',6,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3210,'Van Buren','47175',44,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3211,'Richmond','36085',35,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3212,'Echols','13101',6,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3213,'Staunton City','51790',4,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3214,'Sterling','48431',16,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3215,'Sussex','51183',4,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3216,'Sherman','48421',16,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3217,'Washakie','56043',38,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3218,'Upson','13293',6,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3219,'Throckmorton','48447',16,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3220,'Greeley','20071',18,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3221,'Grant','20067',18,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3222,'Vieques','72147',3,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3223,'Wibaux','30109',34,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3224,'Winchester City','51840',4,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53'),(3225,'Yakutat','02282',43,NULL,'2016-04-25 11:22:53','2016-04-25 11:22:53');
/*!40000 ALTER TABLE `counties` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-04-25 20:49:08
| 4,084.147541 | 246,730 | 0.646699 |
2e613824ef1ed9f89ae6bc3bfc8cda745467817e | 1,827 | kt | Kotlin | NetworkUtils/src/main/java/com/abiots/networkutils/utils/NetworkUtils.kt | AbIoTsIO/NetworkTools | 70025555b2f953829b5a1d84dd97eaa568fce845 | [
"Apache-2.0"
] | null | null | null | NetworkUtils/src/main/java/com/abiots/networkutils/utils/NetworkUtils.kt | AbIoTsIO/NetworkTools | 70025555b2f953829b5a1d84dd97eaa568fce845 | [
"Apache-2.0"
] | null | null | null | NetworkUtils/src/main/java/com/abiots/networkutils/utils/NetworkUtils.kt | AbIoTsIO/NetworkTools | 70025555b2f953829b5a1d84dd97eaa568fce845 | [
"Apache-2.0"
] | null | null | null | package com.abiots.networkutils.utils
import com.abiots.networkutils.BuildConfig
import timber.log.Timber
import java.net.Inet4Address
import java.net.Inet6Address
import java.net.InetAddress
import java.net.NetworkInterface
import java.util.*
import java.util.concurrent.TimeUnit
import kotlin.collections.ArrayList
/**
* @author J Suhas Bhat
*/
object NetworkUtils {
init {
if (Timber.treeCount() == 0 && BuildConfig.DEBUG) {
Timber.plant(Timber.DebugTree())
} else Unit
}
fun isIPv4Address(ipAddress: String): Boolean = runCatching {
(InetAddress.getByName(ipAddress) is Inet4Address)
}.getOrDefault(false)
fun isIPv6Address(ipAddress: String): Boolean = runCatching {
(InetAddress.getByName(ipAddress) is Inet6Address)
}.getOrDefault(false)
fun isIpFromLocalNetwork(ipAddress: String): Boolean = runCatching {
InetAddress.getByName(ipAddress).isSiteLocalAddress
}.getOrDefault(false)
fun getLocalIPv4DevicesAddresses() = ArrayList<InetAddress>().apply localIp4Devices@{
runCatching {
Timber.d("Getting all the local IPv4 addresses")
Collections.list(NetworkInterface.getNetworkInterfaces()).forEach { networkInterface ->
Collections.list(networkInterface.inetAddresses).forEach { inetAddress ->
if (!inetAddress.isLoopbackAddress && inetAddress is Inet4Address) {
Timber.d("Found a local IPv4 address $inetAddress")
this@localIp4Devices.add(inetAddress)
} else Unit
}
}
}.onFailure {
Timber.e("error getting the device IP address ${it.localizedMessage}")
}
}
fun Long.millisToSec() = TimeUnit.MILLISECONDS.toSeconds(this)
}
| 33.218182 | 99 | 0.669951 |
cb7eeaffc30ad55a87a19965d4fe0b1c8647fdae | 467 | html | HTML | app/templates/index.html | Silvrash/flask-react | 0e942a6374a3a9c928e9a1c6778c36ca6d23b36a | [
"Apache-2.0"
] | null | null | null | app/templates/index.html | Silvrash/flask-react | 0e942a6374a3a9c928e9a1c6778c36ca6d23b36a | [
"Apache-2.0"
] | null | null | null | app/templates/index.html | Silvrash/flask-react | 0e942a6374a3a9c928e9a1c6778c36ca6d23b36a | [
"Apache-2.0"
] | null | null | null | <!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"/>
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Expires" content="0"/>
<title>FLASK-REACT</title>
</head>
<body>
<div id="root"></div>
<script type="text/javascript" src="{{url_for('static', filename='javascript/bin/bundles.js') }}"></script>
</html> | 35.923077 | 107 | 0.668094 |
aa46288f4b313e4e4eaa75987d2a2b4de7d2c406 | 3,053 | swift | Swift | Source/UINavigationBar-Extenstion.swift | cuirhong/Davis-Category | 167f303b51257ed5b4b0dfa601914a7823d676f5 | [
"MIT"
] | 1 | 2021-05-28T15:01:48.000Z | 2021-05-28T15:01:48.000Z | Source/UINavigationBar-Extenstion.swift | cuirhong/Davis-Category | 167f303b51257ed5b4b0dfa601914a7823d676f5 | [
"MIT"
] | null | null | null | Source/UINavigationBar-Extenstion.swift | cuirhong/Davis-Category | 167f303b51257ed5b4b0dfa601914a7823d676f5 | [
"MIT"
] | null | null | null | //
// UINavigationBar-Extenstion.swift
// QiuGuo
//
// Created by cuirhong on 2017/6/7.
// Copyright © 2017年 qiuyoukeji. All rights reserved.
//
import UIKit
@objc public extension UINavigationBar{
private struct NavigationBarKeys{
static var overlayKey = "overlayKey"
}
private var overlay:UIView?{
get{
return objc_getAssociatedObject(self, &NavigationBarKeys.overlayKey) as? UIView
}
set{
objc_setAssociatedObject(self, &NavigationBarKeys.overlayKey, newValue as UIView?, objc_AssociationPolicy.OBJC_ASSOCIATION_RETAIN_NONATOMIC)
}
}
/// 设置导航栏的背景颜色
@objc func nav_setBackgroundColor(backgroundColor:UIColor,isSetStatus:Bool=true){
if overlay == nil{
var frame = CGRect(x: 0, y: 0, width: bounds.width, height: bounds.height)
if isSetStatus{
frame = CGRect(x: 0, y: -20, width: bounds.width, height: bounds.height + 20)
}
overlay = UIView(frame: frame)
overlay?.isUserInteractionEnabled = false
overlay?.autoresizingMask = UIView.AutoresizingMask.flexibleWidth
}
tintColor = UIColor.clear
overlay?.backgroundColor = backgroundColor
insertSubview(overlay!, at: 0)
}
///
@objc func nav_setTranslationY(translationY:CGFloat){
transform = CGAffineTransform(translationX: 0, y: translationY)
}
///设置导航栏子元素的透明度
@objc func nav_setElementsAlpha(alpha:CGFloat){
for (_,element) in subviews.enumerated() {
if element.isKind(of: NSClassFromString("UINavigationItemView") as! UIView.Type) || element.isKind(of: NSClassFromString("UINavigationButton") as! UIButton.Type) || element.isKind(of: NSClassFromString("UINavBarPrompt") as! UIView.Type){
element.alpha = alpha
}
if element.isKind(of: NSClassFromString("_UINavigationBarBackIndicatorView") as! UIView.Type){
element.alpha = element.alpha == 0 ? 0: alpha
}
}
//
items?.forEach({ (item) in
if let titleView = item.titleView{
titleView.alpha = alpha
}
for BBItems in [item.leftBarButtonItems,item.rightBarButtonItems]{
BBItems?.forEach({ (barButtonItem) in
if let customView = barButtonItem.customView{
customView.alpha = alpha
}
})
}
})
}
/// viewWillDisAppear调用
@objc func navi_reset(){
setBackgroundImage(nil, for: .default)
overlay?.removeFromSuperview()
overlay = nil
}
}
| 27.017699 | 249 | 0.539142 |
ddf744f9c3c82ec1cf4c43ec787c05af016c1d7d | 2,056 | php | PHP | src/wp-content/plugins/astra-addon/classes/builder/type/base/dynamic-css/class-astra-addon-base-dynamic-css.php | amachado22/modelowp-shop | 9d91718568a8e10ae8e599300c491cb9a3d73dd8 | [
"MIT"
] | 1 | 2022-01-02T18:58:56.000Z | 2022-01-02T18:58:56.000Z | src/wp-content/plugins/astra-addon/classes/builder/type/base/dynamic-css/class-astra-addon-base-dynamic-css.php | amachado22/modelowp-shop | 9d91718568a8e10ae8e599300c491cb9a3d73dd8 | [
"MIT"
] | null | null | null | src/wp-content/plugins/astra-addon/classes/builder/type/base/dynamic-css/class-astra-addon-base-dynamic-css.php | amachado22/modelowp-shop | 9d91718568a8e10ae8e599300c491cb9a3d73dd8 | [
"MIT"
] | null | null | null | <?php
/**
* Astra Addon Base Dynamic CSS.
*
* @since 3.3.0
* @package astra-addon
*/
// No direct access, please.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Class Astra_Addon_Base_Dynamic_CSS.
*/
class Astra_Addon_Base_Dynamic_CSS {
/**
* Dynamic CSS
*
* @param string $prefix control prefix.
* @param string $selector control CSS selector.
* @return String Generated dynamic CSS for Box Shadow.
*
* @since 3.3.0
*/
public static function prepare_box_shadow_dynamic_css( $prefix, $selector ) {
$dynamic_css = '';
$box_shadow = astra_get_option( $prefix . '-box-shadow-control' );
$box_shadow_color = astra_get_option( $prefix . '-box-shadow-color' );
$position = astra_get_option( $prefix . '-box-shadow-position' );
$is_shadow = isset( $box_shadow );
// Box Shadow.
$box_shadow_x = ( $is_shadow && isset( $box_shadow['x'] ) && '' !== $box_shadow['x'] ) ? ( $box_shadow['x'] . 'px ' ) : '0px ';
$box_shadow_y = ( $is_shadow && isset( $box_shadow['y'] ) && '' !== $box_shadow['y'] ) ? ( $box_shadow['y'] . 'px ' ) : '0px ';
$box_shadow_blur = ( $is_shadow && isset( $box_shadow['blur'] ) && '' !== $box_shadow['blur'] ) ? ( $box_shadow['blur'] . 'px ' ) : '0px ';
$box_shadow_spread = ( $is_shadow && isset( $box_shadow['spread'] ) && '' !== $box_shadow['spread'] ) ? ( $box_shadow['spread'] . 'px ' ) : '0px ';
$shadow_position = ( $is_shadow && isset( $position ) && 'inset' === $position ) ? ' inset' : '';
$shadow_color = ( isset( $box_shadow_color ) ? $box_shadow_color : 'rgba(0,0,0,0.5)' );
$css_output = array(
$selector => array(
// box shadow.
'box-shadow' => $box_shadow_x . $box_shadow_y . $box_shadow_blur . $box_shadow_spread . $shadow_color . $shadow_position,
),
);
/* Parse CSS from array() */
$dynamic_css .= astra_parse_css( $css_output );
return $dynamic_css;
}
}
/**
* Prepare if class 'Astra_Addon_Base_Dynamic_CSS' exist.
* Kicking this off by calling 'get_instance()' method
*/
new Astra_Addon_Base_Dynamic_CSS();
| 29.797101 | 149 | 0.61284 |
a9b3d0673fed05f6e810475b96e5d9304adba04d | 5,247 | html | HTML | xixi/templates/cheatsheets/git-cs.html | defbobo/xixi | c06ce48738f9843cf18db08c15e2e0bc0a6e9edb | [
"BSD-3-Clause"
] | null | null | null | xixi/templates/cheatsheets/git-cs.html | defbobo/xixi | c06ce48738f9843cf18db08c15e2e0bc0a6e9edb | [
"BSD-3-Clause"
] | null | null | null | xixi/templates/cheatsheets/git-cs.html | defbobo/xixi | c06ce48738f9843cf18db08c15e2e0bc0a6e9edb | [
"BSD-3-Clause"
] | null | null | null | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="highlight/styles/github.css">
<link rel="stylesheet" href="css/style.css">
<script src="highlight/highlight.pack.js"></script>
<script>
$(document).ready(function(){
$('pre.code').each(function(i, block) {
hljs.highlightBlock(block);
});
});
</script>
</head>
<body>
<div class="container" style="width:80%">
<div class="jumbotron" style="background:white;">
<h1>Git Cheat Sheet</h1>
<p>Cheat sheet of BASIC Git command</p>
</div>
<div class="row">
<div class="col-sm-4">
<h3>Basic Command of Git</h3>
<pre class="code bash">
# init a git repo
$ git init
# clone a git repo
$ git clone [url]
# clone a git repo to spec folder
$ git clone [url] [folder]
# add file into stage
$ git add [file]
$ git add *.c # add *.c files
$ git add . # add add all files
# cancel stage file
$ git reset HEAD [file]
# track current state
$ git status
# commit stage files
$ git commit
$ git commit -m "commit msg"
# add all files and commit
# equal to:
# $ git add .
# $ git commit -m "commit msg"
$ git commit -am "commit msg"
# modify previous commit
$ git commit --amend
# diff between stage and modify file
$ git diff
# diff betweent stage and pre commit
$ git diff --staged
# or
$ git diff --cached
</pre>
<h3>Viewing the Commit History</h3>
<pre class="code bash">
# show commit log
$ git log
# show diff between each commit
$ git log -p
# show a list of modified file
$ git log --stat
# no merge log
$ git log --no-merges
# show branch and merge history
$ git log --graph --all
</pre>
<h3>Remove or Move File</h3>
<pre class="code bash">
# unstage a file and remove
# equal to
# $ rm [file]
# $ git rm [file]
$ git rm -f [file]
# un stage a file
$ git --cached [file]
# or
$ git reset [file]
# move stage file
$ git mv [src-file] [dest-file]
</pre>
</div>
<div class="col-sm-4">
<h3>Git Basic Branching</h3>
<pre class="code bash">
# show current local branch
$ git branch
# show remote branch
$ git branch -r
# show remote & local branch
$ git branch -a
# create a branch
$ git branch [branch name]
# create and checkout a new branch
$ git checkout -b [branch name]
# delete local branch
$ git branch -d [branch name]
# delete remote branch
$ git branch -r -d [branch name]
# checkout branch
$ git checkout [branch name]
</pre>
<h3>Remote Branches</h3>
<pre class="code bash">
# add remote git server
$ git remote add [remote name]/[url]
# delete remote git server
$ git remote remove [remote name]
# push current commit
$ git push [branch] [remote name]
# fetch remote repo and merge
$ git pull
# fetch remote repo, rebase and merge
$ git pull --rebase
#or
$ git pull -r
# fetch remote repo(ex: origin)
$ git fetch origin
# create a local branch to track remote branch
$ git checkout --track origin/[branch]
# set exist local branch to track remote branch (--set-upstream-to or -u)
$ git branch -u [lbranch] [rbranch]
</pre>
<h3>Add Alias</h3>
<pre class="code bash">
# edit ~/.gitconfig
[alias]
co = checkout
br = branch
cl = clone
ci = commit
la = log --graph --all
</pre>
<h3>Edit ./gitignore</h3>
<pre class="code bash">
*.o
*.py
[folder]/*.a
[folder]/*
</pre>
</div>
<div class="col-sm-4">
<h3>Local Merge Strategy</h3>
<pre class="code bash">
# step1: rebase branch
$ git rebase master
# step2: checkout to master branch
$ git checkout master
# step3: merge
$ git merge [branch]
# step4: solve conflicts
# step5: add fix files
git add [fix files]
# step6: commit
git commit
</pre>
<h3>Remote Merge Strategy</h3>
<pre class="code bash">
# case1: merge track branch
$ git pull --rebase
# case2: merge untrack branch
# step1: git fetch
$ git fetch origin
# step2: track remote branch
$ git --track origin/[branch]
# step3: rebase
$ git rebase origin/[branch]
# step4: checkout
$ git checkout master
# step5: merge
$ git merge origin/[branch]
# step6: fix conflicts
# step7: add and commit
$ git add [files]
$ git commit
</pre>
<h3>Undo</h3>
<pre class="code bash">
# modify previous commit
$ git commit --amend
# unstage all file
$ git reset
# unstage a file
$ git reset HEAD [file]
# cancel commit but keep all modified.
git reset HEAD^ --soft
# below are DANGEROUS commands
# unmodify a unstage file
$ git checkout -- [file]
# clean all modify and back to previous commit
$ git reset --hard
</pre>
</div>
</div>
</div>
</body>
</html>
| 20.337209 | 106 | 0.613875 |