hexsha stringlengths 40 40 | size int64 5 2.06M | ext stringclasses 11 values | lang stringclasses 1 value | max_stars_repo_path stringlengths 3 251 | max_stars_repo_name stringlengths 4 130 | max_stars_repo_head_hexsha stringlengths 40 78 | max_stars_repo_licenses listlengths 1 10 | max_stars_count int64 1 191k ⌀ | 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 251 | max_issues_repo_name stringlengths 4 130 | max_issues_repo_head_hexsha stringlengths 40 78 | max_issues_repo_licenses listlengths 1 10 | max_issues_count int64 1 116k ⌀ | 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 251 | max_forks_repo_name stringlengths 4 130 | 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 1 1.05M | avg_line_length float64 1 1.02M | max_line_length int64 3 1.04M | alphanum_fraction float64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
e9b137261c2449a945a4fb05ca0369045630920a | 879 | py | Python | casbin/util/util.py | goodrain/pycasbin | 1a481ba1af7619e1cc7e83896581d14976927d80 | [
"Apache-2.0"
] | null | null | null | casbin/util/util.py | goodrain/pycasbin | 1a481ba1af7619e1cc7e83896581d14976927d80 | [
"Apache-2.0"
] | null | null | null | casbin/util/util.py | goodrain/pycasbin | 1a481ba1af7619e1cc7e83896581d14976927d80 | [
"Apache-2.0"
] | null | null | null | def escape_assertion(s):
"""escapes the dots in the assertion, because the expression evaluation doesn't support such variable names."""
s = s.replace("r.", "r_")
s = s.replace("p.", "p_")
return s
def remove_comments(s):
"""removes the comments starting with # in the text."""
pos = s.find("#")
if pos == -1:
return s
return s[0:pos].strip()
def array_remove_duplicates(s):
"""removes any duplicated elements in a string array."""
found = dict()
j = 0
for x in s:
if x not in found.keys():
found[x] = True
s[j] = x
j = j + 1
return s[:j]
def array_to_string(s):
"""gets a printable string for a string array."""
return ", ".join(s)
def params_to_string(*s):
"""gets a printable string for variable number of parameters."""
return ", ".join(s)
| 20.44186 | 115 | 0.576792 |
e9b3ab19d9a17d4244b5f5d4ce4ee01f10101503 | 399 | py | Python | multiobj_rationale/fuseprop/__init__.py | binghong-ml/multiobj-rationale | 735916854fba1886730ecac306dd509e930d67bd | [
"MIT"
] | 1 | 2021-08-17T00:43:11.000Z | 2021-08-17T00:43:11.000Z | multiobj_rationale/fuseprop/__init__.py | binghong-ml/multiobj-rationale | 735916854fba1886730ecac306dd509e930d67bd | [
"MIT"
] | null | null | null | multiobj_rationale/fuseprop/__init__.py | binghong-ml/multiobj-rationale | 735916854fba1886730ecac306dd509e930d67bd | [
"MIT"
] | 1 | 2021-08-17T00:43:12.000Z | 2021-08-17T00:43:12.000Z | from multiobj_rationale.fuseprop.mol_graph import MolGraph
from multiobj_rationale.fuseprop.vocab import common_atom_vocab
from multiobj_rationale.fuseprop.gnn import AtomVGNN
from multiobj_rationale.fuseprop.dataset import *
from multiobj_rationale.fuseprop.chemutils import find_clusters, random_subgraph, extract_subgraph, enum_subgraph, dual_random_subgraph, unique_rationales, merge_rationales
| 66.5 | 172 | 0.892231 |
e9b44aa1e89f954d4739decd6c84438a72e8d03d | 5,445 | py | Python | thespian/test/test_troupe.py | dendron2000/Thespian | 0acbc5a0803f6d2be3421ea6eb08c6beecbf3802 | [
"MIT"
] | null | null | null | thespian/test/test_troupe.py | dendron2000/Thespian | 0acbc5a0803f6d2be3421ea6eb08c6beecbf3802 | [
"MIT"
] | null | null | null | thespian/test/test_troupe.py | dendron2000/Thespian | 0acbc5a0803f6d2be3421ea6eb08c6beecbf3802 | [
"MIT"
] | null | null | null | import time
import datetime
from thespian.test import *
from thespian.actors import *
from thespian.troupe import troupe
max_listen_wait = datetime.timedelta(seconds=4)
max_ask_wait = datetime.timedelta(seconds=2.5)
# Ensure there are more test data elements than workers so that
# some workers get multiple messages
testdata = [(0.5, 'Fizz'), (1, 'Honey'),
(0.25, 'Flower'), (0.75, 'Pollen'),
] + ([(0.005, 'Orchid'), (0.005, 'Rose'),
(0.005, 'Carnation'), (0.005, 'Lily'),
(0.005, 'Daffodil'), (0.005, 'Begonia'),
(0.005, 'Violet'), (0.005, 'Aster'),
] * 3)
# ------------------------------------------------------------
import tempfile, zipfile, os, shutil
| 30.082873 | 77 | 0.617998 |
e9b739710ac88a977ee95593a167d4e063e1ba18 | 1,197 | py | Python | tools/upd.py | vladimirivanoviliev/amps-blog-web-grid-bake-off | 25c24e1fbfc57df4e669487957dd440b338c7847 | [
"MIT"
] | 3 | 2017-10-21T01:37:03.000Z | 2021-07-22T16:08:02.000Z | tools/upd.py | vladimirivanoviliev/amps-blog-web-grid-bake-off | 25c24e1fbfc57df4e669487957dd440b338c7847 | [
"MIT"
] | 2 | 2020-01-15T22:50:18.000Z | 2020-07-19T14:55:28.000Z | tools/upd.py | vladimirivanoviliev/amps-blog-web-grid-bake-off | 25c24e1fbfc57df4e669487957dd440b338c7847 | [
"MIT"
] | 5 | 2020-01-27T13:52:04.000Z | 2020-10-28T07:38:46.000Z | from AMPS import Client
import random
import time
import json
import sys
if __name__ == '__main__':
# detect command line arguments
if len(sys.argv) > 1:
main(*sys.argv[1:])
else:
main()
| 23.94 | 65 | 0.548872 |
e9b97dc8d0695130796496766449b39ed72da44e | 8,299 | py | Python | sdk/python/pulumi_aws/sns/platform_application.py | pulumi-bot/pulumi-aws | 756c60135851e015232043c8206567101b8ebd85 | [
"ECL-2.0",
"Apache-2.0"
] | null | null | null | sdk/python/pulumi_aws/sns/platform_application.py | pulumi-bot/pulumi-aws | 756c60135851e015232043c8206567101b8ebd85 | [
"ECL-2.0",
"Apache-2.0"
] | null | null | null | sdk/python/pulumi_aws/sns/platform_application.py | pulumi-bot/pulumi-aws | 756c60135851e015232043c8206567101b8ebd85 | [
"ECL-2.0",
"Apache-2.0"
] | null | null | null | # coding=utf-8
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
# *** Do not edit by hand unless you're certain you know what you are doing! ***
import pulumi
import pulumi.runtime
| 54.960265 | 384 | 0.719605 |
e9bbd39d6d8b86209c5aaf7a41e2a233bc9104f2 | 4,815 | py | Python | functions/height.py | Hilvcha/PINGAN | 0eb1435750c2ce3dc5de3a50d390aae044360fd5 | [
"MIT"
] | 7 | 2018-04-01T17:24:56.000Z | 2021-06-07T09:39:52.000Z | functions/height.py | Hilvcha/PINGAN | 0eb1435750c2ce3dc5de3a50d390aae044360fd5 | [
"MIT"
] | 5 | 2018-03-31T18:24:52.000Z | 2019-10-09T16:27:49.000Z | functions/height.py | Hilvcha/PINGAN | 0eb1435750c2ce3dc5de3a50d390aae044360fd5 | [
"MIT"
] | 2 | 2020-03-04T08:48:54.000Z | 2021-06-07T09:39:51.000Z | # coding : utf-8
# created by wyj
import numpy as np
import pandas as pd
import math
from utils.feature_utils import df_empty
# TERMINALNO,TIME,TRIP_ID,LONGITUDE,LATITUDE,DIRECTION,HEIGHT,SPEED,CALLSTATE,Y
# trip_id,
# def max_sub(arr):
# sum = 0
# height = -999
# tempheight = arr.iloc[0]
# for h in arr:
# sum += h - tempheight
# if sum > height:
# height = sum
# if sum < 0:
# sum = 0
# tempheight = h
# arr['secc_inc']=sum
# return arr
# 'TERMINALNO', 'maxTime', 'phonerisk', 'dir_risk', 'height_risk', 'speed_max',
# 'speed_mean', 'height_mean', 'Zao', 'Wan', 'Sheye'
| 32.979452 | 117 | 0.586708 |
e9bc10c08079eec1973b577a0d5e59f56835d97e | 2,850 | py | Python | live_cd_scripts/os_scanner.py | ForbiddenApplePy/applepy | 4eb0965f7f634b0f340beee54dce09c12e3e4f54 | [
"WTFPL"
] | null | null | null | live_cd_scripts/os_scanner.py | ForbiddenApplePy/applepy | 4eb0965f7f634b0f340beee54dce09c12e3e4f54 | [
"WTFPL"
] | null | null | null | live_cd_scripts/os_scanner.py | ForbiddenApplePy/applepy | 4eb0965f7f634b0f340beee54dce09c12e3e4f54 | [
"WTFPL"
] | null | null | null | #!/usr/bin/python
# -*- coding: utf-8 -*-
import sys
import os
import json
import windows_utilman
import pyAesCrypt
import requests
from secureCrypt import cryptResult
os.system('loadkeys fr')
os.system('lsblk > result.txt')
if os.path.exists('/mnt/targetDrive'):
pass
else:
os.system('mkdir /mnt/targetDrive')
# Program starts here
drives_list = parse("result.txt")
results = check_for_os(drives_list)
# Saving results as json file
json = json.dumps(results)
if os.path.exists('results.json'):
f = open('results.json', 'w')
else:
f = open('results.json', 'x')
f.write(json)
f.close()
# Crypting file before sending it to our server and removing the base file just in case
cryptResult("results.json")
os.remove("results.json")
# Sending file to the server
os.system('curl -i -X POST -H "Content-Type: multipart/form-data" -F "host=test" -F "file=@results.json.aes" https://exft.avapxia.tk/')
| 29.6875 | 135 | 0.545614 |
e9bd49e911285196dc03e66b536b44da7fb8a285 | 2,336 | py | Python | app/views.py | taeram/idiocy | 01acf569785f0294540a1b0214b8eccd81818b9c | [
"MIT"
] | null | null | null | app/views.py | taeram/idiocy | 01acf569785f0294540a1b0214b8eccd81818b9c | [
"MIT"
] | 1 | 2019-12-06T21:20:10.000Z | 2019-12-06T21:20:11.000Z | app/views.py | taeram/idiocy | 01acf569785f0294540a1b0214b8eccd81818b9c | [
"MIT"
] | null | null | null | from app import app
import os
from flask import abort, \
redirect, \
render_template, \
request, \
send_from_directory, \
url_for
from .helpers import generate_code, \
is_valid_url, \
is_authenticated, \
strip_file_extension
from .database import db, \
Urls
from .filters import strip_www
| 31.146667 | 119 | 0.550514 |
e9bd8c135bbdae40ce2ed51669ba9beb880235de | 561 | py | Python | typeidea/comment/adminx.py | LastDanceG/typeblog | fdd043546813866669c004bc8d8aedbfcfa326f2 | [
"MIT"
] | 1 | 2020-02-20T12:01:43.000Z | 2020-02-20T12:01:43.000Z | typeidea/comment/adminx.py | LastDanceG/typeblog | fdd043546813866669c004bc8d8aedbfcfa326f2 | [
"MIT"
] | 2 | 2020-06-06T00:45:15.000Z | 2021-06-10T22:35:31.000Z | typeidea/comment/adminx.py | LastDanceG/typeblog | fdd043546813866669c004bc8d8aedbfcfa326f2 | [
"MIT"
] | null | null | null | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
import xadmin
from django.contrib import admin
# from typeidea.custom_site import custom_site
from typeidea.custom_admin import BaseOwnerAdmin
from .models import Comment
# Register your models here.
xadmin.site.register(Comment, CommentAdmin) | 26.714286 | 86 | 0.750446 |
e9be790eafe58cf7aaa0017314b055dd2bdf4ea4 | 79 | py | Python | core/devices/__init__.py | kisonho/torchmanager | ac01c61a132238bc0d39bf2173dfd37f44dbbf30 | [
"BSD-2-Clause"
] | null | null | null | core/devices/__init__.py | kisonho/torchmanager | ac01c61a132238bc0d39bf2173dfd37f44dbbf30 | [
"BSD-2-Clause"
] | null | null | null | core/devices/__init__.py | kisonho/torchmanager | ac01c61a132238bc0d39bf2173dfd37f44dbbf30 | [
"BSD-2-Clause"
] | null | null | null | from .devices import data_parallel, empty_cache, find, move_to_device, CPU, GPU | 79 | 79 | 0.822785 |
e9bfd30a608b29439adc950385f985d929b086eb | 1,443 | py | Python | prepare_dataset/filter_ratio_and_warnings.py | Florian-Barthel/stylegan2 | 4ef87038bf9370596cf2b729e1d1a1bc3ebcddd8 | [
"BSD-Source-Code"
] | null | null | null | prepare_dataset/filter_ratio_and_warnings.py | Florian-Barthel/stylegan2 | 4ef87038bf9370596cf2b729e1d1a1bc3ebcddd8 | [
"BSD-Source-Code"
] | null | null | null | prepare_dataset/filter_ratio_and_warnings.py | Florian-Barthel/stylegan2 | 4ef87038bf9370596cf2b729e1d1a1bc3ebcddd8 | [
"BSD-Source-Code"
] | null | null | null | from tqdm import tqdm
import shutil
import os
from PIL import Image
import warnings
src_folder = '../../modified_datasets/cars_flat'
dest_folder = '../../modified_datasets/cars_flat_ratio_warnings'
if not os.path.exists(dest_folder):
os.makedirs(dest_folder)
num_kept = 0
num_removed = 0
num_corrupt_EXIF = 0
for file in tqdm(os.listdir(src_folder)):
if file.lower().endswith(".jpg") or file.lower().endswith(".jpeg") or file.lower().endswith(".png"):
src_img = src_folder + '/' + file
dest_img = dest_folder + '/' + file
src_label = src_folder + '/' + file + '.json'
dest_label = dest_folder + '/' + file + '.json'
with warnings.catch_warnings() as my_warning:
warnings.simplefilter('error', UserWarning)
try:
img = Image.open(src_img)
w, h = img.size
if w < h:
print('removed invalid ratio')
num_removed += 1
continue
shutil.copyfile(src_img, dest_img)
if os.path.exists(src_label):
shutil.copyfile(src_label, dest_label)
num_kept += 1
except:
print('removed invalid format')
num_corrupt_EXIF += 1
print('Summary:')
print('removed corrupt_exif: ' + str(num_corrupt_EXIF))
print('removed: ' + str(num_removed))
print('kept: ' + str(num_kept))
| 31.369565 | 104 | 0.582121 |
e9c1766ed44cd38de086fdbbfdce35e66d2ab6f5 | 2,548 | py | Python | src/backend/apps/posts/utils.py | Vixx-X/ati-project | 0ef80772a6fc3807e401cf58b9e15f3628373383 | [
"MIT"
] | null | null | null | src/backend/apps/posts/utils.py | Vixx-X/ati-project | 0ef80772a6fc3807e401cf58b9e15f3628373383 | [
"MIT"
] | 61 | 2021-06-10T03:27:06.000Z | 2022-03-12T01:01:34.000Z | src/backend/apps/posts/utils.py | Vixx-X/ati-project | 0ef80772a6fc3807e401cf58b9e15f3628373383 | [
"MIT"
] | null | null | null | from mongoengine.queryset.visitor import Q
from backend.apps.posts.models import Post
from backend.apps.user.signals import check_comment_signal
from backend.apps.user.utils import are_friends
def save_comment_by_path(path, comment):
"""
Saving comment inserting it in root comment or post, given that we
only have 2-depth comments
"""
parent, son = get_two_last_obj_with_path(path)
if isinstance(parent, Post) and not isinstance(son, Post):
son.comments.append(comment)
else:
parent.comments.append(comment)
post = get_object_by_path(path.split("/")[0])
post.save()
# notify son author
check_comment_signal.send(comment.author, son.author)
| 29.627907 | 76 | 0.654631 |
e9c28c0a97751dccd5d3dc1b21e7750a3497a062 | 272 | py | Python | src/globus_cli/commands/timer/__init__.py | globusonline/globus-cli | 696857baafac198141edc3c1c29c72215f217df1 | [
"Apache-2.0"
] | null | null | null | src/globus_cli/commands/timer/__init__.py | globusonline/globus-cli | 696857baafac198141edc3c1c29c72215f217df1 | [
"Apache-2.0"
] | 1 | 2016-04-09T17:26:05.000Z | 2016-04-11T16:13:50.000Z | src/globus_cli/commands/timer/__init__.py | globusonline/globus-cli | 696857baafac198141edc3c1c29c72215f217df1 | [
"Apache-2.0"
] | null | null | null | from globus_cli.parsing import group
from .list import list_command
from .show import show_command
timer_command.add_command(list_command)
timer_command.add_command(show_command)
| 19.428571 | 50 | 0.794118 |
e9c3402cd5440828a3062f0ffd949c6878c6a821 | 5,340 | py | Python | openslides_backend/action/actions/projector/toggle.py | ostcar/openslides-backend | e6ceac497c37a1e3e7f408c6cfb29cf21d985b4c | [
"MIT"
] | 5 | 2020-01-20T13:57:15.000Z | 2021-03-27T14:14:44.000Z | openslides_backend/action/actions/projector/toggle.py | ostcar/openslides-backend | e6ceac497c37a1e3e7f408c6cfb29cf21d985b4c | [
"MIT"
] | 859 | 2020-01-11T22:58:37.000Z | 2022-03-30T14:54:06.000Z | openslides_backend/action/actions/projector/toggle.py | ostcar/openslides-backend | e6ceac497c37a1e3e7f408c6cfb29cf21d985b4c | [
"MIT"
] | 16 | 2020-01-04T20:28:57.000Z | 2022-02-10T12:06:54.000Z | from typing import Any, Dict, List
from ....models.models import Projection, Projector
from ....permissions.permissions import Permissions
from ....shared.filters import And, FilterOperator
from ....shared.patterns import Collection, FullQualifiedId, string_to_fqid
from ....shared.schema import required_id_schema
from ...generics.update import UpdateAction
from ...util.assert_belongs_to_meeting import assert_belongs_to_meeting
from ...util.default_schema import DefaultSchema
from ...util.register import register_action
from ...util.typing import ActionData
from ..projection.create import ProjectionCreate
from ..projection.delete import ProjectionDelete
from ..projection.update import ProjectionUpdate
| 40.763359 | 88 | 0.548876 |
e9c3d07f73748d2980ffa18343832a605023692e | 3,235 | py | Python | sfftk_migrate/__init__.py | emdb-empiar/sfftk-migrate | fc8941082256456edb61fe22ecbf932f6258352a | [
"Apache-2.0"
] | null | null | null | sfftk_migrate/__init__.py | emdb-empiar/sfftk-migrate | fc8941082256456edb61fe22ecbf932f6258352a | [
"Apache-2.0"
] | 2 | 2020-04-02T15:25:10.000Z | 2020-04-03T14:32:12.000Z | sfftk_migrate/__init__.py | emdb-empiar/sfftk-migrate | fc8941082256456edb61fe22ecbf932f6258352a | [
"Apache-2.0"
] | null | null | null | """
sfftk-migrate
==============
This is a simple tool to allow users to easily migrate older versions of EMDB-SFF files to the latest (supported version).
It has only one dependency: `lxml` which effects part of the migrations.
Presently it only works with XML (.sff) EMDB-SFF files.
How does it work?
-----------------
Each migration consists of two components:
1. a Python module which implements a `migrate` function, and
2. an XSL stylesheet which defines how the `source` is transformed into the `target`
The `migrate` function in (1) has the following signature:
.. code-block:: python
def migrate(infile, outfile, stylesheet, args, encoding='utf-8', **params):
...
where `infile` and `outfile` are the names of the source and target files, `stylesheet` is the
XSL file, `args` is the argument namespace, `encoding` defines what encoding the outfile will
be writing in, and `**params` is a dictionary of any params specified in the XSL file.
Please reference https://www.w3schools.com/xml/xsl_intro.asp on how XSL works.
Migrations are effected using the `migrate.do_migration` function which has the following signature:
.. code-block:: python
def do_migration(args, value_list=None, version_list=VERSION_LIST):
...
Lessons learned in using `lxml`
---------------------------------
* etree.parse() takes XML files/file objects and returns an ElementTree
* etree.XML() takes a string and returns an Element regardless of the content
* etree.ElementTree(root_element) converts an element into an ElementTree
* etree.XSLT() takes an ElementTree or Element object and returns a transformer object;
a transformer object should take an ElementTree (but seems to also take Element objects)
* the result of a transformation is an _XSLTResultTree which behaves like an ElementTree but submits to str()
from: https://lxml.de/xpathxslt.html#xslt-result-objects
It is possible to pass parameters, in the form of XPath expressions, to the XSLT template:
>>> xslt_tree = etree.XML('''\
... <xsl:stylesheet version="1.0"
... xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
... <xsl:param name="a" />
... <xsl:template match="/">
... <foo><xsl:value-of select="$a" /></foo>
... </xsl:template>
... </xsl:stylesheet>''')
>>> transform = etree.XSLT(xslt_tree)
>>> doc_root = etree.XML('<a><b>Text</b></a>')
The parameters are passed as keyword parameters to the transform call. First, let's try passing in a simple integer expression:
>>> result = transform(doc_root, a="5")
>>> str(result)
'<?xml version="1.0"?>\n<foo>5</foo>\n'
"""
import os
SFFTK_MIGRATIONS_VERSION = '0.1.0b7'
VERSION_LIST = [
'0.7.0.dev0',
'0.8.0.dev1'
]
TEST_DATA_PATH = os.path.join(os.path.dirname(__file__))
XSL = os.path.join(TEST_DATA_PATH, 'data', 'xsl')
XML = os.path.join(TEST_DATA_PATH, 'data', 'xml')
MIGRATIONS_PACKAGE = 'sfftk_migrate.migrations'
STYLESHEETS_DIR = os.path.join(os.path.dirname(__file__), 'stylesheets')
ENDIANNESS = {
"little": "<",
"big": ">",
}
MODE = {
"int8": "b",
"uint8": "B",
"int16": "h",
"uint16": "H",
"int32": "i",
"uint32": "I",
"int64": "q",
"uint64": "Q",
"float32": "f",
"float64": "d"
}
| 29.678899 | 127 | 0.678825 |
e9c9d816a148fcaa90837526278207a3fb99ed20 | 802 | py | Python | RTplzrunBlog/ThisandThat/1168.py | lkc263/Algorithm_Study_Python | 5b9a74ecf7e864c861df2280a1bf4b393b0fcbca | [
"MIT"
] | null | null | null | RTplzrunBlog/ThisandThat/1168.py | lkc263/Algorithm_Study_Python | 5b9a74ecf7e864c861df2280a1bf4b393b0fcbca | [
"MIT"
] | null | null | null | RTplzrunBlog/ThisandThat/1168.py | lkc263/Algorithm_Study_Python | 5b9a74ecf7e864c861df2280a1bf4b393b0fcbca | [
"MIT"
] | null | null | null | from sys import stdin as s
n, k = map(int, s.readline().split())
tree = [0] * 400005
init(1, 1, n)
x = k
print("<", end="")
for idx in range(0, n - 1):
print("%d, " % query(1, 1, n, x), end="")
x += k - 1
if x % tree[1] == 0:
x = tree[1]
else:
x %= tree[1]
print("%d" % query(1, 1, n, x), end="")
print(">")
| 19.095238 | 72 | 0.451372 |
e9ca0883ad077b45b1ec76d740903d31001f2d85 | 609 | py | Python | Python Advanced/File Handling/Exercise/directory_traversal.py | DonikaChervenkova/SoftUni | bff579c037ec48f39ed193b34bc3502a32e90732 | [
"MIT"
] | 1 | 2022-03-16T10:23:04.000Z | 2022-03-16T10:23:04.000Z | Python Advanced/Advanced/File Handling/Exercise/directory_traversal.py | IvanTodorovBG/SoftUni | 7b667f6905d9f695ab1484efbb02b6715f6d569e | [
"MIT"
] | null | null | null | Python Advanced/Advanced/File Handling/Exercise/directory_traversal.py | IvanTodorovBG/SoftUni | 7b667f6905d9f695ab1484efbb02b6715f6d569e | [
"MIT"
] | 1 | 2021-12-04T12:30:57.000Z | 2021-12-04T12:30:57.000Z | from os import listdir, path
files_by_ext = {}
traverse_dir(".", files_by_ext)
for ext, files in sorted(files_by_ext.items()):
print(f".{ext}")
for file in sorted(files):
print(f'---{file}')
| 27.681818 | 67 | 0.619048 |
e9cf0657e1bdcd66fa582464fcd1514ef88a229a | 263 | py | Python | server/api/serializers/letter.py | MePsyDuck/OAPS | ddbc69fbd11d1a02d37514d48f5dabe04cd23405 | [
"MIT"
] | null | null | null | server/api/serializers/letter.py | MePsyDuck/OAPS | ddbc69fbd11d1a02d37514d48f5dabe04cd23405 | [
"MIT"
] | null | null | null | server/api/serializers/letter.py | MePsyDuck/OAPS | ddbc69fbd11d1a02d37514d48f5dabe04cd23405 | [
"MIT"
] | null | null | null | from rest_framework import serializers
from api.models import Letter
| 26.3 | 98 | 0.692015 |
e9d02a79d3683b498fff07cac5f4adf3cfd6b53d | 356 | py | Python | applications/admin.py | Riphiphip/website | dc5bf64f24d5cf78661686af0281705f4d1d2576 | [
"MIT"
] | null | null | null | applications/admin.py | Riphiphip/website | dc5bf64f24d5cf78661686af0281705f4d1d2576 | [
"MIT"
] | null | null | null | applications/admin.py | Riphiphip/website | dc5bf64f24d5cf78661686af0281705f4d1d2576 | [
"MIT"
] | null | null | null | from django.contrib import admin
from .models import Application, ApplicationGroup, ApplicationPeriod
admin.site.register(Application, ApplicationAdmin)
admin.site.register(ApplicationGroup, ApplicationAdmin)
admin.site.register(ApplicationPeriod, ApplicationAdmin)
| 29.666667 | 68 | 0.803371 |
e9d6bbb09e450702b15b4ceb0a5be3a4e585501e | 7,237 | py | Python | flink_rest_client/v1/jars.py | frego-dev/flink-rest-client | e63e3bc4e6ec73a1a86adb3bfbc011087a5248bd | [
"MIT"
] | null | null | null | flink_rest_client/v1/jars.py | frego-dev/flink-rest-client | e63e3bc4e6ec73a1a86adb3bfbc011087a5248bd | [
"MIT"
] | null | null | null | flink_rest_client/v1/jars.py | frego-dev/flink-rest-client | e63e3bc4e6ec73a1a86adb3bfbc011087a5248bd | [
"MIT"
] | null | null | null | import ntpath
import os
from flink_rest_client.common import _execute_rest_request, RestException
| 30.92735 | 120 | 0.579107 |
e9d8b5a198128b03e1b20f916a54a13a506755fc | 112,962 | py | Python | earthy/wordlist.py | alvations/earthy | 29a4e01050a5fd46a0ad49cd0aedfd25cd8ba787 | [
"Apache-2.0"
] | 6 | 2017-05-09T18:12:00.000Z | 2017-12-22T16:26:35.000Z | earthy/wordlist.py | alvations/earthy | 29a4e01050a5fd46a0ad49cd0aedfd25cd8ba787 | [
"Apache-2.0"
] | 1 | 2017-05-09T05:40:32.000Z | 2017-05-09T05:40:32.000Z | earthy/wordlist.py | alvations/earthy | 29a4e01050a5fd46a0ad49cd0aedfd25cd8ba787 | [
"Apache-2.0"
] | null | null | null | # -*- coding: utf-8 -*-
import string
from charguana import get_charset
punctuations = set(list(string.punctuation) +
list(get_charset('Currency_Symbol')) +
list(get_charset('Close_Punctuation')) +
list(get_charset('Open_Punctuation')) +
list(get_charset('punctuation')))
# From https://raw.githubusercontent.com/6/stopwords-json/master/stopwords-all.json
stopwords = {"af":[u"'n",u"aan",u"af",u"al",u"as",u"baie",u"by",u"daar",u"dag",u"dat",u"die",u"dit",u"een",u"ek",u"en",u"gaan",u"ges",u"haar",u"het",u"hom",u"hulle",u"hy",u"in",u"is",u"jou",u"jy",u"kan",u"kom",u"ma",u"maar",u"met",u"my",u"na",u"nie",u"om",u"ons",u"op",u"saam",u"sal",u"se",u"sien",u"so",u"sy",u"te",u"toe",u"uit",u"van",u"vir",u"was",u"wat",u""],u"ha":[u"a",u"amma",u"ba",u"ban",u"ce",u"cikin",u"da",u"don",u"ga",u"in",u"ina",u"ita",u"ji",u"ka",u"ko",u"kuma",u"lokacin",u"ma",u"mai",u"na",u"ne",u"ni",u"sai",u"shi",u"su",u"suka",u"sun",u"ta",u"tafi",u"take",u"tana",u"wani",u"wannan",u"wata",u"ya",u"yake",u"yana",u"yi",u"za"],u"so":[u"aad",u"albaabkii",u"atabo",u"ay",u"ayaa",u"ayee",u"ayuu",u"dhan",u"hadana",u"in",u"inuu",u"isku",u"jiray",u"jirtay",u"ka",u"kale",u"kasoo",u"ku",u"kuu",u"lakin",u"markii",u"oo",u"si",u"soo",u"uga",u"ugu",u"uu",u"waa",u"waxa",u"waxuu"],u"st":[u"a",u"ba",u"bane",u"bona",u"e",u"ea",u"eaba",u"empa",u"ena",u"ha",u"hae",u"hape",u"ho",u"hore",u"ka",u"ke",u"la",u"le",u"li",u"me",u"mo",u"moo",u"ne",u"o",u"oa",u"re",u"sa",u"se",u"tloha",u"tsa",u"tse"],u"sw":[u"akasema",u"alikuwa",u"alisema",u"baada",u"basi",u"bila",u"cha",u"chini",u"hadi",u"hapo",u"hata",u"hivyo",u"hiyo",u"huku",u"huo",u"ili",u"ilikuwa",u"juu",u"kama",u"karibu",u"katika",u"kila",u"kima",u"kisha",u"kubwa",u"kutoka",u"kuwa",u"kwa",u"kwamba",u"kwenda",u"kwenye",u"la",u"lakini",u"mara",u"mdogo",u"mimi",u"mkubwa",u"mmoja",u"moja",u"muda",u"mwenye",u"na",u"naye",u"ndani",u"ng",u"ni",u"nini",u"nonkungu",u"pamoja",u"pia",u"sana",u"sasa",u"sauti",u"tafadhali",u"tena",u"tu",u"vile",u"wa",u"wakati",u"wake",u"walikuwa",u"wao",u"watu",u"wengine",u"wote",u"ya",u"yake",u"yangu",u"yao",u"yeye",u"yule",u"za",u"zaidi",u"zake"],u"yo":[u"a",u"an",u"b",u"b",u"br",u"fn",u"f",u"gbogbo",u"in",u"j",u"j",u"j",u"kan",u"k",u"k",u"k",u"lti",u"l",u"l",u"mi",u"mo",u"ma",u"m",u"ni",u"n",u"n",u"ngb",u"ntor",u"nkan",u"o",u"pad",u"p",u"pp",u"pl",u"r",u"s",u"s",u"sn",u"s",u"ti",u"t",u"w",u"w",u"wn",u"wn",u"y",u"ti",u"wn",u"",u"",u"un",u"",u"",u"l",u"e",u"",u"gbn",u"m",u"j",u"plp"],u"zu":[u"futhi",u"kahle",u"kakhulu",u"kanye",u"khona",u"kodwa",u"kungani",u"kusho",u"la",u"lakhe",u"lapho",u"mina",u"ngesikhathi",u"nje",u"phansi",u"phezulu",u"u",u"ukuba",u"ukuthi",u"ukuze",u"uma",u"wahamba",u"wakhe",u"wami",u"wase",u"wathi",u"yakhe",u"zakhe",u"zonke"],u"da":[u"af",u"alle",u"andet",u"andre",u"at",u"begge",u"da",u"de",u"den",u"denne",u"der",u"deres",u"det",u"dette",u"dig",u"din",u"dog",u"du",u"ej",u"eller",u"en",u"end",u"ene",u"eneste",u"enhver",u"et",u"fem",u"fire",u"flere",u"fleste",u"for",u"fordi",u"forrige",u"fra",u"f",u"fr",u"god",u"han",u"hans",u"har",u"hendes",u"her",u"hun",u"hvad",u"hvem",u"hver",u"hvilken",u"hvis",u"hvor",u"hvordan",u"hvorfor",u"hvornr",u"i",u"ikke",u"ind",u"ingen",u"intet",u"jeg",u"jeres",u"kan",u"kom",u"kommer",u"lav",u"lidt",u"lille",u"man",u"mand",u"mange",u"med",u"meget",u"men",u"mens",u"mere",u"mig",u"ned",u"ni",u"nogen",u"noget",u"ny",u"nyt",u"nr",u"nste",u"nsten",u"og",u"op",u"otte",u"over",u"p",u"se",u"seks",u"ses",u"som",u"stor",u"store",u"syv",u"ti",u"til",u"to",u"tre",u"ud",u"var"],u"de":[u"Ernst",u"Ordnung",u"Schluss",u"a",u"ab",u"aber",u"ach",u"acht",u"achte",u"achten",u"achter",u"achtes",u"ag",u"alle",u"allein",u"allem",u"allen",u"aller",u"allerdings",u"alles",u"allgemeinen",u"als",u"also",u"am",u"an",u"andere",u"anderen",u"andern",u"anders",u"au",u"auch",u"auf",u"aus",u"ausser",u"ausserdem",u"auer",u"auerdem",u"b",u"bald",u"bei",u"beide",u"beiden",u"beim",u"beispiel",u"bekannt",u"bereits",u"besonders",u"besser",u"besten",u"bin",u"bis",u"bisher",u"bist",u"c",u"d",u"d.h",u"da",u"dabei",u"dadurch",u"dafr",u"dagegen",u"daher",u"dahin",u"dahinter",u"damals",u"damit",u"danach",u"daneben",u"dank",u"dann",u"daran",u"darauf",u"daraus",u"darf",u"darfst",u"darin",u"darum",u"darunter",u"darber",u"das",u"dasein",u"daselbst",u"dass",u"dasselbe",u"davon",u"davor",u"dazu",u"dazwischen",u"da",u"dein",u"deine",u"deinem",u"deiner",u"dem",u"dementsprechend",u"demgegenber",u"demgemss",u"demgem",u"demselben",u"demzufolge",u"den",u"denen",u"denn",u"denselben",u"der",u"deren",u"derjenige",u"derjenigen",u"dermassen",u"dermaen",u"derselbe",u"derselben",u"des",u"deshalb",u"desselben",u"dessen",u"deswegen",u"dich",u"die",u"diejenige",u"diejenigen",u"dies",u"diese",u"dieselbe",u"dieselben",u"diesem",u"diesen",u"dieser",u"dieses",u"dir",u"doch",u"dort",u"drei",u"drin",u"dritte",u"dritten",u"dritter",u"drittes",u"du",u"durch",u"durchaus",u"durfte",u"durften",u"drfen",u"drft",u"e",u"eben",u"ebenso",u"ehrlich",u"ei",u"ei,u",u"eigen",u"eigene",u"eigenen",u"eigener",u"eigenes",u"ein",u"einander",u"eine",u"einem",u"einen",u"einer",u"eines",u"einige",u"einigen",u"einiger",u"einiges",u"einmal",u"eins",u"elf",u"en",u"ende",u"endlich",u"entweder",u"er",u"erst",u"erste",u"ersten",u"erster",u"erstes",u"es",u"etwa",u"etwas",u"euch",u"euer",u"eure",u"f",u"folgende",u"frher",u"fnf",u"fnfte",u"fnften",u"fnfter",u"fnftes",u"fr",u"g",u"gab",u"ganz",u"ganze",u"ganzen",u"ganzer",u"ganzes",u"gar",u"gedurft",u"gegen",u"gegenber",u"gehabt",u"gehen",u"geht",u"gekannt",u"gekonnt",u"gemacht",u"gemocht",u"gemusst",u"genug",u"gerade",u"gern",u"gesagt",u"geschweige",u"gewesen",u"gewollt",u"geworden",u"gibt",u"ging",u"gleich",u"gott",u"gross",u"grosse",u"grossen",u"grosser",u"grosses",u"gro",u"groe",u"groen",u"groer",u"groes",u"gut",u"gute",u"guter",u"gutes",u"h",u"habe",u"haben",u"habt",u"hast",u"hat",u"hatte",u"hatten",u"hattest",u"hattet",u"heisst",u"her",u"heute",u"hier",u"hin",u"hinter",u"hoch",u"htte",u"htten",u"i",u"ich",u"ihm",u"ihn",u"ihnen",u"ihr",u"ihre",u"ihrem",u"ihren",u"ihrer",u"ihres",u"im",u"immer",u"in",u"indem",u"infolgedessen",u"ins",u"irgend",u"ist",u"j",u"ja",u"jahr",u"jahre",u"jahren",u"je",u"jede",u"jedem",u"jeden",u"jeder",u"jedermann",u"jedermanns",u"jedes",u"jedoch",u"jemand",u"jemandem",u"jemanden",u"jene",u"jenem",u"jenen",u"jener",u"jenes",u"jetzt",u"k",u"kam",u"kann",u"kannst",u"kaum",u"kein",u"keine",u"keinem",u"keinen",u"keiner",u"kleine",u"kleinen",u"kleiner",u"kleines",u"kommen",u"kommt",u"konnte",u"konnten",u"kurz",u"knnen",u"knnt",u"knnte",u"l",u"lang",u"lange",u"leicht",u"leide",u"lieber",u"los",u"m",u"machen",u"macht",u"machte",u"mag",u"magst",u"mahn",u"mal",u"man",u"manche",u"manchem",u"manchen",u"mancher",u"manches",u"mann",u"mehr",u"mein",u"meine",u"meinem",u"meinen",u"meiner",u"meines",u"mensch",u"menschen",u"mich",u"mir",u"mit",u"mittel",u"mochte",u"mochten",u"morgen",u"muss",u"musst",u"musste",u"mussten",u"mu",u"mut",u"mchte",u"mgen",u"mglich",u"mgt",u"mssen",u"msst",u"mt",u"n",u"na",u"nach",u"nachdem",u"nahm",u"natrlich",u"neben",u"nein",u"neue",u"neuen",u"neun",u"neunte",u"neunten",u"neunter",u"neuntes",u"nicht",u"nichts",u"nie",u"niemand",u"niemandem",u"niemanden",u"noch",u"nun",u"nur",u"o",u"ob",u"oben",u"oder",u"offen",u"oft",u"ohne",u"p",u"q",u"r",u"recht",u"rechte",u"rechten",u"rechter",u"rechtes",u"richtig",u"rund",u"s",u"sa",u"sache",u"sagt",u"sagte",u"sah",u"satt",u"schlecht",u"schon",u"sechs",u"sechste",u"sechsten",u"sechster",u"sechstes",u"sehr",u"sei",u"seid",u"seien",u"sein",u"seine",u"seinem",u"seinen",u"seiner",u"seines",u"seit",u"seitdem",u"selbst",u"sich",u"sie",u"sieben",u"siebente",u"siebenten",u"siebenter",u"siebentes",u"sind",u"so",u"solang",u"solche",u"solchem",u"solchen",u"solcher",u"solches",u"soll",u"sollen",u"sollst",u"sollt",u"sollte",u"sollten",u"sondern",u"sonst",u"soweit",u"sowie",u"spter",u"startseite",u"statt",u"steht",u"suche",u"t",u"tag",u"tage",u"tagen",u"tat",u"teil",u"tel",u"tritt",u"trotzdem",u"tun",u"u",u"uhr",u"um",u"und",u"und?",u"uns",u"unser",u"unsere",u"unserer",u"unter",u"v",u"vergangenen",u"viel",u"viele",u"vielem",u"vielen",u"vielleicht",u"vier",u"vierte",u"vierten",u"vierter",u"viertes",u"vom",u"von",u"vor",u"w",u"wahr?",u"wann",u"war",u"waren",u"wart",u"warum",u"was",u"wegen",u"weil",u"weit",u"weiter",u"weitere",u"weiteren",u"weiteres",u"welche",u"welchem",u"welchen",u"welcher",u"welches",u"wem",u"wen",u"wenig",u"wenige",u"weniger",u"weniges",u"wenigstens",u"wenn",u"wer",u"werde",u"werden",u"werdet",u"weshalb",u"wessen",u"wie",u"wieder",u"wieso",u"will",u"willst",u"wir",u"wird",u"wirklich",u"wirst",u"wissen",u"wo",u"wohl",u"wollen",u"wollt",u"wollte",u"wollten",u"worden",u"wurde",u"wurden",u"whrend",u"whrenddem",u"whrenddessen",u"wre",u"wrde",u"wrden",u"x",u"y",u"z",u"z.b",u"zehn",u"zehnte",u"zehnten",u"zehnter",u"zehntes",u"zeit",u"zu",u"zuerst",u"zugleich",u"zum",u"zunchst",u"zur",u"zurck",u"zusammen",u"zwanzig",u"zwar",u"zwei",u"zweite",u"zweiten",u"zweiter",u"zweites",u"zwischen",u"zwlf",u"ber",u"berhaupt",u"brigens"],u"es":[u"a",u"actualmente",u"acuerdo",u"adelante",u"ademas",u"adems",u"adrede",u"afirm",u"agreg",u"ahi",u"ahora",u"ah",u"al",u"algo",u"alguna",u"algunas",u"alguno",u"algunos",u"algn",u"alli",u"all",u"alrededor",u"ambos",u"ampleamos",u"antano",u"antao",u"ante",u"anterior",u"antes",u"apenas",u"aproximadamente",u"aquel",u"aquella",u"aquellas",u"aquello",u"aquellos",u"aqui",u"aqul",u"aqulla",u"aqullas",u"aqullos",u"aqu",u"arriba",u"arribaabajo",u"asegur",u"asi",u"as",u"atras",u"aun",u"aunque",u"ayer",u"aadi",u"an",u"b",u"bajo",u"bastante",u"bien",u"breve",u"buen",u"buena",u"buenas",u"bueno",u"buenos",u"c",u"cada",u"casi",u"cerca",u"cierta",u"ciertas",u"cierto",u"ciertos",u"cinco",u"claro",u"coment",u"como",u"con",u"conmigo",u"conocer",u"conseguimos",u"conseguir",u"considera",u"consider",u"consigo",u"consigue",u"consiguen",u"consigues",u"contigo",u"contra",u"cosas",u"creo",u"cual",u"cuales",u"cualquier",u"cuando",u"cuanta",u"cuantas",u"cuanto",u"cuantos",u"cuatro",u"cuenta",u"cul",u"cules",u"cundo",u"cunta",u"cuntas",u"cunto",u"cuntos",u"cmo",u"d",u"da",u"dado",u"dan",u"dar",u"de",u"debajo",u"debe",u"deben",u"debido",u"decir",u"dej",u"del",u"delante",u"demasiado",u"dems",u"dentro",u"deprisa",u"desde",u"despacio",u"despues",u"despus",u"detras",u"detrs",u"dia",u"dias",u"dice",u"dicen",u"dicho",u"dieron",u"diferente",u"diferentes",u"dijeron",u"dijo",u"dio",u"donde",u"dos",u"durante",u"da",u"das",u"dnde",u"e",u"ejemplo",u"el",u"ella",u"ellas",u"ello",u"ellos",u"embargo",u"empleais",u"emplean",u"emplear",u"empleas",u"empleo",u"en",u"encima",u"encuentra",u"enfrente",u"enseguida",u"entonces",u"entre",u"era",u"eramos",u"eran",u"eras",u"eres",u"es",u"esa",u"esas",u"ese",u"eso",u"esos",u"esta",u"estaba",u"estaban",u"estado",u"estados",u"estais",u"estamos",u"estan",u"estar",u"estar",u"estas",u"este",u"esto",u"estos",u"estoy",u"estuvo",u"est",u"estn",u"ex",u"excepto",u"existe",u"existen",u"explic",u"expres",u"f",u"fin",u"final",u"fue",u"fuera",u"fueron",u"fui",u"fuimos",u"g",u"general",u"gran",u"grandes",u"gueno",u"h",u"ha",u"haber",u"habia",u"habla",u"hablan",u"habr",u"haba",u"haban",u"hace",u"haceis",u"hacemos",u"hacen",u"hacer",u"hacerlo",u"haces",u"hacia",u"haciendo",u"hago",u"han",u"hasta",u"hay",u"haya",u"he",u"hecho",u"hemos",u"hicieron",u"hizo",u"horas",u"hoy",u"hubo",u"i",u"igual",u"incluso",u"indic",u"informo",u"inform",u"intenta",u"intentais",u"intentamos",u"intentan",u"intentar",u"intentas",u"intento",u"ir",u"j",u"junto",u"k",u"l",u"la",u"lado",u"largo",u"las",u"le",u"lejos",u"les",u"lleg",u"lleva",u"llevar",u"lo",u"los",u"luego",u"lugar",u"m",u"mal",u"manera",u"manifest",u"mas",u"mayor",u"me",u"mediante",u"medio",u"mejor",u"mencion",u"menos",u"menudo",u"mi",u"mia",u"mias",u"mientras",u"mio",u"mios",u"mis",u"misma",u"mismas",u"mismo",u"mismos",u"modo",u"momento",u"mucha",u"muchas",u"mucho",u"muchos",u"muy",u"ms",u"m",u"ma",u"mas",u"mo",u"mos",u"n",u"nada",u"nadie",u"ni",u"ninguna",u"ningunas",u"ninguno",u"ningunos",u"ningn",u"no",u"nos",u"nosotras",u"nosotros",u"nuestra",u"nuestras",u"nuestro",u"nuestros",u"nueva",u"nuevas",u"nuevo",u"nuevos",u"nunca",u"o",u"ocho",u"os",u"otra",u"otras",u"otro",u"otros",u"p",u"pais",u"para",u"parece",u"parte",u"partir",u"pasada",u"pasado",u"pas",u"peor",u"pero",u"pesar",u"poca",u"pocas",u"poco",u"pocos",u"podeis",u"podemos",u"poder",u"podria",u"podriais",u"podriamos",u"podrian",u"podrias",u"podr",u"podrn",u"podra",u"podran",u"poner",u"por",u"porque",u"posible",u"primer",u"primera",u"primero",u"primeros",u"principalmente",u"pronto",u"propia",u"propias",u"propio",u"propios",u"proximo",u"prximo",u"prximos",u"pudo",u"pueda",u"puede",u"pueden",u"puedo",u"pues",u"q",u"qeu",u"que",u"qued",u"queremos",u"quien",u"quienes",u"quiere",u"quiza",u"quizas",u"quiz",u"quizs",u"quin",u"quines",u"qu",u"r",u"raras",u"realizado",u"realizar",u"realiz",u"repente",u"respecto",u"s",u"sabe",u"sabeis",u"sabemos",u"saben",u"saber",u"sabes",u"salvo",u"se",u"sea",u"sean",u"segun",u"segunda",u"segundo",u"segn",u"seis",u"ser",u"sera",u"ser",u"sern",u"sera",u"seal",u"si",u"sido",u"siempre",u"siendo",u"siete",u"sigue",u"siguiente",u"sin",u"sino",u"sobre",u"sois",u"sola",u"solamente",u"solas",u"solo",u"solos",u"somos",u"son",u"soy",u"soyos",u"su",u"supuesto",u"sus",u"suya",u"suyas",u"suyo",u"s",u"s",u"slo",u"t",u"tal",u"tambien",u"tambin",u"tampoco",u"tan",u"tanto",u"tarde",u"te",u"temprano",u"tendr",u"tendrn",u"teneis",u"tenemos",u"tener",u"tenga",u"tengo",u"tenido",u"tena",u"tercera",u"ti",u"tiempo",u"tiene",u"tienen",u"toda",u"todas",u"todavia",u"todava",u"todo",u"todos",u"total",u"trabaja",u"trabajais",u"trabajamos",u"trabajan",u"trabajar",u"trabajas",u"trabajo",u"tras",u"trata",u"travs",u"tres",u"tu",u"tus",u"tuvo",u"tuya",u"tuyas",u"tuyo",u"tuyos",u"t",u"u",u"ultimo",u"un",u"una",u"unas",u"uno",u"unos",u"usa",u"usais",u"usamos",u"usan",u"usar",u"usas",u"uso",u"usted",u"ustedes",u"v",u"va",u"vais",u"valor",u"vamos",u"van",u"varias",u"varios",u"vaya",u"veces",u"ver",u"verdad",u"verdadera",u"verdadero",u"vez",u"vosotras",u"vosotros",u"voy",u"vuestra",u"vuestras",u"vuestro",u"vuestros",u"w",u"x",u"y",u"ya",u"yo",u"z",u"l",u"sa",u"sas",u"se",u"sos",u"sta",u"stas",u"ste",u"stos",u"ltima",u"ltimas",u"ltimo",u"ltimos"],u"et":[u"aga",u"ei",u"et",u"ja",u"jah",u"kas",u"kui",u"kik",u"ma",u"me",u"mida",u"midagi",u"mind",u"minu",u"mis",u"mu",u"mul",u"mulle",u"nad",u"nii",u"oled",u"olen",u"oli",u"oma",u"on",u"pole",u"sa",u"seda",u"see",u"selle",u"siin",u"siis",u"ta",u"te",u"ra"],u"fi":[u"aiemmin",u"aika",u"aikaa",u"aikaan",u"aikaisemmin",u"aikaisin",u"aikajen",u"aikana",u"aikoina",u"aikoo",u"aikovat",u"aina",u"ainakaan",u"ainakin",u"ainoa",u"ainoat",u"aiomme",u"aion",u"aiotte",u"aist",u"aivan",u"ajan",u"alas",u"alemmas",u"alkuisin",u"alkuun",u"alla",u"alle",u"aloitamme",u"aloitan",u"aloitat",u"aloitatte",u"aloitattivat",u"aloitettava",u"aloitettevaksi",u"aloitettu",u"aloitimme",u"aloitin",u"aloitit",u"aloititte",u"aloittaa",u"aloittamatta",u"aloitti",u"aloittivat",u"alta",u"aluksi",u"alussa",u"alusta",u"annettavaksi",u"annetteva",u"annettu",u"ansiosta",u"antaa",u"antamatta",u"antoi",u"aoua",u"apu",u"asia",u"asiaa",u"asian",u"asiasta",u"asiat",u"asioiden",u"asioihin",u"asioita",u"asti",u"avuksi",u"avulla",u"avun",u"avutta",u"edelle",u"edelleen",u"edell",u"edelt",u"edemms",u"edes",u"edess",u"edest",u"ehk",u"ei",u"eik",u"eilen",u"eivt",u"eli",u"ellei",u"elleivt",u"ellemme",u"ellen",u"ellet",u"ellette",u"emme",u"en",u"enemmn",u"eniten",u"ennen",u"ensi",u"ensimminen",u"ensimmiseksi",u"ensimmisen",u"ensimmisen",u"ensimmiset",u"ensimmisiksi",u"ensimmisin",u"ensimmisi",u"ensimmist",u"ensin",u"entinen",u"entisen",u"entisi",u"entisten",u"entist",u"en",u"eri",u"erittin",u"erityisesti",u"eriden",u"ers",u"ert",u"esi",u"esiin",u"esill",u"esimerkiksi",u"et",u"eteen",u"etenkin",u"etessa",u"ette",u"ettei",u"ett",u"haikki",u"halua",u"haluaa",u"haluamatta",u"haluamme",u"haluan",u"haluat",u"haluatte",u"haluavat",u"halunnut",u"halusi",u"halusimme",u"halusin",u"halusit",u"halusitte",u"halusivat",u"halutessa",u"haluton",u"he",u"hei",u"heidn",u"heihin",u"heille",u"heilt",u"heiss",u"heist",u"heit",u"helposti",u"heti",u"hetkell",u"hieman",u"hitaasti",u"hoikein",u"huolimatta",u"huomenna",u"hyvien",u"hyviin",u"hyviksi",u"hyville",u"hyvilt",u"hyvin",u"hyvin",u"hyviss",u"hyvist",u"hyvi",u"hyv",u"hyvt",u"hyv",u"hn",u"hneen",u"hnelle",u"hnell",u"hnelt",u"hnen",u"hness",u"hnest",u"hnet",u"ihan",u"ilman",u"ilmeisesti",u"itse",u"itsens",u"itsen",u"ja",u"jo",u"johon",u"joiden",u"joihin",u"joiksi",u"joilla",u"joille",u"joilta",u"joissa",u"joista",u"joita",u"joka",u"jokainen",u"jokin",u"joko",u"joku",u"jolla",u"jolle",u"jolloin",u"jolta",u"jompikumpi",u"jonka",u"jonkin",u"jonne",u"joo",u"jopa",u"jos",u"joskus",u"jossa",u"josta",u"jota",u"jotain",u"joten",u"jotenkin",u"jotenkuten",u"jotka",u"jotta",u"jouduimme",u"jouduin",u"jouduit",u"jouduitte",u"joudumme",u"joudun",u"joudutte",u"joukkoon",u"joukossa",u"joukosta",u"joutua",u"joutui",u"joutuivat",u"joutumaan",u"joutuu",u"joutuvat",u"juuri",u"jlkeen",u"jlleen",u"j",u"kahdeksan",u"kahdeksannen",u"kahdella",u"kahdelle",u"kahdelta",u"kahden",u"kahdessa",u"kahdesta",u"kahta",u"kahteen",u"kai",u"kaiken",u"kaikille",u"kaikilta",u"kaikkea",u"kaikki",u"kaikkia",u"kaikkiaan",u"kaikkialla",u"kaikkialle",u"kaikkialta",u"kaikkien",u"kaikkin",u"kaksi",u"kannalta",u"kannattaa",u"kanssa",u"kanssaan",u"kanssamme",u"kanssani",u"kanssanne",u"kanssasi",u"kauan",u"kauemmas",u"kaukana",u"kautta",u"kehen",u"keiden",u"keihin",u"keiksi",u"keille",u"keill",u"keilt",u"kein",u"keiss",u"keist",u"keitten",u"keitt",u"keit",u"keneen",u"keneksi",u"kenelle",u"kenell",u"kenelt",u"kenen",u"kenen",u"keness",u"kenest",u"kenet",u"kenett",u"kennessst",u"kenties",u"kerran",u"kerta",u"kertaa",u"keskell",u"kesken",u"keskimrin",u"ketk",u"ket",u"kiitos",u"kohti",u"koko",u"kokonaan",u"kolmas",u"kolme",u"kolmen",u"kolmesti",u"koska",u"koskaan",u"kovin",u"kuin",u"kuinka",u"kuinkan",u"kuitenkaan",u"kuitenkin",u"kuka",u"kukaan",u"kukin",u"kukka",u"kumpainen",u"kumpainenkaan",u"kumpi",u"kumpikaan",u"kumpikin",u"kun",u"kuten",u"kuuden",u"kuusi",u"kuutta",u"kylliksi",u"kyll",u"kymmenen",u"kyse",u"liian",u"liki",u"lisksi",u"lis",u"lla",u"luo",u"luona",u"lhekkin",u"lhelle",u"lhell",u"lhelt",u"lhemms",u"lhes",u"lhinn",u"lhtien",u"lpi",u"mahdollisimman",u"mahdollista",u"me",u"meidn",u"meille",u"meill",u"melkein",u"melko",u"menee",u"meneet",u"menemme",u"menen",u"menet",u"menette",u"menevt",u"meni",u"menimme",u"menin",u"menit",u"menivt",u"menness",u"mennyt",u"menossa",u"mihin",u"mikin",u"miksi",u"mik",u"mikli",u"mikn",u"milloin",u"milloinkan",u"minne",u"minun",u"minut",u"min",u"miss",u"mist",u"miten",u"mit",u"mitn",u"moi",u"molemmat",u"mones",u"monesti",u"monet",u"moni",u"moniaalla",u"moniaalle",u"moniaalta",u"monta",u"muassa",u"muiden",u"muita",u"muka",u"mukaan",u"mukaansa",u"mukana",u"mutta",u"muu",u"muualla",u"muualle",u"muualta",u"muuanne",u"muulloin",u"muun",u"muut",u"muuta",u"muutama",u"muutaman",u"muuten",u"myhemmin",u"mys",u"myskin",u"myskn",u"myt",u"ne",u"nelj",u"neljn",u"nelj",u"niiden",u"niin",u"niist",u"niit",u"noin",u"nopeammin",u"nopeasti",u"nopeiten",u"nro",u"nuo",u"nyt",u"niden",u"nin",u"niss",u"nisshin",u"nisslle",u"nisslt",u"nissst",u"nit",u"nm",u"ohi",u"oikea",u"oikealla",u"oikein",u"ole",u"olemme",u"olen",u"olet",u"olette",u"oleva",u"olevan",u"olevat",u"oli",u"olimme",u"olin",u"olisi",u"olisimme",u"olisin",u"olisit",u"olisitte",u"olisivat",u"olit",u"olitte",u"olivat",u"olla",u"olleet",u"olli",u"ollut",u"oma",u"omaa",u"omaan",u"omaksi",u"omalle",u"omalta",u"oman",u"omassa",u"omat",u"omia",u"omien",u"omiin",u"omiksi",u"omille",u"omilta",u"omissa",u"omista",u"on",u"onkin",u"onko",u"ovat",u"paikoittain",u"paitsi",u"pakosti",u"paljon",u"paremmin",u"parempi",u"parhaillaan",u"parhaiten",u"perusteella",u"perti",u"pian",u"pieneen",u"pieneksi",u"pienelle",u"pienell",u"pienelt",u"pienempi",u"pienest",u"pieni",u"pienin",u"puolesta",u"puolestaan",u"plle",u"runsaasti",u"saakka",u"sadam",u"sama",u"samaa",u"samaan",u"samalla",u"samallalta",u"samallassa",u"samallasta",u"saman",u"samat",u"samoin",u"sata",u"sataa",u"satojen",u"se",u"seitsemn",u"sek",u"sen",u"seuraavat",u"siell",u"sielt",u"siihen",u"siin",u"siis",u"siit",u"sijaan",u"siksi",u"silloin",u"sill",u"silti",u"sinne",u"sinua",u"sinulle",u"sinulta",u"sinun",u"sinussa",u"sinusta",u"sinut",u"sin",u"siskkin",u"sisll",u"siten",u"sitten",u"sit",u"ssa",u"sta",u"suoraan",u"suuntaan",u"suuren",u"suuret",u"suuri",u"suuria",u"suurin",u"suurten",u"taa",u"taas",u"taemmas",u"tahansa",u"tai",u"takaa",u"takaisin",u"takana",u"takia",u"tapauksessa",u"tarpeeksi",u"tavalla",u"tavoitteena",u"te",u"tietysti",u"todella",u"toinen",u"toisaalla",u"toisaalle",u"toisaalta",u"toiseen",u"toiseksi",u"toisella",u"toiselle",u"toiselta",u"toisemme",u"toisen",u"toisensa",u"toisessa",u"toisesta",u"toista",u"toistaiseksi",u"toki",u"tosin",u"tuhannen",u"tuhat",u"tule",u"tulee",u"tulemme",u"tulen",u"tulet",u"tulette",u"tulevat",u"tulimme",u"tulin",u"tulisi",u"tulisimme",u"tulisin",u"tulisit",u"tulisitte",u"tulisivat",u"tulit",u"tulitte",u"tulivat",u"tulla",u"tulleet",u"tullut",u"tuntuu",u"tuo",u"tuolla",u"tuolloin",u"tuolta",u"tuonne",u"tuskin",u"tyk",u"thn",u"tll",u"tllin",u"tm",u"tmn",u"tnne",u"tn",u"tnn",u"tss",u"tst",u"tten",u"tt",u"tysin",u"tytyvt",u"tytyy",u"tll",u"tlt",u"ulkopuolella",u"usea",u"useasti",u"useimmiten",u"usein",u"useita",u"uudeksi",u"uudelleen",u"uuden",u"uudet",u"uusi",u"uusia",u"uusien",u"uusinta",u"uuteen",u"uutta",u"vaan",u"vahemmn",u"vai",u"vaiheessa",u"vaikea",u"vaikean",u"vaikeat",u"vaikeilla",u"vaikeille",u"vaikeilta",u"vaikeissa",u"vaikeista",u"vaikka",u"vain",u"varmasti",u"varsin",u"varsinkin",u"varten",u"vasen",u"vasenmalla",u"vasta",u"vastaan",u"vastakkain",u"vastan",u"verran",u"viel",u"vierekkin",u"vieress",u"vieri",u"viiden",u"viime",u"viimeinen",u"viimeisen",u"viimeksi",u"viisi",u"voi",u"voidaan",u"voimme",u"voin",u"voisi",u"voit",u"voitte",u"voivat",u"vuoden",u"vuoksi",u"vuosi",u"vuosien",u"vuosina",u"vuotta",u"vhemmn",u"vhintn",u"vhiten",u"vhn",u"vlill",u"yhdeksn",u"yhden",u"yhdess",u"yhteen",u"yhteens",u"yhteydess",u"yhteyteen",u"yht",u"yhtlle",u"yhtll",u"yhtlt",u"yhtn",u"yh",u"yksi",u"yksin",u"yksittin",u"yleens",u"ylemms",u"yli",u"yls",u"ympri",u"lkn",u"l"],u"fr":[u"a",u"abord",u"absolument",u"afin",u"ah",u"ai",u"aie",u"ailleurs",u"ainsi",u"ait",u"allaient",u"allo",u"allons",u"all",u"alors",u"anterieur",u"anterieure",u"anterieures",u"apres",u"aprs",u"as",u"assez",u"attendu",u"au",u"aucun",u"aucune",u"aujourd",u"aujourd'hui",u"aupres",u"auquel",u"aura",u"auraient",u"aurait",u"auront",u"aussi",u"autre",u"autrefois",u"autrement",u"autres",u"autrui",u"aux",u"auxquelles",u"auxquels",u"avaient",u"avais",u"avait",u"avant",u"avec",u"avoir",u"avons",u"ayant",u"b",u"bah",u"bas",u"basee",u"bat",u"beau",u"beaucoup",u"bien",u"bigre",u"boum",u"bravo",u"brrr",u"c",u"car",u"ce",u"ceci",u"cela",u"celle",u"celle-ci",u"celle-l",u"celles",u"celles-ci",u"celles-l",u"celui",u"celui-ci",u"celui-l",u"cent",u"cependant",u"certain",u"certaine",u"certaines",u"certains",u"certes",u"ces",u"cet",u"cette",u"ceux",u"ceux-ci",u"ceux-l",u"chacun",u"chacune",u"chaque",u"cher",u"chers",u"chez",u"chiche",u"chut",u"chre",u"chres",u"ci",u"cinq",u"cinquantaine",u"cinquante",u"cinquantime",u"cinquime",u"clac",u"clic",u"combien",u"comme",u"comment",u"comparable",u"comparables",u"compris",u"concernant",u"contre",u"couic",u"crac",u"d",u"da",u"dans",u"de",u"debout",u"dedans",u"dehors",u"deja",u"del",u"depuis",u"dernier",u"derniere",u"derriere",u"derrire",u"des",u"desormais",u"desquelles",u"desquels",u"dessous",u"dessus",u"deux",u"deuxime",u"deuximement",u"devant",u"devers",u"devra",u"different",u"differentes",u"differents",u"diffrent",u"diffrente",u"diffrentes",u"diffrents",u"dire",u"directe",u"directement",u"dit",u"dite",u"dits",u"divers",u"diverse",u"diverses",u"dix",u"dix-huit",u"dix-neuf",u"dix-sept",u"dixime",u"doit",u"doivent",u"donc",u"dont",u"douze",u"douzime",u"dring",u"du",u"duquel",u"durant",u"ds",u"dsormais",u"e",u"effet",u"egale",u"egalement",u"egales",u"eh",u"elle",u"elle-mme",u"elles",u"elles-mmes",u"en",u"encore",u"enfin",u"entre",u"envers",u"environ",u"es",u"est",u"et",u"etant",u"etc",u"etre",u"eu",u"euh",u"eux",u"eux-mmes",u"exactement",u"except",u"extenso",u"exterieur",u"f",u"fais",u"faisaient",u"faisant",u"fait",u"faon",u"feront",u"fi",u"flac",u"floc",u"font",u"g",u"gens",u"h",u"ha",u"hein",u"hem",u"hep",u"hi",u"ho",u"hol",u"hop",u"hormis",u"hors",u"hou",u"houp",u"hue",u"hui",u"huit",u"huitime",u"hum",u"hurrah",u"h",u"hlas",u"i",u"il",u"ils",u"importe",u"j",u"je",u"jusqu",u"jusque",u"juste",u"k",u"l",u"la",u"laisser",u"laquelle",u"las",u"le",u"lequel",u"les",u"lesquelles",u"lesquels",u"leur",u"leurs",u"longtemps",u"lors",u"lorsque",u"lui",u"lui-meme",u"lui-mme",u"l",u"ls",u"m",u"ma",u"maint",u"maintenant",u"mais",u"malgre",u"malgr",u"maximale",u"me",u"meme",u"memes",u"merci",u"mes",u"mien",u"mienne",u"miennes",u"miens",u"mille",u"mince",u"minimale",u"moi",u"moi-meme",u"moi-mme",u"moindres",u"moins",u"mon",u"moyennant",u"multiple",u"multiples",u"mme",u"mmes",u"n",u"na",u"naturel",u"naturelle",u"naturelles",u"ne",u"neanmoins",u"necessaire",u"necessairement",u"neuf",u"neuvime",u"ni",u"nombreuses",u"nombreux",u"non",u"nos",u"notamment",u"notre",u"nous",u"nous-mmes",u"nouveau",u"nul",u"nanmoins",u"ntre",u"ntres",u"o",u"oh",u"oh",u"oll",u"ol",u"on",u"ont",u"onze",u"onzime",u"ore",u"ou",u"ouf",u"ouias",u"oust",u"ouste",u"outre",u"ouvert",u"ouverte",u"ouverts",u"o|",u"o",u"p",u"paf",u"pan",u"par",u"parce",u"parfois",u"parle",u"parlent",u"parler",u"parmi",u"parseme",u"partant",u"particulier",u"particulire",u"particulirement",u"pas",u"pass",u"pendant",u"pense",u"permet",u"personne",u"peu",u"peut",u"peuvent",u"peux",u"pff",u"pfft",u"pfut",u"pif",u"pire",u"plein",u"plouf",u"plus",u"plusieurs",u"plutt",u"possessif",u"possessifs",u"possible",u"possibles",u"pouah",u"pour",u"pourquoi",u"pourrais",u"pourrait",u"pouvait",u"prealable",u"precisement",u"premier",u"premire",u"premirement",u"pres",u"probable",u"probante",u"procedant",u"proche",u"prs",u"psitt",u"pu",u"puis",u"puisque",u"pur",u"pure",u"q",u"qu",u"quand",u"quant",u"quant--soi",u"quanta",u"quarante",u"quatorze",u"quatre",u"quatre-vingt",u"quatrime",u"quatrimement",u"que",u"quel",u"quelconque",u"quelle",u"quelles",u"quelqu'un",u"quelque",u"quelques",u"quels",u"qui",u"quiconque",u"quinze",u"quoi",u"quoique",u"r",u"rare",u"rarement",u"rares",u"relative",u"relativement",u"remarquable",u"rend",u"rendre",u"restant",u"reste",u"restent",u"restrictif",u"retour",u"revoici",u"revoil",u"rien",u"s",u"sa",u"sacrebleu",u"sait",u"sans",u"sapristi",u"sauf",u"se",u"sein",u"seize",u"selon",u"semblable",u"semblaient",u"semble",u"semblent",u"sent",u"sept",u"septime",u"sera",u"seraient",u"serait",u"seront",u"ses",u"seul",u"seule",u"seulement",u"si",u"sien",u"sienne",u"siennes",u"siens",u"sinon",u"six",u"sixime",u"soi",u"soi-mme",u"soit",u"soixante",u"son",u"sont",u"sous",u"souvent",u"specifique",u"specifiques",u"speculatif",u"stop",u"strictement",u"subtiles",u"suffisant",u"suffisante",u"suffit",u"suis",u"suit",u"suivant",u"suivante",u"suivantes",u"suivants",u"suivre",u"superpose",u"sur",u"surtout",u"t",u"ta",u"tac",u"tant",u"tardive",u"te",u"tel",u"telle",u"tellement",u"telles",u"tels",u"tenant",u"tend",u"tenir",u"tente",u"tes",u"tic",u"tien",u"tienne",u"tiennes",u"tiens",u"toc",u"toi",u"toi-mme",u"ton",u"touchant",u"toujours",u"tous",u"tout",u"toute",u"toutefois",u"toutes",u"treize",u"trente",u"tres",u"trois",u"troisime",u"troisimement",u"trop",u"trs",u"tsoin",u"tsouin",u"tu",u"t",u"u",u"un",u"une",u"unes",u"uniformement",u"unique",u"uniques",u"uns",u"v",u"va",u"vais",u"vas",u"vers",u"via",u"vif",u"vifs",u"vingt",u"vivat",u"vive",u"vives",u"vlan",u"voici",u"voil",u"vont",u"vos",u"votre",u"vous",u"vous-mmes",u"vu",u"v",u"vtre",u"vtres",u"w",u"x",u"y",u"z",u"zut",u"",u"",u"a",u"s",u"taient",u"tais",u"tait",u"tant",u"t",u"tre",u""],u"hr":[u"a",u"ako",u"ali",u"bi",u"bih",u"bila",u"bili",u"bilo",u"bio",u"bismo",u"biste",u"biti",u"bumo",u"da",u"do",u"du",u"ga",u"hoe",u"hoemo",u"hoete",u"hoe",u"hou",u"i",u"iako",u"ih",u"ili",u"iz",u"ja",u"je",u"jedna",u"jedne",u"jedno",u"jer",u"jesam",u"jesi",u"jesmo",u"jest",u"jeste",u"jesu",u"jim",u"joj",u"jo",u"ju",u"kada",u"kako",u"kao",u"koja",u"koje",u"koji",u"kojima",u"koju",u"kroz",u"li",u"me",u"mene",u"meni",u"mi",u"mimo",u"moj",u"moja",u"moje",u"mu",u"na",u"nad",u"nakon",u"nam",u"nama",u"nas",u"na",u"naa",u"nae",u"naeg",u"ne",u"nego",u"neka",u"neki",u"nekog",u"neku",u"nema",u"netko",u"nee",u"neemo",u"neete",u"nee",u"neu",u"neto",u"ni",u"nije",u"nikoga",u"nikoje",u"nikoju",u"nisam",u"nisi",u"nismo",u"niste",u"nisu",u"njega",u"njegov",u"njegova",u"njegovo",u"njemu",u"njezin",u"njezina",u"njezino",u"njih",u"njihov",u"njihova",u"njihovo",u"njim",u"njima",u"njoj",u"nju",u"no",u"o",u"od",u"odmah",u"on",u"ona",u"oni",u"ono",u"ova",u"pa",u"pak",u"po",u"pod",u"pored",u"prije",u"s",u"sa",u"sam",u"samo",u"se",u"sebe",u"sebi",u"si",u"smo",u"ste",u"su",u"sve",u"svi",u"svog",u"svoj",u"svoja",u"svoje",u"svom",u"ta",u"tada",u"taj",u"tako",u"te",u"tebe",u"tebi",u"ti",u"to",u"toj",u"tome",u"tu",u"tvoj",u"tvoja",u"tvoje",u"u",u"uz",u"vam",u"vama",u"vas",u"va",u"vaa",u"vae",u"ve",u"vi",u"vrlo",u"za",u"zar",u"e",u"emo",u"ete",u"e",u"u",u"to"],u"hu":[u"a",u"abba",u"abban",u"abbl",u"addig",u"ahhoz",u"ahogy",u"ahol",u"aki",u"akik",u"akkor",u"akr",u"alapjn",u"alatt",u"alatta",u"alattad",u"alattam",u"alattatok",u"alattuk",u"alattunk",u"al",u"ald",u"aljuk",u"alm",u"alnk",u"altok",u"all",u"alla",u"allad",u"allam",u"allatok",u"alluk",u"allunk",u"amely",u"amelybol",u"amelyek",u"amelyekben",u"amelyeket",u"amelyet",u"amelyik",u"amelynek",u"ami",u"amikor",u"amit",u"amolyan",u"amott",u"amg",u"annak",u"annl",u"arra",u"arrl",u"attl",u"az",u"aznap",u"azok",u"azokat",u"azokba",u"azokban",u"azokbl",u"azokhoz",u"azokig",u"azokkal",u"azokk",u"azoknak",u"azoknl",u"azokon",u"azokra",u"azokrl",u"azoktl",u"azokrt",u"azon",u"azonban",u"azonnal",u"azt",u"aztn",u"azutn",u"azzal",u"azz",u"azrt",u"bal",u"balra",u"ban",u"be",u"bel",u"beld",u"beljk",u"belm",u"belnk",u"beltek",u"bell",u"belle",u"belled",u"bellem",u"belletek",u"bellk",u"bellnk",u"ben",u"benne",u"benned",u"bennem",u"bennetek",u"bennk",u"bennnk",u"br",u"brcsak",u"brmilyen",u"bcs",u"cikk",u"cikkek",u"cikkeket",u"csak",u"csakhogy",u"csupn",u"de",u"dehogy",u"e",u"ebbe",u"ebben",u"ebbl",u"eddig",u"egy",u"egyebek",u"egyebet",u"egyedl",u"egyelre",u"egyes",u"egyet",u"egyetlen",u"egyik",u"egyms",u"egyre",u"egyszerre",u"egyb",u"egytt",u"egsz",u"egszen",u"ehhez",u"ekkor",u"el",u"eleinte",u"ellen",u"ellenes",u"elleni",u"ellenre",u"elmondta",u"els",u"elsk",u"elssorban",u"elst",u"el",u"eld",u"elg",u"eljk",u"elm",u"elnk",u"eltek",u"el",u"elbb",u"ell",u"elle",u"elled",u"ellem",u"elletek",u"ellk",u"ellnk",u"elszr",u"eltt",u"eltte",u"eltted",u"elttem",u"elttetek",u"elttk",u"elttnk",u"elz",u"emilyen",u"engem",u"ennek",u"ennyi",u"ennl",u"enym",u"erre",u"errl",u"esetben",u"ettl",u"ez",u"ezek",u"ezekbe",u"ezekben",u"ezekbl",u"ezeken",u"ezeket",u"ezekhez",u"ezekig",u"ezekkel",u"ezekk",u"ezeknek",u"ezeknl",u"ezekre",u"ezekrl",u"ezektl",u"ezekrt",u"ezen",u"ezentl",u"ezer",u"ezret",u"ezt",u"ezutn",u"ezzel",u"ezz",u"ezrt",u"fel",u"fele",u"felek",u"felet",u"felett",u"fel",u"fent",u"fenti",u"fl",u"fl",u"gyakran",u"ha",u"hall",u"hamar",u"hanem",u"harmadik",u"harmadikat",u"harminc",u"hat",u"hatodik",u"hatodikat",u"hatot",u"hatvan",u"helyett",u"hetedik",u"hetediket",u"hetet",u"hetven",u"hirtelen",u"hiszen",u"hiba",u"hogy",u"hogyan",u"hol",u"holnap",u"holnapot",u"honnan",u"hova",u"hozz",u"hozzd",u"hozzjuk",u"hozzm",u"hozznk",u"hozztok",u"hurr",u"huszadik",u"hny",u"hnyszor",u"hrmat",u"hrom",u"ht",u"htha",u"htuls",u"ht",u"hsz",u"ide",u"ide-da",u"idn",u"igazn",u"igen",u"ill",u"illetve",u"ilyen",u"ilyenkor",u"immr",u"inkbb",u"is",u"ismt",u"ison",u"itt",u"jelenleg",u"jobban",u"jobbra",u"j",u"jl",u"jlesik",u"jval",u"jvre",u"kell",u"kellene",u"kellett",u"kelljen",u"keressnk",u"keresztl",u"ketten",u"kett",u"kettt",u"kevs",u"ki",u"kiben",u"kibl",u"kicsit",u"kicsoda",u"kihez",u"kik",u"kikbe",u"kikben",u"kikbl",u"kiken",u"kiket",u"kikhez",u"kikkel",u"kikk",u"kiknek",u"kiknl",u"kikre",u"kikrl",u"kiktl",u"kikrt",u"kilenc",u"kilencedik",u"kilencediket",u"kilencet",u"kilencven",u"kin",u"kinek",u"kinl",u"kire",u"kirl",u"kit",u"kitl",u"kivel",u"kiv",u"ki",u"kirt",u"korbban",u"kpest",u"krem",u"krlek",u"ksz",u"ks",u"ksbb",u"ksn",u"kt",u"ktszer",u"kvl",u"krl",u"ksznheten",u"ksznm",u"kzben",u"kzel",u"kzepesen",u"kzepn",u"kz",u"kztt",u"kzl",u"kln",u"klnben",u"klnbz",u"klnbzbb",u"klnbzek",u"lassan",u"le",u"legalbb",u"legyen",u"lehet",u"lehetetlen",u"lehetett",u"lehetleg",u"lehetsg",u"lenne",u"lenni",u"lennk",u"lennnek",u"lesz",u"leszek",u"lesznek",u"lesznk",u"lett",u"lettek",u"lettem",u"lettnk",u"lv",u"ma",u"maga",u"magad",u"magam",u"magatokat",u"magukat",u"magunkat",u"magt",u"mai",u"majd",u"majdnem",u"manapsg",u"meg",u"megcsinl",u"megcsinlnak",u"megint",u"megvan",u"mellett",u"mellette",u"melletted",u"mellettem",u"mellettetek",u"mellettk",u"mellettnk",u"mell",u"melld",u"melljk",u"mellm",u"mellnk",u"melltek",u"melll",u"mellle",u"mellled",u"melllem",u"mellletek",u"melllk",u"melllnk",u"mely",u"melyek",u"melyik",u"mennyi",u"mert",u"mi",u"miatt",u"miatta",u"miattad",u"miattam",u"miattatok",u"miattuk",u"miattunk",u"mibe",u"miben",u"mibl",u"mihez",u"mik",u"mikbe",u"mikben",u"mikbl",u"miken",u"miket",u"mikhez",u"mikkel",u"mikk",u"miknek",u"miknl",u"mikor",u"mikre",u"mikrl",u"miktl",u"mikrt",u"milyen",u"min",u"mind",u"mindegyik",u"mindegyiket",u"minden",u"mindenesetre",u"mindenki",u"mindent",u"mindentt",u"mindig",u"mindketten",u"minek",u"minket",u"mint",u"mintha",u"minl",u"mire",u"mirl",u"mit",u"mitl",u"mivel",u"miv",u"mirt",u"mondta",u"most",u"mostanig",u"mr",u"ms",u"msik",u"msikat",u"msnap",u"msodik",u"msodszor",u"msok",u"msokat",u"mst",u"mg",u"mgis",u"mg",u"mg",u"mgd",u"mgjk",u"mgm",u"mgnk",u"mgtek",u"mgtt",u"mgtte",u"mgtted",u"mgttem",u"mgttetek",u"mgttk",u"mgttnk",u"mgl",u"mgle",u"mgled",u"mglem",u"mgletek",u"mglk",u"mglnk",u"mltkor",u"mlva",u"na",u"nagy",u"nagyobb",u"nagyon",u"naponta",u"napot",u"ne",u"negyedik",u"negyediket",u"negyven",u"neked",u"nekem",u"neki",u"nekik",u"nektek",u"neknk",u"nem",u"nemcsak",u"nemrg",u"nincs",u"nyolc",u"nyolcadik",u"nyolcadikat",u"nyolcat",u"nyolcvan",u"nla",u"nlad",u"nlam",u"nlatok",u"nluk",u"nlunk",u"ngy",u"ngyet",u"nha",u"nhny",u"nlkl",u"o",u"oda",u"ok",u"olyan",u"onnan",u"ott",u"pedig",u"persze",u"pr",u"pldul",u"rajta",u"rajtad",u"rajtam",u"rajtatok",u"rajtuk",u"rajtunk",u"rendben",u"rosszul",u"r",u"rd",u"rjuk",u"rm",u"rnk",u"rtok",u"rgen",u"rgta",u"rszre",u"rla",u"rlad",u"rlam",u"rlatok",u"rluk",u"rlunk",u"rgtn",u"s",u"sajt",u"se",u"sem",u"semmi",u"semmilyen",u"semmisg",u"senki",u"soha",u"sok",u"sokan",u"sokat",u"sokkal",u"sokszor",u"sokig",u"sorn",u"stb.",u"szemben",u"szerbusz",u"szerint",u"szerinte",u"szerinted",u"szerintem",u"szerintetek",u"szerintk",u"szerintnk",u"szervusz",u"szinte",u"szmra",u"szz",u"szzadik",u"szzat",u"szpen",u"szt",u"szves",u"szvesen",u"szveskedjk",u"st",u"taln",u"tavaly",u"te",u"tegnap",u"tegnapeltt",u"teht",u"tele",u"teljes",u"tessk",u"ti",u"tied",u"titeket",u"tizedik",u"tizediket",u"tizenegy",u"tizenegyedik",u"tizenhat",u"tizenhrom",u"tizenht",u"tizenkettedik",u"tizenkett",u"tizenkilenc",u"tizenkt",u"tizennyolc",u"tizenngy",u"tizent",u"tizet",u"tovbb",u"tovbbi",u"tovbb",u"tvol",u"tged",u"tnyleg",u"tz",u"tbb",u"tbbi",u"tbbszr",u"tl",u"tle",u"tled",u"tlem",u"tletek",u"tlk",u"tlnk",u"ugyanakkor",u"ugyanez",u"ugyanis",u"ugye",u"urak",u"uram",u"urat",u"utoljra",u"utols",u"utn",u"utna",u"vagy",u"vagyis",u"vagyok",u"vagytok",u"vagyunk",u"vajon",u"valahol",u"valaki",u"valakit",u"valamelyik",u"valami",u"valamint",u"val",u"van",u"vannak",u"vele",u"veled",u"velem",u"veletek",u"velk",u"velnk",u"vissza",u"viszlt",u"viszont",u"viszontltsra",u"volna",u"volnnak",u"volnk",u"volt",u"voltak",u"voltam",u"voltunk",u"vgre",u"vgn",u"vgl",u"ltal",u"ltalban",u"m",u"t",u"ljen",u"n",u"ppen",u"rte",u"rted",u"rtem",u"rtetek",u"rtk",u"rtnk",u"s",u"v",u"vben",u"ve",u"vek",u"ves",u"vi",u"vvel",u"gy",u"ta",u"n",u"nbe",u"nben",u"nbl",u"nhz",u"nnek",u"nnel",u"nnl",u"nre",u"nrl",u"nt",u"ntl",u"nrt",u"nk",u"nkbe",u"nkben",u"nkbl",u"nket",u"nkhz",u"nkkel",u"nknek",u"nknl",u"nkre",u"nkrl",u"nktl",u"nkrt",u"nkn",u"nn",u"ssze",u"t",u"tven",u"tdik",u"tdiket",u"tt",u"gy",u"gyis",u"gynevezett",u"j",u"jabb",u"jra",u"r",u"",u"k",u"ket",u"t"],u"it":[u"IE",u"a",u"abbastanza",u"abbia",u"abbiamo",u"abbiano",u"abbiate",u"accidenti",u"ad",u"adesso",u"affinche",u"agl",u"agli",u"ahime",u"ahim",u"ai",u"al",u"alcuna",u"alcuni",u"alcuno",u"all",u"alla",u"alle",u"allo",u"allora",u"altri",u"altrimenti",u"altro",u"altrove",u"altrui",u"anche",u"ancora",u"anni",u"anno",u"ansa",u"anticipo",u"assai",u"attesa",u"attraverso",u"avanti",u"avemmo",u"avendo",u"avente",u"aver",u"avere",u"averlo",u"avesse",u"avessero",u"avessi",u"avessimo",u"aveste",u"avesti",u"avete",u"aveva",u"avevamo",u"avevano",u"avevate",u"avevi",u"avevo",u"avrai",u"avranno",u"avrebbe",u"avrebbero",u"avrei",u"avremmo",u"avremo",u"avreste",u"avresti",u"avrete",u"avr",u"avr",u"avuta",u"avute",u"avuti",u"avuto",u"basta",u"bene",u"benissimo",u"berlusconi",u"brava",u"bravo",u"c",u"casa",u"caso",u"cento",u"certa",u"certe",u"certi",u"certo",u"che",u"chi",u"chicchessia",u"chiunque",u"ci",u"ciascuna",u"ciascuno",u"cima",u"cio",u"cioe",u"cio",u"circa",u"citta",u"citt",u"ci",u"co",u"codesta",u"codesti",u"codesto",u"cogli",u"coi",u"col",u"colei",u"coll",u"coloro",u"colui",u"come",u"cominci",u"comunque",u"con",u"concernente",u"conciliarsi",u"conclusione",u"consiglio",u"contro",u"cortesia",u"cos",u"cosa",u"cosi",u"cos",u"cui",u"d",u"da",u"dagl",u"dagli",u"dai",u"dal",u"dall",u"dalla",u"dalle",u"dallo",u"dappertutto",u"davanti",u"degl",u"degli",u"dei",u"del",u"dell",u"della",u"delle",u"dello",u"dentro",u"detto",u"deve",u"di",u"dice",u"dietro",u"dire",u"dirimpetto",u"diventa",u"diventare",u"diventato",u"dopo",u"dov",u"dove",u"dovra",u"dovr",u"dovunque",u"due",u"dunque",u"durante",u"e",u"ebbe",u"ebbero",u"ebbi",u"ecc",u"ecco",u"ed",u"effettivamente",u"egli",u"ella",u"entrambi",u"eppure",u"era",u"erano",u"eravamo",u"eravate",u"eri",u"ero",u"esempio",u"esse",u"essendo",u"esser",u"essere",u"essi",u"ex",u"fa",u"faccia",u"facciamo",u"facciano",u"facciate",u"faccio",u"facemmo",u"facendo",u"facesse",u"facessero",u"facessi",u"facessimo",u"faceste",u"facesti",u"faceva",u"facevamo",u"facevano",u"facevate",u"facevi",u"facevo",u"fai",u"fanno",u"farai",u"faranno",u"fare",u"farebbe",u"farebbero",u"farei",u"faremmo",u"faremo",u"fareste",u"faresti",u"farete",u"far",u"far",u"fatto",u"favore",u"fece",u"fecero",u"feci",u"fin",u"finalmente",u"finche",u"fine",u"fino",u"forse",u"forza",u"fosse",u"fossero",u"fossi",u"fossimo",u"foste",u"fosti",u"fra",u"frattempo",u"fu",u"fui",u"fummo",u"fuori",u"furono",u"futuro",u"generale",u"gia",u"giacche",u"giorni",u"giorno",u"gi",u"gli",u"gliela",u"gliele",u"glieli",u"glielo",u"gliene",u"governo",u"grande",u"grazie",u"gruppo",u"ha",u"haha",u"hai",u"hanno",u"ho",u"i",u"ieri",u"il",u"improvviso",u"in",u"inc",u"infatti",u"inoltre",u"insieme",u"intanto",u"intorno",u"invece",u"io",u"l",u"la",u"lasciato",u"lato",u"lavoro",u"le",u"lei",u"li",u"lo",u"lontano",u"loro",u"lui",u"lungo",u"luogo",u"l",u"ma",u"macche",u"magari",u"maggior",u"mai",u"male",u"malgrado",u"malissimo",u"mancanza",u"marche",u"me",u"medesimo",u"mediante",u"meglio",u"meno",u"mentre",u"mesi",u"mezzo",u"mi",u"mia",u"mie",u"miei",u"mila",u"miliardi",u"milioni",u"minimi",u"ministro",u"mio",u"modo",u"molti",u"moltissimo",u"molto",u"momento",u"mondo",u"mosto",u"nazionale",u"ne",u"negl",u"negli",u"nei",u"nel",u"nell",u"nella",u"nelle",u"nello",u"nemmeno",u"neppure",u"nessun",u"nessuna",u"nessuno",u"niente",u"no",u"noi",u"non",u"nondimeno",u"nonostante",u"nonsia",u"nostra",u"nostre",u"nostri",u"nostro",u"novanta",u"nove",u"nulla",u"nuovo",u"o",u"od",u"oggi",u"ogni",u"ognuna",u"ognuno",u"oltre",u"oppure",u"ora",u"ore",u"osi",u"ossia",u"ottanta",u"otto",u"paese",u"parecchi",u"parecchie",u"parecchio",u"parte",u"partendo",u"peccato",u"peggio",u"per",u"perche",u"perch",u"perch",u"percio",u"perci",u"perfino",u"pero",u"persino",u"persone",u"per",u"piedi",u"pieno",u"piglia",u"piu",u"piuttosto",u"pi",u"po",u"pochissimo",u"poco",u"poi",u"poiche",u"possa",u"possedere",u"posteriore",u"posto",u"potrebbe",u"preferibilmente",u"presa",u"press",u"prima",u"primo",u"principalmente",u"probabilmente",u"proprio",u"puo",u"pure",u"purtroppo",u"pu",u"qualche",u"qualcosa",u"qualcuna",u"qualcuno",u"quale",u"quali",u"qualunque",u"quando",u"quanta",u"quante",u"quanti",u"quanto",u"quantunque",u"quasi",u"quattro",u"quel",u"quella",u"quelle",u"quelli",u"quello",u"quest",u"questa",u"queste",u"questi",u"questo",u"qui",u"quindi",u"realmente",u"recente",u"recentemente",u"registrazione",u"relativo",u"riecco",u"salvo",u"sara",u"sarai",u"saranno",u"sarebbe",u"sarebbero",u"sarei",u"saremmo",u"saremo",u"sareste",u"saresti",u"sarete",u"sar",u"sar",u"scola",u"scopo",u"scorso",u"se",u"secondo",u"seguente",u"seguito",u"sei",u"sembra",u"sembrare",u"sembrato",u"sembri",u"sempre",u"senza",u"sette",u"si",u"sia",u"siamo",u"siano",u"siate",u"siete",u"sig",u"solito",u"solo",u"soltanto",u"sono",u"sopra",u"sotto",u"spesso",u"srl",u"sta",u"stai",u"stando",u"stanno",u"starai",u"staranno",u"starebbe",u"starebbero",u"starei",u"staremmo",u"staremo",u"stareste",u"staresti",u"starete",u"star",u"star",u"stata",u"state",u"stati",u"stato",u"stava",u"stavamo",u"stavano",u"stavate",u"stavi",u"stavo",u"stemmo",u"stessa",u"stesse",u"stessero",u"stessi",u"stessimo",u"stesso",u"steste",u"stesti",u"stette",u"stettero",u"stetti",u"stia",u"stiamo",u"stiano",u"stiate",u"sto",u"su",u"sua",u"subito",u"successivamente",u"successivo",u"sue",u"sugl",u"sugli",u"sui",u"sul",u"sull",u"sulla",u"sulle",u"sullo",u"suo",u"suoi",u"tale",u"tali",u"talvolta",u"tanto",u"te",u"tempo",u"ti",u"titolo",u"torino",u"tra",u"tranne",u"tre",u"trenta",u"troppo",u"trovato",u"tu",u"tua",u"tue",u"tuo",u"tuoi",u"tutta",u"tuttavia",u"tutte",u"tutti",u"tutto",u"uguali",u"ulteriore",u"ultimo",u"un",u"una",u"uno",u"uomo",u"va",u"vale",u"vari",u"varia",u"varie",u"vario",u"verso",u"vi",u"via",u"vicino",u"visto",u"vita",u"voi",u"volta",u"volte",u"vostra",u"vostre",u"vostri",u"vostro",u""],u"ko":[u"!",u"\"",u"$",u"%",u"&",u"'",u"(",u")",u"*",u"+",u",u",u"-",u".",u"...",u"0",u"1",u"2",u"3",u"4",u"5",u"6",u"7",u"8",u"9",u";",u"<",u"=",u">",u"?",u"@",u"\\",u"^",u"_",u"`",u"|",u"~",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u"",u"",u"",u" ",u"",u" ",u"",u"",u"",u"",u"",u"",u"",u" ",u"",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u"",u" ",u" ",u"",u" ",u" ",u"",u"",u"",u"",u"",u" ",u"",u"",u"",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u"",u" ",u"",u"",u" ",u"",u"",u"",u"",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u" ",u"",u"",u"",u"",u" ",u"",u"",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u" ",u" ",u"",u"",u"",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u" ",u" ",u"",u"",u" ",u"",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u"",u" ",u"",u" ",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u" ",u" ",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u"",u"",u"",u"",u"",u" ",u" ",u" ",u" ",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u" ",u"",u"",u"",u"",u"",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u" ",u" ",u" ",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u"",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u" ",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u"",u" ",u" ",u"",u" ",u"",u"",u"",u"",u" ",u" ",u"",u" ",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u"",u"",u"",u"",u" ",u" ",u"",u"",u"",u"",u" ",u" ",u" ",u"",u" ",u"",u"",u"",u"",u"",u" ",u" ",u" ",u" ",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u" ",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u""],u"nl":[u"aan",u"achte",u"achter",u"af",u"al",u"alle",u"alleen",u"alles",u"als",u"ander",u"anders",u"beetje",u"behalve",u"beide",u"beiden",u"ben",u"beneden",u"bent",u"bij",u"bijna",u"bijv",u"blijkbaar",u"blijken",u"boven",u"bv",u"daar",u"daardoor",u"daarin",u"daarna",u"daarom",u"daaruit",u"dan",u"dat",u"de",u"deden",u"deed",u"derde",u"derhalve",u"dertig",u"deze",u"dhr",u"die",u"dit",u"doe",u"doen",u"doet",u"door",u"drie",u"duizend",u"echter",u"een",u"eens",u"eerst",u"eerste",u"eigen",u"eigenlijk",u"elk",u"elke",u"en",u"enige",u"er",u"erg",u"ergens",u"etc",u"etcetera",u"even",u"geen",u"genoeg",u"geweest",u"haar",u"haarzelf",u"had",u"hadden",u"heb",u"hebben",u"hebt",u"hedden",u"heeft",u"heel",u"hem",u"hemzelf",u"hen",u"het",u"hetzelfde",u"hier",u"hierin",u"hierna",u"hierom",u"hij",u"hijzelf",u"hoe",u"honderd",u"hun",u"ieder",u"iedere",u"iedereen",u"iemand",u"iets",u"ik",u"in",u"inderdaad",u"intussen",u"is",u"ja",u"je",u"jij",u"jijzelf",u"jou",u"jouw",u"jullie",u"kan",u"kon",u"konden",u"kun",u"kunnen",u"kunt",u"laatst",u"later",u"lijken",u"lijkt",u"maak",u"maakt",u"maakte",u"maakten",u"maar",u"mag",u"maken",u"me",u"meer",u"meest",u"meestal",u"men",u"met",u"mevr",u"mij",u"mijn",u"minder",u"miss",u"misschien",u"missen",u"mits",u"mocht",u"mochten",u"moest",u"moesten",u"moet",u"moeten",u"mogen",u"mr",u"mrs",u"mw",u"na",u"naar",u"nam",u"namelijk",u"nee",u"neem",u"negen",u"nemen",u"nergens",u"niemand",u"niet",u"niets",u"niks",u"noch",u"nochtans",u"nog",u"nooit",u"nu",u"nv",u"of",u"om",u"omdat",u"ondanks",u"onder",u"ondertussen",u"ons",u"onze",u"onzeker",u"ooit",u"ook",u"op",u"over",u"overal",u"overige",u"paar",u"per",u"recent",u"redelijk",u"samen",u"sinds",u"steeds",u"te",u"tegen",u"tegenover",u"thans",u"tien",u"tiende",u"tijdens",u"tja",u"toch",u"toe",u"tot",u"totdat",u"tussen",u"twee",u"tweede",u"u",u"uit",u"uw",u"vaak",u"van",u"vanaf",u"veel",u"veertig",u"verder",u"verscheidene",u"verschillende",u"via",u"vier",u"vierde",u"vijf",u"vijfde",u"vijftig",u"volgend",u"volgens",u"voor",u"voordat",u"voorts",u"waar",u"waarom",u"waarschijnlijk",u"wanneer",u"waren",u"was",u"wat",u"we",u"wederom",u"weer",u"weinig",u"wel",u"welk",u"welke",u"werd",u"werden",u"werder",u"whatever",u"wie",u"wij",u"wijzelf",u"wil",u"wilden",u"willen",u"word",u"worden",u"wordt",u"zal",u"ze",u"zei",u"zeker",u"zelf",u"zelfde",u"zes",u"zeven",u"zich",u"zij",u"zijn",u"zijzelf",u"zo",u"zoals",u"zodat",u"zou",u"zouden",u"zulk",u"zullen"],u"no":[u"alle",u"at",u"av",u"bare",u"begge",u"ble",u"blei",u"bli",u"blir",u"blitt",u"bde",u"be",u"da",u"de",u"deg",u"dei",u"deim",u"deira",u"deires",u"dem",u"den",u"denne",u"der",u"dere",u"deres",u"det",u"dette",u"di",u"din",u"disse",u"ditt",u"du",u"dykk",u"dykkar",u"d",u"eg",u"ein",u"eit",u"eitt",u"eller",u"elles",u"en",u"enn",u"er",u"et",u"ett",u"etter",u"for",u"fordi",u"fra",u"fr",u"ha",u"hadde",u"han",u"hans",u"har",u"hennar",u"henne",u"hennes",u"her",u"hj",u"ho",u"hoe",u"honom",u"hoss",u"hossen",u"hun",u"hva",u"hvem",u"hver",u"hvilke",u"hvilken",u"hvis",u"hvor",u"hvordan",u"hvorfor",u"i",u"ikke",u"ikkje",u"ingen",u"ingi",u"inkje",u"inn",u"inni",u"ja",u"jeg",u"kan",u"kom",u"korleis",u"korso",u"kun",u"kunne",u"kva",u"kvar",u"kvarhelst",u"kven",u"kvi",u"kvifor",u"man",u"mange",u"me",u"med",u"medan",u"meg",u"meget",u"mellom",u"men",u"mi",u"min",u"mine",u"mitt",u"mot",u"mykje",u"ned",u"no",u"noe",u"noen",u"noka",u"noko",u"nokon",u"nokor",u"nokre",u"n",u"nr",u"og",u"ogs",u"om",u"opp",u"oss",u"over",u"p",u"samme",u"seg",u"selv",u"si",u"sia",u"sidan",u"siden",u"sin",u"sine",u"sitt",u"sjl",u"skal",u"skulle",u"slik",u"so",u"som",u"somme",u"somt",u"s",u"snn",u"til",u"um",u"upp",u"ut",u"uten",u"var",u"vart",u"varte",u"ved",u"vere",u"verte",u"vi",u"vil",u"ville",u"vore",u"vors",u"vort",u"vr",u"vre",u"vrt",u""],u"pl":[u"aby",u"ach",u"aj",u"albo",u"ale",u"ani",u"a",u"bardzo",u"bez",u"bo",u"bowiem",u"by",u"byli",u"bym",u"by",u"by",u"bya",u"byo",u"byy",u"bdzie",u"bd",u"chce",u"cho",u"ci",u"ciebie",u"ci",u"co",u"coraz",u"co",u"czy",u"czyli",u"czsto",u"daleko",u"dla",u"dlaczego",u"dlatego",u"do",u"dobrze",u"dokd",u"do",u"dr",u"duo",u"dwa",u"dwaj",u"dwie",u"dwoje",u"dzisiaj",u"dzi",u"gdy",u"gdyby",u"gdy",u"gdzie",u"go",u"godz",u"hab",u"i",u"ich",u"ii",u"iii",u"ile",u"im",u"inne",u"inny",u"in",u"iv",u"ix",u"i",u"ja",u"jak",u"jakby",u"jaki",u"jakie",u"jako",u"je",u"jeden",u"jedna",u"jednak",u"jedno",u"jednym",u"jedynie",u"jego",u"jej",u"jemu",u"jest",u"jestem",u"jeszcze",u"jeli",u"jeeli",u"ju",u"j",u"kady",u"kiedy",u"kierunku",u"kilku",u"kto",u"ktra",u"ktre",u"ktrego",u"ktrej",u"ktry",u"ktrych",u"ktrym",u"ktrzy",u"ku",u"lat",u"lecz",u"lub",u"ma",u"maj",u"mam",u"mamy",u"mgr",u"mi",u"mia",u"mimo",u"mnie",u"mn",u"mog",u"moi",u"moja",u"moje",u"moe",u"mona",u"mu",u"musi",u"my",u"mj",u"na",u"nad",u"nam",u"nami",u"nas",u"nasi",u"nasz",u"nasza",u"nasze",u"natychmiast",u"nawet",u"nic",u"nich",u"nie",u"niego",u"niej",u"niemu",u"nigdy",u"nim",u"nimi",u"ni",u"ni",u"no",u"nowe",u"np",u"nr",u"o",u"o.o.",u"obok",u"od",u"ok",u"okoo",u"on",u"ona",u"one",u"oni",u"ono",u"oraz",u"owszem",u"pan",u"pl",u"po",u"pod",u"ponad",u"poniewa",u"poza",u"prof",u"przed",u"przede",u"przedtem",u"przez",u"przy",u"raz",u"razie",u"roku",u"rwnie",u"sam",u"sama",u"si",u"skd",u"sobie",u"sposb",u"swoje",u"s",u"ta",u"tak",u"taki",u"takich",u"takie",u"take",u"tam",u"te",u"tego",u"tej",u"tel",u"temu",u"ten",u"teraz",u"te",u"to",u"tobie",u"tob",u"trzeba",u"tu",u"tutaj",u"twoi",u"twoja",u"twoje",u"twj",u"ty",u"tych",u"tylko",u"tym",u"tys",u"tzw",u"t",u"u",u"ul",u"vi",u"vii",u"viii",u"vol",u"w",u"wam",u"wami",u"was",u"wasi",u"wasz",u"wasza",u"wasze",u"we",u"wie",u"wic",u"wszystko",u"wtedy",u"www",u"wy",u"wanie",u"wrd",u"xi",u"xii",u"xiii",u"xiv",u"xv",u"z",u"za",u"zawsze",u"za",u"ze",u"z",u"aden",u"e",u"eby"],u"pt":[u"a",u"acerca",u"adeus",u"agora",u"ainda",u"algmas",u"algo",u"algumas",u"alguns",u"ali",u"alm",u"ambos",u"ano",u"anos",u"antes",u"ao",u"aos",u"apenas",u"apoio",u"apontar",u"aps",u"aquela",u"aquelas",u"aquele",u"aqueles",u"aqui",u"aquilo",u"as",u"assim",u"atravs",u"atrs",u"at",u"a",u"baixo",u"bastante",u"bem",u"bom",u"breve",u"cada",u"caminho",u"catorze",u"cedo",u"cento",u"certamente",u"certeza",u"cima",u"cinco",u"coisa",u"com",u"como",u"comprido",u"conhecido",u"conselho",u"contra",u"corrente",u"custa",u"c",u"da",u"daquela",u"daquele",u"dar",u"das",u"de",u"debaixo",u"demais",u"dentro",u"depois",u"desde",u"desligado",u"dessa",u"desse",u"desta",u"deste",u"deve",u"devem",u"dever",u"dez",u"dezanove",u"dezasseis",u"dezassete",u"dezoito",u"dia",u"diante",u"direita",u"diz",u"dizem",u"dizer",u"do",u"dois",u"dos",u"doze",u"duas",u"d",u"do",u"dvida",u"e",u"ela",u"elas",u"ele",u"eles",u"em",u"embora",u"enquanto",u"entre",u"ento",u"era",u"essa",u"essas",u"esse",u"esses",u"esta",u"estado",u"estar",u"estar",u"estas",u"estava",u"este",u"estes",u"esteve",u"estive",u"estivemos",u"estiveram",u"estiveste",u"estivestes",u"estou",u"est",u"ests",u"esto",u"eu",u"exemplo",u"falta",u"far",u"favor",u"faz",u"fazeis",u"fazem",u"fazemos",u"fazer",u"fazes",u"fazia",u"fao",u"fez",u"fim",u"final",u"foi",u"fomos",u"for",u"fora",u"foram",u"forma",u"foste",u"fostes",u"fui",u"geral",u"grande",u"grandes",u"grupo",u"hoje",u"horas",u"h",u"iniciar",u"inicio",u"ir",u"ir",u"isso",u"ista",u"iste",u"isto",u"j",u"lado",u"ligado",u"local",u"logo",u"longe",u"lugar",u"l",u"maior",u"maioria",u"maiorias",u"mais",u"mal",u"mas",u"me",u"meio",u"menor",u"menos",u"meses",u"mesmo",u"meu",u"meus",u"mil",u"minha",u"minhas",u"momento",u"muito",u"muitos",u"mximo",u"ms",u"na",u"nada",u"naquela",u"naquele",u"nas",u"nem",u"nenhuma",u"nessa",u"nesse",u"nesta",u"neste",u"no",u"noite",u"nome",u"nos",u"nossa",u"nossas",u"nosso",u"nossos",u"nova",u"nove",u"novo",u"novos",u"num",u"numa",u"nunca",u"no",u"nvel",u"ns",u"nmero",u"o",u"obra",u"obrigada",u"obrigado",u"oitava",u"oitavo",u"oito",u"onde",u"ontem",u"onze",u"os",u"ou",u"outra",u"outras",u"outro",u"outros",u"para",u"parece",u"parte",u"partir",u"pegar",u"pela",u"pelas",u"pelo",u"pelos",u"perto",u"pessoas",u"pode",u"podem",u"poder",u"poder",u"podia",u"ponto",u"pontos",u"por",u"porque",u"porqu",u"posio",u"possivelmente",u"posso",u"possvel",u"pouca",u"pouco",u"povo",u"primeira",u"primeiro",u"promeiro",u"prprio",u"prximo",u"puderam",u"pde",u"pe",u"pem",u"qual",u"qualquer",u"quando",u"quanto",u"quarta",u"quarto",u"quatro",u"que",u"quem",u"quer",u"quero",u"questo",u"quieto",u"quinta",u"quinto",u"quinze",u"qu",u"relao",u"sabe",u"saber",u"se",u"segunda",u"segundo",u"sei",u"seis",u"sem",u"sempre",u"ser",u"seria",u"sete",u"seu",u"seus",u"sexta",u"sexto",u"sim",u"sistema",u"sob",u"sobre",u"sois",u"somente",u"somos",u"sou",u"sua",u"suas",u"so",u"stima",u"stimo",u"tal",u"talvez",u"tambm",u"tanto",u"tarde",u"te",u"tem",u"temos",u"tempo",u"tendes",u"tenho",u"tens",u"tentar",u"tentaram",u"tente",u"tentei",u"ter",u"terceira",u"terceiro",u"teu",u"teus",u"teve",u"tipo",u"tive",u"tivemos",u"tiveram",u"tiveste",u"tivestes",u"toda",u"todas",u"todo",u"todos",u"trabalhar",u"trabalho",u"treze",u"trs",u"tu",u"tua",u"tuas",u"tudo",u"to",u"tm",u"um",u"uma",u"umas",u"uns",u"usa",u"usar",u"vai",u"vais",u"valor",u"veja",u"vem",u"vens",u"ver",u"verdade",u"verdadeiro",u"vez",u"vezes",u"viagem",u"vindo",u"vinte",u"voc",u"vocs",u"vos",u"vossa",u"vossas",u"vosso",u"vossos",u"vrios",u"vo",u"vm",u"vs",u"zero",u"",u"s",u"rea",u"",u"s",u"ltimo"],u"ru":[u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u""],u"sv":[u"aderton",u"adertonde",u"adj",u"aldrig",u"alla",u"allas",u"allt",u"alltid",u"allts",u"andra",u"andras",u"annan",u"annat",u"artonde",u"artonn",u"att",u"av",u"bakom",u"bara",u"behva",u"behvas",u"behvde",u"behvt",u"beslut",u"beslutat",u"beslutit",u"bland",u"blev",u"bli",u"blir",u"blivit",u"bort",u"borta",u"bra",u"bst",u"bttre",u"bda",u"bdas",u"dag",u"dagar",u"dagarna",u"dagen",u"de",u"del",u"delen",u"dem",u"den",u"denna",u"deras",u"dess",u"dessa",u"det",u"detta",u"dig",u"din",u"dina",u"dit",u"ditt",u"dock",u"du",u"dr",u"drfr",u"d",u"efter",u"eftersom",u"ej",u"elfte",u"eller",u"elva",u"en",u"enkel",u"enkelt",u"enkla",u"enligt",u"er",u"era",u"ert",u"ett",u"ettusen",u"fanns",u"fem",u"femte",u"femtio",u"femtionde",u"femton",u"femtonde",u"fick",u"fin",u"finnas",u"finns",u"fjorton",u"fjortonde",u"fjrde",u"fler",u"flera",u"flesta",u"fram",u"framfr",u"frn",u"fyra",u"fyrtio",u"fyrtionde",u"f",u"fr",u"ftt",u"fljande",u"fr",u"fre",u"frlt",u"frra",u"frsta",u"genast",u"genom",u"gick",u"gjorde",u"gjort",u"god",u"goda",u"godare",u"godast",u"gott",u"glla",u"gller",u"gllt",u"grna",u"g",u"gr",u"gtt",u"gr",u"gra",u"ha",u"hade",u"haft",u"han",u"hans",u"har",u"heller",u"hellre",u"helst",u"helt",u"henne",u"hennes",u"hit",u"hon",u"honom",u"hundra",u"hundraen",u"hundraett",u"hur",u"hr",u"hg",u"hger",u"hgre",u"hgst",u"i",u"ibland",u"icke",u"idag",u"igen",u"igr",u"imorgon",u"in",u"infr",u"inga",u"ingen",u"ingenting",u"inget",u"innan",u"inne",u"inom",u"inte",u"inuti",u"ja",u"jag",u"ju",u"jmfrt",u"kan",u"kanske",u"knappast",u"kom",u"komma",u"kommer",u"kommit",u"kr",u"kunde",u"kunna",u"kunnat",u"kvar",u"legat",u"ligga",u"ligger",u"lika",u"likstlld",u"likstllda",u"lilla",u"lite",u"liten",u"litet",u"lnge",u"lngre",u"lngst",u"ltt",u"lttare",u"lttast",u"lngsam",u"lngsammare",u"lngsammast",u"lngsamt",u"lngt",u"man",u"med",u"mellan",u"men",u"mer",u"mera",u"mest",u"mig",u"min",u"mina",u"mindre",u"minst",u"mitt",u"mittemot",u"mot",u"mycket",u"mnga",u"mste",u"mjlig",u"mjligen",u"mjligt",u"mjligtvis",u"ned",u"nederst",u"nedersta",u"nedre",u"nej",u"ner",u"ni",u"nio",u"nionde",u"nittio",u"nittionde",u"nitton",u"nittonde",u"nog",u"noll",u"nr",u"nu",u"nummer",u"nr",u"nsta",u"ngon",u"ngonting",u"ngot",u"ngra",u"ndvndig",u"ndvndiga",u"ndvndigt",u"ndvndigtvis",u"och",u"ocks",u"ofta",u"oftast",u"olika",u"olikt",u"om",u"oss",u"p",u"rakt",u"redan",u"rtt",u"sade",u"sagt",u"samma",u"sedan",u"senare",u"senast",u"sent",u"sex",u"sextio",u"sextionde",u"sexton",u"sextonde",u"sig",u"sin",u"sina",u"sist",u"sista",u"siste",u"sitt",u"sitta",u"sju",u"sjunde",u"sjuttio",u"sjuttionde",u"sjutton",u"sjuttonde",u"sjlv",u"sjtte",u"ska",u"skall",u"skulle",u"slutligen",u"sm",u"smtt",u"snart",u"som",u"stor",u"stora",u"stort",u"strre",u"strst",u"sga",u"sger",u"smre",u"smst",u"s",u"sdan",u"sdana",u"sdant",u"tack",u"tidig",u"tidigare",u"tidigast",u"tidigt",u"till",u"tills",u"tillsammans",u"tio",u"tionde",u"tjugo",u"tjugoen",u"tjugoett",u"tjugonde",u"tjugotre",u"tjugotv",u"tjungo",u"tolfte",u"tolv",u"tre",u"tredje",u"trettio",u"trettionde",u"tretton",u"trettonde",u"tv",u"tvhundra",u"under",u"upp",u"ur",u"urskt",u"ut",u"utan",u"utanfr",u"ute",u"vad",u"var",u"vara",u"varfr",u"varifrn",u"varit",u"varje",u"varken",u"vars",u"varsgod",u"vart",u"vem",u"vems",u"verkligen",u"vi",u"vid",u"vidare",u"viktig",u"viktigare",u"viktigast",u"viktigt",u"vilka",u"vilkas",u"vilken",u"vilket",u"vill",u"vnster",u"vnstra",u"vrre",u"vr",u"vra",u"vrt",u"n",u"nnu",u"r",u"ven",u"t",u"tminstone",u"tta",u"ttio",u"ttionde",u"ttonde",u"ver",u"vermorgon",u"verst",u"vre"],u"tr":[u"acaba",u"acep",u"adeta",u"altm",u"altm",u"alt",u"alt",u"ama",u"ancak",u"arada",u"artk",u"aslnda",u"aynen",u"ayrca",u"az",u"bana",u"bari",u"bazen",u"baz",u"baz",u"baka",u"belki",u"ben",u"benden",u"beni",u"benim",u"beri",u"be",u"be",u"be",u"bile",u"bin",u"bir",u"biraz",u"biri",u"birka",u"birkez",u"birok",u"birey",u"bireyi",u"birey",u"bireyi",u"birey",u"biz",u"bizden",u"bize",u"bizi",u"bizim",u"bu",u"buna",u"bunda",u"bundan",u"bunlar",u"bunlar",u"bunlarn",u"bunu",u"bunun",u"burada",u"byle",u"bylece",u"btn",u"da",u"daha",u"dahi",u"dahil",u"daima",u"dair",u"dayanarak",u"de",u"defa",u"deil",u"deil",u"diye",u"dier",u"dier",u"doksan",u"dokuz",u"dolay",u"dolaysyla",u"drt",u"edecek",u"eden",u"ederek",u"edilecek",u"ediliyor",u"edilmesi",u"ediyor",u"elli",u"en",u"etmesi",u"etti",u"ettii",u"ettiini",u"eer",u"eer",u"fakat",u"gibi",u"gre",u"halbuki",u"halen",u"hangi",u"hani",u"hari",u"hatta",u"hele",u"hem",u"henz",u"hep",u"hepsi",u"her",u"herhangi",u"herkes",u"herkesin",u"hi",u"hibir",u"iken",u"iki",u"ila",u"ile",u"ilgili",u"ilk",u"illa",u"ise",u"itibaren",u"itibariyle",u"iyi",u"iyice",u"iin",u"ite",u"ite",u"kadar",u"kanmca",u"karn",u"katrilyon",u"kendi",u"kendilerine",u"kendini",u"kendisi",u"kendisine",u"kendisini",u"kere",u"kez",u"keke",u"ki",u"kim",u"kimden",u"kime",u"kimi",u"kimse",u"krk",u"ksaca",u"krk",u"lakin",u"madem",u"meer",u"milyar",u"milyon",u"mu",u"m",u"m",u"m",u"nasl",u"nasl",u"ne",u"neden",u"nedenle",u"nerde",u"nere",u"nerede",u"nereye",u"nitekim",u"niye",u"niin",u"o",u"olan",u"olarak",u"oldu",u"olduklarn",u"olduu",u"olduunu",u"olmad",u"olmad",u"olmak",u"olmas",u"olmayan",u"olmaz",u"olsa",u"olsun",u"olup",u"olur",u"olursa",u"oluyor",u"on",u"ona",u"ondan",u"onlar",u"onlardan",u"onlari",u"onlarn",u"onlar",u"onlarn",u"onu",u"onun",u"otuz",u"oysa",u"pek",u"ramen",u"sadece",u"sanki",u"sekiz",u"seksen",u"sen",u"senden",u"seni",u"senin",u"siz",u"sizden",u"sizi",u"sizin",u"sonra",u"tarafndan",u"trilyon",u"tm",u"var",u"vard",u"ve",u"veya",u"veyahut",u"ya",u"yahut",u"yani",u"yapacak",u"yapmak",u"yapt",u"yaptklar",u"yapt",u"yaptn",u"yaplan",u"yaplmas",u"yapyor",u"yedi",u"yerine",u"yetmi",u"yetmi",u"yetmi",u"yine",u"yirmi",u"yoksa",u"yz",u"zaten",u"ok",u"nk",u"yle",u"zere",u"",u"ey",u"eyden",u"eyi",u"eyler",u"u",u"una",u"unda",u"undan",u"unu",u"ey",u"eyden",u"eyi",u"eyler",u"u",u"una",u"unda",u"undan",u"unlar",u"unu",u"yle",u"ayet",u"imdi",u"u",u"yle"],u"zh":[u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u""],u"eo":[u"adia",u"ajn",u"al",u"ankora",u"anta",u"a",u"bonan",u"bonvole",u"bonvolu",u"bv",u"ci",u"cia",u"cian",u"cin",u"d-ro",u"da",u"de",u"dek",u"deka",u"do",u"doktor'",u"doktoro",u"du",u"dua",u"dum",u"eble",u"ekz",u"ekzemple",u"en",u"estas",u"estis",u"estos",u"estu",u"estus",u"e",u"f-no",u"felian",u"for",u"fralino",u"ha",u"havas",u"havis",u"havos",u"havu",u"havus",u"he",u"ho",u"hu",u"ili",u"ilia",u"ilian",u"ilin",u"inter",u"io",u"ion",u"iu",u"iujn",u"iun",u"ja",u"jam",u"je",u"jes",u"k",u"kaj",u"ke",u"kio",u"kion",u"kiu",u"kiujn",u"kiun",u"kvankam",u"kvar",u"kvara",u"kvaza",u"kvin",u"kvina",u"la",u"li",u"lia",u"lian",u"lin",u"malanta",u"male",u"malgra",u"mem",u"mi",u"mia",u"mian",u"min",u"minus",u"na",u"naa",u"ne",u"nek",u"nenio",u"nenion",u"neniu",u"neniun",u"nepre",u"ni",u"nia",u"nian",u"nin",u"nu",u"nun",u"nur",u"ok",u"oka",u"oni",u"onia",u"onian",u"onin",u"plej",u"pli",u"plu",u"plus",u"por",u"post",u"preter",u"s-no",u"s-ro",u"se",u"sed",u"sep",u"sepa",u"ses",u"sesa",u"si",u"sia",u"sian",u"sin",u"sinjor'",u"sinjorino",u"sinjoro",u"sub",u"super",u"supren",u"sur",u"tamen",u"tio",u"tion",u"tiu",u"tiujn",u"tiun",u"tra",u"tri",u"tria",u"tuj",u"tute",u"unu",u"unua",u"ve",u"verajne",u"vi",u"via",u"vian",u"vin",u"i",u"io",u"ion",u"iu",u"iujn",u"iun",u"u",u"i",u"ia",u"ian",u"in",u"is",u"us",u"i",u"ia",u"in"],u"he":[u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u""],u"la":[u"a",u"ab",u"ac",u"ad",u"at",u"atque",u"aut",u"autem",u"cum",u"de",u"dum",u"e",u"erant",u"erat",u"est",u"et",u"etiam",u"ex",u"haec",u"hic",u"hoc",u"in",u"ita",u"me",u"nec",u"neque",u"non",u"per",u"qua",u"quae",u"quam",u"qui",u"quibus",u"quidem",u"quo",u"quod",u"re",u"rebus",u"rem",u"res",u"sed",u"si",u"sic",u"sunt",u"tamen",u"tandem",u"te",u"ut",u"vel"],u"sk":[u"a",u"aby",u"aj",u"ako",u"ak",u"ale",u"alebo",u"ani",u"avak",u"ba",u"bez",u"bu",u"cez",u"do",u"ho",u"hoci",u"i",u"ich",u"im",u"ja",u"jeho",u"jej",u"jemu",u"ju",u"k",u"kam",u"kde",u"kede",u"ke",u"kto",u"ktor",u"ku",u"lebo",u"ma",u"mi",u"mne",u"mnou",u"mu",u"my",u"ma",u"mj",u"na",u"nad",u"nami",u"neho",u"nej",u"nemu",u"nich",u"nielen",u"nim",u"no",u"nm",u"ns",u"n",u"nm",u"o",u"od",u"on",u"ona",u"oni",u"ono",u"ony",u"po",u"pod",u"pre",u"pred",u"pri",u"s",u"sa",u"seba",u"sem",u"so",u"svoj",u"tak",u"tam",u"teba",u"tebe",u"tebou",u"tej",u"ten",u"ti",u"tie",u"to",u"toho",u"tomu",u"tou",u"tvoj",u"ty",u"t",u"tm",u"v",u"vami",u"ve",u"vo",u"vy",u"vm",u"vs",u"v",u"vak",u"z",u"za",u"zo",u"a",u"i",u"o",u"",u"om",u"ou",u"u",u"e"],u"sl":[u"a",u"ali",u"april",u"avgust",u"b",u"bi",u"bil",u"bila",u"bile",u"bili",u"bilo",u"biti",u"blizu",u"bo",u"bodo",u"bojo",u"bolj",u"bom",u"bomo",u"boste",u"bova",u"bo",u"brez",u"c",u"cel",u"cela",u"celi",u"celo",u"d",u"da",u"dale",u"dan",u"danes",u"datum",u"december",u"deset",u"deseta",u"deseti",u"deseto",u"devet",u"deveta",u"deveti",u"deveto",u"do",u"dober",u"dobra",u"dobri",u"dobro",u"dokler",u"dol",u"dolg",u"dolga",u"dolgi",u"dovolj",u"drug",u"druga",u"drugi",u"drugo",u"dva",u"dve",u"e",u"eden",u"en",u"ena",u"ene",u"eni",u"enkrat",u"eno",u"etc.",u"f",u"februar",u"g",u"g.",u"ga",u"ga.",u"gor",u"gospa",u"gospod",u"h",u"halo",u"i",u"idr.",u"ii",u"iii",u"in",u"iv",u"ix",u"iz",u"j",u"januar",u"jaz",u"je",u"ji",u"jih",u"jim",u"jo",u"julij",u"junij",u"jutri",u"k",u"kadarkoli",u"kaj",u"kajti",u"kako",u"kakor",u"kamor",u"kamorkoli",u"kar",u"karkoli",u"katerikoli",u"kdaj",u"kdo",u"kdorkoli",u"ker",u"ki",u"kje",u"kjer",u"kjerkoli",u"ko",u"koder",u"koderkoli",u"koga",u"komu",u"kot",u"kratek",u"kratka",u"kratke",u"kratki",u"l",u"lahka",u"lahke",u"lahki",u"lahko",u"le",u"lep",u"lepa",u"lepe",u"lepi",u"lepo",u"leto",u"m",u"maj",u"majhen",u"majhna",u"majhni",u"malce",u"malo",u"manj",u"marec",u"me",u"med",u"medtem",u"mene",u"mesec",u"mi",u"midva",u"midve",u"mnogo",u"moj",u"moja",u"moje",u"mora",u"morajo",u"moram",u"moramo",u"morate",u"mora",u"morem",u"mu",u"n",u"na",u"nad",u"naj",u"najina",u"najino",u"najmanj",u"naju",u"najve",u"nam",u"narobe",u"nas",u"nato",u"nazaj",u"na",u"naa",u"nae",u"ne",u"nedavno",u"nedelja",u"nek",u"neka",u"nekaj",u"nekatere",u"nekateri",u"nekatero",u"nekdo",u"neke",u"nekega",u"neki",u"nekje",u"neko",u"nekoga",u"neko",u"ni",u"nikamor",u"nikdar",u"nikjer",u"nikoli",u"ni",u"nje",u"njega",u"njegov",u"njegova",u"njegovo",u"njej",u"njemu",u"njen",u"njena",u"njeno",u"nji",u"njih",u"njihov",u"njihova",u"njihovo",u"njiju",u"njim",u"njo",u"njun",u"njuna",u"njuno",u"no",u"nocoj",u"november",u"npr.",u"o",u"ob",u"oba",u"obe",u"oboje",u"od",u"odprt",u"odprta",u"odprti",u"okoli",u"oktober",u"on",u"onadva",u"one",u"oni",u"onidve",u"osem",u"osma",u"osmi",u"osmo",u"oz.",u"p",u"pa",u"pet",u"peta",u"petek",u"peti",u"peto",u"po",u"pod",u"pogosto",u"poleg",u"poln",u"polna",u"polni",u"polno",u"ponavadi",u"ponedeljek",u"ponovno",u"potem",u"povsod",u"pozdravljen",u"pozdravljeni",u"prav",u"prava",u"prave",u"pravi",u"pravo",u"prazen",u"prazna",u"prazno",u"prbl.",u"precej",u"pred",u"prej",u"preko",u"pri",u"pribl.",u"priblino",u"primer",u"pripravljen",u"pripravljena",u"pripravljeni",u"proti",u"prva",u"prvi",u"prvo",u"r",u"ravno",u"redko",u"res",u"re",u"s",u"saj",u"sam",u"sama",u"same",u"sami",u"samo",u"se",u"sebe",u"sebi",u"sedaj",u"sedem",u"sedma",u"sedmi",u"sedmo",u"sem",u"september",u"seveda",u"si",u"sicer",u"skoraj",u"skozi",u"slab",u"smo",u"so",u"sobota",u"spet",u"sreda",u"srednja",u"srednji",u"sta",u"ste",u"stran",u"stvar",u"sva",u"t",u"ta",u"tak",u"taka",u"take",u"taki",u"tako",u"takoj",u"tam",u"te",u"tebe",u"tebi",u"tega",u"teak",u"teka",u"teki",u"teko",u"ti",u"tista",u"tiste",u"tisti",u"tisto",u"tj.",u"tja",u"to",u"toda",u"torek",u"tretja",u"tretje",u"tretji",u"tri",u"tu",u"tudi",u"tukaj",u"tvoj",u"tvoja",u"tvoje",u"u",u"v",u"vaju",u"vam",u"vas",u"va",u"vaa",u"vae",u"ve",u"vedno",u"velik",u"velika",u"veliki",u"veliko",u"vendar",u"ves",u"ve",u"vi",u"vidva",u"vii",u"viii",u"visok",u"visoka",u"visoke",u"visoki",u"vsa",u"vsaj",u"vsak",u"vsaka",u"vsakdo",u"vsake",u"vsaki",u"vsakomur",u"vse",u"vsega",u"vsi",u"vso",u"vasih",u"veraj",u"x",u"z",u"za",u"zadaj",u"zadnji",u"zakaj",u"zaprta",u"zaprti",u"zaprto",u"zdaj",u"zelo",u"zunaj",u"",u"e",u"esto",u"etrta",u"etrtek",u"etrti",u"etrto",u"ez",u"igav",u"",u"est",u"esta",u"esti",u"esto",u"tiri",u"",u"e"],u"br":[u"a",u"ainda",u"alem",u"ambas",u"ambos",u"antes",u"ao",u"aonde",u"aos",u"apos",u"aquele",u"aqueles",u"as",u"assim",u"com",u"como",u"contra",u"contudo",u"cuja",u"cujas",u"cujo",u"cujos",u"da",u"das",u"de",u"dela",u"dele",u"deles",u"demais",u"depois",u"desde",u"desta",u"deste",u"dispoe",u"dispoem",u"diversa",u"diversas",u"diversos",u"do",u"dos",u"durante",u"e",u"ela",u"elas",u"ele",u"eles",u"em",u"entao",u"entre",u"essa",u"essas",u"esse",u"esses",u"esta",u"estas",u"este",u"estes",u"ha",u"isso",u"isto",u"logo",u"mais",u"mas",u"mediante",u"menos",u"mesma",u"mesmas",u"mesmo",u"mesmos",u"na",u"nao",u"nas",u"nem",u"nesse",u"neste",u"nos",u"o",u"os",u"ou",u"outra",u"outras",u"outro",u"outros",u"pelas",u"pelo",u"pelos",u"perante",u"pois",u"por",u"porque",u"portanto",u"propios",u"proprio",u"quais",u"qual",u"qualquer",u"quando",u"quanto",u"que",u"quem",u"quer",u"se",u"seja",u"sem",u"sendo",u"seu",u"seus",u"sob",u"sobre",u"sua",u"suas",u"tal",u"tambem",u"teu",u"teus",u"toda",u"todas",u"todo",u"todos",u"tua",u"tuas",u"tudo",u"um",u"uma",u"umas",u"uns"],u"ca":[u"a",u"abans",u"ac",u"ah",u"aix",u"aix",u"al",u"aleshores",u"algun",u"alguna",u"algunes",u"alguns",u"alhora",u"all",u"all",u"all",u"als",u"altra",u"altre",u"altres",u"amb",u"ambdues",u"ambds",u"apa",u"aquell",u"aquella",u"aquelles",u"aquells",u"aquest",u"aquesta",u"aquestes",u"aquests",u"aqu",u"baix",u"cada",u"cadascuna",u"cadascunes",u"cadascuns",u"cadasc",u"com",u"contra",u"d'un",u"d'una",u"d'unes",u"d'uns",u"dalt",u"de",u"del",u"dels",u"des",u"desprs",u"dins",u"dintre",u"donat",u"doncs",u"durant",u"e",u"eh",u"el",u"els",u"em",u"en",u"encara",u"ens",u"entre",u"eren",u"es",u"esta",u"estaven",u"esteu",u"est",u"estvem",u"estveu",u"et",u"etc",u"ets",u"fins",u"fora",u"gaireb",u"ha",u"han",u"has",u"havia",u"he",u"hem",u"heu",u"hi",u"ho",u"i",u"igual",u"iguals",u"ja",u"l'hi",u"la",u"les",u"li",u"li'n",u"llavors",u"m'he",u"ma",u"mal",u"malgrat",u"mateix",u"mateixa",u"mateixes",u"mateixos",u"me",u"mentre",u"meu",u"meus",u"meva",u"meves",u"molt",u"molta",u"moltes",u"molts",u"mon",u"mons",u"ms",u"n'he",u"n'hi",u"ne",u"ni",u"no",u"nogensmenys",u"noms",u"nosaltres",u"nostra",u"nostre",u"nostres",u"o",u"oh",u"oi",u"on",u"pas",u"pel",u"pels",u"per",u"perqu",u"per",u"poc",u"poca",u"pocs",u"poques",u"potser",u"propi",u"qual",u"quals",u"quan",u"quant",u"que",u"quelcom",u"qui",u"quin",u"quina",u"quines",u"quins",u"qu",u"s'ha",u"s'han",u"sa",u"semblant",u"semblants",u"ses",u"seu",u"seus",u"seva",u"seves",u"si",u"sobre",u"sobretot",u"solament",u"sols",u"son",u"sons",u"sota",u"sou",u"sc",u"sn",u"t'ha",u"t'han",u"t'he",u"ta",u"tal",u"tamb",u"tampoc",u"tan",u"tant",u"tanta",u"tantes",u"teu",u"teus",u"teva",u"teves",u"ton",u"tons",u"tot",u"tota",u"totes",u"tots",u"un",u"una",u"unes",u"uns",u"us",u"va",u"vaig",u"vam",u"van",u"vas",u"veu",u"vosaltres",u"vostra",u"vostre",u"vostres",u"rem",u"reu",u"s"],u"cs":[u"a",u"aby",u"ahoj",u"aj",u"ale",u"anebo",u"ani",u"ano",u"asi",u"aspo",u"atd",u"atp",u"akoli",u"a",u"bez",u"beze",u"blzko",u"bohuel",u"brzo",u"bude",u"budem",u"budeme",u"budete",u"bude",u"budou",u"budu",u"by",u"byl",u"byla",u"byli",u"bylo",u"byly",u"bys",u"bt",u"bhem",u"chce",u"chceme",u"chcete",u"chce",u"chci",u"chtt",u"chtj",u"chut'",u"chuti",u"co",u"co",u"cz",u"daleko",u"dal",u"den",u"deset",u"devatenct",u"devt",u"dnes",u"do",u"dobr",u"docela",u"dva",u"dvacet",u"dvanct",u"dv",u"dl",u"dle",u"dkovat",u"dkujeme",u"dkuji",u"ho",u"hodn",u"i",u"jak",u"jakmile",u"jako",u"jako",u"jde",u"je",u"jeden",u"jedenct",u"jedna",u"jedno",u"jednou",u"jedou",u"jeho",u"jeho",u"jej",u"jejich",u"jej",u"jeliko",u"jemu",u"jen",u"jenom",u"jestli",u"jestlie",u"jet",u"je",u"ji",u"jich",u"jimi",u"jinak",u"jin",u"ji",u"jsem",u"jse",u"jsi",u"jsme",u"jsou",u"jste",u"j",u"j",u"jm",u"j",u"k",u"kam",u"kde",u"kdo",u"kdy",u"kdy",u"ke",u"kolik",u"krom",u"kterou",u"kter",u"kter",u"kter",u"kte",u"kvli",u"maj",u"mezi",u"mi",u"mne",u"mnou",u"mn",u"moc",u"mohl",u"mohou",u"moje",u"moji",u"mon",u"mus",u"my",u"m",u"mlo",u"mm",u"mme",u"mte",u"m",u"m",u"m",u"mt",u"m",u"mj",u"me",u"na",u"nad",u"nade",u"napite",u"naproti",u"nae",u"nae",u"nai",u"ne",u"nebo",u"nebyl",u"nebyla",u"nebyli",u"nebyly",u"nedlaj",u"nedl",u"nedlm",u"nedlme",u"nedlte",u"nedl",u"neg",u"nejsi",u"nejsou",u"nemaj",u"nemme",u"nemte",u"neml",u"nen",u"nesta",u"nevad",u"ne",u"nic",u"nich",u"nimi",u"nov",u"nov",u"nula",u"nm",u"nmi",u"ns",u"n",u"nm",u"n",u"nco",u"njak",u"nkde",u"nkdo",u"nmu",u"nmu",u"o",u"od",u"ode",u"on",u"ona",u"oni",u"ono",u"ony",u"osm",u"osmnct",u"pak",u"patnct",u"po",u"pod",u"podle",u"pokud",u"potom",u"pouze",u"pozd",u"pod",u"prav",u"pro",u"prost",u"prosm",u"proti",u"proto",u"protoe",u"pro",u"prvn",u"pta",u"pt",u"ped",u"pes",u"pese",u"pi",u"piem",u"re",u"rovn",u"s",u"se",u"sedm",u"sedmnct",u"si",u"skoro",u"sm",u"smj",u"snad",u"spolu",u"sta",u"sto",u"strana",u"st",u"sv",u"svch",u"svm",u"svmi",u"ta",u"tady",u"tak",u"takhle",u"taky",u"tak",u"take",u"tam",u"tamhle",u"tamhleto",u"tamto",u"tato",u"tebe",u"tebou",u"ted'",u"tedy",u"ten",u"tento",u"teto",u"ti",u"tipy",u"tisc",u"tisce",u"to",u"tob",u"tohle",u"toho",u"tohoto",u"tom",u"tomto",u"tomu",u"tomuto",u"toto",u"troku",u"tu",u"tuto",u"tvoje",u"tv",u"tv",u"tvj",u"ty",u"tyto",u"tma",u"tm",u"tmto",u"t",u"tm",u"tmu",u"teba",u"ti",u"tinct",u"u",u"urit",u"u",u"v",u"vae",u"vai",u"ve",u"vedle",u"veer",u"vlastn",u"vy",u"vm",u"vmi",u"vs",u"v",u"vce",u"vak",u"vechno",u"vichni",u"vbec",u"vdy",u"z",u"za",u"zatmco",u"za",u"zda",u"zde",u"ze",u"zprvy",u"zpt",u"au",u"i",u"lnku",u"lnky",u"trnct",u"tyi",u"est",u"estnct",u"e"],u"el":[u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u""],u"eu":[u"al",u"anitz",u"arabera",u"asko",u"baina",u"bat",u"batean",u"batek",u"bati",u"batzuei",u"batzuek",u"batzuetan",u"batzuk",u"bera",u"beraiek",u"berau",u"berauek",u"bere",u"berori",u"beroriek",u"beste",u"bezala",u"da",u"dago",u"dira",u"ditu",u"du",u"dute",u"edo",u"egin",u"ere",u"eta",u"eurak",u"ez",u"gainera",u"gu",u"gutxi",u"guzti",u"haiei",u"haiek",u"haietan",u"hainbeste",u"hala",u"han",u"handik",u"hango",u"hara",u"hari",u"hark",u"hartan",u"hau",u"hauei",u"hauek",u"hauetan",u"hemen",u"hemendik",u"hemengo",u"hi",u"hona",u"honek",u"honela",u"honetan",u"honi",u"hor",u"hori",u"horiei",u"horiek",u"horietan",u"horko",u"horra",u"horrek",u"horrela",u"horretan",u"horri",u"hortik",u"hura",u"izan",u"ni",u"noiz",u"nola",u"non",u"nondik",u"nongo",u"nor",u"nora",u"ze",u"zein",u"zen",u"zenbait",u"zenbat",u"zer",u"zergatik",u"ziren",u"zituen",u"zu",u"zuek",u"zuen",u"zuten"],u"ga":[u"a",u"ach",u"ag",u"agus",u"an",u"aon",u"ar",u"arna",u"as",u"b'",u"ba",u"beirt",u"bhr",u"caoga",u"ceathair",u"ceathrar",u"chomh",u"cht",u"chuig",u"chun",u"cois",u"cad",u"cig",u"cigear",u"d'",u"daichead",u"dar",u"de",u"deich",u"deichnir",u"den",u"dh",u"do",u"don",u"dt",u"d",u"dr",u"d",u"faoi",u"faoin",u"faoina",u"faoinr",u"fara",u"fiche",u"gach",u"gan",u"go",u"gur",u"haon",u"hocht",u"i",u"iad",u"idir",u"in",u"ina",u"ins",u"inr",u"is",u"le",u"leis",u"lena",u"lenr",u"m'",u"mar",u"mo",u"m",u"na",u"nach",u"naoi",u"naonr",u"n",u"n",u"nor",u"n",u"ncha",u"ocht",u"ochtar",u"os",u"roimh",u"sa",u"seacht",u"seachtar",u"seacht",u"seasca",u"seisear",u"siad",u"sibh",u"sinn",u"sna",u"s",u"s",u"tar",u"thar",u"th",u"trir",u"tr",u"trna",u"trnr",u"trocha",u"t",u"um",u"r",u"",u"is",u"",u"",u"n",u"na",u"nr"],u"gl":[u"a",u"al",u"ao",u"aos",u"aquel",u"aquela",u"aquelas",u"aqueles",u"aquilo",u"aqu",u"as",u"as",u"anda",u"ben",u"cando",u"che",u"co",u"coa",u"coas",u"comigo",u"con",u"connosco",u"contigo",u"convosco",u"cos",u"cun",u"cunha",u"cunhas",u"cuns",u"da",u"dalgunha",u"dalgunhas",u"dalgn",u"dalgns",u"das",u"de",u"del",u"dela",u"delas",u"deles",u"desde",u"deste",u"do",u"dos",u"dun",u"dunha",u"dunhas",u"duns",u"e",u"el",u"ela",u"elas",u"eles",u"en",u"era",u"eran",u"esa",u"esas",u"ese",u"eses",u"esta",u"estaba",u"estar",u"este",u"estes",u"estiven",u"estou",u"est",u"estn",u"eu",u"facer",u"foi",u"foron",u"fun",u"haba",u"hai",u"iso",u"isto",u"la",u"las",u"lle",u"lles",u"lo",u"los",u"mais",u"me",u"meu",u"meus",u"min",u"mia",u"mias",u"moi",u"na",u"nas",u"neste",u"nin",u"no",u"non",u"nos",u"nosa",u"nosas",u"noso",u"nosos",u"nun",u"nunha",u"nunhas",u"nuns",u"ns",u"o",u"os",u"ou",u"para",u"pero",u"pode",u"pois",u"pola",u"polas",u"polo",u"polos",u"por",u"que",u"se",u"senn",u"ser",u"seu",u"seus",u"sexa",u"sido",u"sobre",u"sa",u"sas",u"tamn",u"tan",u"te",u"ten",u"ter",u"teu",u"teus",u"teen",u"teo",u"ti",u"tido",u"tiven",u"tia",u"ta",u"tas",u"un",u"unha",u"unhas",u"uns",u"vos",u"vosa",u"vosas",u"voso",u"vosos",u"vs",u"",u"",u"",u"s"],u"hy":[u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u""],u"id":[u"ada",u"adalah",u"adanya",u"adapun",u"agak",u"agaknya",u"agar",u"akan",u"akankah",u"akhirnya",u"aku",u"akulah",u"amat",u"amatlah",u"anda",u"andalah",u"antar",u"antara",u"antaranya",u"apa",u"apaan",u"apabila",u"apakah",u"apalagi",u"apatah",u"atau",u"ataukah",u"ataupun",u"bagai",u"bagaikan",u"bagaimana",u"bagaimanakah",u"bagaimanapun",u"bagi",u"bahkan",u"bahwa",u"bahwasanya",u"banyak",u"beberapa",u"begini",u"beginian",u"beginikah",u"beginilah",u"begitu",u"begitukah",u"begitulah",u"begitupun",u"belum",u"belumlah",u"berapa",u"berapakah",u"berapalah",u"berapapun",u"bermacam",u"bersama",u"betulkah",u"biasa",u"biasanya",u"bila",u"bilakah",u"bisa",u"bisakah",u"boleh",u"bolehkah",u"bolehlah",u"buat",u"bukan",u"bukankah",u"bukanlah",u"bukannya",u"cuma",u"dahulu",u"dalam",u"dan",u"dapat",u"dari",u"daripada",u"dekat",u"demi",u"demikian",u"demikianlah",u"dengan",u"depan",u"di",u"dia",u"dialah",u"diantara",u"diantaranya",u"dikarenakan",u"dini",u"diri",u"dirinya",u"disini",u"disinilah",u"dong",u"dulu",u"enggak",u"enggaknya",u"entah",u"entahlah",u"hal",u"hampir",u"hanya",u"hanyalah",u"harus",u"haruslah",u"harusnya",u"hendak",u"hendaklah",u"hendaknya",u"hingga",u"ia",u"ialah",u"ibarat",u"ingin",u"inginkah",u"inginkan",u"ini",u"inikah",u"inilah",u"itu",u"itukah",u"itulah",u"jangan",u"jangankan",u"janganlah",u"jika",u"jikalau",u"juga",u"justru",u"kala",u"kalau",u"kalaulah",u"kalaupun",u"kalian",u"kami",u"kamilah",u"kamu",u"kamulah",u"kan",u"kapan",u"kapankah",u"kapanpun",u"karena",u"karenanya",u"ke",u"kecil",u"kemudian",u"kenapa",u"kepada",u"kepadanya",u"ketika",u"khususnya",u"kini",u"kinilah",u"kiranya",u"kita",u"kitalah",u"kok",u"lagi",u"lagian",u"lah",u"lain",u"lainnya",u"lalu",u"lama",u"lamanya",u"lebih",u"macam",u"maka",u"makanya",u"makin",u"malah",u"malahan",u"mampu",u"mampukah",u"mana",u"manakala",u"manalagi",u"masih",u"masihkah",u"masing",u"mau",u"maupun",u"melainkan",u"melalui",u"memang",u"mengapa",u"mereka",u"merekalah",u"merupakan",u"meski",u"meskipun",u"mungkin",u"mungkinkah",u"nah",u"namun",u"nanti",u"nantinya",u"nyaris",u"oleh",u"olehnya",u"pada",u"padahal",u"padanya",u"paling",u"pantas",u"para",u"pasti",u"pastilah",u"per",u"percuma",u"pernah",u"pula",u"pun",u"rupanya",u"saat",u"saatnya",u"saja",u"sajalah",u"saling",u"sama",u"sambil",u"sampai",u"sana",u"sangat",u"sangatlah",u"saya",u"sayalah",u"se",u"sebab",u"sebabnya",u"sebagai",u"sebagaimana",u"sebagainya",u"sebaliknya",u"sebanyak",u"sebegini",u"sebegitu",u"sebelum",u"sebelumnya",u"sebenarnya",u"seberapa",u"sebetulnya",u"sebisanya",u"sebuah",u"sedang",u"sedangkan",u"sedemikian",u"sedikit",u"sedikitnya",u"segala",u"segalanya",u"segera",u"seharusnya",u"sehingga",u"sejak",u"sejenak",u"sekali",u"sekalian",u"sekaligus",u"sekalipun",u"sekarang",u"seketika",u"sekiranya",u"sekitar",u"sekitarnya",u"sela",u"selagi",u"selain",u"selaku",u"selalu",u"selama",u"selamanya",u"seluruh",u"seluruhnya",u"semacam",u"semakin",u"semasih",u"semaunya",u"sementara",u"sempat",u"semua",u"semuanya",u"semula",u"sendiri",u"sendirinya",u"seolah",u"seorang",u"sepanjang",u"sepantasnya",u"sepantasnyalah",u"seperti",u"sepertinya",u"sering",u"seringnya",u"serta",u"serupa",u"sesaat",u"sesama",u"sesegera",u"sesekali",u"seseorang",u"sesuatu",u"sesuatunya",u"sesudah",u"sesudahnya",u"setelah",u"seterusnya",u"setiap",u"setidaknya",u"sewaktu",u"siapa",u"siapakah",u"siapapun",u"sini",u"sinilah",u"suatu",u"sudah",u"sudahkah",u"sudahlah",u"supaya",u"tadi",u"tadinya",u"tak",u"tanpa",u"tapi",u"telah",u"tentang",u"tentu",u"tentulah",u"tentunya",u"terdiri",u"terhadap",u"terhadapnya",u"terlalu",u"terlebih",u"tersebut",u"tersebutlah",u"tertentu",u"tetapi",u"tiap",u"tidak",u"tidakkah",u"tidaklah",u"toh",u"waduh",u"wah",u"wahai",u"walau",u"walaupun",u"wong",u"yaitu",u"yakni",u"yang"],u"ja":[u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u""],u"lv":[u"aiz",u"ap",u"apak",u"apakpus",u"ar",u"ar",u"augpus",u"bet",u"bez",u"bija",u"biji",u"biju",u"bijm",u"bijt",u"bs",u"bsi",u"bsiet",u"bsim",u"bt",u"bu",u"caur",u"dieml",u"diezin",u"droi",u"d",u"esam",u"esat",u"esi",u"esmu",u"gan",u"gar",u"iekam",u"iekams",u"iekm",u"iekms",u"iek",u"iekpus",u"ik",u"ir",u"it",u"itin",u"iz",u"ja",u"jau",u"jeb",u"jebu",u"jel",u"jo",u"j",u"ka",u"kamr",u"kaut",u"koldz",u"kop",u"k",u"kuva",u"kuvi",u"kuvu",u"kuvm",u"kuvt",u"ks",u"ksi",u"ksiet",u"ksim",u"kst",u"kstam",u"kstat",u"ksti",u"kstu",u"kt",u"ku",u"labad",u"lai",u"lejpus",u"ldz",u"ldzko",u"ne",u"nebt",u"nedz",u"nek",u"nevis",u"nezin",u"no",u"nu",u"n",u"otrpus",u"pa",u"par",u"pat",u"pie",u"pirms",u"pret",u"priek",u"pr",u"pc",u"starp",u"tad",u"tak",u"tapi",u"taps",u"tapsi",u"tapsiet",u"tapsim",u"tapt",u"tapt",u"tapu",u"tau",u"te",u"tiec",u"tiek",u"tiekam",u"tiekat",u"tieku",u"tik",u"tika",u"tikai",u"tiki",u"tikko",u"tiklab",u"tikldz",u"tiks",u"tiksiet",u"tiksim",u"tikt",u"tiku",u"tikvien",u"tikm",u"tikt",u"tiku",u"tomr",u"topat",u"turpretim",u"turpret",u"t",u"td",u"tlab",u"tpc",u"un",u"uz",u"vai",u"var",u"varat",u"varja",u"varji",u"varju",u"varjm",u"varjt",u"vars",u"varsi",u"varsiet",u"varsim",u"vart",u"varu",u"vien",u"virs",u"virspus",u"vis",u"vipus",u"zem",u"rpus",u"aipus"],u"th":[u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u""],u"ar":[u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"6",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u""],u"bg":[u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"..",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u""],u"bn":[u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u""],u"fa":[u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u""],u"hi":[u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u""],u"mr":[u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u"",u""],u"ro":[u"acea",u"aceasta",u"aceast",u"aceea",u"acei",u"aceia",u"acel",u"acela",u"acele",u"acelea",u"acest",u"acesta",u"aceste",u"acestea",u"aceti",u"acetia",u"acolo",u"acord",u"acum",u"ai",u"aia",u"aib",u"aici",u"al",u"ale",u"alea",u"altceva",u"altcineva",u"am",u"ar",u"are",u"asemenea",u"asta",u"astea",u"astzi",u"asupra",u"au",u"avea",u"avem",u"avei",u"azi",u"a",u"aadar",u"ai",u"bine",u"bucur",u"bun",u"ca",u"care",u"caut",u"ce",u"cel",u"ceva",u"chiar",u"cinci",u"cine",u"cineva",u"contra",u"cu",u"cum",u"cumva",u"curnd",u"curnd",u"cnd",u"ct",u"cte",u"ctva",u"ci",u"cnd",u"ct",u"cte",u"ctva",u"ci",u"c",u"cci",u"crei",u"cror",u"crui",u"ctre",u"da",u"dac",u"dar",u"datorit",u"dat",u"dau",u"de",u"deci",u"deja",u"deoarece",u"departe",u"dei",u"din",u"dinaintea",u"dintr-",u"dintre",u"doi",u"doilea",u"dou",u"drept",u"dup",u"d",u"ea",u"ei",u"el",u"ele",u"eram",u"este",u"eu",u"eti",u"face",u"fata",u"fi",u"fie",u"fiecare",u"fii",u"fim",u"fiu",u"fii",u"frumos",u"fr",u"graie",u"halb",u"iar",u"ieri",u"la",u"le",u"li",u"lor",u"lui",u"lng",u"lng",u"mai",u"mea",u"mei",u"mele",u"mereu",u"meu",u"mi",u"mie",u"mine",u"mult",u"mult",u"muli",u"mulumesc",u"mine",u"mine",u"m",u"ne",u"nevoie",u"nici",u"nicieri",u"nimeni",u"nimeri",u"nimic",u"nite",u"noastre",u"noastr",u"noi",u"noroc",u"nostru",u"nou",u"notri",u"nu",u"opt",u"ori",u"oricare",u"orice",u"oricine",u"oricum",u"oricnd",u"orict",u"oricnd",u"orict",u"oriunde",u"patra",u"patru",u"patrulea",u"pe",u"pentru",u"peste",u"pic",u"poate",u"pot",u"prea",u"prima",u"primul",u"prin",u"printr-",u"puin",u"puina",u"puin",u"pn",u"pn",u"rog",u"sa",u"sale",u"sau",u"se",u"spate",u"spre",u"sub",u"sunt",u"suntem",u"suntei",u"sut",u"snt",u"sntem",u"sntei",u"s",u"si",u"su",u"ta",u"tale",u"te",u"timp",u"tine",u"toate",u"toat",u"tot",u"totui",u"toi",u"trei",u"treia",u"treilea",u"tu",u"ti",u"tu",u"un",u"una",u"unde",u"undeva",u"unei",u"uneia",u"unele",u"uneori",u"unii",u"unor",u"unora",u"unu",u"unui",u"unuia",u"unul",u"vi",u"voastre",u"voastr",u"voi",u"vostru",u"vou",u"votri",u"vreme",u"vreo",u"vreun",u"v",u"zece",u"zero",u"zi",u"zice",u"i",u"l",u"mi",u"mpotriva",u"n",u"nainte",u"naintea",u"ncotro",u"nct",u"nct",u"ntre",u"ntruct",u"ntruct",u"i",u"la",u"lea",u"sta",u"stea",u"tia",u"apte",u"ase",u"i",u"tiu",u"i",u"ie"],u"en":[u"a",u"a's",u"able",u"about",u"above",u"according",u"accordingly",u"across",u"actually",u"after",u"afterwards",u"again",u"against",u"ain't",u"all",u"allow",u"allows",u"almost",u"alone",u"along",u"already",u"also",u"although",u"always",u"am",u"among",u"amongst",u"an",u"and",u"another",u"any",u"anybody",u"anyhow",u"anyone",u"anything",u"anyway",u"anyways",u"anywhere",u"apart",u"appear",u"appreciate",u"appropriate",u"are",u"aren't",u"around",u"as",u"aside",u"ask",u"asking",u"associated",u"at",u"available",u"away",u"awfully",u"b",u"be",u"became",u"because",u"become",u"becomes",u"becoming",u"been",u"before",u"beforehand",u"behind",u"being",u"believe",u"below",u"beside",u"besides",u"best",u"better",u"between",u"beyond",u"both",u"brief",u"but",u"by",u"c",u"c'mon",u"c's",u"came",u"can",u"can't",u"cannot",u"cant",u"cause",u"causes",u"certain",u"certainly",u"changes",u"clearly",u"co",u"com",u"come",u"comes",u"concerning",u"consequently",u"consider",u"considering",u"contain",u"containing",u"contains",u"corresponding",u"could",u"couldn't",u"course",u"currently",u"d",u"definitely",u"described",u"despite",u"did",u"didn't",u"different",u"do",u"does",u"doesn't",u"doing",u"don't",u"done",u"down",u"downwards",u"during",u"e",u"each",u"edu",u"eg",u"eight",u"either",u"else",u"elsewhere",u"enough",u"entirely",u"especially",u"et",u"etc",u"even",u"ever",u"every",u"everybody",u"everyone",u"everything",u"everywhere",u"ex",u"exactly",u"example",u"except",u"f",u"far",u"few",u"fifth",u"first",u"five",u"followed",u"following",u"follows",u"for",u"former",u"formerly",u"forth",u"four",u"from",u"further",u"furthermore",u"g",u"get",u"gets",u"getting",u"given",u"gives",u"go",u"goes",u"going",u"gone",u"got",u"gotten",u"greetings",u"h",u"had",u"hadn't",u"happens",u"hardly",u"has",u"hasn't",u"have",u"haven't",u"having",u"he",u"he's",u"hello",u"help",u"hence",u"her",u"here",u"here's",u"hereafter",u"hereby",u"herein",u"hereupon",u"hers",u"herself",u"hi",u"him",u"himself",u"his",u"hither",u"hopefully",u"how",u"howbeit",u"however",u"i",u"i'd",u"i'll",u"i'm",u"i've",u"ie",u"if",u"ignored",u"immediate",u"in",u"inasmuch",u"inc",u"indeed",u"indicate",u"indicated",u"indicates",u"inner",u"insofar",u"instead",u"into",u"inward",u"is",u"isn't",u"it",u"it'd",u"it'll",u"it's",u"its",u"itself",u"j",u"just",u"k",u"keep",u"keeps",u"kept",u"know",u"known",u"knows",u"l",u"last",u"lately",u"later",u"latter",u"latterly",u"least",u"less",u"lest",u"let",u"let's",u"like",u"liked",u"likely",u"little",u"look",u"looking",u"looks",u"ltd",u"m",u"mainly",u"many",u"may",u"maybe",u"me",u"mean",u"meanwhile",u"merely",u"might",u"more",u"moreover",u"most",u"mostly",u"much",u"must",u"my",u"myself",u"n",u"name",u"namely",u"nd",u"near",u"nearly",u"necessary",u"need",u"needs",u"neither",u"never",u"nevertheless",u"new",u"next",u"nine",u"no",u"nobody",u"non",u"none",u"noone",u"nor",u"normally",u"not",u"nothing",u"novel",u"now",u"nowhere",u"o",u"obviously",u"of",u"off",u"often",u"oh",u"ok",u"okay",u"old",u"on",u"once",u"one",u"ones",u"only",u"onto",u"or",u"other",u"others",u"otherwise",u"ought",u"our",u"ours",u"ourselves",u"out",u"outside",u"over",u"overall",u"own",u"p",u"particular",u"particularly",u"per",u"perhaps",u"placed",u"please",u"plus",u"possible",u"presumably",u"probably",u"provides",u"q",u"que",u"quite",u"qv",u"r",u"rather",u"rd",u"re",u"really",u"reasonably",u"regarding",u"regardless",u"regards",u"relatively",u"respectively",u"right",u"s",u"said",u"same",u"saw",u"say",u"saying",u"says",u"second",u"secondly",u"see",u"seeing",u"seem",u"seemed",u"seeming",u"seems",u"seen",u"self",u"selves",u"sensible",u"sent",u"serious",u"seriously",u"seven",u"several",u"shall",u"she",u"should",u"shouldn't",u"since",u"six",u"so",u"some",u"somebody",u"somehow",u"someone",u"something",u"sometime",u"sometimes",u"somewhat",u"somewhere",u"soon",u"sorry",u"specified",u"specify",u"specifying",u"still",u"sub",u"such",u"sup",u"sure",u"t",u"t's",u"take",u"taken",u"tell",u"tends",u"th",u"than",u"thank",u"thanks",u"thanx",u"that",u"that's",u"thats",u"the",u"their",u"theirs",u"them",u"themselves",u"then",u"thence",u"there",u"there's",u"thereafter",u"thereby",u"therefore",u"therein",u"theres",u"thereupon",u"these",u"they",u"they'd",u"they'll",u"they're",u"they've",u"think",u"third",u"this",u"thorough",u"thoroughly",u"those",u"though",u"three",u"through",u"throughout",u"thru",u"thus",u"to",u"together",u"too",u"took",u"toward",u"towards",u"tried",u"tries",u"truly",u"try",u"trying",u"twice",u"two",u"u",u"un",u"under",u"unfortunately",u"unless",u"unlikely",u"until",u"unto",u"up",u"upon",u"us",u"use",u"used",u"useful",u"uses",u"using",u"usually",u"uucp",u"v",u"value",u"various",u"very",u"via",u"viz",u"vs",u"w",u"want",u"wants",u"was",u"wasn't",u"way",u"we",u"we'd",u"we'll",u"we're",u"we've",u"welcome",u"well",u"went",u"were",u"weren't",u"what",u"what's",u"whatever",u"when",u"whence",u"whenever",u"where",u"where's",u"whereafter",u"whereas",u"whereby",u"wherein",u"whereupon",u"wherever",u"whether",u"which",u"while",u"whither",u"who",u"who's",u"whoever",u"whole",u"whom",u"whose",u"why",u"will",u"willing",u"wish",u"with",u"within",u"without",u"won't",u"wonder",u"would",u"wouldn't",u"x",u"y",u"yes",u"yet",u"you",u"you'd",u"you'll",u"you're",u"you've",u"your",u"yours",u"yourself",u"yourselves",u"z",u"zero"]}
| 8,068.714286 | 112,534 | 0.63964 |
e9da4c23e10982ade2cffc9ff31b496b0afdcefd | 2,320 | py | Python | kovalenko1.py | Maxim-Kovalenko/turtle-graphics-programms | 768866f9b6658dc0933b0391387a6bdec64ad6ec | [
"Apache-2.0"
] | 1 | 2020-04-14T08:31:24.000Z | 2020-04-14T08:31:24.000Z | kovalenko1.py | Maxim-Kovalenko/turtle-graphics-programms | 768866f9b6658dc0933b0391387a6bdec64ad6ec | [
"Apache-2.0"
] | null | null | null | kovalenko1.py | Maxim-Kovalenko/turtle-graphics-programms | 768866f9b6658dc0933b0391387a6bdec64ad6ec | [
"Apache-2.0"
] | 1 | 2021-01-05T15:47:59.000Z | 2021-01-05T15:47:59.000Z | from turtle import *
from random import *
# from random import *
'''def writeline(line, color):
pencolor(color)
left(90)
penup()
forward(55)
left(90)
forward(30)
write(line)'''
bgcolor("gray")
speed(0)
moon(200, "white", -925, 300, 900, 400)
frame(-950, -490, 950, 500, "darkorange")
pensize(3)
starLine(40, -900, 450, 15, 120)
starLine(40, -900, 380, 13, 150)
starLine(40, -900, 300, 15, 120)
treesLine(20, -900, 100, 23, 80)
treesLine(20, -700, -100, 18, 80)
treesLine(20, -900, -300, 23, 80)
#'''
writeline("Merry Christmas!", "darkblue")
| 21.886792 | 56 | 0.563793 |
e9da66e1d85822aa027c49a94455e58540701de1 | 7,156 | py | Python | iec/iec_lookup/tests/test_integration_services.py | divinedeveloper/iec-web-service | 0d5e7a05356cc8d88372a559bd5df787d8dc1f75 | [
"MIT"
] | null | null | null | iec/iec_lookup/tests/test_integration_services.py | divinedeveloper/iec-web-service | 0d5e7a05356cc8d88372a559bd5df787d8dc1f75 | [
"MIT"
] | null | null | null | iec/iec_lookup/tests/test_integration_services.py | divinedeveloper/iec-web-service | 0d5e7a05356cc8d88372a559bd5df787d8dc1f75 | [
"MIT"
] | null | null | null | from iec_lookup.services.iec_lookup_service import IECLookupService
from iec_lookup.tests.fixtures import mongo_test_db_setup, importer_exporter_code_details_as_json, importer_exporter_code_details_as_object, dgft_succes_response_html_string, dgft_error_response_html_string, iec_table_section_list, basic_iec_details_as_object, dgft_error_message
# from bs4 import BeautifulSoup, NavigableString, Tag
import bs4
from iec_lookup.models import ImporterExporterCodeDetails, Director, Branch, RegistrationDetails, RegistrationCumMembershipCertificateDetails, ImporterExporterCodeToBeRetrieved
from iec_lookup.custom_exceptions import CustomApiException
from django.conf import settings
from rest_framework import status
from collections import OrderedDict
import mock
from mock import MagicMock
import mongoengine
import pytest
from iec_lookup import utils
from pprint import pprint
from pytest_mock import mocker
import mongomock
import requests
import json
import logging
# Create your tests here.
# Feature: To be able to do something
# In order to do something
# As someone
# I want the system to do this thing
# Scenario: A sample one
# Given this situation
# When I do something
# Then what I get is what I was expecting for
| 42.595238 | 279 | 0.827138 |
e9db9333dcabf339b75e8e3dafb52fedc14104d7 | 9,713 | py | Python | tests.py | klen/http-router | b571aed91200e9d57da4d2136d7e1a5312ef6c4e | [
"MIT"
] | 11 | 2020-11-10T15:12:58.000Z | 2022-01-24T13:14:53.000Z | tests.py | klen/http-router | b571aed91200e9d57da4d2136d7e1a5312ef6c4e | [
"MIT"
] | 2 | 2021-05-01T13:59:14.000Z | 2022-03-09T20:45:02.000Z | tests.py | klen/http-router | b571aed91200e9d57da4d2136d7e1a5312ef6c4e | [
"MIT"
] | null | null | null | """HTTP Router tests."""
import inspect
import typing as t
from re import compile as re
import pytest
def test_router():
"""Base tests."""
from http_router import Router
router = Router(trim_last_slash=True)
with pytest.raises(router.RouterError):
router.route(lambda: 12)
with pytest.raises(router.NotFound):
assert router('/unknown')
router.route('/', '/simple')('simple')
match = router('/', 'POST')
assert match.target == 'simple'
assert not match.params
match = router('/simple', 'DELETE')
assert match.target == 'simple'
assert not match.params
router.route('/only-post', methods='post')('only-post')
assert router.plain['/only-post'][0].methods == {'POST'}
with pytest.raises(router.MethodNotAllowed):
assert router('/only-post')
match = router('/only-post', 'POST')
assert match.target == 'only-post'
assert not match.params
router.route('/dynamic1/{id}')('dyn1')
router.route('/dynamic2/{ id }')('dyn2')
match = router('/dynamic1/11/')
assert match.target == 'dyn1'
assert match.params == {'id': '11'}
match = router('/dynamic2/22/')
assert match.target == 'dyn2'
assert match.params == {'id': '22'}
match = router('/hello/john/', 'POST')
assert match.target() == 'hello'
assert match.params == {'name': 'john'}
match = router('/params', 'POST')
assert match.target() == {'var': 'value'}
assert router.routes()
assert router.routes()[0].path == ''
| 25.901333 | 97 | 0.616596 |
e9ded115d696296991152dc24cb65d091ffcff68 | 4,072 | py | Python | venv/Lib/site-packages/tests/unit/driver/test_async_generic_driver.py | melihteke/ebook_study | 4848ea42e37ee1d6ec777bfc33f49984653ace34 | [
"MIT"
] | null | null | null | venv/Lib/site-packages/tests/unit/driver/test_async_generic_driver.py | melihteke/ebook_study | 4848ea42e37ee1d6ec777bfc33f49984653ace34 | [
"MIT"
] | null | null | null | venv/Lib/site-packages/tests/unit/driver/test_async_generic_driver.py | melihteke/ebook_study | 4848ea42e37ee1d6ec777bfc33f49984653ace34 | [
"MIT"
] | null | null | null | from pathlib import Path
import pytest
import scrapli
from scrapli.channel import Channel
from scrapli.transport import Transport
from ...test_data.unit_test_cases import TEST_CASES
TEST_DATA_DIR = f"{Path(scrapli.__file__).parents[1]}/tests/test_data"
def test_init(sync_generic_driver_conn):
"""Test that all arguments get properly passed from driver/transport to channel on init"""
assert isinstance(sync_generic_driver_conn.channel.transport, Transport)
assert isinstance(sync_generic_driver_conn.channel, Channel)
| 42.416667 | 99 | 0.766208 |
e9dfba4367dce3d55494d724918c8e7f5c9acb43 | 2,301 | py | Python | tests/timesheet/test_regroup.py | simonbru/taxi | 3940f520b6d61b5ac7c851c38dfd05da2f65b647 | [
"WTFPL"
] | 17 | 2016-02-02T14:10:49.000Z | 2021-11-30T00:04:29.000Z | tests/timesheet/test_regroup.py | simonbru/taxi | 3940f520b6d61b5ac7c851c38dfd05da2f65b647 | [
"WTFPL"
] | 70 | 2015-01-08T17:02:42.000Z | 2021-09-21T20:08:07.000Z | tests/timesheet/test_regroup.py | simonbru/taxi | 3940f520b6d61b5ac7c851c38dfd05da2f65b647 | [
"WTFPL"
] | 8 | 2015-08-23T12:50:36.000Z | 2021-11-26T10:33:45.000Z | import datetime
from . import create_timesheet
| 25.285714 | 78 | 0.694046 |
e9e0012334031a979e4c8078a3fc972d1c90c1a0 | 5,192 | py | Python | speaker/adam.py | shannon-jia/speaker | 31c642f018725dd4878ef6a4e7a19b12b05774c8 | [
"MIT"
] | null | null | null | speaker/adam.py | shannon-jia/speaker | 31c642f018725dd4878ef6a4e7a19b12b05774c8 | [
"MIT"
] | null | null | null | speaker/adam.py | shannon-jia/speaker | 31c642f018725dd4878ef6a4e7a19b12b05774c8 | [
"MIT"
] | null | null | null | #!/usr/bin/env python3
# _*_ coding: utf-8 _*_
import asyncio
import logging
import struct
log = logging.getLogger(__name__)
if __name__ == '__main__':
log = logging.getLogger("")
formatter = logging.Formatter("%(asctime)s %(levelname)s " +
"[%(module)s:%(lineno)d] %(message)s")
# log the things
log.setLevel(logging.DEBUG)
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)
ch.setFormatter(formatter)
log.addHandler(ch)
loop = asyncio.get_event_loop()
port = 8502
host = '127.0.0.1'
adam = Adam(loop, host, port)
asyncio.sleep(10)
adam.alarm_task('ON', 1)
adam.alarm_task('OFF', 1)
adam.alarm_task('release', 1)
adam.alarm_task('ON', 1, 1)
adam.alarm_task('OFF', 1, 1)
adam.alarm_task('release', 1, 1)
# Serve requests until Ctrl+C is pressed
try:
loop.run_forever()
except KeyboardInterrupt:
pass
# Close the server
loop.close()
| 28.685083 | 72 | 0.548151 |
e9e0f660874b7198857a18d3f6b0c75b556083fb | 721 | py | Python | forMySQL/countupgetpoints.py | ryosuke0503/DockerMySQL | c1f3a8e92623cdf0297cd6f721fb9d92046f4091 | [
"MIT"
] | null | null | null | forMySQL/countupgetpoints.py | ryosuke0503/DockerMySQL | c1f3a8e92623cdf0297cd6f721fb9d92046f4091 | [
"MIT"
] | null | null | null | forMySQL/countupgetpoints.py | ryosuke0503/DockerMySQL | c1f3a8e92623cdf0297cd6f721fb9d92046f4091 | [
"MIT"
] | null | null | null | # -*- coding: utf-8 -*-
import mysql.connector
import pandas as pd
import sys
#tablename = str(sys.argv[1])
csvname = "result1232.csv"
#
target = str(sys.argv[1])
#
conn = mysql.connector.connect(
host="localhost",
database="toto",
user="root",
password="root"
)
print("connection: "+str(conn.is_connected()))
#
cur = conn.cursor(buffered=True, dictionary=True)
mysql = "SELECT SUM(IF( home='"+target+"' , homescore , IF( away='"+target+"' , awayscore , 0))) FROM matches;"
cur.execute(mysql)
ret=cur.fetchone()
mysql = "SUM(IF( home='"+target+"' , homescore , IF( away='"+target+"' , awayscore , 0)))"
#print(ret)
print(ret[mysql])
conn.commit()
cur.close()
conn.close() | 22.53125 | 111 | 0.660194 |
e9e13d802219234f0d6ee29b93ebb1c9e6c8a66a | 629 | py | Python | tests/core/test_annotations.py | penguinmenac3/leanai | 6d26575b248ff03c4a24009cd82f26ea99d96d15 | [
"MIT"
] | 1 | 2021-03-28T21:32:59.000Z | 2021-03-28T21:32:59.000Z | tests/core/test_annotations.py | penguinmenac3/leanai | 6d26575b248ff03c4a24009cd82f26ea99d96d15 | [
"MIT"
] | null | null | null | tests/core/test_annotations.py | penguinmenac3/leanai | 6d26575b248ff03c4a24009cd82f26ea99d96d15 | [
"MIT"
] | null | null | null | import unittest
from leanai.core.annotations import RunOnlyOnce
if __name__ == "__main__":
unittest.main()
| 21.689655 | 50 | 0.616852 |
756552474094f48324d4b90b89114e9f83580b79 | 1,971 | py | Python | pyext/professor2/__init__.py | iamholger/professor | 25753a19de0dbbd2db0eb80cedc87adc017459a1 | [
"MIT"
] | 2 | 2016-12-01T13:08:45.000Z | 2017-01-09T05:36:44.000Z | pyext/professor2/__init__.py | iamholger/professor | 25753a19de0dbbd2db0eb80cedc87adc017459a1 | [
"MIT"
] | null | null | null | pyext/professor2/__init__.py | iamholger/professor | 25753a19de0dbbd2db0eb80cedc87adc017459a1 | [
"MIT"
] | null | null | null | import sys
pyversion = sys.version_info
if sys.version_info[0] < 2 or (sys.version_info[0] == 2 and sys.version_info[1] < 7):
raise Exception("Professor2 requires Python 2.7 or greater")
## Import Cython wrappings on the C++ core library
from professor2.core import *
__version__ = version()
from professor2.errors import *
from professor2.dataio import *
from professor2.histos import *
from professor2.ipolio import *
from professor2.ipol import *
from professor2.minimize import *
from professor2.paramsio import *
from professor2.params import *
from professor2.sampling import * #< the only module which requires NumPy
from professor2.weights import *
from professor2.chi2 import *
from professor2.eigentunes import *
def mk_timestamp():
"""
Time stamp, taken from http://stackoverflow.com/questions/13890935/timestamp-python
"""
import time
ts = time.time()
import datetime
st = datetime.datetime.fromtimestamp(ts).strftime('%Y-%m-%d %H:%M:%S')
return st
# def mk_versionstring():
# """
# Get version from setup.py, courtesy of
# http://stackoverflow.com/questions/2058802/how-can-i-get-the-version-defined-in-setup-py-setuptools-in-my-package
# """
# import pkg_resources # part of setuptools
# return pkg_resources.require("professor2")[0].version
# __version__ = mk_versionstring()
logo = \
"""
Visit us on http://professor.hepforge.org/
Please cite arXiv:0907.2973 [hep-ph]
%s
______ __ _____ _____
| ___ \ / _| |_ _|_ _|
| |_/ / __ ___ | |_ ___ ___ ___ ___ _ __ | | | |
| __/ '__/ _ \| _/ _ \/ __/ __|/ _ \| '__| | | | |
| | | | | (_) | || __/\__ \__ \ (_) | | _| |_ _| |_
|_| |_| \___/|_| \___||___/___/\___/|_| |_____|_____|
Andy Buckley, Holger Schulz v%s
Copyright 2015-2017
""" % (mk_timestamp(), version())
| 33.40678 | 119 | 0.620497 |
7567342e6e2ce849445abb8610ff24fc2aab8a0f | 558 | py | Python | stack/lambdas/rekopoc-check-status/lambda_function.py | anapt/rekognition-video-people-blurring-cdk | ce1a57178bcd81a17d7f287ff4ccf2be6aae93b2 | [
"MIT-0"
] | 9 | 2021-10-01T08:21:03.000Z | 2022-03-02T14:34:16.000Z | stack/lambdas/rekopoc-check-status/lambda_function.py | anapt/rekognition-video-people-blurring-cdk | ce1a57178bcd81a17d7f287ff4ccf2be6aae93b2 | [
"MIT-0"
] | null | null | null | stack/lambdas/rekopoc-check-status/lambda_function.py | anapt/rekognition-video-people-blurring-cdk | ce1a57178bcd81a17d7f287ff4ccf2be6aae93b2 | [
"MIT-0"
] | 3 | 2021-10-01T08:33:32.000Z | 2022-02-02T22:40:48.000Z | import boto3
reko = boto3.client('rekognition')
s3 = boto3.client('s3')
| 26.571429 | 75 | 0.577061 |
756844e5d69bfb4f7a881cf7182f56ff34c5aee1 | 201 | py | Python | tests/manualThreadTests.py | velexio/pyLegos | 64d3622f2b6d78a02b171e0438a0224a951d2644 | [
"MIT"
] | null | null | null | tests/manualThreadTests.py | velexio/pyLegos | 64d3622f2b6d78a02b171e0438a0224a951d2644 | [
"MIT"
] | 2 | 2016-11-23T00:36:34.000Z | 2016-11-23T00:39:08.000Z | tests/manualThreadTests.py | velexio/pyLegos | 64d3622f2b6d78a02b171e0438a0224a951d2644 | [
"MIT"
] | null | null | null | #!/usr/bin/env python
import time
from pylegos.core import Thread
t = Thread()
t.runAndWait(threadName='test', runFunc=worker(10))
print('finished')
| 14.357143 | 51 | 0.726368 |
756a6183aee4660b960c432b4510670a699bf9cb | 1,314 | py | Python | hazelcast/protocol/codec/count_down_latch_await_codec.py | tonytheonlypony/hazelcast-python-client | 3aafeaf2ebc05aee4f2386c62c079db496a7c81f | [
"Apache-2.0"
] | 98 | 2015-12-08T14:26:27.000Z | 2022-03-23T17:44:11.000Z | hazelcast/protocol/codec/count_down_latch_await_codec.py | tonytheonlypony/hazelcast-python-client | 3aafeaf2ebc05aee4f2386c62c079db496a7c81f | [
"Apache-2.0"
] | 396 | 2016-02-23T11:07:55.000Z | 2022-03-31T14:26:34.000Z | hazelcast/protocol/codec/count_down_latch_await_codec.py | tonytheonlypony/hazelcast-python-client | 3aafeaf2ebc05aee4f2386c62c079db496a7c81f | [
"Apache-2.0"
] | 62 | 2015-12-09T11:20:53.000Z | 2022-01-28T01:30:54.000Z | from hazelcast.serialization.bits import *
from hazelcast.protocol.builtin import FixSizedTypesCodec
from hazelcast.protocol.client_message import OutboundMessage, REQUEST_HEADER_SIZE, create_initial_buffer, RESPONSE_HEADER_SIZE
from hazelcast.protocol.codec.custom.raft_group_id_codec import RaftGroupIdCodec
from hazelcast.protocol.builtin import StringCodec
# hex: 0x0B0200
_REQUEST_MESSAGE_TYPE = 721408
# hex: 0x0B0201
_RESPONSE_MESSAGE_TYPE = 721409
_REQUEST_INVOCATION_UID_OFFSET = REQUEST_HEADER_SIZE
_REQUEST_TIMEOUT_MS_OFFSET = _REQUEST_INVOCATION_UID_OFFSET + UUID_SIZE_IN_BYTES
_REQUEST_INITIAL_FRAME_SIZE = _REQUEST_TIMEOUT_MS_OFFSET + LONG_SIZE_IN_BYTES
_RESPONSE_RESPONSE_OFFSET = RESPONSE_HEADER_SIZE
| 43.8 | 127 | 0.853881 |
756b0adc0964779163796787d2e6398c5eb4706e | 980 | py | Python | LeetCode/088 Merge Sorted Array.py | gesuwen/Algorithms | 0c9cf4412d76f8b69ef68cc80636323f5a0e5786 | [
"MIT"
] | null | null | null | LeetCode/088 Merge Sorted Array.py | gesuwen/Algorithms | 0c9cf4412d76f8b69ef68cc80636323f5a0e5786 | [
"MIT"
] | null | null | null | LeetCode/088 Merge Sorted Array.py | gesuwen/Algorithms | 0c9cf4412d76f8b69ef68cc80636323f5a0e5786 | [
"MIT"
] | null | null | null | # Array; Two Pointers
# Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array.
#
# Note:
#
# The number of elements initialized in nums1 and nums2 are m and n respectively.
# You may assume that nums1 has enough space (size that is greater or equal to m + n) to hold additional elements from nums2.
# Example:
#
# Input:
# nums1 = [1,2,3,0,0,0], m = 3
# nums2 = [2,5,6], n = 3
#
# Output: [1,2,2,3,5,6]
| 28.823529 | 125 | 0.533673 |
756bf0598578d01db0afb38f8bafb682754f2e0c | 1,007 | py | Python | caf_verilog/test/test_capture_buffer.py | chiranthsiddappa/caf_verilog | cd3cfd00459dc03518fcce53d5d6ac5194fb2adc | [
"MIT"
] | 1 | 2019-06-04T22:05:12.000Z | 2019-06-04T22:05:12.000Z | caf_verilog/test/test_capture_buffer.py | chiranthsiddappa/caf_verilog | cd3cfd00459dc03518fcce53d5d6ac5194fb2adc | [
"MIT"
] | 6 | 2019-04-17T17:21:42.000Z | 2019-09-11T16:15:28.000Z | caf_verilog/test/test_capture_buffer.py | chiranthsiddappa/caf_verilog | cd3cfd00459dc03518fcce53d5d6ac5194fb2adc | [
"MIT"
] | null | null | null | from unittest import TestCase
from .. import capture_buffer as capt_buff
from tempfile import mkdtemp
import os
| 31.46875 | 93 | 0.637537 |
756c7eea74e1f5249521b52dff9a4f1dfed719d3 | 933 | py | Python | db_to_excel.py | jfernandez04/fromdb_to_excel | f06bfbd83825f887afc814706dc6c34e6ba44f17 | [
"Apache-2.0"
] | null | null | null | db_to_excel.py | jfernandez04/fromdb_to_excel | f06bfbd83825f887afc814706dc6c34e6ba44f17 | [
"Apache-2.0"
] | 3 | 2018-02-21T20:25:32.000Z | 2018-02-23T18:25:44.000Z | db_to_excel.py | jfernandez04/fromdb_to_excel | f06bfbd83825f887afc814706dc6c34e6ba44f17 | [
"Apache-2.0"
] | null | null | null | # coding=utf-8
import mysql.connector
import xlsxwriter
from query import q, table,columns
from letters import letters
import string
import json
import os
dir_path = os.path.dirname(os.path.realpath(__file__))
with open(dir_path + '/config.json', "r") as json_data_file:
conf = json.load(json_data_file)
conn = mysql.connector.connect(**conf)
cur = conn.cursor()
cur.execute("set innodb_lock_wait_timeout=100;")
q_describe = "describe " + table + ";"
cur.execute(q_describe)
bdescribe = cur.fetchall()
wb = xlsxwriter.Workbook('test.xlsx')
ws = wb.add_worksheet()
col = 0
for bdes_row in bdescribe:
ws.write(string.upper(letters[col] + str(1)), bdes_row[0])
col += 1
num1 = 2
col = 0
num = 1
cur.execute(q)
data = cur.fetchall()
for row in data:
col = 0
for line in range(len(row)):
l = letters[col] + str(num1)
ws.write(string.upper(l), row[line])
col += 1
num1 += 1
wb.close()
| 21.697674 | 62 | 0.681672 |
756f24ba8abf0f406f6c9f0a863f8c02bdb32b06 | 1,317 | py | Python | setup.py | tyler-a-cox/radio_sim | e54891905597578e2be6a9e6a9a201ba1cbd603c | [
"BSD-2-Clause"
] | null | null | null | setup.py | tyler-a-cox/radio_sim | e54891905597578e2be6a9e6a9a201ba1cbd603c | [
"BSD-2-Clause"
] | 2 | 2021-06-22T19:31:52.000Z | 2021-07-14T21:33:01.000Z | setup.py | tyler-a-cox/radio_sim | e54891905597578e2be6a9e6a9a201ba1cbd603c | [
"BSD-2-Clause"
] | null | null | null | from setuptools import setup
import os
import sys
import json
sys.path.append("radio_sim")
data_files = package_files("hera_cal", "data") + package_files(
"hera_cal", "calibrations"
)
setup_args = {
"name": "radio_sim",
"version": "0.0.2",
"author": "Tyler Cox",
"url": "https://github.com/tyler-a-cox/radio_sim",
"license": "BSD",
"description": "Simple radio interferometer simulator for testing nucal",
"package_dir": {"radio_sim": "radio_sim"},
"packages": ["radio_sim"],
"include_package_data": True,
"scripts": [],
"package_data": {"radio_sim": data_files},
"install_requires": [
"numpy>=1.10",
"scipy",
"astropy",
"pyuvdata",
],
"extras_require": {
"all": [
"aipy>=3.0",
]
},
"zip_safe": False,
}
if __name__ == "__main__":
setup(*(), **setup_args)
| 23.945455 | 77 | 0.603645 |
756fb9d469af8300eef5fa58dfbcbd277e34d405 | 1,959 | py | Python | oremda/pipeline/engine/__init__.py | OpenChemistry/oremda | 3fb4cb8318713b87ecd7999ee2b725da745dd023 | [
"BSD-3-Clause"
] | 11 | 2021-09-01T23:10:51.000Z | 2022-03-20T07:39:37.000Z | oremda/pipeline/engine/__init__.py | OpenChemistry/oremda | 3fb4cb8318713b87ecd7999ee2b725da745dd023 | [
"BSD-3-Clause"
] | 22 | 2021-05-18T14:10:27.000Z | 2021-10-04T15:06:27.000Z | oremda/pipeline/engine/__init__.py | OpenChemistry/oremda | 3fb4cb8318713b87ecd7999ee2b725da745dd023 | [
"BSD-3-Clause"
] | 2 | 2021-09-01T22:11:13.000Z | 2021-10-30T09:12:36.000Z | import asyncio
import logging
import sys
import coloredlogs
import signal
from oremda.typing import ContainerType
from oremda.clients.singularity import SingularityClient
from oremda.pipeline.engine.rpc.client import RpcClient
from oremda.pipeline.engine.context import pipeline_context
from oremda.pipeline.engine.config import settings
# Setup logger
logger = logging.getLogger("engine")
logger.setLevel(logging.INFO)
handler = logging.StreamHandler(sys.stdout)
handler.setLevel(logging.INFO)
formatter = coloredlogs.ColoredFormatter(
"%(asctime)s,%(msecs)03d - %(name)s - %(levelname)s - %(message)s"
)
handler.setFormatter(formatter)
logger.addHandler(handler)
def start():
logger.info("Starting pipeline engine.")
loop = asyncio.get_event_loop()
run_task = loop.create_task(run())
signals = (signal.SIGHUP, signal.SIGTERM, signal.SIGINT)
for s in signals:
loop.add_signal_handler(
s, lambda s=s: asyncio.create_task(shutdown(s, loop, run_task))
)
loop.run_forever()
| 29.681818 | 79 | 0.720265 |
7570df54465fd5d936a3ab3554540e61e267bf96 | 2,369 | py | Python | main.py | RareDrops/discord-emote-script | bc1f4892fd4294449b2340a51b276e4ebb3b37e6 | [
"MIT"
] | null | null | null | main.py | RareDrops/discord-emote-script | bc1f4892fd4294449b2340a51b276e4ebb3b37e6 | [
"MIT"
] | null | null | null | main.py | RareDrops/discord-emote-script | bc1f4892fd4294449b2340a51b276e4ebb3b37e6 | [
"MIT"
] | null | null | null | from pynput import keyboard
from pynput.keyboard import Key, Controller
from os.path import exists
import win32clipboard
import os
from PIL import Image
from pystray import Icon as icon, Menu, MenuItem as item
import pystray
RECORDING = False
WORD = ""
keyboard_press = Controller()
# Collect events until released
listener = keyboard.Listener(on_press=on_press)
listener.start()
temp_iterable = []
image = Image.open('keyboard.ico')
icon = pystray.Icon('discord-emotes',image,'discord-emotes',temp_iterable)
menu = Menu(item('quit',lambda : icon.stop()),)
icon.menu = menu
icon.run()
| 29.987342 | 123 | 0.61545 |
7571df3479e0827912764d9107db9cc7c8bfd97c | 27,986 | py | Python | moloch_connector.py | splunk-soar-connectors/moloch | d1956ee500b2c3f3882f3512366ae480270e89f8 | [
"Apache-2.0"
] | 1 | 2022-02-13T19:18:41.000Z | 2022-02-13T19:18:41.000Z | moloch_connector.py | splunk-soar-connectors/moloch | d1956ee500b2c3f3882f3512366ae480270e89f8 | [
"Apache-2.0"
] | 2 | 2021-12-09T01:35:35.000Z | 2022-02-24T20:04:27.000Z | moloch_connector.py | splunk-soar-connectors/moloch | d1956ee500b2c3f3882f3512366ae480270e89f8 | [
"Apache-2.0"
] | null | null | null | # File: moloch_connector.py
#
# Copyright (c) 2019-2022 Splunk 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.
#
#
import ipaddress
import json
import os
import magic
import phantom.app as phantom
import phantom.rules as ph_rules
import requests
from bs4 import BeautifulSoup, UnicodeDammit
from phantom.action_result import ActionResult
from phantom.base_connector import BaseConnector
from requests.auth import HTTPDigestAuth
from moloch_consts import *
if __name__ == '__main__':
import argparse
import sys
import pudb
pudb.set_trace()
argparser = argparse.ArgumentParser()
argparser.add_argument('input_test_json', help='Input Test JSON file')
argparser.add_argument('-u', '--username', help='username', required=False)
argparser.add_argument('-p', '--password', help='password', required=False)
argparser.add_argument('-v', '--verify', action='store_true', help='verify', required=False, default=False)
args = argparser.parse_args()
session_id = None
username = args.username
password = args.password
verify = args.verify
if username is not None and password is None:
# User specified a username but not a password, so ask
import getpass
password = getpass.getpass("Password: ")
if username and password:
login_url = BaseConnector._get_phantom_base_url() + "login"
try:
print("Accessing the Login page")
r = requests.get(login_url, verify=verify, timeout=MOLOCH_DEFAULT_TIMEOUT)
csrftoken = r.cookies['csrftoken']
data = dict()
data['username'] = username
data['password'] = password
data['csrfmiddlewaretoken'] = csrftoken
headers = dict()
headers['Cookie'] = 'csrftoken={}'.format(csrftoken)
headers['Referer'] = login_url
print("Logging into Platform to get the session id")
r2 = requests.post(login_url, verify=verify, data=data, headers=headers, timeout=MOLOCH_DEFAULT_TIMEOUT)
session_id = r2.cookies['sessionid']
except Exception as e:
print("Unable to get session id from the platform. Error: {}".format(str(e)))
sys.exit(1)
if len(sys.argv) < 2:
print("No test json specified as input")
sys.exit(0)
with open(sys.argv[1]) as f:
in_json = f.read()
in_json = json.loads(in_json)
print(json.dumps(in_json, indent=4))
connector = MolochConnector()
connector.print_progress_message = True
if session_id is not None:
in_json['user_session_token'] = session_id
ret_val = connector._handle_action(json.dumps(in_json), None)
print(json.dumps(json.loads(ret_val), indent=4))
sys.exit(0)
| 41.460741 | 134 | 0.643393 |
7574fa5420556c5e1887475cd923bc9a0ffab1f4 | 2,600 | py | Python | testing/python-image-upload/upload.py | pkalauner-tuwien/polyglot-and-ambiguous-files | 109eb7d5533de4a053841313e7c14918f9cd9df0 | [
"MIT"
] | null | null | null | testing/python-image-upload/upload.py | pkalauner-tuwien/polyglot-and-ambiguous-files | 109eb7d5533de4a053841313e7c14918f9cd9df0 | [
"MIT"
] | 1 | 2021-03-23T20:13:21.000Z | 2021-03-23T20:13:21.000Z | testing/python-image-upload/upload.py | pkalauner-tuwien/polyglot-and-ambiguous-files | 109eb7d5533de4a053841313e7c14918f9cd9df0 | [
"MIT"
] | null | null | null | from flask import *
from flask_csp.csp import csp_header, csp_default
import imghdr
import os
import hashlib
import subprocess
app = Flask(__name__)
app.config["UPLOAD_DIRECTORY"] = 'uploads'
app.config["ALLOWED_EXTENSIONS"] = ["jpg", "jpeg", "png", "gif"]
# Remove report-uri from default CSP header
h = csp_default()
h.update({'report-uri':""})
# PoC method to show why attackers should not be able to upload arbitrary code.
# This method should obviously not exist in a real application, but code execution could also be achieved through other, more sophisticated ways.
def exec_script(file):
return subprocess.check_output(['python3', file])
app.jinja_env.globals['exec_script'] = exec_script # Allow usage in templates
| 34.666667 | 145 | 0.687308 |
7577e2f7df5f804c676013417ab035ff063a393c | 8,767 | py | Python | test.py | AllenChen1998/RAD | 9778e2576e427a26b2181561648f82162237a7dd | [
"MIT"
] | 1 | 2021-08-05T04:08:15.000Z | 2021-08-05T04:08:15.000Z | test.py | AllenChen1998/RAD | 9778e2576e427a26b2181561648f82162237a7dd | [
"MIT"
] | null | null | null | test.py | AllenChen1998/RAD | 9778e2576e427a26b2181561648f82162237a7dd | [
"MIT"
] | null | null | null | import os
import cv2
import json
import time
import shutil
import argparse
import numpy as np
import PIL.Image
from copy import deepcopy
import mmcv
from mmdet.apis import init_detector, inference_detector, show_result
# install mmdet v1 in https://github.com/open-mmlab/mmdetection
# download correspongding pretrained models from https://mmdetection.readthedocs.io/en/latest/model_zoo.html
config_dir = 'configs'
config_files = {
'ssd': config_dir + '/ssd512_coco.py',
'faster_rcnn': config_dir + '/faster_rcnn_r101_fpn_1x.py',
'mask_rcnn': config_dir + '/mask_rcnn_x101_64x4d_fpn_1x.py',
'retinanet': config_dir + '/retinanet_r101_fpn_1x.py',
'cascade_rcnn': config_dir + '/cascade_rcnn_r101_fpn_1x.py',
'cascade_mask_rcnn': config_dir + '/cascade_mask_rcnn_x101_64x4d_fpn_1x.py',
'htc': config_dir + '/htc/htc_x101_64x4d_fpn_20e_16gpu.py',
}
config_files_ori = deepcopy(config_files)
checkpoint_dir = 'models'
checkpoint_files = {
'ssd': checkpoint_dir + '/ssd512_coco_vgg16_caffe_120e_20181221-d48b0be8.pth',
'faster_rcnn': checkpoint_dir + '/faster_rcnn_r101_fpn_2x_20181129-73e7ade7.pth',
'mask_rcnn': checkpoint_dir + '/mask_rcnn_x101_64x4d_fpn_1x_20181218-cb159987.pth',
'retinanet': checkpoint_dir + '/retinanet_r101_fpn_2x_20181129-72c14526.pth',
'cascade_rcnn': checkpoint_dir + '/cascade_rcnn_r101_fpn_20e_20181129-b46dcede.pth',
'cascade_mask_rcnn': checkpoint_dir + '/cascade_mask_rcnn_x101_64x4d_fpn_20e_20181218-630773a7.pth',
'htc': checkpoint_dir + '/htc_x101_64x4d_fpn_20e_20190408-497f2561.pth',
}
model_order = list(config_files.keys())
assert model_order == list(checkpoint_files.keys())
paths = {'Annot': 'COCO/annotations', 'mmdet': 'mmdetection/tools/test.py'}
for key in paths: assert os.path.exists(paths[key]), paths[key] + ' does not exist'
for key in config_files: assert os.path.exists(config_files[key]), config_files[key] + ' does not exist'
for key in checkpoint_files: assert os.path.exists(checkpoint_files[key]), checkpoint_files[key] + ' does not exist'
dirs = ['adv', 'cache', 'index', 'detection']
mask = ['mask_rcnn', 'cascade_mask_rcnn', 'htc']
if __name__ == "__main__":
test_pipeline() | 50.97093 | 196 | 0.677883 |
7578054f5e5fa0cd2bf6c67b5dfd6c6a49acba24 | 563 | py | Python | posts/migrations/0002_auto_20181129_2311.py | ddeveloper72/Dhjango-Blog | 8f9771a149a944e32aa192de97ab69092a1492d2 | [
"CC-BY-3.0"
] | null | null | null | posts/migrations/0002_auto_20181129_2311.py | ddeveloper72/Dhjango-Blog | 8f9771a149a944e32aa192de97ab69092a1492d2 | [
"CC-BY-3.0"
] | null | null | null | posts/migrations/0002_auto_20181129_2311.py | ddeveloper72/Dhjango-Blog | 8f9771a149a944e32aa192de97ab69092a1492d2 | [
"CC-BY-3.0"
] | null | null | null | # -*- coding: utf-8 -*-
# Generated by Django 1.11.15 on 2018-11-29 23:11
from __future__ import unicode_literals
from django.db import migrations
| 21.653846 | 49 | 0.57016 |
757912d9e4012e01b625eaf478b57827dc9d6ad6 | 415 | py | Python | la/oblas/data/dgeev01.py | wtsia/gosl | 8302f76dfe76d24ea5026b225bdad234383dacf9 | [
"BSD-3-Clause"
] | 1,811 | 2015-05-21T12:47:27.000Z | 2022-03-24T04:48:00.000Z | la/oblas/data/dgeev01.py | wtsia/gosl | 8302f76dfe76d24ea5026b225bdad234383dacf9 | [
"BSD-3-Clause"
] | 42 | 2016-09-29T05:23:28.000Z | 2021-10-30T03:12:00.000Z | la/oblas/data/dgeev01.py | wtsia/gosl | 8302f76dfe76d24ea5026b225bdad234383dacf9 | [
"BSD-3-Clause"
] | 171 | 2015-07-14T07:50:35.000Z | 2022-03-09T10:04:15.000Z | import numpy as np
import scipy.linalg as la
from auxiliary import *
a = np.matrix([
[+0.35, +0.45, -0.14, -0.17],
[+0.09, +0.07, -0.54, +0.35],
[-0.44, -0.33, -0.03, +0.17],
[+0.25, -0.32, -0.13, +0.11],
], dtype=float)
w, vl, vr = la.eig(a, left=True, right=True)
vprintC('w', w)
print
for i in range(4):
vprintC('vl%d'%i, vl[:,i])
print
for i in range(4):
vprintC('vr%d'%i, vr[:,i])
| 18.043478 | 44 | 0.53253 |
757aed5f2d7b170e9c0c6e816158ab521912f796 | 9,969 | py | Python | source/menus/menus.py | HugoPFe/Project-Asteroids | 7a58ba00283216e83f02b2f58cf1944e9e217433 | [
"MIT"
] | null | null | null | source/menus/menus.py | HugoPFe/Project-Asteroids | 7a58ba00283216e83f02b2f58cf1944e9e217433 | [
"MIT"
] | 4 | 2021-06-20T21:32:53.000Z | 2021-08-12T11:12:17.000Z | source/menus/menus.py | HugoPFe/Project-Asteroids | 7a58ba00283216e83f02b2f58cf1944e9e217433 | [
"MIT"
] | null | null | null | import pygame
from pygame.locals import *
from util import *
from constants import FPS, VERSION, SCREEN_WIDTH, SCREEN_HEIGHT
from ui.button import *
from ui.font import *
from media.paths import bg, logo, body_font, title_font
class MainMenu(Main):
def __init__(self, game_cls):
""" Class for Main menu """
Main.__init__(self)
self.logo = pygame.image.load(logo).convert_alpha()
self.logo_rect = self.logo.get_rect(center=(SCREEN_WIDTH / 2, 150))
# Buttons
self.play_button = Button(screen=self.screen,
x=120, y=SCREEN_HEIGHT - 220,
width=90, height=40,
text='Jogar',
padding=5,
command=lambda: self.change_screen(game_cls))
self.controls_button = Button(screen=self.screen,
x=120, y=SCREEN_HEIGHT - 160,
width=90, height=40,
text='Controles',
padding=5,
command=lambda: self.change_screen(ControlsMenu))
self.exit_button = Button(screen=self.screen,
x=120, y=SCREEN_HEIGHT - 100,
width=90, height=40,
text='Sair',
padding=5,
command=self.exit)
self.add_buttons(
self.play_button,
self.controls_button,
self.exit_button
)
# Version
self.version_txt = Font(f'version: {VERSION}', (SCREEN_WIDTH - 10, SCREEN_HEIGHT - 30), 'right')
self.version_txt.configure(font_name=body_font, size=15, color='white',
bg_color='black', screen=self.screen)
self.main_loop()
class ControlsMenu(Main):
def __init__(self):
""" Class for Controls menu """
Main.__init__(self)
self.screen_x = self.screen.get_width()
self.screen_y = self.screen.get_height()
self.screen_rect = self.screen.get_rect()
self.keys_fonts_text = {
'up_font': {'command_text': 'Mover para cima', 'command_key': 'Seta para cima'},
'down_font': {'command_text': 'Mover para baixo', 'command_key': 'Seta para baixo'},
'left_font': {'command_text': 'Mover para esquerda', 'command_key': 'Seta para esquerda'},
'right_font': {'command_text': 'Mover para direita', 'command_key': 'Seta para direita'},
'clockwise_font': {'command_text': 'Girar em sentido horrio', 'command_key': 'E'},
'anticlockwise_font': {'command_text': 'Girar em sentido anti-horrio', 'command_key': 'Q'},
'shoot_font': {'command_text': 'Atirar', 'command_key': 'Espao'},
'pause_font': {'command_text': 'Pausar', 'command_key': 'P'}
}
self.control_font = None
self.keys_fontgroup = None
self.keys_frame()
self.back_button = Button(screen=self.screen,
x=SCREEN_WIDTH / 2,
y=SCREEN_HEIGHT - 100,
width=80,height=40,
text='Voltar', padding=3,
command=lambda: self.back_screen())
self.add_buttons(self.back_button)
self.main_loop()
class PauseScreen(Main):
def __init__(self, game):
""" Class for Pause screen """
Main.__init__(self)
self.paused_font = Font('Pausado', (self.screen_rect.centerx, 100), 'center')
self.paused_font.configure(screen=self.screen, font_name=title_font, size=50, bold=True,
antialias=True, color='white', bg_color='black')
# Buttons
self.continue_button = Button(screen=self.screen, x=self.screen_rect.centerx, y=400,
width=110, height=40, text='Continuar',
padding=10, command=self.back_screen)
self.controls_button = Button(screen=self.screen, x=self.screen_rect.centerx, y=460,
width=110, height=40, text='Controles',
padding=8, command=lambda: self.change_screen(ControlsMenu))
self.mainmenu_button = Button(screen=self.screen, x=self.screen_rect.centerx, y=520,
width=110, height=40, text='Menu',
padding=7, command=lambda: self.back_mainmenu(game))
self.add_buttons(
self.continue_button,
self.controls_button,
self.mainmenu_button
)
self.main_loop()
__all__ = ['Main', 'MainMenu', 'PauseScreen', 'ControlsMenu']
| 34.856643 | 104 | 0.51921 |
757b44c079d1af1e49497f1e9f96873e80ae2cd3 | 15,155 | py | Python | Cursos/treina_web.py | FranciscoAlveJr/Bot_Telegram | 9960485a4a25648719ef6fafcb3b02c82db79253 | [
"MIT"
] | null | null | null | Cursos/treina_web.py | FranciscoAlveJr/Bot_Telegram | 9960485a4a25648719ef6fafcb3b02c82db79253 | [
"MIT"
] | null | null | null | Cursos/treina_web.py | FranciscoAlveJr/Bot_Telegram | 9960485a4a25648719ef6fafcb3b02c82db79253 | [
"MIT"
] | null | null | null | import requests
import json
import os
from bs4 import BeautifulSoup as bs
import random
import time
import base64
import m3u8
treinaweb_sessions = requests.Session()
#Downloader().index() | 37.512376 | 234 | 0.512966 |
757c4a2be3e6e27c73b14c6ddc8062d7cb6e67ce | 10,724 | py | Python | A037274/simple.py | sethtroisi/OEIS | 2c10b86d8a8be69aa8020623d4802e3d68772ede | [
"Apache-2.0"
] | 3 | 2019-05-25T23:08:48.000Z | 2021-12-11T03:59:42.000Z | A037274/simple.py | sethtroisi/OEIS | 2c10b86d8a8be69aa8020623d4802e3d68772ede | [
"Apache-2.0"
] | 1 | 2019-03-07T21:22:52.000Z | 2019-03-07T21:22:52.000Z | A037274/simple.py | sethtroisi/OEIS | 2c10b86d8a8be69aa8020623d4802e3d68772ede | [
"Apache-2.0"
] | 1 | 2021-04-29T06:35:07.000Z | 2021-04-29T06:35:07.000Z | import gmpy2
import itertools
import subprocess
import math
import time
from collections import defaultdict
from factordb.factordb import FactorDB
START = 2
STOP = 5000
# Also see A056938
# For use with kernprof -v --line-by-line simple.py
#@profile
run()
| 26.743142 | 98 | 0.563129 |
757deb3edec28d6288b4d6073331b4f58c9cf7f2 | 14,541 | py | Python | system/scripts/coordinator/strategies.py | maxvonhippel/snake | 0805773dc34e1480dffaae40174aa1f82d1c6ce8 | [
"BSD-3-Clause"
] | 11 | 2015-11-24T11:07:28.000Z | 2021-12-23T04:10:29.000Z | system/scripts/coordinator/strategies.py | maxvonhippel/snake | 0805773dc34e1480dffaae40174aa1f82d1c6ce8 | [
"BSD-3-Clause"
] | null | null | null | system/scripts/coordinator/strategies.py | maxvonhippel/snake | 0805773dc34e1480dffaae40174aa1f82d1c6ce8 | [
"BSD-3-Clause"
] | 6 | 2016-03-01T06:32:21.000Z | 2022-03-24T19:31:41.000Z | #Samuel Jero <sjero@purdue.edu>
#vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
import os
import sys
import time
from datetime import datetime
import re
import pprint
from types import NoneType
import ast
import manipulations
import fields
system_home = os.path.split(os.path.dirname(os.path.realpath(__file__)))[0]
import config
| 45.726415 | 231 | 0.510213 |
757f3810745dc98b37ec435828ecf0e2aaa534d5 | 1,212 | py | Python | app/file2mysql.py | ToHanwei/CORD | 09f75b136431222ec945b2ddd6798ae805ec332e | [
"MIT"
] | null | null | null | app/file2mysql.py | ToHanwei/CORD | 09f75b136431222ec945b2ddd6798ae805ec332e | [
"MIT"
] | null | null | null | app/file2mysql.py | ToHanwei/CORD | 09f75b136431222ec945b2ddd6798ae805ec332e | [
"MIT"
] | null | null | null | #!coding:utf-8
import os
import sys
import pymysql
if __name__ == "__main__":
main()
| 19.548387 | 73 | 0.660066 |
757fe53371e91dc422879bc5ad40243b0d086700 | 2,478 | py | Python | start_simple_test.py | rartino/python-optimade-server | 84457091c7ec0db52a7e034bb6a7cd4bcbdd4e57 | [
"MIT"
] | null | null | null | start_simple_test.py | rartino/python-optimade-server | 84457091c7ec0db52a7e034bb6a7cd4bcbdd4e57 | [
"MIT"
] | null | null | null | start_simple_test.py | rartino/python-optimade-server | 84457091c7ec0db52a7e034bb6a7cd4bcbdd4e57 | [
"MIT"
] | null | null | null | #!/usr/bin/env python
#
# Copyright 2019 Rickard Armiento
#
# This file is part of a Python candidate reference implementation of
# the optimade API [https://www.optimade.org/]
#
# 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.
'''
This is part of a Python candidate reference implementation of the
optimade API [https://www.optimade.org/].
This program runs a simple test query against the example_sqlite3 backend.
'''
from __future__ import print_function
import os, sys
from pprint import pprint
sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)),'src'))
from parse import parse_optimade_filter
if __name__ == "__main__":
import backends.example_sqlite3 as backend
backend.initialize()
# This represents the query being received (later to be received via a web URL query)
tables = ["structures"]
response_fields = ["id", "chemical_formula", "elements"]
if len(sys.argv) >= 2:
input_string = 'filter='+sys.argv[1]
else:
input_string = 'filter=elements="Ga,Ti" AND (nelements=3 OR nelements=2)'
response_limit = 50
filter_ast = parse_optimade_filter(input_string)
print("==== FILTER STRING PARSE RESULT:")
pprint(filter_ast)
print("====")
result = backend.execute_query(tables, response_fields, response_limit, filter_ast, debug=True)
print("==== END RESULT")
pprint(list(result))
print("===============")
backend.close()
| 34.901408 | 99 | 0.726796 |
7581ce931238117bdcd49cbe392056bdbbeb384d | 2,609 | py | Python | examples/deep_dream.py | vacancy/LibNeuralArt | fb7696877ac2bf08e1e4e46caec9ccd14ce4797c | [
"MIT"
] | 1 | 2022-03-09T14:38:01.000Z | 2022-03-09T14:38:01.000Z | examples/deep_dream.py | vacancy/LibNeuralArt | fb7696877ac2bf08e1e4e46caec9ccd14ce4797c | [
"MIT"
] | null | null | null | examples/deep_dream.py | vacancy/LibNeuralArt | fb7696877ac2bf08e1e4e46caec9ccd14ce4797c | [
"MIT"
] | null | null | null | import os
import argparse
import cv2
import numpy as np
import tensorflow as tf
from nart import opr, aopr
from nart.model import VGG16
from nart.logconf import logger
LEARNING_RATE = 1.5
JITTER = 32
as_netin = lambda x: x[np.newaxis, :]
def make_step(sess, net, end):
''' iter only one step, providing end '''
# random draw ox, oy
ox, oy = np.random.randint(-JITTER, JITTER+1, 2)
img = sess.run(net['input'])[0]
img = np.roll(np.roll(img, ox, 1), oy, 0) # apply jitter shift
# compute the gradient
# one shuold note that we are actually use L2 loss for an activation map to
# to compute the gradient for the input
sess.run(net['input'].assign(as_netin(img)))
target = net[end]
loss = 0.5 * tf.reduce_mean(tf.pow(target, 2))
grad = tf.gradients(loss, [net['input']])[0]
grad = sess.run(grad)[0]
# apply gradient ascent, with normalized gradient
img += LEARNING_RATE / np.abs(grad).mean() * grad
img = np.clip(img, 0, 255)
img = np.roll(np.roll(img, -ox, 1), -oy, 0) # unshift image
sess.run(net['input'].assign(as_netin(img)))
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('-w', dest='weight_path', required=True, help='weight path')
parser.add_argument('-i', dest='image_path', required=True, help='input image path')
parser.add_argument('-o', dest='output_path', required=True, help='output directory')
parser.add_argument('-e', '--end', dest='end', default='conv5_3', help='end')
parser.add_argument('--iter', dest='nr_iters', type=int, default=100, help='number of iterations')
parser.add_argument('--save-step', dest='save_step', type=int, default=5, help='save step (in iteration)')
main(parser.parse_args())
| 33.448718 | 110 | 0.651974 |
75822d824753f70d530800d691025e523bb8dcb9 | 1,079 | py | Python | 5.py | niharikasingh/aoc2018 | 21d430d393321e6066eca22d7c6b49e5eb42d756 | [
"MIT"
] | null | null | null | 5.py | niharikasingh/aoc2018 | 21d430d393321e6066eca22d7c6b49e5eb42d756 | [
"MIT"
] | null | null | null | 5.py | niharikasingh/aoc2018 | 21d430d393321e6066eca22d7c6b49e5eb42d756 | [
"MIT"
] | null | null | null | import re
text = ''
with open('5input1.txt', 'r') as ifile:
text = ifile.read().strip()
current_min = len(text)
for a in list('abcdefghijklmnopqrstuvwxyz'):
to_remove = a + a.upper()
new_text = re.sub('[' + to_remove + ']', '', text)
# print("removing:", to_remove, "result:", new_text)
new_min_to_test = find_length(new_text)
# print(a, new_min_to_test)
current_min = min(current_min, new_min_to_test)
print(current_min)
| 25.690476 | 57 | 0.489342 |
758282c4a758ece35ff671a6c5cb62d706708b74 | 2,903 | py | Python | game/tests/node_test.py | madvid/42_Gomoku | e57ac625d977d874dc5791e5455d7c145669c6d8 | [
"MIT"
] | null | null | null | game/tests/node_test.py | madvid/42_Gomoku | e57ac625d977d874dc5791e5455d7c145669c6d8 | [
"MIT"
] | null | null | null | game/tests/node_test.py | madvid/42_Gomoku | e57ac625d977d874dc5791e5455d7c145669c6d8 | [
"MIT"
] | null | null | null | from board import Node
from metrics import *
parent = Node(None, np.zeros((5,5)), 1)
parent.nb_free_three = 0
| 23.224 | 41 | 0.349983 |
7584210fe482f4212d8e7879d8d01a58011b39a4 | 1,122 | py | Python | venv/Lib/site-packages/pyo/examples/22-events/08-function-calls.py | mintzer/pupillometry-rf-back | cfa86fa984a49dce0123798f8de5b838c02e10d5 | [
"CC-BY-4.0"
] | null | null | null | venv/Lib/site-packages/pyo/examples/22-events/08-function-calls.py | mintzer/pupillometry-rf-back | cfa86fa984a49dce0123798f8de5b838c02e10d5 | [
"CC-BY-4.0"
] | null | null | null | venv/Lib/site-packages/pyo/examples/22-events/08-function-calls.py | mintzer/pupillometry-rf-back | cfa86fa984a49dce0123798f8de5b838c02e10d5 | [
"CC-BY-4.0"
] | null | null | null | """
08-function-calls.py - Using custom algorithms with python function calls.
**EventCall** ::
EventCall(function, *args, occurrences=inf, stopEventsWhenDone=True)
EventCall calls a function, with any number of arguments (\*args) and uses
its return value for the given parameter. The example below use a function
from the random module, *randrange*, with arguments and a user-defined
function, without argument, to create a rising, then falling, amplitude curve.
"""
import random
from pyo import *
s = Server().boot()
db = -30
dir = 1
def riseFallAmp():
"Rises and falls amplitude between -30 and -3 dB, 1 db at the time."
global db, dir
db += dir
if db >= -3:
dir = -1
elif db < -30:
dir = 1
return db
# Midi notes are chosen randomly with a function from the random module,
# while the amplitude change according to the riseFallAmp function's output.
e = Events(
midinote=EventCall(random.randrange, 48, 72, 3),
beat=1 / 4.0,
db=EventCall(riseFallAmp),
attack=0.001,
decay=0.05,
sustain=0.5,
release=0.005,
).play()
s.gui(locals())
| 22.897959 | 78 | 0.680036 |
7584b9125e63b40a450fd83b83b2635f253ee500 | 1,824 | py | Python | modules/cisne_api.py | ppcamp/ReportCovid19Itabira | a48cb20072a1e9cecdaab589876f5b0e2e3440b6 | [
"MIT"
] | 1 | 2020-06-23T14:54:19.000Z | 2020-06-23T14:54:19.000Z | modules/cisne_api.py | ppcamp/ReportCovid19Itabira | a48cb20072a1e9cecdaab589876f5b0e2e3440b6 | [
"MIT"
] | 8 | 2020-06-20T16:33:23.000Z | 2020-07-31T17:33:05.000Z | modules/cisne_api.py | ppcamp/ReportCovid19Itabira | a48cb20072a1e9cecdaab589876f5b0e2e3440b6 | [
"MIT"
] | null | null | null | import requests
import json
import pandas as pd
from datetime import datetime
def GetEpidemicWeek(curr_date):
'''
Parameters
----------
curr_date: (str) Date in yyyy-mm-dd
Return
------
(int) Week number of year
'''
_aux = datetime.strptime(curr_date, '%Y-%m-%d')
return _aux.isocalendar()[1]
def CisneGetData(curr_date, save_json=False):
'''
Parameters
----------
curr_date: (str) Date in yyyy-mm-dd
Return
------
(DataFrame) obj
(True) if save successfully the file when save_json is enabled.
Example
-------
>> CisneGetData('2020-06-07')
'''
LOGIN_URL = "http://intranet.transportescisne.com.br/swan/login"
# Fill in your details here to be posted to the login form.
payload = json.load( open('credentials/cisne_credentials.json') )
# Use 'with' to ensure the session context is closed after use.
with requests.Session() as S:
S.post(LOGIN_URL, data=payload)
# print("Logged successfully!")
r = S.get("http://intranet.transportescisne.com.br/swan/api/passageiros/"+curr_date)
if save_json:
with open('json-'+curr_date, 'w') as file:
file.write(r.text)
return True
# Transform str to json object like
json_response = json.loads(r.text)
_linha = []
_sentido = []
_faixahr = []
_passageiros = []
for i in json_response:
_linha.append(i['linha'])
_sentido.append(i['sentido'])
_faixahr.append(i['faixahr'])
_passageiros.append(i['passageiros'])
return pd.DataFrame({
'linha':_linha,
'sentido':_sentido,
'faixahr':_faixahr,
'passageiros':_passageiros
})
| 26.057143 | 92 | 0.576754 |
75858d15ba85e9ff5541366ae7ab4ccf2759852d | 2,048 | py | Python | main.py | Andrey22/Python_Lesson2_Neural_University | 014f8da8e3002e081aba3fb1ce9dcf56e5af1d57 | [
"MIT"
] | null | null | null | main.py | Andrey22/Python_Lesson2_Neural_University | 014f8da8e3002e081aba3fb1ce9dcf56e5af1d57 | [
"MIT"
] | null | null | null | main.py | Andrey22/Python_Lesson2_Neural_University | 014f8da8e3002e081aba3fb1ce9dcf56e5af1d57 | [
"MIT"
] | null | null | null | '''
1
, .
'''
print ('Task1')
for i in range(5):
i+=1
print(i,'00000')
'''
2
10 . 5.
'''
print ('Task2')
count=0
for i in range(10):
number = int(input(' 1 10 '))
if number==5:
count+=1
print (' 5 ', count)
'''
3
1 100. .
'''
print ('Task3')
countnum=0
for i in range(101):
countnum+=i
print (countnum)
'''
4
1 10. .
'''
print ('Task4')
countnum = 1
for i in range(1,11,1):
countnum*=i
print (countnum)
'''
5
.
'''
print ('Task5')
number1 = int(input(' '))
while number1>0:
x = number1
x%=10
print (x)
number1//=10
'''
6
.
'''
print ('Task6')
number1 = int(input(' '))
sum=0
while number1>0:
x = number1
x%=10
sum+=x
number1//=10
print (sum)
'''
7
.
'''
print ('Task7')
number1 = int(input(' '))
multi=1
while number1>0:
x = number1
x%=10
multi*=x
number1//=10
print (multi)
'''
8
: 5?
'''
print ('Task8')
number = int(input(' '))
while number>0:
x = number
x%=10
number //= 10
if x == 5:
print ('Yes')
break
else:
print ('No')
'''
9
'''
print ('Task9')
number = int(input(' '))
max=0
while number>0:
x = number
x%=10
number //= 10
if x > max:
max=x
print (max)
'''
10
5
'''
print ('Task10')
count=0
number = int(input(' '))
while number>0:
x = number
x%=10
number //= 10
if x == 5:
count+=1
print (count) | 17.210084 | 92 | 0.631348 |
7585d58771f71f59f83ac3fcba41c6ed4b3d1ae1 | 1,836 | py | Python | aboutdialog.py | ShawnDriscoll/PyQt5-Dice-App | 90d64db322b5330800be43247d46e196258f6a6b | [
"MIT"
] | null | null | null | aboutdialog.py | ShawnDriscoll/PyQt5-Dice-App | 90d64db322b5330800be43247d46e196258f6a6b | [
"MIT"
] | null | null | null | aboutdialog.py | ShawnDriscoll/PyQt5-Dice-App | 90d64db322b5330800be43247d46e196258f6a6b | [
"MIT"
] | null | null | null | # -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'aboutdialog.ui'
#
# Created by: PyQt5 UI code generator 5.15.4
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not edit this file unless you know what you are doing.
from PyQt5 import QtCore, QtGui, QtWidgets
| 48.315789 | 317 | 0.706972 |
7586aaf36cfc9aa4004d62afa11753f68be84c72 | 5,351 | py | Python | PHASE_2/Application_SourceCode/backend/covid_utils.py | vicinx3/disease-outbreak | 035e78875c374e2cdbd4720a4f2ed1370f63a88c | [
"MIT"
] | null | null | null | PHASE_2/Application_SourceCode/backend/covid_utils.py | vicinx3/disease-outbreak | 035e78875c374e2cdbd4720a4f2ed1370f63a88c | [
"MIT"
] | null | null | null | PHASE_2/Application_SourceCode/backend/covid_utils.py | vicinx3/disease-outbreak | 035e78875c374e2cdbd4720a4f2ed1370f63a88c | [
"MIT"
] | null | null | null | import requests
import datetime
from db import convert_code
from pycountry_convert import country_name_to_country_alpha2
from pprint import pprint
import json
url = r'https://pomber.github.io/covid19/timeseries.json'
response = requests.get(url)
if response.status_code != 200:
print("Failed to connect to pomber")
result = response.json()
content = {}
for country in result:
code = convert_country(country)
if code:
content[code] = result[country]
first_date = get_date(0)
last_date = get_date(-1)
total = []
for i in range(0, get_last_day() + 1):
total.append({
'confirmed': 0,
'recovered': 0,
'deaths': 0
})
for country in content:
for category in ['confirmed', 'recovered', 'deaths']:
total[i][category] += content[country][i][category]
######################
# Functions
######################
| 27.869792 | 90 | 0.555971 |
758800528ccfe0918aa562d413d55854aa70f801 | 2,398 | py | Python | cdc_kafka/parsed_row.py | woodlee/sqlserver-cdc-to-kafka | 602c17432a87c1aaee94dc6c971cde8496314fda | [
"MIT"
] | 10 | 2020-04-09T09:32:54.000Z | 2021-10-04T09:20:59.000Z | cdc_kafka/parsed_row.py | woodlee/sqlserver-cdc-to-kafka | 602c17432a87c1aaee94dc6c971cde8496314fda | [
"MIT"
] | 4 | 2019-10-04T14:15:32.000Z | 2020-05-13T18:48:58.000Z | cdc_kafka/parsed_row.py | woodlee/sqlserver-cdc-to-kafka | 602c17432a87c1aaee94dc6c971cde8496314fda | [
"MIT"
] | 6 | 2019-11-11T18:01:00.000Z | 2021-06-09T09:49:57.000Z | import datetime
from functools import total_ordering
from typing import Tuple, Any, Dict, Optional
from . import change_index
| 42.070175 | 112 | 0.662219 |
75893c568f3d251f68a9d4ffb2aa6e88611b92ae | 446 | py | Python | mikeio/xyz.py | rhaDHI/mikeio | eb24503d935df969eac32569a41d223d6f0e2edf | [
"BSD-3-Clause"
] | 65 | 2019-11-27T13:42:52.000Z | 2022-03-31T11:41:56.000Z | mikeio/xyz.py | rhaDHI/mikeio | eb24503d935df969eac32569a41d223d6f0e2edf | [
"BSD-3-Clause"
] | 178 | 2019-12-17T19:43:04.000Z | 2022-03-31T06:54:06.000Z | mikeio/xyz.py | rhaDHI/mikeio | eb24503d935df969eac32569a41d223d6f0e2edf | [
"BSD-3-Clause"
] | 41 | 2019-12-17T18:21:04.000Z | 2022-03-16T12:15:40.000Z | import pandas as pd
pd.DataFrame.to_xyz = dataframe_to_xyz
| 17.84 | 62 | 0.61435 |
7589bb1ca93e2908a7e4afbfc16f38fe65552b2e | 646 | py | Python | tests/conftest.py | josiahls/fast-reinforcement-learning | 66136009dd7052d4a9c07631d5c170c9aeba67f3 | [
"Apache-2.0"
] | 42 | 2019-08-06T14:09:43.000Z | 2022-03-03T19:03:26.000Z | tests/conftest.py | josiahls/fast-reinforcement-learning | 66136009dd7052d4a9c07631d5c170c9aeba67f3 | [
"Apache-2.0"
] | 7 | 2019-08-12T23:04:25.000Z | 2021-01-15T16:39:57.000Z | tests/conftest.py | josiahls/fast-reinforcement-learning | 66136009dd7052d4a9c07631d5c170c9aeba67f3 | [
"Apache-2.0"
] | 6 | 2019-09-20T20:08:59.000Z | 2021-04-03T15:34:11.000Z | import pytest
| 35.888889 | 118 | 0.732198 |
758a746fea53069cc01b12087b264b7e85fe4798 | 534 | py | Python | chassis/rechteck.py | ThePBone/RobomasterCheatsheet | 14089f4a20d72700e653e291137a4cbc9d13b694 | [
"MIT"
] | 4 | 2022-02-08T21:53:57.000Z | 2022-03-27T21:28:20.000Z | chassis/rechteck.py | ThePBone/RobomasterCheatsheet | 14089f4a20d72700e653e291137a4cbc9d13b694 | [
"MIT"
] | null | null | null | chassis/rechteck.py | ThePBone/RobomasterCheatsheet | 14089f4a20d72700e653e291137a4cbc9d13b694 | [
"MIT"
] | null | null | null | from robomaster import robot
import time
ep_robot = robot.Robot()
xy_speed = 1/2 # m/s
z_speed = 90/2 # m/s
if __name__ == '__main__':
#ep_robot.initialize(conn_type="sta", sn="3JKDH6U0011J02")
ep_robot.initialize(conn_type="ap")
ep_chassis = ep_robot.chassis
for i in range(4):
# 1 Meter nach vorne
ep_chassis.move(1, 0, 0, xy_speed).wait_for_completed()
time.sleep(50)
# 90 Drehung
ep_chassis.move(0, 0, 90, 0, z_speed).wait_for_completed()
ep_robot.close()
| 24.272727 | 66 | 0.640449 |
758afd7cbb115376a34da86e1eeaae56905b6dcf | 447 | pyde | Python | processing/Mod. 6/sketch_6_1_l37/sketch_6_1_l37.pyde | nanam0rgana/2019-fall-polytech-cs | 1a31acb3cf22edc930318dec17324b05dd7788d5 | [
"MIT"
] | null | null | null | processing/Mod. 6/sketch_6_1_l37/sketch_6_1_l37.pyde | nanam0rgana/2019-fall-polytech-cs | 1a31acb3cf22edc930318dec17324b05dd7788d5 | [
"MIT"
] | null | null | null | processing/Mod. 6/sketch_6_1_l37/sketch_6_1_l37.pyde | nanam0rgana/2019-fall-polytech-cs | 1a31acb3cf22edc930318dec17324b05dd7788d5 | [
"MIT"
] | null | null | null | flug = bool(True)
i=0
j=0
| 22.35 | 61 | 0.478747 |
758b01fbbf221b2664b2728c99e75c2df92abd02 | 280 | py | Python | src/main.py | lauhuiyik/same-page | decd8b5f45eeca750edfecd4b21a37103553ad9d | [
"MIT"
] | 1 | 2020-05-25T21:32:48.000Z | 2020-05-25T21:32:48.000Z | src/main.py | lauhuiyik/same-page | decd8b5f45eeca750edfecd4b21a37103553ad9d | [
"MIT"
] | null | null | null | src/main.py | lauhuiyik/same-page | decd8b5f45eeca750edfecd4b21a37103553ad9d | [
"MIT"
] | null | null | null | #!/usr/bin/env python
##########
import web
from handlers.front import FrontPage
from handlers.home import HomePage
##########
urls = ('/home', 'HomePage',
'/', 'FrontPage')
app = web.application(urls, globals())
##########
if __name__ == "__main__":
app.run()
| 14 | 38 | 0.582143 |
758b72cef82f8f852b093d91ef15a93d7537c56c | 3,758 | py | Python | ssfunc/fansub.py | End-of-Eternity/ssfunc | 5adbd5602ebc1db1a3cc3483c759c936d24ad705 | [
"MIT"
] | 3 | 2021-07-20T22:25:36.000Z | 2021-12-07T10:05:41.000Z | ssfunc/fansub.py | End-of-Eternity/ssfunc | 5adbd5602ebc1db1a3cc3483c759c936d24ad705 | [
"MIT"
] | null | null | null | ssfunc/fansub.py | End-of-Eternity/ssfunc | 5adbd5602ebc1db1a3cc3483c759c936d24ad705 | [
"MIT"
] | 1 | 2021-09-20T19:09:55.000Z | 2021-09-20T19:09:55.000Z | import ass
import subdigest
import subprocess
import os
def dump_subs(subsfile: str, subsdata: subdigest.Subtitles):
"""
Exports subsdata to subsfile manually over using dump_file() to avoid the utf-8 encode warning.
"""
with open(subsfile, "w", encoding="utf_8_sig") as f:
for section in subsdata.sections.values():
f.write("\n".join(section.dump()))
f.write("\n\n")
def load_subs(subsfile: str):
"""
Loads up and parses subtitles from subsfile and returns subsdigest object.
"""
with open(subsfile, encoding="utf_8_sig") as f:
subsdata = subdigest.Subtitles(ass.parse(f), subsfile)
return subsdata
def crunchy_unroll(infile: str = None, styles: str = None):
"""
Restyles Crunchyroll subtitles using an external `styles` file.
"""
from util import get_episode_number
if infile.endswith(".ass"):
print("Processing subtitles.")
elif infile.endswith(".mkv"):
print("Demuxing subtitles")
subprocess.run(["mkvextract", "-q", "tracks", infile, f"2:{infile}.ass"])
infile += ".ass"
print("Processing subtitles.")
subs = load_subs(infile)
# Crunchyroll bad
subs.selection_set("style", "Top$")
subs.modify_field("text", "^", r"{\\an8}")
subs.modify_field("text", "}{", "")
subs.selection_set("style", "^Italics")
subs.modify_field("text", "^", r"{\\i1}")
subs.modify_field("text", "}{", "")
subs.selection_set("style", "^Main")
subs.modify_field("style", "^.*", "Dialogue")
subs.selection_set("style", "^Flashback")
subs.modify_field("style", "^.*", "Flashback")
subs.selection_set("style", "Top$")
subs.modify_field("style", "^.*", "Alt")
subs.selection_set("style", "^Italics")
subs.modify_field("style", "^.*", "Dialogue")
# nuke \N tags
subs.modify_field("text", r"\s*{\\i0}\s*\\N\s*{\\i1}\s*", " ")
subs.modify_field("text", r"\s*\\[Nn]\s*", " ")
subs.modify_field("text", r"\s*\\[Nn]", " ")
subs.modify_field("text", r"\\[Nn]\s*", " ")
subs.modify_field("text", r"\\[Nn]", " ")
# misc
subs.modify_field("text", "--", "")
subs.use_styles()
subs.set_script_info("YCbCr Matrix", "TV.709")
subs.set_script_info("Script Updated By", "SeaSmoke")
# dump subs to temp file
ep = get_episode_number(infile)
temp = f"{ep}_temp.ass"
dump_subs(temp, subs)
# Loading video for resampling
video = infile.replace(".ass", "")
# Resampling subs using aegisub-cli
subprocess.run(["aegisub-cli", "--video", video, temp, temp, "tool/resampleres"])
# Copying styles from `styles` using prass
subprocess.run(
[
"python",
"-m",
"prass",
"copy-styles",
"--from",
styles,
"--to",
temp,
"-o",
temp,
]
)
# export subs file
subs = load_subs(temp)
dump_subs(infile.replace(".ass", "_fixed.ass"), subs)
# mux subs back into video
subprocess.run(
[
"mkvmerge",
"-o",
infile.replace(".ass", "").replace(".mkv", "_fixed.mkv"),
"-S",
"-A",
"--language",
"0:und",
video,
"-D",
"-S",
"--language",
"1:jpn",
video,
"-D",
"-A",
"--language",
"0:en",
"--track-name",
"0:[Smoke]",
infile.replace(".ass", "_fixed.ass"),
]
)
# Removing temporary files
os.remove(temp)
os.remove(infile)
os.remove(infile.replace(".ass", "_fixed.ass"))
print("Done!")
| 26.842857 | 99 | 0.537254 |
758bfb17d11799615d242c0ec597dafd07b4d3fa | 1,955 | py | Python | tbot/twitch_bot/functions/faceit.py | thomaserlang/tbot | 99cfa204d86ef35cf2cc9482ae5a44abb35b443a | [
"MIT"
] | null | null | null | tbot/twitch_bot/functions/faceit.py | thomaserlang/tbot | 99cfa204d86ef35cf2cc9482ae5a44abb35b443a | [
"MIT"
] | 10 | 2022-02-14T11:40:20.000Z | 2022-03-09T22:44:03.000Z | tbot/twitch_bot/functions/faceit.py | thomaserlang/tbot | 99cfa204d86ef35cf2cc9482ae5a44abb35b443a | [
"MIT"
] | 1 | 2020-09-19T16:38:24.000Z | 2020-09-19T16:38:24.000Z | import logging
from tbot.twitch_bot.var_filler import fills_vars, Send_error
from tbot import config | 34.298246 | 109 | 0.544246 |
758d3ae4874f3aae353700d2388d8c12f38f9087 | 740 | py | Python | setup.py | nickzhuang0613/BaiduSpider | f7c2dfc917c8617a8f5f3691bac642c376faed0f | [
"MIT"
] | 1 | 2021-03-13T04:35:34.000Z | 2021-03-13T04:35:34.000Z | setup.py | nickzhuang0613/BaiduSpider | f7c2dfc917c8617a8f5f3691bac642c376faed0f | [
"MIT"
] | null | null | null | setup.py | nickzhuang0613/BaiduSpider | f7c2dfc917c8617a8f5f3691bac642c376faed0f | [
"MIT"
] | null | null | null | import setuptools
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name='BaiduSpider',
version='0.0.6',
author='Sam Zhang',
author_email='samzhang951@outlook.com',
description='BaiduSpider',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/BaiduSpider/BaiduSpider',
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Development Status :: 3 - Alpha'
],
python_requires='>=3.6',
install_requires=[
'requests',
'bs4',
'htmlmin'
]
)
| 26.428571 | 53 | 0.636486 |
758f66b1bfeec1c3413eae058bce0eb697970ad8 | 411 | py | Python | utils/reward.py | 1980744819/playing-mario-with-DQN | f263e3615bf4439ad17d95a9f449c6145792402b | [
"MIT"
] | 3 | 2020-03-12T19:20:27.000Z | 2020-12-16T06:21:05.000Z | utils/reward.py | 1980744819/playing-mario-with-DQN | f263e3615bf4439ad17d95a9f449c6145792402b | [
"MIT"
] | null | null | null | utils/reward.py | 1980744819/playing-mario-with-DQN | f263e3615bf4439ad17d95a9f449c6145792402b | [
"MIT"
] | null | null | null | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# @File : reward.py
# @Author: zixiao
# @Date : 2019-03-28
# @Desc :
| 29.357143 | 113 | 0.562044 |
758f716bb197ed14c12012351f797136c91cbd8a | 1,270 | py | Python | Buddystring.py | pgupta119/LeetCode | 3e7418402d736cba19362fe7525fdc9067cfcaef | [
"MIT"
] | null | null | null | Buddystring.py | pgupta119/LeetCode | 3e7418402d736cba19362fe7525fdc9067cfcaef | [
"MIT"
] | null | null | null | Buddystring.py | pgupta119/LeetCode | 3e7418402d736cba19362fe7525fdc9067cfcaef | [
"MIT"
] | null | null | null | # Given two strings a and b, return true if you can swap two letters in a so the result is equal to b, otherwise, return false.
# Swapping letters is defined as taking two indices i and j (0-indexed) such that i != j and swapping the characters at a[i] and b[j]. For example, swapping at indices 0 and 2 in "abcd" results in "cbad".
#Example
# Input: a = "ab", b = "ba"
# Output: True
# Explanation: You can swap a[0] = 'a' and a[1] = 'b' to get "ba", which is equal to b.
print(Solution.buddystrings("ab","ba))
#Output :True
| 42.333333 | 204 | 0.616535 |
759014d40b4767cde83fe06211c68c1440c3f6c4 | 14 | py | Python | noop.py | OpenIotNetwork/echo-firmware | 007ead22704231f320abdc1ce32430a6d69a57f7 | [
"Apache-2.0"
] | 1 | 2021-03-08T18:34:06.000Z | 2021-03-08T18:34:06.000Z | noop.py | OpenIotNetwork/echo-firmware | 007ead22704231f320abdc1ce32430a6d69a57f7 | [
"Apache-2.0"
] | null | null | null | noop.py | OpenIotNetwork/echo-firmware | 007ead22704231f320abdc1ce32430a6d69a57f7 | [
"Apache-2.0"
] | null | null | null | print("NOOP")
| 7 | 13 | 0.642857 |
75903cb74255d9a040c92dad9af5ac01cf28b1cb | 54 | py | Python | srichand_cloudmesh_ex2.py | futuresystems/465-srijchand | f52127dfd2cefa7836e25b3ca8a4d81f8ec041ab | [
"Apache-2.0"
] | null | null | null | srichand_cloudmesh_ex2.py | futuresystems/465-srijchand | f52127dfd2cefa7836e25b3ca8a4d81f8ec041ab | [
"Apache-2.0"
] | null | null | null | srichand_cloudmesh_ex2.py | futuresystems/465-srijchand | f52127dfd2cefa7836e25b3ca8a4d81f8ec041ab | [
"Apache-2.0"
] | null | null | null | import cloudmesh
print cloudmesh.shell("cloud list")
| 13.5 | 35 | 0.796296 |
7590bc68d426088e6dfdde0c77099c6866ef8478 | 3,583 | py | Python | datasets/robothor_data.py | SgtVincent/Robothor-2020---VIPL-ICT | 5eee00c077c07e69120fb8108f574c2339688f34 | [
"Apache-2.0"
] | null | null | null | datasets/robothor_data.py | SgtVincent/Robothor-2020---VIPL-ICT | 5eee00c077c07e69120fb8108f574c2339688f34 | [
"Apache-2.0"
] | 1 | 2022-03-14T03:34:49.000Z | 2022-03-14T03:34:49.000Z | datasets/robothor_data.py | SgtVincent/Robothor-2020---VIPL-ICT | 5eee00c077c07e69120fb8108f574c2339688f34 | [
"Apache-2.0"
] | null | null | null | from .constants import (
ROBOTHOR_ORIGINAL_CLASS_LIST
)
import re
import os
import json
import networkx
import h5py
import numpy as np
scene_types = ['FloorPlan_Train1', 'FloorPlan_Train2', 'FloorPlan_Train3',
'FloorPlan_Train4', 'FloorPlan_Train5', 'FloorPlan_Train6',
'FloorPlan_Train7', 'FloorPlan_Train8', 'FloorPlan_Train9',
'FloorPlan_Train10', 'FloorPlan_Train11', 'FloorPlan_Train12']
DIFFICULTY = ['easy', 'medium', 'hard']
# TODO: modify code relative to these two functions in test_val_episode_ithor.py and nonadaptivea3c_val.py
| 36.191919 | 115 | 0.662294 |
7593f4e87b009e30bfc06b0f207cd76f6db5a110 | 288 | py | Python | QRcodegenerator.py | arpitarunkumaar/Hacktoberfest2021 | 0af40f90a6c0716caadbbfff44ece947b6146f60 | [
"MIT"
] | 125 | 2021-10-01T19:05:26.000Z | 2021-10-03T13:32:42.000Z | QRcodegenerator.py | arpitarunkumaar/Hacktoberfest2021 | 0af40f90a6c0716caadbbfff44ece947b6146f60 | [
"MIT"
] | 201 | 2021-10-30T20:40:01.000Z | 2022-03-22T17:26:28.000Z | QRcodegenerator.py | arpitarunkumaar/Hacktoberfest2021 | 0af40f90a6c0716caadbbfff44ece947b6146f60 | [
"MIT"
] | 294 | 2021-10-01T18:46:05.000Z | 2021-10-03T14:25:07.000Z | import pyqrcode
from pyqrcode import QRCode
# String which represent the QR code
s = "https://www.youtube.com/channel/UCeO9hPCfRzqb2yTuAn713Mg"
# Generate QR code
url = pyqrcode.create(s)
# Create and save the png file naming "myqr.png"
url.svg("myyoutube.svg", scale = 8)
| 24 | 62 | 0.725694 |
759471eca6eb7bbbb400247ad8d624471bce9b4f | 979 | py | Python | tests/packerlicious/test_post_processor_docker.py | gnewson/packerlicious | 9a5373bc3a63f949e7912dad0214340d5fddbd85 | [
"Apache-2.0"
] | 109 | 2017-07-17T03:32:09.000Z | 2022-02-27T18:24:18.000Z | tests/packerlicious/test_post_processor_docker.py | gnewson/packerlicious | 9a5373bc3a63f949e7912dad0214340d5fddbd85 | [
"Apache-2.0"
] | 175 | 2017-07-16T21:41:40.000Z | 2021-03-19T22:28:19.000Z | tests/packerlicious/test_post_processor_docker.py | gnewson/packerlicious | 9a5373bc3a63f949e7912dad0214340d5fddbd85 | [
"Apache-2.0"
] | 68 | 2017-07-16T20:52:38.000Z | 2022-01-08T18:24:17.000Z | import pytest
import packerlicious.post_processor as post_processor
| 23.309524 | 53 | 0.694586 |
7598e6392d65a78f154a1a2db4cb51bdef6f7043 | 3,017 | py | Python | app/app.py | jemarulanda/microservicioMapeo | fbf3cef57a0a8aec611171460f4a3434339aa0fe | [
"MIT"
] | null | null | null | app/app.py | jemarulanda/microservicioMapeo | fbf3cef57a0a8aec611171460f4a3434339aa0fe | [
"MIT"
] | null | null | null | app/app.py | jemarulanda/microservicioMapeo | fbf3cef57a0a8aec611171460f4a3434339aa0fe | [
"MIT"
] | null | null | null | '''Module main'''
import json
import os
from rabbitmq import RabbitMQ
from pika import exceptions
from parameter import Parameter
from send_grid import SendGrid
from traceability import Traceability
from transform import Transform
import uuid
if __name__ == '__main__':
App().main()
| 38.679487 | 136 | 0.569108 |
759923fc156d69b7e7b7231814ffe05abf19e1c1 | 26,488 | py | Python | modules/organizations_tab.py | scrummastermind/sumologictoolbox | 02d9acb970943521685091d36b8d5135e817c22c | [
"Apache-2.0"
] | null | null | null | modules/organizations_tab.py | scrummastermind/sumologictoolbox | 02d9acb970943521685091d36b8d5135e817c22c | [
"Apache-2.0"
] | null | null | null | modules/organizations_tab.py | scrummastermind/sumologictoolbox | 02d9acb970943521685091d36b8d5135e817c22c | [
"Apache-2.0"
] | null | null | null | class_name = 'organizations_tab'
from qtpy import QtCore, QtGui, QtWidgets, uic
import os
from logzero import logger
import pathlib
import json
from modules.sumologic_orgs import SumoLogic_Orgs
| 48.247723 | 127 | 0.669435 |
759a0430a9251f3f49f413680d321c1b741036a9 | 562 | py | Python | hello.py | Sid672/Music | ee3c35ae1dfa71372dc6ce5a101503beaac91fd5 | [
"MIT"
] | null | null | null | hello.py | Sid672/Music | ee3c35ae1dfa71372dc6ce5a101503beaac91fd5 | [
"MIT"
] | null | null | null | hello.py | Sid672/Music | ee3c35ae1dfa71372dc6ce5a101503beaac91fd5 | [
"MIT"
] | null | null | null | #Code
# python code
# script_name: hello
#
# author: Siddharth
# description: composition
#
# set up
from earsketch import *
# Initialized
init()
setTempo(120)
# varible
chord = RD_UK_HOUSE__5THCHORD_2
secondarybeat = HIPHOP_BASSSUB_001
mainbeat = HOUSE_MAIN_BEAT_003
# Music
fitMedia(chord, 1, 1, 16)
setEffect(1, VOLUME, GAIN, -60, 1, 5, 12)
setEffect(1, VOLUME, GAIN, 5, 12, -60, 16)
fitMedia(secondarybeat, 2, 1, 12)
setEffect(2, DELAY, DELAY_TIME, 500)
fitMedia(mainbeat, 3, 1, 8)
setEffect(2, REVERB, REVERB_TIME, 200)
# Finish
finish() | 17.030303 | 42 | 0.709964 |
759a621d0c21d47983881f0990e0d95c9d89af8b | 575 | py | Python | utf8_to_sjis.py | yo16/utf8_to_sjis | a0ea7205a2acb96743ca8cb24c38cf1db2cb0ffb | [
"MIT"
] | null | null | null | utf8_to_sjis.py | yo16/utf8_to_sjis | a0ea7205a2acb96743ca8cb24c38cf1db2cb0ffb | [
"MIT"
] | null | null | null | utf8_to_sjis.py | yo16/utf8_to_sjis | a0ea7205a2acb96743ca8cb24c38cf1db2cb0ffb | [
"MIT"
] | null | null | null | import codecs
import os
codecs.register_error('none', lambda e: ('?', e.end))
if __name__=='__main__':
files = [
'test_file.csv'
]
in_dir = 'in_utf8'
out_dir = 'sjis'
utf8_to_sjis(files, in_dir, out_dir)
| 19.166667 | 81 | 0.673043 |
759b22ff49969cf5635a933561ca5a0c9d611cf7 | 363 | py | Python | mavweb/server/apps.py | vixadd/MAVWed | c86327a18c1f5260aa77a5975d2977df5e9267cc | [
"MIT"
] | null | null | null | mavweb/server/apps.py | vixadd/MAVWed | c86327a18c1f5260aa77a5975d2977df5e9267cc | [
"MIT"
] | null | null | null | mavweb/server/apps.py | vixadd/MAVWed | c86327a18c1f5260aa77a5975d2977df5e9267cc | [
"MIT"
] | null | null | null | from django.apps import AppConfig
from mavweb.mavlink_arbiter.main import Main
| 20.166667 | 72 | 0.699725 |
759bf327009e2a0d20028cd808a8ae5f1f115897 | 429 | py | Python | generate_target.py | jmpmulter/coolon-pipeline | 8e92aa717e89d4ec901366a20da58e4fab14f778 | [
"MIT"
] | null | null | null | generate_target.py | jmpmulter/coolon-pipeline | 8e92aa717e89d4ec901366a20da58e4fab14f778 | [
"MIT"
] | null | null | null | generate_target.py | jmpmulter/coolon-pipeline | 8e92aa717e89d4ec901366a20da58e4fab14f778 | [
"MIT"
] | null | null | null | #generate_target.py
#Generates a list of target genes from a flybase output
import os
import sys
if __name__ == "__main__":
main() | 23.833333 | 55 | 0.575758 |
759bf36e0615b479286d04e29a2aa057689eab17 | 3,512 | py | Python | pgAdmin/utils/master_password.py | WeilerWebServices/PostgreSQL | ae594ed077bebbad1be3c1d95c38b7c2c2683e8c | [
"PostgreSQL"
] | null | null | null | pgAdmin/utils/master_password.py | WeilerWebServices/PostgreSQL | ae594ed077bebbad1be3c1d95c38b7c2c2683e8c | [
"PostgreSQL"
] | 3 | 2021-09-02T15:51:44.000Z | 2022-03-02T09:53:17.000Z | win64-postgresql/pgAdmin 4/web/pgadmin/utils/master_password.py | vnetcon/curvy | ed3749bd5d298c7ab6c0625de91c211d6da4c762 | [
"Apache-2.0"
] | null | null | null | import config
from flask import current_app
from flask_login import current_user
from pgadmin.model import db, User, Server
from pgadmin.utils.crypto import encrypt, decrypt
MASTERPASS_CHECK_TEXT = 'ideas are bulletproof'
def set_crypt_key(_key, _new_login=True):
"""
Set the crypt key
:param _key: The key
:param _new_login: Is fresh login or password change
"""
current_app.keyManager.set(_key, _new_login)
def get_crypt_key():
"""
Returns the crypt key
:return: the key
"""
enc_key = current_app.keyManager.get()
# if desktop mode and master pass disabled then use the password hash
if not config.MASTER_PASSWORD_REQUIRED \
and not config.SERVER_MODE:
return True, current_user.password
# if desktop mode and master pass enabled
elif config.MASTER_PASSWORD_REQUIRED \
and not config.SERVER_MODE and enc_key is None:
return False, None
else:
return True, enc_key
def validate_master_password(password):
"""
Validate the password/key against the stored encrypted text
:param password: password/key
:return: Valid or not
"""
# master pass is incorrect if decryption fails
try:
decrypted_text = decrypt(current_user.masterpass_check, password)
if isinstance(decrypted_text, bytes):
decrypted_text = decrypted_text.decode()
if MASTERPASS_CHECK_TEXT != decrypted_text:
return False
else:
return True
except Exception as _:
False
def set_masterpass_check_text(password, clear=False):
"""
Set the encrypted text which will be used later to validate entered key
:param password: password/key
:param clear: remove the encrypted text
"""
try:
masterpass_check = None
if not clear:
masterpass_check = encrypt(MASTERPASS_CHECK_TEXT, password)
# set the encrypted sample text with the new
# master pass
db.session.query(User) \
.filter(User.id == current_user.id) \
.update({User.masterpass_check: masterpass_check})
db.session.commit()
except Exception as _:
db.session.rollback()
raise
def cleanup_master_password():
"""
Remove the master password and saved passwords from DB which are
encrypted using master password. Also remove the encrypted text
"""
# also remove the master password check string as it will help if master
# password entered/enabled again
set_masterpass_check_text('', clear=True)
from pgadmin.browser.server_groups.servers.utils \
import remove_saved_passwords
remove_saved_passwords(current_user.id)
current_app.keyManager.hard_reset()
from pgadmin.utils.driver import get_driver
driver = get_driver(config.PG_DEFAULT_DRIVER)
for server in Server.query.filter_by(user_id=current_user.id).all():
manager = driver.connection_manager(server.id)
manager.update(server)
def process_masterpass_disabled():
"""
On master password disable, remove the connection data from session as it
may have saved password which will cause trouble
:param session: Flask session
:param conn_data: connection manager copy from session if any
"""
if not config.SERVER_MODE and not config.MASTER_PASSWORD_REQUIRED \
and current_user.masterpass_check is not None:
cleanup_master_password()
return True
return False
| 29.266667 | 77 | 0.691913 |
759c9c03daed3987b022572f95ef159fbf48d6f3 | 238 | py | Python | hrsalespipes/dashboard/urls.py | hanztura/hrsalespipes | 77accf3132726ced05d84fa2a41891b841f310b8 | [
"Apache-2.0"
] | 3 | 2020-03-26T12:43:43.000Z | 2021-05-10T14:35:51.000Z | hrsalespipes/dashboard/urls.py | hanztura/hrsalespipes | 77accf3132726ced05d84fa2a41891b841f310b8 | [
"Apache-2.0"
] | 5 | 2021-04-08T21:15:15.000Z | 2022-02-10T11:03:12.000Z | hrsalespipes/dashboard/urls.py | hanztura/hrsalespipes | 77accf3132726ced05d84fa2a41891b841f310b8 | [
"Apache-2.0"
] | 1 | 2022-01-30T19:24:48.000Z | 2022-01-30T19:24:48.000Z | from django.urls import path
from .views import DashboardTemplateView, DashboardView
app_name = 'dashboard'
urlpatterns = [
path('test/', DashboardView.as_view(), name='test'),
path('', DashboardView.as_view(), name='index'),
]
| 23.8 | 56 | 0.714286 |
759ce6e746deead9ce63c2abe9211efd40789622 | 904 | py | Python | tests/test_group_deletion.py | igoldin74/python_for_testers | c992f85f7b08487e79c4c45ab86e0fdeb2c47b20 | [
"Apache-2.0"
] | null | null | null | tests/test_group_deletion.py | igoldin74/python_for_testers | c992f85f7b08487e79c4c45ab86e0fdeb2c47b20 | [
"Apache-2.0"
] | null | null | null | tests/test_group_deletion.py | igoldin74/python_for_testers | c992f85f7b08487e79c4c45ab86e0fdeb2c47b20 | [
"Apache-2.0"
] | null | null | null | import random
from model.group import Group
| 45.2 | 110 | 0.713496 |
759d23943bc7a51dc76aa89f5a85cc113775bdad | 1,946 | py | Python | projects/wizard_of_wikipedia_ko/generator/train_end2end.py | kimsan0622/anonymous_kowow | 25f55add8e657b2186dfdedca3e5035b567b235e | [
"MIT"
] | 2 | 2021-09-06T16:58:53.000Z | 2022-01-14T04:17:48.000Z | projects/wizard_of_wikipedia_ko/generator/train_end2end.py | kimsan0622/anonymous_kowow | 25f55add8e657b2186dfdedca3e5035b567b235e | [
"MIT"
] | null | null | null | projects/wizard_of_wikipedia_ko/generator/train_end2end.py | kimsan0622/anonymous_kowow | 25f55add8e657b2186dfdedca3e5035b567b235e | [
"MIT"
] | 1 | 2022-01-14T09:01:41.000Z | 2022-01-14T09:01:41.000Z | #!/usr/bin/env python3
# Copyright (c) Facebook, Inc. and its affiliates.
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from parlai.scripts.train_model import setup_args, TrainLoop
if __name__ == '__main__':
parser = setup_args()
parser.set_defaults(
task='wizard_of_wikipedia_ko:generator:train',
model='projects.wizard_of_wikipedia_ko.generator.t5:T5EndToEndAgent',
model_file='/tmp/end2end_generator/model',
t5_model_arch='pretrained_model/t5.1.1.base.gin_ke.ke_v100_span_corruption_600K',
text_truncate=256,
ln='ko',
log_every_n_secs=10,
validation_patience=12,
validation_metric='ppl',
validation_metric_mode='min',
validation_every_n_epochs=0.5,
truncate=256,
max_knowledge=32,
knowledge_alpha=0.95,
knowledge_truncate=64,
learningrate=5e-4,
warmup_updates=5000,
clip=0.1,
lr_scheduler='invsqrt',
embedding_type='fasttext',
beam_size=1,
skip_generation=False,
batchsize=64,
)
TrainLoop(parser.parse_args()).train()
# parlai train_model -m projects.wizard_of_wikipedia_ko.generator.t5:T5EndToEndAgent -mf model/ke-t5_test -t wizard_of_wikipedia_ko:generator:random_split --ln en -bs 4 -eps 1 -lr 1e-5 --num-epochs 1 --optimizer adam --t5-model-arch pretrained_model/t5.1.1.base.gin_ke.ke_v100_span_corruption_600K --text_truncate 512
# parlai train_model -t wizard_of_wikipedia_ko:generator:random_split --ln ke_mix -m projects.wizard_of_wikipedia_ko.generator.t5:T5EndToEndAgent -mf model/ke-t5_test --t5-model-arch ../pretrained_model/t5.1.1.base.gin_ke.ke_v100_span_corruption_600K --log-every-n-secs 10 --validation-patience 12 --validation-metric ppl --validation-metric-mode min --validation-every-n-epochs 0.5 -bs 4 --max_knowledge 32 --num-epochs 1 | 48.65 | 424 | 0.722508 |
759dbd8419466a5b58d9ed3efce98d055fc109cf | 37,914 | py | Python | notebooks/__code/normalization/normalization_with_simplify_selection.py | mabrahamdevops/python_notebooks | 6d5e7383b60cc7fd476f6e85ab93e239c9c32330 | [
"BSD-3-Clause"
] | null | null | null | notebooks/__code/normalization/normalization_with_simplify_selection.py | mabrahamdevops/python_notebooks | 6d5e7383b60cc7fd476f6e85ab93e239c9c32330 | [
"BSD-3-Clause"
] | null | null | null | notebooks/__code/normalization/normalization_with_simplify_selection.py | mabrahamdevops/python_notebooks | 6d5e7383b60cc7fd476f6e85ab93e239c9c32330 | [
"BSD-3-Clause"
] | null | null | null | import os
import collections
import numpy as np
from ipywidgets import widgets
from IPython.core.display import display, HTML
import logging
from NeuNorm.normalization import Normalization
from __code import file_handler
from __code.ipywe import myfileselector
from __code.normalization.get import Get
from __code.normalization.metadata_handler import MetadataHandler, MetadataName, METADATA_KEYS
from __code.normalization import utilities
JSON_DEBUGGING = False
MAX_DF_COUNTS_ALLOWED = 900
METADATA_ERROR_ALLOWED = 1
LIST_METADATA_NOT_INSTRUMENT_RELATED = ['filename', 'time_stamp', 'time_stamp_user_format']
| 51.304465 | 175 | 0.579786 |
759e0a9f6bfd13dc1e30f52a13990d9895e8e99e | 12,719 | py | Python | backups_manager_lib_test_util.py | cantstopthesignal/backups_lib | dec602fc90d285b8581af35e514eb90309b6da89 | [
"Apache-2.0"
] | null | null | null | backups_manager_lib_test_util.py | cantstopthesignal/backups_lib | dec602fc90d285b8581af35e514eb90309b6da89 | [
"Apache-2.0"
] | null | null | null | backups_manager_lib_test_util.py | cantstopthesignal/backups_lib | dec602fc90d285b8581af35e514eb90309b6da89 | [
"Apache-2.0"
] | null | null | null | import contextlib
import io
import os
import re
import subprocess
from . import backups_manager_lib
from . import backups_main
from . import lib
from .test_util import AssertEquals
from .test_util import AssertLinesEqual
from .test_util import CreateDir
from .test_util import CreateFile
from .test_util import DoBackupsMain
| 40.123028 | 103 | 0.676232 |
759e1233cd5221eb7c3d3a4d3d8e9c2c06bf7609 | 234 | py | Python | backend/templatetags/back_tag.py | h1gfun4/h1gfun4.github.io | e460467cb505b525ecd5b01b9eb3fd73de7ec6e1 | [
"MIT"
] | null | null | null | backend/templatetags/back_tag.py | h1gfun4/h1gfun4.github.io | e460467cb505b525ecd5b01b9eb3fd73de7ec6e1 | [
"MIT"
] | null | null | null | backend/templatetags/back_tag.py | h1gfun4/h1gfun4.github.io | e460467cb505b525ecd5b01b9eb3fd73de7ec6e1 | [
"MIT"
] | null | null | null | from django import template
from backend.models import Back
register = template.Library() | 26 | 56 | 0.75641 |
759fec04ca6bf4fd01f099c1761a43c8c03c98c7 | 9,116 | py | Python | ecommerce/views.py | umarmughal824/bootcamp-ecommerce | 681bcc788a66867b8f240790c0ed33680b73932b | [
"BSD-3-Clause"
] | 2 | 2018-06-20T19:37:03.000Z | 2021-01-06T09:51:40.000Z | ecommerce/views.py | mitodl/bootcamp-ecommerce | ba7d6aefe56c6481ae2a5afc84cdd644538b6d50 | [
"BSD-3-Clause"
] | 1,226 | 2017-02-23T14:52:28.000Z | 2022-03-29T13:19:54.000Z | ecommerce/views.py | umarmughal824/bootcamp-ecommerce | 681bcc788a66867b8f240790c0ed33680b73932b | [
"BSD-3-Clause"
] | 3 | 2017-03-20T03:51:27.000Z | 2021-03-19T15:54:31.000Z | """Views for ecommerce"""
from decimal import Decimal
import logging
from django.conf import settings
from django.contrib.auth import get_user_model
from django.http.response import Http404
from django.shortcuts import get_object_or_404
from django.urls import reverse
from ipware import get_client_ip
from rest_framework import status as statuses
from rest_framework.authentication import SessionAuthentication
from rest_framework.generics import CreateAPIView, GenericAPIView, RetrieveAPIView
from rest_framework.permissions import IsAuthenticated
from rest_framework.renderers import TemplateHTMLRenderer
from rest_framework.response import Response
from rest_framework.validators import ValidationError
from rest_framework.views import APIView
from applications.constants import AppStates
from applications.models import BootcampApplication
from backends.edxorg import EdxOrgOAuth2
from ecommerce.api import (
complete_successful_order,
create_unfulfilled_order,
generate_cybersource_sa_payload,
get_new_order_by_reference_number,
handle_rejected_order,
serialize_user_bootcamp_run,
serialize_user_bootcamp_runs,
)
from ecommerce.constants import CYBERSOURCE_DECISION_ACCEPT, CYBERSOURCE_DECISION_CANCEL
from ecommerce.exceptions import EcommerceException
from ecommerce.models import Line, Order, Receipt
from ecommerce.permissions import IsSignedByCyberSource
from ecommerce.serializers import (
CheckoutDataSerializer,
PaymentSerializer,
OrderSerializer,
)
from hubspot.task_helpers import sync_hubspot_application_from_order
from klasses.models import BootcampRun
from klasses.permissions import CanReadIfSelf
from main.permissions import UserIsOwnerOrAdminPermission
from main.serializers import serialize_maybe_user
log = logging.getLogger(__name__)
User = get_user_model()
| 34.793893 | 111 | 0.691751 |
75a10f7c8bb2269ffd29a74f44cb282618db5d67 | 3,334 | py | Python | sagemaker-python-sdk/pytorch_lstm_word_language_model/source/generate.py | BluePilgrim/amazon-sagemaker-examples | e20c855dd912331a9380980712f2fef7d05d3d2d | [
"Apache-2.0"
] | 7 | 2018-10-25T16:35:54.000Z | 2022-02-12T15:24:11.000Z | sagemaker-python-sdk/pytorch_lstm_word_language_model/source/generate.py | vlordier/amazon-sagemaker-examples | 6c59b6e435f040bdbe6a7c346fc0ce397f7746d8 | [
"Apache-2.0"
] | 1 | 2019-04-10T20:21:18.000Z | 2019-04-10T20:21:18.000Z | sagemaker-python-sdk/pytorch_lstm_word_language_model/source/generate.py | vlordier/amazon-sagemaker-examples | 6c59b6e435f040bdbe6a7c346fc0ce397f7746d8 | [
"Apache-2.0"
] | 2 | 2020-02-19T03:10:18.000Z | 2022-03-16T12:49:31.000Z | import json
import logging
import os
import torch
from rnn import RNNModel
import data
JSON_CONTENT_TYPE = 'application/json'
logger = logging.getLogger(__name__)
| 39.223529 | 107 | 0.654469 |
75a2597adcdcae122cb7a9e4d78b3707b95ae319 | 889 | py | Python | get_data.py | fromdatavistodatascience/Boston-Airpot-Traffic-Visualisation | 9f30e89e68c25e6fbcf13d84fee561b53ff70d84 | [
"MIT"
] | null | null | null | get_data.py | fromdatavistodatascience/Boston-Airpot-Traffic-Visualisation | 9f30e89e68c25e6fbcf13d84fee561b53ff70d84 | [
"MIT"
] | null | null | null | get_data.py | fromdatavistodatascience/Boston-Airpot-Traffic-Visualisation | 9f30e89e68c25e6fbcf13d84fee561b53ff70d84 | [
"MIT"
] | null | null | null | import pandas as pd
import numpy as np
import json
import requests
#Retrieving my api keys information to access the Google API.
keys = get_keys("/Users/jjherranzsarrion/.secret/google_blog2_api.json")
api_key = keys['api_key']
url = 'https://maps.googleapis.com/maps/api/directions/json?'
origin = 'Sheepfold+Dog+Park+Fells+Path+Stoneham+MA'
destination = 'Terminal+C+Boston+Logan+International+Airport+Boston+MA+02128'
departure_time = '1566819000' #time in seconds from midnight 1st Jan 1970 (Unix start time) until Monday 19th August at 07:30 AM.
url_params = f"origin={origin}&destination={destination}&departure_time={departure_time}&key={api_key}"
request_url = url + url_params
response = requests.get(request_url)
with open('response.json', 'w') as f:
json.dump(response.json(), f)
| 31.75 | 130 | 0.743532 |
75a4801e3fd9b2dd8d7fd997f38c4f96f2672de6 | 1,807 | py | Python | openslides_protocol/apps.py | OpenSlides/openslides-protocol | 71366a4f251165384dd359a31fdc0fab79a652a1 | [
"MIT"
] | null | null | null | openslides_protocol/apps.py | OpenSlides/openslides-protocol | 71366a4f251165384dd359a31fdc0fab79a652a1 | [
"MIT"
] | 11 | 2017-08-02T10:48:24.000Z | 2018-10-19T13:53:51.000Z | openslides_protocol/apps.py | OpenSlides/openslides-protocol | 71366a4f251165384dd359a31fdc0fab79a652a1 | [
"MIT"
] | 2 | 2017-05-10T14:11:34.000Z | 2018-01-10T11:44:10.000Z | from django.apps import AppConfig
from openslides.utils.collection import Collection
from . import (
__description__,
__license__,
__url__,
__verbose_name__,
__version__,
)
| 34.09434 | 104 | 0.722191 |
75a4a4e7e2bdd3feb7c08bb48946dfcce4709039 | 701 | py | Python | roster/migrations/0040_auto_20200428_0914.py | ankanb240/otis-web | 45eda65b419705c65c02b15872a137969d53d8e9 | [
"MIT"
] | 15 | 2021-08-28T18:18:37.000Z | 2022-03-13T07:48:15.000Z | roster/migrations/0040_auto_20200428_0914.py | ankanb240/otis-web | 45eda65b419705c65c02b15872a137969d53d8e9 | [
"MIT"
] | 65 | 2021-08-20T02:37:27.000Z | 2022-02-07T17:19:23.000Z | roster/migrations/0040_auto_20200428_0914.py | ankanb240/otis-web | 45eda65b419705c65c02b15872a137969d53d8e9 | [
"MIT"
] | 31 | 2020-01-09T02:35:29.000Z | 2022-03-13T07:48:18.000Z | # Generated by Django 3.0.3 on 2020-04-28 13:14
from django.db import migrations, models
| 29.208333 | 144 | 0.621969 |
75a691a31ac0f85d25914cc8c58acb2e67e97fd0 | 9,700 | py | Python | scripts/gen_report.py | twjang/korea_apartment_price | cd1414dfe6fe46e7d47625d2f65abe07f7c2db75 | [
"MIT"
] | 1 | 2021-12-14T13:03:38.000Z | 2021-12-14T13:03:38.000Z | scripts/gen_report.py | twjang/korea_apartment_price | cd1414dfe6fe46e7d47625d2f65abe07f7c2db75 | [
"MIT"
] | null | null | null | scripts/gen_report.py | twjang/korea_apartment_price | cd1414dfe6fe46e7d47625d2f65abe07f7c2db75 | [
"MIT"
] | null | null | null | #!/usr/bin/env python
import json
from typing import List, Optional, Tuple
import datetime
import re
import io
import base64
import os
import sys
import argparse
from plotly.missing_ipywidgets import FigureWidget
from tqdm import tqdm
import minify_html
ROOT=os.path.realpath(os.path.join(os.path.dirname(__file__), '..'))
sys.path.append(ROOT)
import plotly
import plotly.io
import plotly.graph_objects as go
from plotly.subplots import make_subplots
import korea_apartment_price
from korea_apartment_price.db import ApartmentId, EntryNotFound
from korea_apartment_price.utils import editdist
parser = argparse.ArgumentParser()
parser.add_argument('aptlst', help='a csv file that contains gu and the apartment name')
parser.add_argument('output', help='output html report path')
args = parser.parse_args()
apts = []
print('[+] reading apartment list')
with open(args.aptlst, 'r') as f:
for line in tqdm(f.readlines()):
line = line.strip()
line = line.split(',', 2)
if len(line) not in [2, 3]:
print (f'Warning: ignoring line "{line}"')
continue
if len(line) == 2:
addr, name = [s.strip() for s in line]
size = 18
else:
addr, name, size = [s.strip() for s in line]
size = int(size)
selected=korea_apartment_price.shortcuts.search(addr, name)
best_editdist = None
best_apt = None
for apt in selected:
apt['size'] = size
cur_editdist = editdist(name, apt['name'])
if best_apt is None or best_editdist > cur_editdist:
best_apt = apt
best_editdist = cur_editdist
if best_apt is not None:
apts.append(best_apt)
else:
print(f'[!] couldn\'t find apt entries for query=({addr}, {name})')
uniq_apts = {}
for apt in apts:
uniq_apts[(apt['address'], apt['name'], apt['size'])] = apt
apts = [uniq_apts[k] for k in sorted(uniq_apts.keys())]
######## XXX
#apts = apts[-3:]
uniq_apts = {}
for apt in apts:
aptname = re.sub(r'[0-9]+[ ]*[ ]*$', '', apt["name"])
key = apt['address'], aptname, apt['size']
if not key in uniq_apts: uniq_apts[key] = []
uniq_apts[key].append(apt)
apt_keys = sorted(uniq_apts.keys())
print('[+] generating report')
for apt_addr, apt_name, apt_size in apt_keys:
print(f'{apt_addr} {apt_name} [ {apt_size}]')
data = []
data_by_addr = {}
addrlst = []
for aptidx, apt_key in enumerate(tqdm(apt_keys)):
apts = uniq_apts[apt_key]
(addr, aptname), fig = render_graph(apts)
cur_chart = json.loads(plotly.io.to_json(fig))
if 'data' in cur_chart:
for e in cur_chart['data']:
e['type'] = 'scattergl'
data.append({
'addr': addr,
'aptname': aptname,
'fig': cur_chart,
})
if not addr in data_by_addr: data_by_addr[addr] = []
data_by_addr[addr].append(aptidx)
addrlst = sorted(list(data_by_addr.keys()))
datestr = datetime.datetime.now().strftime('%Y-%m-%d')
html = f"""<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{datestr} </title>
<script src="https://code.jquery.com/jquery-3.6.0.js"></script>
<script src="https://code.jquery.com/ui/1.13.0/jquery-ui.js"></script>
<script type="text/javascript" src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<script type="text/javascript" id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.13.0/themes/base/jquery-ui.css">
</head>
"""
html += f"""<script>let chartData={json.dumps(data, ensure_ascii=False, separators=(',', ':'))};</script>"""
html += """<script>
function updateChart(idx) {
let chartdiv = document.getElementById('chart');
console.log(idx);
Plotly.react(chart, chartData[idx]['fig']['data'], chartData[idx]['fig']['layout'], {displayModeBar: false});
}
$(document).ready(()=>{
$('#aptselect').select2();
$('#aptselect').on('select2:select', function (e) {
let data = e.params.data;
updateChart(parseInt(data.id));
});
let chartdiv = document.getElementById('chart');
Plotly.newPlot(chart, chartData[0]['fig']['data'], chartData[0]['fig']['layout'], {displayModeBar: false});
});
</script>
"""
options = ""
for cur_addr in addrlst:
options += f'<optgroup label="{cur_addr}">'
for cur_data_idx in data_by_addr[cur_addr]:
cur_data = data[cur_data_idx]
options += f'<option value="{cur_data_idx}" {"selected" if cur_data_idx == 0 else ""}>{cur_data["aptname"]}</option>'
options += '</optgroup>'
html += f"""
<body>
<div class="h-screen m-0 p-0 flex flex-col">
<div class="grow-0">
<h3 class="text-center font-bold text-lg">{datestr} </h3>
<div class="m-3">
<select class="w-full p-3" id="aptselect" name="aptselect">
{options}
</select>
</div>
</div>
<div class="grow p-1"><div id="chart"></div></div>
</body>
</html>"""
with open(args.output, 'w') as f:
f.write(html)
print('[+] done')
| 34.767025 | 199 | 0.66299 |
75a788822e459f07f9a702bbea56e3b4f3a259e6 | 16,405 | py | Python | select-utxos.py | The-New-Fork/python-blocknotify | 56733218c0231044e859a967f767a6674b4ac85e | [
"Apache-2.0"
] | 1 | 2021-10-01T15:54:51.000Z | 2021-10-01T15:54:51.000Z | select-utxos.py | The-New-Fork/python-blocknotify | 56733218c0231044e859a967f767a6674b4ac85e | [
"Apache-2.0"
] | null | null | null | select-utxos.py | The-New-Fork/python-blocknotify | 56733218c0231044e859a967f767a6674b4ac85e | [
"Apache-2.0"
] | 1 | 2021-07-22T08:11:50.000Z | 2021-07-22T08:11:50.000Z | from lib import rpclib
from slickrpc import Proxy
from lib import transaction, bitcoin, util
from lib.util import bfh, bh2u
from lib.transaction import Transaction
import requests
import pytest
import subprocess
import json
import sys
import os
from dotenv import load_dotenv
load_dotenv(verbose=True)
IMPORT_API_HOST = str(os.getenv("IMPORT_API_HOST"))
IMPORT_API_PORT = str(os.getenv("IMPORT_API_PORT"))
IMPORT_API_BASE_URL = IMPORT_API_HOST
rpc_user = os.getenv("IJUICE_KOMODO_NODE_USERNAME")
rpc_password = os.getenv("IJUICE_KOMODO_NODE_PASSWORD")
port = os.getenv("IJUICE_KOMODO_NODE_RPC_PORT")
address = ""
amount = 0
greedy = True
if len(sys.argv) >= 3:
address = sys.argv[1]
amount = float(sys.argv[2])
greedy = bool(sys.argv[3])
#this_node_pubkey = os.getenv("THIS_NODE_PUBKEY")
#this_node_wif = os.getenv("THIS_NODE_WIF")
array_of_utxos = []
array_of_utxos_final = []
amount_final = -10000000000
string = get_utxos_api(address)
to_python = ""
try:
to_python = json.loads(string)
except Exception as e:
print(e)
exit()
final = []
for utxo in to_python:
if utxo['confirmations'] > 10:
final = final + [utxo]
get_utxos(final, amount, greedy)
print(array_of_utxos_final)
#TESTING
| 132.298387 | 13,219 | 0.820055 |
75a9038ac82fdcf9e0ab0266716bd2dfcbf5e311 | 52 | py | Python | pynito/__init__.py | qdonohue/pynito | bcd7eeb3cdcdb63af2b43dca53b2e7899772e518 | [
"MIT"
] | null | null | null | pynito/__init__.py | qdonohue/pynito | bcd7eeb3cdcdb63af2b43dca53b2e7899772e518 | [
"MIT"
] | null | null | null | pynito/__init__.py | qdonohue/pynito | bcd7eeb3cdcdb63af2b43dca53b2e7899772e518 | [
"MIT"
] | 1 | 2020-11-21T12:32:27.000Z | 2020-11-21T12:32:27.000Z | from pynito.cognitodecryptor import CognitoDecryptor | 52 | 52 | 0.923077 |
75ac67c019d243b02047c3a4e50c8d709addc5ed | 5,241 | py | Python | examples/qt/barcode-reader.py | claire-chan/python | 9a22ab20a8d0171f491730199edfd7ce7e4d806c | [
"MIT"
] | 12 | 2020-01-08T13:43:19.000Z | 2022-03-09T08:35:45.000Z | examples/qt/barcode-reader.py | claire-chan/python | 9a22ab20a8d0171f491730199edfd7ce7e4d806c | [
"MIT"
] | 2 | 2020-09-10T07:06:50.000Z | 2022-01-04T17:29:54.000Z | examples/qt/barcode-reader.py | claire-chan/python | 9a22ab20a8d0171f491730199edfd7ce7e4d806c | [
"MIT"
] | 11 | 2020-03-16T18:22:13.000Z | 2022-01-07T08:23:08.000Z | import sys
from PySide2.QtGui import QPixmap, QImage
from PySide2.QtWidgets import QApplication, QLabel, QPushButton, QVBoxLayout, QWidget, QFileDialog, QTextEdit, QSizePolicy, QMessageBox, QHBoxLayout
from PySide2.QtCore import Slot, Qt, QStringListModel, QSize, QTimer
from dbr import DynamsoftBarcodeReader
dbr = DynamsoftBarcodeReader()
import os
import cv2
if __name__ == '__main__':
main()
| 31.011834 | 148 | 0.577752 |
75af09b693b1a39a86476d750fe6c76d93b99535 | 6,820 | py | Python | mdetsims/dbsim/erins_code/util.py | kaiwen-kakuiii/metadetect-sims | a0fd133ca5bc946c6ce769e8657ef2ce10226953 | [
"BSD-3-Clause"
] | 2 | 2021-07-12T09:41:51.000Z | 2022-01-27T08:13:33.000Z | mdetsims/dbsim/erins_code/util.py | kaiwen-kakuiii/metadetect-sims | a0fd133ca5bc946c6ce769e8657ef2ce10226953 | [
"BSD-3-Clause"
] | 6 | 2019-04-04T23:53:27.000Z | 2021-07-30T11:35:20.000Z | mdetsims/dbsim/erins_code/util.py | kaiwen-kakuiii/metadetect-sims | a0fd133ca5bc946c6ce769e8657ef2ce10226953 | [
"BSD-3-Clause"
] | 2 | 2020-10-30T18:14:29.000Z | 2021-07-22T16:34:56.000Z | import sys
import logging
import numpy as np
logger = logging.getLogger(__name__)
def log_pars(pars, fmt='%8.3g',front=None):
"""
print the parameters with a uniform width
"""
s = []
if front is not None:
s.append(front)
if pars is not None:
fmt = ' '.join( [fmt+' ']*len(pars) )
s.append( fmt % tuple(pars) )
s = ' '.join(s)
logger.debug(s)
def convert_run_to_seed(run):
"""
convert the input config file name to an integer for use
as a seed
"""
import hashlib
h = hashlib.sha256(run.encode('utf-8')).hexdigest()
seed = int(h, base=16) % 2**30
logger.info("got seed %d from run %s" % (seed,run))
return seed
def get_trials_nsplit(c):
"""
split into chunks
"""
from math import ceil
ntrials = c['ntrials']
tmsec = c['desired_hours']*3600.0
sec_per = c['sec_per']
ntrials_per = int(round( tmsec/sec_per ) )
nsplit = int(ceil( ntrials/float(ntrials_per) ))
time_hours = ntrials_per*sec_per/3600.0
logger.info("ntrials requested: %s" % (ntrials))
logger.info('seconds per image: %s sec per with rand: %s' % (c['sec_per'],sec_per))
logger.info('nsplit: %d ntrials per: %d time (hours): %s' % (nsplit,ntrials_per,time_hours))
return ntrials_per, nsplit, time_hours
def get_trials_per_job_mpi(njobs, ntrials):
"""
split for mpi
"""
return int(round(float(ntrials)/njobs))
#
# matching by row,col
#
def match_truth(data, truth, radius_arcsec=0.2, pixel_scale=0.263):
"""
get indices in the data that match truth catalog by x,y position
"""
radius_pixels = radius_arcsec/pixel_scale
print("matching")
allow=1
mdata, mtruth = close_match(
data['x'],
data['y'],
truth['x'],
truth['y'],
radius_pixels,
allow,
)
nmatch=mdata.size
ntot=data.size
frac=float(nmatch)/ntot
print(' matched %d/%d %.3f within '
'%.3f arcsec' % (nmatch, ntot, frac,radius_arcsec))
return mdata
def close_match(t1,s1,t2,s2,ep,allow,verbose=False):
"""
Find the nearest neighbors between two arrays of x/y
parameters
----------
x1, y1: scalar or array
coordinates of a set of points. Must be same length.
x2, y2: scalar or array
coordinates of a second set of points. Must be same length.
ep: scalar
maximum match distance between pairs (pixels)
allow: scalar
maximum number of matches in second array to each element in first array.
verbose: boolean
make loud
Original by Dave Johnston, University of Michigan, 1997
Translated from IDL by Eli Rykoff, SLAC
modified slightly by erin sheldon
"""
t1=np.atleast_1d(t1)
s1=np.atleast_1d(s1)
t2=np.atleast_1d(t2)
s2=np.atleast_1d(s2)
n1=t1.size
n2=t2.size
matcharr=np.zeros([n1,allow],dtype='i8')
matcharr.fill(-1)
ind=np.arange(n2,dtype='i8')
sor=t2.argsort()
t2s=t2[sor]
s2s=s2[sor]
ind=ind[sor]
runi=0
endt=t2s[n2-1]
for i in range(n1):
t=t1[i]
tm=t-ep
tp=t+ep
in1=_binary_search(t2s,tm) # I can improve this?
if in1 == -1:
if (tm < endt) : in1=0
if in1 != -1:
in1=in1+1
in2=in1-1
jj=in2+1
while (jj < n2):
if (t2s[in2+1] < tp):
in2+=1
jj+=1
else :
jj=n2
if (n2 == 1) :
in2=0 # hmmm
if (in1 <= in2):
if (n2 != 1) :
check = s2s[in1:in2+1]
tcheck = t2s[in1:in2+1]
else :
check = s2s[0]
tcheck=t2s[0]
s=s1[i]
t=t1[i]
offby=abs(check-s)
toffby=abs(tcheck-t)
good=np.where(np.logical_and(offby < ep,toffby < ep))[0]+in1
ngood=good.size
if (ngood != 0) :
if (ngood > allow) :
offby=offby[good-in1]
toffby=toffby[good-in1]
dist=np.sqrt(offby**2+toffby**2)
good=good[dist.argsort()]
ngood=allow
good=good[0:ngood]
matcharr[i,0:ngood]=good
runi=runi+ngood
if verbose:
print("total put in bytarr:",runi)
#matches=np.where(matcharr != -1)[0]
matches=np.where(matcharr != -1)
#if (matches.size == 0):
if (matches[0].size == 0):
if verbose:
print("no matches found")
m1=np.array([])
m2=np.array([])
return m1,m2
m1 = matches[0] % n1
m2 = matcharr[matches]
m2 = ind[m2].flatten()
if verbose:
print(m1.size,' matches')
return m1,m2
| 23.680556 | 96 | 0.523167 |
75b16b8f307524cf047b1b8450582a6ea17185b4 | 1,470 | py | Python | utilities/thumbnail-creation/thumbnail from category.py | DASdaNen4f/microsoftw | 0ff9e052738e0effb9a484210ac27990f0f14f6f | [
"CC-BY-4.0",
"MIT"
] | 97 | 2019-05-07T15:43:30.000Z | 2022-03-30T01:43:47.000Z | utilities/thumbnail-creation/thumbnail from category.py | DASdaNen4f/microsoftw | 0ff9e052738e0effb9a484210ac27990f0f14f6f | [
"CC-BY-4.0",
"MIT"
] | 7 | 2020-05-05T17:12:08.000Z | 2022-03-11T23:41:25.000Z | utilities/thumbnail-creation/thumbnail from category.py | DASdaNen4f/microsoftw | 0ff9e052738e0effb9a484210ac27990f0f14f6f | [
"CC-BY-4.0",
"MIT"
] | 29 | 2019-05-30T22:23:25.000Z | 2022-02-24T15:13:51.000Z | import pandas as pd
from PIL import Image
import requests
from io import BytesIO
import os
import math
df = pd.read_csv('C:\\Users\\v-ngdian\\Documents\\utilities\\thumbnail creator\\MetArtworksAugmented.csv')
size = 512, 512
ids = []
run("vase", "vases")
print(ids) | 29.4 | 106 | 0.622449 |
75b207a985e8fc2e2ac54f7ef3b3b97efd0e8a7f | 1,050 | py | Python | examples/tcp.py | promisedio/uv | b2da55e28da4a3185d810055468389822ec94f2b | [
"MIT"
] | null | null | null | examples/tcp.py | promisedio/uv | b2da55e28da4a3185d810055468389822ec94f2b | [
"MIT"
] | null | null | null | examples/tcp.py | promisedio/uv | b2da55e28da4a3185d810055468389822ec94f2b | [
"MIT"
] | null | null | null | import ssl
import certifi
from promisedio import loop, ns, promise, timer
promise.exec_async(example1())
loop.run_forever()
| 26.25 | 119 | 0.648571 |
75b2d9cf0513bac35f38ddd5680c08dee820e7ca | 3,232 | py | Python | sahara/tests/unit/service/validation/edp/test_job.py | hortonworksqe/sahara | b8edeaf2b6a475728bf9fd2ddc3a860dc6c23270 | [
"Apache-2.0"
] | 1 | 2016-04-13T17:07:05.000Z | 2016-04-13T17:07:05.000Z | sahara/tests/unit/service/validation/edp/test_job.py | hortonworksqe/sahara | b8edeaf2b6a475728bf9fd2ddc3a860dc6c23270 | [
"Apache-2.0"
] | null | null | null | sahara/tests/unit/service/validation/edp/test_job.py | hortonworksqe/sahara | b8edeaf2b6a475728bf9fd2ddc3a860dc6c23270 | [
"Apache-2.0"
] | null | null | null | # Copyright (c) 2013 Mirantis 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.
from sahara.service.validations.edp import job as j
from sahara.tests.unit.service.validation import utils as u
from sahara.utils import edp
| 35.130435 | 76 | 0.552599 |